ltsp pulseaudio

2014-02-07 Thread Oleg
  Hello.

In our organization we use ltsp on debian wheezy for our work. But we
get a non-working sound - mplayer freezes on playing and default sink stay
in suspend state forever, even if we run mplayer localy on thin station. The
problem is resolved if we add module-suspend-on-idle to pulseaudio. May be
we not alone in this problem. A patch for
/opt/ltsp/amd64/usr/share/ltsp/ltsp-init-common is attached.--- ltsp-init-common.old	2014-02-07 12:24:58.0 +0400
+++ ltsp-init-common	2014-02-07 12:25:18.0 +0400
@@ -34,6 +34,7 @@
 -L $PULSE_VOLUME_RESTORE \
 -L module-rescue-streams \
 -L module-native-protocol-unix auth-anonymous=1 \
+-L module-suspend-on-idle \
 -n 
 ;;
 [Ff][Aa][Ll][Ss][Ee]|[Nn]|[Nn][Oo])


The meaning of $all in init.d scripts dependencies (Was: Upstart support for LSB headers (Two line init.d scripts? Sure, that will work!))

2014-02-07 Thread Petter Reinholdtsen

[Tollef Fog Heen]
 I'm pointing out why $all doesn't do what you want.  «$all» means «after
 everything else has started» and if you have two of those, you have a
 loop.  Loops are bugs.

That is a common misunderstanding of what $all means, and probably the
reason why insserv, systemd and openrc handle it differently.

$all was introduced by SuSe in the insserv package, which Debian also
uses to order init.d scripts, and for me that mean insserv is the one
defining what $all mean.  The $all facility is not defined in the LSB
3.1.0. In insserv, $all means after all scripts not depending on $all.
This is how it has been used in the two only distributions where the
facility has been in use (Debian and SuSe - are there others?).  I thus
suspect most or all init.d scripts in Debian today are based on how
insserv uses $all to order init.d scripts, given that this has been the
reference implementation when dependencies were introduced in init.d
scripts.

A better definition of $all, which to me make more sense than the
current definition in insserv, and which I suspect also would be less
confusing, could be all scripts not depending directly or indirectly on
$all.  This would allow scripts depending on $all to also depend on
each other, and ensure correct ordering also in this case.

According to Tollef, systemd simply ignore $all, inserting scripts with
that dependency as if $all were not present.

And according to Thomas, OpenRC assume scripts depending on $all also
depend on other scripts depending on $all, conclude there is a loop and
try to break the loop at some random point in the perceived loop.

If I understand correctly, Upstart leave it to insserv to order init.d
scripts.

Here are some examples how this will lead to incorrect ordering.  Given
scripts A, B and C, where B depend on $all and C depend on $all, both
the correct order would be (A, B, C) and (A, C, B) - both are correct, B
and C can be started in parallel.  systemd can end up with the ordering
(B, A, C), (C, B, A), (B, C, A) and (C, A, B) in addition to the correct
ones, because it ignore $all and there are no other dependencies to take
into account.  OpenRC see a dependency loop B - C - B and will break it
at a random point, ending by chance up with on of the correct orderings.

Luckily there are not too many scripts with $all listed as its
dependency.  But those that use it, really need to run after most of the
scripts in the boot sequence, without being able to list them all.
rc.local is one example, which by definition should be among the last
scripts to run.

-- 
Happy hacking
Petter Reinholdtsen


-- 
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/2fl61orqntp.fsf...@ulrik.uio.no



Re: Conflict between debian/upstream (DEP-12) debian/upstream/ (uscan)

2014-02-07 Thread Daniel Leidert
James McCoy wrote:

In devscripts 2.13.3, uscan gained the ability to verify signature of
the upstream tarball using a file debian/upstream-signing-key.pgp. In
2.14.0, I added the ability to use armored keys and decided to move the
files under debian/upstream/, an idea which had been suggested by a few
people.

This introduced a conflict with DEP-12 (c.f., #736760), which uses
debian/upstream to track metadata about the upstream project. Tools
like umegaya[0] and Debian Med's task list[1] use the information
provided in this file.
[..]
Part of the reason I chose to use debian/upstream/ is that an extensible
location for upstream related information (similar in spirit to
debian/source/) could be useful. 

I've really wondered, why you didn't use debian/source/ for this purpose
and introduced another directory? Why not put the key used to sign the
upstream source right into debian/source/?

[..]
- Choosing a new name for DEP-12's file and updating the wording in
DEP-12. My suggestion would be debian/upstream/metadata.

Sounds reasonable to me.

Regards, Daniel


-- 
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/trinity-c6d9bf47-e5f5-4226-83f2-ca74a6c60095-1391765572489@3capp-gmx-bs19



conflict between system user and normal user

2014-02-07 Thread PICCA Frederic-Emmanuel
Hello,

I am the maintainer of the tango package which contain the tango-db binary.

This tango-db provide a service called tango-db which connect to a mysql 
database.
I follow the debian-policy to create a dedicated system user for this services.
So I used the tango user which is the name of the community in charge of the 
tango-control system.

during the installation I generate a .my.cnf in the system user tango home 
which I set under
/usr/lib/tango in the package

now If a non-system user tango exist the home is not /usr/lib/tango but most 
probably /hom/tango.
so the installation process faild because it can not create the 
/usr/lib/tango/.my.cnf

What is the correct way to deal with this kind of problem ? I cannot find in 
the policy something
about conflict between system and non-system user.

thanks


Frederic


--
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/a2a20ec3b8560d408356cac2fc148e53b1dea...@sun-dag3.synchrotron-soleil.fr



Re: conflict between system user and normal user

2014-02-07 Thread Paul Wise
On Fri, Feb 7, 2014 at 5:48 PM, Neil Williams wrote:

 Choose a name which is less likely to conflict, e.g. exim uses Debian-exim.

I think consensus was converging on prefixing an underscore for system
users (_foo) last time we discussed this.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: conflict between system user and normal user

2014-02-07 Thread Neil Williams
On Fri, 7 Feb 2014 08:57:32 +
PICCA Frederic-Emmanuel frederic-emmanuel.pi...@synchrotron-soleil.fr wrote:

 Hello,
 
 I am the maintainer of the tango package which contain the tango-db
 binary.
 
 This tango-db provide a service called tango-db which connect to a
 mysql database. I follow the debian-policy to create a dedicated
 system user for this services. So I used the tango user which is the
 name of the community in charge of the tango-control system.

Choose a name which is less likely to conflict, e.g. exim uses Debian-exim.

-- 


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



signature.asc
Description: PGP signature


re: conflict between system user and normal user

2014-02-07 Thread peter green


What is the correct way to deal with this kind of problem ? I cannot find in 
the policy something
about conflict between system and non-system user.
  
I don't think there is much that can reall be done to fix the 
fundamental problem which is that system users and regular users have to 
live in the same namespace causing a risk of conflicts.


There are two things I can see you could do to impreove the situation 
with your package.
1: Fail early, it's better to have preinst fail than it is to start 
creating stuff with wrong permissions/ownership.
2: Choose a less generic name that is less likely to cause conflicts. Do 
you plan to use this user only for the db? if so tango-db might make 
sense, if not maybe something like tango-control-system.



--
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/52f4b091.5020...@p10link.net



Re: conflict between system user and normal user

2014-02-07 Thread Jakub Wilk

* Paul Wise p...@debian.org, 2014-02-07, 17:52:

Choose a name which is less likely to conflict, e.g. exim uses Debian-exim.
I think consensus was converging on prefixing an underscore for system 
users (_foo) last time we discussed this.


Well, #248809 is still open…

--
Jakub Wilk


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



Re: amd64 arch and optimization flags?

2014-02-07 Thread peter green


 this is dangerous it changes results, sometimes significantly (e.g. for
 complex numbers), only use if you don't care about correctness or have
 verified its still correct.

IME, audio processing software can get away with it. Csound and its 400+ 
library of opcodes has been built with this option and I have had no 
complaints yet.
  

Quite likely yes.
What is dangerous about this options? I see a warning in the gcc docs, 
  
Floating point numbers are an approximation of the real numbers. IEEE 
754 defines the format of the floating point numbers (on all common 
modern platforms) and also sets rules for how accurate that 
approximation should be and how exceptional conditions should be handled.


-ffast-math tells the compiler that you are more interested in speed 
than accuracy, repeatability and handling of exceptional conditions so 
it may use methods that don't follow the precise rules laid down in IEEE 754


but how can I know if my program relies on a precise definition of IEEE
floating point?
With difficulty, you really need to understand what exactly the code is 
doing and how senstive it is to accuracy in the calculations.



--
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/52f4b4a5.3070...@p10link.net



RE:conflict between system user and normal user

2014-02-07 Thread PICCA Frederic-Emmanuel
 I don't think there is much that can reall be done to fix the
 fundamental problem which is that system users and regular users have to
 live in the same namespace causing a risk of conflicts.

 There are two things I can see you could do to impreove the situation
 with your package.
 1: Fail early, it's better to have preinst fail than it is to start
 creating stuff with wrong permissions/ownership.

Yes I nedd to faisl with a human comprehensible error explaining that the 
requested users
is already there but that is not a system user.

 2: Choose a less generic name that is less likely to cause conflicts. Do
 you plan to use this user only for the db? if so tango-db might make
 sense, if not maybe something like tango-control-system.


no this user will be used by all tango controls system daemon.
tango-db
tango-starter
tango-accesscontrol
...

no my question is should I provide a amigration plan from the current tango 
user ?

this package is already usedin production.

--
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/a2a20ec3b8560d408356cac2fc148e53b1dea...@sun-dag3.synchrotron-soleil.fr



Re: The meaning of $all in init.d scripts dependencies (Was: Upstart support for LSB headers (Two line init.d scripts? Sure, that will work!))

2014-02-07 Thread Thomas Goirand
On 02/07/2014 05:22 PM, Petter Reinholdtsen wrote:
 And according to Thomas, OpenRC assume scripts depending on $all also
 depend on other scripts depending on $all, conclude there is a loop and
 try to break the loop at some random point in the perceived loop.

That is correct, however, the way it is done currently, it does
approximately what one would expect in Debian! :)

Anyway, that's not a clean implementation. So, thanks a lot for this
definition matching sysv-rc. So this may lead to newer code.

The author of lsb2rcconf (eg: Dmitry Yu Okunev) will work on it. What
will be done is scanning all LSB header scripts for $all, and fix the
conversion to the OpenRC internal format (at least that's what he wrote
on IRC).

Cheers,

Thomas Goirand (zigo)


-- 
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/52f4b801.7010...@debian.org



Re: conflict between system user and normal user

2014-02-07 Thread Neil Williams
On Fri, 7 Feb 2014 10:15:18 +
PICCA Frederic-Emmanuel frederic-emmanuel.pi...@synchrotron-soleil.fr
wrote:

  I don't think there is much that can reall be done to fix the
  fundamental problem which is that system users and regular users
  have to live in the same namespace causing a risk of conflicts.
 
  There are two things I can see you could do to impreove the
  situation with your package.
  1: Fail early, it's better to have preinst fail than it is to start
  creating stuff with wrong permissions/ownership.
 
 Yes I nedd to faisl with a human comprehensible error explaining that
 the requested users is already there but that is not a system user.

Just use a generic name and be done with it.
 
  2: Choose a less generic name that is less likely to cause
  conflicts. Do you plan to use this user only for the db? if so
  tango-db might make sense, if not maybe something like
  tango-control-system.
 
 
 no this user will be used by all tango controls system daemon.

The name should not be hardcoded - if it is, patch upstream in each
case and fix it. Don't waste your time and user time on a hacky
workaround - fix the code.


-- 


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



signature.asc
Description: PGP signature


Re: Updating the Policy Editors delegation

2014-02-07 Thread Joerg Jaspert

Am 07.02.2014 11:24, schrieb Lucas Nussbaum:


The Debian Policy team defines Debian's technical framework, 
including

the structure and contents of the Debian archive


So, the FTPTeam just got that ripped out of their gut.
Which means we can stop doing NEW and in a slightly more extreme 
interpretation
even stop all our cronjobs. We are no longer the ones doing the 
contents,

so how could we accept anything?

The part about the structure is also very debatable, this has also been 
a part
of FTPMaster in the past. I can see a small point in sharing this with 
the team

that writes down Policy, but thats a small one.

I think someone here has not thought about this text.

--
bye Joerg


--
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/8672773d550158b3e52a4b605b55c...@mail.ganneff.de



Re: Updating the Policy Editors delegation

2014-02-07 Thread Ansgar Burchardt
Hi,

On 02/07/2014 11:24, Lucas Nussbaum wrote:
 The Debian Policy team defines Debian's technical framework, including
 the structure and contents of the Debian archive, design issues of the
 operating system, as well as technical requirements that all packages
 must satisfy.
 
 The Debian Policy team also maintains the Debian Policy Manual and all
 the other policy documents released as part of the debian-policy
 package.

Besides the issue Joerg raised, do you change the Policy team's role
from /documenting/ consensus (as mentioned in Policy 1.3) to actually
/defining/ policy?

Ansgar


-- 
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/52f4c9ba.10...@debian.org



RE:conflict between system user and normal user

2014-02-07 Thread PICCA Frederic-Emmanuel
 Just use a generic name and be done with it.

sorry, what do you mean by generic ?

 The name should not be hardcoded - if it is, patch upstream in each
 case and fix it. Don't waste your time and user time on a hacky
 workaround - fix the code.


no, the name is not hard coded by the upstream. I start daemon with 
start-stop-daemon with this command

start-stop-daemon --start --quiet --chuid tango:tango --background \
--make-pidfile --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS \
|| return 2

So it is hardcoded in the package not by the mainstream author.

Cheers

Fred

--
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/a2a20ec3b8560d408356cac2fc148e53b1dea...@sun-dag3.synchrotron-soleil.fr



Re: autopkgtest + chroot howto ? - Was: Re: Is it possible to run autopkgtest without a virtual machine ?

2014-02-07 Thread Antonio Terceiro
On Sun, Jan 26, 2014 at 06:09:51PM +0100, Martin Pitt wrote:
 I advise to use the schroot runner instead. schroots are easy to set
 up these days with mk-sbuild, and with some additional love (like
 installing and configuring apt-cacher-ng and symlinking
 /var/lib/schroot/union/overlay/ and /var/lib/schroot/unpack/ to /tmp/,
 and having /tmp on a tmpfs),  set up, tear down, and package
 installation are extremely fast.

This schroot tip is precious! I have just reduced the build time (which
was mostly spent installing dependencies -- I was already using
apt-cacher-ng) of a package from ~4min to ~30s!

But instead of symlinking /var/lib/schroot/union/overlay/¹ , I configured
my sbuild chroots adding

  union-overlay-directory=/dev/shm

¹ that would affect all my chroots, not only the ones I use for sbuild.
  I expected the non-sbuild ones to still be there after a reboot. ;-)

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


signature.asc
Description: Digital signature


Re: Updating the Policy Editors delegation

2014-02-07 Thread Lucas Nussbaum
Hi,

On 07/02/14 at 12:55 +0100, Ansgar Burchardt wrote:
 On 02/07/2014 11:24, Lucas Nussbaum wrote:
  The Debian Policy team defines Debian's technical framework, including
  the structure and contents of the Debian archive, design issues of the
  operating system, as well as technical requirements that all packages
  must satisfy.
  
  The Debian Policy team also maintains the Debian Policy Manual and all
  the other policy documents released as part of the debian-policy
  package.
 
 Besides the issue Joerg raised, do you change the Policy team's role
 from /documenting/ consensus (as mentioned in Policy 1.3) to actually
 /defining/ policy?

[ I addressed your question in my reply to Joerg:
http://lists.debian.org/20140207125848.ga16...@xanadu.blop.info ]

L.


-- 
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/20140207130230.ga17...@xanadu.blop.info



Re: Updating the Policy Editors delegation

2014-02-07 Thread Lucas Nussbaum
On 07/02/14 at 12:35 +0100, Joerg Jaspert wrote:
 Am 07.02.2014 11:24, schrieb Lucas Nussbaum:
 The Debian Policy team defines Debian's technical framework,
 including
 the structure and contents of the Debian archive
 
 So, the FTPTeam just got that ripped out of their gut.
 Which means we can stop doing NEW and in a slightly more extreme
 interpretation
 even stop all our cronjobs. We are no longer the ones doing the
 contents,
 so how could we accept anything?
 
 The part about the structure is also very debatable, this has also
 been a part
 of FTPMaster in the past. I can see a small point in sharing this
 with the team
 that writes down Policy, but thats a small one.
 
 I think someone here has not thought about this text.

Given the discussion that followed the previous delegation update, I
tried to make sure that this one wouldn't raise any concerns, so I
assure you that I thought about this text. :-)

Additionally, that text was sent for review to 8 people:
- Ian, as the one who raised the concerns about the previous version
- the Debian project secretary and his assistant
- the policy editors delegates
- Zack, as the DPL who wrote the previous version of the delegation

None of them had any concerns with the text.

But, since you think that this delegation can be interpreted as
conflicting with the ftpmasters delegation, let me clarify.
[ what follows might be too precise for a delegation text, the goal here
is to give an idea of the general spirit through some examples ]

Policy editors define Debian's technical framework, which is
documented in the Debian Policy Manual. That includes deciding on
things such as which archive areas (main, contrib, non-free) are
needed in the archive [that's *structure*], and define the general
rules about what goes in each section [that's *contents*]. They
also define the list of priorities (required, important, etc.)
[*structure*] and define the criteria for each priority
[*contents*].
Regarding sections (admin, text, python, etc.), they delegate
the decisions on maintaining the list of sections, and their
respective contents, to the archive maintainers (see Policy, 2.4). 

FTP masters maintain the archive. They decide how files and
directories are organized on Debian archive repositories, provided
that this does not conflict with the general framework defined by the
Policy editors.
They also decide, for each package, whether the suggestion made by
the maintainer (on archive area, priority, section, etc.) is a
valid one, by implementing and interpreting what is defined by the
Policy Editors, and in the DFSG (e.g. what is acceptable in 
main/contrib/non-free). They are also responsible for the general
consistency of the archive.


On 07/02/14 at 12:55 +0100, Ansgar Burchardt wrote:
 Besides the issue Joerg raised, do you change the Policy team's role
 from /documenting/ consensus (as mentioned in Policy 1.3) to actually
 /defining/ policy?

Yes. See the email from the Secretary on that issue [1]:
 This means that delegations should take care not to perscribe any
 particular process, or method for working that a delegate should adhere
 to. It is up to the delegate(s) to form a team and to produce a process
 themselves. It is, of course required as above that delegates should
 attempt to implement good technical decisions and/or follow consensus
 opinion.
[1] https://lists.debian.org/debian-project/2014/01/msg00054.html

If I delegate defining policy to the Policy Editors, I cannot at the
same time require that they will do that by following consensus, as that
would prescribe a particular process (8.2). However, as per constitution
8.3, Policy Editors [..] should [...] follow consensus opinion.

More concretely, If they were considering changes that impact the work
of ftpmasters, it would expected from them to discuss those changes
beforehand with ftpmasters. Policy Editors have a track record of
seeking consensual positions, so I would be extremely surprised if they
did not do that.

There's also the question of the split of roles between the Policy
Editors and the Technical Committee:
The Policy Editors are in charge of the initial and detailed design of
the technical policy.
If there's disagreement, the issue can be brought to the technical
committee (which requires a simple majority to rule on technical
policy, see 6.1.1).


I would like to add something else:
I don't think that one should read delegations in search of loopholes that
would give some team more powers than what is generally understood.
Writing delegations that are at the same time not too prescriptive, and
descriptive enough, is already quite hard. It would be near-impossible to
write them as strict legal texts that avoid all loopholes, while still not 
making
them too prescriptive.
What matters is the general spirit. Requests for clarification are welcomed,
as well as, generally, talking with teams that are impacted or have an impact
on one's work.

Lucas


-- 
To UNSUBSCRIBE, email to 

Re: autopkgtest + chroot howto ? - Was: Re: Is it possible to run autopkgtest without a virtual machine ?

2014-02-07 Thread Julian Taylor
On Fri, Feb 7, 2014 at 2:09 PM, Antonio Terceiro terce...@debian.orgwrote:

 On Sun, Jan 26, 2014 at 06:09:51PM +0100, Martin Pitt wrote:
  I advise to use the schroot runner instead. schroots are easy to set
  up these days with mk-sbuild, and with some additional love (like
  installing and configuring apt-cacher-ng and symlinking
  /var/lib/schroot/union/overlay/ and /var/lib/schroot/unpack/ to /tmp/,
  and having /tmp on a tmpfs),  set up, tear down, and package
  installation are extremely fast.

 This schroot tip is precious! I have just reduced the build time (which
 was mostly spent installing dependencies -- I was already using
 apt-cacher-ng) of a package from ~4min to ~30s!

 But instead of symlinking /var/lib/schroot/union/overlay/¹ , I configured
 my sbuild chroots adding

   union-overlay-directory=/dev/shm



you can archive similar speeds without a tmpfs using eatmydata, just stick
LD_PRELOAD=/usr/lib/libeatmydata/libeatmydata.so
in your rc equivalent.
This is also significantly faster than using dpkg --force-unsafe-io.

Using mount options that reduce failure safety on the partition/subvolume
holding the chroot build folder also helps a bit (nobarrier,
data=writeback, commit=3600 etc.)


Bug#738008: ITP: gap-openmath -- OpenMath phrasebook for GAP

2014-02-07 Thread Jerome Benoit
Package: wnpp
Severity: wishlist
Owner: Jerome Benoit calcu...@rezozer.net

* Package name: gap-openmath
  Version : 11.2.0
  Upstream Author : Alexander Konovalov al...@mcs.st-andrews.ac.uk
* URL : http://www.gap-system.org/Packages/openmath.html
* License : GPL
  Programming Lang: GAP
  Description : OpenMath phrasebook for GAP

GAP is a system for computational discrete algebra with particular
emphasis on computational group theory, but which has already proved
useful also in other areas.

This package allows GAP to import and export mathematical objects
encoded in OpenMath, for the purpose of exchanging them with other
applications that are OpenMath enabled.


-- 
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/20140207135435.13730.774.report...@nen.dnsalias.org



Bug#738011: ITP: gap-scscp -- SCSCP protocol in GAP

2014-02-07 Thread Jerome Benoit
Package: wnpp
Severity: wishlist
Owner: Jerome Benoit calcu...@rezozer.net

* Package name: gap-scscp
  Version : 2.1.4
  Upstream Author : Alexander Konovalov al...@mcs.st-andrews.ac.uk
  Steve Linton s...@cs.st-andrews.ac.uk
* URL : http://www.gap-system.org/Packages/scscp.html
* License : GPL
  Programming Lang: GAP
  Description : SCSCP protocol in GAP

GAP is a system for computational discrete algebra with
particular emphasis on computational group theory, but
which has alreadyproved useful also in other areas.

This package implements the Symbolic Computation Software
Composability (SCSCP) Protocol for GAP.


-- 
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/20140207140530.13910.11227.report...@nen.dnsalias.org



Bug#738039: ITP: arden -- specificity control for read alignments using an artificial reference

2014-02-07 Thread Andreas Tille
Package: wnpp
Severity: wishlist
Owner: Andreas Tille ti...@debian.org

* Package name: arden
  Version : 1.0
  Upstream Author : Sven H. Giese gie...@rki.de
* URL : http://sourceforge.net/projects/arden/
* License : BSD
  Programming Lang: Python
  Description : specificity control for read alignments using an artificial 
reference
 ARDEN (Artificial Reference Driven Estimation of false positives in NGS
 data) is a novel benchmark that estimates error rates based on real
 experimental reads and an additionally generated artificial reference
 genome. It allows the computation of error rates specifically for a
 dataset and the construction of a ROC-curve. Thereby, it can be used to
 optimize parameters for read mappers, to select read mappers for a
 specific problem or also to filter alignments based on quality
 estimation.


Remark: This package is maintained by the Debian Med team and the
packaging is available at 
  git://anonscm.debian.org/debian-med/arden.git


-- 
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/20140207152440.10429.86805.report...@mail.an3as.eu



Re: Updating the Policy Editors delegation

2014-02-07 Thread Joerg Jaspert

Am 07.02.2014 13:58, schrieb Lucas Nussbaum:


The Debian Policy team defines Debian's technical framework,
including the structure and contents of the Debian archive
So, the FTPTeam just got that ripped out of their gut.
Which means we can stop doing NEW and in a slightly more extreme
interpretation even stop all our cronjobs. We are no longer the
ones doing the contents, so how could we accept anything?



The part about the structure is also very debatable, this has also
been a part of FTPMaster in the past. I can see a small point in
sharing this with the team that writes down Policy, but thats a 
small

one.

Given the discussion that followed the previous delegation update, I
tried to make sure that this one wouldn't raise any concerns, so I
assure you that I thought about this text. :-)
Additionally, that text was sent for review to 8 people:
- Ian, as the one who raised the concerns about the previous version
- the Debian project secretary and his assistant
- the policy editors delegates
- Zack, as the DPL who wrote the previous version of the delegation


And no one of the team thats babysitting the archive... :)


Policy editors define Debian's technical framework, which is
documented in the Debian Policy Manual.


Which is a change to the past, but you explain that one elsewhere.


That includes deciding on things such as which archive areas
(main, contrib, non-free) are needed in the archive [that's 
*structure*],

and define the general rules about what goes in each section
[that's *contents*]. They also define the list of priorities
(required, important, etc.) [*structure*] and define the criteria for
each priority [*contents*].



Regarding sections (admin, text, python, etc.), they delegate
the decisions on maintaining the list of sections, and their
respective contents, to the archive maintainers (see Policy, 2.4).


So a delegate delegates again, right.
Ok, basically what we did with the release team (and then they got DPL 
delegated),
backports (and then...). Fine, team can give away rights they have to 
others.



FTP masters maintain the archive. They decide how files and
directories are organized on Debian archive repositories, provided
that this does not conflict with the general framework defined by the
Policy editors.
They also decide, for each package, whether the suggestion made by
the maintainer (on archive area, priority, section, etc.) is a
valid one, by implementing and interpreting what is defined by the
Policy Editors, and in the DFSG (e.g. what is acceptable in
main/contrib/non-free). They are also responsible for the general
consistency of the archive.


With (my) plain english, the delegation reads different than the 
explanation.
That does need a redefined structure/content and leads to reactions 
like

my mail. Or what we had on IRC.


I would like to add something else:
I don't think that one should read delegations in search of loopholes 
that

would give some team more powers than what is generally understood.


Generally understood in a project as widely dispersed as others can 
be
very different for people. I haven't even read it searching for 
loopholes.
The different understanding of what content/structure mean in this 
context
between you and me show that its very easy to have a different reading 
of it.

I do think this should be clarified in the official delegation.

--
bye Joerg


--
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/f207979946c69708a6ed4c070608c...@mail.ganneff.de



Unreleased libraries

2014-02-07 Thread Pau Garcia i Quiles
Hello,

I am interested in packaging Skia ( https://code.google.com/p/skia/ ), the
2D library used in Chromium, Firefox and others. I need it because a
package I maintain (witty) is replacing GraphicsMagick with Skia.

I went to Skia's download page and... found there is none: Skia does not
make releases, tags, or anything like that. You download from Subversion
and the svn revision is all you have.

Is there a policy on how to package software that does not make releases?

http://en.wikipedia.org/wiki/Skia_Graphics_Engine
https://code.google.com/p/skia/

Thank you

-- 
Pau Garcia i Quiles
http://www.elpauer.org
(Due to my workload, I may need 10 days to answer)


Re: Upstart support for LSB headers (Two line init.d scripts? Sure, that will work!)

2014-02-07 Thread heroxbd
Sergey B Kirpichev skirpic...@gmail.com writes:

 http://packages.qa.debian.org/m/monit.html
 Usually, you want to start this service last and stop first.

The question is, before or after rc.local?


-- 
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/86ha8avpsh@moguhome00.in.awa.tohoku.ac.jp



Re: Unreleased libraries

2014-02-07 Thread Michael Shuler

On 02/07/2014 10:25 AM, Pau Garcia i Quiles wrote:

Is there a policy on how to package software that does not make releases?


A version similar to skia_0.0-1~svnr1234 would allow an upstream version 
of i.e. 0.1 (if they ever release) to supersede your packaged version. 
It should also allow you to upgrade via new svn version 
(0.0-1~svnr1235), as well as new packaging of same svn version 
(0.0-2~svnr1234).  Please, correct me, if there is a better method, here!


--
Kind regards,
Michael


--
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/52f50cd4.90...@pbandjelly.org



Re: Unreleased libraries

2014-02-07 Thread Pau Garcia i Quiles
On Fri, Feb 7, 2014 at 5:41 PM, Michael Shuler mich...@pbandjelly.orgwrote:


 Is there a policy on how to package software that does not make releases?


 A version similar to skia_0.0-1~svnr1234 would allow an upstream version
 of i.e. 0.1 (if they ever release) to supersede your packaged version. It
 should also allow you to upgrade via new svn version (0.0-1~svnr1235), as
 well as new packaging of same svn version (0.0-2~svnr1234).  Please,
 correct me, if there is a better method, here!


That's exactly what I had thought: 0.0-somenumber~svn123, where
somenumber is the soversion. Runtime packager for each soversion in other
to allow coinstallation, development packages, etc.

I have also noticed Firefox includes Skia in its source package, although
it may be justified because they heavily patch Skia. Icedove (Thunderbird)
and XULRunner also include their own version of Skia.

-- 
Pau Garcia i Quiles
http://www.elpauer.org
(Due to my workload, I may need 10 days to answer)


Re: Unreleased libraries

2014-02-07 Thread Andreas Beckmann
On 2014-02-07 17:25, Pau Garcia i Quiles wrote:
 Is there a policy on how to package software that does not make releases?

You usually make up your own upstream version number, either
revision-based or date-based or both. Just ensure you use a version that
sorts before any later upstream release. Not having looked at skia at
all, I would suggest using as upstream version

0~svn12345  (if you tarred up revision 12345)
0~svn2014.02.07  (if you tarred up a snapshot today)
0~svn2014.02.07.r12345  (both)

or whatever you like. Note that the 0~ prefix will sort before e.g.
0.1 (or 0.0.0.0.1 or whatever), just in case upstream makes a release
some day, so you don't get into trouble having a later version in
Debian already.

And if upstream already did a release (or plans to) you would do
something like this to package a snapshot:

1.2.3+svn45678  (if the last upstream release was 1.2.3)
1.2.3~~svn45678  (if the last release was 1.2.2 and what you are
packaging is more like a pre-alpha-release candidate of 1.2.3 than a
followup to 1.2.2, note the double tilde '~~', this will allow you to
package 1.2.3~rc4 later on if upstream makes that available and finally
1.2.3 as the final release.

Start the debian revision with '-1' as usual.


If your upstream is git, you don't have monotonically increasing
revision numbers, but (unordered) commit hashes. I usually use something
based on 'git describe' as that gives you a number of commits since a
reference tag in addition to a release.

E.g. git describe returns 0.56-24-gffe37cd which is
tag-number_of_commits_since_tag-gshortened_hash_of_HEAD
and I would version the snapshot as 0.56+git24-gffe37cd.


Andreas


-- 
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/52f50f53.3090...@debian.org



Re: Unreleased libraries

2014-02-07 Thread Jonas Smedegaard
Quoting Michael Shuler (2014-02-07 17:41:56)
 On 02/07/2014 10:25 AM, Pau Garcia i Quiles wrote:
  Is there a policy on how to package software that does not make releases?
 
 A version similar to skia_0.0-1~svnr1234 would allow an upstream version 
 of i.e. 0.1 (if they ever release) to supersede your packaged version. 
 It should also allow you to upgrade via new svn version 
 (0.0-1~svnr1235), as well as new packaging of same svn version 
 (0.0-2~svnr1234).  Please, correct me, if there is a better method, here!

Here's a slightly shorter (and therefore arguably better, since you 
asked) scheme:

  skia_0-1~svnr1234


 - Jonas

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

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


signature.asc
Description: signature


Re: Packaging of stunnel / MIA for Luis Rodrigo Gallardo Cruz

2014-02-07 Thread Ian Jackson
Chris Knadle writes (Re: Packaging of stunnel / MIA for Luis Rodrigo Gallardo 
Cruz):
...
 Well, here's the typical scenario:
 
- maintainer stops maintaining a package, for whatever reason,
  and doesn't respond to communication... for a long time.
 
- things change, the package you use that the maintainer had previously
  maintains breaks, or gets very old compared to upstream that 
  compatibility issues arise.
 
 What are your options?  [...]

My approach, if I wanted the package, would be to send an Intent to
Adopt email.  If the maintainer does not object then I would make an
upload making myself the maintainer (or co-maintainer).

If the maintainer does object then presumably you can have a
conversation with them.  If all they do is say no to ITA but don't
actually do anything else, then I think you should ask the TC.

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



Re: Unreleased libraries

2014-02-07 Thread Pau Garcia i Quiles
On Fri, Feb 7, 2014 at 5:52 PM, Andreas Beckmann a...@debian.org wrote:


 If your upstream is git, you don't have monotonically increasing
 revision numbers, but (unordered) commit hashes. I usually use something
 based on 'git describe' as that gives you a number of commits since a
 reference tag in addition to a release.

 E.g. git describe returns 0.56-24-gffe37cd which is
 tag-number_of_commits_since_tag-gshortened_hash_of_HEAD
 and I would version the snapshot as 0.56+git24-gffe37cd.


For git-based projects, I usually use a timestamp + commit id, e. g.
0.56+git201402061828-gffe37cd. Slightly longer but easier to understand and
sorts as expected.

-- 
Pau Garcia i Quiles
http://www.elpauer.org
(Due to my workload, I may need 10 days to answer)


Re: Unreleased libraries

2014-02-07 Thread Eugene Zhukov
My apologies if something isn't right with this email, I'm writing from my 
phone. 
 On 7.2.2014, at 18.25, Pau Garcia i Quiles pgqui...@elpauer.org wrote:
 
 Hello,
 
 I am interested in packaging Skia ( https://code.google.com/p/skia/ ), the 2D 
 library used in Chromium, Firefox and others. I need it because a package I 
 maintain (witty) is replacing GraphicsMagick with Skia.
 
 I went to Skia's download page and... found there is none: Skia does not make 
 releases, tags, or anything like that. You download from Subversion and the 
 svn revision is all you have.
 
Have you tried asking them (the upstream) for a tag?
I have a couple of times asked politely for a tag from some upstreams and was 
lucky to get one, even though the upstream hasn't had a tag in years.

Eugene

Re: Wanted: perl package home for condorcet computation script

2014-02-07 Thread Ian Jackson
Ian Jackson writes (Re: Wanted: perl package home for condorcet computation 
script):
 Paul Wise writes (Re: Wanted: perl package home for condorcet computation 
 script):
  On Mon, Feb 3, 2014 at 11:46 PM, Ian Jackson wrote:
   It would like to live in some Debian package.
  
  devscripts seems like the ideal package. I guess some folks would want
  to use it for meeting times and team decisions.
 
 CCing the devscripts list.  Hi, devscripts maintainers.  What do you
 think ?

Hi, James, I was wondering if you had an opinion about this proposal.
Would my condorcet vote counter fit into devscripts ?

The dependencies have grown a bit: now it depends on
Graph::Writer::GraphViz too, so, indirectly, on graphviz.

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



Re: Packaging of stunnel / MIA for Luis Rodrigo Gallardo Cruz

2014-02-07 Thread Chris Knadle
On Friday, February 07, 2014 17:09:27 Ian Jackson wrote:
 Chris Knadle writes (Re: Packaging of stunnel / MIA for Luis Rodrigo
 Gallardo Cruz): ...
 
  Well, here's the typical scenario:
 - maintainer stops maintaining a package, for whatever reason,
   and doesn't respond to communication... for a long time.
 
 - things change, the package you use that the maintainer had previously
   maintains breaks, or gets very old compared to upstream that
   compatibility issues arise.
  
  What are your options?  [...]
 
 My approach, if I wanted the package, would be to send an Intent to
 Adopt email.  If the maintainer does not object then I would make an
 upload making myself the maintainer (or co-maintainer).
 
 If the maintainer does object then presumably you can have a
 conversation with them.  If all they do is say no to ITA but don't
 actually do anything else, then I think you should ask the TC.

Yes this sounds very reasonable as well.
Thanks -- this helps!

  -- Chris

--
Chris Knadle
chris.kna...@coredump.us

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


Re: Upstart support for LSB headers (Two line init.d scripts? Sure, that will work!)

2014-02-07 Thread Sergey B Kirpichev
On Sat, Feb 08, 2014 at 01:41:18AM +0900, hero...@gentoo.org wrote:
 Sergey B Kirpichev skirpic...@gmail.com writes:
 
  http://packages.qa.debian.org/m/monit.html
  Usually, you want to start this service last and stop first.
 
 The question is, before or after rc.local?

Doesn't matter)  rc.local shouldn't be used by local
admin to start services from.  Why not use usual init-script?

On Sat, Feb 08, 2014 at 01:43:59AM +0900, hero...@gentoo.org wrote:
 Sergey B Kirpichev skirpic...@gmail.com writes:
 
  So, lets start services first, then start monitoring.  Do we want to
  play races with sysvinit?  No.  Now can you see the point?
 
 We don't have to race it: by telling service managers other than monit
 (sysvinit, openrc, sysv-rc, etc. etc.)  to leave what monit concerns
 alone can do the trick.

Yes, that's easy.  For human.


-- 
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/20140207181402.ga12...@darkstar.order.hcn-strela.ru



Virtual fizmo package

2014-02-07 Thread Christoph Ender



Hi all,

I’m currently thinking about creating a virtual package for fizmo. This
was a single package in squeeze, got split up into fizmo-ncursesw and
fizmo-console in wheezy, keeping a transitional fizmo package in
oldlibs (which pulled in fizmo-ncursesw so far). fizmo-sdl is still in
beta but might be released this year.

I'd like to drop the transitional fizmo package for the jessie release
and provide a virtual package of the same name instead (this will give
people trying to install fizmo give at least a clue why the package
apparently isn't there anymore and the alternatives system looks like a
good way for managing a link to the installed binary).

Section 3.6 of the policy manual mentions (via the virtual package list)
that new virtual package names should be agreed on in debian-devel, so:
Any thoughts on this?


Thanks in advance,
Christoph.


--
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/de58d6c0-5254-48ce-b79b-0b09057ea...@spellbreaker.org



Re: Virtual fizmo package

2014-02-07 Thread Andreas Beckmann
On 2014-02-07 19:22, Christoph Ender wrote:
 Section 3.6 of the policy manual mentions (via the virtual package list)
 that new virtual package names should be agreed on in debian-devel, so:

I think your use case is covered by the

  (except privately, amongst a cooperating group of packages)

clause.


Andreas


-- 
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/52f52a34.7040...@debian.org



Re: Unreleased libraries

2014-02-07 Thread Jonas Smedegaard
Quoting Pau Garcia i Quiles (2014-02-07 17:51:47)
 I have also noticed Firefox includes Skia in its source package, 
 although it may be justified because they heavily patch Skia. Icedove 
 (Thunderbird) and XULRunner also include their own version of Skia.

Thanks for noticing!

Please report that to the security team, as documented at 
https://wiki.debian.org/EmbeddedCodeCopies

 - Jonas

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

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


signature.asc
Description: signature


Re: conflict between system user and normal user

2014-02-07 Thread Andreas Beckmann
On 2014-02-07 09:57, PICCA Frederic-Emmanuel wrote:
 during the installation I generate a .my.cnf in the system user tango home 
 which I set under
 /usr/lib/tango in the package

That should be under /var, not /usr, especially if you dynamically
generate stuff there.

And if that is a configuration file that is supposed to be editable by
the admin, it should live in /etc (maybe using a different name, and/or
a subdirectory), symlinked from the tango users home.


Andreas


-- 
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/52f52c59.4010...@debian.org



Re: Conflict between debian/upstream (DEP-12) debian/upstream/ (uscan)

2014-02-07 Thread Andreas Tille
Hi,

On Fri, Feb 07, 2014 at 10:32:52AM +0100, Daniel Leidert wrote:
 I've really wondered, why you didn't use debian/source/ for this purpose
 and introduced another directory? Why not put the key used to sign the
 upstream source right into debian/source/?

+1
 
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/20140207195432.ge15...@an3as.eu



Re: Packaging of stunnel / MIA for Luis Rodrigo Gallardo Cruz

2014-02-07 Thread Sebastian Reichel
Hi Rodrigo,

On Fri, Feb 07, 2014 at 10:21:12AM -0800, Rodrigo Gallardo wrote:
 I do!

ah, nice to hear from you.

 I have been extremely remiss in my duties, and I have let ego keep
 me from accepting it.

 I have orphaned stunnel and all of my other packages. Feel free to
 NMU/take over as needs be. I will submit my formal resignation as
 soon as I get the machine with my private key out of from under all
 those half-read books.
 
 Meanwhile, please accept my apologies for not doing this earlier.

No harm done. Thanks for the work you did for the Debian project :)
It's really appreciated.

-- Sebastian


signature.asc
Description: Digital signature


Re: Conflict between debian/upstream (DEP-12) debian/upstream/ (uscan)

2014-02-07 Thread Andreas Tille
Hi Paul,

On Fri, Feb 07, 2014 at 01:18:09PM +0800, Paul Wise wrote:
 Another project that looks at DEP-12 metadata is DUCK, the Debian URL
 checker. I think it looks at DEP-12 stuff as a source of URLs to
 check.

Is this some vote to keep the file debian/upstream?

 There are other issues with uscan/DEP-12;

I do not think we should discuss DEP-12 issues in this thread.  If you
really want to discuss it please use another thread.  Just for
additional explanation:

 debian/watch is duplicated in the Watch field in DEP-12 debian/upstream.

Charles did clarify this.  I personally never understood why we should
keep a copy of some code hanging around somewhere.  I never maintained
this (optional) field since I thought you can always auto-generate this
field from existing (+tested +maintained) debian/watch file if (at all)
uscan would regard debian/upstream instead of debian/watch.
 
 The Homepage field from debian/control is duplicated in DEP-12 
 debian/upstream.

I also ignored this (optional) field since for me it makes no sense
to have the very same information at different places before there is
some slight tendency for acceptance.  Finally some cme tricks could
do the conversion later.
 
 umegaya doesn't support packages where there is no VCS. Not sure if
 the blends site has the same issue?

The Blends tools are using data from UDD exclusively.  So if it is not
UDD it is not seen.

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/20140207200047.gf15...@an3as.eu



Re: Unreleased libraries

2014-02-07 Thread Steve McIntyre
Pau Garcia i Quiles wrote:

I am interested in packaging Skia ( https://code.google.com/p/skia/ ), the
2D library used in Chromium, Firefox and others. I need it because a
package I maintain (witty) is replacing GraphicsMagick with Skia.

I went to Skia's download page and... found there is none: Skia does not
make releases, tags, or anything like that. You download from Subversion
and the svn revision is all you have.

Is there a policy on how to package software that does not make releases?

In general, I think others have given you good advice. In the case of
skia, is is actually useful to package it? Upstream explicitly don't
do releases, semmingly because they don't believe in them at all. The
recommended way of using it is to embed a copy - ugh!

(Background: I've contributed code to skia myself in the past...)

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
Support the Campaign for Audiovisual Free Expression: http://www.eff.org/cafe/


-- 
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/e1wbrz0-00074x...@mail.einval.com



RE:conflict between system user and normal user

2014-02-07 Thread PICCA Frederic-Emmanuel
Hello,

I dig a little bit in the debian documentation, and I found this snipset
in the section 9.2 of securing-debian-howto [1]

It is interesting to see the code used to create a system user.
But the step 4 bother me

   usermod -c $SERVER_NAME \
   -d $SERVER_HOME   \
   -g $SERVER_GROUP  \
  $SERVER_USER

So it seems that this code update silently the user home during the package 
installation.

Is it a good practice ?

[1] https://www.debian.org/doc/manuals/securing-debian-howto/ch9.en.html


Cheers

Fred

--
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/a2a20ec3b8560d408356cac2fc148e53b1dea...@sun-dag3.synchrotron-soleil.fr



Re: Bug#735134: perl: rename(1) is ancient

2014-02-07 Thread Dominic Hargreaves
On Mon, Feb 03, 2014 at 09:28:03AM +, Jonathan Dowland wrote:
 Hi Gregor,
 
 On Sun, Feb 02, 2014 at 07:31:02PM +0100, gregor herrmann wrote:
  It's the package for the CPAN File::Rename distribution, and
  therefore named accordingly to
  https://www.debian.org/doc/packaging-manuals/perl-policy/ch-module_packages.html#s-package_names
  in Debian.
 
 Thanks for pointing me at that. It seems to me this makes sense for
 libraries but not for end-user binaries.
  
  (Cf. also
  http://pkg-perl.alioth.debian.org/policy.html#package_naming_policy )
 
 This seems to agree since it suggests end-user binary packages should
 not follow the libfoo-bar-perl scheme.
 
 [ as a side-note, if the perl group are following the latter, then
   a minor-severity bug against policy to update the former to reflect
   that practise sounds like it might be in order. I'll do this unless
   anyone objects. ]
 
 I guess there are common situations where you have both an end-user
 binary and a perl module in the same source, and you might not want
 to split that into two binary packages (if they're very small or 
 something), however that doesn't appear to be the case here.

Yeah, I think I agree that this package should be named 'rename' since
it will be predominantly used as an standalone utility rather than
library. (I'm assuming noone is going to object to such a generic name).
I'll file a new bug for that.

Thanks,
Dominic.


-- 
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/20140207230756.gl26...@urchin.earth.li



Bug#738138: ITP: php-file-find -- Class that facilitates the search of filesystems

2014-02-07 Thread Francois-Regis Vuillemin
Package: wnpp
Severity: wishlist
Owner: Francois-Regis Vuillemin frv-deb...@miradou.com

* Package name: php-file-find
  Version : 1.3.2
  Upstream Author : Sterling Hughes sterl...@php.net
* URL : http://pear.php.net/package/File_Find/
* License : PHP
  Programming Lang: php
  Description : Class that facilitates the search of filesystems

File_Find, created as a replacement for its Perl counterpart, also named
File_Find, is a directory searcher, which handles, globbing, recursive
directory searching, as well as a slew of other cool features.

php-file-find is a dependency (rec.) of horde  5.1.5


-- 
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/20140208005125.2356.29917.report...@graves.miradou.com



Re: Conflict between debian/upstream (DEP-12) debian/upstream/ (uscan)

2014-02-07 Thread James McCoy
On Fri, Feb 07, 2014 at 10:32:52AM +0100, Daniel Leidert wrote:
 James McCoy wrote:
 Part of the reason I chose to use debian/upstream/ is that an extensible
 location for upstream related information (similar in spirit to
 debian/source/) could be useful. 
 
 I've really wondered, why you didn't use debian/source/ for this purpose
 and introduced another directory? Why not put the key used to sign the
 upstream source right into debian/source/?

debian/source/ is for content related to the source package.

debian/upstream/ would be for content related to upstream.

There's a distinct separation there and as the signing key is, IMO,
obviously upstream metadata it's not appropriate for debian/source/.
The only relation it has to the source package is that it's used to
verify one component of the source package.

Cheers,
-- 
James
GPG Key: 4096R/331BA3DB 2011-12-05 James McCoy james...@debian.org


signature.asc
Description: Digital signature


Re: Wanted: perl package home for condorcet computation script

2014-02-07 Thread James McCoy
On Fri, Feb 07, 2014 at 05:32:29PM +, Ian Jackson wrote:
 Ian Jackson writes (Re: Wanted: perl package home for condorcet computation 
 script):
  Paul Wise writes (Re: Wanted: perl package home for condorcet computation 
  script):
   On Mon, Feb 3, 2014 at 11:46 PM, Ian Jackson wrote:
It would like to live in some Debian package.
   
   devscripts seems like the ideal package. I guess some folks would want
   to use it for meeting times and team decisions.
  
  CCing the devscripts list.  Hi, devscripts maintainers.  What do you
  think ?
 
 Hi, James, I was wondering if you had an opinion about this proposal.
 Would my condorcet vote counter fit into devscripts ?

It didn't seem to fit your criterion about dependencies, but if you're
fine with that, then sure.

 The dependencies have grown a bit: now it depends on
 Graph::Writer::GraphViz too, so, indirectly, on graphviz.

Given the more niche role of the script, the dependencies probably won't
be part of the default install set anyway, so that shouldn't be a big
deal.

Cheers,
-- 
James
GPG Key: 4096R/331BA3DB 2011-12-05 James McCoy james...@debian.org


signature.asc
Description: Digital signature


Re: amd64 arch and optimization flags?

2014-02-07 Thread Vincent Lefevre
On 2014-02-06 13:44:30 +, Felipe Sateler wrote:
 On Thu, 06 Feb 2014 00:47:54 +0100, Julian Taylor wrote:
  On 06.02.2014 00:39, Jaromír Mikeš wrote:
  -ffast-math
  
  this is dangerous it changes results, sometimes significantly (e.g. for
  complex numbers), only use if you don't care about correctness or have
  verified its still correct.
 
 IME, audio processing software can get away with it. Csound and its 400+ 
 library of opcodes has been built with this option and I have had no 
 complaints yet.
 
 What is dangerous about this options? I see a warning in the gcc docs, 
 but how can I know if my program relies on a precise definition of IEEE 
 floating point?

Some specific floating-point algorithms (in particular those that
emulate additional precision by controlling the roundings) will
not work with it.

An example is https://www.vinc17.net/software/sipe.h when using
SIPE_FLOAT (though I haven't tested).

For floating-point algorithms that just assume that operations are
performed with some rounding error but without going further on
IEEE 754 properties and do not use special values (infinities and
signed zeros), -ffast-math may work. But -ffast-math enables
-fassociative-math and -freciprocal-math, which may increase the
expected rounding errors in some cases.

Note also that using -ffast-math may introduce security holes, for
instance if an algorithm that fills an array converges slower with
it, yield a buffer overflow. This is more or less what happened for

  http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2006-6499
  https://bugzilla.mozilla.org/show_bug.cgi?id=358569

(the cause wasn't -ffast-math, but involved reduced accuracy).

Be careful with audio processing software, if the audio files can
come from a remote source.

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: https://www.vinc17.net/
100% accessible validated (X)HTML - Blog: https://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)


-- 
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/20140208030153.ga20...@xvii.vinc17.org



Re: Updating the Policy Editors delegation

2014-02-07 Thread Charles Plessy
Le Fri, Feb 07, 2014 at 01:58:48PM +0100, Lucas Nussbaum a écrit :
 
 Additionally, that text was sent for review to 8 people:
 - Ian, as the one who raised the concerns about the previous version
 - the Debian project secretary and his assistant
 - the policy editors delegates
 - Zack, as the DPL who wrote the previous version of the delegation

Precision: I wrote it, with input of Stefano and the active Policy editors,
using some texts from wiki.debian.org as a starting material.

Thank you Lucas for your efforts, but I think that the best would have been to
ignore the complaints that led you to change the delegation.

 - The complainers are not doing the Policy work,
 - they own work was not affected by the Policy work done under the
   wording they complained about, and
 - they did not propose a better wording.

Unsurprisingly, the result of trying to satisfy the complainers about their
non-problem is to increase division in the project.

The hardline that is being taken by the complainers is removing any interest to
the delegation texts.  Basically, the Policy delegates are in charge of the
Policy, the Release delegates are in charge of the Release, the Archive
delegates are in charge of the Archive, etc.  Some may see it more do-o-cratic,
but I find this a step backwards.

Have a nice week-end,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


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



Bug#738151: ITP: python-hplefthandclient -- HP LeftHand/StoreVirtual HTTP REST Client

2014-02-07 Thread Thomas Goirand
Package: wnpp
Severity: wishlist
Owner: Thomas Goirand z...@debian.org

* Package name: python-hplefthandclient
  Version : 1.0.1
  Upstream Author : Kurt Martin kurt.f.mar...@hp.com
* URL : https://pypi.python.org/pypi/hplefthandclient
* License : Apache-2.0
  Programming Lang: Python
  Description : HP LeftHand/StoreVirtual HTTP REST Client

 This is a Client library that can talk to the HP LeftHand/StoreVirtual Storage
 array. The HP LeftHand storage array has a REST web service interface.
 .
 This client library implements a simple interface to talk with that REST
 interface using the python httplib2 http library.


-- 
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/20140208061359.6486.10657.report...@buzig.gplhost.com



Re: Virtual fizmo package

2014-02-07 Thread Christoph Ender


Am 07.02.2014 um 19:47 schrieb Andreas Beckmann a...@debian.org:

 On 2014-02-07 19:22, Christoph Ender wrote:
 Section 3.6 of the policy manual mentions (via the virtual package list)
 that new virtual package names should be agreed on in debian-devel, so:
 
 I think your use case is covered by the
  (except privately, amongst a cooperating group of packages)
 clause.
 
 Andreas


You're right, thank you.

Christoph.


-- 
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/2f8129e8-f13c-4e92-8ee9-52eb09ace...@spellbreaker.org



Bug#738156: ITP: python-klein -- Python Twisted Web micro-framework inspired by Flask

2014-02-07 Thread Brian Campbell
Package: wnpp
Severity: wishlist
Owner: Brian Campbell brian.campb...@editshare.com

* Package name: python-klein
  Version : 0.2.3
  Upstream Author : David Reid dr...@dreid.org
* URL : https://github.com/twisted/klein
* License : MIT (Expat)
  Programming Lang: Python
  Description : Python Twisted Web micro-framework inspired by Flask

 Klein is a micro-framework for developing production ready web
 services with python.  It is 'micro' in that it has an incredibly
 small API similar to bottle and flask.  It is not 'micro' in that it
 depends on things outside the standard library.  This is primarily
 because it is built on widely used and well tested components like
 werkzeug and Twisted.


-- 
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/20140208073034.29026.4964.reportbug@gherkin.editshare.boston



Accepted libio-socket-ssl-perl 1.967-1 (source all)

2014-02-07 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 07 Feb 2014 08:53:46 +0100
Source: libio-socket-ssl-perl
Binary: libio-socket-ssl-perl
Architecture: source all
Version: 1.967-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libio-socket-ssl-perl - Perl module implementing object oriented interface to 
SSL sockets
Changes: 
 libio-socket-ssl-perl (1.967-1) unstable; urgency=low
 .
   * Imported Upstream version 1.967
Checksums-Sha1: 
 096409badef781741b44f3015293ce30b01ed127 2496 libio-socket-ssl-perl_1.967-1.dsc
 0cce073c32715928dbb95e64696c6c7165f19ccb 97036 
libio-socket-ssl-perl_1.967.orig.tar.gz
 c11401b412e1fc7535a2aada91b34cb764f5a70d 7212 
libio-socket-ssl-perl_1.967-1.debian.tar.xz
 572ae3567b96c3825a1c8e6aadd7e9e5270038b9 97258 
libio-socket-ssl-perl_1.967-1_all.deb
Checksums-Sha256: 
 f8c8528141fd9b53094a7cec884c823663bec1d2988f89b192bb2e1a998d21b3 2496 
libio-socket-ssl-perl_1.967-1.dsc
 d9ee42bf667ac92732e8c35d3930757fad6b8996d24a5e5b8eeb6250ba411299 97036 
libio-socket-ssl-perl_1.967.orig.tar.gz
 01028c8aad273d044292256c0459c3b6e9428f0dc3572a3f9fbd123cfe67dbdf 7212 
libio-socket-ssl-perl_1.967-1.debian.tar.xz
 de6aa8a69b713f9737bdf74aa8310ac20a90e6f7c323c6c1c616738dc80f2349 97258 
libio-socket-ssl-perl_1.967-1_all.deb
Files: 
 854cbdc7bb890f1353d90c4fc90a8773 2496 perl optional 
libio-socket-ssl-perl_1.967-1.dsc
 78b84d50e5a04c19b1d3835514dece95 97036 perl optional 
libio-socket-ssl-perl_1.967.orig.tar.gz
 04136b77acc97d353d4c22fe6e774858 7212 perl optional 
libio-socket-ssl-perl_1.967-1.debian.tar.xz
 e710974ad6b90a138151c7507c7ef072 97258 perl optional 
libio-socket-ssl-perl_1.967-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJS9JGXAAoJEAVMuPMTQ89EREcP/3i8VFBfkJeyMA68sUg4OoLN
O+3NjNamxLBnohhWmxZRYXhhYpx2x4d6yS1lQh14vQH22Eu/hDlw2ZkauWr4uoBC
AbItcpg9N5o06gRUe4DoLKWyYecXbnhVlwBl0ExSGJ9MRZw2yGGlnvPQwsaOid4j
7qpRYplqKuqplGf11UU83yswGi5/S006fDr91t350Mw0cIX1Nc4l/YuufMGkV6kp
/XppJJsY06X9KEt/rD099YssWHtEyfjKcmdh5LE3V7G7m0v/Q2D/ydiGe/RRaASj
fpoMNtmcK91HMEGuE7WWmWxn6Fd7AnaoDqHXtyZWDUpAKTB4qIQo8XF2awciuFQp
QlCBksZ+N9H1hLtgy+afU+mJdv2lKAvW4ZecWOb0jboJiREXS9a4h80QXVSn7kfX
627u6YS7enB4enU5OKiJtvLnswyB19+FqM6efCE5n8at+mwoEruXrq5ct4R7Stye
ba40UMyPvczacvjzPg9Ms+wNNZ3VZXnd58o693KYe34lCkG7iZv9Uu+hav/9EUpE
TRtgjB4SAs06S3fI0D2BlVR/WQyh9AJYyr0p+Sexh1sjt0JvWi3FOYseJgSqHHJv
/hAsdLzzpgSz3A05ZM26K2QgY88WWyQymdcK+1YA0Pom4vTubDXZPqMpRJ4YNKFK
oidr94WanJVntYx9Vyp3
=zWQc
-END PGP SIGNATURE-


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



Accepted libaudio-ecasound-perl 1.01-3 (source amd64)

2014-02-07 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 11:47:09 +0200
Source: libaudio-ecasound-perl
Binary: libaudio-ecasound-perl
Architecture: source amd64
Version: 1.01-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 libaudio-ecasound-perl - Perl binding to the ecasound sampler, recorder, 
fx-processor
Closes: 637757
Changes: 
 libaudio-ecasound-perl (1.01-3) unstable; urgency=low
 .
   * Team upload
 .
   [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
 .
   [ Salvatore Bonaccorso ]
   * debian/copyright: Replace DEP5 Format-Specification URL from
 svn.debian.org to anonscm.debian.org URL.
 .
   [ Alessandro Ghedini ]
   * Email change: Alessandro Ghedini - gh...@debian.org
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ Damyan Ivanov ]
   * use versioned (build-) dependency on ecasound (= 2.9.1-2~) to make sure
 #736616 (mips failure) is fixed. Closes: #637757 (ftbfs in mips)
   * bump debhelper build-dependency to (= 9.20120312~) and compat levev to 9
 to get hardenning support
   * drop trailing / from metacpan URLs
   * cosmetic changes to d/copyright to bring it on par with
 format-specification-1.0
   * Declare conformance with Policy 3.9.5
Checksums-Sha1: 
 1498a78a402834599928b7a6068de5fa51e72f38 2170 libaudio-ecasound-perl_1.01-3.dsc
 a7706005eb37a9e2ce3b9341258aeea8d12f3522 5064 
libaudio-ecasound-perl_1.01-3.debian.tar.xz
 89e320401bbc21df54b55e376611c1255a34cea1 25290 
libaudio-ecasound-perl_1.01-3_amd64.deb
Checksums-Sha256: 
 4d85b4e779998c67d1f26ede58b018551a2fbbd6b5c596cbb88f395a4bb3d2be 2170 
libaudio-ecasound-perl_1.01-3.dsc
 ae5aeccb4878ac2ca3bf82ff78a5a04e67db2bcc6500a0af60065645f502da4c 5064 
libaudio-ecasound-perl_1.01-3.debian.tar.xz
 2e5780370f0bb0a2e973c200301a705ca5652eacdebeef3f759f63e31daae000 25290 
libaudio-ecasound-perl_1.01-3_amd64.deb
Files: 
 b74b4d162983be941b36f86197af6511 2170 perl optional 
libaudio-ecasound-perl_1.01-3.dsc
 5c342d9f4c335358aad7f0ef1c0b641f 5064 perl optional 
libaudio-ecasound-perl_1.01-3.debian.tar.xz
 a35282e2e2b61b4bfb71801de8ab3dc3 25290 perl optional 
libaudio-ecasound-perl_1.01-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9Ku+AAoJENu+nU2Z0qAEPU0P/1Iq5O5fiRSpAGmtu71ylF7R
RNqq7rBAvJL+EYpggVZ3mDWVIG56RyzHxEnghkSDFbgob6YDswqV6PYZsftKDSQm
/pyBIEQ8Ep62LhdbgwR1lCy4gcp28uRpI4dtCg81q2N9WcBnfo6O2lbwSmbfCa63
muby4vcCRuaAGhIOe5hoBgYJDJHmzmYsE9u32niAeFwPYykzlgQDwCLG/MFjTmuJ
UKA/9lD8uZBBXs5dYTJLO4FUladNMEgjOM/yjdSApcM8EAlc9f6rAEVnjLcF9c9J
3mJ5ju0dgde+/plxc3CnRtz+InfC0TJtthtje75bE0wL9QNZNskHs59zpFjJ2xLo
DdrsCJFRbK0gjTCAX5+gyWozMO4AAOTezVKKi00ogrdFEBZSxBxIBXffGqbOowlv
8nv425gCPsB+BBC/10adBTI2NPojCeg6G8wnTnMlzbiy9CPBmLnfZ9CUFC/q6YHZ
bIG4I5YhPQ2LmtaxNJi1EUe6SejZkWBf/ke4PWGYS7BASCgedX1WO1Azxe5ZMqoo
P3woSyN5FmV01qAeGKfjHABhfisTurDylFxNjOrznyAmLzHZqQwvMyN7RDLOCpTG
xgw2NC7RzXTLVu2qrA7ysAx37egAtUujgkDm8lgqggGCMK4YUgpvwRvKaqBoio5e
VtsaR2bxifygeHFAC1vF
=oUUF
-END PGP SIGNATURE-


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



Accepted slapos.core 1.0.2.1-2 (source all)

2014-02-07 Thread Arnaud Fontaine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 18:21:35 +0900
Source: slapos.core
Binary: slapos-client slapos-node-unofficial
Architecture: source all
Version: 1.0.2.1-2
Distribution: unstable
Urgency: medium
Maintainer: Arnaud Fontaine ar...@debian.org
Changed-By: Arnaud Fontaine ar...@debian.org
Description: 
 slapos-client - Client-side to request applications with SlapOS
 slapos-node-unofficial - Node-side to deploy applications with SlapOS 
(unofficial)
Changes: 
 slapos.core (1.0.2.1-2) unstable; urgency=medium
 .
   * debian/slapos-node-unofficial:
 + Remove 'bang' command, deprecated in favor of 'slapos node bang'.
Checksums-Sha1: 
 5625c2c119089af4470525bff07e48a8a7bd7a85 1484 slapos.core_1.0.2.1-2.dsc
 ed8fdef18f6e67f6fcd7504054fa6a8aa8db5974 26496 
slapos.core_1.0.2.1-2.debian.tar.xz
 2cb6169f67b6175c2c88adb55976d689a55c2550 51026 slapos-client_1.0.2.1-2_all.deb
 be9e6112f68e8457277ba5227b3147f303ed9d37 91136 
slapos-node-unofficial_1.0.2.1-2_all.deb
Checksums-Sha256: 
 6d0767a3ff7c9e34a38cba5cc1eb0e8fc869d6d9744566e71a0194d06fac8286 1484 
slapos.core_1.0.2.1-2.dsc
 7dab94c494bf26a47ac32855b1a8b77ea224e2fce83dc0e59610e6e74178a1a4 26496 
slapos.core_1.0.2.1-2.debian.tar.xz
 62d1e49d079dd8528ff7f04715abfc5137cc4fef3876668963f0195a9b4fa133 51026 
slapos-client_1.0.2.1-2_all.deb
 0164d2f51cfa88d2262580a03c93e460e751ea3e437988303124446625c460c2 91136 
slapos-node-unofficial_1.0.2.1-2_all.deb
Files: 
 bab75646f9cc4c9d7da071bd6bb97943 1484 net optional slapos.core_1.0.2.1-2.dsc
 f8d56c7cdbc110ee52142d8cf264f5ab 26496 net optional 
slapos.core_1.0.2.1-2.debian.tar.xz
 12aac885f22af6d8ed1a2de40a061f6d 51026 net optional 
slapos-client_1.0.2.1-2_all.deb
 b4310354c22a73ab07a20e412d7b8818 91136 net optional 
slapos-node-unofficial_1.0.2.1-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL0sqoACgkQvfKiIF42GdPu+QCgmNzUAjj9rkJyqjulxtpYPCxw
JpgAn0GuLLiKcJX6pjfS3pQMls2Cr4ow
=Mikj
-END PGP SIGNATURE-


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



Accepted caspar 20140203-1 (source all)

2014-02-07 Thread Joost van Baal-Ilić
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 05 Feb 2014 09:17:01 +0100
Source: caspar
Binary: caspar caspar-doc
Architecture: source all
Version: 20140203-1
Distribution: unstable
Urgency: low
Maintainer: Joost van Baal-Ilić joos...@debian.org
Changed-By: Joost van Baal-Ilić joos...@debian.org
Description: 
 caspar - Makefile snippets for centralized configuration management and ty
 caspar-doc - documentation for caspar
Closes: 735789
Changes: 
 caspar (20140203-1) unstable; urgency=low
 .
   * New upstream release - The Matonge, BXL Release
 + Makefile.am, configure.ac: make distcheck runs successfully again.
   Fixes FTBFS: /«PKGBUILDDIR»/missing: line 81: aclocal-1.14: command
   not found.  Thanks David Suárez. (closes: #735789)
Checksums-Sha1: 
 2f54d3dd1e2420f981e58bc162cc78ec944c7caf 1431 caspar_20140203-1.dsc
 fd900a7a3f437ff0a2f0588b4495fe6f06faae45 174120 caspar_20140203.orig.tar.gz
 4c5309ef2eb33d13f79395815046b4d3f8046d4d 6075 caspar_20140203-1.debian.tar.gz
 0ac793748a3335d22588ad3fae7dfc685a6bcf79 34750 caspar_20140203-1_all.deb
 47fa156bb45b71b58777f9398d45b0ae88cf81fc 75908 caspar-doc_20140203-1_all.deb
Checksums-Sha256: 
 3d0ad26c1303b84e3aaae3bfc2d7dafad44f65ebd3aed0891ab4322581dac4e3 1431 
caspar_20140203-1.dsc
 94ac68c424f0c96622d5f421be44b6013af493a0169fb2fa1dc3d051e43e484c 174120 
caspar_20140203.orig.tar.gz
 6b0d251c7b1df74eda4eeed47f86052c2ed5625dbdb586fb69e80900a7323caa 6075 
caspar_20140203-1.debian.tar.gz
 6688a65ecb81347abde649a963ecf1bdd0308d4445c5f0ec8a6e7e9ee188c73a 34750 
caspar_20140203-1_all.deb
 78d147170c9e391de012c184cb7b85bfd2e1986b3ceb11779ebe7d2ff80bd29d 75908 
caspar-doc_20140203-1_all.deb
Files: 
 42dcab4fb7e1d40e17f5c4ef258c72d7 1431 devel optional caspar_20140203-1.dsc
 e067447bcba298015cde71fa7d54a04e 174120 devel optional 
caspar_20140203.orig.tar.gz
 088e56af5919622ab30bad799561 6075 devel optional 
caspar_20140203-1.debian.tar.gz
 7f2b64a00163ee8086eb1b35449eade3 34750 devel optional caspar_20140203-1_all.deb
 1f22562ae4a6e2e7c66c817b09867398 75908 doc optional 
caspar-doc_20140203-1_all.deb

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

iQEcBAEBAgAGBQJS9Lz5AAoJEDNRenKl5rDIM6cH/3o9yHtlTvS1uDgSb4O6kNS/
YUU7pDV3qoh1kvW06p9dNMAQYJILgy+NIV51EJsoLmKN0MGkgStozOlkSDHEe4eo
Pcs2vqtLuCAk0ZNSepP6+yPjZcXT9RUJipH+5+mQKl0NwzJrEl0yGorj9SEVnD/i
zVqlRpF8BqnoXVd17SEK+yrvkI6U3utgvBnFw6rAwFiJyVurnQ6t2y6KiyowDw+y
fLG1q5fcOJlffgXcM677olbOopGtvrDuTWwFUNMZhKS4hcdd28+XF5tNfApwaZvM
TxNZh5G00LXY+/9XQVYDPURaabMnWjF68/CYriYMmB2qAW5ewm2sRwtWqbjjxGA=
=AVU5
-END PGP SIGNATURE-


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



Accepted ecasound 2.9.1-3 (source amd64 all)

2014-02-07 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 12:25:25 +0100
Source: ecasound
Binary: ecasound ecatools libecasoundc1 libecasoundc-dev python-ecasound 
ruby-ecasound ecasound-el ecasound-doc
Architecture: source amd64 all
Version: 2.9.1-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessandro Ghedini gh...@debian.org
Description: 
 ecasound   - multitrack-capable audio recorder and effect processor
 ecasound-doc - documentation files for Ecasound
 ecasound-el - multitrack-capable audio recorder and effect processor (emacs)
 ecatools   - multitrack-capable audio recorder and effect processor (tools)
 libecasoundc-dev - multitrack-capable audio recorder and effect processor (C 
dev lib
 libecasoundc1 - multitrack-capable audio recorder and effect processor (C 
library
 python-ecasound - multitrack-capable audio recorder and effect processor 
(python bi
 ruby-ecasound - multitrack-capable audio recorder and effect processor (ruby 
bind
Changes: 
 ecasound (2.9.1-3) unstable; urgency=medium
 .
   * Fix fixperms step for Architecture: all packages
Checksums-Sha1: 
 16cd85e308cf56e21b673d42e8838963a9acb965 2592 ecasound_2.9.1-3.dsc
 c9a57d99d8bc075400190d4a56406dd253256592 18776 ecasound_2.9.1-3.debian.tar.xz
 dc8e38fda6c0ade2503d366a2e84bccb9910b8cf 645880 ecasound_2.9.1-3_amd64.deb
 2ba9e3e45b468b0922f325e32b21dbdf617d78e9 117300 ecatools_2.9.1-3_amd64.deb
 03fd2f290279b90a1bbd01ab28ca9404fecb3446 73344 libecasoundc1_2.9.1-3_amd64.deb
 8f3832a03404155b3faeb248cbed89ac6482e328 65636 
libecasoundc-dev_2.9.1-3_amd64.deb
 2e6d9e5861bc1a1d6ddf62bea3af3b8b2fc0ba97 68146 python-ecasound_2.9.1-3_all.deb
 43ce48e54d7e847b4a17aa37a0c5e8e38a0a6e7f 65178 ruby-ecasound_2.9.1-3_all.deb
 f6064141cd5b3979fd7fe82eabfb1ee73e915fd2 85052 ecasound-el_2.9.1-3_all.deb
 9807815e8bdbaa2900841d1d8818fc9b4c29ee3c 708206 ecasound-doc_2.9.1-3_all.deb
Checksums-Sha256: 
 8d2a9310de982098d606bbc5264ce20a3339c83c157a9f80e9741261c7f4aff7 2592 
ecasound_2.9.1-3.dsc
 bae3407dcf0371135807d929921f3abce3a3915f23a6d15870d4c7f12dcc3826 18776 
ecasound_2.9.1-3.debian.tar.xz
 eb71721a170a4014dabbc97091d597654b1105b3bec8de5ff276e7f1269de9b2 645880 
ecasound_2.9.1-3_amd64.deb
 3614daa3faaa1c7f6233fa6628bf0bb075be57daca6a0304a884b8c67b952e69 117300 
ecatools_2.9.1-3_amd64.deb
 abc92fa7faf1c3c2cc1216e2057f5cd648863cf259a3761acc649b2da5706f5b 73344 
libecasoundc1_2.9.1-3_amd64.deb
 e331fb2fe6fcf658f0dcb18619d3d22fbe01a45e1018ee000279663762fdca97 65636 
libecasoundc-dev_2.9.1-3_amd64.deb
 71e4b0949ccbf85dd89b6c00a3d1d8125e50bf0ab516042e6cbc7657b8f9a742 68146 
python-ecasound_2.9.1-3_all.deb
 ac6c39b0bce2a080cd4b57aae593fc2e51313fea9b7806b5759440d9961dd851 65178 
ruby-ecasound_2.9.1-3_all.deb
 bf1ec50d691fe07a029c21b2e458af54862671fb1fa87aa8cbebb1d5fc72b452 85052 
ecasound-el_2.9.1-3_all.deb
 226bdd2abb4b07d3da9b0149924d21aa010ec3acd09bad2bda18001e54412288 708206 
ecasound-doc_2.9.1-3_all.deb
Files: 
 8f1c6397479e318cb08ea12cc82be912 2592 sound extra ecasound_2.9.1-3.dsc
 9bbab53bad6c4cd2df6f3895291c4655 18776 sound extra 
ecasound_2.9.1-3.debian.tar.xz
 fba7d3672a6c1953f9a805c7b3a295bf 645880 sound extra ecasound_2.9.1-3_amd64.deb
 9477d0e61e073c4fb3a3ce7f3bf2fdce 117300 sound extra ecatools_2.9.1-3_amd64.deb
 f3dcad1e9a5d8be02acefe7e46cf4a6f 73344 libs extra 
libecasoundc1_2.9.1-3_amd64.deb
 cec77b0e7c180e24644232df82540ce6 65636 libdevel extra 
libecasoundc-dev_2.9.1-3_amd64.deb
 b721787faa629fc4d1c1cd75a3eda9ee 68146 python extra 
python-ecasound_2.9.1-3_all.deb
 2a303e20595bd0e41b9d1572c1caf96d 65178 ruby extra ruby-ecasound_2.9.1-3_all.deb
 947392c0d895e1269c7a06d8e21504cd 85052 lisp extra ecasound-el_2.9.1-3_all.deb
 c16960912f3f0297032797af390b5c17 708206 doc extra ecasound-doc_2.9.1-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS9MXtAAoJEK+lG9bN5XPL8esQAJaIpxEacWMjoFRs2B5D4IMh
J1yZl3f+/OUKuuCRDh/zc5VputhDwA/FF5LhbPP/u0YdTUFIUoBnJPZ1KLm0C04H
dveMpF6Y6gQF8pVTzXBYtxpmlk61Gl00UbMpjks9ckZODEiKOCPz6jtnVWWcy8xR
3Ag4HW65o/24/1/GLi7izzHUMVNAe9XEwXu7xZfBSviqYH1d8TjLhK0Yd4vNfWbi
B66X5cK1Je+oYRouj3nUtbLcUZvtwcH4lntcoY4OdwiFoWpRzNfa0oP7zPHqVjeH
gg33/+g+8LqiSO+T+CVPCff7mv3QhMJ2d+wd/G4YLLBypyILchRGmb/hl647R7hZ
yIsffF88zaPK/MdvTfFdMa5bftWv1FR/GRi9qWrnggzxGkd2tcHMeidhzxUj/0jp
Cn0wP9z8cZztQYHr1YcdDnjP7HseuFZ6OwCRUTVRHwwVhm8W1LH+GifaJbv0Sx5g
0cg/ytaHb+Qa7cn9cEdU826VX0BJ6LJrWjAy/9NhxnuFs1vKh5VdK8mcPAkE+Hfq
7mMrbEF3w8PjsK8igF9KkqoZXxiiN9PAehBSx0oJhOvOaA2P9ErYdW2k2V2RxbkW
XDVTwZH0NuH32dMW0fOIDerLUQLb2ypTzNCBrV9MiTjaMJ+ilpPXWYHOFznsJkZm
fPbhPWbyh3ijtv0NaR7D
=sKOL
-END PGP SIGNATURE-


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



Accepted openimageio 1.3.11~dfsg0-1 (source i386)

2014-02-07 Thread Matteo F. Vescovi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 23 Jan 2014 09:27:38 +0100
Source: openimageio
Binary: libopenimageio1.3 libopenimageio-dev openimageio-tools
Architecture: source i386
Version: 1.3.11~dfsg0-1
Distribution: unstable
Urgency: low
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Matteo F. Vescovi mfvesc...@gmail.com
Description: 
 libopenimageio-dev - Library for reading and writing images - development
 libopenimageio1.3 - Library for reading and writing images - runtime
 openimageio-tools - Library for reading and writing images - command line tools
Closes: 721001
Changes: 
 openimageio (1.3.11~dfsg0-1) unstable; urgency=low
 .
   * New upstream release
 - debian/patches/: patchset refreshed against v1.3.11
   - 0002-Fix_IlmBase_issue.patch refreshed
   - 0005-Fix_FTBFS_due_to_OpenEXR.patch added
 - debian/rules: --sourcedirectory parameter dropped
   * debian/control: Uploader e-mail address updated
   * debian/control: S-V bump 3.9.4 = 3.9.5 (no changes needed)
   * debian/control: OpenColorIO support enabled (Closes: #721001)
   * debian/: SONAME bump 1.2 = 1.3
 - control: libopenimageio1.2 = libopenimageio1.3
 - libopenimageio1.2.install = libopenimageio1.3.install
Checksums-Sha1: 
 1d6a4853b4d59c0bdc195f67988d624433242f31 2448 openimageio_1.3.11~dfsg0-1.dsc
 0913e9523b247b4521b502cab268920d2b574371 14058785 
openimageio_1.3.11~dfsg0.orig.tar.gz
 155842784700a77eca9d8c393de784295271cafe 18400 
openimageio_1.3.11~dfsg0-1.debian.tar.xz
 8adfa986d42f72bab5247d035e5b190d65454dd8 1291044 
libopenimageio1.3_1.3.11~dfsg0-1_i386.deb
 d2cb0167f365bbe2dfba24c617daf959455d7062 948120 
libopenimageio-dev_1.3.11~dfsg0-1_i386.deb
 404185378ab839dd9509443c45fcbec1ee929e18 333200 
openimageio-tools_1.3.11~dfsg0-1_i386.deb
Checksums-Sha256: 
 52552760e0afe8528cce9c83abcea689a5320e84ccf97e96b1d598a272b69ef8 2448 
openimageio_1.3.11~dfsg0-1.dsc
 6ef30b9f0414d400818b245c66242e7cf0fba25127eaa6ee1fe84cec1d41f82a 14058785 
openimageio_1.3.11~dfsg0.orig.tar.gz
 978588b6ceab3736095dc0faf4cb6c8f5d0d0d3bde687578117ec1fd43595d8c 18400 
openimageio_1.3.11~dfsg0-1.debian.tar.xz
 741fa57876b3f1eb7253f38cb436e1bbeebeecc5c3657782cff7f1e9b23dddad 1291044 
libopenimageio1.3_1.3.11~dfsg0-1_i386.deb
 3e327450b003ca22651de74fd4db9571ef8d12798bcf7f3a4f19686f1d7cfd5f 948120 
libopenimageio-dev_1.3.11~dfsg0-1_i386.deb
 b300e2034bd794401758c33cb1646e9c57a3a54ea83af2e7063d5ee75f21dd11 333200 
openimageio-tools_1.3.11~dfsg0-1_i386.deb
Files: 
 13b60a21af768cd1ac598d9c9a791da3 2448 libs extra openimageio_1.3.11~dfsg0-1.dsc
 ebe9745868c7f51efe8da3a67afbd2a7 14058785 libs extra 
openimageio_1.3.11~dfsg0.orig.tar.gz
 755a41518d1b2358adabd57e92e74793 18400 libs extra 
openimageio_1.3.11~dfsg0-1.debian.tar.xz
 dadfb84f2159de90bbec3b58ec7ba08a 1291044 libs extra 
libopenimageio1.3_1.3.11~dfsg0-1_i386.deb
 cbac75350f904257ea1c3d3fb586216c 948120 libdevel extra 
libopenimageio-dev_1.3.11~dfsg0-1_i386.deb
 326f89989c380b79c7f5dfba0d533ab9 333200 graphics extra 
openimageio-tools_1.3.11~dfsg0-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS4O4RAAoJECcT5nkIRlGvwgIP/RexRCdE68x2C8YMDnGDPwAC
iPYs4NQhVG9FdrMmi3umx5TlWQdrw1q4F8hSIiyhSMM999cFcKDYwcKSTrOTK9eo
6d6FtLEtz3+crexoCneRS4WNVn1BuBjXvXZuuk3YAP0H/Sr4xc9yGJMwwoZF9g99
ffdjoSEMo0uOo9KbpX6gzlo3GnTLcj6bI3GSnjj0FRc4ex+YbTdpq0NlTJM8whSL
oG4QhtW8o1EwOPdFrtmv/0/RATjhWvnKbMLUXR8IHHJJEA6q/h8Zjjkdb/fQ8mbP
SjG40riieEizR+3QTzfUSoIUSMciTASovkg5URFsww0ZOKvQ23+RdKtugACTh33D
M7Rgi1lplo9fFvdLc9nMPrf/0ds3QgDSCBMWpHkNiH6k9TqWftvQtzZdfkgnmKix
XHrNDIbFhkjbuj8Qz2MmXJM0zPTbgvqWHhReV44Nfq/4py8xJdlnQkvfTh5WKuEM
vSjdc0K6Uv8T+GDw/LHaV/i7vfdMlkUo81cvHtmxZC/5FTYjWOVX9gyuxxPA/lxX
mxYjPZ4GrhuIW6UxvexZZuvhcIUlJrQ5v24yigCoQTu6yaJxmKaaqV5f0ZupEiJu
wucEgicsIGfFaDbH2lRLg9ISWD4KdJsgSZuD27GKFj1RrSerVH/Qyw0f4AVHgX3+
rhkZc3dkXG5VlNg+25p8
=WEnx
-END PGP SIGNATURE-


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



Accepted xorg-server 2:1.15.0-2 (source amd64 all)

2014-02-07 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 06 Feb 2014 16:14:15 +0100
Source: xorg-server
Binary: xserver-xorg-core xserver-xorg-core-udeb xserver-xorg-dev xdmx 
xdmx-tools xnest xvfb xserver-xephyr xserver-xorg-core-dbg xserver-common 
xorg-server-source
Architecture: source amd64 all
Version: 2:1.15.0-2
Distribution: sid
Urgency: medium
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xdmx   - distributed multihead X server
 xdmx-tools - Distributed Multihead X tools
 xnest  - Nested X server
 xorg-server-source - Xorg X server - source files
 xserver-common - common files used by various X servers
 xserver-xephyr - nested X server
 xserver-xorg-core - Xorg X server - core server
 xserver-xorg-core-dbg - Xorg - the X.Org X server (debugging symbols)
 xserver-xorg-core-udeb - Xorg X server - core server (udeb)
 xserver-xorg-dev - Xorg X server - development files
 xvfb   - Virtual Framebuffer 'fake' X server
Closes: 730552
Changes: 
 xorg-server (2:1.15.0-2) unstable; urgency=medium
 .
   [ Julien Cristau ]
   * Bump debhelper compat level to 7.
   * Upload to unstable.
 .
   [ Yaroslav Halchenko ]
   * Adding xorg-server-source binary package to provide a tarball with
 original (patched, autoreconfed) sources of the xserver (Closes:
 #730552)
Checksums-Sha1: 
 5feb15450080059282613276f001423d8b7d96b7 4300 xorg-server_1.15.0-2.dsc
 90fc4cda29459272c8b72b50137793c4bfdb1fdc 86627 xorg-server_1.15.0-2.diff.gz
 051e9fc522261e0f60f42de0acc0186a054ee80d 2788890 
xserver-xorg-core_1.15.0-2_amd64.deb
 ba19dd1ce9dffe61855d4599a227797098f3f113 895068 
xserver-xorg-core-udeb_1.15.0-2_amd64.udeb
 9c21174acdde0a810234828f64df0cf85151fc55 1771934 
xserver-xorg-dev_1.15.0-2_amd64.deb
 f3adfa950977df93b3d1e0a37f5e041839c46a95 2305378 xdmx_1.15.0-2_amd64.deb
 1c86638268d3f4d3ffe99ed4ada431ec98ed1c27 1622160 xdmx-tools_1.15.0-2_amd64.deb
 9cce5b9da143605b1d873fdf3dab316dd42689ec 2163806 xnest_1.15.0-2_amd64.deb
 045a02d3232346690891dd5be29258bd3db79d00 2309508 xvfb_1.15.0-2_amd64.deb
 db1f1a5a55029a2e98dd852d0150bd282c247529 1594422 
xserver-common_1.15.0-2_all.deb
 66286f81902702ec97732c35b7c70233d6ed3702 2376834 
xserver-xephyr_1.15.0-2_amd64.deb
 d1d68968f23303d248c1cfd6b64052a2959400bd 6044884 
xorg-server-source_1.15.0-2_all.deb
 fb06fda80f1b7e09f4fef60bdc51789d96a28a73 5307794 
xserver-xorg-core-dbg_1.15.0-2_amd64.deb
Checksums-Sha256: 
 fa06aa7e8c0a01ecd5e73355809310cad1c0147327a7cfe68a29dd67c3a94500 4300 
xorg-server_1.15.0-2.dsc
 04fca0cdb93630604750777cf9fa157c4ac5ce7d2338c25e37a0f29fb1ace983 86627 
xorg-server_1.15.0-2.diff.gz
 29c7eec05ebde7f51e7e1666d73bea0203ffb6954d036b33c1b4d883c019ddc5 2788890 
xserver-xorg-core_1.15.0-2_amd64.deb
 ea1927306280c4c7b2cd4ff90e125642a978418919ae7a77014beabbea509871 895068 
xserver-xorg-core-udeb_1.15.0-2_amd64.udeb
 0039bdbed7083620fbf70dab50958e138af5ed122747ce6de0dc564ce6fcf3a9 1771934 
xserver-xorg-dev_1.15.0-2_amd64.deb
 ea758d26c28a20d62e35888eb66b6c3e3e3498ee2f963f38091c4ba6d8f3efc1 2305378 
xdmx_1.15.0-2_amd64.deb
 48e1bd91154e365d566819ff82df3403b75db68eb9276372b4420c14321bb32e 1622160 
xdmx-tools_1.15.0-2_amd64.deb
 07690cc40c2b681d374ba631508c48ad97338ca68beac36b8734a81c0d30afa3 2163806 
xnest_1.15.0-2_amd64.deb
 9f8764aa515c8936e843d403e18210d15e7505fc0cbe171a457b8668d4298beb 2309508 
xvfb_1.15.0-2_amd64.deb
 f10ce6e06dcdeefd0535cb5fb61b1a389568d11b95a53c475c14ce49ad0c6095 1594422 
xserver-common_1.15.0-2_all.deb
 b5e13944a7faa31ff4187582c73d3a716a765739d6035cb684bb2cb7f14b332e 2376834 
xserver-xephyr_1.15.0-2_amd64.deb
 3726a673f5dacfe487b1a873e43379260fcb63eaf6d8f800ffccf9468d0b1895 6044884 
xorg-server-source_1.15.0-2_all.deb
 b7e37a4f695fbc895d8611d5559ef22437b3d161071fa52104790cbfa3797645 5307794 
xserver-xorg-core-dbg_1.15.0-2_amd64.deb
Files: 
 31000394a5ff32ddb740666eca53d245 4300 x11 optional xorg-server_1.15.0-2.dsc
 23defeef806a5606c11d04d506b09a60 86627 x11 optional 
xorg-server_1.15.0-2.diff.gz
 372c183c33c4e42d3d7e2dbca84a630a 2788890 x11 optional 
xserver-xorg-core_1.15.0-2_amd64.deb
 eeb3ee69a8cecd77d1397e50b4fbd6ea 895068 debian-installer optional 
xserver-xorg-core-udeb_1.15.0-2_amd64.udeb
 c355269ad6bd62eaf3e10d6a8783f9c7 1771934 x11 optional 
xserver-xorg-dev_1.15.0-2_amd64.deb
 5f48c33c13bf3645c5519dccd7095529 2305378 x11 optional xdmx_1.15.0-2_amd64.deb
 f251f5f672bcbbc2dde00433d0feec7b 1622160 x11 optional 
xdmx-tools_1.15.0-2_amd64.deb
 a5c53c80728daf03be9f8e6338e5a01e 2163806 x11 optional xnest_1.15.0-2_amd64.deb
 5b7c9297210670a2157eeb6cde1851c3 2309508 x11 optional xvfb_1.15.0-2_amd64.deb
 fe55132deefdbd60f257053d01c2ade8 1594422 x11 optional 
xserver-common_1.15.0-2_all.deb
 00f975e128122010da6bf238a918659a 2376834 x11 optional 
xserver-xephyr_1.15.0-2_amd64.deb
 2f78066dccebafaf7909b978daa8ca32 6044884 x11 optional 
xorg-server-source_1.15.0-2_all.deb
 75e37caa0892469e6e9c70ee35e22406 5307794 debug extra 

Accepted libcommons-fileupload-java 1.3.1-1 (source all)

2014-02-07 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 06 Feb 2014 22:11:54 +0100
Source: libcommons-fileupload-java
Binary: libcommons-fileupload-java libcommons-fileupload-java-doc
Architecture: source all
Version: 1.3.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Emmanuel Bourg ebo...@apache.org
Description: 
 libcommons-fileupload-java - File upload capability to your servlets and web 
applications
 libcommons-fileupload-java-doc - Javadoc API documentation for Commons 
FileUploads
Changes: 
 libcommons-fileupload-java (1.3.1-1) unstable; urgency=medium
 .
   * New upstream release
 - Addresses security issue: CVE-2014-0050
   * Removed 002_CVE-2013-2186.patch (applied upstream)
Checksums-Sha1: 
 b3c08313eb1a69e68a1eca54ebd0b8f51a8305bc 2401 
libcommons-fileupload-java_1.3.1-1.dsc
 329a9cee297f859499213e6d0e3f9a0b1ff6749e 133326 
libcommons-fileupload-java_1.3.1.orig.tar.gz
 45a8ac0604685a461a508454fb289beaf4158a27 6724 
libcommons-fileupload-java_1.3.1-1.debian.tar.xz
 275646ec2129329641871ca3d2d13a73930c5be3 63072 
libcommons-fileupload-java_1.3.1-1_all.deb
 56de8d7a07a686d11a5e53ec7be33bf05bf756fb 375532 
libcommons-fileupload-java-doc_1.3.1-1_all.deb
Checksums-Sha256: 
 12870650c08e75d4e76e5f6df38e961d449b69e0691dc97f128bf3721f3396fa 2401 
libcommons-fileupload-java_1.3.1-1.dsc
 b7a3444e615702da342292d14e447fe26fe4d9b144f3dafc525870b008a6c95a 133326 
libcommons-fileupload-java_1.3.1.orig.tar.gz
 349110765eb274b7a50975abb4ef4101c34247db20c073a80f9b9cc7729a7d25 6724 
libcommons-fileupload-java_1.3.1-1.debian.tar.xz
 1f72d88a584e45fc796055e972f4b62d1b25d94325b633aace34c84bdbc36075 63072 
libcommons-fileupload-java_1.3.1-1_all.deb
 6bb8473d633372acab94ffc0a142cef2010fb963809d64d636e2e184a4d56f4d 375532 
libcommons-fileupload-java-doc_1.3.1-1_all.deb
Files: 
 c2d16a9e761fe3caf8ba52a0e5a33b6f 2401 java optional 
libcommons-fileupload-java_1.3.1-1.dsc
 0903f9606096d11a8ff57525fd9ee83c 133326 java optional 
libcommons-fileupload-java_1.3.1.orig.tar.gz
 c499fc3d8f6fca154717e677fc358a5c 6724 java optional 
libcommons-fileupload-java_1.3.1-1.debian.tar.xz
 95d0c0ab6cd9831d25e4d2cef753031f 63072 java optional 
libcommons-fileupload-java_1.3.1-1_all.deb
 e494a0f9a3e4681b5e095fec981e1611 375532 doc optional 
libcommons-fileupload-java-doc_1.3.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS9NOyAAoJEPUTxBnkudCsb10P/j0Ge2Bb2tDej8JTYzfdTdxX
CPqUNrtRdF9ZFrwVgykf4maLzLBiL5pQSdIv7qQvFPjYs+vQ3nsK0DyJejyVD5/k
Zntz/IdIqyj+H492tG5QrPiQ8o2Bdxo0Bhr9CkOxnShbIDqA9C0vCKQdkhGioKim
hEGyAQutWaGgNzwejSl8M21+nra93wX2MMgj2hdijONqiX09higR1LRmePICaqTX
P3uXQ32NOdBkg9xEoVur4/YsT2jrjsj25uQioqcMGrEnBJLkOjM9q54KOe/EOI2E
DCiodibdeM4agdEUyKswHoI8fsoe38xUnxanWX6nDnMxObJcfXpFQeR7SCRTLA7q
3RHUbBX4ae0PWwvSOSTaH/r921AUjSmv+db//aUpLnMpmDfUf7ixA9ytc9ifjIsG
hiiGCJ+DYnFhWYIy5avV+O5HvKCYHAuDV3PJhCLdUBfp5o7eFVBT4yJu/7S+RHtP
Y9PkRMY1rO0kJ10LMuYCqUNcofkgRex94vkffGD022Y7EaZ2nn17MZ2zKbYl/hkZ
G+kBXv4IMvr9hxLbh9+ueT8yHrDkeT8Vg2pHacjieJsoqhac0Qf8vmEqPuPIKXSp
3o6E+wxvazlfBeqyWYi+WmyCjgL3lGnC8hB7JrBAlINMWFXg+bN6a6s6KvjeRw7j
fvJW7xCKxZ3FyBJCthN6
=UbOU
-END PGP SIGNATURE-


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



Accepted postgresql-pllua 1:1.0-3 (source amd64)

2014-02-07 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 13:31:26 +0100
Source: postgresql-pllua
Binary: postgresql-9.3-pllua
Architecture: source amd64
Version: 1:1.0-3
Distribution: unstable
Urgency: medium
Maintainer: Christoph Berg m...@debian.org
Changed-By: Christoph Berg m...@debian.org
Description: 
 postgresql-9.3-pllua - Lua procedural language for PostgreSQL 9.3
Changes: 
 postgresql-pllua (1:1.0-3) unstable; urgency=medium
 .
   * Run regression tests in the toplevel dir so the source doesn't need to be
 built.
Checksums-Sha1: 
 edb1fc3dd9e9be5f47609249198be36a117c509c 1987 postgresql-pllua_1.0-3.dsc
 155bc1c768390a9e2a16c5145a36cd5b3d7c13f1 4448 
postgresql-pllua_1.0-3.debian.tar.xz
 bba5cba9fa786b4446acf096cb6be20984a1c8f4 40156 
postgresql-9.3-pllua_1.0-3_amd64.deb
Checksums-Sha256: 
 98079f20223dd3622aade35c466dc5e567bc3afefdfa9a9f444d9d4a9ba33183 1987 
postgresql-pllua_1.0-3.dsc
 c294e813af84f94f2556fea45c04e2cfd6e23ef8c298f30ef436261f274cc4ef 4448 
postgresql-pllua_1.0-3.debian.tar.xz
 daedec9505630e07205bf24bddf2de645e1561c360ded92d853cad3ce9e4 40156 
postgresql-9.3-pllua_1.0-3_amd64.deb
Files: 
 c6af53422bba1a199cbdefc606ebfc92 1987 database optional 
postgresql-pllua_1.0-3.dsc
 271db17ff8c1fe3a4e4d84a3c36446a9 4448 database optional 
postgresql-pllua_1.0-3.debian.tar.xz
 00128bba7efc0b0d7e2036b15293131d 40156 database optional 
postgresql-9.3-pllua_1.0-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9NVmAAoJEExaa6sS0qeuJBUP/A5GkXSTLisGtLh4hDeMOfjM
/tWMPdkbDnvOMH/6X7nSKTVhZDPOxlu7yl3u6fgsqwAN8k6mE9jy2PlW4PdVTa5i
bYtAo3Q6PNU/g+Li6IeyCimxFoZsHZLBLEtJIFCyGMUqvbXgQE9hkKTZTjAoz86T
T7GWPV4rPHrreIjEblOMLzvW0z7FKGrPdIUZDgy2F7EL3PE9cs6LxHTOxAXfBLbi
TP+7kmiKL1QhKQfMMjMdBlhTQATH8YvcW6jHSKRJKzA1b22p6DKNkpuzt96Aurzy
lcknTE6vybevmFOrQ7A/QVEqraT3gE2oEYqiIP2PX9N0PNqng4TMS+iOu0ChhZv2
+VbsBpBURbBLy/DW4gAl0QOHy1aI08QAyYMFfaxCLveY9O16gRTTiKRvAjLs+UsA
6NvkbuMa2kpYVW3zGhOfAe9NxZ/nUm5GnPecYawOxdEATsmmOb5S47oao0F2foeS
fL2LxdhcBk0gzRkRDMkxtV+V9Y75MBpBM3Xi1r7ySd9pXwvNk7XV9UuFkHLbXIfW
iQ9WMU5RD515PoBmqGdVWcyE89YL1XT6oAJaGxGZMTxytrUNVLqKG95ToWhU4+Zq
J5Coxa/4OburNtO9atLjkEZceCn0LpcDSnkfjnkuD8J0bYdzc/YL/10dNW1sOjMD
u3khF82+yCKvnw8WhhCp
=72GP
-END PGP SIGNATURE-


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



Accepted vokoscreen 1.9.0-3 (source amd64)

2014-02-07 Thread Joao Eriberto Mota Filho
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 10:17:39 -0200
Source: vokoscreen
Binary: vokoscreen
Architecture: source amd64
Version: 1.9.0-3
Distribution: unstable
Urgency: high
Maintainer: Joao Eriberto Mota Filho eribe...@eriberto.pro.br
Changed-By: Joao Eriberto Mota Filho eribe...@eriberto.pro.br
Description: 
 vokoscreen - easy to use screencast creator
Changes: 
 vokoscreen (1.9.0-3) unstable; urgency=high
 .
   * debian/control: added libopencv-ocl-dev as new build dependency.
Checksums-Sha1: 
 6f81cad68f7a293bec620296d2e3fcb0956d1e38 1591 vokoscreen_1.9.0-3.dsc
 18ee7cd62eb1a09ba18058a00ea66e5dce3e81a7 7700 vokoscreen_1.9.0-3.debian.tar.xz
 77b94f45d4bf6b5249d658dcfc91a2e896e08cb4 703692 vokoscreen_1.9.0-3_amd64.deb
Checksums-Sha256: 
 e92d3de1bb395f591105c75fcda507a73aac7518ac6b039455b632bbb1a3dd9f 1591 
vokoscreen_1.9.0-3.dsc
 45206b12dd05fd98e3eaf12b98d5095aa5debf59950fe7709c5c58f4c9c6b9ae 7700 
vokoscreen_1.9.0-3.debian.tar.xz
 5641bb9edc2086b5cc69e1df8711891334ef6b60bd0befe6d32fdc748f69b324 703692 
vokoscreen_1.9.0-3_amd64.deb
Files: 
 805f3342a79525f14554b77aff52cca9 1591 video optional vokoscreen_1.9.0-3.dsc
 dcc1b7a767de825973a09126046c656c 7700 video optional 
vokoscreen_1.9.0-3.debian.tar.xz
 03d0d9a90ef60ef917642dd497dd7ed1 703692 video optional 
vokoscreen_1.9.0-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBAgAGBQJS9NM3AAoJEN5t4DnBz8JlIjsH/10YnXa36j8AntHaQ7MK1+kf
SAW/TmIGuacQBM5OuC0aE1wuv6zC8Ah4K7MacNrPiRQan+aWo0eiy9F13XTWI6cu
K17dtyql1hILx+a7znsbl9HzdyuXU4xTxTA1MrjkYP8CjeWM/US3Z5NeDgyflrOI
a5bVuO89a9sxs/IazPvRUsNRkVaynQFs5KsuIQAX/05liuO0MhoMCfO8ufcwmyS/
o5tpCh/JQhcUOldsYpSo0C2lsBcoe5QmfUI4/O4K3JoxnYuqQnm203pu++1Qb67B
Can5tOlKXyGOmOIItsAdpL6reYUdLz5R2jBx2WaR0f3eFd/PrEcXl0cyW49jAUg=
=Ox0X
-END PGP SIGNATURE-


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



Accepted ruby-feedparser 0.9.3-1 (source all)

2014-02-07 Thread Antonio Terceiro
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 09:34:23 -0300
Source: ruby-feedparser
Binary: ruby-feedparser
Architecture: source all
Version: 0.9.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Antonio Terceiro terce...@debian.org
Description: 
 ruby-feedparser - Ruby library to parse ATOM/RSS feeds
Closes: 737767
Changes: 
 ruby-feedparser (0.9.3-1) unstable; urgency=medium
 .
   * New upstream release
 + Includes fix for crash when parsing URL's with non-ascii characters.
   Closes: #737767
Checksums-Sha1: 
 d2939b5a2762c5f71b1f073dc4615765c7f136e4 2126 ruby-feedparser_0.9.3-1.dsc
 c36d173964ed2e297bc7aef4d673cda1ca9636cc 33941 
ruby-feedparser_0.9.3.orig.tar.gz
 3dd6ebf61a0667c27898e788a2f9c1954a7f3704 4228 
ruby-feedparser_0.9.3-1.debian.tar.xz
 f1c6bc52b38b454f52047086eea42afc81a45e78 16146 ruby-feedparser_0.9.3-1_all.deb
Checksums-Sha256: 
 a98e2873c4b58d36e27321889dccedc784310c1a7c815a8c16398ac31006ae89 2126 
ruby-feedparser_0.9.3-1.dsc
 f919f83b21c94ea0c449af8767493621358395b6558a597ed4cdae634a7f1bd8 33941 
ruby-feedparser_0.9.3.orig.tar.gz
 a86436ba15ef02bb14a3f59b2b88e987983766871c5aab002485458471590ba3 4228 
ruby-feedparser_0.9.3-1.debian.tar.xz
 97aea091cef52196e709883bcc7c8565787c1eea70c5501bc7b8466f0a22bf7c 16146 
ruby-feedparser_0.9.3-1_all.deb
Files: 
 928f06b74f528867f1875d7c10b19d32 2126 ruby optional ruby-feedparser_0.9.3-1.dsc
 cdb702121af02a4d606498b2fe916bfc 33941 ruby optional 
ruby-feedparser_0.9.3.orig.tar.gz
 95e2db90c51e66ea373133ae2c6ac570 4228 ruby optional 
ruby-feedparser_0.9.3-1.debian.tar.xz
 6c012e61e78eef9d5b35a4efcce881c0 16146 ruby optional 
ruby-feedparser_0.9.3-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9Ne/AAoJEPwNsbvNRgver1gQANMZXxKnmvKaJ1dRYtE1qsw/
qnal7qsPA+PdOYjmP+w5Ur22P6/+GHH+42hbbx0Tj1MPREw4MBATVb3gzT/xwIUQ
LeFwLRqek9r+VytwiLFeKBVqAI1qZ/xf29xLUkQjwVbbG1aIQ9KI/7SyzKKTfJ29
vN4T6Uj6X5hENoqPjgZblkFDNCqb9s3zvV+cGr69SX+qBk5039Znx4wMy+A5BZeP
Wjx3LiYtrV2vDmyKtZsjHGQ5/8Vk05Kpey85bXj1Sqh9Z2Y4w08vUVul/tGrKH5U
TP7l8OyDNQiKuRKrqRLu6X8V7J51/HnG9Ij2+5BF7N6oMoBvLDwy7yO3YLCge8cg
yUnncQOwnNROvez47za3mJl2ZAERaOX7XN0hq/YK+30hOukik8l7VndQeHl/tMn4
l/fj6beCXuz5S4YH1krJeYFg4Xiio/1k+L0errjyjXq3L/8NdGXrSxG6Di6i0PDB
Ax3QC7yvC0sSEKLquJZR2f17MqopGwg4kfcc0Y6jH1aXfmcDv4GsD7tq6YRq/HiJ
v6kCaYCKG99NDamELmTtbgO0XIjCTGGFyp7+qMfKZBaUKC6rSb5b+88SgOlof6UP
bp3FR/9U0tdZNWhQobMAXLFuU7J4xieJA8svK6QcPgQuDtALHl8aGP2JCkI+EQu1
2qDVPYk1SoJZybpPiNhf
=ZXGG
-END PGP SIGNATURE-


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



Accepted feed2imap 1.2.2-1 (source all)

2014-02-07 Thread Antonio Terceiro
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 09:56:58 -0300
Source: feed2imap
Binary: feed2imap
Architecture: source all
Version: 1.2.2-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Antonio Terceiro terce...@debian.org
Description: 
 feed2imap  - feed aggregator (RSS/Atom) which puts items on a IMAP mail server
Closes: 731073
Changes: 
 feed2imap (1.2.2-1) unstable; urgency=medium
 .
   * New upstream release.
 - Fixes regression when dealing with documented syntax in configuration
   file caused by the move away from Ruby 1.8 (Closes: #731073)
Checksums-Sha1: 
 c2ed29d91ce37c0050123343abd765fdb60a22d3 2087 feed2imap_1.2.2-1.dsc
 43c31eabfc287e86c692f10f17be2e69ac0677ea 41303 feed2imap_1.2.2.orig.tar.gz
 b90c2bb8a9e4cd6d6a04669ea315e3798f2df389 4244 feed2imap_1.2.2-1.debian.tar.xz
 3177710d25cef2f186e3d39a908408e74d41988a 27448 feed2imap_1.2.2-1_all.deb
Checksums-Sha256: 
 3cd0e13ed0a1d4ffaf5b0516e2b5fde132dbdad89c6e6eb383827c62614dc037 2087 
feed2imap_1.2.2-1.dsc
 ffb433523a49530167044d745f61c1203dc6786e8850834b79526ef588eb8bf6 41303 
feed2imap_1.2.2.orig.tar.gz
 e7cddad4ea03316c3eb0b9155da990ab8ef1fa7d1d8a852f7a23511dd084ed2b 4244 
feed2imap_1.2.2-1.debian.tar.xz
 8a295c68537401697ddc17ea5dd5acdc56a6e6003ca2df802a5803632b6d0bc6 27448 
feed2imap_1.2.2-1_all.deb
Files: 
 3fa51e65d000accf46eadba1f749d93d 2087 net optional feed2imap_1.2.2-1.dsc
 ba4f3412da9c8c7b016158fea102d69e 41303 net optional feed2imap_1.2.2.orig.tar.gz
 0286eda37bbc5e4f92bd947bad3d4e25 4244 net optional 
feed2imap_1.2.2-1.debian.tar.xz
 391d67416ab0d1821bf49f0002d85412 27448 net optional feed2imap_1.2.2-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9NlBAAoJEPwNsbvNRgvemvUQANuDIKtLuCmnwX2RCqC4n9JT
3uRGhzx9wYaIjhNqI3NyYv9XaaaI6vf3B+yRK++7EMtg71GXo8fa7yssjLz9oaUk
AzuV58HBrTSotZbLPpkjxsmXlfuRost4Za5H9gIInjUPKw65z6HAPLNRpqQWH91/
C7B875APeNVR3nVgjLNdRQvhOKHiC+AS9ZN/uN5iDwHYD1Mr7q4OTMuSWpkgRqXq
hbyVLU74wYTV3SvT/QSuoGHkVe9+uMj3DaPLQ42mIhg4o8tMASLWAyIaD5hDhELc
hBmg4HF3UDSsPIGgiFeb+u/gVZSq0k9IpRSDJlg06tz8HtJnPxvuRyB4efWBcLae
vD4dAu4XSOFE3+ZUsoXNkX38M8PFDXs6opWzKpyPrDtO/bMjJH4+rad/jrMZ5VPi
zMVD2t/dq/WrhyBh/QsdTnGHGI/zMrZaraTB50HvsjxbCJSZP3rzeHtP/ytKniER
VCFIiWKWbM8RKgprFPXEMYnyDDRZpFbu4N9ItgOdQpg6Yeu8b3J5nImfFubNkJcT
SXOqXadF8UwJzWbA8lr+Tvk08xntS0BZimdZzeCQPTalTs+7mh8QYp82xEEoxxGE
nStfte7198VFsRhPUZUUltGym4tVHeb0xcUMPDAVAFANRn9C/QN1IL9iiup2xn+a
ptnLD6d7YAbIk3bLumCg
=9bIJ
-END PGP SIGNATURE-


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



Accepted flashgot 1.5.5.96+dfsg-1 (source all)

2014-02-07 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 15:05:52 +0100
Source: flashgot
Binary: xul-ext-flashgot
Architecture: source all
Version: 1.5.5.96+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 xul-ext-flashgot - Extension to handle downloads with external download 
managers
Changes: 
 flashgot (1.5.5.96+dfsg-1) unstable; urgency=medium
 .
   * Imported Upstream version 1.5.5.96+dfsg
Checksums-Sha1: 
 99bb1362b849cc6b6dbbbc3c7236ac03eac9b39e 1483 flashgot_1.5.5.96+dfsg-1.dsc
 a6e936ac0108c613ae6c9fde9a30f51a9ec49c92 331982 
flashgot_1.5.5.96+dfsg.orig.tar.gz
 9cf6956974a270f9900c66aa1a8a7ba3b5d53c7f 4272 
flashgot_1.5.5.96+dfsg-1.debian.tar.xz
 bc6ee49487dc088845c868e349c53214b843f2bc 427980 
xul-ext-flashgot_1.5.5.96+dfsg-1_all.deb
Checksums-Sha256: 
 44ba0aaa6c0803cc6e12de8c594450e76388a9b17d278f0180ef73fff831f732 1483 
flashgot_1.5.5.96+dfsg-1.dsc
 9c16e4545a4f954bc6931404128f369b0a20ea166d019e478aaa05a398bcc0cb 331982 
flashgot_1.5.5.96+dfsg.orig.tar.gz
 dfbf7c0b70dac51b0e3380113d8f376382ebc53c933b94a98d8fafd0926d34d2 4272 
flashgot_1.5.5.96+dfsg-1.debian.tar.xz
 9d1ecd6e34c20da4b0c46517bd714dd8b8477dad65b4582c98bb0a8a3a3fe7a1 427980 
xul-ext-flashgot_1.5.5.96+dfsg-1_all.deb
Files: 
 02b8c5c6b52fdfe4052d1d20ad8628dd 1483 web optional flashgot_1.5.5.96+dfsg-1.dsc
 51d38a43bfee3b2ae880ad8c14c59712 331982 web optional 
flashgot_1.5.5.96+dfsg.orig.tar.gz
 2d7008d872b6c3347d19010758f460f8 4272 web optional 
flashgot_1.5.5.96+dfsg-1.debian.tar.xz
 195d15d40e5f1f0a94c8b45d54446218 427980 web optional 
xul-ext-flashgot_1.5.5.96+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iD8DBQFS9Oi8VkEm8inxm9ERAk9zAJ9LbQ8KSqxTKbjm2O6NRcfzU5jgLACfWx1h
op7kiBKY+jxCnOevO46kNmw=
=I9Mk
-END PGP SIGNATURE-


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



Accepted libtest-classapi-perl 1.06-2 (source all)

2014-02-07 Thread Jonas Genannt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 07 Feb 2014 12:20:20 +0100
Source: libtest-classapi-perl
Binary: libtest-classapi-perl
Architecture: source all
Version: 1.06-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jonas Genannt jonas.gena...@capi2name.de
Description: 
 libtest-classapi-perl - Perl extension for basic first-pass API testing for 
class trees
Changes: 
 libtest-classapi-perl (1.06-2) unstable; urgency=low
 .
   * changed maintainer to Perl Group
   * d/control:
 - removed dm-upload-allowed
 - bumped standards version to 3.9.5 (no changes needed)
 - removed version depend from perl
 - added Vcs Urls
   * d/copyright: update to format 1.0
   * changed URLs from cpan to meacpan
Checksums-Sha1: 
 6b52a8b1103eb5911af03be527d84d18c544873b 2270 libtest-classapi-perl_1.06-2.dsc
 697c8e84438cdc81a8fa9358271813ea5aeda98a 1992 
libtest-classapi-perl_1.06-2.debian.tar.xz
 75fcd4474d6a7904b5247f702bfde9be9e4f47c1 11376 
libtest-classapi-perl_1.06-2_all.deb
Checksums-Sha256: 
 0e59b336b6d75a1269df33afb2d765029cca29631a6f2039058b431291b7461a 2270 
libtest-classapi-perl_1.06-2.dsc
 1dfc2bb827ce1725fcb2364a5cbb598093524d636e5389b70d67a2f153eee8f4 1992 
libtest-classapi-perl_1.06-2.debian.tar.xz
 d6f6626ec2e75e563a9dbec86033cda0c0de28fb81f515ffa4d1e4ea587af68f 11376 
libtest-classapi-perl_1.06-2_all.deb
Files: 
 8f0791468be94449451582323c1b7b9c 2270 perl optional 
libtest-classapi-perl_1.06-2.dsc
 3f852d184cee4cfaeb2a51d895c5bc25 1992 perl optional 
libtest-classapi-perl_1.06-2.debian.tar.xz
 beeb4614c1da82422e5b523f0e7d017f 11376 perl optional 
libtest-classapi-perl_1.06-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJrBAEBCgBVBQJS9O42ThSAAB0AKGlzc3Vlci1mcHJAZ3BnLmNvbW9kby5w
cml2LmF0RDFFMTMxNkU5M0E3NjBBODEwNEQ4NUZBQkIzQTY4MDE4NjQ5QUEwNgAK
CRC7OmgBhkmqBqmbD/4hVx0souoab5iUbDCBdGpnAByI47aloN7ltTBNLKF+72DC
NXB+9e5ohMDCeFEIJLHgb95GjOOQW48XvEqCM323Rqme3l5SUgpCli6XnEM+nT0S
xiRJW/zFCdBbiLPEqTH/ilbLPRGffcd7NSf+7yedsDn31FgQrZr6Q4MrnEp1ZiNn
+Rquns4r2rD9RJWZZMFzhZVmW1S4OLoX+GsbcIV4wAZfyh5TsdBfU/Ckjw2hpwpU
aI9aEGaKaSgS4llCD3slLudcNw3HMLalO74h4PQ6kjIv64mUJwauiPX+x86TuzzR
BfFtcfDqSXuMW/mC2C2x1HLkYnf/vMzsSsdXfyqQCFm7WPcM8/fYdyM/uXESXsWi
gHuyuwxxgCdysw6+5rmMY2lNrmXtAhZO0F6lUJxyygiqYQi0aXREp3dwDCIl4l6n
MX5QPnQpGTrrfODTttAX9ufHuc9WU9RF/dmKv7VCndb6WnZt5ePdocpMw3hAbPd9
vS88sSAnTzjUONOPNNtlF/nYJ5mI2M4QYmtMK6jMdqnfGcjJnCp0a+DWmzjZeETZ
5ytdGBkDHkKtXW6sM1y0Kf/29GM13Bztv7YWnNP5XQMDRi6oTjLjOiVS0zE4TlfI
lO+m6fqc0hQWRaMf/PjCRk+ktw+ymMJkCbDjhVEMxy29LuZxFyVPXa6hBwgwbA==
=iksW
-END PGP SIGNATURE-


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



Accepted autopkgtest 2.7.1 (source all)

2014-02-07 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 14:52:42 +0100
Source: autopkgtest
Binary: autopkgtest autopkgtest-xenlvm
Architecture: source all
Version: 2.7.1
Distribution: unstable
Urgency: medium
Maintainer: Autopkgtest team autopkgtest-de...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 autopkgtest - automatic as-installed testing for Debian packages
 autopkgtest-xenlvm - Xen/LVM2 based testbed snapshot system
Closes: 737242 737632
Changes: 
 autopkgtest (2.7.1) unstable; urgency=medium
 .
   * VirtSubproc.py, command(): Intercept/retry on EAGAIN.
   * runner/adt-run: Robustify cleanup of empty binaries output directory, it
 does not always work in __del__().
   * adt-run: Replace direct invocation of debian/rules build with
 dpkg-buildpackage -us -uc -b. dpkg-buildpackage is the de-facto
 interface these days (also on the buildds), and does additional things now
 such as passing build flags or cleaning the package. This also implies
 dpkg-source --before build to apply patches, so remove the explicit call
 to that again. (Closes: #737632)
   * adt-run: If all tests get skipped, but there are some tests, don't claim
 that there are none. (Closes: #737242)
   * adt-run: When expanding @builddeps@, add make as test almost always need
 it to call make installcheck or similar.
   * Print package version as first adt-run message (@devel@ when running out
 of source tree).
   * Turn VirtSubproc.Timeout into a proper exception class (RuntimeError).
   * Make VirtSubproc.bomb() useful outside the mainloop, so that we can
 use it in utility functions that are used outside of runners.
   * VirtSubproc: Add a timeout context manager which plumbs timeout_start(),
 timeout_end() and bomb() (if an exit message is given) or a Timeout
 exception (otherwise) together in the right way, for convenience.
Checksums-Sha1: 
 eeab0fc193eb5f24bd510754e641bf2ac66471da 1736 autopkgtest_2.7.1.dsc
 facbd1d9307ddc90143612580f23ddbeca817028 96073 autopkgtest_2.7.1.tar.gz
 8679819a3b2ae0cdc742f9639ebf4ad2b9934184 58614 autopkgtest_2.7.1_all.deb
 e82bf7b6c3ba99139be9ab7cd7e43e3869382d0d 44600 autopkgtest-xenlvm_2.7.1_all.deb
Checksums-Sha256: 
 8da9a86a5767e8faca084065bcc91849955ac759640616e70ae1055f84bbe253 1736 
autopkgtest_2.7.1.dsc
 4856ea6bd5d8983892438873d00f23909590d796a6f814382009379aff5a0d56 96073 
autopkgtest_2.7.1.tar.gz
 a32062b23478f59a39a4817d38619ca51bcc9d34720407af6c555105175f60be 58614 
autopkgtest_2.7.1_all.deb
 2009f153a3daaddb82f76667c5ff13c6e997364980b2b7df7ed036637bf03f85 44600 
autopkgtest-xenlvm_2.7.1_all.deb
Files: 
 01a88a4d7312b83af3578b85fc29b1f0 1736 devel optional autopkgtest_2.7.1.dsc
 4731eb7010f938a1f6f9a6889225ed31 96073 devel optional autopkgtest_2.7.1.tar.gz
 777d920d6afd827cf5b16eb3ccb64681 58614 devel optional autopkgtest_2.7.1_all.deb
 4c53a4c170d3acb3e06f411d71b25e48 44600 devel optional 
autopkgtest-xenlvm_2.7.1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9OV3AAoJENFO8V2v4RNH90QP/jfZ7I+UAA7U2SY7ABzAqFm0
71873vpVTA8IsnuzoX80WDWyqkPmglhxINdI1EXRU/e3dQ5Id2eSastJzeV5o5rP
MIU6qtEGRQfDe+gpsjbViggNL91WlPyLPhBlK08bW9b1zfX/bLatCHByYLl7Tl5+
A62TRUEdPjGhOEDPfUBA5hQPzFTIidOHvnuU3udzCoy7v4hMINT9i/qBRIXUiTBN
q8Z55eU3xieUyWZCUN1gM7GYa5m7FLZZhXeSSsc5ssHcY0yG59HTCsDxDP0TDSU7
SM3LID436U8Kx9xy1BXz8vo8NaPJb2Z2y2bhe4AfjSB8rAJvfAbg1TYB6LnUiwmQ
ie/ASVj3Sqk4T1/PyQ1eWxZKujfL/1nt8HUk53jGoIiS8NQHj4Bx1sKe0IukAeXc
/2sWHXJGUOq+4u4vvmQ0+JYE7nr9WqNaKVip2JX47jFP+PFPB2eAp6hVXXwRetd0
wmLuhYtz/S6IWD42HTMbsx/+tmX9Y+dIb459elgwyJn0zigLy8z1ledQX5hcYgcQ
hVA2bDN6M3Lqt9KdGxXGRZ4C3PhqAGJsi7erc7IPy7h8CWtFcBb+ihSAjIgEW27B
+QnrIUZyazy415ElHPZr61/C9ipwSc/qR/D5rXP6wgD8aCvG+s7JnM9ptVgKwu/G
92Pdrxutajyp9ich1HZK
=ZCxs
-END PGP SIGNATURE-


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



Accepted python-pyghmi 0.5.8-1 (source all)

2014-02-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 01 Oct 2013 15:01:40 +0800
Source: python-pyghmi
Binary: python-pyghmi
Architecture: source all
Version: 0.5.8-1
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 python-pyghmi - General Hardware Management Initiative (IPMI and others)
Changes: 
 python-pyghmi (0.5.8-1) unstable; urgency=low
 .
   * New upstream release.
   * Added --slowest --testr-args='--subunit  ' when calling testr.
Checksums-Sha1: 
 a0351e99a4319a183dda1664f360d104ea22cc77 2267 python-pyghmi_0.5.8-1.dsc
 4907e07137906dd9388df43bc02eacce2df86eeb 27040 python-pyghmi_0.5.8.orig.tar.xz
 abdcb485f98991122815573918b4f89c107cceba 2084 
python-pyghmi_0.5.8-1.debian.tar.xz
 3147bc21f92d8442a3aa1395eda660f0e92a865b 22088 python-pyghmi_0.5.8-1_all.deb
Checksums-Sha256: 
 874111b4e96618d97d9dabbb49be3d3fc689679f8a1e417623b3d2625a3ab708 2267 
python-pyghmi_0.5.8-1.dsc
 bbf1efdd96ad00dd844f54cd16c7ae3666314dadd63dec8a1d887f916c297a9a 27040 
python-pyghmi_0.5.8.orig.tar.xz
 bd96e7bf112e7055eb9399e3f06b60d11c653483cedfcbb399c3d9c10c69b4e7 2084 
python-pyghmi_0.5.8-1.debian.tar.xz
 3ba09a79c427e68b2bbf06b79c81c8b165017ae9b10ea6279c33881dd8e8cb49 22088 
python-pyghmi_0.5.8-1_all.deb
Files: 
 396adedca9d49653809bc16cf674e21f 2267 python optional python-pyghmi_0.5.8-1.dsc
 36b416ba6582a0cdbd3cfb89445438e7 27040 python optional 
python-pyghmi_0.5.8.orig.tar.xz
 1f50d179e18a9399561329e39acedbe1 2084 python optional 
python-pyghmi_0.5.8-1.debian.tar.xz
 cb81170cc341a80d708eb76cb67d226a 22088 python optional 
python-pyghmi_0.5.8-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9PjzAAoJENQWrRWsa0P+qmoP/RIoUrzfBajiBrm28jfSLLeU
aP2gInC3FzXCU3YwHhKn3ZKuNnuCLR6TifUNfv76EIgkYh/L/ShjxHi+KXkUPC9A
UvGpBarbm6E8rouJtC3m6SUZl9Z+f9ezu7Zry0MrwEWa4BiZ4xQdoxHnKISOdOI4
FzU1d7roIryK+FUS5EAnfRCDpmSH4xPtCSzXDGjvD1jwrhRtBLbe49V6FtjQQ7Xa
L0pgIW6JBeLHFTWKAFlNd8aPFYMvY9AuJOllhB3FowpUHDuT8qLOGe32LmCzfGnj
jKGamFMNHXLKuTOv/2Cdxw4bfErak0KhX5ZnJ16o43QdvEqpg+WuxotxrIHfh77r
Ka+c7iXtJxjiArpZUys99z5SnyQ9qNHyVJpEBTyeO8tq3WtMPR5QQlwLzV4132f+
jhHDzK3pJRM4XOAqUCJ3Np2iRpHy1l17eer02VyPFLSVxrM9Z/AK27IHY/RjXjuB
QOeivFca/gUA3cWREIDIc3n/qNKQq+ABZlCdJUx6VYqrobl+XvqnuwHkv2kvVwUp
FrRucWAFzpECFMdQML3CNWw5n4pDvLgVlI4KIfF4NI8D+2XvBbDHDFf519hkX8E8
NzkH+fTKtrBQutIBrrxsSJoPQncIvqV59A/1PB53BhTUvOQlJXrHGYK16oXSAAJW
RVHrXErtoysXlIJET73P
=sIau
-END PGP SIGNATURE-


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



Accepted fonts-freefont 20120503-3 (source all)

2014-02-07 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 12:05:01 +0100
Source: fonts-freefont
Binary: fonts-freefont-ttf fonts-freefont-otf fonts-freefont-udeb ttf-freefont 
otf-freefont
Architecture: source all
Version: 20120503-3
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 fonts-freefont-otf - Freefont Serif, Sans and Mono OpenType fonts
 fonts-freefont-ttf - Freefont Serif, Sans and Mono Truetype fonts
 fonts-freefont-udeb - Freefont Sans fonts for the graphical installer (udeb)
 otf-freefont - transitional dummy package
 ttf-freefont - transitional dummy package
Closes: 737965
Changes: 
 fonts-freefont (20120503-3) unstable; urgency=low
 .
   * Re-introduce transitional packages. Closes: #737965
Checksums-Sha1: 
 32d5e9f80122a079448e3d2f7dfc3c5d46465a02 2379 fonts-freefont_20120503-3.dsc
 ad0fdd136fd7dc5e9dd483772d65d7bd6d429871 4453956 
fonts-freefont_20120503.orig.tar.xz
 27e57fbc9fe6d8f791dc773ba83c926d09e4f6d7 10428 
fonts-freefont_20120503-3.debian.tar.xz
 5befcd02bf31b666cbb4d6046e579d47a893f66b 4262552 
fonts-freefont-ttf_20120503-3_all.deb
 1593e114a55853f31050dcb59961865ba5a19ff7 3183394 
fonts-freefont-otf_20120503-3_all.deb
 6ae4452a493efcbb24c7484ef10d8a12a003db9f 383638 
fonts-freefont-udeb_20120503-3_all.udeb
 69c217f4e3c3aeb635a7a00efda0c1a5ccd0e5ab 119676 ttf-freefont_20120503-3_all.deb
 c2b497ff3f47c30df544c7ba92fedb78043473df 119672 otf-freefont_20120503-3_all.deb
Checksums-Sha256: 
 0e14401dc06333d9e941bd396d78720e456c9760fa5beecd007f886478ceda7d 2379 
fonts-freefont_20120503-3.dsc
 b3850d562f2e227720b4cd67f44490bdcb7abd6482714945b9b65cdcfe8ce0d8 4453956 
fonts-freefont_20120503.orig.tar.xz
 065d93eb63dafad0480f61a620bd403143d8e25cc6c8bead16e4cd804bf42355 10428 
fonts-freefont_20120503-3.debian.tar.xz
 8f3e274c3da1954d4c197044a69420e3f4b5b3b0e4e7482c3ecd6e45ac448c77 4262552 
fonts-freefont-ttf_20120503-3_all.deb
 9a7d125f7ef1c8bd024a68ee06592281a1f9db3b10bf3623a01ce80e478381c5 3183394 
fonts-freefont-otf_20120503-3_all.deb
 5cc2fddde3fa062be0628e8b2f07a05be884113bbe440236f6e2e4078a728006 383638 
fonts-freefont-udeb_20120503-3_all.udeb
 01ee24e103290338bdbf9c9623cf19c86f4332c056baf7936aa4730833d4742a 119676 
ttf-freefont_20120503-3_all.deb
 6891f6c25c3e24b053d9fca63895164d5fc8481ebea265377e8b99b40b35c82c 119672 
otf-freefont_20120503-3_all.deb
Files: 
 6ddb968a30f5922e067c6a75ecd69b13 2379 fonts optional 
fonts-freefont_20120503-3.dsc
 89986f8492f9e5f15c0d6df45757b8f0 4453956 fonts optional 
fonts-freefont_20120503.orig.tar.xz
 c19327eebb8015d5cd7ab094664d0542 10428 fonts optional 
fonts-freefont_20120503-3.debian.tar.xz
 14acae13f59138ef7c226a78b36a8cd5 4262552 fonts optional 
fonts-freefont-ttf_20120503-3_all.deb
 1e1b078f08f4968f8f5927303195d19a 3183394 fonts optional 
fonts-freefont-otf_20120503-3_all.deb
 24f0e36ad3124fd9f87893f2d92549fa 383638 debian-installer optional 
fonts-freefont-udeb_20120503-3_all.udeb
 2d0e7766fd4e451c0ed9c35ef23a6ddd 119676 oldlibs extra 
ttf-freefont_20120503-3_all.deb
 873d2cc034cd58e582903d6483cf9565 119672 oldlibs extra 
otf-freefont_20120503-3_all.deb

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

iQIVAwUBUvT/LocvcCxNbiWoAQLJSg//YM/rxDEkn0F/qBYa+TQ029RgK7N0R7xS
V9Ou1fvrMqcNYHfUsCWSLfA5U03WE+eo1ZIhAamyYKCn18/qzJiCw03xcvjBtDuD
kAxF3MZ06aIHAcegD7jv0e4Tr99PlxPe8goE/ixpCLJMZzpcQoskNiBAvai0fWfw
yob2IHgRil2ZY6DuyzxNJ/Bi4GIkrA0PD4wHA3unWbnlDyKmA3CnZw8bKp6o9AwF
hgJ8nQIhRvW0C38r/YucLFkAuEpv7IbayPwBwR9bQOhH7iLmBAZ3rGfboMyoW+rr
Zc8b9ykuFmMLOmz+aFq773OMGo5t6V+ai63DteTjDbxZHRWKlVsUUNIBc79vLhkB
GNSW9AU1BWnMpkIEEpZ/LDEUxnD0d4wqmV49n0cHRUmJBHrOxmCY1sTHfKRSZbyB
kPNlI8FhGdDOqV+0AABtz7LcStfFYkr87nATXMXRtJ5PAfW+L5y/gUhMQ45qE4xX
Z4W4qMQJMNAYZSJ9eCbVn+/oMXI7e+7HsLD25sq0czS5migVJq4Qj1i6jBjZ/444
DivqXBKw7bsn7cgOlG3Qosq+w+DZPZuC6w4r/UxUhEVqh258s02no4xYweBSVo9R
n4Pdn//fCwa/JsTM+KZu9I2PUxxTrxSzdkPj9JO05P3mXj2Dog+PbFGgXIaGSFbn
JYbUoL2Zdsk=
=3Pgj
-END PGP SIGNATURE-


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



Accepted enum34 0.9.21-1 (source all)

2014-02-07 Thread Barry Warsaw
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 10:33:28 -0500
Source: enum34
Binary: python-enum34-doc python-enum34 python3-enum34
Architecture: source all
Version: 0.9.21-1
Distribution: unstable
Urgency: medium
Maintainer: Barry Warsaw ba...@debian.org
Changed-By: Barry Warsaw ba...@debian.org
Description: 
 python-enum34 - backport of Python 3.4's enum package
 python-enum34-doc - backport of Python 3.4's enum package
 python3-enum34 - backport of Python 3.4's enum package
Changes: 
 enum34 (0.9.21-1) unstable; urgency=medium
 .
   * New upstream release.
   * d/patches/python3r-fixes.patch: Removed; fixed upstream.
Checksums-Sha1: 
 d09fe20090a3ab48f1e5a67169dad2f615442823 2175 enum34_0.9.21-1.dsc
 f7ae21e98d0feb486e4613354c18caa8524dafa3 43465 enum34_0.9.21.orig.tar.gz
 227ad7c006ec323106f5dc855fa56394c44cd6e9 2892 enum34_0.9.21-1.debian.tar.xz
 7d8a3c923bb982e531af9fa59532744a2ed4a3a1 12552 
python-enum34-doc_0.9.21-1_all.deb
 70b7ef4cbbd848b26815e0366aa18bb5cc28fca1 33590 python-enum34_0.9.21-1_all.deb
 6d573e529ea38cac8d47d1dd681a73d0e60ff5c1 33480 python3-enum34_0.9.21-1_all.deb
Checksums-Sha256: 
 bdff7e7185a2e1bdd4ef6b7e11b4dbe6c40f79f83290f0b68a5aa3e57732edc9 2175 
enum34_0.9.21-1.dsc
 b1c41db8bb38dfe62c24095a7de702304564f5d71b18ff27c2b050313b03a930 43465 
enum34_0.9.21.orig.tar.gz
 a2eca4f6c9f9cfd442be1ec369ef16f7ab650bff1447172b7026585339d54f5b 2892 
enum34_0.9.21-1.debian.tar.xz
 7a1437b923eff7ab47a7e901ac4bfdd3268267917dd0ba61add71f19b504545c 12552 
python-enum34-doc_0.9.21-1_all.deb
 198a6d833b059bda3f29890502c27daafe040acd441e0cb4f418b5ac033b7882 33590 
python-enum34_0.9.21-1_all.deb
 9bf0333f31ce1e512a15ae78f9de8ef946a283da238ae36f0fad2377233b62f1 33480 
python3-enum34_0.9.21-1_all.deb
Files: 
 09f4d0deacc84d501d76fac46de4fc31 2175 python optional enum34_0.9.21-1.dsc
 fc69a925910ed15efa405d0ae11baa29 43465 python optional 
enum34_0.9.21.orig.tar.gz
 6b200df68fe783d4a1250522c23a6233 2892 python optional 
enum34_0.9.21-1.debian.tar.xz
 d53feb510f8897236e6624e7a64c6ea2 12552 doc optional 
python-enum34-doc_0.9.21-1_all.deb
 6d01fc8059ecd65a79ab5dab23b9a563 33590 python optional 
python-enum34_0.9.21-1_all.deb
 b96d45d13d5b3abd5dad4f9ef0060391 33480 python optional 
python3-enum34_0.9.21-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9QDMAAoJEBJutWOnSwa/2KMP/RHhOA6tQvxp1BqRdr/+/BUz
AHHzaHh32J6hjHNByckgrJH9QwCLoKSJJ2nrUrDM8x2tZ++WL7pi76p5CpgFNnaq
OTMgMBvOje5gybOK2w6diFa7CaWsxDZG62EbhOOVHMG8pOMLEUEKjAb5sgnQdh5D
iwlV4nHGIINotbVsD+U4LgIQiwsdktZbs19NubxBsReFFDTe7Bd3URr1dj9REu5S
aooNEwxOhFNf8mgbudS8uj4scv63dWWl8l2Q3pa2C8LjPWHDwbJbIf0uQPrQD2zw
FvcwFxPbYP8vSkFi7E4ILotJFpQyTp/mxNilXaAC1FElJJWHP9rpdHJBBLt4LGXb
6PONTAwBm7tk6uIJFtaYUmoW4ZdGgc6GZR9phHSfDJoqRCow2vIbp9jDKQbLG8Os
La1FpUyGWgrrQT8XiM6yNjTLES5WgVh2yVCKVM3HBvXGhtwHpIu6jtidlHMY2o3u
aH/lJgWZxu+GhTFsBbGSHwFgjHqk7cEGlRQnP1qSdOXze25p2AJcQwGX4h19fhbI
UTh41vqi+upR2TrHI4MjvyGUJL0vw5brOv/T3I9MG/yexbApYK3LUVm8n0xU44+v
PYAMxFBWgRYE6fav6kgUhXVSG57/vz7RH1leEJMoMVC6iaHcu2dUKtpEg8njo14o
QMQcqH6P7C4RAevOxYsT
=2Day
-END PGP SIGNATURE-


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



Accepted swift-plugin-s3 1.7-4 (source all)

2014-02-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 23:37:25 +0800
Source: swift-plugin-s3
Binary: swift-plugin-s3
Architecture: source all
Version: 1.7-4
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 swift-plugin-s3 - swift3 (S3 compatibility) middleware plugin for swift
Changes: 
 swift-plugin-s3 (1.7-4) unstable; urgency=low
 .
   * Added the packaging of sphinxdoc.
   * Standards-Version: is now 3.9.5.
Checksums-Sha1: 
 aed29bb0caaf85c903638ced755212717baf14bd 2230 swift-plugin-s3_1.7-4.dsc
 e186e0b39e5e37289770d069a6da6b2d6abe137e 4268 
swift-plugin-s3_1.7-4.debian.tar.xz
 19dc5be6d6eb7752e8f95275bbc956a8b180fa4d 123578 swift-plugin-s3_1.7-4_all.deb
Checksums-Sha256: 
 7b9b9a4983ee827fae5ac343e47bbcfa7bb96939ff3afeef2983762296f955e8 2230 
swift-plugin-s3_1.7-4.dsc
 de28ae679732e17c0a22d2b2a8c754ea724d1e951453a032a13ab1b859a61894 4268 
swift-plugin-s3_1.7-4.debian.tar.xz
 d90c1f7d1ac4887b13bd64460ae79e1b8ec8b7474eb4d125fe28e9b1a0064a32 123578 
swift-plugin-s3_1.7-4_all.deb
Files: 
 a0ee270a24f68e4f3cd858b06407e76b 2230 python extra swift-plugin-s3_1.7-4.dsc
 5bfd91f2cc50fd1db3bfa30fd293fd1b 4268 python extra 
swift-plugin-s3_1.7-4.debian.tar.xz
 473d2775023546048d36e6f90299d572 123578 python extra 
swift-plugin-s3_1.7-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9QLkAAoJENQWrRWsa0P++D4P/2O/gBXk9WTEWG6CkRKBbL0+
DLdH7lkAczbiMDUWC2557bJZtGEzslKeU1uQhAIxO1UnkFlLGcA+TSwpSoF0HK5C
qy+lJv4t3Mpd+IP5OAZe85uUYUIndsmrdP1Gqiw/nXyXC9po7bmbF8RG9lk34HdE
vYlnipE+1PEDYAGWijzCeZQcWTmRDaeN0z5rFRSk82PbmCXgwjW8B4MgFqkRj0me
rZI5wdEbnmNhncZa7QhSQbZrNV1rPXo7uz52S3PczPCpY6InmLEB4aUoOrTrETNK
/VmMOM8EFYTjZzijNK+bav23VEObjfxQmODfsAVPh4eub3x2OFvu9D59xmamrsTM
RammUIao6RkETCp+uiIzw1tfHylbxsVUKSFTohPbNWjfK2vLXwujIwLOxc41jJTB
oAJEuXuk9X1xKW4AtrGD7gh7o+le9p9E7gGJnGJuKx/LyaPkBy+kxora5ykfio2o
2iTHj1Tsr5CJ1/v1i/nKqJUKhPkvhMA/WGrqOtr2O6MBmGA738BUqv6U6z0JbvUQ
Tmn1fgARA/DWlauniCMU2AEx2cmQn4Kh6Swya7LcDS+JczAvdOFPGxt/G1cjXGLE
ChHnYDDmn/L/FF69hElzRFhMJwl9PjYclBT5phwxId+4QcXCCSt2nAdfmisMsj9d
p+Ch496AKbsmKaRgDHgl
=yhI2
-END PGP SIGNATURE-


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



Accepted curlpp 0.7.3-5 (source amd64)

2014-02-07 Thread Ximin Luo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 07 Feb 2014 15:59:50 +
Source: curlpp
Binary: libcurlpp0 libcurlpp-dev
Architecture: source amd64
Version: 0.7.3-5
Distribution: unstable
Urgency: low
Maintainer: Ximin Luo infini...@pwned.gg
Changed-By: Ximin Luo infini...@pwned.gg
Description: 
 libcurlpp-dev - c++ wrapper for libcurl (development files)
 libcurlpp0 - c++ wrapper for libcurl
Closes: 733081
Changes: 
 curlpp (0.7.3-5) unstable; urgency=low
 .
   [ Logan Rosen ]
   * Use dh-autoreconf instead of autotools-dev to also fix FTBFS on ppc64el by
 getting new libtool macros. (Closes: #733081)
 .
   [ Ximin Luo ]
   * Update to latest Standards-Version.
Checksums-Sha1: 
 dca2ab117b4894869de17869917a7a9a40e05b31 1933 curlpp_0.7.3-5.dsc
 66885c819f2f3934d9f19efadc00933f606c2ef7 6695 curlpp_0.7.3-5.debian.tar.gz
 e3007503752078de8e2d47c4e88877ab734366b1 59376 libcurlpp0_0.7.3-5_amd64.deb
 56049298bf275e9edd4bb77012d3fb9ea67a3d05 88386 libcurlpp-dev_0.7.3-5_amd64.deb
Checksums-Sha256: 
 a221d0a345575718e1a56e1e7c27a773151100d6b479218ab5cb6ba6cbab07ce 1933 
curlpp_0.7.3-5.dsc
 3d2fed0b19815211042349d6a649e83f95250f03653c141089f605d87f246973 6695 
curlpp_0.7.3-5.debian.tar.gz
 b2e775ec087e95f681ac692a2251a22c5ee115f76bbef7b29b32215f9b7815a4 59376 
libcurlpp0_0.7.3-5_amd64.deb
 73357fcdfdee82f546a1bc34516879a7e08ba9cbbd64114987061fc497962266 88386 
libcurlpp-dev_0.7.3-5_amd64.deb
Files: 
 80786e70b1da30e4e596db74ac556661 1933 libs extra curlpp_0.7.3-5.dsc
 27ca13ed7a6423e97af1b9aed26d2403 6695 libs extra curlpp_0.7.3-5.debian.tar.gz
 3ace968821d6c940b6fb7b88cc10f8bc 59376 libs extra libcurlpp0_0.7.3-5_amd64.deb
 ece6d9decc3e84a9f4c4f6ae775388ac 88386 libdevel extra 
libcurlpp-dev_0.7.3-5_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJS9QO0AAoJEIYN7zuPZQt5UD4P/j9971KrMsxEgWBSPLe8P+1C
dHcHYAWigsopEWT278FMDr4RsoplEqb5aj6+qTrxx49lW0bskyuafWbqPfO0rpfV
bK502ICnpCYI5o1ebSvkg/tVvtsR6jEtw1NvmRrtC4yEt5m7CIGGoNiRSZGP1REM
gJ4pwE9DtBPBTnx74L7c8wJOk3DGe5Eznb6UzdZlzKcoFSChLEMBBaT6b+dbDLIO
26QpyXBqOA7N0Ivxsr5ut1ZlVs3gUusqwk8HZg5sJe/5a3qQRWNYTmZGVidBRJ5/
C69Xbh9SvKhhhwuulQ+ZIXYTJCKT4rKxkOFHLDxcmRpn97Q6jZ0RdrenO/VpSXYp
nrY7EE+7HLdeNzQnM9Kix4Pyj+eYhhIMPfte4iXEAN953B2kqUIRBRWA/rLLwciR
gvtplSelsHG9IGO/Qj4uVY2eoOe+/lPys2VxdUc73reI9OM1a/UGX+9dsbRw/6l3
J7oLT/zg0Ip3vm8hD2K32BtaObi3gDAeIetAlfL3ybgIkkkfKujnL5eqnePXK7fs
pixsdrtpsZrqBTJMSB/YUbC8fuXZvojHVxZ/xWqkjmKvo1JB6GIjFw29Yb19pLL6
xU2klWYALof4RBp51Nb3+tCPeY32RgWe+YjzvVOJiBeOejl2M5M8O/O/TbF3BQSC
64OhpiPV6n/OFf+o8oDY
=R/9b
-END PGP SIGNATURE-


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



Accepted openimageio 1.3.12~dfsg0-1 (source amd64)

2014-02-07 Thread Matteo F. Vescovi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 16:07:26 +0100
Source: openimageio
Binary: libopenimageio1.3 libopenimageio-dev openimageio-tools
Architecture: source amd64
Version: 1.3.12~dfsg0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Matteo F. Vescovi mfvesc...@gmail.com
Description: 
 libopenimageio-dev - Library for reading and writing images - development
 libopenimageio1.3 - Library for reading and writing images - runtime
 openimageio-tools - Library for reading and writing images - command line tools
Closes: 737986
Changes: 
 openimageio (1.3.12~dfsg0-1) unstable; urgency=medium
 .
   * New upstream release
 - debian/patches/: patchset updated
   - 0005-Fix_FTBFS_due_to_OpenEXR.patch dropped
 (applied upstream)
   * debian/copyright: license issue fixed (Closes: #737986)
   * debian/watch: exclude dev releases
Checksums-Sha1: 
 ce436d21e6d64ce26fa5a49bc7b336862b594570 2492 openimageio_1.3.12~dfsg0-1.dsc
 013fedc37cb8d4e39a93a8e78077b3b5c0bb2a5f 14060908 
openimageio_1.3.12~dfsg0.orig.tar.gz
 ba04f158a456da1eb74927edb33eafaaa7762d5c 17168 
openimageio_1.3.12~dfsg0-1.debian.tar.xz
 3d29fd48b6caee505cd6cdec5119dad3c7183f62 1267872 
libopenimageio1.3_1.3.12~dfsg0-1_amd64.deb
 8a1753b7dcb7f7bb3f04a0d1ec8fd17adbcd53c5 950198 
libopenimageio-dev_1.3.12~dfsg0-1_amd64.deb
 24c1adc4782b89404d148508393ef3f5a15ee8a6 346676 
openimageio-tools_1.3.12~dfsg0-1_amd64.deb
Checksums-Sha256: 
 196b0a7fbd386342bd45d8901b2ab21a7f4f62f9aeec079578657f6ba025bde1 2492 
openimageio_1.3.12~dfsg0-1.dsc
 191ea1090b1dbcd44e10e91c5c3cf5d20c7ed124d4e0c3ef1867917c9a9320f8 14060908 
openimageio_1.3.12~dfsg0.orig.tar.gz
 1b75ec1e09ffdc795d8f49f90ce4c7332dacbed8c8f924d476ece6a7bb99ce88 17168 
openimageio_1.3.12~dfsg0-1.debian.tar.xz
 4749afb29472bbda5fe63039adf01de45d9d77d7d95260a3ae44561fbe6732ca 1267872 
libopenimageio1.3_1.3.12~dfsg0-1_amd64.deb
 3e920cdb934a037ae93719eba9b5224daa817e738088c17c188533edfcdd81fa 950198 
libopenimageio-dev_1.3.12~dfsg0-1_amd64.deb
 a56d9bd873d5e7c6ecf339a38c6aaeccf70eda1398e2352344058b2dfdb243b3 346676 
openimageio-tools_1.3.12~dfsg0-1_amd64.deb
Files: 
 6370c027397496cdbf9d180d36d4b219 2492 libs extra openimageio_1.3.12~dfsg0-1.dsc
 46582f9cf67df3e17c73e037b572851d 14060908 libs extra 
openimageio_1.3.12~dfsg0.orig.tar.gz
 64258bb5aa87e536a388ee3fca0dabeb 17168 libs extra 
openimageio_1.3.12~dfsg0-1.debian.tar.xz
 49f2cafa58a0946b01bdbf618591fe3c 1267872 libs extra 
libopenimageio1.3_1.3.12~dfsg0-1_amd64.deb
 41b73dba8651c12b35a65ed21dcc190d 950198 libdevel extra 
libopenimageio-dev_1.3.12~dfsg0-1_amd64.deb
 b09e2a72f6aa6b45e4e54128fa12b942 346676 graphics extra 
openimageio-tools_1.3.12~dfsg0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)
Comment: Debian powered!

iQIcBAEBCAAGBQJS9REgAAoJEKUGNby/AldsodwQAKGNv9oij9Qzr54IatXXRCg+
9khLq+Ft5CYAFKPrmqNqIv6CcxyodavOYVWVmZrZtx4ztjxfmcdwoe0eaD97fgOK
F9E7m0Oi4HXooeUrVN7yzm/L21UiBLpIJPxzK/vd0/uJbMzKbCVMBCb9th9eU/QH
efe2yuCCON04KH/D2Fgl8ctmXY3kSh4UwKi/iBK48C1zBG5U0LK6Qp+rSv+9coXg
QWrSqn9iRxNDUGD4E4khdQwXOvGRYt6LZDIfZ+DwsFj63MLqrKnxuoSuTzXQZuCS
RjuWV6kyhRSpOh5zbhfml+absANbQBZdb2/0Wm5x2GTksoIOZAtN+c1KzXvo41uE
0QdnV1PdPP5otFAg4ykgt516JXEOYXojY2G6zu1xxbtrZCTtu2W4jZwtp9n3H5Vw
qWqmL51jVkXp9wmNKDCJwHaW5FE1ks0u6lHwQIWTbSEmML8NK3i2jQsjv5InfmVy
lWBA7g8VE7Fi1OylJvMcfvOF5YQVxVJCOIpA/OxmJa1F6YHkkJIF0K2VQNkP6kHN
qkg5MARtkZpMn6j0OZZwI3G4A9W3ugHNhuXqA57Hx8wd3TRfM+fHFdShOW48/f2r
CtovWJ1VTjjroNbpPTOYzuyQbX6qUTSiL4KBCRKJDKjc4SMo5Ew9atqSVzO/oE50
wOq3m2nbJcF444nEnuUY
=wE4q
-END PGP SIGNATURE-


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



Accepted debian-installer-utils 1.103 (source all i386)

2014-02-07 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 17:16:07 +
Source: debian-installer-utils
Binary: di-utils-shell di-utils-reboot di-utils-exit-installer di-utils 
di-utils-mapdevfs di-utils-terminfo
Architecture: source all i386
Version: 1.103
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 di-utils   - Miscellaneous utilities for the debian installer (udeb)
 di-utils-exit-installer - Exit installer (udeb)
 di-utils-mapdevfs - mapdevfs utility for the debian installer (udeb)
 di-utils-reboot - Reboot (udeb)
 di-utils-shell - Execute a shell (udeb)
 di-utils-terminfo - Terminfo entries needed by newt/slang in debian installer 
(udeb)
Changes: 
 debian-installer-utils (1.103) unstable; urgency=medium
 .
   * fetch-url-methods/http: Cope with the slightly different no-such-file
 output produced by GNU wget, and with it needing to be invoked using
 --no-verbose rather than -q (LP: #1172101).
   * Merge from Ubuntu:
 - log-output: Always install a no-op SIGCHLD handler, in case the
   subsidiary process starts a daemon which does not fully disconnect its
   standard file descriptors (LP: #1021293).  See also the changelog for
   1.46.
Checksums-Sha1: 
 00f774ebd310cfb0505141efd88562a7fe48 2224 debian-installer-utils_1.103.dsc
 f8ddffdd8e4e808038661351f59e5a9d2251f360 96188 
debian-installer-utils_1.103.tar.xz
 0142b17dfda9430d68569457b1582c88613e2bfb 24982 di-utils-shell_1.103_all.udeb
 8637ef72eea2a5004712b076d499175e1a17ad13 11016 di-utils-reboot_1.103_all.udeb
 593970a8a86b575ec0d7cdf1cd03ab8cc40ae90b 3004 
di-utils-exit-installer_1.103_all.udeb
 b949cf633d640e63f8bcb6d71c2332ffa78eb48e 35522 di-utils_1.103_i386.udeb
 c54ec9218151e439ffa02470ba20ccec0374725e 2342 di-utils-mapdevfs_1.103_i386.udeb
 004093e092415f4d8d822c24dd7b9ce858d565f2 2448 di-utils-terminfo_1.103_i386.udeb
Checksums-Sha256: 
 7f2c727c0e551001790bcaaa6f6f99c94511b4225e79576b0fae52ab92ad6ada 2224 
debian-installer-utils_1.103.dsc
 458a37e26b05905960e3402096e3fd2894e034d86ffafcf9aaa7a3573ae05c02 96188 
debian-installer-utils_1.103.tar.xz
 a03eb0d2b8b2e7b7a7e11857dc7d913d6c3631ce9a2ac152cbea3c0dd4ef596a 24982 
di-utils-shell_1.103_all.udeb
 8728c2324678bafdb8fd5da8bafbacebb60c18a252be169297e7b80df7d3e81f 11016 
di-utils-reboot_1.103_all.udeb
 71c0b6aa3cf579fc018c414a4b7d89da07f4ce9806535df8b3012e6caee5c0e3 3004 
di-utils-exit-installer_1.103_all.udeb
 1b75b3b722cca39a55b0b68484810deb95ce9f1c4e5774865ca04e83cd5a5d34 35522 
di-utils_1.103_i386.udeb
 65f169c35d320f699c6ac37311828c5faefa33d7d1ab13e05150155d53fe8b2a 2342 
di-utils-mapdevfs_1.103_i386.udeb
 d431fec85e3630dffd68500e0587562c96d305d2c3e5b6f2b8be412733805f73 2448 
di-utils-terminfo_1.103_i386.udeb
Files: 
 5af8e8d4b4803e0aef0bd12e15e4a3f3 2224 debian-installer standard 
debian-installer-utils_1.103.dsc
 9870e146ebb7ecbd047f3307ce880eee 96188 debian-installer standard 
debian-installer-utils_1.103.tar.xz
 f6eb5b5e865285236ad032351c0eda7b 24982 debian-installer standard 
di-utils-shell_1.103_all.udeb
 e0095c2641be72e66c74e4b79c7a6582 11016 debian-installer standard 
di-utils-reboot_1.103_all.udeb
 b3433bc29aab7401c547fed5d9f92ad9 3004 debian-installer extra 
di-utils-exit-installer_1.103_all.udeb
 1484dd75edc9c3344c99e8112b4d4642 35522 debian-installer standard 
di-utils_1.103_i386.udeb
 191ba6e2ad255202f81120a9db661a89 2342 debian-installer standard 
di-utils-mapdevfs_1.103_i386.udeb
 c64b28cf5d2eb9d557bdf73c162f5954 2448 debian-installer standard 
di-utils-terminfo_1.103_i386.udeb

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

iQIVAwUBUvUV4zk1h9l9hlALAQhQtg/+KrUYaiCtSkXTGJHznTtKGNshB5qFmevv
EEA1iBMOlYqwyvck44+IbOVj2i4K3XJzywEADIYGFwkVaKLMqGaWgYugoY+IkC2j
c4X5/OxjZLTsO7Hpg+q62TuzdcoYwYa4kmhBBpuup7QOYw5plpSFnfUVOZBDBvIg
KPWbZeE0EIyrwKD3Xzilp3H2ZmcEFNhtmNIo7duV4uWPA+aOrknLs7lAGq7sHyvT
buV+sW9jUWGBXOaokAQxWQ6GbR46BoNU79jXAF1oX6m5fcnbuTR1aPZc3c4eVq8M
csTFH/5bp/Att99+yae+fKz0VNmFXB2NbWuITSbjvTELTzTK4IWxdHAWYI0EuO6n
ujkxRUibw5OinyFrDoL22U2MquVAsP2MZEAgBXPwc8P4xZvBRll/FDOuLCYTbHoy
1Huscdkbedzx3+Vuewk+Up/41yMiL0p3Rdy/HTey42buxDs1GQrFIe5+HoyvXxFR
rHNQaQm528II3SPsoEYbvazjQizaqwm63We2JLZoW6FiJ1zm9Otf41Rp8Y9AJIq1
UuCdrVT+L8bt5X3d5qkW/x/2NwNarg4/ZA2NufCXHKbDenXZnWskM8IGKf/ViStu
BCom4UjKi8h3OxthAxAfFw/i5C3QosCXicba2OWohXeAmygdFpnN82V6t4lmXZhZ
2VVByDAzF3M=
=/ecm
-END PGP SIGNATURE-


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



Accepted tesseract 3.03.02-3 (source all amd64)

2014-02-07 Thread Jeff Breidenbach
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 09:25:16 -0800
Source: tesseract
Binary: tesseract-ocr-dev libtesseract-dev libtesseract3 tesseract-ocr
Architecture: source all amd64
Version: 3.03.02-3
Distribution: unstable
Urgency: low
Maintainer: Jeffrey Ratcliffe jeffrey.ratcli...@gmail.com
Changed-By: Jeff Breidenbach j...@debian.org
Description: 
 libtesseract-dev - Development files for the tesseract command line OCR tool
 libtesseract3 - Command line OCR tool
 tesseract-ocr - Command line OCR tool
 tesseract-ocr-dev - transitional dummy package
Changes: 
 tesseract (3.03.02-3) unstable; urgency=low
 .
   * Fix dependency mistake introduced in 3.02.02-2
   * Patch from upstream to fix PDF rendering for Arabic
Checksums-Sha1: 
 a415420da65ff18be5d4d6cebc10184a1057a9ee 1414 tesseract_3.03.02-3.dsc
 97bf370f67abd098b42dc867e49b00943129c284 5232 tesseract_3.03.02-3.diff.gz
 1f5ce99289dfdc3bef1683d70f4900088948fb0e 11572 
tesseract-ocr-dev_3.03.02-3_all.deb
 964392dcc1fd188488f15fd3b8fa7bd20b9eb3c5 1291498 
libtesseract-dev_3.03.02-3_amd64.deb
 41652b6def710bba9655f92871d7858d707fc197 1072946 
libtesseract3_3.03.02-3_amd64.deb
 cea9d845a09e34c02ab6f4b7a046fc8728b00935 31074 
tesseract-ocr_3.03.02-3_amd64.deb
Checksums-Sha256: 
 a9c213dc1ed65e0e473abfa0133b28ed563c2e46bc9211a0299de714fa099e80 1414 
tesseract_3.03.02-3.dsc
 712b689a9dd43f39f73ef28c7f4104844a2ec2651f9deb8c801a48ddf355934b 5232 
tesseract_3.03.02-3.diff.gz
 e00e292b70c80449a30ee69a77a94ecef7cf0f4ad7906fae49c1fc1f698f354d 11572 
tesseract-ocr-dev_3.03.02-3_all.deb
 003e70304bf4160ebd0d4a13bc4e9b2447a0de330dcbd682c1cf752f5097b3d7 1291498 
libtesseract-dev_3.03.02-3_amd64.deb
 06e8f4df760619d0e0c3432888ca6802d24a7fb69a402e58cd1ad130a66a52a1 1072946 
libtesseract3_3.03.02-3_amd64.deb
 445584e4cea2c7dfa5cec4d2b848fceb92d7b71270b3a1f28d2cb0ee42ab43d0 31074 
tesseract-ocr_3.03.02-3_amd64.deb
Files: 
 099cc2d68c4d9b78fb1c5ca1dcf69be6 1414 graphics optional tesseract_3.03.02-3.dsc
 1357d82f6157756452e682b042520246 5232 graphics optional 
tesseract_3.03.02-3.diff.gz
 24070e388c0d05977ef93e8c7b76208a 11572 oldlibs optional 
tesseract-ocr-dev_3.03.02-3_all.deb
 cc9d9a6fb4c212c9a7903fa328eba41b 1291498 libdevel optional 
libtesseract-dev_3.03.02-3_amd64.deb
 4bc8eae8d0b8c9d8b1f6f1eb52860b3f 1072946 graphics optional 
libtesseract3_3.03.02-3_amd64.deb
 073932afd354c21ed3f2a395cbe1abef 31074 graphics optional 
tesseract-ocr_3.03.02-3_amd64.deb

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

iEYEARECAAYFAlL1GKgACgkQazfo3TSzaFbzNgCeOtwE8Ye6Ugv8jWi8drHZzxJL
3TIAoIU/wnGndWHusqNsq7tVyoVGy152
=sQsp
-END PGP SIGNATURE-


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



Accepted pastebinit 1.4-3 (source all)

2014-02-07 Thread Rolf Leggewie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 08 Feb 2014 00:43:27 +0800
Source: pastebinit
Binary: pastebinit
Architecture: source all
Version: 1.4-3
Distribution: unstable
Urgency: low
Maintainer: Rolf Leggewie f...@rolf.leggewie.biz
Changed-By: Rolf Leggewie f...@rolf.leggewie.biz
Description: 
 pastebinit - command-line pastebin client
Changes: 
 pastebinit (1.4-3) unstable; urgency=low
 .
   * bump debhelper to version 9
   * control: drop some obsolete python options
Checksums-Sha1: 
 4898d6841a9ba76ba336c4611dad9c0ceab83652 1889 pastebinit_1.4-3.dsc
 eea5317b6023eb4961f286ced59045a69e967689 5912 pastebinit_1.4-3.debian.tar.xz
 9c9a3eeed393abc03dde202de9293e1a764f439f 39122 pastebinit_1.4-3_all.deb
Checksums-Sha256: 
 cfc92d9945c18a9f44521863ec0ca8b3b495b6a0686869982eb3e667d8a07ae8 1889 
pastebinit_1.4-3.dsc
 20babbcfc2ebfcdeadb676eaff97bedba88a5cf1de2f8f441568ad7a70e0efe9 5912 
pastebinit_1.4-3.debian.tar.xz
 8b196a5965612137c32bdbb7677151f10ea6701ac59b063cab745169c91fa8df 39122 
pastebinit_1.4-3_all.deb
Files: 
 673cd11cb22e76d1c853101804f167c5 1889 misc optional pastebinit_1.4-3.dsc
 81e12ae3e65705ac03a43b73104490e6 5912 misc optional 
pastebinit_1.4-3.debian.tar.xz
 f1fda6adbaccaf0223f727166c7b758b 39122 misc optional pastebinit_1.4-3_all.deb

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

iQIcBAEBAgAGBQJS9Rd6AAoJEJSEK8huURwxW4UP/0UtOJOuMaeR2StawI/HgLnq
80vPnR4lEh4b9kVAsTLp6NMLPIxlGE+8u+Pv8KKd7Nyoh91xpryFlT6DdmRvbYFI
OeiSAhBJI9zie8T3Df6tCjbF+/LuCXH9lMVZAjXLFwxx+oDBo/q2+d8MQFXx38Zf
Cg/YEJTdRaJ0Nntg9V2Fjb1ayGF+6mWMsc6PR6VF6ZFz3pmIQgEuMboOPU6RsjJu
xYiHCemaY9a8d+31+Kn4/tbPx/rmUG3CNLyPR7M3JQGDhJRYjq5HC/BcyqPJw72e
JkcqNA1T2fiwt5BeObIVi5KauNO8j4fGG+vkxHWJGHtIACZwseLRColFwza8xc37
ukIdAk0/y+WvhQjVJYagL2qbsJDR2hpOz4S2qF1jV4R+QUj/f8qSMhH991MrUBe8
faj/jeR4LTUx3yEw5ZvvjyYFVP+SXQRMHg0p9/whI3soakdpZ81SXZ48JGuiziPC
dKGHELAzYAcdDVXdH/onaz7C9cWIIUj1ytiq3rq/O4L94FdSenUfK5Jh8ns24hsv
3AYOSIHgIGIL4LpOdF43zW9UwPh4twupFAeeqobBe8Uo6pghHApjdfplz4sGDdhz
MUpMkuDGjbTB+ckRPstMleosjbcxTLntl3F1n0teXk8u9i4w8vgQO0b6+ODH4mha
/FXyVLBEfpJnw7/5oI6A
=94UJ
-END PGP SIGNATURE-


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



Accepted grml2usb 0.14.3 (source amd64)

2014-02-07 Thread Michael Prokop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 18:38:25 +0100
Source: grml2usb
Binary: grml2usb
Architecture: source amd64
Version: 0.14.3
Distribution: unstable
Urgency: medium
Maintainer: Grml Team t...@grml.org
Changed-By: Michael Prokop m...@grml.org
Description: 
 grml2usb   - install Grml system / ISO to usb device
Changes: 
 grml2usb (0.14.3) unstable; urgency=medium
 .
   * [dbf34c4] Bump Standards-Version to 3.9.5
   * [6bf0be8] Fix logic of isohybrid execution if uefi option is not
 supported
Checksums-Sha1: 
 af39361c1e8b94bcd79f0d7bf0b148cfec86ce95 1066 grml2usb_0.14.3.dsc
 3339948b7f0356931257874fb070a8d83d978eca 383416 grml2usb_0.14.3.tar.xz
 73a309645f5db05f839e006ee2f629194a7e2f05 214504 grml2usb_0.14.3_amd64.deb
Checksums-Sha256: 
 4e008a4184ef6314c2cfc09d8fb901eb7c8b68f0aedd778b0cadadf3155ca245 1066 
grml2usb_0.14.3.dsc
 770349cd4cfdfa1ce36637272cd831501ec48b216d050f54e41a37574aa8a9d1 383416 
grml2usb_0.14.3.tar.xz
 b5bdd99df56d4fe771dba3e9c12efb23609c5359eb5d915982440995b8b5fb69 214504 
grml2usb_0.14.3_amd64.deb
Files: 
 c216270218813dce9b05c8bbdab86591 1066 admin optional grml2usb_0.14.3.dsc
 7fecc17c3f7a53f0ac26972c95372a53 383416 admin optional grml2usb_0.14.3.tar.xz
 ae74b369fa143a4adfce4b50b8839824 214504 admin optional 
grml2usb_0.14.3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1GzkACgkQ2N9T+zficui6ewCfXY9xTGTQNKl3JAEz1Acxf2+I
V3UAniQL3IsmXY6Z0Ov7kecEYD4Q9I7w
=4/vp
-END PGP SIGNATURE-


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



Accepted base-installer 1.142 (source all i386)

2014-02-07 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 16:17:36 +
Source: base-installer
Binary: base-installer bootstrap-base
Architecture: source all i386
Version: 1.142
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 base-installer - base system installation framework (udeb)
 bootstrap-base - Install the base system (udeb)
Changes: 
 base-installer (1.142) unstable; urgency=medium
 .
   * pkgdetails.c: Only interpret percentages following whitespace, to cope
 with GNU wget outputting the local file name (which may contain % due
 to URL-encoding) after it finishes the download (LP: #1172101).
Checksums-Sha1: 
 98c66a509fbb95018edd8b177ecf1b8d9996b200 1939 base-installer_1.142.dsc
 724b087e39ee2c2f36e1022a8a893ef500ea41e5 252580 base-installer_1.142.tar.xz
 aa52ac25d0ddf4539b1b577152893a9f82b40ed6 55962 base-installer_1.142_all.udeb
 8b1425d7831d09cca66763f7c8e3952e7679324b 235482 bootstrap-base_1.142_i386.udeb
Checksums-Sha256: 
 0db4a31ef6fcbd58d734b6d5b664c81f264ebb29f9d10292375bbf72f7df73f7 1939 
base-installer_1.142.dsc
 93bb23a77dd0f50dfc537834bb2fea9592923ed05dbf94d57a02dd805014560a 252580 
base-installer_1.142.tar.xz
 20ec2516bae31bc1401be5c48ccabfe996f31b7193c33a6b195680d9a65fa49f 55962 
base-installer_1.142_all.udeb
 a5cf849695d0e2109a17d7cd941e7495fad5d14ed9480b702df2c268b9f855b7 235482 
bootstrap-base_1.142_i386.udeb
Files: 
 6394613742625b678625a59d230e5a61 1939 debian-installer required 
base-installer_1.142.dsc
 dc4c99c0c8106cd37723c41ec9e86b0c 252580 debian-installer required 
base-installer_1.142.tar.xz
 473854d8d92331ced2a08c48beead5d4 55962 debian-installer required 
base-installer_1.142_all.udeb
 833c719d414d886171bbd9071b73b6b4 235482 debian-installer required 
bootstrap-base_1.142_i386.udeb

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

iQIVAwUBUvUILzk1h9l9hlALAQhlUw//T/lmqb84e0xjPQ/9dSAniRf18CY46AO6
hTcIdYtnIYSBAT/SV4rAzoobr4QH1eiQRLqGqyuoZ3GsPJMeBSOKkVueRQGKWYa+
k8Cc2HDIPfITufBGeMApWx8gZiiZSJBLMeNwXr61ejiMhI4Z+wfkOY9W745vuNRQ
RT9Wfc3VsPGkPzZqJ6Na7rfnyIw1JpyKDQTqFnlUXReEMXFB4IHAoDm+0fIvGp8i
IhGZMSseIoLYVXFbZXw8BInSO78URMTAicjzDksyQn9adPQsK5LicPphQyiLIWn4
pFAgGllx4G4aGRhODwwSB2fdElxEAwLI31QyLtoqnm0gmkAHs3owijUXd+UxiXuD
OKRziSkiz2WM32fgFdV+0Zqtf0WGD9Rg0kmxKuK3ZnW83L626kfv3AU84++Qpui9
KqAMdGiyNrtrl8hIuiQ7kqojKlTL652uyWUptNtncFqUh0hSpp6cH5lUzDaSuMNL
9oimOokTUJ2TBUij1DPlGSqd+WVl8KWtkuywBzb1D27+VyG9idZY37wL7cd+iPQ8
DwzOZK5Yqc6wa196G7JX8zawrDkoMBIO5cmMUsYRJDxopI7UIEtOI8ibYD/K4iNO
elN2CEVGdsc1Mn0YnTEab3xmbGW9OJDkBjrqwz6LZ8veRG5caL1B/kYQqg584XXf
qsGk+RqTwS0=
=zoLD
-END PGP SIGNATURE-


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



Accepted libedit 3.1-20130712-3~exp1 (source amd64)

2014-02-07 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 15:55:26 +0200
Source: libedit
Binary: libedit2 libedit-dev libedit2-dbg
Architecture: source amd64
Version: 3.1-20130712-3~exp1
Distribution: experimental
Urgency: low
Maintainer: LLVM Packaging Team pkg-llvm-t...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libedit-dev - BSD editline and history libraries (development files)
 libedit2   - BSD editline and history libraries
 libedit2-dbg - BSD editline and history libraries (debug package)
Closes: 722083 737786
Changes: 
 libedit (3.1-20130712-3~exp1) experimental; urgency=low
 .
   * Add option --enable-widec to get UTF-8 support (Closes: #737786)
 (LP: #816758, #1276836)
   * Fix the description (Closes: #722083)
   * Standards-Version updated to 3.9.4
Checksums-Sha1: 
 f59309ebd5517f6b4af7d22437694106f944b964 2232 libedit_3.1-20130712-3~exp1.dsc
 e8affe105a83a7c200052c17f3da94e8b1dd2f36 20146 
libedit_3.1-20130712-3~exp1.debian.tar.bz2
 30d7ec3e47ad9530639524e28517bc23eedcd30b 76514 
libedit2_3.1-20130712-3~exp1_amd64.deb
 e9d7653922eba49440af7a14e7746241c74b11a6 91636 
libedit-dev_3.1-20130712-3~exp1_amd64.deb
 9f96365dc6f09d0198f829cb665f67ea99ed99f4 157920 
libedit2-dbg_3.1-20130712-3~exp1_amd64.deb
Checksums-Sha256: 
 40d210fcb8dfdb0733b3f63c389cf83af6e46905cc2625ae62065580ffdec05d 2232 
libedit_3.1-20130712-3~exp1.dsc
 85bf5ee850241828b24b5dc4dd86daa0a31ae140bfad82f7258e02e4a52920fe 20146 
libedit_3.1-20130712-3~exp1.debian.tar.bz2
 4a18bf2b3c53d72f6cb559a036f3a8a390515a6d8429e2446b837b5a5baf056e 76514 
libedit2_3.1-20130712-3~exp1_amd64.deb
 861c00430939e385af22fedfd948f0f753e15feee8c1575dc4de938589eb3391 91636 
libedit-dev_3.1-20130712-3~exp1_amd64.deb
 5fac23bb938795d304f3d923e26eda4b3eb08e5e6ab2514513a48d578b2d4742 157920 
libedit2-dbg_3.1-20130712-3~exp1_amd64.deb
Files: 
 174ae29ecb884330506f53c4c9f8c315 2232 libs standard 
libedit_3.1-20130712-3~exp1.dsc
 8a30745275adb7b510e8b85b2a1c5c85 20146 libs standard 
libedit_3.1-20130712-3~exp1.debian.tar.bz2
 6b7401571af78d8a969778f9646f1ac3 76514 libs standard 
libedit2_3.1-20130712-3~exp1_amd64.deb
 e65129414f4bff33bb152326a544146d 91636 libdevel optional 
libedit-dev_3.1-20130712-3~exp1_amd64.deb
 99a7f88e4658ce1e0004bcd3ec58025b 157920 debug extra 
libedit2-dbg_3.1-20130712-3~exp1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9SCAAAoJEH5lKNp1Lxvh1tkP/3l2p0O/aI0kxwFosCyE8wBy
s41CpzkzYhVvEPQvFH7TElnDjvi61ieJkBr7B3cd87YIhvOT30nbQ4xDcATgf2rL
WV5nNSM9XzV2IFG9OtctmaG0kv1t75I8LXJw5EtfMEFgFOS7X6EAnRUv36yBfnTE
J57hj6lPonD1n/Zj4971SHX1eLiH8W6uvW8CP+dXZS/oAUvAr1Bn8N5wSDKTNqBK
zADZYHLlcvZCY6M6bqyvJdNe9r4CpDXnP3kNlFQWNPp8KtIUycEqDHj78YWroKn3
OVEjgByHzLEFT6g5k/SjDoIS4aZ3oxdYFj7JuYXNFftEvx9axHWiI8yKqIUECSEI
JOYkNG+cdlY+IdT64UsPD6tQMCDk6toLZKcB5OfhDbvg3ze1g6TlnJpP+4ZRxpta
mBkvFWHw9hMWLJd3uRljzUOXNKXBVpTG/pJcjNnTnNaXgDCrr28sMg+fDYIzMH5x
8X0wwvqaFoQTLziIEMjNDZASvBR+cMFbtflpTkZNgMYNHo5ikdp9LLW7xTmh5EqO
U9cmRtyMhEHDCBV4wbi0zhahWa6Ms9cpbUegMsZNqREF4n9xnNmyaWmFCrxr4UQC
ChD4p+80zNh6p2kuOeJFd+yvHFS7mVhGUoGoWQvCN99FRz1pyhRZ4DFrqr8uK+Y9
b6uN9Bb0nkoZIlIfGoBR
=iOrl
-END PGP SIGNATURE-


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



Accepted hivex 1.3.9-2 (source amd64)

2014-02-07 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 18:14:54 +0100
Source: hivex
Binary: libhivex0 libhivex-dev libhivex0-dbg libhivex-bin libwin-hivex-perl 
libhivex-ocaml libhivex-ocaml-dev python-hivex python3-hivex ruby-hivex
Architecture: source amd64
Version: 1.3.9-2
Distribution: unstable
Urgency: medium
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description: 
 libhivex-bin - utilities for reading and writing Windows Registry hives
 libhivex-dev - library for reading and writing Windows Registry hives
 libhivex-ocaml - OCaml bindings for hivex -- runtime files
 libhivex-ocaml-dev - OCaml bindings for hivex -- development files
 libhivex0  - library for reading and writing Windows Registry hives
 libhivex0-dbg - library for reading and writing Windows Registry hives
 libwin-hivex-perl - Perl bindings to hivex
 python-hivex - Python bindings for hivex
 python3-hivex - Python 3 bindings for hivex
 ruby-hivex - Ruby bindings for hivex
Changes: 
 hivex (1.3.9-2) unstable; urgency=medium
 .
   * Added patches from upstream trunk
 - Python bindings regression
 - Bump value size limit, fix error message
Checksums-Sha1: 
 9efbc857b97030739ec51e1e7e98835de02c0c5f 1850 hivex_1.3.9-2.dsc
 64cf3f77c71c447b12dc5043ed1f9e087dbc6f39 7100 hivex_1.3.9-2.debian.tar.xz
 eb531af50788fc5ebc2edb7d03201a1e6a93810f 54418 libhivex0_1.3.9-2_amd64.deb
 615b6e88a3a99c8168211878301439f60db3e093 69306 libhivex-dev_1.3.9-2_amd64.deb
 dfe5f826d450b842d70b03355e2053d4adf4a8ce 228588 libhivex0-dbg_1.3.9-2_amd64.deb
 ded0c5b23b4cc39b791bafc4feb42c3123f84eeb 63858 libhivex-bin_1.3.9-2_amd64.deb
 957a1d34d8a9a1bd0a5a26b16221dc7c2f18b205 63276 
libwin-hivex-perl_1.3.9-2_amd64.deb
 aa5e5391fb5ae77459d976de5e9d84d33e2d2d42 32374 libhivex-ocaml_1.3.9-2_amd64.deb
 a3b478f1a7ffcc452b72c0ff8c2049f240feffce 38134 
libhivex-ocaml-dev_1.3.9-2_amd64.deb
 b38053b2b53f1fa7987058a594a4c2d7b2a3a37a 33842 python-hivex_1.3.9-2_amd64.deb
 a1a7f0f40b62c259441020d3cdc452daef1dfea7 34104 python3-hivex_1.3.9-2_amd64.deb
 3932647b8cb8eadd81202e116fa5d68e0e717a82 32772 ruby-hivex_1.3.9-2_amd64.deb
Checksums-Sha256: 
 d6c7377521f29f3625b893e8a6f2bb25d4e3bed5d0748c63800b73dbbca12384 1850 
hivex_1.3.9-2.dsc
 a746708706faa520e9854a7035fa56f2442dc6a20aabefdc6f321693a66530c4 7100 
hivex_1.3.9-2.debian.tar.xz
 e1eb238a45ece9d3b68c8158aa233605379a96f405dbe5932a0499cc3287874a 54418 
libhivex0_1.3.9-2_amd64.deb
 2f1ac2fb09c4c62282f4bc2844c230131291319abf8035c75ddd04ce596e01ff 69306 
libhivex-dev_1.3.9-2_amd64.deb
 ca8ec3ea91b360eef7022cf9788bbd0903fc013cd6fe09473b9c57aeb96e56d2 228588 
libhivex0-dbg_1.3.9-2_amd64.deb
 a56b3eef9b886e08f99ec30293dfe8e70dc82042e66985340ae3cee8fc093c10 63858 
libhivex-bin_1.3.9-2_amd64.deb
 5a16eb32e10e625bc125d1a4ebe6f20e6eb7e65ca0c646774408def1893d6791 63276 
libwin-hivex-perl_1.3.9-2_amd64.deb
 f26b45ddaf4e758e6fa12d6d224bffea233a1098be1d0205cda4dd8e18acf69a 32374 
libhivex-ocaml_1.3.9-2_amd64.deb
 3a2dbd7131064d68c1bdceab277b8177b5b3486a4a395c4e6aeab539bad41b20 38134 
libhivex-ocaml-dev_1.3.9-2_amd64.deb
 fbd7ec0cd8b93901b5c218a4bcd9213532e3113b4a55abb6c629d1c6ccc989c2 33842 
python-hivex_1.3.9-2_amd64.deb
 54f76f81c6679566929fc82ac193c911f8016548bd096e4a103fed30c90d1442 34104 
python3-hivex_1.3.9-2_amd64.deb
 c1e95f6157bc20dcb75f8ec7c34b3ec12a38847253b776575e80be4809d6f729 32772 
ruby-hivex_1.3.9-2_amd64.deb
Files: 
 48080916a61f1336b57f5a0490de5f38 1850 libs extra hivex_1.3.9-2.dsc
 8c2b7aa4bf1eb4cb5065d893b13145e8 7100 libs extra hivex_1.3.9-2.debian.tar.xz
 36de85d5d849f02fc636e56b196e3494 54418 libs extra libhivex0_1.3.9-2_amd64.deb
 490a97eff5c473cfaf637ad35f92cf09 69306 libdevel extra 
libhivex-dev_1.3.9-2_amd64.deb
 7b7661f74044bed08f5cabd3fcb3e625 228588 debug extra 
libhivex0-dbg_1.3.9-2_amd64.deb
 625ef03817a8cec5474ce2a15fd380fe 63858 otherosfs extra 
libhivex-bin_1.3.9-2_amd64.deb
 d1eca2b7829ca6cf9d5d3d9f599536a7 63276 perl extra 
libwin-hivex-perl_1.3.9-2_amd64.deb
 0c269fdb49c290b9cdbe1bfaf7bae550 32374 ocaml extra 
libhivex-ocaml_1.3.9-2_amd64.deb
 1c85fb2dadf5d012d9fbe3df9519333a 38134 ocaml extra 
libhivex-ocaml-dev_1.3.9-2_amd64.deb
 9991f68f3777b91ba7593af1821af1e4 33842 python extra 
python-hivex_1.3.9-2_amd64.deb
 43f87013a82697ddb4517cb8d58f5991 34104 python extra 
python3-hivex_1.3.9-2_amd64.deb
 6c6354dfb6ae16ee603fd6f1d2a2b281 32772 ruby extra ruby-hivex_1.3.9-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1IQMACgkQUCgnLz/SlGjM2wCeLFmLOwM88OAeifFZ7Qu7I12I
TrMAoO9cndUAnN2QN171XjMXbmIpJWfq
=KO+6
-END PGP SIGNATURE-


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



Accepted binfmt-support 2.1.2-1 (source i386)

2014-02-07 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 18:10:47 +
Source: binfmt-support
Binary: binfmt-support
Architecture: source i386
Version: 2.1.2-1
Distribution: unstable
Urgency: medium
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 binfmt-support - Support for extra binary formats
Changes: 
 binfmt-support (2.1.2-1) unstable; urgency=medium
 .
   * New upstream release.
   * Set VERBOSE=1 when running tests so that Automake will print test logs
 on failure.
   * Move upstream signing key to debian/upstream/signing-key.asc (armoured).
 Requires devscripts 2.14.0.
   * Add a Homepage field.
   * Remove now-unnecessary debian/dirs file.
Checksums-Sha1: 
 2bd996683b453c957a3436a2d6c93bcbbe4ddd02 2012 binfmt-support_2.1.2-1.dsc
 25ac2b72c59a1c20c90ef7162f17515454c2dc50 677810 
binfmt-support_2.1.2.orig.tar.gz
 997ac60002195b73bdf5716fb6b3aeaa23700a2c 202436 
binfmt-support_2.1.2-1.debian.tar.xz
 73b10842ac3c611c43d23385355ea72faff7dc69 54836 binfmt-support_2.1.2-1_i386.deb
Checksums-Sha256: 
 48f6d9073d4a332c9691ae9510f44a008f68101d5fbbca65b9242ccbc628fa6d 2012 
binfmt-support_2.1.2-1.dsc
 43478e29c364e3727695269083702f76a56ffb658de442f90bb45c8025ecb704 677810 
binfmt-support_2.1.2.orig.tar.gz
 1df83ab00996854eebbd83ed7b6fa0ff4974d6dc68755ac87fcfcd59ce16dd73 202436 
binfmt-support_2.1.2-1.debian.tar.xz
 125fceb8fdc8e33f309f83bdd1e82e96e24db2754e02865eb01bf66d45fbfd42 54836 
binfmt-support_2.1.2-1_i386.deb
Files: 
 d52df6c3b9273d10882ecd19e0ce0201 2012 admin optional binfmt-support_2.1.2-1.dsc
 4200063e8c085fae83bdc65317fd6397 677810 admin optional 
binfmt-support_2.1.2.orig.tar.gz
 0015a443acde3e351b06f7063f718b18 202436 admin optional 
binfmt-support_2.1.2-1.debian.tar.xz
 0bbf385b24d1b19c50272b64b3bd4d40 54836 admin optional 
binfmt-support_2.1.2-1_i386.deb

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

iQIVAwUBUvUimDk1h9l9hlALAQhOThAArDtemygKMDNmWUwtOWOrJBF1sERLN1N1
fXAsg50M9yDLQCG3Gjgv3wlVemvHAOaRvpcFRTBska2zSGsoON+H1LQRrVBTCNDt
r6ScRoiMpX9lFAkAXCF8j85YjgeF02x3Z8K+8UF3jbKbtH/YXJbrJEkVNm47V9N2
/bkA0OhC9v0IiGfmQcB4wGkg/UqOPhTjfcuHDPJDh5N1AahfQ2ZpwOa9dPEwDb2p
GGpN5J6zPCXy7NfN7i24+aZDsCLqXW6TY3iw+FyRfagHdLKQ9CNfBo55Br3jx3r+
wXUBJ8IN2U2/XSZ6Mv+8G1mJarwm590tJ+EAzhjAo9qhxyWlKvvPr7ms0IuNDKoE
+BB1NeXhla9eqzVxRS+UoTSPB2Bs3PvZNSl5jFj3BjcyxMUonAsJB9Pacp10W8Yd
dWI9Bkpfa1GhKQOx989IalYaEAEiabaUBLX2nJ+GHugHsbvofKjvK+6IkJu9zWcb
4JgIwrSN1hXHTQhyT/7t//l076geyTjlxJNHf6FYmViCoudP4YZ6AkqiALYGVgsx
P8it4EarXzs+KE4nRFeqL4KUJj/wxeIaCaUbgEMXud3ZyC89x/nxrbUnl92RaMuJ
1r/6QiM1c2IJOiebqBp09WS+s84DbeJMSu9IVWAk/kUGriZ5QU+QOmkM50LSmonw
EUM1nqNsq8w=
=37g0
-END PGP SIGNATURE-


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



Accepted ruby-em-socksify 0.2.1-2 (source all)

2014-02-07 Thread Praveen Arimbrathodiyil
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 23:40:47 +0530
Source: ruby-em-socksify
Binary: ruby-em-socksify
Architecture: source all
Version: 0.2.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Praveen Arimbrathodiyil prav...@debian.org
Description: 
 ruby-em-socksify - EventMachine SOCKSify shim: adds SOCKS support to any 
protocol
Closes: 725561
Changes: 
 ruby-em-socksify (0.2.1-2) unstable; urgency=low
 .
   * Depend on ruby-eventmachine built with ruby 2.0 (Closes: #725561)
   * Bump standards version to 3.9.5 (no changes required)
Checksums-Sha1: 
 f108137b314fd3f165c2ecf69fbe82bf51db5920 2171 ruby-em-socksify_0.2.1-2.dsc
 ba48aaab3c95e016751143ae355f24730bce8b7e 3880 
ruby-em-socksify_0.2.1-2.debian.tar.gz
 02ad8d0f9760739618ac495401ad0ed906d9ad43 5738 ruby-em-socksify_0.2.1-2_all.deb
Checksums-Sha256: 
 d570bee2443c6ebdd147d647cb48ac4e9841ceca1256b1ad494d23363f349940 2171 
ruby-em-socksify_0.2.1-2.dsc
 ba73f4cb2b58670de1027d594bb210c99e4f1a30870ad3be73e0caeea68390f6 3880 
ruby-em-socksify_0.2.1-2.debian.tar.gz
 3f9f6568fd31073cd021a56615da47899edc1c4262e48004d9a74f1243fd0880 5738 
ruby-em-socksify_0.2.1-2_all.deb
Files: 
 9ff88e70fcd23c02538aeafb65f44d90 2171 ruby optional 
ruby-em-socksify_0.2.1-2.dsc
 6360f75308e42a9e5bba49fe25668994 3880 ruby optional 
ruby-em-socksify_0.2.1-2.debian.tar.gz
 35095b88b37de0757e0e38cc7b51194e 5738 ruby optional 
ruby-em-socksify_0.2.1-2_all.deb

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

iQIbBAEBCAAGBQJS9SKZAAoJEM4fnGdFEsIqW+UP9jUx3ah6R6EFtYhW55cNmspl
CSbZ/g3c6zZ/ifpgIILEUvEhN87oqRU8RTxpZsPbbBIHNfgigQnnoxrzPSklcP78
k7L84CFyE/FqKTO8qPAfruUqNQZDiQDvAYPWf1pFSkbDbFKKDgDFrG8d7BjQHPW+
VlCejILOoueOQ1w2QQPzAb//galqyUa7X4LDxlZhR+1D0zdnuWoY3arboz9YGC0u
+C4kKAOw6O2A32yeawLSbgJzhdBHf4U/6RHbQYrNMz4n+mvjaXn2hoM4GXwXwU6R
XSYazWNCAbH9rcaELOIHdKdXcTI548mb3FiHu+8RxaSvhBdlAdQ/yv+rMWfjQtVK
LAv+CwnH3fXg8SQcNPDapB87lfUCLlaulPlpqamjF8zjdVN6IPFkRZEkYeNV3Pp9
mv0kmguSzvnbmMWe790qsukLS3tN636dIj7Y7giGjmlwbHWJvVjQGiq54xU7UxCh
/36XqAFr8LY9Xdqb6gKGu/gvX/BU1x59Vt0b5/HXx7Fd6adP6aBLYPBNC3DIRAC2
rpK7kJnstC10I9sWVuSrXXHkapUBGhVw2w174OgiEjiPnttm6AW6x0aN3f057JDr
QPFQisHXoMGjgXnIUOa6N0XxS72sCFi9SCgfsLRxuQJbCC7jDfNLbaDNWXkFaH4j
Z/ZGHksGl8gBxxAZGyw=
=6V7u
-END PGP SIGNATURE-


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



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

2014-02-07 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 19:35:06 +0100
Source: php-horde-core
Binary: php-horde-core
Architecture: source all
Version: 2.11.1+dfsg0-1
Distribution: unstable
Urgency: medium
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-core - ${phppear:summary}
Closes: 737454
Changes: 
 php-horde-core (2.11.1+dfsg0-1) unstable; urgency=medium
 .
   * Remove all embedded JS libs from orig:
 - Update gbp.conf
 - Repack without those libs (Closes: #737454)
 - Remove excanvas in deban/rules
 - Remove references to embedded libs removed by git-import-orig in
   package.xml
 - Don't remove js libs already removed in gbp.conf
   * Update d/watch dversionmangle
   * Updated Standards-Version to 3.9.5: no change
   * Move dh_link calls to to proper file
Checksums-Sha1: 
 046e4e6a0c5c919b8b454fc147d24a14a17fa553 1425 php-horde-core_2.11.1+dfsg0-1.dsc
 520a83a61684463495308178b138797c1379ee8e 1236393 
php-horde-core_2.11.1+dfsg0.orig.tar.gz
 9d2ea45ad881008e40f745133615ae47e4edbe20 3920 
php-horde-core_2.11.1+dfsg0-1.debian.tar.xz
 75961bc9301c3b1fb55fec425f1667b223833171 889948 
php-horde-core_2.11.1+dfsg0-1_all.deb
Checksums-Sha256: 
 ee9d80deb939f2c05db3fe91985b285f182d641f1208e241b164f036cd59f8d4 1425 
php-horde-core_2.11.1+dfsg0-1.dsc
 5180a79f8c4c730f9cde9d846f9849d1e9255fe3c11bc1205df6f69c5f12f69d 1236393 
php-horde-core_2.11.1+dfsg0.orig.tar.gz
 465e08dd849f245ff70e95a0f612eeea1860db976274c12af6c055253af7db12 3920 
php-horde-core_2.11.1+dfsg0-1.debian.tar.xz
 0746e49268c1cee4a7c97b6218c5eb0bf15e0c2c56dfbe512c425cdf96335a73 889948 
php-horde-core_2.11.1+dfsg0-1_all.deb
Files: 
 6d4a4d02e19cb39d83b4fc5ee9bbf445 1425 php extra 
php-horde-core_2.11.1+dfsg0-1.dsc
 a0b1231e62d3ac104e5966091cff14e7 1236393 php extra 
php-horde-core_2.11.1+dfsg0.orig.tar.gz
 9b9e5c4dd07f5d4df67324b9a0f28fcd 3920 php extra 
php-horde-core_2.11.1+dfsg0-1.debian.tar.xz
 da9dcb7323b92432a1e32722a414ceda 889948 php extra 
php-horde-core_2.11.1+dfsg0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1KCgACgkQOW2jYf5fHX8XyACglFs9gfjKzJygho6E8ltIQSsS
aegAoJiErzAHHgLHEzd6LVjsUD2F9nQi
=TX76
-END PGP SIGNATURE-


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



Accepted guymager 0.7.3-2 (source amd64)

2014-02-07 Thread Michael Prokop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 19:52:53 +0100
Source: guymager
Binary: guymager
Architecture: source amd64
Version: 0.7.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Forensics forensics-de...@lists.alioth.debian.org
Changed-By: Michael Prokop m...@debian.org
Description: 
 guymager   - Forensic imaging tool based on Qt
Closes: 737984
Changes: 
 guymager (0.7.3-2) unstable; urgency=medium
 .
   * [c0190e3] Replace Build-Depends on libprocps0-dev with libprocps-dev.
 Thanks to Andreas Beckmann a...@debian.org for the hint
 (Closes: #737984)
   * [8d7fed2] Run wrap-and-sort on debian directory
Checksums-Sha1: 
 b3aeefbc58d404f67a23b58973c1835cc8c4ba0f 1363 guymager_0.7.3-2.dsc
 2053ceaf0d842aee3699ef47fc9aaed2b976188a 4968 guymager_0.7.3-2.debian.tar.xz
 ba61b58091af49a411de9c26bb59b3b3f3617c01 322712 guymager_0.7.3-2_amd64.deb
Checksums-Sha256: 
 745efc2b275e1974b7e01632fa2841354667728a41596da1de369613dfbca5fc 1363 
guymager_0.7.3-2.dsc
 71ad571f4b71a6be3fa32f2f2033ccb984ba320aada0cd3d8166f8b44a5048ca 4968 
guymager_0.7.3-2.debian.tar.xz
 c90be737a6d2cc8869e11d3fce62be5cabe961b591b162b6aba8f777bad6e2b0 322712 
guymager_0.7.3-2_amd64.deb
Files: 
 c002f99cadf35b25f9d804d7d6da7628 1363 utils optional guymager_0.7.3-2.dsc
 5a8e45251c73452c0eae5e363d021b17 4968 utils optional 
guymager_0.7.3-2.debian.tar.xz
 aa4988c609486aa9e43cfb96df67908d 322712 utils optional 
guymager_0.7.3-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1LWMACgkQ2N9T+zficuiRjwCeLmzUulXfmyU1ThYeEBNPFKRL
7FUAn0O0FnW9Z+jIX5m/g9UgrCTCEqmB
=frJG
-END PGP SIGNATURE-


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



Accepted backuppc 3.3.0-2 (source i386)

2014-02-07 Thread Ludovic Drolez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 06 Feb 2014 12:41:22 +0100
Source: backuppc
Binary: backuppc
Architecture: source i386
Version: 3.3.0-2
Distribution: unstable
Urgency: low
Maintainer: Ludovic Drolez ldro...@debian.org
Changed-By: Ludovic Drolez ldro...@debian.org
Description: 
 backuppc   - high-performance, enterprise-grade system for backing up PCs
Closes: 731087 734356
Changes: 
 backuppc (3.3.0-2) unstable; urgency=low
 .
   * Depends on apache2-utils
   * removed a superfluous libtime-modules-perl. Closes: #734356
   * Typo in log message fixed. Closes: #731087
   * using dpkg-buildflags
Checksums-Sha1: 
 70999e2c7ff2a1a5062f9fd00685814d9f875c55 1029 backuppc_3.3.0-2.dsc
 19d04b85a27463cb1f0dd64cce245517c44bdf4c 29686 backuppc_3.3.0-2.diff.gz
 743b5da216d60b4d0042159e6997851e634d8788 465162 backuppc_3.3.0-2_i386.deb
Checksums-Sha256: 
 3c26d08e26bab7482c01aff45a4de007c8947e1d86c4d64d0d15499e8ded6a70 1029 
backuppc_3.3.0-2.dsc
 4bb80105a7da1e40ae3d733deebe18c1b6fb131872f546a6513e7aac43d194fd 29686 
backuppc_3.3.0-2.diff.gz
 6a5af56e582eb63fdc0dc2d36e6e4a28d0649e513a27e9263ca58d89078b03f8 465162 
backuppc_3.3.0-2_i386.deb
Files: 
 26b4679953f2d06d8f0eb845b770021a 1029 utils optional backuppc_3.3.0-2.dsc
 dc9d141caf265c4041cbce7f01df7119 29686 utils optional backuppc_3.3.0-2.diff.gz
 ccab12f43dd8dedbc2b8b7492d25fbdf 465162 utils optional 
backuppc_3.3.0-2_i386.deb

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

iEYEARECAAYFAlL1MW8ACgkQsRlQAP1GppjbrwCfWId74cM3IB5Vje6uy3fVCCcc
0j4An2wbnFaCHnWPFCQs5M9tRJbxPklS
=1GdL
-END PGP SIGNATURE-


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



Accepted bundler 1.5.3+dfsg-1 (source all)

2014-02-07 Thread Christian Hofstaedtler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 20:32:07 +0100
Source: bundler
Binary: bundler
Architecture: source all
Version: 1.5.3+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Christian Hofstaedtler z...@debian.org
Description: 
 bundler- Manage Ruby application dependencies
Changes: 
 bundler (1.5.3+dfsg-1) unstable; urgency=medium
 .
   * Imported Upstream version 1.5.3+dfsg
   * Remove upstream applied patch revert-0d15cef
Checksums-Sha1: 
 5fefa1d8052f54c22303b84ac1de3a54268c03b9 2038 bundler_1.5.3+dfsg-1.dsc
 7a4eed05c1bb4c8d28e760a4b628bd4d9b2e04b1 292530 bundler_1.5.3+dfsg.orig.tar.gz
 f466f975a1603683d20a02e1626bb44b0a6fa9db 5212 
bundler_1.5.3+dfsg-1.debian.tar.xz
 b22a6ce1035c015393c7735e665c125ed89a50f3 140576 bundler_1.5.3+dfsg-1_all.deb
Checksums-Sha256: 
 93fb6d8b36c178e9802ea925699b7dabfbb9a4e4916a87aa6a761701c0c759f2 2038 
bundler_1.5.3+dfsg-1.dsc
 42b1aa2ac05fb78460cac863d3555fb2183108f85deab2f24d8bf59fc1d81b29 292530 
bundler_1.5.3+dfsg.orig.tar.gz
 d93ada51227b233d06a799eaa61c8d853d3b79af15f776aa4e641c69a7ce1377 5212 
bundler_1.5.3+dfsg-1.debian.tar.xz
 abf0cdd9d5e7de9d201b23b0da1d9588bfe7472ae6b0f61ec08c2d3df1d85a23 140576 
bundler_1.5.3+dfsg-1_all.deb
Files: 
 b38359ae7a2aeadaf17facaebaa74dab 2038 ruby optional bundler_1.5.3+dfsg-1.dsc
 7c59f1654045944d311a1129ae3b7312 292530 ruby optional 
bundler_1.5.3+dfsg.orig.tar.gz
 5e2ac30e2d14cdd784557a77fb8431c6 5212 ruby optional 
bundler_1.5.3+dfsg-1.debian.tar.xz
 91594a298d7c5d05be0595ea52437a85 140576 ruby optional 
bundler_1.5.3+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJS9TUqAAoJEFwT1tuTBS4DhH4P/2GmGJlYyXFrs00SSdEo8zMW
OrgBvRbBgOPNI0fKxhqkXSxHH6lRt2TL2TgnyMhUHI3rdCw/2ouBFef7msi1tSJD
nJpoEO5hYGohJTW9NBdVHKuTMlwY4pKv4VAHusUAwNbgkBofTilLZf+uKs6R5bf5
4SHiexJeY2UDosRyds98XAhkCa5me2T+92k9MYYzUfFiev8/GqVphEJPkBZ0vGDD
3RNUuqLd+YxJCRJNGss6NCxng7Oi2tOuWEuHUBCpk9E2IZ1+egNcFCZfOF/f9blB
s7DCZ2cxigh12QEILQ1NeMEyZofpM4rf7y4y8wqk1IE8Vd3Wkyuh0AiPSQSGvukW
2gBk9iMgxjvbJuKaLQ8KdPRjyGdAtrf/vSAOhM1Dg2npI5S4lgPSSUCJqeh+Jnwi
9ixPEKAZLVFQUDmG/TkVm0vcb5gvHlZO+5fFsCLDIlEUmR63CEBco4AamBal7YyZ
piHbz+nrvgH5pLl86gBSj+olvD1FNPRRsUn839lwNcArC52xzULYz37yoOEivDrm
OGam+wDBHtcyG1LI86OscflGVFA29lcFShNWXu0a7rbAXp8oOEb18VN0Jj2pMPsY
m/XGo7hdPQJfABBykKAIRisjLpoPv8RELsUOcxGa8ic5IbsILqIQEToZbUIQKJAH
q+yVmFe/iMgZ1ucuj0Er
=0ptb
-END PGP SIGNATURE-


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



Accepted init-system-helpers 1.15 (source all)

2014-02-07 Thread Michael Stapelberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 07 Feb 2014 20:18:34 +0100
Source: init-system-helpers
Binary: init-system-helpers dh-systemd
Architecture: source all
Version: 1.15
Distribution: unstable
Urgency: low
Maintainer: pkg-systemd-maintainers 
pkg-systemd-maintain...@lists.alioth.debian.org
Changed-By: Michael Stapelberg stapelb...@debian.org
Description: 
 dh-systemd - debhelper add-on to handle systemd unit files
 init-system-helpers - helper tools for all init systems
Changes: 
 init-system-helpers (1.15) unstable; urgency=low
 .
   * ship /etc/systemd/system to avoid piuparts warnings
   * d-s-h: add spaces to allow the manpage to break lines with MANWIDTH=80
   * i-s-h: override lintian warning spelling-error-in-manpage, we cannot
 rename the upstream command “systemctl reenable” into “re-enable”
   * bump standards-version to 3.9.5 (no changes necessary)
Checksums-Sha1: 
 2b594a2ea0d1feea345f6cbcbe0fa4cf123ddf1e 1832 init-system-helpers_1.15.dsc
 f8fa1c7dc068df14f871bf4ef91f0e0bfd87f22b 15848 init-system-helpers_1.15.tar.xz
 9bda8c3d727c490fe25613a127e170415f368436 12996 init-system-helpers_1.15_all.deb
 2a3efdb0513add1e021cce3af50e074977addaaa 13512 dh-systemd_1.15_all.deb
Checksums-Sha256: 
 f0f405f2e69c2bdda08fe48e258d5e789b5deeea5095ba59695bb52a3c72dea2 1832 
init-system-helpers_1.15.dsc
 e35b8e631b51e6f3791e71402d51b638b608d759f92af2d35b10e8f269728e30 15848 
init-system-helpers_1.15.tar.xz
 3e089892940e670a16d20e8ba00ce38a42dd96010e7d90306aad50ed9b51f7c6 12996 
init-system-helpers_1.15_all.deb
 7f72a9badd6571a58ea378f3d6515dd0eb67694d377f1f55c25d7be832e1a984 13512 
dh-systemd_1.15_all.deb
Files: 
 8654bb030166fd8b5f8aa926e17ba97c 1832 admin extra init-system-helpers_1.15.dsc
 00d0d3b310151e96f7fb1eb2c9e759bc 15848 admin extra 
init-system-helpers_1.15.tar.xz
 7a15fa3b2db6d587fd7f17bf7ec83c11 12996 admin extra 
init-system-helpers_1.15_all.deb
 a1ee707ebe41f140b3f4c9532e621d3a 13512 admin extra dh-systemd_1.15_all.deb

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

iQIcBAEBCgAGBQJS9TX6AAoJEE5xYO1KyO4dg+oQAISgV3EcekZR4/hu4znVPMNL
m2jHePFSrxfKd2YFSok/WL8fEsjVwhhjlwpXpHIjouvOdlPjGOL0d0kq0wVY1XmV
eYlZ7eI5zq/XuSJQWunLDoK/T9coLkEcOAfjk6qUai4HXyJQiOyCTuMMzHbMH34w
MFlCHUhD+pQ5bDauMjOltlFbp1uFi+60Wjhry8P9UUXrrP7awZiYwv3mz16hNq7C
dga7qHYzoZbr0JXayobSXlsBwxhpEoiLx5wEmDMSSNMG9l1oDKO1aKd0DbgQ3AXc
545zIELaD3toyJ7YTxYafLvDyCWarhbfZixueaocn3upIGJo+B73te8Y557ttd+X
0Z7GonbmcD3PWc34ondvkGJXRpGoZtS/9UmQSU9o/Z/nYccG4GosTS2JrYNdoEKZ
BINNTAHcM6YFYgnEaWw42tSYMLqckc4JGpQIGmt3E8DnqA7tgMmdviYGUnOIFmX5
rXnvCwMXE8JjEj0/C5aAgfTCWhGpMmU3EvnHRqrYxlfoo5jvlw8C7c5gTJUb84ys
vMzLxtQ8FEZzmAKNaM4g0cEp/6lOLyR6vwe2lcud1uCm20DFA9zjE45bhJPA/spe
jFlQkJOKNWWMSohjbOfygjuUyUZbshK424OR/uDfxc9Hx4YpSI5On+vkQwisVW7/
nNJJ3czGeB/DgeQAfc+M
=HIBv
-END PGP SIGNATURE-


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



Accepted kamailio 4.1.1-2 (source amd64)

2014-02-07 Thread Victor Seva
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 10:45:50 +0100
Source: kamailio
Binary: kamailio kamailio-dbg kamailio-geoip-modules kamailio-sqlite-modules 
kamailio-json-modules kamailio-memcached-modules kamailio-lua-modules 
kamailio-mono-modules kamailio-python-modules kamailio-redis-modules 
kamailio-mysql-modules kamailio-postgres-modules kamailio-cpl-modules 
kamailio-radius-modules kamailio-unixodbc-modules kamailio-presence-modules 
kamailio-perl-modules kamailio-snmpstats-modules kamailio-xmpp-modules 
kamailio-xml-modules kamailio-carrierroute-modules kamailio-berkeley-modules 
kamailio-berkeley-bin kamailio-ldap-modules kamailio-ims-modules 
kamailio-utils-modules kamailio-sctp-modules kamailio-java-modules 
kamailio-tls-modules kamailio-outbound-modules kamailio-websocket-modules 
kamailio-dnssec-modules kamailio-autheph-modules
Architecture: source amd64
Version: 4.1.1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org
Changed-By: Victor Seva linuxman...@torreviejawireless.org
Description: 
 kamailio   - very fast and configurable SIP proxy
 kamailio-autheph-modules - authentication using ephemeral credentials module 
for Kamailio
 kamailio-berkeley-bin - Berkeley database module for Kamailio - helper program
 kamailio-berkeley-modules - Berkeley database module for Kamailio
 kamailio-carrierroute-modules - carrierroute module for Kamailio
 kamailio-cpl-modules - CPL module (CPL interpreter engine) for Kamailio
 kamailio-dbg - very fast and configurable SIP proxy [debug symbols]
 kamailio-dnssec-modules - contains the dnssec module
 kamailio-geoip-modules - contains the geoip module
 kamailio-ims-modules - IMS module for Kamailio
 kamailio-java-modules - contains the app_java module
 kamailio-json-modules - Json parser and jsonrpc modules for Kamailio
 kamailio-ldap-modules - LDAP modules for Kamailio
 kamailio-lua-modules - contains the app_lua module
 kamailio-memcached-modules - Provides the memcached module, an interface to 
the memcached serv
 kamailio-mono-modules - contains the app_mono module
 kamailio-mysql-modules - MySQL database connectivity module for Kamailio
 kamailio-outbound-modules - Outbound module for Kamailio
 kamailio-perl-modules - Perl extensions and database driver for Kamailio
 kamailio-postgres-modules - PostgreSQL database connectivity module for 
Kamailio
 kamailio-presence-modules - SIMPLE presence modules for Kamailio
 kamailio-python-modules - contains the app_python module
 kamailio-radius-modules - RADIUS modules for Kamailio
 kamailio-redis-modules - Redis database connectivity module for Kamailio
 kamailio-sctp-modules - sctp module for Kamailio
 kamailio-snmpstats-modules - SNMP AgentX subagent module for Kamailio
 kamailio-sqlite-modules - SQLite database connectivity module for Kamailio
 kamailio-tls-modules - contains the TLS kamailio transport module
 kamailio-unixodbc-modules - unixODBC database connectivity module for Kamailio
 kamailio-utils-modules - Provides a set utility functions for Kamailio
 kamailio-websocket-modules - Websocket module for kamailio
 kamailio-xml-modules - XML based extensions for Kamailio's Management Interface
 kamailio-xmpp-modules - XMPP gateway module for Kamailio
Closes: 736212 737760
Changes: 
 kamailio (4.1.1-2) unstable; urgency=medium
 .
   * fix typo on kamailio-java-modules dependences. (Closes: #736212)
   * do not try to build mono on excluded architectures.
   * use db-utils from db-defaults.
   * add Provides sip-router and add
 stun-server | turn-server to Suggests. (Closes: #737760)
Checksums-Sha1: 
 1bda12cb59c5fd77d67a0a8d4735e2cb87852bcf 3993 kamailio_4.1.1-2.dsc
 97cb0b4a4d7e1f3e56652c080b13e2dc13ce0925 24828 kamailio_4.1.1-2.debian.tar.xz
 8da4d69bcee2116bb825551d610ca3375b4b40a5 4563706 kamailio_4.1.1-2_amd64.deb
 aab6864e431d2fbf06ab566f6390100dfa562d4e 17880856 
kamailio-dbg_4.1.1-2_amd64.deb
 08630f16a7a8cc06cc7a364f4e541f4b5e7d2019 122356 
kamailio-geoip-modules_4.1.1-2_amd64.deb
 9483eb4e4161833a0ad4c63c11b1344b5f336d80 128638 
kamailio-sqlite-modules_4.1.1-2_amd64.deb
 4c22b5cffbaf5eca08e6518ad8a298a03d915899 135896 
kamailio-json-modules_4.1.1-2_amd64.deb
 a9247e0b595e999d1f55d82d939b6b667f1e5a80 129858 
kamailio-memcached-modules_4.1.1-2_amd64.deb
 fc4ce4b2126a955dca329f6d88c9290262ba3ef7 178292 
kamailio-lua-modules_4.1.1-2_amd64.deb
 92c6990af78a77564e7c140fae422286eeaec54b 128732 
kamailio-mono-modules_4.1.1-2_amd64.deb
 5bb661bef1b9c7905cbafd8a9b12b82b2a78df64 129944 
kamailio-python-modules_4.1.1-2_amd64.deb
 79ab3b52282cb6004af85c3f8b5add7f6c42032a 132504 
kamailio-redis-modules_4.1.1-2_amd64.deb
 44285fb58897a7ec426b8e3780a3149a9620d7f6 169356 
kamailio-mysql-modules_4.1.1-2_amd64.deb
 42a0318113087c090ab27555f81dc2aa8159d88f 193788 
kamailio-postgres-modules_4.1.1-2_amd64.deb
 a4aad5f1963ddad33863544f2f328b36beafeb83 240690 
kamailio-cpl-modules_4.1.1-2_amd64.deb
 

Accepted debootstrap 1.0.57 (source all)

2014-02-07 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 07 Feb 2014 16:12:23 +
Source: debootstrap
Binary: debootstrap debootstrap-udeb
Architecture: source all
Version: 1.0.57
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 debootstrap - Bootstrap a basic Debian system
 debootstrap-udeb - Bootstrap the Debian system (udeb)
Changes: 
 debootstrap (1.0.57) unstable; urgency=medium
 .
   * pkgdetails_perl: Only interpret percentages following whitespace, to
 cope with GNU wget outputting the local file name (which may contain %
 due to URL-encoding) after it finishes the download (LP: #1172101).
Checksums-Sha1: 
 169cc2e8d791cf35b7610231cfe75a7ba9c24906 1847 debootstrap_1.0.57.dsc
 3b1c2ce4f3efb629b61e386adf95fa62f09fa194 49244 debootstrap_1.0.57.tar.xz
 2caf00cf8ff313315ec2e2c440207a2b9cf3e632 55942 debootstrap_1.0.57_all.deb
 783672633708856d46a7bafe469a92408845a3fe 18118 debootstrap-udeb_1.0.57_all.udeb
Checksums-Sha256: 
 2c5776a9793e258a3f57f3a7645deb76d38afe9ee81a87e2600121435c37e4b6 1847 
debootstrap_1.0.57.dsc
 94a9267b3490ac730157561f21a556ca12e7964c8276ede49125c942c0aa2f81 49244 
debootstrap_1.0.57.tar.xz
 4fb352c552e0c5938d81fcd58189498ac1da92c7db2fac1426dfd15f583b070d 55942 
debootstrap_1.0.57_all.deb
 8600570c71c328124f90daab3cffacb3f8d5535cfdbd2c1c74235e608edf3b54 18118 
debootstrap-udeb_1.0.57_all.udeb
Files: 
 92bcc29e2c9f05b879baec96a1318228 1847 admin extra debootstrap_1.0.57.dsc
 464c3d461ea396246c7966e6c6ebeb2c 49244 admin extra debootstrap_1.0.57.tar.xz
 154ccf14b26c89c48fff26a510e315a8 55942 admin extra debootstrap_1.0.57_all.deb
 5ca21e47d8c07f5f3c9b90b3850589a7 18118 debian-installer extra 
debootstrap-udeb_1.0.57_all.udeb

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

iQIVAwUBUvUGujk1h9l9hlALAQhQrA/+MG6DTY1YmKzKOCH6bBjGU0gpyCO9ersq
SDnOSxlVh1rbfzOJt1dlvx2TkjJpsIr/UPybpnwTQddAtBcPs3RnBZIp4GPkgaLL
mSXBODDNb4qiKN8ESbH7d4kdlDnQfMTK9eLc/2orFy0ApKnbzgA5LQ3KrjANDmh9
ND/0D3j/RDOQMe9nPePPS5Sf+f41Igv/ICBEuvWjQ7Bg5t0ZIMYZIafkGdSgwvGg
MCLDN1pGw2Dbx0ULFj/BghLEn0vVvcbEoOTKM0pDDtpv/h+4CGkP/EyJ8X5SVe5s
aYltmJKUoAHJIHcHoxEB+N3hUVpwzXCbMLdgDmB7JujUzkC1VLYj3TR9MpXy4iXk
vMfU7lBukBRSQfQOyUFjpxeQHmlBENd4b4S3msI7TKX/xKfpnr/O9gds0KOYUyJL
sg+YjEpIK8OkoXIuTKxFUtoQ2jqso8/uhK8QRBoMmv5f7uJcGfPK9a2YqM7eBzzZ
T6BTQZiGlPlbY/E0eUOAsYGvb22g7I6dfau2jtDoXJ8sLgfHL5Nby+cdKOtRxWv6
+uSz4vkQdqK2BEs7Z1h1V9aRoCydsUA0dXoa8cAciycXw8qyHe4m6r215kbUE4sJ
tnCtj05hUtfxwbnHmc5Fyis49XvZSwny67/ZmxzLmvHXoXzZv7wWiRfVnGnyLSwJ
yenT8jMNu1c=
=PtLN
-END PGP SIGNATURE-


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



Accepted golang-go.tools 0.0~hg20131126-3 (source amd64 all)

2014-02-07 Thread Michael Stapelberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 07 Feb 2014 21:27:37 +0100
Source: golang-go.tools
Binary: golang-go.tools golang-go.tools-dev
Architecture: source amd64 all
Version: 0.0~hg20131126-3
Distribution: unstable
Urgency: low
Maintainer: Michael Stapelberg stapelb...@debian.org
Changed-By: Michael Stapelberg stapelb...@debian.org
Description: 
 golang-go.tools - supplementary Go tools
 golang-go.tools-dev - supplementary Go tools (development files)
Closes: 737985
Changes: 
 golang-go.tools (0.0~hg20131126-3) unstable; urgency=low
 .
   * Add patch 0002-skip-online-tests.patch (Thanks James Page)
 (Closes: #737985)
Checksums-Sha1: 
 8ede4e8c7a066a7dce8e581278a328391fd889a8 2115 
golang-go.tools_0.0~hg20131126-3.dsc
 1a2fa49905be2fa64826e56b00d22ae9f8ea5469 8512 
golang-go.tools_0.0~hg20131126-3.debian.tar.xz
 d7f8a5bc222df1d9988ef208de2ca54bfb92430b 5818750 
golang-go.tools_0.0~hg20131126-3_amd64.deb
 305089db2b2c2c800f26808b5952037906acc3b0 493096 
golang-go.tools-dev_0.0~hg20131126-3_all.deb
Checksums-Sha256: 
 38b885775f9ca88b3c5e9ec021807d1d209f1277664a76968044784dbf5385b5 2115 
golang-go.tools_0.0~hg20131126-3.dsc
 0fbe753b02662329bdf9c506af5e17f59a672d2d8e3b51a108d6acda27276bc6 8512 
golang-go.tools_0.0~hg20131126-3.debian.tar.xz
 d4da1602f89beb3593dd10fe4b1312821515467b6bcde578f0e832d3acb023ea 5818750 
golang-go.tools_0.0~hg20131126-3_amd64.deb
 4aa2b06f060a730dd2cdb4664e44893d2fb677a0a0f166ce40cdf55beabb163a 493096 
golang-go.tools-dev_0.0~hg20131126-3_all.deb
Files: 
 c2d2eab6314042939e5545f5231004f3 2115 devel extra 
golang-go.tools_0.0~hg20131126-3.dsc
 371bf517f7857228614eb6e2cb50316f 8512 devel extra 
golang-go.tools_0.0~hg20131126-3.debian.tar.xz
 1d37324e9cd03e305a98e740b74ee067 5818750 devel extra 
golang-go.tools_0.0~hg20131126-3_amd64.deb
 36fd3723d2b530e17ece9767b12e2381 493096 devel extra 
golang-go.tools-dev_0.0~hg20131126-3_all.deb

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

iQIcBAEBCgAGBQJS9ULHAAoJEE5xYO1KyO4d+0QQANEQ3ZbBzQo9qK3NI5ZYuDIH
m2oHebnDEyBz3u2jCiTPm93m1wdeSLBadKNGsoselV8oDrE5MegTxL1k9OPixNP1
lFjXDYl7+ymoSDnJgZ1MXcC39msgk7baKm4jax8aZlPwyaOu+BeV+Hi4juw3khzN
/CuRmT02ZQNGrS2KmiWAzqHYcAHN808A9/rnJ3GtzYYXm+rmCL++WBkxczqaqol0
Lc5g5khz6Y38LnMWBMDd5UmkjNMkt4KrB8fC8u+a125vPRXrFdcEhG/bagWXilKK
psbl8mif69vj8QZR49nuuCaVDHn9uL1v5xAWAEW6Vkvd0koOcp4iU5cNSKn0Enym
qJwQW+5QtntbmBxu9CJ4FWwm6QxK1CWBYZq6CHJO5S1DkAlDsuSn8PPLl6TNHQPp
tCbBV1SGeq6kZtY7Zh/fKireKHv1f9s+NChnp4UaeHC62JiWGkejoXdy/T7Omds+
m+cCjduzD9sQRHSREYLhy8gNpoWqgsAi45uIzToJ9OW1x8+3e5XYp5yHqC9YL8ZR
SPadAw2L33yHXjJHciq7nYzfJg0F8hxlW7yAdXBIhGgPNQTmi1UcZUJld45uLkla
yUemX4ehdSSbvEGiGHoUAeOvA43fgpZJLUTisjelWp2yv6tI2X5QKy7a7S1w2WSJ
/ik6A3w6/guMgqHFbk4f
=MBsV
-END PGP SIGNATURE-


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



Accepted python-pysqlite1.1 1.1.8a-8 (source amd64)

2014-02-07 Thread Joel Rosdahl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 06 Feb 2014 21:35:38 +0100
Source: python-pysqlite1.1
Binary: python-pysqlite1.1 python-pysqlite1.1-dbg
Architecture: source amd64
Version: 1.1.8a-8
Distribution: unstable
Urgency: medium
Maintainer: Joel Rosdahl j...@debian.org
Changed-By: Joel Rosdahl j...@debian.org
Description: 
 python-pysqlite1.1 - python interface to SQLite 3
 python-pysqlite1.1-dbg - python interface to SQLite 3 (debug extension)
Closes: 736302
Changes: 
 python-pysqlite1.1 (1.1.8a-8) unstable; urgency=medium
 .
   * Handle /usr/share/doc/python-pysqlite1.1-doc symlink upgrade (closes:
 #736302)
   * Bump Standards-Version to 3.9.5
   * Add X-Python-Version header
Checksums-Sha1: 
 628cd225a4221079a87b841fb729f1be4436f545 1229 python-pysqlite1.1_1.1.8a-8.dsc
 103a642bb602bc0035588361ba195a7802f905f4 4548 
python-pysqlite1.1_1.1.8a-8.debian.tar.xz
 627c675a0efa7c55fe312499dcf93c2c9ceeb676 21374 
python-pysqlite1.1_1.1.8a-8_amd64.deb
 c0f9e96696e8a94d38494f642d994acffda6b88b 51258 
python-pysqlite1.1-dbg_1.1.8a-8_amd64.deb
Checksums-Sha256: 
 a38d94add0140724624cc6a177643248728c6454b323dacae181d65159917cab 1229 
python-pysqlite1.1_1.1.8a-8.dsc
 dbede700fda482301863095ea2b14c8ca06be050b40844d999662c365f18f494 4548 
python-pysqlite1.1_1.1.8a-8.debian.tar.xz
 8229f4d3d4cd699c1c0ec9c167c009e6ebcca5d6255bd3432f323fc81f99f133 21374 
python-pysqlite1.1_1.1.8a-8_amd64.deb
 7054fda0ce7442929d7ab127522d76986a07936e3d7bf791361f80ca6c9e61ab 51258 
python-pysqlite1.1-dbg_1.1.8a-8_amd64.deb
Files: 
 c5a0e221e6c0267f88d9d51cda7ff4f5 1229 python extra 
python-pysqlite1.1_1.1.8a-8.dsc
 d8c7fa279b008f6058784bef9b2ecc0b 4548 python extra 
python-pysqlite1.1_1.1.8a-8.debian.tar.xz
 7a2612a5e2e40e61d9eac2011c462865 21374 python extra 
python-pysqlite1.1_1.1.8a-8_amd64.deb
 7972491c2780a2701fc35e44a1f30bca 51258 debug extra 
python-pysqlite1.1-dbg_1.1.8a-8_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1NwkACgkQAGT5/7uEXpdmmACgqybBGi3th75JP34kJ3sQo9v7
Ip0AniFvNFVLBp6TFgwoAFMyI63rFRTt
=BGFO
-END PGP SIGNATURE-


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



Accepted python-sqlite 1.0.1-11 (source amd64)

2014-02-07 Thread Joel Rosdahl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 20:21:21 +0100
Source: python-sqlite
Binary: python-sqlite python-sqlite-dbg
Architecture: source amd64
Version: 1.0.1-11
Distribution: unstable
Urgency: medium
Maintainer: Joel Rosdahl j...@debian.org
Changed-By: Joel Rosdahl j...@debian.org
Description: 
 python-sqlite - Python interface to SQLite 2
 python-sqlite-dbg - Python interface to SQLite 2 (debug extension)
Closes: 736301
Changes: 
 python-sqlite (1.0.1-11) unstable; urgency=medium
 .
   * Handle /usr/share/doc/python-sqlite-dbg symlink upgrade (closes: #736301)
   * Bump Standards-Version to 3.9.5
   * Add X-Python-Version header
Checksums-Sha1: 
 0b9d36658aa8964ed09d93a77014447965e9b7a3 1205 python-sqlite_1.0.1-11.dsc
 8f207a47d7f22a84b8cfe6410e5851db00d4e881 5160 
python-sqlite_1.0.1-11.debian.tar.xz
 5687557fd07e621c671c1bc3b722346a9fc319dc 21492 python-sqlite_1.0.1-11_amd64.deb
 da61628bc73013bcee306003dba5b06bc350ea37 49016 
python-sqlite-dbg_1.0.1-11_amd64.deb
Checksums-Sha256: 
 220bc9d709e89c37bad8c1ffa106bee9a346bbfd3d508e3bf44dc0e0c3d1f70f 1205 
python-sqlite_1.0.1-11.dsc
 1b691ce30a69163f4b3cf6cac92bacb841b625e67671a8ba33add4f2310cdd23 5160 
python-sqlite_1.0.1-11.debian.tar.xz
 6d3b9dbf424aeff27bd8975cd0317d3d5d1af5290e4306084f29a13d30266feb 21492 
python-sqlite_1.0.1-11_amd64.deb
 b55f9bb8ef16fdfe39f587b2a499351b4a41cce295b9a9c5e4b96eae803f41a8 49016 
python-sqlite-dbg_1.0.1-11_amd64.deb
Files: 
 ca95af60793595554d4cc8e32c33ce2e 1205 python optional 
python-sqlite_1.0.1-11.dsc
 490489ef755dd62d53532f4f43a1a31a 5160 python optional 
python-sqlite_1.0.1-11.debian.tar.xz
 5bdd08950554a68d7642160905e1e622 21492 python optional 
python-sqlite_1.0.1-11_amd64.deb
 821de029611ade916c7d6bd1fd76afa8 49016 debug extra 
python-sqlite-dbg_1.0.1-11_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1Ml4ACgkQAGT5/7uEXpeqXgCeN1F7G5KPmkptBUWnQJATkmKw
sxQAoKWPd0lyc+NIyzNP/RMD/5/v3R/h
=NGVt
-END PGP SIGNATURE-


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



Accepted tetgen 1.5.0-2 (source amd64)

2014-02-07 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 21:19:40 +0100
Source: tetgen
Binary: libtet1.5 libtet1.5-dev tetgen
Architecture: source amd64
Version: 1.5.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description: 
 libtet1.5  - Quality Tetrahedral Mesh Generator
 libtet1.5-dev - Quality Tetrahedral Mesh Generator
 tetgen - Quality Tetrahedral Mesh Generator
Closes: 738105
Changes: 
 tetgen (1.5.0-2) unstable; urgency=medium
 .
   * [024eb9b] Add Breaks/Replaces for libtet1.5-dev. (Closes: #738105)
Checksums-Sha1: 
 8cb14953363c3425e5ceec762753789b1f17ae36 2042 tetgen_1.5.0-2.dsc
 5f8956af63754c17817d7dcbcec3fe5b3797ac4a 6820 tetgen_1.5.0-2.debian.tar.xz
 62edc51f25ede3e70c44bddd2d73426893ee51d9 231372 libtet1.5_1.5.0-2_amd64.deb
 61a14912ca8707c705b4d2f872f2025e6c113e36 30692 libtet1.5-dev_1.5.0-2_amd64.deb
 d9d33bb03d51d20b124f0adb3b69f8370667b657 216196 tetgen_1.5.0-2_amd64.deb
Checksums-Sha256: 
 b70eb1595144ee944d40d6e2921347a6f8cd04317aa4c7138273c4dc14d5b9cc 2042 
tetgen_1.5.0-2.dsc
 ba656b5e6ea1acaf1abc828ba0d7f7d2b48d61de43f04f80df2a9bab00ac5512 6820 
tetgen_1.5.0-2.debian.tar.xz
 5992657023d7e48c447282ef9271076fc49e08ef8fc3a0beb23b0407528fe6d4 231372 
libtet1.5_1.5.0-2_amd64.deb
 824086750a35574ef093e2ddeca36b75ec082b6f6064205114f4cb9ade61 30692 
libtet1.5-dev_1.5.0-2_amd64.deb
 9bb4f531e40f51ca76167ad50fe165ecec55c51080d8d35fc179f421374ec0da 216196 
tetgen_1.5.0-2_amd64.deb
Files: 
 933b918c71da729e2fb1451a0046bb09 2042 math extra tetgen_1.5.0-2.dsc
 f2658fffc24add9353341d8b1b88594c 6820 math extra tetgen_1.5.0-2.debian.tar.xz
 3facc414f17113caea682a1d5277b3bb 231372 libs extra libtet1.5_1.5.0-2_amd64.deb
 390fbb6ae94c31b9b8c48bd58aabab10 30692 libdevel extra 
libtet1.5-dev_1.5.0-2_amd64.deb
 26af4e3f4bb833cce7cf9ca3e50495c1 216196 math extra tetgen_1.5.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS9UCzAAoJENPhc4PPp/8GWIcP/0e0inR7FpQaBOBNE/qSe96g
qtW7uZPFQ1fY+6WOymSeNwoO2+kksDXUqi40ussM6prFLm6+5aWoPsRKZiBgl3zj
vnpTwi5dkjnr6kBDp7OCnpiaNPfmqZcyOy8Jq6tfV/SpQvv63L9eqsYuC6FB4nkp
tFp4wuJRK1Z9/mNTE58Hlkj8jbyVKiGp7mezFKlf90SuMQTWFuLZkcLlFEk+MgVX
jOu8L9TfPe940dLO+0N6WPk6D7PMpney5GbYsqXN/CBKGES1zgix7YKQGdn96VvZ
QQX5zP/KUkO+jZp8rFE56Mxy+L81lgUUIXLaWSXJJm/sjtEjjuRzIUbliXg4mGK9
glHc0rw8C+o1VuZFt3fcDe3GZXoQR/oS7hmec7ggMftHz/y1t94rn13IF8GmkfJh
Pr+4h9M5d2+PQoLj26mMfkyTLhnMX3cOIN91iUg+YzmxBO/qXKX8YReghYPRTtyY
GDVD/5vwEk1BMGlR1JTBXGjq2KZvIRce9A74/KImSfQwEKjeFbHjs7XvOv5zKdNB
I7e95fiugYiYxHdkiSZsaKBsepXsTNkEqb6JXViHBBNG6w5tgfFw5bDGta9MEUFU
CzPnxwMj8qKYlEXlNdmJ1eYa9IoVbSVtFxm8KKtDZ3nlhZyu4lGwv8Jbjjapa9pO
tSgsWy+s8rGiiMuvjkQC
=dAJu
-END PGP SIGNATURE-


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



Accepted python-apsw 3.8.2-r1-2 (source all amd64)

2014-02-07 Thread Joel Rosdahl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 20:00:13 +0100
Source: python-apsw
Binary: python-apsw python-apsw-dbg python3-apsw python3-apsw-dbg 
python-apsw-doc
Architecture: source all amd64
Version: 3.8.2-r1-2
Distribution: unstable
Urgency: medium
Maintainer: Joel Rosdahl j...@debian.org
Changed-By: Joel Rosdahl j...@debian.org
Description: 
 python-apsw - another Python SQLite 3 wrapper
 python-apsw-dbg - another Python SQLite 3 wrapper (debug extension)
 python-apsw-doc - documentation for python-apsw
 python3-apsw - another Python SQLite 3 wrapper (Python 3 version)
 python3-apsw-dbg - another Python 3 SQLite 3 wrapper (debug extension)
Closes: 736303 736775
Changes: 
 python-apsw (3.8.2-r1-2) unstable; urgency=medium
 .
   * New upstream URL and license text
   * Handle /usr/share/doc/python-apsw-doc symlink upgrade (closes: #736303)
   * Move python3 debug extensions into python3-apsw-dbg (closes: #736775)
   * Remove Google Analytics footer
   * Build-depend on libsqlite3-dev 3.8.2
Checksums-Sha1: 
 41973337aa1656704e4d1d0ed7cd68508822ac81 1387 python-apsw_3.8.2-r1-2.dsc
 a794d11347498b5f15af86d5f721eb02334672c5 5072 
python-apsw_3.8.2-r1-2.debian.tar.xz
 81ae30de57d5efc8a6b3c3f333cc6ed671a73b34 180630 
python-apsw-doc_3.8.2-r1-2_all.deb
 d41041a70fc988f71c4c29a9732af6689a1a0cd9 99248 python-apsw_3.8.2-r1-2_amd64.deb
 777e1db2993d14b7f0f433aec19c70fc52ac0666 303926 
python-apsw-dbg_3.8.2-r1-2_amd64.deb
 2e9169faa0a0e48540f70136e95c6faa9e48e147 98776 
python3-apsw_3.8.2-r1-2_amd64.deb
 df91aadeb3f4b1d53e27dd1d6b0aaf4406b99f74 304494 
python3-apsw-dbg_3.8.2-r1-2_amd64.deb
Checksums-Sha256: 
 8579435401084f60749bd85a7c36d94c81570d26f12057b020531af96cb60e3a 1387 
python-apsw_3.8.2-r1-2.dsc
 fc3ca00e970b70e45a30d665fb0d5ae42aafe567434edb5811a5130661a80a34 5072 
python-apsw_3.8.2-r1-2.debian.tar.xz
 cc123c54ac3da3dd57f9e44a30044e7a6f3e31c0ff524ad51ca3310fbe2de2cb 180630 
python-apsw-doc_3.8.2-r1-2_all.deb
 f5f0d6c27a0deff62d06efc09bd1f4ba72f56c5bb72391e723c7cb8e985e4999 99248 
python-apsw_3.8.2-r1-2_amd64.deb
 6c695be01298ccfe0a29502d9675a15e3fafaa01b4ad9a10827e1f8b6c20e373 303926 
python-apsw-dbg_3.8.2-r1-2_amd64.deb
 2e4483b4d9e547f7c7f617c482649fddf37902310fa9a5e03af3b361a315589c 98776 
python3-apsw_3.8.2-r1-2_amd64.deb
 c09fc6f1e69179a62824937dd3923f29c1a89766bb43efdf3c45601d5f6983d6 304494 
python3-apsw-dbg_3.8.2-r1-2_amd64.deb
Files: 
 5b1662b4d32ebc6a060bddf7c9fc4b9b 1387 python optional 
python-apsw_3.8.2-r1-2.dsc
 fde9900e981e214528af36f077019991 5072 python optional 
python-apsw_3.8.2-r1-2.debian.tar.xz
 eee2d087ed2ff07bbbf02deb3077b7ab 180630 doc optional 
python-apsw-doc_3.8.2-r1-2_all.deb
 ba38606434473ad543a0762f01c00186 99248 python optional 
python-apsw_3.8.2-r1-2_amd64.deb
 2c435f67c2d37d4e6b86ac85f9e18267 303926 debug extra 
python-apsw-dbg_3.8.2-r1-2_amd64.deb
 56b3aaedc96919ce7e88d85b6faf26a9 98776 python optional 
python3-apsw_3.8.2-r1-2_amd64.deb
 22063d7d052ff23458cf158b34365480 304494 debug extra 
python3-apsw-dbg_3.8.2-r1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1MQAACgkQAGT5/7uEXpfRwQCgo8iUNrhGxCP9rNi4fH9RpRCK
easAoIMf/P3Gvlxij7tXrUqKQ4FK6na4
=GtX6
-END PGP SIGNATURE-


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



Accepted vtk6 6.0.0-4 (source amd64 all)

2014-02-07 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 21:08:39 +0100
Source: vtk6
Binary: libvtk6 libvtk6-dev libvtk6-java python-vtk6 tcl-vtk6 vtk6 vtk6-doc 
vtk6-examples
Architecture: source amd64 all
Version: 6.0.0-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description: 
 libvtk6- Visualization Toolkit - A high level 3D visualization library - r
 libvtk6-dev - VTK header files for building C++ code
 libvtk6-java - Visualization Toolkit - A high level 3D visualization library - 
j
 python-vtk6 - Python bindings for VTK
 tcl-vtk6   - Tcl bindings for VTK
 vtk6   - Binaries for VTK6
 vtk6-doc   - VTK class reference documentation
 vtk6-examples - C++, Tcl and Python example programs/scripts for VTK
Closes: 737288
Changes: 
 vtk6 (6.0.0-4) unstable; urgency=medium
 .
   * [dac7bea] Declare python-vtk6 as conflicted with
   python-vtk. (Closes: #737288)
Checksums-Sha1: 
 5a834eb78e03ba199841028f14455e07d8b7b775 3135 vtk6_6.0.0-4.dsc
 2a33d591b6e72234121923218ff7397ddbb3f785 19688 vtk6_6.0.0-4.debian.tar.xz
 3efac9f3d83620d4fde8bc6fb6664442df658b2c 21942128 libvtk6_6.0.0-4_amd64.deb
 fbb16c401cf1266ea4136eb3b89dff9dacd4be91 15718946 libvtk6-dev_6.0.0-4_amd64.deb
 98af317c201da54bb83bd5b6e1a33b9992911c89 3170690 libvtk6-java_6.0.0-4_amd64.deb
 b87451941576f7faee5693fc6117390fe364e792 188018 python-vtk6_6.0.0-4_amd64.deb
 240605b061f6429382866f60b65e0538bdcab195 118414 tcl-vtk6_6.0.0-4_amd64.deb
 0d24d518bc81008ea7f082177a9041fe6ac98b74 160732 vtk6_6.0.0-4_amd64.deb
 b767b40aad098965be2269c53903bd70102ac1df 65204 vtk6-doc_6.0.0-4_all.deb
 b9f14d9946940c7f96257ee4cf950dd6b02423d4 577756 vtk6-examples_6.0.0-4_all.deb
Checksums-Sha256: 
 ebd59c4248fe0d1674664124d93f8ab3b736b7417ba0febe1a00a8bf39dd0255 3135 
vtk6_6.0.0-4.dsc
 1a7164953a52067ca6d9f34e6320cdd44cb1bf7ce211802496e7d5d8549282c3 19688 
vtk6_6.0.0-4.debian.tar.xz
 1a284b449002cad7c47377661f0a18a6d893bb0ee18e73922d6c8623f292dd04 21942128 
libvtk6_6.0.0-4_amd64.deb
 09b5d842b746921e281d29e8812ab4ed7055edcafaf016ed0b664487386bf653 15718946 
libvtk6-dev_6.0.0-4_amd64.deb
 b4ab78483f9677a7852e101556c8a87cda8598d4ad8b075a72aa7c72c50d901f 3170690 
libvtk6-java_6.0.0-4_amd64.deb
 bc922955691ed1ac0504042ecf959bed057289d0ddd36997bc43858784a8deaf 188018 
python-vtk6_6.0.0-4_amd64.deb
 2aeede800b8dca3b1c545982c516c7386bffb5ad6dc04e0a478c9a8dd1bbd063 118414 
tcl-vtk6_6.0.0-4_amd64.deb
 a846a71054ce7c847ad4738f54b9e6643f1ad82b1224184cf4dac18617ef49fe 160732 
vtk6_6.0.0-4_amd64.deb
 129cfefb8c65dc2f7a289ef395a8bdfba0daeaf2e82154bf283aa4ac7c46ddaa 65204 
vtk6-doc_6.0.0-4_all.deb
 40c781c38907d46f816428bea9410f9e13b73fe05fa1ee817f4b97fb2f2e9d0d 577756 
vtk6-examples_6.0.0-4_all.deb
Files: 
 3b60c006c382a378285c02e1f49deba9 3135 graphics optional vtk6_6.0.0-4.dsc
 c951872abe5e2b772971776a1fd235c6 19688 graphics optional 
vtk6_6.0.0-4.debian.tar.xz
 9dcc4dc53feb54de427d26e0ff290ec2 21942128 libs optional 
libvtk6_6.0.0-4_amd64.deb
 bdf99dccb732238d4546a8855cfa3fdf 15718946 libdevel optional 
libvtk6-dev_6.0.0-4_amd64.deb
 fc10eed69e634161f43c8b170b762b01 3170690 java optional 
libvtk6-java_6.0.0-4_amd64.deb
 7f5b032ebae167808b35b48c48403df6 188018 python optional 
python-vtk6_6.0.0-4_amd64.deb
 16154f2cf90fdf7f1c86617508cb4bfd 118414 interpreters optional 
tcl-vtk6_6.0.0-4_amd64.deb
 ac36b92117d02cfcd3549a891471f18e 160732 interpreters optional 
vtk6_6.0.0-4_amd64.deb
 09e2b9d3774ab71f224c3caa3ef02d58 65204 doc optional vtk6-doc_6.0.0-4_all.deb
 574a88a1ebea1ed7e853f6f9780de667 577756 graphics optional 
vtk6-examples_6.0.0-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJS9UvXAAoJENPhc4PPp/8Gz68P/j5nfUg2gYc2y3wqIelTEHLZ
skMTtvKWZOYhpM7NxDmA8+gYjFMLb8T7oryCicU+PsAeP5zxmAQV+Yvv7TyEzmZO
glBs4W51cJliWQunYgfMw31ha4rOorshUdOIjXy8l/UwkxJPE26cv+aglouu055g
a9joSr4DQ43J1Y1446xP4lpqM9A15KXIf2P+HFeFle/gi8nKZYF0gKV6KVacFNVq
5CHYenGVx6gt+23Wo+OR4PZUnstJY71FHKeK6Czj52K0N4McsshahOePFQ+WKS4g
sautfJ3PR/nUw+Un/e2/sZJBZEMNQeat7bNhaqCtOSJoneEQLREzMP1ZAsXAk0uf
STVX7FbOw2zdvJy45NmZ5RctIBYHkw2VgaAVZqBb2oPr3SQpOvjwp2BPljobmN1s
vafp9FJtt4C/HMjqbBVjg8Dm1MsMczBx679GBcw6Vp1/MpyV92a3FDFwofZ8BX0p
T2aBe71MNuNgNeaFXgnlBCa1bTM0hMtiQ2JZ0Q3u3eGDsX/jTaCICCfwrX5q9dH0
BEN14vTTiCfNGsjvLi19zQ8s6wGWA8/wyrTobOgX56jROIoRcdXaVnkLqsKu6p4R
08jzNRHOOs35/c3JWgZx16jmU7gldWT+SyRnImEs1QNCiECgGdwiUjqC6vAjwJIy
ugXH9zedQgks7t02QMIg
=ddh6
-END PGP SIGNATURE-


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



Accepted feynmf 1.08-9 (source all)

2014-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 19:00:57 +0100
Source: feynmf
Binary: feynmf
Architecture: source all
Version: 1.08-9
Distribution: unstable
Urgency: low
Maintainer: Thorsten Alteholz deb...@alteholz.de
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 feynmf - set of LaTeX macros for creating Feynman diagrams
Closes: 738079
Changes: 
 feynmf (1.08-9) unstable; urgency=low
 .
   * debian/control: add dependency for texlive-fonts-recommended
 Thanks to Andreas Moog for the patch (Closes: #738079)
   * debian/control: remove obsolete DM-Upload-Allowed:
   * debian/control: standard changed to 3.9.5 (no changes)
   * debian/control: use dh 9
Checksums-Sha1: 
 b84daf67f1c639587c9e15067278cd0d464cba84 1183 feynmf_1.08-9.dsc
 41a2db17f083f640f8dd593375f4e4f7f02d3922 285003 feynmf_1.08.orig.tar.gz
 9c570812f2e977489bce8977d5f8010e548cf2cf 7220 feynmf_1.08-9.debian.tar.xz
 540582be5f5cf6e19c20cb3dce84c41e9bad9bd7 406258 feynmf_1.08-9_all.deb
Checksums-Sha256: 
 2acf5ce96cc887f212745b9e659da9e51cbf9409609f05a0a8484087933d8916 1183 
feynmf_1.08-9.dsc
 b7a9060223a73e9db15ca3cac563cd694b6960f6e11f0cb89bf079c3a0a46d0a 285003 
feynmf_1.08.orig.tar.gz
 99fb6ec443dc947ab920441eed055ed186cdd525f8b03778990900e833014758 7220 
feynmf_1.08-9.debian.tar.xz
 977b235cf11b3d4023acf79ce97f46a138ac5b5b51d20c21179a60e6e7d40cd1 406258 
feynmf_1.08-9_all.deb
Files: 
 013240766a9c5eae5afd93b57fdc2f74 1183 tex optional feynmf_1.08-9.dsc
 54eb22a196219c943cf35490638628b8 285003 tex optional feynmf_1.08.orig.tar.gz
 620b090c25e9516214188e3ba7ec448d 7220 tex optional feynmf_1.08-9.debian.tar.xz
 f538cdab5c08416af0b888fc905ad8f8 406258 tex optional feynmf_1.08-9_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1ULgACgkQ02K2KlS5mJDaNwCffLysgT+FOa5YCaOuW3dLqy4S
HqgAoIVmbU5yOXUCPdeQcntWYbVWYE6i
=kBH7
-END PGP SIGNATURE-


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



Accepted linux-tools 3.13-1~exp3 (i386 source)

2014-02-07 Thread Ben Hutchings
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 07 Feb 2014 20:36:29 +
Source: linux-tools
Binary: linux-kbuild-3.13 linux-tools-3.13 libusbip-dev usbip
Architecture: i386 source
Version: 3.13-1~exp3
Distribution: experimental
Urgency: medium
Maintainer: Debian Kernel Team debian-ker...@lists.debian.org
Changed-By: Ben Hutchings b...@decadent.org.uk
Description: 
 libusbip-dev - USB device sharing system over IP network (development files)
 linux-kbuild-3.13 - Kbuild infrastructure for Linux 3.13
 linux-tools-3.13 - Performance analysis tools for Linux 3.13
 usbip  - USB device sharing system over IP network
Changes: 
 linux-tools (3.13-1~exp3) experimental; urgency=medium
 .
   * linux-tools: Fix/revert unportable code in perf trace (fixes FTBFS
 on powerpc, sparc)
Checksums-Sha1: 
 1afa1e316e5eba049934c55cfa1f0fe7e3a2b41d 24262 
libusbip-dev_1.1.1+3.13-1~exp3_i386.deb
 690c0ba8d16e040202565fa0edbc65ab95df8eba 154970 
linux-kbuild-3.13_3.13-1~exp3_i386.deb
 140903fd3bf9a36a577ae5f714da8a94ba46ad13 37238 usbip_1.1.1+3.13-1~exp3_i386.deb
 7a09d81fa1b6fe4047f2f336b783a067f710bb78 544342 
linux-tools-3.13_3.13-1~exp3_i386.deb
 b5c51911510e3ef0868bda3a5751a90274c87872 2428 linux-tools_3.13-1~exp3.dsc
 2a2aa2140ae3acb9e39c2b5b0bbfda43abf96b2a 23072 
linux-tools_3.13-1~exp3.debian.tar.xz
Checksums-Sha256: 
 d1d61c2f91765b0e333ce20c99909cbc5a4276b0a454dd537b8dd8bea24c1d17 24262 
libusbip-dev_1.1.1+3.13-1~exp3_i386.deb
 bb9f7e43ddb49531fb10f437ab4a5299f9ce8ce2939e70a5aca020eb8cb84eb3 154970 
linux-kbuild-3.13_3.13-1~exp3_i386.deb
 693db9d97f546382198253206b8a354d8c771584482b688668266454217fa9e9 37238 
usbip_1.1.1+3.13-1~exp3_i386.deb
 cedb109cd697b45bbe456ee988d16c0e4ffed44ea4009a4c1727567ef1baf2ab 544342 
linux-tools-3.13_3.13-1~exp3_i386.deb
 c4a368bf5b4672200929ec3b52bf6de21fd8edfb8425d3df033f500d96ba9199 2428 
linux-tools_3.13-1~exp3.dsc
 64d679e7f6a3f31b5806cf4fa8505985619a73f5bc0ac2600cc77fbce8140a29 23072 
linux-tools_3.13-1~exp3.debian.tar.xz
Files: 
 1719658ca66f234e2fe258366d7ce9b9 24262 libdevel optional 
libusbip-dev_1.1.1+3.13-1~exp3_i386.deb
 420db4c8d833798adf566b8c3d02fce0 154970 kernel optional 
linux-kbuild-3.13_3.13-1~exp3_i386.deb
 c78732ec5808c892488b470ac3f03011 37238 admin optional 
usbip_1.1.1+3.13-1~exp3_i386.deb
 2006186c84b4b2f2958d959a525ef04e 544342 devel optional 
linux-tools-3.13_3.13-1~exp3_i386.deb
 e72f795d6413592b33c7a7f1e261b36a 2428 kernel optional 
linux-tools_3.13-1~exp3.dsc
 19663c670ef2c918b88df291c6531463 23072 kernel optional 
linux-tools_3.13-1~exp3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBUvVQdue/yOyVhhEJAQqXpRAApTZwdpBYrJDfjDcfeDI9WXw5UJ+1dV92
LSovVXDly1+GxvnacXAcdEOUF3tgIe5luQb68RoPKW6oP/Da6vPzy8lPY1T2ETKd
wQLJWwA1azcmZPCru5JLevQbMQS8zMjWO+2Vp49lfjiqQAey1Pimup1hF+donY16
5rX6zWdxCEwJLIzMLSDG93psTpY18JDMQQcbOAOk7TmUAtXc/m1lrQU7iksIo56Q
2E04G84olS6xjas6Nyjurea31hnqmw1e5ZcSovOxDxqDXg4w+seiTYnjyfu407uk
m0cBhXwkFGau37ssUoyNRpkPWFqzihqia3nh1joE8XrDKd4sZa+QY9trHbx2yfLT
niqb7gOqekxqlmnbmyrjSjzWrKYq5EOmcF2ZKUUvOhdFt3brFNTq/Bl3I1S7ogZC
uEGLN1jYLl9t2bJR+s30k9KFxkVxMDPo0mNl09FiuKv3VvgLX6QMl4HXoXOcfHno
6QZKEzrLQDgQs3vPMS19UiAdaH3mBB+bLoY15NVzxSodPhQ4nw3gDqnLwrBx6Ovm
W2xjFhxwzDobAJstKqYyDXsF7s6gZ+WeLQ6yUNqETvSiq+MdByj4993Ft1BYwM2S
71q9ORzjR98MppAJC8g6P9Y0H7AsSndigPPrk/7s6lNiLRiHHxEUB51j+iB8HxQD
ygJ8ZFNvNQQ=
=xxBa
-END PGP SIGNATURE-


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



Accepted cura-engine 14.01-2 (source i386)

2014-02-07 Thread Bas Wijnen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 07 Feb 2014 16:59:54 -0500
Source: cura-engine
Binary: cura-engine
Architecture: source i386
Version: 14.01-2
Distribution: unstable
Urgency: medium
Maintainer: 3-D printer team 3dprinter-gene...@lists.alioth.debian.org
Changed-By: Bas Wijnen wij...@debian.org
Description: 
 cura-engine - commandline slicer program for 3-D printers
Closes: 737942
Changes: 
 cura-engine (14.01-2) unstable; urgency=medium
 .
   * Add pkg-config build dependency. (Closes: #737942)
   * Add python build dependency to allow running tests.
Checksums-Sha1: 
 d4460042db2a7048151e632b35b56043eaaddd18 1213 cura-engine_14.01-2.dsc
 8e920fa04969df21e9727eddc5a7f105697a3c6b 15464 
cura-engine_14.01-2.debian.tar.xz
 f05a9fe59dd7f47202b359597de0b00f2236336d 104682 cura-engine_14.01-2_i386.deb
Checksums-Sha256: 
 cc1d85f17787178a841e912dc650cf0c23d0df5926a549567b71131a3e88c4d8 1213 
cura-engine_14.01-2.dsc
 c7c3e4d9e313051720fdbcf9ed16950f8f14163eaad9040218730ca202510c7b 15464 
cura-engine_14.01-2.debian.tar.xz
 5ee8cf4199e126b03319c640a3fa17d0c6d19d1b81ada55ad03b05207458a98a 104682 
cura-engine_14.01-2_i386.deb
Files: 
 7143fd9b9e72a82453f9e38202156a38 1213 utils optional cura-engine_14.01-2.dsc
 1c06a58b686617e0eef6522bb9e2b47d 15464 utils optional 
cura-engine_14.01-2.debian.tar.xz
 6e0209415c089875bd8c13af09f00435 104682 utils optional 
cura-engine_14.01-2_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlL1WDgACgkQFShl+2J8z5UKwwCeMGJo1MduldB/qAt1rXXQeOHq
lJIAnRRIlJ8ydhHVUo968VnWMJGRMFbU
=zzz4
-END PGP SIGNATURE-


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



Accepted sysvinit 2.88dsf-49 (source amd64 all)

2014-02-07 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 08 Feb 2014 00:49:41 +0100
Source: sysvinit
Binary: sysvinit sysvinit-core sysvinit-utils sysv-rc initscripts bootlogd
Architecture: source amd64 all
Version: 2.88dsf-49
Distribution: unstable
Urgency: low
Maintainer: Debian sysvinit maintainers 
pkg-sysvinit-de...@lists.alioth.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description: 
 bootlogd   - daemon to log boot messages
 initscripts - scripts for initializing and shutting down the system
 sysv-rc- System-V-like runlevel change mechanism
 sysvinit   - System-V-like init utilities
 sysvinit-core - System-V-like init utilities
 sysvinit-utils - System-V-like utilities
Closes: 576443 619582 699529
Changes: 
 sysvinit (2.88dsf-49) unstable; urgency=low
 .
   * Document the meaning of +, - and ? for service --status-all in
 service(8) (Closes: #699529).
   * Make the service command better at finding scripts with status
 support (Closes: #619582).  Patch from Hamish Downer.
   * New patch 95_kfreebsd_bootlogd.patch improving bootlogd behaviour
 on kFreeBSD (Closes: #576443).  Patch from Mats Erik Andersson.
   * Update debian/watch file to use the new upstream location linked to
 from http://savannah.nongnu.org/projects/sysvinit .
   * Update meta information about patches applied upstream.
   * Adjust the sysvinit/hurd-fix-inittab debconf template text to
 avoid asking a question in the extended description.  Thanks
 Lintian.
Checksums-Sha1: 
 651c5f1753e019f13a4ec5c47109436b2c55dc6c 1777 sysvinit_2.88dsf-49.dsc
 e20ccf1f9d3c8491b0885cfe30098d0840cbd3f7 170048 
sysvinit_2.88dsf-49.debian.tar.xz
 b45fecd84f4e0b4d3aa7fee0d0b0387b187f6635 81468 sysvinit_2.88dsf-49_amd64.deb
 ccbb81e929d104ef6eb9bb49f7c5ecc0e2a06de7 128784 
sysvinit-core_2.88dsf-49_amd64.deb
 b5895e2d180fc5d69700730cc8abe2e077d3 93894 
sysvinit-utils_2.88dsf-49_amd64.deb
 f26c79f3045ecf28954283d3ca518c3bc8487525 80210 sysv-rc_2.88dsf-49_all.deb
 66bcf8b12c60f654beab8b6d71468d7e8fd5d48b 85262 initscripts_2.88dsf-49_amd64.deb
 58055324f086f00a425255b5b18ba84dee221391 56652 bootlogd_2.88dsf-49_amd64.deb
Checksums-Sha256: 
 9f32fe2c6e86b92853d59e97d3fc3d41e3bae2961a9907111d9a73fc5ec2a3fd 1777 
sysvinit_2.88dsf-49.dsc
 07911b236cf19ecfcd4650160c3f78167633d887222b6fad2ad9dce95474ec26 170048 
sysvinit_2.88dsf-49.debian.tar.xz
 c2d4018fec50b865f52c65bcf96053cd59dfd70bf86a360556507df3690090fe 81468 
sysvinit_2.88dsf-49_amd64.deb
 40b6220acb1254cf49a0d079b42eae3c329a31fa881fcce690351a2d2189a276 128784 
sysvinit-core_2.88dsf-49_amd64.deb
 ec8b6bd7a4f807c1d46f673b7059e07705ef17ecfc8d97f8baf475b39c171a7d 93894 
sysvinit-utils_2.88dsf-49_amd64.deb
 e3aec73ecdacc3cedd5cc422bb8389cf5e504ee9e905d711eb0ecb130d737197 80210 
sysv-rc_2.88dsf-49_all.deb
 20615672865429f0eaaa9ef82b6af507d743af58d1acd5ec8e1cd7c3d6dde3b3 85262 
initscripts_2.88dsf-49_amd64.deb
 b8b000dea3f8b210723a929b440fad51869c9130ae04c522c04e4269d4041bb9 56652 
bootlogd_2.88dsf-49_amd64.deb
Files: 
 3e6811867f4b66aab9aaeefdadfa1162 1777 admin required sysvinit_2.88dsf-49.dsc
 980d72154d845b291af0cca6f82d12f1 170048 admin required 
sysvinit_2.88dsf-49.debian.tar.xz
 87dbc8c48931a9d0a6906527a1736ce8 81468 admin required 
sysvinit_2.88dsf-49_amd64.deb
 4a444b9bd47ddb2117f950d770419347 128784 admin required 
sysvinit-core_2.88dsf-49_amd64.deb
 0ba61da6d6b4b5ec63bd46579f5022fe 93894 admin required 
sysvinit-utils_2.88dsf-49_amd64.deb
 e8762c29d5dc9ad2c62c0d46a0118116 80210 admin required 
sysv-rc_2.88dsf-49_all.deb
 97eb2943bf22d8ec7538c6ef99346ee6 85262 admin required 
initscripts_2.88dsf-49_amd64.deb
 59acf284c44a983d7c564555410f3431 56652 admin optional 
bootlogd_2.88dsf-49_amd64.deb

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

iD8DBQFS9XIL20zMSyow1ykRApolAKCqJ4rNEShMFcOt3Qm/F2w4aKMOvwCgndUo
AjwmXbIa9ADJ+f0zw8prCMw=
=kiho
-END PGP SIGNATURE-


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



  1   2   >