Re: Replacing unrar-free with unar wrapper

2013-09-25 Thread Dominik George
Howdy,

here is a short update on the progress of the compatibility script.

I have put together a shell script that accepts all command-lines that
unrar-free or unrar-nonfree would accept and correctly parses them into
internal variables. Doing so, I found that:

 - Both unrar-free and unrar-nonfree have a ridiculously ambigious
   command-line syntax. There is no way of telling whether the last
   argument is a file to extract from the archive or a path to the
   output directory. For now, I decided to assume that the last argument
   is the output directory, but I am considering applying some
   heuristics that check archive contents and direcotries on disk to
   determine what would make the most sense.
 - The unrar manpage is incomplete - there are more options than are
   listed in there.

The script does some extra work to satisfy programs that call it. I use
nzbget to test the API in a real-life scenario, and it makes me
scratch my head every few minutes. Mind you, the way nzbget uses unrar
is not unrar's fault, although by now I'd really go with assassinating
both nzbget's and unrar-nonfree's upstream if I had the choice. One
thing is that unrar-nonfree _does_ provide a sensible exit status (0 on
success, 0 on failure) and nzbget _does_ check that, but additionally
it checks for a line containing All OK on unrar's stdout. Why the…‽ I
made my wrapper script output All OK if calles with the unrar-nonfree
syntax, if the exit code of unar is 0. It works good.

I am trying to add some more compatibility by transforming unar's output
ins something that resembles unrar's output because I herad of packages
out there that parse unrar's output for other reasons than determining a
successful run. unrar's output appears to be an artifact from the MS-DOS
era when human-readable tables and BIG CAPITAL LETTERS were cool. Thus,
unrar l, which should list the archive contents, lists a hell of a lot
of information nobody needs. There is unrar lb (list bare), which only
prints the file names in much the same way lsar does. Sadly, both
commands fail to list all files in the archive. I use an archive that,
as a matter of fact, contains 5 files, listed by lsar and even unpacked
entirely by unrar x, but unrar l simply does not list more than one
file.

The RAR format's quality is arguable, but the software surrounding it is
a mess. I am doing my best to provide good compatibility from my wrapper
script - at least, it cannot get worse than unrar-free ;).

I think I will send a first patch against unar's Vcs-Git in the course
of today. Besides, I would really like to hear the unar maintainer's
thoughts ☺.

Cheers,
Nik

-- 
# apt-assassinate --help
Usage: apt-assassinate [upstream|maintainer] package

PGP-Fingerprint: 3C9D 54A4 7575 C026 FB17  FD26 B79A 3C16 A0C4 F296


signature.asc
Description: Digital signature


Re: Replacing unrar-free with unar wrapper

2013-09-25 Thread Alberto Garcia
On Mon, Sep 23, 2013 at 04:30:59PM +0200, Dominik George wrote:

 I found that the unar command from theunarchiver, which is even
 recommended by the FSF [3], can handle multipart, modern RAR
 archives just fine, only the command-line is incompatible to
 unrar-free and unrar-nonfree [4].

Not directly related to this, I noticed that unar depends on
gnustep-base-runtime, which in turn spawns the gdomap daemon. Is this
thing needed at all?

Berto


-- 
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/20130925075635.ga8...@igalia.com



Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Sergei Golovan
Hi fellow developers,

I would like to introduce a few significant changes into Debian Tcl/Tk
packages. Some of them have quite significant impact on their reverse
dependencies which will need a transition, I think. The proposed
changes are already in the experimental branch, so anyone could try
and break things.

The changes are (I use Tcl/Tk 8.5 as an example, but the same changes
are applied to 8.4 and 8.6 as well):

1. Multiarchifying Tcl/Tk. This means splitting out the libtcl8.5
package with libraries moved to /usr/lib/triplet and with common Tcl
code in /usr/share/tcltk/tcl8.5. The same is for Tk (libtk8.5 is the
new package name). This change doesn't cause any impact on the reverse
dependent packages.

2. Renaming tcl8.5-dev and tk8.5-dev into libtcl8.5-dev and
libtk8.5-dev respectively (the latter packages still provide the
former as virtual packages to break as few packages as it could be).
This change is not strictly necessary, but the new names follow the
common convention for development libraries. Only 4 packages break
because of this change. They either have versioned depends or
build-depends on tcl8.*-dev or tk8.*-dev.  (cableswig, netgen, tix,
tkdesk).

3. Renaming tcl-dev and tk-dev into libtcl-dev and libtk-dev. Since
too many packages have versioned build-dependencies on tcl-dev or
tk-dev, I chose to retain tcl-dev and tk-dev packages (as
meta-packages which depend on libtcl-dev and libtk-dev). Switching to
libtcl-dev and libtk-dev can be gradual. Would adding a lintian
warning discouraging to use the old names possible?

And the last but the most significant change:

4. Dropping /usr/bin/tclsh and /usr/bin/wish alternatives. Currently,
any tcl8.* package offers /usr/bin/tclsh and any tk8.* package gives
/usr/bin/wish via alternatives mechanism. I want to drop it and
provide /usr/bin/tclsh and /usr/bin/wish as symlinks in tcl and tk
packages respectively (similar to python packages). This change is
very invasive. It makes about 40 packages FTBFS, and I don't know how
many packages will break silently. The problem is that currently
packages which depend on tcl8.5 (or tcl8.4, or tcl8.6) assumes that
/usr/bin/tclsh exists (and the same is for tk8.5 and /usr/bin/wish).
Though for many of them (those which depend on tcl8.5 or tk8.5) the
fix will be trivial - to change dependency to tcl or tk, which provide
/usr/bin/tclsh and /usr/bin/wish symlinks.

These changes will require revision for the Debian Tcl/Tk policy. The
new draft isn't published yet. It's still preparing in SVN:
svn+ssh://svn.debian.org/svn/pkg-tcltk/policy/trunk (Is there
anonymous access to it?)

So, I'd like to start reporting bugs on found FTBFS and
#!/usr/bin/tclsh or #!/usr/bin/wish shebangs without tcl or tk
dependencies. Then I'll upload the changed Tcl/Tk packages to
unstable.

Also, current stable upstream Tcl/Tk version is 8.6.1, but I wouldn't
like to switch to it now because it'll complicate the process of
removing alternatives a lot. But later I'd like to have another
transition (switching to 8.6 as default Tcl/Tk version).

Any questions, comments. Anything I've missed?

Cheers!
-- 
Sergei Golovan


-- 
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/caoq2pxggdhzwm0z8dgd3zqoaepjdtofbk9l29b13vrdu_f0...@mail.gmail.com



Re: Replacing unrar-free with unar wrapper

2013-09-25 Thread Dominik George
Hi,

 Not directly related to this, I noticed that unar depends on
 gnustep-base-runtime, which in turn spawns the gdomap daemon. Is this
 thing needed at all?

I also noticed that. It comes from ${shlibs:Depends} in the package, so
I figure it is indeed needed (the runtime, not the gdomap daemon).

I have added a patch to bug #717773 to have the daemon disabled by
default [1].

-nik

[1]: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=717773

-- 
burny Ein Jabber-Account, sie alle zu finden; ins Dunkel zu treiben
und ewig zu binden; im NaturalNet, wo die Schatten droh'n ;)!

PGP-Fingerprint: 3C9D 54A4 7575 C026 FB17  FD26 B79A 3C16 A0C4 F296


signature.asc
Description: Digital signature


Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Cyril Brulebois
Hi Sergei,

(replying to the first part only since it strikes me)

Sergei Golovan sgolo...@nes.ru (2013-09-25):
 2. Renaming tcl8.5-dev and tk8.5-dev into libtcl8.5-dev and
 libtk8.5-dev respectively (the latter packages still provide the
 former as virtual packages to break as few packages as it could be).
 This change is not strictly necessary, but the new names follow the
 common convention for development libraries.

please don't. Renaming without having a reason is a bad idea, that means
creating a lot of work for no benefit. (Besides having to adjust a few
packages in unstable, which you mentioned already, imagine someone
backporting her packages to previous releases, she gets to carry a diff
because of “cosmetics”, which isn't nice.)

 3. Renaming tcl-dev and tk-dev into libtcl-dev and libtk-dev. Since
 too many packages have versioned build-dependencies on tcl-dev or
 tk-dev, I chose to retain tcl-dev and tk-dev packages (as
 meta-packages which depend on libtcl-dev and libtk-dev). Switching to
 libtcl-dev and libtk-dev can be gradual. Would adding a lintian
 warning discouraging to use the old names possible?

Same as above: creating work for no actual benefit.

If that was triggered by some lintian warnings, just override them and
be done with it. Lintian isn't here to generate work.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Matthias Klose
Am 25.09.2013 10:25, schrieb Sergei Golovan:
 Hi fellow developers,
 
 I would like to introduce a few significant changes into Debian Tcl/Tk
 packages. Some of them have quite significant impact on their reverse
 dependencies which will need a transition, I think. The proposed
 changes are already in the experimental branch, so anyone could try
 and break things.
 
 The changes are (I use Tcl/Tk 8.5 as an example, but the same changes
 are applied to 8.4 and 8.6 as well):

would it be possible to drop 8.4 first?

 1. Multiarchifying Tcl/Tk. This means splitting out the libtcl8.5
 package with libraries moved to /usr/lib/triplet and with common Tcl
 code in /usr/share/tcltk/tcl8.5. The same is for Tk (libtk8.5 is the
 new package name). This change doesn't cause any impact on the reverse
 dependent packages.

Is this just the shared library, or -dev and -dbg packages as well?  Will it be
possible to cross-build Tcl/Tk extensions?

 Also, current stable upstream Tcl/Tk version is 8.6.1, but I wouldn't
 like to switch to it now because it'll complicate the process of
 removing alternatives a lot. But later I'd like to have another
 transition (switching to 8.6 as default Tcl/Tk version).

Do you have numbers what will break with 8.6?

  Matthias


-- 
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/5242af5b.4080...@debian.org



Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Niels Thykier
On 2013-09-25 11:38, Cyril Brulebois wrote:
  3. Renaming tcl-dev and tk-dev into libtcl-dev and libtk-dev. Since
  too many packages have versioned build-dependencies on tcl-dev or
  tk-dev, I chose to retain tcl-dev and tk-dev packages (as
  meta-packages which depend on libtcl-dev and libtk-dev). Switching to
  libtcl-dev and libtk-dev can be gradual. Would adding a lintian
  warning discouraging to use the old names possible?
 Same as above: creating work for no actual benefit.
 
 If that was triggered by some lintian warnings, just override them and
 be done with it. Lintian isn't here to generate work.
 
 Mraw,
 KiBi.

Actually, I think Sergi wanted to add a Lintian warning for using the
old names (IANSergi, so it is just a guess).  At least I am pretty sure
Lintian does not have a tag for renaming -dev packages (the only thing I
can think of is the pkg name does not match SONAME-tag, but it doesn't
seem to apply here).
  FTR, that is pretty trivial to mark packages obsolete in Lintian.
It simply requires adding the package names to the Lintian data file
called data/fields/obsolete-packages.  (Though, that is not a remark
about whether the renaming should be done in this case)

~Niels



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



Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread YunQiang Su
On Wed, Sep 25, 2013 at 5:39 PM, Matthias Klose d...@debian.org wrote:
 Am 25.09.2013 10:25, schrieb Sergei Golovan:
 Hi fellow developers,

 I would like to introduce a few significant changes into Debian Tcl/Tk
 packages. Some of them have quite significant impact on their reverse
 dependencies which will need a transition, I think. The proposed
 changes are already in the experimental branch, so anyone could try
 and break things.

 The changes are (I use Tcl/Tk 8.5 as an example, but the same changes
 are applied to 8.4 and 8.6 as well):
Will there is a /usr/bin/tclsh8.6 like python?

 would it be possible to drop 8.4 first?

 1. Multiarchifying Tcl/Tk. This means splitting out the libtcl8.5
 package with libraries moved to /usr/lib/triplet and with common Tcl
 code in /usr/share/tcltk/tcl8.5. The same is for Tk (libtk8.5 is the
 new package name). This change doesn't cause any impact on the reverse
 dependent packages.

 Is this just the shared library, or -dev and -dbg packages as well?  Will it 
 be
 possible to cross-build Tcl/Tk extensions?

 Also, current stable upstream Tcl/Tk version is 8.6.1, but I wouldn't
 like to switch to it now because it'll complicate the process of
 removing alternatives a lot. But later I'd like to have another
 transition (switching to 8.6 as default Tcl/Tk version).

 Do you have numbers what will break with 8.6?

   Matthias


 --
 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/5242af5b.4080...@debian.org




-- 
YunQiang Su


-- 
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/CAKcpw6X=+0Af6Bei1GrfSsGatzvHYUeJs6YzMYtm=afs4vv...@mail.gmail.com



Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Andrew Shadura
Hello,

On Sep 25, 2013 11:40 AM, Matthias Klose d...@debian.org wrote:
 Am 25.09.2013 10:25, schrieb Sergei Golovan:
  removing alternatives a lot. But later I'd like to have another
  transition (switching to 8.6 as default Tcl/Tk version).

 Do you have numbers what will break with 8.6?

Not many things. I'm aware of one package, but that's a bug in it, I just
can't find enough time to patch it. In general Tcl/Tk upstream is very
careful about changes, and it's very rare that compatibility breaks. Even
ABI is kept very stable so usually you can use binary extensions from old
Tcl versions with new ones.


Re: think twice before enabling -D_FORTIFY_SOURCE=2 for C projects without thorough build-time testing

2013-09-25 Thread Thorsten Glaser
Russ Allbery rra at debian.org writes:

 (consider resource exhaustion errors in the crypt implementation, for

No, the standard said it would either always fail or never, but independent
on the input data.

 Your proposed solution on libc-alpha was ingenious, but I think it breaks
 the crypt contract in even more serious ways, since it means that crypt
 could now return a string matching the disabled password field in

No, it cannot, because you pass the “password field” as seed, hence
the comparison: if the password field is disabled by ‘*’ you get ‘x’,
if it’s disabled by ‘x’ got get ‘*’. It always returns something not
matching.

And prevents serious security issues in legacy code (which, by the
way, often predates the standard and thus is allowed to not follow
it).

bye,
//mirabilos


-- 
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/loom.20130925t134128-...@post.gmane.org



Re: Bits from the Release

2013-09-25 Thread Niels Thykier
On 2013-09-03 13:49, Stefano Zacchiroli wrote:
 On Sun, Aug 25, 2013 at 05:09:22PM +0200, Niels Thykier wrote:
 How you can help (NEW-TEST-HELP) 
 
 
 Add tests to your packages.  The full specification for these
 tests are available from [AUTOPKG].  If you need inspiration,
 consider looking at some of the existing
 autopkgtests[FIND-AUTOPKG].
 
 We need to have the autopkgtest tests run.  Holger Levsen
 suggested that jenkins.debian.net has the necessary hardware to
 support these tests.
 
 Asheesh Laroia has kindly spent some time during DebConf13
 researching and experimenting with setting up such jobs.
 

Hi,

I realise we had a chat about this on IRC, but I never got around to
follw up to your mail, so here goes:

 So, in the context of work to periodically run various sorts of
 static analysis tests on Debian packages [1], we (myself, Sylvestre
 Ledru, Léo Cavaillé, and Matthieu Caneill) have considered using
 Jenkins.  Based on feedback from Matthias Klumpp and his experience
 in using Jenkins for Tanglu, we have concluded that it didn't
 really scale to the point that we needed (number of Debian packages
 * number of checkers). We ended up using Paul Tagliamonte's debile
 infrastructure [2].
 
 I don't doubt that jenkins.d.n can be leveraged for the time
 being, giving the low amount of autopkgtests currently available.
 But you might want to check with Matthias or similar experiences
 before committing to using Jenkins for this.
 

Assuming there is sufficient hardware behind debile (I was told this
wasn't a problem for jenkins.d.n), then I would (personally) welcome a
debile-based setup instead of a jenkins-based one for this.  Honestly,
I do not think the Release Team cares much about the underlying
platform, as long as the platform and the autopkgtest-runner have
active maintainers.
  To my knowledge, there has not been anyone volunteers in this area
yet since Asheesh spent his time at DebConf13 on a prototype[1].
Volunteering for this task is left as an exercise for the reader.

 
 Apart from this, hopefully useful feedback: kudos for these saucy
 bits from the Release Team :-) Keep up the good work!
 
 
 Cheers.
 
 [...]

You are welcome.  Hopefully we will have some new saucy bits fairly
soon.

~Niels

[1] At least not anyone on debian-release@l.d.o



-- 
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/5242d6e3.8010...@thykier.net



Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Sergei Golovan
Hi Cyril,

On Wed, Sep 25, 2013 at 1:38 PM, Cyril Brulebois k...@debian.org wrote:
 Hi Sergei,

 (replying to the first part only since it strikes me)

 Sergei Golovan sgolo...@nes.ru (2013-09-25):
 2. Renaming tcl8.5-dev and tk8.5-dev into libtcl8.5-dev and
 libtk8.5-dev respectively (the latter packages still provide the
 former as virtual packages to break as few packages as it could be).
 This change is not strictly necessary, but the new names follow the
 common convention for development libraries.

 please don't. Renaming without having a reason is a bad idea, that means
 creating a lot of work for no benefit. (Besides having to adjust a few
 packages in unstable, which you mentioned already, imagine someone
 backporting her packages to previous releases, she gets to carry a diff
 because of “cosmetics”, which isn't nice.)

You are right. The old names tcl8.5-dev and tk8.5-dev are not pretty given
they accompany libtcl8.5 and libtk8.5, but fully replacing them by libtcl8.5-dev
and libtk8.5-dev will take a lot of work. Okay, I'll return the old names for
the -dev packages.


 3. Renaming tcl-dev and tk-dev into libtcl-dev and libtk-dev. Since
 too many packages have versioned build-dependencies on tcl-dev or
 tk-dev, I chose to retain tcl-dev and tk-dev packages (as
 meta-packages which depend on libtcl-dev and libtk-dev). Switching to
 libtcl-dev and libtk-dev can be gradual. Would adding a lintian
 warning discouraging to use the old names possible?

 Same as above: creating work for no actual benefit.

Nice package name is a benefit to me, though it might not exceed the costs
of moving.


 If that was triggered by some lintian warnings, just override them and
 be done with it. Lintian isn't here to generate work.

I meant a lintian warning which softly encourages to switch to libtcl-dev from
tcl-dev.

-- 
Sergei Golovan


--
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/caoq2pxf-wpfndlb53rseubndw_j9xosj0rjcf8xvtt+tkjz...@mail.gmail.com



Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Sergei Golovan
Hi Matthias,

On Wed, Sep 25, 2013 at 1:39 PM, Matthias Klose d...@debian.org wrote:
 Am 25.09.2013 10:25, schrieb Sergei Golovan:
 Hi fellow developers,

 I would like to introduce a few significant changes into Debian Tcl/Tk
 packages. Some of them have quite significant impact on their reverse
 dependencies which will need a transition, I think. The proposed
 changes are already in the experimental branch, so anyone could try
 and break things.

 The changes are (I use Tcl/Tk 8.5 as an example, but the same changes
 are applied to 8.4 and 8.6 as well):

 would it be possible to drop 8.4 first?

There are about 30 packages left which unconditionally depend on
tcl8.4 or tk8.4.
We have to do some research and find how to port them to 8.5 or 8.6.


 1. Multiarchifying Tcl/Tk. This means splitting out the libtcl8.5
 package with libraries moved to /usr/lib/triplet and with common Tcl
 code in /usr/share/tcltk/tcl8.5. The same is for Tk (libtk8.5 is the
 new package name). This change doesn't cause any impact on the reverse
 dependent packages.

 Is this just the shared library, or -dev and -dbg packages as well?  Will it 
 be
 possible to cross-build Tcl/Tk extensions?

-dev packages contain static libraries which go to the multiarch directory too.
Includes are the same for all arches. As for -dbg, I never tried to build them.

Though I wasn't quite right when said that multiarchifying is not
intrusive. In fact,
a few packages (3 at least) FTBFS because they try to find libtcl8.5.so
in /usr/lib.


 Also, current stable upstream Tcl/Tk version is 8.6.1, but I wouldn't
 like to switch to it now because it'll complicate the process of
 removing alternatives a lot. But later I'd like to have another
 transition (switching to 8.6 as default Tcl/Tk version).

 Do you have numbers what will break with 8.6?

There are 17 packages which build when 8.5 is the default version but
fail to build
after switching to 8.6. Most of them are patchable, though I'm not
sure if they will
work properly after that.

-- 
Sergei Golovan


-- 
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/caoq2pxhjkrojuuaot1byntj2+85owihzrmp04xcdw_nati8...@mail.gmail.com



Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Andrew Shadura
Hello,

On 25 September 2013 14:52, Sergei Golovan sgolo...@nes.ru wrote:
 There are about 30 packages left which unconditionally depend on
 tcl8.4 or tk8.4.
 We have to do some research and find how to port them to 8.5 or 8.6.

When I have some free time, I occasionally port this or that package.
Actually, I've created this page:

https://wiki.debian.org/ReleaseGoals/UpgradeTcl

and propose it as a release goal.

-- 
WBR, Andrew


-- 
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/cacujmdnqgyb+qa7yny6a-t98t-vxfzoccuhkbpotojvqyd9...@mail.gmail.com



Re: Replacing unrar-free with unar wrapper

2013-09-25 Thread Jonathan Dowland
On Mon, Sep 23, 2013 at 04:30:59PM +0200, Dominik George wrote:
 My proposal is to remove unrar-free from Debian, for the reasons
 mentioned above, and add a patch to src:unar that include a wrapper
 script that provides a command-line wrapper compatible to both
 unrar-free and unrar-nonfree, so unar can become a drop-in replacement
 for both.

This all sounds like a great idea, but I would suggest that rather than
attempt to be command-line compatible with the existing tool, you
clearly define a set of command line arguments and their corresponding
semantics that you *do* support, ensuring that it is an accurate and
correct subset of the behaviour of the original tool, and implement
that. Ensure this covers the behaviour that is relied upon by the things
that you are aware of already (e.g. calibre). Otherwise 90% of your
effort will be on re-implementing esoteric or awkward features or
behaviours that are not practically required.


-- 
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/20130925133252.GA5412@debian



Re: Replacing unrar-free with unar wrapper

2013-09-25 Thread Dominik George
Hi,

 This all sounds like a great idea, but I would suggest that rather than
 attempt to be command-line compatible with the existing tool, you
 clearly define a set of command line arguments and their corresponding
 semantics that you *do* support, ensuring that it is an accurate and
 correct subset of the behaviour of the original tool, and implement
 that. Ensure this covers the behaviour that is relied upon by the things
 that you are aware of already (e.g. calibre). Otherwise 90% of your
 effort will be on re-implementing esoteric or awkward features or
 behaviours that are not practically required.

yep, that occured to me today when I found that both unrar-free and
unrar-nonfree are incompletely documented and have some antifeatures I
do not even no any justification for.

I think I will go with your proposal and hope the unrar-free and unar
maintainers like it as well.

Cheers,
Nik

-- 
burny Ein Jabber-Account, sie alle zu finden; ins Dunkel zu treiben
und ewig zu binden; im NaturalNet, wo die Schatten droh'n ;)!

PGP-Fingerprint: 3C9D 54A4 7575 C026 FB17  FD26 B79A 3C16 A0C4 F296


signature.asc
Description: Digital signature


Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Wookey
+++ Sergei Golovan [2013-09-25 12:25 +0400]:
 Hi fellow developers,
 
 I would like to introduce a few significant changes into Debian Tcl/Tk
 packages. 

Thank you for doing this work, and for this clear summary.

 1. Multiarchifying Tcl/Tk. This means splitting out the libtcl8.5
 package with libraries moved to /usr/lib/triplet and with common Tcl
 code in /usr/share/tcltk/tcl8.5.
 
 
 Any questions, comments. Anything I've missed?

Yes, the other multiarch-related change needed in tcl is making
tclConfig.sh and tkConfig.sh cross-friendly.

This is not strictly tied to the above changes, but because
tclConfig.sh is arch-specific, and revdeps are affected by the other
changes it makes sense to fix this now whilst we are making a mess.

The existing (ubuntu) patches add a compat script at 
/usr/lib/tcl8.6/tclConfig.sh which calls 
/usr/lib/${DEB_HOST_MULTIARCH}/tcl8.6/tclConfig.sh

which enables backwards compatibility and will usually work, so long
as whatever called it really did want the host-arch version. Fixing
rdeps to actually call the arch wanted during the build is better
because it will always work. Providing triplet-tclConfig.sh links
would be consistent with the way this has been made config-system
friendly and distro-agnostic in other packages. 

Migrating tcl to use pkgconfig instead would remove the need for this
to be arch-specific, which is an even better solution, but I don't
know how enthused upstream is about doing that.

So have you included this change too? Doing so does not require
revdeps changes so long as they only need the host arch version. We
could force them to actually choose the one they want by not including
the compatibility layer, but that seems like too big a hammer. There
are 246 packages that build-dep on {tcl|tk}(8.[456])*-dev

Some relevant bugs:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698674
https://bugs.launchpad.net/ubuntu/+source/tcl8.5/+bug/1164937
https://bugs.launchpad.net/ubuntu/+source/tcl8.5/+bug/1122120
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=631995
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=703421

Wookey
-- 
Principal hats:  Linaro, Emdebian, Wookware, Balloonboard, ARM
http://wookware.org/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20130925150444.gb32...@stoneboat.aleph1.co.uk



Re: Upcoming changes in Tcl/Tk packaging

2013-09-25 Thread Sergei Golovan
Hi Wookey,

On Wed, Sep 25, 2013 at 7:04 PM, Wookey woo...@wookware.org wrote:
 +++ Sergei Golovan [2013-09-25 12:25 +0400]:
 Hi fellow developers,

 I would like to introduce a few significant changes into Debian Tcl/Tk
 packages.

 Thank you for doing this work, and for this clear summary.

 1. Multiarchifying Tcl/Tk. This means splitting out the libtcl8.5
 package with libraries moved to /usr/lib/triplet and with common Tcl
 code in /usr/share/tcltk/tcl8.5.


 Any questions, comments. Anything I've missed?

 Yes, the other multiarch-related change needed in tcl is making
 tclConfig.sh and tkConfig.sh cross-friendly.

 This is not strictly tied to the above changes, but because
 tclConfig.sh is arch-specific, and revdeps are affected by the other
 changes it makes sense to fix this now whilst we are making a mess.

 The existing (ubuntu) patches add a compat script at
 /usr/lib/tcl8.6/tclConfig.sh which calls
 /usr/lib/${DEB_HOST_MULTIARCH}/tcl8.6/tclConfig.sh

Yes, I used changes from Ubuntu as a basis, so exactly this compat
script is included into (lib)tcl8.6-dev package.


 which enables backwards compatibility and will usually work, so long
 as whatever called it really did want the host-arch version. Fixing
 rdeps to actually call the arch wanted during the build is better
 because it will always work. Providing triplet-tclConfig.sh links
 would be consistent with the way this has been made config-system
 friendly and distro-agnostic in other packages.

What's triplet-tclConfig.sh links and how are they better then just
/usr/lib/triplet/tcl8.6/tclConfig.sh?


 Migrating tcl to use pkgconfig instead would remove the need for this
 to be arch-specific, which is an even better solution, but I don't
 know how enthused upstream is about doing that.

I'm not sure if it's an option. There're tons of existing extensions
which use tclConfig.sh, many of them are abandoned and will never
migrate to pkgconfig, but they are still useful.


 So have you included this change too? Doing so does not require
 revdeps changes so long as they only need the host arch version. We
 could force them to actually choose the one they want by not including
 the compatibility layer, but that seems like too big a hammer. There
 are 246 packages that build-dep on {tcl|tk}(8.[456])*-dev

I've included the compatibility script. You're right, requiring all
the packages to use /usr/lib/triplet/tcl8.6/tclConfig.sh is
impractical.

Cheers!
-- 
Sergei Golovan


-- 
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/CAOq2pXEKuw=yewtmjfqxchq9hpmpeobgtssbrs2km1g8sbm...@mail.gmail.com



iproute transitional package going away...

2013-09-25 Thread Andreas Henriksson
Hello!

I intend to drop the iproute transitional packages in Jessie+1.

This message is here to give all 68 packages depending/recommending/suggesting
the old iproute package time to simply update their dependencies to use
the new iproute2 package name.

The fix is simple: sed -ie 's/iproute/iproute2/' debian/control


I'm including this dd-list for your convenience:

Alexander Wirt formo...@debian.org
   keepalived

Alkis Georgopoulos alk...@gmail.com
   epoptes (U)

Andreas B. Mundt andi.mu...@web.de
   debian-edu (U)

Andreas Tille ti...@debian.org
   debian-edu (U)

Andrew Lee (李健秋) ajq...@debian.org
   debian-edu (U)

Andrew Pollock apoll...@debian.org
   isc-dhcp (U)
   snort (U)

Anibal Monsalve Salazar ani...@debian.org
   heartbeat (U)

Apollon Oikonomopoulos apoi...@gmail.com
   ganeti (U)

Ard van Breemen a...@kwaak.net
   vlan

Autopkgtest team autopkgtest-de...@lists.alioth.debian.org
   autopkgtest

Bastian Blank wa...@debian.org
   redhat-cluster (U)

Bastian Kleineidam cal...@debian.org
   fiaif

Chrissie Caulfield chris...@debian.org
   dnprogs

Christian Hammers c...@debian.org
   quagga

Craig Small csm...@debian.org
   gogoc

Daniel Baumann dan...@debian.org
   live-config (U)

Daniel Baumann m...@daniel-baumann.ch
   live-config (U)

Daniel Kahn Gillmor d...@fifthhorseman.net
   vblade-persist

David Paleino da...@debian.org
   wicd

Debian dsc Maintainer Team dsc-maintain...@lists.alioth.debian.org
   dsc-statistics

Debian Edu Developers debian-...@lists.debian.org
   debian-edu
   sitesummary

Debian Forensics forensics-de...@lists.alioth.debian.org
   rkhunter

Debian Ganeti Team pkg-ganeti-de...@lists.alioth.debian.org
   ganeti

Debian HA Maintainers debian-ha-maintain...@lists.alioth.debian.org
   heartbeat
   redhat-cluster

Debian ISC DHCP maintainers pkg-dhcp-de...@lists.alioth.debian.org
   isc-dhcp

Debian Libvirt Maintainers pkg-libvirt-maintain...@lists.alioth.debian.org
   libguestfs
   libvirt

Debian Live Project debian-l...@lists.debian.org
   live-config

Debian QA Group packa...@qa.debian.org
   oidentd
   tcng

Epoptes Developers epop...@lists.launchpad.net
   epoptes

Eric Evans eev...@debian.org
   ucarp

Florian Schlichting fschl...@zedat.fu-berlin.de
   vpnc

Florian Weimer f...@debian.org
   quagga (U)

Fotis Tsamis ftsa...@gmail.com
   epoptes (U)

Frederik Schüler f...@debian.org
   heartbeat (U)
   redhat-cluster (U)

Ghe Rivero ghe.riv...@stackops.com
   nova (U)

Giuseppe Iuculano iucul...@debian.org
   apf-firewall

gregor herrmann gre...@debian.org
   iodine

Guido Günther a...@sigxcpu.org
   libguestfs (U)
   libvirt (U)
   redhat-cluster (U)

Guido Trotter ultrot...@debian.org
   ganeti (U)

Guus Sliepen g...@debian.org
   ifenslave-2.6

Harald Jenny har...@a-little-linux-box.at
   openswan (U)

Hilko Bengen ben...@debian.org
   libguestfs (U)

Holger Levsen hol...@debian.org
   debian-edu (U)
   sitesummary (U)

Ian Jackson ijack...@chiark.greenend.org.uk
   autopkgtest (U)

Iustin Pop ius...@debian.org
   ganeti (U)

Javier Fernandez-Sanguino Pen~a j...@debian.org
   ifupdown-extra

Javier Fernández-Sanguino Peña j...@debian.org
   snort

Jerome Benoit calcu...@rezozer.net
   firehol
   sanewall

Jon Ludlam jonathan.lud...@eu.citrix.com
   xen-api (U)

Jonathan Niehof jtnie...@gmail.com
   pam-shield

José L. Redrejo Rodríguez jredr...@debian.org
   debian-edu (U)

Juan Angulo Moreno j...@apuntale.com
   lsat

Julien Danjou a...@debian.org
   nova (U)

Julien Valroff jul...@debian.org
   rkhunter (U)

Laurent Léonard laur...@open-minds.org
   libvirt (U)

Live Systems Maintainers debian-l...@lists.debian.org
   live-config

Loic Dachary (OuoU) l...@debian.org
   nova (U)

Loic Minier l...@dooz.org
   avahi (U)
   vlan (U)

LTSP Debian Maintainers pkg-ltsp-de...@lists.alioth.debian.org
   ltsp

Luis Uribe a...@eviled.org
   ipkungfu

Marc Haber mh+debian-packa...@zugschlus.de
   dsc-statistics (U)
   ifupdown-scripts-zg2

Mario Izquierdo (mariodebian) mariodeb...@gmail.com
   tcos

Martin Loschwitz madk...@debian.org
   heartbeat (U)
   redhat-cluster (U)

Martin Pitt mp...@debian.org
   autopkgtest (U)

Martín Ferrari tin...@debian.org
   python-nemu

Mateusz Kaduk mate...@kaduk.net
   pam-shield

Mateusz Łukasik mat...@linuxmint.pl
   inxi (U)

Matthew Grant matthewgra...@gmail.com
   netscript-2.4

Mehdi Abaakouk sil...@sileht.net
   nova (U)

Micah Anderson mi...@debian.org
   util-vserver

Michael Biebl bi...@debian.org
   avahi (U)

Michael Gilbert mgilb...@debian.org
   isc-dhcp (U)

Michael Hanke m...@debian.org
   arno-iptables-firewall

Michael Prokop m...@debian.org
   fai (U)

Mike Gabriel sunwea...@debian.org
   debian-edu (U)

Mike McClurg mike.mccl...@citrix.com
   xen-api (U)

Mike Miller mtmil...@ieee.org
   vpnc-scripts

Morten Werner Forsbring wer...@debian.org
   sitesummary (U)

Ola Lundqvist o...@debian.org
   util-vserver (U)
   vserver-debiantools
   vzctl

Pascal Hofmann m...@pascalhofmann.de
   mysql-mmm

Patrick Winnertz 

Bug#724604: ITP: libmini -- the libMini real-time terrain rendering system

2013-09-25 Thread Klee Dienes
Package: wnpp
Severity: wishlist
Owner: Klee Dienes k...@mit.edu

* Package name: libmini
  Version : 10.10~20130925
  Upstream Author : Stefan Roettger ste...@stereofx.org
* URL : http://stereofx.org/terrain.html
* License : GPL, LGPL, MIT, others
  Programming Lang: C, C++, others
  Description : the libMini real-time terrain rendering system

The Mini Library is a real-time terrain rendering system which is
licensed under the terms of the LGPL. It is based on my '98 paper and
supports asynchronous paging, dynamic terrain, multiple geospatial
tile sets and much more. It compiles on Irix, Linux, MacOS X and
Windows (VC++ and cygwin). The library is included in the Virtual
Terrain Project of Ben Discoe and an early version is utilized in the
DX 8 game AquaNox.


-- 
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/20130925162956.19802.67174.report...@router.dienesfamily.org



Re: Biological data being used by an unpublished research paper is considered proprietary

2013-09-25 Thread Steve Langasek
On Mon, Sep 16, 2013 at 12:59:11PM +0100, Peter Rice wrote:
 On 16/09/2013 11:31, Faheem Mitha wrote:
 This is really not Debian-related, except insofar as the software in
 question is something that might have been in Debian one day. I talked
 about that with people on debian-med recently. So, it is technically
 off-topic.

 I posted a reply on stackexchange with instructions to get the data
 from the EBI SRS server.

 However, I have run into this issue before in the context of
 biological database entries and Debian so it may be worth discussing
 here. There were objections to including SwissProt entries in the
 example data for the EMBOSS package because the licensing of
 SwissProt does not allow them to be edited. That was resolved by
 agreeing that scientific facts should not be edited so that the
 files could be accepted as part of a Debian package even though they
 could not be changed. A fine compromise I feel.

Hopefully, this is a misstatement of the actual rationale for including this
data in Debian, because it is *not* acceptable to have packages in main
containing data that we are not allowed to modify.

The real rationale is surely that, because facts are *not governed by
copyright*, any licensing claim over this data is ignorable.

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


signature.asc
Description: Digital signature


Re: think twice before enabling -D_FORTIFY_SOURCE=2 for C projects without thorough build-time testing

2013-09-25 Thread Russ Allbery
Thorsten Glaser t...@mirbsd.de writes:
 Russ Allbery rra at debian.org writes:

 (consider resource exhaustion errors in the crypt implementation, for

 No, the standard said it would either always fail or never, but
 independent on the input data.

I believe that just because POSIX only documents one specific error
condition for a function doesn't mean that's the only error that it is
allowed to return.  In particular, in glibc, many functions return several
of the generic error codes, like EINTR, even if they're not explicitly
enumerated in POSIX.  My understanding is that's why the error section is
phrased as shall fail if not may only fail if.

The important distinction is whether a function can fail or not.  If it
can fail, it can potentially fail for other reasons than those explicitly
stated.  If it can't fail, it should return void, and then you know that
you don't have to check the return status.

If POSIX says somewhere that this is not the case, I'd appreciate a
pointer, since I've been wondering about that for some time and have
followed several past discussions on that topic on libc-alpha.

Programs that don't check the return status of functions that they think
won't ever fail are a bit of a pet peeve of mine, in part because it would
make a lot of sense for localtime() to be able to fail when the question
it was asked is undefined.  But no one ever checks the return status of
localtime() for much the same reason that you spell out for not checking
the return status of crypt(), which means that localtime() is required by
all this legacy code to return arbitrary nonsense instead of an error.

 Your proposed solution on libc-alpha was ingenious, but I think it breaks
 the crypt contract in even more serious ways, since it means that crypt
 could now return a string matching the disabled password field in

 No, it cannot, because you pass the “password field” as seed, hence the
 comparison: if the password field is disabled by ‘*’ you get ‘x’, if
 it’s disabled by ‘x’ got get ‘*’. It always returns something not
 matching.

Sure, that's what you're *supposed* to do.  You're also supposed to check
the return status of crypt().  :)  People use crypt() for things other than
processing /etc/shadow files, and may or may not handle the seed in the
way that the UNIX local password mechanisms do.  Nothing in the POSIX
documentation of the function says that it has to be used that way.

 And prevents serious security issues in legacy code (which, by the way,
 often predates the standard and thus is allowed to not follow it).

That excuse ran out about five years ago, IMO.  Also, I think it's a bit
of a stretch to call a DoS attack a serious security issue.

The most appealing part of this change for me is that, if software gets
fixed to handle NULL returns from crypt properly, it can be possible to
meaningfully disable use of DES globally.

So I guess your general statement in your previous message is correct: I
don't care that this change broke a bunch of things.  In fact, I agree
with it.

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


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



Re: think twice before enabling -D_FORTIFY_SOURCE=2 for C projects without thorough build-time testing

2013-09-25 Thread Adam Borowski
On Wed, Sep 25, 2013 at 09:38:18AM -0700, Russ Allbery wrote:
 Thorsten Glaser t...@mirbsd.de writes:
  Russ Allbery rra at debian.org writes:
 Programs that don't check the return status of functions that they think
 won't ever fail are a bit of a pet peeve of mine, in part because it would
 make a lot of sense for localtime() to be able to fail when the question
 it was asked is undefined.  But no one ever checks the return status of
 localtime() for much the same reason that you spell out for not checking
 the return status of crypt(), which means that localtime() is required by
 all this legacy code to return arbitrary nonsense instead of an error.

__attribute__((warn_unused_result))

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


-- 
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/20130925164247.ga27...@angband.pl



Re: think twice before enabling -D_FORTIFY_SOURCE=2 for C projects without thorough build-time testing

2013-09-25 Thread Russ Allbery
Adam Borowski kilob...@angband.pl writes:
 On Wed, Sep 25, 2013 at 09:38:18AM -0700, Russ Allbery wrote:

 Programs that don't check the return status of functions that they
 think won't ever fail are a bit of a pet peeve of mine, in part because
 it would make a lot of sense for localtime() to be able to fail when
 the question it was asked is undefined.  But no one ever checks the
 return status of localtime() for much the same reason that you spell
 out for not checking the return status of crypt(), which means that
 localtime() is required by all this legacy code to return arbitrary
 nonsense instead of an error.

 __attribute__((warn_unused_result))

Now that is an *excellent* idea for crypt().  In fact, I'm surprised that
it's not already tagged with that attribute.  I think I'll suggest that on
libc-alpha.  Thanks!

Doing that for localtime() may be too much of an uphill climb.  :/

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


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



Re: think twice before enabling -D_FORTIFY_SOURCE=2 for C projects without thorough build-time testing

2013-09-25 Thread Bastian Blank
On Wed, Sep 25, 2013 at 11:43:22AM +, Thorsten Glaser wrote:
 No, the standard said it would either always fail or never, but independent
 on the input data.

Nope:
| Upon successful completion, crypt() shall return a pointer to the
| encoded string. The first two characters of the returned value shall be
| those of the salt argument. Otherwise, it shall return a null pointer
| and set errno to indicate the error.

Bastian

-- 
You!  What PLANET is this!
-- McCoy, The City on the Edge of Forever, stardate 3134.0


-- 
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/20130925164322.ga9...@mail.waldi.eu.org



Re: think twice before enabling -D_FORTIFY_SOURCE=2 for C projects without thorough build-time testing

2013-09-25 Thread Russ Allbery
Russ Allbery r...@debian.org writes:
 Adam Borowski kilob...@angband.pl writes:
 On Wed, Sep 25, 2013 at 09:38:18AM -0700, Russ Allbery wrote:

 Programs that don't check the return status of functions that they
 think won't ever fail are a bit of a pet peeve of mine, in part
 because it would make a lot of sense for localtime() to be able to
 fail when the question it was asked is undefined.  But no one ever
 checks the return status of localtime() for much the same reason that
 you spell out for not checking the return status of crypt(), which
 means that localtime() is required by all this legacy code to return
 arbitrary nonsense instead of an error.

 __attribute__((warn_unused_result))

 Now that is an *excellent* idea for crypt().  In fact, I'm surprised
 that it's not already tagged with that attribute.  I think I'll suggest
 that on libc-alpha.  Thanks!

 Doing that for localtime() may be too much of an uphill climb.  :/

Of course, I figure out right after I send that mail that this doesn't
work, since in both cases the result is almost always used.  The problem
is that it's used without checking for NULL, which would require a
different sort of machinery other than what warn_unused_result does.

warn_unused_result only works for cases like this when the function
returns an error code, not when the function returns some data structure
that the caller will then go on to use normally.

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


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



Re: iproute transitional package going away...

2013-09-25 Thread Javier Fernández-Sanguino Peña
On Wed, Sep 25, 2013 at 05:02:58PM +0200, Andreas Henriksson wrote:
 Hello!
 
 I intend to drop the iproute transitional packages in Jessie+1.
 
 This message is here to give all 68 packages depending/recommending/suggesting
 the old iproute package time to simply update their dependencies to use
 the new iproute2 package name.

Thanks for the heads up.

ifupdown-extra

Fixed in GIT, version 0.23 containing this fix hast just been uploaded

snort

Fixed in GIT. I'm preparing a version with a debconf review and debconf
translation updates, the fix will go in with that version (this week
probably)

Regards

Javier


signature.asc
Description: Digital signature


Re: Biological data being used by an unpublished research paper is considered proprietary

2013-09-25 Thread Faheem Mitha


Hi Steve,

On Wed, 25 Sep 2013, Steve Langasek wrote:


On Mon, Sep 16, 2013 at 12:59:11PM +0100, Peter Rice wrote:



On 16/09/2013 11:31, Faheem Mitha wrote:


This is really not Debian-related, except insofar as the software in 
question is something that might have been in Debian one day. I talked 
about that with people on debian-med recently. So, it is technically 
off-topic.


I posted a reply on stackexchange with instructions to get the data 
from the EBI SRS server.


However, I have run into this issue before in the context of biological 
database entries and Debian so it may be worth discussing here. There 
were objections to including SwissProt entries in the example data for 
the EMBOSS package because the licensing of SwissProt does not allow 
them to be edited. That was resolved by agreeing that scientific facts 
should not be edited so that the files could be accepted as part of a 
Debian package even though they could not be changed. A fine compromise 
I feel.


Hopefully, this is a misstatement of the actual rationale for including 
this data in Debian, because it is *not* acceptable to have packages in 
main containing data that we are not allowed to modify.


Well, I suppose you can modify the data, but then it won't be the same 
data. :-)


The real rationale is surely that, because facts are *not governed by 
copyright*, any licensing claim over this data is ignorable.


So, biological data is not actually copyrightable? Can you (or anyone 
else) give me relevant documentation about that? Apparently it may vary by 
jurisdiction. Does anyone know the rules in the EU, which seems to be what 
is relevant here, since the servers in question are in Europe?


For the record, I've gone ahead and removed the data from my repository, 
because I wasn't sure whether the person telling me not to distribute it 
had the right to do so or not. I've added a script to download the data, 
and will document it. It is not really a big deal either way, but if I had 
some definite information I could for example email this person back with 
that information.


I wonder if debian-legal would be a better place to ask this. I haven't 
asked them.


   Regards, Faheem


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



--
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/alpine.deb.2.02.1309252213170.3...@orwell.homelinux.org



Re: Biological data being used by an unpublished research paper is considered proprietary

2013-09-25 Thread Tollef Fog Heen
]] Steve Langasek 

 The real rationale is surely that, because facts are *not governed by
 copyright*, any licensing claim over this data is ignorable.

Copyrights are not the any type of «IP» that may require
licensing. Database rights exist in Europe for instance.

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


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



qmake and make dist

2013-09-25 Thread Daniel Pocock


upstream is using qmake for PostBooks

qmake doesn't appear to provide a make dist facility, at least not the
way the project is currently configured.

Consequently, upstream tarballs tend to be snapshots of the developer
workspace, in one case, even including things like submodules,
.gitmodules and other things that don't fit too nicely into the Debian VCS

Is there any convenient way that upstream can generate a clean tarball
with qmake?  In general, is it sufficient to work with a
github-generated tarball for the tag on a qmake project?


-- 
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/524332c1.1010...@pocock.com.au



Re: qmake and make dist

2013-09-25 Thread Sune Vuorela
On 2013-09-25, Daniel Pocock dan...@pocock.com.au wrote:
 qmake doesn't appear to provide a make dist facility, at least not the
 way the project is currently configured.

Unless for autotools projects where you might want to store pregenerated
files in the tarball, I've never seen the reason for make dist.

For all my qmake and cmake based projects, neither that has a make dist,
I've asked my VCS for a tarball of the tag and blessed that one as 'the
release'.

/Sune


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



Re: think twice before enabling -D_FORTIFY_SOURCE=2 for C projects without thorough build-time testing

2013-09-25 Thread Henrique de Moraes Holschuh
On Wed, 25 Sep 2013, Adam Borowski wrote:
 On Wed, Sep 25, 2013 at 09:38:18AM -0700, Russ Allbery wrote:
  Thorsten Glaser t...@mirbsd.de writes:
   Russ Allbery rra at debian.org writes:
  Programs that don't check the return status of functions that they think
  won't ever fail are a bit of a pet peeve of mine, in part because it would
  make a lot of sense for localtime() to be able to fail when the question
  it was asked is undefined.  But no one ever checks the return status of
  localtime() for much the same reason that you spell out for not checking
  the return status of crypt(), which means that localtime() is required by
  all this legacy code to return arbitrary nonsense instead of an error.
 
 __attribute__((warn_unused_result))

Too bad it won't work in this specific case, but one could use Coccinelle or
another static checker tool to track down crypt() calls without a subsequent
test for NULL.

That would still require a sweep on the source of the entire archive,
though, as well as periodic testing to make sure the braidamage doesn't find
its way back as new packages or new upstream versions.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
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/20130925193856.ga23...@khazad-dum.debian.net



Re: qmake and make dist

2013-09-25 Thread Jonathan Dowland
On Wed, Sep 25, 2013 at 07:06:04PM +, Sune Vuorela wrote:
 For all my qmake and cmake based projects, neither that has a make dist,
 I've asked my VCS for a tarball of the tag and blessed that one as 'the
 release'.

+1

Anecdotally, one of my upstreams has a broken tarball which is a git
export on a windows machine, with +x everywhere and CRLF line-endings,
which isn't an issue if you're treating the VCS as your orig.


-- 
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/20130925211919.GA14727@debian



Re: qmake and make dist

2013-09-25 Thread Paul Wise
On Wed, Sep 25, 2013 at 9:06 PM, Sune Vuorela wrote:

 Unless for autotools projects where you might want to store pregenerated
 files in the tarball, I've never seen the reason for make dist.

For several of my (admittedly autotools) upstreams I add git2cl in the
dist-hook and now that I have packaged autorevision I will be adding
that to the dist-hook too.

-- 
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/caktje6ee5shcoxfwympohqmvue3ilwx6n-qd40qpw6nthqh...@mail.gmail.com



Re: Decision on R datasets

2013-09-25 Thread Faheem Mitha
Hi Charles (and everyone else),

On Sun, 22 Sep 2013 12:28:11 +0900, Charles Plessy ple...@debian.org wrote:

 Hi Paul, FTP team and everybody,

 first, let me underline that if the FTP team wants to disuss and
 amend its decision, I will be happy to participate.

 I think that the only good solution is to engage with the R
 community and make them change their practice of distributing data
 in binary format in the source packages.  I think unfortunately that
 it will not work by taking a decision first, and ask them to follow
 us.  To me the FTP team's attitude (no discussion, no transition, no
 plan for the packages currently in the archive) is blocking a global
 resolution of the problem.  The examples given in the FTP team's
 decision email are contrieved and quite off-topic to the core of the
 problem, give the impression of a poor understanding of R, and
 contribute to the whole email being an obstacle in engaging a
 productive discussion with the R community.  Of course, I am happy
 to be proven wrong here.

 On top of that, it has been a couple of monthes that I was wondering
 which packages I have to stop working on because I do not have time
 anymore; your decision and attitude guided my hand for slashing the
 first 10-20 %.  In deciding whether to announce this in public, I
 had on one side the confrontational impression that it gives, and on
 the other side, my impression that since I have been doing large
 quantities of team uploads in the past two R API transitions, it
 would be better to make it clear that I am not available anymore for
 this.  And that it will also not be me who will check the existing
 packages: no transition you planned, no help I give.

I'm sorry to hear that you will not be working on R packaging for
Debian any more. Unfortunately. there are very few people working on R
packaging in Debian. There is Dirk, of course, but few other names
appear consistently. In particular, there is nothing like a R
packaging team despite R's significant and growing importance in the
larger FOSS community.

I had noticed you doing a lot of work on R packaging, and would like
to express my appreciation. I know much of the time packaging can seem
like hard and thankless work. I hope you will not stop all your work
completely and be around to answer questions. Thanks again.

   Regards, Faheem

 For the rest of the discussion, please let me try to close it by briefly 
 asking
 everybody to 1) judge people on their actions, not on speculations and 2) 
 never
 propose somebody's resignation from Debian unless there is actual misbehaviour
 and good confidence that an expulsion procedure would be successful.  I think
 that this is the only way to keep Debian universal.

 Finally, to summarise my standpoint: if we can not speak with one voice to
 solve the problem upstream, let's agree that we disagree and move to something
 else.

 Have a nice Sunday,


-- 
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/slrnl46liq.fg9.fah...@chrestomanci.home.earth



Re: qmake and make dist

2013-09-25 Thread Bernd Zeimetz
On 09/25/2013 09:00 PM, Daniel Pocock wrote:
 Is there any convenient way that upstream can generate a clean tarball
 with qmake?  In general, is it sufficient to work with a
 github-generated tarball for the tag on a qmake project?


Not tested - and I havent used qmake for some longish time, but something like

dist.target = foobar.tar.gz
dist.commands = git archive --useful-options
dist.depends = .git
QMAKE_EXTRA_TARGETS += dist

should work.


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


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



Re: Replacing unrar-free with unar wrapper

2013-09-25 Thread Matt Kraai
Hi,

On Wed, Sep 25, 2013 at 09:39:12AM +0200, Dominik George wrote:
 I think I will send a first patch against unar's Vcs-Git in the course
 of today. Besides, I would really like to hear the unar maintainer's
 thoughts ☺.

I'm one of the unar package maintainers and would be happy to include
a wrapper for unar that provides an unrar-like interface.  Thanks for
working on this.

-- 
Matt


-- 
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/20130925231136.ga18...@ftbfs.org



Bug#724631: ITP: slic3r -- Tool to convert a digital 3D model into printing instructions for 3D printer

2013-09-25 Thread Zlatan Todoric
Package: wnpp
Severity: wishlist
Owner: Zlatan Todoric zlatan.todo...@gmail.com

* Package name: slic3r
  Version : 0.9.10b
  Upstream Author : Alessandro Ranellucci alessan...@unterwelt.it
* URL : http://slic3r.org/
* License : AGPLv3
  Programming Lang: C++, Perl
  Description : Tool to convert a digital 3D model into printing
instructions for 3D printer


-- 
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/20130926002100.18891.75862.reportbug@aureus



Re: Bug#724631: ITP: slic3r -- Tool to convert a digital 3D model into printing instructions for 3D printer

2013-09-25 Thread Lisandro Damián Nicanor Pérez Meyer
On Thursday 26 September 2013 02:21:00 Zlatan Todoric wrote:
 Package: wnpp
 Severity: wishlist
 Owner: Zlatan Todoric zlatan.todo...@gmail.com
 
 * Package name: slic3r
   Version : 0.9.10b
   Upstream Author : Alessandro Ranellucci alessan...@unterwelt.it
 * URL : http://slic3r.org/
 * License : AGPLv3
   Programming Lang: C++, Perl
   Description : Tool to convert a digital 3D model into printing
 instructions for 3D printer

What kind of 3D printers? there are lots of them out there. That info can be 
added to the long description of the package.

-- 
Contrary to popular belief, Unix is user friendly. It just happens to be
very selective about who it decides to make friends with.
  Unknown - http://www.linfo.org/q_unix.html

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Re: Bug#724631: ITP: slic3r -- Tool to convert a digital 3D model into printing instructions for 3D printer

2013-09-25 Thread Zlatan Todoric
RepRap (Prusa Mendel, MendelMax, Huxley, Tantillus...), Ultimaker,
Makerbot, Lulzbot AO-100, TAZ, MakerGear M2, Rostock, Mach3, Bukobot and
lots more. And even DLP printers.

As it is written on their website.

It will be added to long description (thanks for suggestion!).

Cheers,

zlatan


On Thu, Sep 26, 2013 at 2:29 AM, Lisandro Damián Nicanor Pérez Meyer 
perezme...@gmail.com wrote:

 On Thursday 26 September 2013 02:21:00 Zlatan Todoric wrote:
  Package: wnpp
  Severity: wishlist
  Owner: Zlatan Todoric zlatan.todo...@gmail.com
 
  * Package name: slic3r
Version : 0.9.10b
Upstream Author : Alessandro Ranellucci alessan...@unterwelt.it
  * URL : http://slic3r.org/
  * License : AGPLv3
Programming Lang: C++, Perl
Description : Tool to convert a digital 3D model into printing
  instructions for 3D printer

 What kind of 3D printers? there are lots of them out there. That info can
 be
 added to the long description of the package.

 --
 Contrary to popular belief, Unix is user friendly. It just happens to be
 very selective about who it decides to make friends with.
   Unknown - http://www.linfo.org/q_unix.html

 Lisandro Damián Nicanor Pérez Meyer
 http://perezmeyer.com.ar/
 http://perezmeyer.blogspot.com/




-- 
Its not the COST, its the VALUE!


Bug#724633: ITP: repetier-host -- Host controller for RepRap style 3D printer like mendel, prusa and huxley.

2013-09-25 Thread Zlatan Todoric
Package: wnpp
Severity: wishlist
Owner: Zlatan Todoric zlatan.todo...@gmail.com

* Package name: repetier-host
  Version : 0.90b
  Upstream Author : Repetier repetier...@gmail.com
* URL : https://github.com/repetier/Repetier-Host
* License : ASL2.0
  Programming Lang: C#
  Description : Host controller for RepRap style 3D printer like mendel,
prusa and huxley.


-- 
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/20130926011635.16443.43946.reportbug@aureus



Removing some kernel-related virtual packages

2013-09-25 Thread Ben Hutchings
I'd like to stop the binary packages built from linux providing the
following virtual packages:

* linux-image

As explained in #724569, any relations on a virtual package prevent
auto-removal of all providing packages, so in this case linux-image-*
packages must be manually removed to avoid filling up /boot.  And it is
the job of the installer to make sure systems get a kernel installed;
there is no sense in random packages also recommending/suggesting it!

* linux-headers

Same problem with auto-removal.  The linux-headers-flavour
metapackages built by linux-latest also provide this virtual package,
and the recommends/suggests should really refer to these.

* linux-source

Same problem with auto-removal.  This is also the name of a real
metapackage built by linux-latest, which again is what the
recommends/suggests should really refer to.

* linux-kernel-headers

This used to be the name a real package, which was replaced between etch
and lenny by linux-libc-dev.  There is one remaining reverse-dependency
(libkxl0-dev, #724639) which would need to be fixed first.

Any objections?

Ben.

-- 
Ben Hutchings
Humans are not rational beings; they are rationalising beings.


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


Re: Removing some kernel-related virtual packages

2013-09-25 Thread Paul Wise
Do you also plan to get rid of these? They appear to be designed to
block auto-removal of installed linux-image-* and linux-header-*
packages.

/etc/kernel/postinst.d/apt-auto-removal
/etc/apt/apt.conf.d/01autoremove-kernels

-- 
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/caktje6gqcgeh+ywq_ja64xqhbv3p+76+qvcagtddnscsgn4...@mail.gmail.com



Accepted ruby-rb-inotify 0.9.2-1 (source all)

2013-09-25 Thread Cédric Boutillier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 07:53:10 +0200
Source: ruby-rb-inotify
Binary: ruby-rb-inotify
Architecture: source all
Version: 0.9.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Cédric Boutillier bou...@debian.org
Description: 
 ruby-rb-inotify - Ruby wrapper for Linux's inotify
Changes: 
 ruby-rb-inotify (0.9.2-1) unstable; urgency=low
 .
   * Imported Upstream version 0.9.2
   * debian/control:
 + remove obsolete DM-Upload-Allowed flag
 + drop transitional packages
 + update my email address
 + bump Standards-Version to 3.9.4 (no changes needed)
 + use canonical URI in Vcs-* fields
Checksums-Sha1: 
 7ffed8f80ef7d12d1aa6d354e4fcbc0297ea921d 2109 ruby-rb-inotify_0.9.2-1.dsc
 c65dbd86e2c8004c94f255ec39366cf4510333c8 10385 
ruby-rb-inotify_0.9.2.orig.tar.gz
 33ca28975ca2962334590ad46c782983f4fc8ad8 2569 
ruby-rb-inotify_0.9.2-1.debian.tar.gz
 6cae2533e22cacc396f7ce0875dd5c91327cd1f6 10942 ruby-rb-inotify_0.9.2-1_all.deb
Checksums-Sha256: 
 c33c8f5f4b31c87e67dd770d7eb0327d50b606e9d6154723e206ea8541f7f6fe 2109 
ruby-rb-inotify_0.9.2-1.dsc
 4016802fbfc8b118c0a106bdacbf686ba4a59d04b9405818da0cf5deb961dfe3 10385 
ruby-rb-inotify_0.9.2.orig.tar.gz
 01ef208b57b01b59d979bba76b9433728290bfda3b9317af523988dc9f39eb77 2569 
ruby-rb-inotify_0.9.2-1.debian.tar.gz
 e71a3e2231554bf426175b3ad45be5cfa01cc5c231ef4bdc0f998771d3f4221b 10942 
ruby-rb-inotify_0.9.2-1_all.deb
Files: 
 396b68dbada5b2cc3fe5d0c3859d62cd 2109 ruby optional ruby-rb-inotify_0.9.2-1.dsc
 52b7f220ebdf0876c711094c8474bcfb 10385 ruby optional 
ruby-rb-inotify_0.9.2.orig.tar.gz
 cb0dd2fe9184f0ce068455b462766f66 2569 ruby optional 
ruby-rb-inotify_0.9.2-1.debian.tar.gz
 bb3b98e810c8509fe78c626d7b80d7da 10942 ruby optional 
ruby-rb-inotify_0.9.2-1_all.deb

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

iQIcBAEBCAAGBQJSQn8UAAoJEKkHZFuPn48Jp7gP/j1v1TaHLLb9aBZBffvamzqs
9tiEFeKncNOXTpe5BjdpzNjrlrKUF7fMa9fHtUIaUsQAUfbVtybFAyB/39Pu+//4
SI60UAnmnGMQbjly7M5nVaTUG7f/JvZ+r6kotBT6ctBcPxd0EksgsTak79SjEYHH
q75RV1JLbUM0TzgAVusCK85MlNB/OuTMS0Po6Xj293FOjrzGTIhnSK+Mv7Ihms/1
lswvpHNakkb3PTzUEhZp7ljzt7m3W5Vi0nKRd9Hs7BOFVE89ZBtlW5a43pd4l4Oi
wn2Tnoe7OYHDfY2jz9To7MgX5k81v50dsWqS2gylkbAhVEWcSrjetbik65SJieQ9
pj9HU1aKCh1Unkf6d22HRIMv3EmbrJtFKCyUW8xU2IcuBGDD9xDgjQ1SgoTMOs8+
+h1zlXhC7aBREcu0ZoBok+o+eOU9JEYetKmwb5C/nbrawMkEj3vwQGmWhYUix8EE
PLYD3uUtLKZk70P/CsZYPogYwvrpBasTsE4KjmWsdC6j8xGuzZjy2lp+MygnbuFR
KdWdPtkWK8Ib5yjbSJe7WixJjsE6NoJys7Fmfd/b29f4OMXiOFMXce0UNqVI763H
kD4XGqcxblv7l3aTdCOV3f4RNO/NqhfnEj1qjnvM7XVuntPwD+q54Opd9OKSUUVi
n69dlQY801GoweZmsChx
=XE0W
-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/e1voiqo-0006e6...@franck.debian.org



Accepted postbooks 4.0.2-6 (source amd64)

2013-09-25 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 08:13:34 +0200
Source: postbooks
Binary: postbooks
Architecture: source amd64
Version: 4.0.2-6
Distribution: unstable
Urgency: low
Maintainer: Debian xTuple Maintainers 
pkg-xtuple-maintain...@lists.alioth.debian.org
Changed-By: Daniel Pocock dan...@pocock.com.au
Description: 
 postbooks  - multi-user accounting / CRM / ERP suite (GUI)
Changes: 
 postbooks (4.0.2-6) unstable; urgency=low
 .
   * README.Debian: specify PostgreSQL version in examples
Checksums-Sha1: 
 9aebfe0bc0dae1d28137afa1d397db5535da97e9 2152 postbooks_4.0.2-6.dsc
 6b6228c68907802d51deff19ac138ebc22eb2a4c 16658 postbooks_4.0.2-6.debian.tar.gz
 b6eafc468501f69afb396e3c34354db0237e8826 9571476 postbooks_4.0.2-6_amd64.deb
Checksums-Sha256: 
 66a13ec06fc07c91e62dbd55013b4c5e86c1003782d5a2e2f4efbb6d1f1f1b3f 2152 
postbooks_4.0.2-6.dsc
 db61bd03a2d8a814b2d64b181bdad0c42c043ddd9b0e2c9d10feffd3de76f349 16658 
postbooks_4.0.2-6.debian.tar.gz
 0aee4efdd567854ce6bbadb85b443c9a8747d992e3b1fa2f115b32073f3b9795 9571476 
postbooks_4.0.2-6_amd64.deb
Files: 
 99a4df5a4105b351330b9fe4fad7c2c5 2152 misc optional postbooks_4.0.2-6.dsc
 29a41eb939440a52b24399c649f28c72 16658 misc optional 
postbooks_4.0.2-6.debian.tar.gz
 0db388b74ee1cd15102334e328d6280b 9571476 misc optional 
postbooks_4.0.2-6_amd64.deb

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

iQIcBAEBCAAGBQJSQoHKAAoJEOm1uwJp1aqDARMP/j7jMyqqaXMBpI0aHAtuLdZg
/rCVc6MwShRwtqjCnnibI0esB2OLti7XzE1XG7Z3e0NGHzeIIBJe4YUBcHtn9att
HDCXntZpESjn9VHhSDKBzjRLDi5Q3mS6YyYKycDjeHNJ3n4jT6gxl/ePBDGHxtKU
SK8IPE5pvNjlkZoqL5wRK67WoPGLkaXZiH7ySCw0yrb6Nv+9cTR3glc5jC4XkR3F
STaG/PVuI2H9zpu/BBt8QKX47NEJLYLZ4fUtgMEH7LW6lf3RsNvjrMLzvTkSuOpu
RDnhsRJUS880W47ZgOFA6dEQIEfQaAlHYHzDYQINDtWT8VNlDoVWJMVtj3mZbqrd
xIAmjX6aUjubfBKuchhQVwmRr2Y7zBes/aCLWGPtzdtbr7szzDQWtu2sX2bm6eAO
R5FSNVlMXsFsDDFsw7CSmqk3agMwfqcrKalfYmkXf7JWxqmTnw/UenN+oXcVWOxH
OLPtVtfHOTIUjRo1ZJExOF7OUuZ1FdPS9bq9aWVGdJ67OB3fi8rj8+Bcqm9u3pkV
sQB9Vz8DmWsMqlNwbizFTJtS7v+FXmEAnppFZenMCW4GaXCxmJkabympCpG/HU8q
bxZNjDvy1gWzMS48f9HmfCxRFfRpQEYAI4H4GSSS1rsJu1JcyzW3ahkMJqv+LjrE
wB+TKtfRbWHyTz709COm
=jCxL
-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/e1voift-qa...@franck.debian.org



Accepted postbooks-schema-demo 4.0.2-2 (source all)

2013-09-25 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 08:21:25 +0200
Source: postbooks-schema-demo
Binary: postbooks-schema-demo
Architecture: source all
Version: 4.0.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian xTuple Maintainers 
pkg-xtuple-maintain...@lists.alioth.debian.org
Changed-By: Daniel Pocock dan...@pocock.com.au
Description: 
 postbooks-schema-demo - multi-user accounting / CRM / ERP suite (demo database)
Changes: 
 postbooks-schema-demo (4.0.2-2) unstable; urgency=low
 .
   * README.Debian: specify PostgreSQL version in examples
Checksums-Sha1: 
 481fe514b9acc92665ccdd36f062277ac3a3c7e0 2149 postbooks-schema-demo_4.0.2-2.dsc
 2c2c247b068bc61262dd993d5554bb507a707eeb 12672 
postbooks-schema-demo_4.0.2-2.debian.tar.gz
 0a0198110a2dc7bfaad58aa9892ed9771dfa84f5 2280454 
postbooks-schema-demo_4.0.2-2_all.deb
Checksums-Sha256: 
 ffe6d9a47e25e0e950964c548f4cb937fd4d01a24b7a8d32025d70fa03a2d848 2149 
postbooks-schema-demo_4.0.2-2.dsc
 5ab0287dcdb8872759b4c7814590a8d49e6c24c0a514f855e0d8c2ecba401203 12672 
postbooks-schema-demo_4.0.2-2.debian.tar.gz
 9b27e4c57af1effd053783369b305f7f2a98b5cbaa4840232a6e326434e3269e 2280454 
postbooks-schema-demo_4.0.2-2_all.deb
Files: 
 3d6843e759b0d4f9b6dadb0233a8a197 2149 misc optional 
postbooks-schema-demo_4.0.2-2.dsc
 aa7204fe99d7baf254263f6eeca9e6c5 12672 misc optional 
postbooks-schema-demo_4.0.2-2.debian.tar.gz
 6c285755ad0b26c2df8c46e6b1c08af8 2280454 misc optional 
postbooks-schema-demo_4.0.2-2_all.deb

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

iQIcBAEBCAAGBQJSQoG4AAoJEOm1uwJp1aqDjKkP/0jdN0jIMJaAumjlVLGefNL5
y0+Cc0Z6SpmVoUC1cFXa6QoZ7l6Zb4wb6wuLF7zhNxb3y0yPBq89zbtq0u1EXBoP
M2TZXmm5/azomUbcZ9o51JDlZsRd2xlyGAytbD4+aAreidV2RmmA/RIqWTHC7Ogh
v13hG4K0UK33oLPTiwmJoSTZoWhDuKBh8X8JnM9y21AkrWrDN1ehjc2fmBJ49Ogt
9RLszAZJKvCMOFadFV+4E9kRWTqt0DRkesikA94Hxu/urJtWnGwXUrH8bfXjL/Et
Wv9tFGT+NGfXX6iDTH3CPBNfvo5xeJKumCuXIL/hgyrD3bp/8fkOcikmao1NYHpU
tVP5WmCtT9cmg9j+oLBLOqGxklDjCQzdk7MAuKG33wbpPGc1ipRQdQqaFGz/tqHD
yHInw0n1eSh8hqJQDSX3ktoHk8ERrcfA9F/5F5AbOt499vCfrlhBs+WY3mKHyHG+
nUVL8EfX/unm5NRXqhZQFTWcIEGBfhmYGt6CcQ44g5DRQeX46GmI4sTRIhsIbxua
EfOrcdJ9+KDTfwrUsNG39PxnK1LcHXUZjpGlSZkgPAz1pThI/VlyOlHLpPw3IpRT
c7M6d1M8/aNMEUxv91k2OOHadLigaUkqylhxYFY3cvGqRiqshQ+4JYAS+mAJpXuu
hMJKmtYmRtlntgwgSQQo
=8Tc8
-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/e1voifb-t3...@franck.debian.org



Accepted postbooks-schema-empty 4.0.2-2 (source all)

2013-09-25 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 08:21:25 +0200
Source: postbooks-schema-empty
Binary: postbooks-schema-empty
Architecture: source all
Version: 4.0.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian xTuple Maintainers 
pkg-xtuple-maintain...@lists.alioth.debian.org
Changed-By: Daniel Pocock dan...@pocock.com.au
Description: 
 postbooks-schema-empty - multi-user accounting / CRM / ERP suite (empty 
database)
Changes: 
 postbooks-schema-empty (4.0.2-2) unstable; urgency=low
 .
   * README.Debian: specify PostgreSQL version in examples
Checksums-Sha1: 
 ad7ed3400ed85c025858e19a302cb2eb5e763995 2160 
postbooks-schema-empty_4.0.2-2.dsc
 d5011862e28d498df3cc268da198cac5a2c16f05 12606 
postbooks-schema-empty_4.0.2-2.debian.tar.gz
 edde3fb45716f2924a13a7b5809685a1d68f2c66 1426914 
postbooks-schema-empty_4.0.2-2_all.deb
Checksums-Sha256: 
 05bba0ff5736fa50ba9cc03d7c4b0e9eaf9d3be62c02d2fab31c0b65bcd5870d 2160 
postbooks-schema-empty_4.0.2-2.dsc
 516b19138b5c91cebec37ed1adfc469770d68a2a8a3727f7bc86a70c52592e01 12606 
postbooks-schema-empty_4.0.2-2.debian.tar.gz
 a9f2e37b50c544b57d70c71dbe68ef8c2394f0b8434c85d075e77ec623464248 1426914 
postbooks-schema-empty_4.0.2-2_all.deb
Files: 
 aace2aa2dafeb6e6a6b1093db017a382 2160 misc optional 
postbooks-schema-empty_4.0.2-2.dsc
 a12fdcbcbcff04e9e385cbaaa2c35eba 12606 misc optional 
postbooks-schema-empty_4.0.2-2.debian.tar.gz
 e9f27dae3a4c7827f685c0cc97c60c92 1426914 misc optional 
postbooks-schema-empty_4.0.2-2_all.deb

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

iQIcBAEBCAAGBQJSQoG8AAoJEOm1uwJp1aqDdIIP/RWODM6DL07tfsnyHVPAORjC
UDVeCydF7FhYX890rMvwrtKXgfIzJq3N27jg3il+DP1164VGMGS0OLZl2ceRj4xo
5SkbWJHwAbhPZ0+l3yasE7n50KQ1ZWmDRxNjI+Gh9oG2ooh333sekht7a7k3MhXD
fLTHTJ/qJLI2fYYNu8tBjyFHw70SBebLlcydcY7Ipp39R6EwFsMZJsspVpEZpCDx
sBIdbk6jLbiGjIx+m6+8++N5/N3QGriuPkXWscqnta+VIodaJXKR28QDUxQmq7zg
Y03CTydQQzAid9KvGP7hK8rh+n0WS1tPSfMNA1ZES+Z8isF48bAsa3obEfKdZqPi
XiZVFwNlPebm+W5tnHlmATFv2S6Kl+u/GYbF2pECAwxS88kmE6uyBj3hafTl1xSs
ei+uq36j5ZnlygfRQ+O3NtPiqcLdW0lFH6r5gmk2EK6Mp37ib/ZnC/XDOaRhISYn
7hS2ixL+Smo9u0TlWesHPLuCZKZtIjfiWoz601fujVu7CRQroa4pXVQoS0hol/0n
okThB2pKTq2RYRtbJxaxlMThSMy5umyhzh6daKLhjGWN2XBou8WUURyc4EY18XEm
NNzHYq4O5QX6OYPhkyNLqWN107vEb7qJYTnmCAhZ/VfyZczJX2k+a8WzqDRoHl+O
vbodmbn51EcPkEvuFlQ7
=dZKK
-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/e1voifi-vv...@franck.debian.org



Accepted postbooks-schema-quickstart 4.0.2-2 (source all)

2013-09-25 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 08:21:25 +0200
Source: postbooks-schema-quickstart
Binary: postbooks-schema-quickstart
Architecture: source all
Version: 4.0.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian xTuple Maintainers 
pkg-xtuple-maintain...@lists.alioth.debian.org
Changed-By: Daniel Pocock dan...@pocock.com.au
Description: 
 postbooks-schema-quickstart - multi-user accounting / CRM / ERP suite 
(quickstart database)
Changes: 
 postbooks-schema-quickstart (4.0.2-2) unstable; urgency=low
 .
   * README.Debian: specify PostgreSQL version in examples
Checksums-Sha1: 
 e371f1d52c0122c26c3479fbae545438cf15141a 2215 
postbooks-schema-quickstart_4.0.2-2.dsc
 5bac236a5e1feeb742dfe3bab27e03ed02b4f0a3 12650 
postbooks-schema-quickstart_4.0.2-2.debian.tar.gz
 f0d950a3d79d991e81e80cd645a3501ca288bea7 1458426 
postbooks-schema-quickstart_4.0.2-2_all.deb
Checksums-Sha256: 
 855eecd107f29c48d1f729226c07100c9b22b7e99ddcf970c52cc1089444f799 2215 
postbooks-schema-quickstart_4.0.2-2.dsc
 8569580d51b68378b9c3fa427cef16d51525896d1ceddd2eef38fc5c82bce54c 12650 
postbooks-schema-quickstart_4.0.2-2.debian.tar.gz
 ac4b7d70e478a1756dbf086e1e0e61f6ed06ab9a408705252160ff465f7b83a1 1458426 
postbooks-schema-quickstart_4.0.2-2_all.deb
Files: 
 2dcab56f6ae58d64f8195fc887694a16 2215 misc optional 
postbooks-schema-quickstart_4.0.2-2.dsc
 e92a69314141664b6b11499e6f9ed15c 12650 misc optional 
postbooks-schema-quickstart_4.0.2-2.debian.tar.gz
 6b91a53d2dfcfeff679b4a342b42e61d 1458426 misc optional 
postbooks-schema-quickstart_4.0.2-2_all.deb

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

iQIcBAEBCAAGBQJSQoG/AAoJEOm1uwJp1aqD+D0P/iMCELM5DA0M5We28SRaDE5e
VbfrsAwI4OLoi0EfDPSjn1ZVrBdOCcdwwC1bMDxdF20LfFo/eV3AtUYaC46537uI
lHLudln7oCb7tmrsK84bKbhdVga9yJRi7Np1xDbmKC1y4FXI99Z4VJE38ExBxmeH
R9IUQmTtlzYdKJsTlHl5ZE437iRG8QpglUds35lBLZWFJDSCWRh6s/Q5390fFM+5
e+ZG39C3Ls5uq9XrQ0QERTSN5NWPfbRPITshX1niro+yM3wc3tZmb3GDKi360iqX
9zLUvuR4FizatLOa24zhlGt7aUZYtMETHXkgjJyQ2fBPeR7rn9GXJfPjIiaoAXUH
7Xru9xJsbL/CwyE4Po1aDWTixXlkU0uim3TJlThxUVTGMwaxLdPFU5hcNl/g1mD+
ibGLj4Tp1s+ZPk3PyfOuC+kljpSVf+nKRQBUNGo1J3hk/cHmyMRjSYgeINWrKsxg
8gv4ixRJx9g27Qem5TOhipPM2S37KgssNeQI39cxgwmPug4qnh5fUycfRMdnUYkP
W50tZD+VOzrkZjxmkMygSKkBOOnX5YwuCJRqmOklwTjjEAhqzofkTjQ0NUkO+MJc
/zrhuQVurldY71amqu8Q9DcSMAEELShND/Z0DB80hqzFr7Fi9Bs4aml77tqH3/wt
v/1PB+XDfONzssDuOYYz
=4+Wd
-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/e1voifp-xk...@franck.debian.org



Accepted autopkgtest 2.3.5 (source all)

2013-09-25 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 08:51:21 +0200
Source: autopkgtest
Binary: autopkgtest autopkgtest-xenlvm
Architecture: source all
Version: 2.3.5
Distribution: unstable
Urgency: low
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
Changes: 
 autopkgtest (2.3.5) unstable; urgency=low
 .
   * Don't show source_rules_command() set -x trace unless running with -d.
   * Kill the tee child process if the testbed bombs out (e. g. due to a
 timeout), to avoid hanging eternally. Add test case for --timeout-test
 handling.
   * Add test case for --summary option.
Checksums-Sha1: 
 815fa429ab695f8cc2f5fbaf0b994388bb38c050 1753 autopkgtest_2.3.5.dsc
 fc28e514092f7d63ef923a6b4587306a31609e0e 84328 autopkgtest_2.3.5.tar.gz
 45f1623211cadb2a20adc0f801278238ee3e8b07 62542 autopkgtest_2.3.5_all.deb
 217ab8bd8634ce390ee4881b72d7ba7c3caab67a 27446 autopkgtest-xenlvm_2.3.5_all.deb
Checksums-Sha256: 
 24213b2f5953dbca9113e561f0fc2ceebd1ef3b008ea091895b343e1fd7708d5 1753 
autopkgtest_2.3.5.dsc
 2a1df252039cdeea2f6211583a105a08493f5031c6cfd49fbbc3543e101b0089 84328 
autopkgtest_2.3.5.tar.gz
 0c693ff1f78208e808cd640919d4b4c9b9513a606c97422e994447ea86db7939 62542 
autopkgtest_2.3.5_all.deb
 23f19ccac5d471d75436c73b31ef6375e0209f5fb272c966c3b8f5924e94a943 27446 
autopkgtest-xenlvm_2.3.5_all.deb
Files: 
 9c8948193265a352a9d3089eff10d173 1753 devel optional autopkgtest_2.3.5.dsc
 38a6a82fbeaa6e8a7c51699e4e0fc847 84328 devel optional autopkgtest_2.3.5.tar.gz
 1f97fd3495d834d57e0f8fb96d8e1c7d 62542 devel optional autopkgtest_2.3.5_all.deb
 b3a9bb2f09ccb618c27921557929992e 27446 devel optional 
autopkgtest-xenlvm_2.3.5_all.deb

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

iQIcBAEBCAAGBQJSQojwAAoJENFO8V2v4RNHsIEP/RRrjTZRUWEMUXs+Ofxg5F8o
x2vfPK1ejUznFdhCDMo87jT4/RU6b6deR0RhGqSYx3Y9Lk9GmgpDRRHsZZSpJhQ0
V1gzYqUl4lqk6qtgEKtyINBh3r9Z00bpIs7u10kElQ3Jmc8WKLK2BJf1iqMch0Mp
7oXw8gZY9zyGVeCAlcHOJN9C9dWHIk/ghBS4ahK90fgKeL5MXuYooPjHvLPXzAfY
Bz/bnhARTXGGC6DUX8XIumhTPeQ4iKtLaF8oQElGh7VBbFmMzKVLz+po1i3NeYdT
0H9aCNimZ6OBHrUQcs6Mu9hrVPTS9gkmktgyyqgll7h0123ot5fwVbxYigvVSHIP
y17aM/oDYPToaLINE7aU3jdrz9GCnWRvJzskHrZHfsNwzqbjWagZlzbWjv0B9kDF
qFZ27GmGMLxiiofhxsepRenpnwtaIOBbxS3GLEuJNpqIlSrEsF41viWf7Pfq/tYw
qoXsa8RUuV6v3WncIH5iDOrZeL7rXyXAGXw6JibSwFvZXw2OhmOt7Yf1LUppM3PG
0XGvkeUjGyCWVzwCBStw0nupavSfz3otjpi1p9XdjXpBX/sZmY+KYr4TfaRmZVUR
gdgT36ZQHRThFb+Jbh+AjaEb5h763mOt7FrLhFwAWcK4nodbBS4hr3EAZREsFlCu
wOdPkn1+qpnpMG7l3VSa
=2DPv
-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/e1voj8e-0004my...@franck.debian.org



Accepted ceilometer 2013.1.3-2 (source all)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 16:19:22 +0800
Source: ceilometer
Binary: python-ceilometer ceilometer-common ceilometer-collector ceilometer-api 
ceilometer-agent-compute ceilometer-agent-central
Architecture: source all
Version: 2013.1.3-2
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 ceilometer-agent-central - OpenStack efficient metering counters system - 
central agent
 ceilometer-agent-compute - OpenStack efficient metering counters system - 
compute agent
 ceilometer-api - OpenStack efficient metering counters system (API service)
 ceilometer-collector - OpenStack efficient metering counters system - 
collector service
 ceilometer-common - OpenStack efficient metering counters system - common files
 python-ceilometer - OpenStack efficient metering counters system - Python 
libraries
Closes: 721302 721548 722418
Changes: 
 ceilometer (2013.1.3-2) unstable; urgency=low
 .
   * Added new Debconf translations:
 - FR (Closes: #722418).
 - DA (Closes: #721548).
 - RU (Closes: #721302).
Checksums-Sha1: 
 dcf49a61a3906aca94b2500680b5d593ee4a306e 2603 ceilometer_2013.1.3-2.dsc
 0fd7bb8c6554ca7af2a119725978d9676fef6c76 61478 
ceilometer_2013.1.3-2.debian.tar.gz
 919ee42d3efff76d99fa7aa01be2215f30513abc 268944 
python-ceilometer_2013.1.3-2_all.deb
 2e3ffa783c2f4ffad8de5d6244d6f533cba6e112 61290 
ceilometer-common_2013.1.3-2_all.deb
 c8b797cea3c66088613018005d5d9bd4a06ff98a 50832 
ceilometer-collector_2013.1.3-2_all.deb
 8308e01992b31ac357c6ebd472a5a4605e8745de 62508 
ceilometer-api_2013.1.3-2_all.deb
 919a1007ebcd5805c6b29635bb24f1a3af11e800 50862 
ceilometer-agent-compute_2013.1.3-2_all.deb
 b2b0b28c3dcf45d8ffe2467eb092c00cd8278ea9 50866 
ceilometer-agent-central_2013.1.3-2_all.deb
Checksums-Sha256: 
 9b396f9cd6970e94873b6def04b7352fb751e1e1dfbaa8f5c388067cadef96ee 2603 
ceilometer_2013.1.3-2.dsc
 666cf93c619703338d8ca0feb5de3975c2d9690e89874f6a137906dfa8c45d38 61478 
ceilometer_2013.1.3-2.debian.tar.gz
 39cd63691ca01ef8728cbfe5c3be63e3e38d34c37f466cf757215dd3ae6bce0e 268944 
python-ceilometer_2013.1.3-2_all.deb
 716bab7293745290cfa7e984e6db36453f4013c8923ff901e3ca5c8d1e589618 61290 
ceilometer-common_2013.1.3-2_all.deb
 5b5c953e0e9c5c5f5a468a0b78a3a1882b07abb7d2efae8710e75bd9ae4dc57c 50832 
ceilometer-collector_2013.1.3-2_all.deb
 8ca06a2966081c09c518e3d5ce5cfeadcf06fe5b2ff7f75caa66b3c1f9dc 62508 
ceilometer-api_2013.1.3-2_all.deb
 b739dd4a8a04ddc21078158b50acc2c03da8fb4fc69518c3325e727f1e536b8a 50862 
ceilometer-agent-compute_2013.1.3-2_all.deb
 042ebe535daa9719997ca878f56ee488877e081d6cb0af2a304c885756c2bd53 50866 
ceilometer-agent-central_2013.1.3-2_all.deb
Files: 
 2e88914d9671cc7f34e96437703f667b 2603 web optional ceilometer_2013.1.3-2.dsc
 fc1b11c75f3a8c5912d45b0d2eaa773e 61478 web optional 
ceilometer_2013.1.3-2.debian.tar.gz
 282b98b7605d2c60de1088e77857382c 268944 python optional 
python-ceilometer_2013.1.3-2_all.deb
 43288669994f675b37a3898cbc981737 61290 web optional 
ceilometer-common_2013.1.3-2_all.deb
 cd5cba345849eaa81959eb538bdb8f56 50832 web optional 
ceilometer-collector_2013.1.3-2_all.deb
 c2fd92a09b0645e4b794ba45a3d33ac1 62508 web optional 
ceilometer-api_2013.1.3-2_all.deb
 e25f185d6ca13b2fd02674a5368ecd8a 50862 web optional 
ceilometer-agent-compute_2013.1.3-2_all.deb
 64d517b387d8264b227375f8ab73fb02 50866 web optional 
ceilometer-agent-central_2013.1.3-2_all.deb

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

iEYEARECAAYFAlJCoLMACgkQl4M9yZjvmkm4KgCgwlhPiAf15GANRNZLICjebcO3
LkIAnihbxYzKCvFM/2LtoTxMx/7HU+2J
=JYXQ
-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/e1vol0a-0004ye...@franck.debian.org



Accepted glance 2013.1.3-2 (source all)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 16:08:42 +0800
Source: glance
Binary: python-glance glance python-glance-doc glance-common glance-api 
glance-registry
Architecture: source all
Version: 2013.1.3-2
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 glance - OpenStack Image Service - metapackage
 glance-api - OpenStack Image Service - API server
 glance-common - OpenStack Image Service - common files
 glance-registry - OpenStack Image Service - registry server
 python-glance - OpenStack Image Service - Python client library
 python-glance-doc - OpenStack Image Service - Python library documentation
Closes: 722424
Changes: 
 glance (2013.1.3-2) unstable; urgency=low
 .
   * Updated French debconf translation (Closes: #722424).
Checksums-Sha1: 
 3b7eac793c9bd48d8bd845a1f516f8627f8c04db 2414 glance_2013.1.3-2.dsc
 7654395558a61be2ab95e3df3d98b8507b81dd56 238821 glance_2013.1.3-2.debian.tar.gz
 5af4bfa47442022df3be7e8e617733edac37f3e4 452376 
python-glance_2013.1.3-2_all.deb
 16d89335f54d66ba4c3b52da4939899f197128b7 212672 glance_2013.1.3-2_all.deb
 939a036d2d215ff307abf353306ff1279a1ca83f 297034 
python-glance-doc_2013.1.3-2_all.deb
 bccaedc48738ed02cd814fbd2799ff1707fab398 232114 
glance-common_2013.1.3-2_all.deb
 5473ec19693a22f0e98e657dcd2f4456235af059 226994 glance-api_2013.1.3-2_all.deb
 f807f2b27e7fe133e58a35efaea726ecd9d6 220186 
glance-registry_2013.1.3-2_all.deb
Checksums-Sha256: 
 3d8313150b29895a98e0b8ef77155dcbced0e41882e8ee32742202aea99b05cf 2414 
glance_2013.1.3-2.dsc
 3b445dde45d9d755d786e5bf040590dd070ef1eadd4c933a0966735fec52c09d 238821 
glance_2013.1.3-2.debian.tar.gz
 1f1c28dce7b77be96e1509adf02aef4276973f5a78237518cdf981cb71ba27ee 452376 
python-glance_2013.1.3-2_all.deb
 780155496022f6b04c6b810a1eb07017f47e5ee0f57711e73157fb6bcce38a01 212672 
glance_2013.1.3-2_all.deb
 e4b260b2ac7bf59c5b9a813127d036b12d4648fe8c3fd8a6ec468eb945f9cded 297034 
python-glance-doc_2013.1.3-2_all.deb
 08e78d5d2753caf897fa12cc65e525576ed6e16f866383cbf4dbfcb38fd61d31 232114 
glance-common_2013.1.3-2_all.deb
 06e423d7cf97673d2c3e80764934f947ea51a77c41ca8d8c580192d4e8afd2b4 226994 
glance-api_2013.1.3-2_all.deb
 ace78f7feec74933146d291c65321fe6522a1a5c93db9da02cae0d74a53ef012 220186 
glance-registry_2013.1.3-2_all.deb
Files: 
 405487e913b00f768e3b641a61fb14be 2414 net extra glance_2013.1.3-2.dsc
 75acf5aa09bc3ea1a74f5a77dff3821c 238821 net extra 
glance_2013.1.3-2.debian.tar.gz
 2d768f8220264f6a643b10c704c17214 452376 python extra 
python-glance_2013.1.3-2_all.deb
 96c128a25286bc6e01c1003bb5fd43b9 212672 python extra glance_2013.1.3-2_all.deb
 be72818fea2dfa668fb0bfec2e14cda0 297034 doc extra 
python-glance-doc_2013.1.3-2_all.deb
 57de1533ec14ef15f83676687958ad7f 232114 python extra 
glance-common_2013.1.3-2_all.deb
 32c9a00cdee2583ec88d3abbd95f7a4d 226994 python extra 
glance-api_2013.1.3-2_all.deb
 1a0357d114f050b2b0145f2722df7cd9 220186 python extra 
glance-registry_2013.1.3-2_all.deb

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

iEYEARECAAYFAlJCnfYACgkQl4M9yZjvmknb9gCeLMJFRERosPC5nlVdl2itTmQU
U6oAn3/XrCWLdduUDG47sk+JFBcPdL5e
=2uwK
-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/e1vol0o-0004jy...@franck.debian.org



Accepted heat 2013.1.3-2 (source all)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 16:39:56 +0800
Source: heat
Binary: python-heat heat-common heat-engine heat-api heat-api-cfn 
heat-api-cloudwatch
Architecture: source all
Version: 2013.1.3-2
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 heat-api   - OpenStack orchestration service - ReST API
 heat-api-cfn - OpenStack orchestration service - CFN API
 heat-api-cloudwatch - OpenStack orchestration service - CloudWatch API
 heat-common - OpenStack orchestration service - common files
 heat-engine - OpenStack orchestration service - engine
 python-heat - OpenStack orchestration service - Python files
Closes: 721305 721334 722422
Changes: 
 heat (2013.1.3-2) unstable; urgency=low
 .
   * New Debconf translations:
 - FR (Closes: #722422).
 - IT (Closes: #721334).
 - RU (Closes: #721305).
Checksums-Sha1: 
 cd806b20e026e817e5a485b614362625f94b5236 2386 heat_2013.1.3-2.dsc
 cb4fe10d5faf09fb64cb4fe1f6f47b2443fc3c9d 137351 heat_2013.1.3-2.debian.tar.gz
 a5aa18f9d37436890aa0f6a153d8dfe7ac6017e0 341578 python-heat_2013.1.3-2_all.deb
 8f76b49b8571fb2af1175a137330512ca285ee69 128456 heat-common_2013.1.3-2_all.deb
 4fd6db05bd9f3a25492a202c8de0510321fe2986 127070 heat-engine_2013.1.3-2_all.deb
 bc0bdc24070c4bd5f45ac479f5353386f813e782 129650 heat-api_2013.1.3-2_all.deb
 4214eaf8284c433b9bcd000b1dce3f2d1fa37f9a 125920 heat-api-cfn_2013.1.3-2_all.deb
 a3180b84f00e09f57e74d1fcfc11df82275831e0 125820 
heat-api-cloudwatch_2013.1.3-2_all.deb
Checksums-Sha256: 
 d1fe1f053b2d50bd8eac5e5ae151abe4bf96b7ec103cdff616f55a6ba6ec6409 2386 
heat_2013.1.3-2.dsc
 76c98113d7efb1ef60484e05169856d07b75fd437159a4317ca9b5721972e0fe 137351 
heat_2013.1.3-2.debian.tar.gz
 9d5677e270b3c4d02c49fc6d88b636947e6fe7967b8dcdb824e19f28464cd850 341578 
python-heat_2013.1.3-2_all.deb
 366ed5c1ed92f9e55f00633ab0eed24f30b6414f002ee84c2dc50ded61143e80 128456 
heat-common_2013.1.3-2_all.deb
 77e6b2ab5c85842afd85470db5283993189a1611d267b97bef528bab9c24982a 127070 
heat-engine_2013.1.3-2_all.deb
 0d71e65c4107a1fdef0dcfeb2480c35c5aa6a61e7bcfd0f357b7a30f6cbdba1f 129650 
heat-api_2013.1.3-2_all.deb
 60522bb97e0913ec5ea9e4461bfb3c9f27e9957ccdf0ff18000e1e46ae15a797 125920 
heat-api-cfn_2013.1.3-2_all.deb
 e4a9062561aa38abfdf08224193aa334596845e3a5fa9da92f2326612c67b5c4 125820 
heat-api-cloudwatch_2013.1.3-2_all.deb
Files: 
 b3f970f163cf91db7a7e70bb633c3ba6 2386 web optional heat_2013.1.3-2.dsc
 d6b75db5310ff3213028f3c0a387a5a5 137351 web optional 
heat_2013.1.3-2.debian.tar.gz
 e146013b1283cd89a42c470ff9dfc5a7 341578 python optional 
python-heat_2013.1.3-2_all.deb
 c3dfdb6a45350930a4ca63ebcc7c5e4b 128456 web optional 
heat-common_2013.1.3-2_all.deb
 9a19000cf89f9e8cbda4e49e47b07bb6 127070 web optional 
heat-engine_2013.1.3-2_all.deb
 faf1162e796f4e2415b559ff45601953 129650 web optional 
heat-api_2013.1.3-2_all.deb
 629cd96cac0422786444090eca3a5a62 125920 web optional 
heat-api-cfn_2013.1.3-2_all.deb
 3f0e741cb0613979d010c953646a53ea 125820 web optional 
heat-api-cloudwatch_2013.1.3-2_all.deb

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

iEYEARECAAYFAlJCosEACgkQl4M9yZjvmkl+2ACglT+YaqUGNp2a33/7Pb8GMDLT
ZssAoJA7y2lO39GsB7P0zpN/4Wv7nzFH
=JVcP
-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/e1vol18-0004sn...@franck.debian.org



Accepted openstack-pkg-tools 8 (source all)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 28 Jun 2013 16:18:55 +0800
Source: openstack-pkg-tools
Binary: openstack-pkg-tools
Architecture: source all
Version: 8
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 openstack-pkg-tools - Tools and scripts for building Openstack packages in 
Debian
Changes: 
 openstack-pkg-tools (8) unstable; urgency=low
 .
   * Allow the upstart thing to also work with package.daemon.upstart.in
 (replaced the cut -d by a sed s/.upstart.in//).
   * Adds a git show in the gen-orig-xz, to check if the tag exists before
 creating the orig.tar.xz.
   * Added functions to automatically configure rabbit_* directives.
Checksums-Sha1: 
 50bd6dcade1a18baea9318ecf8a413a23ac3dbf9 1132 openstack-pkg-tools_8.dsc
 bd0a6409b9dfc7aabff3012df2497b550226468a 10400 openstack-pkg-tools_8.tar.gz
 6b945397822fd2bf806c9c220205f25de9762c59 10310 openstack-pkg-tools_8_all.deb
Checksums-Sha256: 
 958c779aef3157e15e8e41946460850d9cafe1354d35a2fabcecd48b38ab1e7e 1132 
openstack-pkg-tools_8.dsc
 f3704480c195a15ac38aa67fc1752d8d2d7269d3ea7e74fd578beea2eb753fd2 10400 
openstack-pkg-tools_8.tar.gz
 877a89b7a4ae5ac0ff2078074d3880d7e1af6c37fd66d9a4851d289f7f12599c 10310 
openstack-pkg-tools_8_all.deb
Files: 
 3b2075f8569e4f7fef484404188bedc7 1132 devel extra openstack-pkg-tools_8.dsc
 a711aa2d654bcb0a00d3bc831d69acd5 10400 devel extra openstack-pkg-tools_8.tar.gz
 0e69695b162cc91a31a3a50e2d0f99ba 10310 devel extra 
openstack-pkg-tools_8_all.deb

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

iEYEARECAAYFAlJCl/cACgkQl4M9yZjvmknvJwCg5ZyvCY6SKUHePdwCz6Oog8If
P/UAn2fFnwRAwnM0PQY1IlZHYHsMuMIL
=SvHL
-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/e1vol4s-0005ep...@franck.debian.org



Accepted icedove 24.0~b3-2 (source all i386)

2013-09-25 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 24 Sep 2013 20:03:33 +0200
Source: icedove
Binary: icedove icedove-dev icedove-dbg iceowl-extension 
calendar-google-provider
Architecture: source all i386
Version: 24.0~b3-2
Distribution: experimental
Urgency: low
Maintainer: Christoph Goehre ch...@sigxcpu.org
Changed-By: Guido Günther a...@sigxcpu.org
Description: 
 calendar-google-provider - Google Calendar support for lightning- and 
iceowl-extension
 icedove- mail/news client with RSS and integrated spam filter support
 icedove-dbg - Debug Symbols for Icedove
 icedove-dev - Development files for Icedove
 iceowl-extension - Calendar Extension for Thunderbird/Icedove
Changes: 
 icedove (24.0~b3-2) experimental; urgency=low
 .
   * [47fe004] Add lintian override for our use of the embedded libjpeg
   * [3c103e6] Make sure xpcshell is executable so dh_shlibdeps picks it up to
 calculate lib dependencies
 .
 icedove (24.0~b3-1) experimental; urgency=low
 .
   [ Guido Günther ]
   * Upload to experimental
   * [eae533c] Adjust watch file once again
   * [5280050] Invoke repack.py directly
   * [0f4e8de] New upstream version 24.0~b3
 (Closes: #706859, #720931, #723630)
   * [3b6374b] Don't use system jpeg
 since it doesn't have the needed features
   * [f6aeba2] Don't try to remove nonexistent libxpcom.so
 .
   [ Carsten Schoenert ]
   * [04844ae] icedove-branding: adopt new build schema to Debian branding
 by using moz.build.
   * [11c4677] icedove-branding: change the target directory for preview.png.
   * [55f6762] debian/control: remove package calendar-timezones.
 The calendar-timezones related files are now inside the lightning
 package.
   * [6f4948d] debian/rules: catch any gdata-provider*.xpi file.
 The gdata-provider XPI file now has a version appended.
   * [d5a63c9] debian/rules: catch any lightning*.xpi file.
 The lightning XPI file now has a version appended.
   * [e77e911] debian/thunderbird.install.in: 
 remove mozilla/components/binary.manifest since it no longer exists.
   * [ef3f3b1] debian/control: Build-Depend on gstreamer an yasm now used by
 icedove.
   * [9f5fe3e] Drop patches fixed upstream.
 Bug-720682-Don-t-crash-an-app-using-libxul-because-o.patch
 Bug-723497-Saving-message-to-disk-fails-silently-fai.patch
 Bug-746112-Don-t-decommit-if-page-size-is-too-large.patch
 Bug-814693-Allow-webrtc-to-build-on-more-architectur.patch
 Bug-840242-Use-the-runtime-page-size-to-control-aren.patch
 virtualenv-changing-the-path-to-virtualenv.py.patch
   * [4503610] Adjust to build system changes:
 debian-hacks/Don-t-build-example-component.patch
   * [290f1e0] Partially applied upstream:
 Support-building-on-GNU-kFreeBSD-and-GNU-Hurd.patch
   * [2eaf6ae] Rediff remaining patches
   * [4217c0e] Create missing .deps dir.
 Workaround to make build complete
   * [f95db9c] Drop autoconf.mk mangling since it confuses the build system
Checksums-Sha1: 
 6041621e1d080bc0e79fd0816549f56f19e0df21 2262 icedove_24.0~b3-2.dsc
 7f109ca38744a3858c4b46f284f11f0182870bd9 486714 icedove_24.0~b3-2.debian.tar.gz
 89fb1f9b920047350cce50022a7e31ff9f253166 88090 
calendar-google-provider_24.0~b3-2_all.deb
 f8464a8eff7dcd069516eb2877e4d00bc8373edc 22501746 icedove_24.0~b3-2_i386.deb
 01afc7569db197c519c25e5816db4f7310561523 426 icedove-dev_24.0~b3-2_i386.deb
 282c2f97ea0ca30a7e2b4589a9f5c3b18b6f9ef3 255678272 
icedove-dbg_24.0~b3-2_i386.deb
 49f6e071f5a6193db4547e8234f754849817ef8d 990596 
iceowl-extension_24.0~b3-2_i386.deb
 646c1e711241bbf08c89010cb89ee68a70da917a 139747565 icedove_24.0~b3.orig.tar.bz2
Checksums-Sha256: 
 67f4afc1d3e18821249a005cc879e878195cfc31c9d3e385aa131a170422c8fc 2262 
icedove_24.0~b3-2.dsc
 7c52b3731561fe14314154cbe85a9539c03a8d81198dcc14d5ec44deb2b9f7a8 486714 
icedove_24.0~b3-2.debian.tar.gz
 e0ec810e5a2966c4a412e81746c8df76edd73a9a05912f2ded1dfff1ffcc0b55 88090 
calendar-google-provider_24.0~b3-2_all.deb
 4ad33458e3bcea2438a76c397f418e6c5f2201632c4354700feb19cb6534c3d9 22501746 
icedove_24.0~b3-2_i386.deb
 3bd3c2b1527fa91e657077850249c99718fe8e2bf4d2dbcd1198872d6a210d41 426 
icedove-dev_24.0~b3-2_i386.deb
 030adca4d9818171d5f01f7a89b26c1ed8da5b6c89dbdc4ec7682c51280c01be 255678272 
icedove-dbg_24.0~b3-2_i386.deb
 d3282cad27a445295ba807cd71b59984983768802af01e54774b227c0f18031d 990596 
iceowl-extension_24.0~b3-2_i386.deb
 48f26c7d3b3bc17516593211a49e3ea0af6c05b45b8c48372049a1a65c77d2c4 139747565 
icedove_24.0~b3.orig.tar.bz2
Files: 
 77befdc371105bb4d70e01ec86dac633 2262 mail optional icedove_24.0~b3-2.dsc
 fc5e5fd59596047dbf1a009e94509e48 486714 mail optional 
icedove_24.0~b3-2.debian.tar.gz
 445ac88a4ff93c85ebb2bb8f794f096b 88090 mail optional 
calendar-google-provider_24.0~b3-2_all.deb
 33d53b79d830d7f180846c40b81300eb 22501746 mail optional 
icedove_24.0~b3-2_i386.deb
 04eaf49e170dfbb7631bffab7f84fc5d 426 mail optional 
icedove-dev_24.0~b3-2_i386.deb

Accepted uwsgi 1.9.17.1-1 (source all amd64)

2013-09-25 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 25 Sep 2013 04:23:38 +0200
Source: uwsgi
Binary: uwsgi uwsgi-dbg uwsgi-core uwsgi-emperor uwsgi-plugins-all 
uwsgi-infrastructure-plugins uwsgi-app-integration-plugins 
uwsgi-plugin-alarm-curl uwsgi-plugin-alarm-xmpp uwsgi-plugin-curl-cron 
uwsgi-plugin-emperor-pg uwsgi-plugin-erlang uwsgi-plugin-rbthreads 
uwsgi-plugin-fiber uwsgi-plugin-geoip uwsgi-plugin-graylog2 
uwsgi-plugin-greenlet-python uwsgi-plugin-jvm-openjdk-6 
uwsgi-plugin-jvm-openjdk-7 uwsgi-plugin-jwsgi-openjdk-6 
uwsgi-plugin-jwsgi-openjdk-7 uwsgi-plugin-ldap uwsgi-plugin-lua5.1 
uwsgi-plugin-lua5.2 uwsgi-plugin-psgi uwsgi-plugin-pyerl-python 
uwsgi-plugin-pyerl-python3 uwsgi-plugin-python uwsgi-plugin-python3 
uwsgi-plugin-rack-ruby1.9.1 uwsgi-plugin-router-access uwsgi-plugin-sqlite3 
uwsgi-plugin-v8 uwsgi-plugin-php uwsgi-plugin-xslt libapache2-mod-proxy-uwsgi 
libapache2-mod-proxy-uwsgi-dbg libapache2-mod-uwsgi libapache2-mod-uwsgi-dbg 
libapache2-mod-ruwsgi libapache2-mod-ruwsgi-dbg python-uwsgidecorators 
python3-uwsgidecorators uwsgi-extra
Architecture: source all amd64
Version: 1.9.17.1-1
Distribution: unstable
Urgency: low
Maintainer: Janos Guljas ja...@debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 libapache2-mod-proxy-uwsgi - uwsgi proxy module for Apache2 (mod_uwsgi)
 libapache2-mod-proxy-uwsgi-dbg - debugging symbols for Apache2 mod_proxy_uwsgi
 libapache2-mod-ruwsgi - uwsgi module for Apache2 (mod_Ruwsgi)
 libapache2-mod-ruwsgi-dbg - debugging symbols for Apache2 mod_Ruwsgi
 libapache2-mod-uwsgi - uwsgi module for Apache2 (mod_uwsgi)
 libapache2-mod-uwsgi-dbg - debugging symbols for Apache2 mod_uwsgi
 python-uwsgidecorators - module of decorators for elegant access to uWSGI API 
(Python)
 python3-uwsgidecorators - module of decorators for elegant access to uWSGI API 
(Python 3)
 uwsgi  - fast, self-healing application container server
 uwsgi-app-integration-plugins - plugins for integration of uWSGI and 
application
 uwsgi-core - fast, self-healing application container server (core)
 uwsgi-dbg  - debugging symbols for uWSGI server and it's plugins
 uwsgi-emperor - fast, self-healing application container server (emperor 
scripts)
 uwsgi-extra - fast, self-healing application container server (extra files)
 uwsgi-infrastructure-plugins - infrastructure plugins for uWSGI
 uwsgi-plugin-alarm-curl - Alarm curl plugin for uWSGI
 uwsgi-plugin-alarm-xmpp - Alarm XMPP plugin for uWSGI
 uwsgi-plugin-curl-cron - curl cron plugin for uWSGI
 uwsgi-plugin-emperor-pg - Emperor PostgreSQL plugin for uWSGI
 uwsgi-plugin-erlang - Erlang plugin for uWSGI
 uwsgi-plugin-fiber - fiber loop engine plugin for uWSGI
 uwsgi-plugin-geoip - GeoIP plugin for uWSGI
 uwsgi-plugin-graylog2 - graylog2 plugin for uWSGI
 uwsgi-plugin-greenlet-python - greenlet plugin for uWSGI (Python)
 uwsgi-plugin-jvm-openjdk-6 - Java plugin for uWSGI (OpenJDK 6)
 uwsgi-plugin-jvm-openjdk-7 - Java plugin for uWSGI (OpenJDK 7)
 uwsgi-plugin-jwsgi-openjdk-6 - JWSGI plugin for uWSGI (OpenJDK 6)
 uwsgi-plugin-jwsgi-openjdk-7 - JWSGI plugin for uWSGI (OpenJDK 7)
 uwsgi-plugin-ldap - LDAP plugin for uWSGI
 uwsgi-plugin-lua5.1 - Lua WSAPI plugin for uWSGI (Lua 5.1)
 uwsgi-plugin-lua5.2 - Lua WSAPI plugin for uWSGI (Lua 5.2)
 uwsgi-plugin-php - PHP plugin for uWSGI
 uwsgi-plugin-psgi - Perl PSGI plugin for uWSGI
 uwsgi-plugin-pyerl-python - pyerl plugin for uWSGI (Python)
 uwsgi-plugin-pyerl-python3 - pyerl plugin for uWSGI (Python 3)
 uwsgi-plugin-python - Python WSGI plugin for uWSGI
 uwsgi-plugin-python3 - Python 3 WSGI plugin for uWSGI
 uwsgi-plugin-rack-ruby1.9.1 - Rack plugin for uWSGI (Ruby 1.9.1)
 uwsgi-plugin-rbthreads - Ruby native threads plugin for uWSGI
 uwsgi-plugin-router-access - Access router plugin for uWSGI
 uwsgi-plugin-sqlite3 - sqlite3 configurations plugin for uWSGI
 uwsgi-plugin-v8 - V8 JavaScript plugin for uWSGI
 uwsgi-plugin-xslt - XSLT request plugin for uWSGI
 uwsgi-plugins-all - all available plugins for uWSGI
Changes: 
 uwsgi (1.9.17.1-1) unstable; urgency=low
 .
   [ upstream ]
   * New release.
 .
   [ Jonas Smedegaard ]
   * Add patch 1006 to detect KFreeBSD.
   * Build-depend on libjail-dev and libkvm-dev on KFreeBSD.
   * Build-depend on libzmq3-dev (not libzmq-dev), and include KFreebsd
 (leaving out only Hurd).
   * Fix exclude building plugin emperor_zeromq on Hurd, and no longer
 exclude on KFreeBSD.
Checksums-Sha1: 
 d33ac3a74fb1792b56686eca57a7f6a101005bf6 5542 uwsgi_1.9.17.1-1.dsc
 9d9451285828d467ce28a016ddb8484a59a69e44 696468 uwsgi_1.9.17.1.orig.tar.gz
 f5ce1cb38515e9647f9095c6bacc004ecf3cb6fe 50453 uwsgi_1.9.17.1-1.debian.tar.gz
 4046616bbcc27099602aa2806a9298f00b490e23 12658 
python-uwsgidecorators_1.9.17.1-1_all.deb
 ed4f57d02042b21b155fe06140f7e1eb89ba5fce 12772 
python3-uwsgidecorators_1.9.17.1-1_all.deb
 15f94ac13a4397c0efc19b886491d4e1e69001cb 29824 uwsgi-extra_1.9.17.1-1_all.deb
 d734b5c0e46c9d1a39acd4dbdd3717290c16f6cb 

Accepted cinder 2013.1.3-2 (source all)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 17:06:03 +0800
Source: cinder
Binary: python-cinder cinder-common cinder-api cinder-volume cinder-scheduler 
cinder-backup
Architecture: source all
Version: 2013.1.3-2
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 cinder-api - OpenStack block storage system - API server
 cinder-backup - OpenStack block storage system - Backup server
 cinder-common - OpenStack block storage system - common files
 cinder-scheduler - OpenStack block storage system - Scheduler server
 cinder-volume - OpenStack block storage system - Volume server
 python-cinder - OpenStack block storage system - Python libraries
Closes: 721304 721550 721934 722423
Changes: 
 cinder (2013.1.3-2) unstable; urgency=low
 .
   * Added new Debconf templates:
 - FR (Closes: #722423).
 - JA (Closes: #721934).
 - DA (Closes: #721550).
 - RU (Closes: #721304).
Checksums-Sha1: 
 b9902a46d53eedb6eb9884044f469dfd3b91fc8a 2440 cinder_2013.1.3-2.dsc
 a7e12ee2565fef9ad3f9fbfc2ff0fa80fed7b19b 26897 cinder_2013.1.3-2.debian.tar.gz
 47479d1117812e751282286fc9ccc720cb743755 528506 
python-cinder_2013.1.3-2_all.deb
 3222a28e714c934be32897acd2b0233a64b4797a 25804 cinder-common_2013.1.3-2_all.deb
 498d5c65401e4084e6db4f3255f93127699a57d9 16114 cinder-api_2013.1.3-2_all.deb
 54b9cf3a75076e3bb4853bab3f172005f390a24f 15632 cinder-volume_2013.1.3-2_all.deb
 504de0ac3f37a8f39a9cfaa6240654d1f9bccbac 6992 
cinder-scheduler_2013.1.3-2_all.deb
 c333ba86ff626dab907984efc48f453dbaf40b5c 6650 cinder-backup_2013.1.3-2_all.deb
Checksums-Sha256: 
 c6c78b4788bd8e5a908dd2e62fe2406b94c87b6a983a09f1c4b5e2067c7344ad 2440 
cinder_2013.1.3-2.dsc
 2e4f6e98b5af9afa7c9ff7faab0631c407023b99fb4078de2c5999bc972c69c0 26897 
cinder_2013.1.3-2.debian.tar.gz
 e1aa8e6d3a1a5f2eab890a39d73ee13c8799ba7e7ddde1ae334046c3184ed238 528506 
python-cinder_2013.1.3-2_all.deb
 9ce10e1967085fcbca55c3c26c81b5f6cb16ea524b65a3b71585dd54c894bd08 25804 
cinder-common_2013.1.3-2_all.deb
 c1a56b0b3b5abed9820b1d7b417d5a231c1d3e862709892aeb8983152dd4c040 16114 
cinder-api_2013.1.3-2_all.deb
 b553c60e9e8a8a60a37b3a9b9ca4bcfe3e8f3c9fb50c8d976ed87e4d417a87c1 15632 
cinder-volume_2013.1.3-2_all.deb
 95c974e6174cad0281bf0ee96707ba612bc134c1d7d803d5da918150fc168e9f 6992 
cinder-scheduler_2013.1.3-2_all.deb
 588b0f663827ea702d956e5e4ae113d59664951d6f4345e1424437dd60318a65 6650 
cinder-backup_2013.1.3-2_all.deb
Files: 
 74f134856c9cbe0fcbda09deabf44b1c 2440 net extra cinder_2013.1.3-2.dsc
 9f54cf90829a72d7e69595a05083ea16 26897 net extra 
cinder_2013.1.3-2.debian.tar.gz
 d8e0bdac4ff0b394fc8cf4e5659e811b 528506 python extra 
python-cinder_2013.1.3-2_all.deb
 eddf87419a4911e7af93777b2e8845ff 25804 net extra 
cinder-common_2013.1.3-2_all.deb
 8ec5caaeb93020e777a9297a7159448c 16114 net extra cinder-api_2013.1.3-2_all.deb
 4850f13555a8aaab24768008022f8ad5 15632 net extra 
cinder-volume_2013.1.3-2_all.deb
 89b548164de75e74674e607023b628e8 6992 net extra 
cinder-scheduler_2013.1.3-2_all.deb
 a0eb83bf574f27beb44ce1c75f69c819 6650 net extra 
cinder-backup_2013.1.3-2_all.deb

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

iEYEARECAAYFAlJCqfkACgkQl4M9yZjvmknlFgCfT4vBDJYURc9bWdT7jkTWIbvB
zWsAn2tsfgrlpcTRHn7RxNc3BAVsylH7
=IjVI
-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/e1voluh-0002gz...@franck.debian.org



Accepted uwsgi 1.9.17.1-2 (source all amd64)

2013-09-25 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 25 Sep 2013 10:39:10 +0200
Source: uwsgi
Binary: uwsgi uwsgi-dbg uwsgi-core uwsgi-emperor uwsgi-plugins-all 
uwsgi-infrastructure-plugins uwsgi-app-integration-plugins 
uwsgi-plugin-alarm-curl uwsgi-plugin-alarm-xmpp uwsgi-plugin-curl-cron 
uwsgi-plugin-emperor-pg uwsgi-plugin-erlang uwsgi-plugin-rbthreads 
uwsgi-plugin-fiber uwsgi-plugin-geoip uwsgi-plugin-graylog2 
uwsgi-plugin-greenlet-python uwsgi-plugin-jvm-openjdk-6 
uwsgi-plugin-jvm-openjdk-7 uwsgi-plugin-jwsgi-openjdk-6 
uwsgi-plugin-jwsgi-openjdk-7 uwsgi-plugin-ldap uwsgi-plugin-lua5.1 
uwsgi-plugin-lua5.2 uwsgi-plugin-psgi uwsgi-plugin-pyerl-python 
uwsgi-plugin-pyerl-python3 uwsgi-plugin-python uwsgi-plugin-python3 
uwsgi-plugin-rack-ruby1.9.1 uwsgi-plugin-router-access uwsgi-plugin-sqlite3 
uwsgi-plugin-v8 uwsgi-plugin-php uwsgi-plugin-xslt libapache2-mod-proxy-uwsgi 
libapache2-mod-proxy-uwsgi-dbg libapache2-mod-uwsgi libapache2-mod-uwsgi-dbg 
libapache2-mod-ruwsgi libapache2-mod-ruwsgi-dbg python-uwsgidecorators 
python3-uwsgidecorators uwsgi-extra
Architecture: source all amd64
Version: 1.9.17.1-2
Distribution: unstable
Urgency: low
Maintainer: Janos Guljas ja...@debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 libapache2-mod-proxy-uwsgi - uwsgi proxy module for Apache2 (mod_uwsgi)
 libapache2-mod-proxy-uwsgi-dbg - debugging symbols for Apache2 mod_proxy_uwsgi
 libapache2-mod-ruwsgi - uwsgi module for Apache2 (mod_Ruwsgi)
 libapache2-mod-ruwsgi-dbg - debugging symbols for Apache2 mod_Ruwsgi
 libapache2-mod-uwsgi - uwsgi module for Apache2 (mod_uwsgi)
 libapache2-mod-uwsgi-dbg - debugging symbols for Apache2 mod_uwsgi
 python-uwsgidecorators - module of decorators for elegant access to uWSGI API 
(Python)
 python3-uwsgidecorators - module of decorators for elegant access to uWSGI API 
(Python 3)
 uwsgi  - fast, self-healing application container server
 uwsgi-app-integration-plugins - plugins for integration of uWSGI and 
application
 uwsgi-core - fast, self-healing application container server (core)
 uwsgi-dbg  - debugging symbols for uWSGI server and it's plugins
 uwsgi-emperor - fast, self-healing application container server (emperor 
scripts)
 uwsgi-extra - fast, self-healing application container server (extra files)
 uwsgi-infrastructure-plugins - infrastructure plugins for uWSGI
 uwsgi-plugin-alarm-curl - Alarm curl plugin for uWSGI
 uwsgi-plugin-alarm-xmpp - Alarm XMPP plugin for uWSGI
 uwsgi-plugin-curl-cron - curl cron plugin for uWSGI
 uwsgi-plugin-emperor-pg - Emperor PostgreSQL plugin for uWSGI
 uwsgi-plugin-erlang - Erlang plugin for uWSGI
 uwsgi-plugin-fiber - fiber loop engine plugin for uWSGI
 uwsgi-plugin-geoip - GeoIP plugin for uWSGI
 uwsgi-plugin-graylog2 - graylog2 plugin for uWSGI
 uwsgi-plugin-greenlet-python - greenlet plugin for uWSGI (Python)
 uwsgi-plugin-jvm-openjdk-6 - Java plugin for uWSGI (OpenJDK 6)
 uwsgi-plugin-jvm-openjdk-7 - Java plugin for uWSGI (OpenJDK 7)
 uwsgi-plugin-jwsgi-openjdk-6 - JWSGI plugin for uWSGI (OpenJDK 6)
 uwsgi-plugin-jwsgi-openjdk-7 - JWSGI plugin for uWSGI (OpenJDK 7)
 uwsgi-plugin-ldap - LDAP plugin for uWSGI
 uwsgi-plugin-lua5.1 - Lua WSAPI plugin for uWSGI (Lua 5.1)
 uwsgi-plugin-lua5.2 - Lua WSAPI plugin for uWSGI (Lua 5.2)
 uwsgi-plugin-php - PHP plugin for uWSGI
 uwsgi-plugin-psgi - Perl PSGI plugin for uWSGI
 uwsgi-plugin-pyerl-python - pyerl plugin for uWSGI (Python)
 uwsgi-plugin-pyerl-python3 - pyerl plugin for uWSGI (Python 3)
 uwsgi-plugin-python - Python WSGI plugin for uWSGI
 uwsgi-plugin-python3 - Python 3 WSGI plugin for uWSGI
 uwsgi-plugin-rack-ruby1.9.1 - Rack plugin for uWSGI (Ruby 1.9.1)
 uwsgi-plugin-rbthreads - Ruby native threads plugin for uWSGI
 uwsgi-plugin-router-access - Access router plugin for uWSGI
 uwsgi-plugin-sqlite3 - sqlite3 configurations plugin for uWSGI
 uwsgi-plugin-v8 - V8 JavaScript plugin for uWSGI
 uwsgi-plugin-xslt - XSLT request plugin for uWSGI
 uwsgi-plugins-all - all available plugins for uWSGI
Changes: 
 uwsgi (1.9.17.1-2) unstable; urgency=low
 .
   * Add patches 4b60307 and b190744 cherry-picked from upstream VCS, to
 support KFreeBSD. Drop similar locally created patch 1006.
   * Unfuzz patches.
Checksums-Sha1: 
 34f6e386d581c4d4646fdf264e229a597cb4b84b 5542 uwsgi_1.9.17.1-2.dsc
 ce622c7896773b7460c6845c16021d68fe796111 53130 uwsgi_1.9.17.1-2.debian.tar.gz
 420ed3d97bcf646d1c7ea3842bd87eb5610f2211 12728 
python-uwsgidecorators_1.9.17.1-2_all.deb
 2405d1cf8990a61b135f4dc904b717b2adfab045 12832 
python3-uwsgidecorators_1.9.17.1-2_all.deb
 5dc763a5ac9be7ab97af1f81889798f7646e6d23 29884 uwsgi-extra_1.9.17.1-2_all.deb
 fecbd3ba0fe995394c54eddf53670488b6f0fa3c 22812 uwsgi_1.9.17.1-2_amd64.deb
 6d403336868be0888a4e1675c90adff4b2f0bba1 1497274 uwsgi-dbg_1.9.17.1-2_amd64.deb
 d4bb447b79245554adec80cfbeb4f7bcfde2dd78 387308 uwsgi-core_1.9.17.1-2_amd64.deb
 5cfcc0dcb73170470dcf913c7111330d7c3bba5f 13130 
uwsgi-emperor_1.9.17.1-2_amd64.deb
 

Accepted python-amqp 1.0.13-1 (source all)

2013-09-25 Thread Michael Fladischer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 11:24:32 +0200
Source: python-amqp
Binary: python-amqp python3-amqp python-amqp-doc
Architecture: source all
Version: 1.0.13-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Michael Fladischer fladischermich...@fladi.at
Description: 
 python-amqp - Low-level AMQP client
 python-amqp-doc - Low-level AMQP client (Documentation)
 python3-amqp - Low-level AMQP client (Python3 version)
Changes: 
 python-amqp (1.0.13-1) unstable; urgency=low
 .
   * New upstream release.
   * Enable basic message tests.
   * Clean funtests/settings.pyc after each build.
Checksums-Sha1: 
 2e18c197092720d888db7b19b1df3901874fa11b 1651 python-amqp_1.0.13-1.dsc
 3f871a704b97528e7586efe1ff2adec26469ce05 70458 python-amqp_1.0.13.orig.tar.gz
 79731fd22438a083ce81fcdbf30ff8ad1ae9961c 2953 
python-amqp_1.0.13-1.debian.tar.gz
 415bdee1ad1ba4c4c2cf9fe62b718f221e1e46d7 34304 python-amqp_1.0.13-1_all.deb
 15310c7851dcf43ad9f3c9e56cf6656aa154ee2e 34146 python3-amqp_1.0.13-1_all.deb
 15dfbaff01b9b67511272d618ae7c558c199240a 48526 python-amqp-doc_1.0.13-1_all.deb
Checksums-Sha256: 
 338ca6e1c17fe7021f4f931be33d88ec43f4e689d1f2f51c2f2143f9a1da6a2c 1651 
python-amqp_1.0.13-1.dsc
 15fed1a2f0326f198a9d3d16ce1dc4296385d33859bd9f7c59705093fab8f53c 70458 
python-amqp_1.0.13.orig.tar.gz
 f8e5a9c3bc6d082d4a9e2a9a912316bcc518dd064406a7a82191b4828fdfe15c 2953 
python-amqp_1.0.13-1.debian.tar.gz
 e37b5d39b4b0f08214ba5c1418fe77b1cef11f65fafc23dcd4c77cbbd907e108 34304 
python-amqp_1.0.13-1_all.deb
 49a9fcb32cd1a6210a4737ca62608ad77700e55aab0ee0ab56bb8e5177b74a22 34146 
python3-amqp_1.0.13-1_all.deb
 275e3fb209abd892f300b03530d81838f484a006772bfd9be3b9eb4d59774101 48526 
python-amqp-doc_1.0.13-1_all.deb
Files: 
 a1efe740bf9862e474f5da9962682b0b 1651 python extra python-amqp_1.0.13-1.dsc
 33e9e59f71a396f9cdd5d5d6a3d2e5d5 70458 python extra 
python-amqp_1.0.13.orig.tar.gz
 b8fafc55902b2914c12b4e2fa5dc1cb1 2953 python extra 
python-amqp_1.0.13-1.debian.tar.gz
 8e57b1cbd045df3e5f387881adc98129 34304 python extra 
python-amqp_1.0.13-1_all.deb
 270f90768ab166d786d5a56c0c5c212d 34146 python extra 
python3-amqp_1.0.13-1_all.deb
 fa7799883d3cd820e4d0925810e59fa0 48526 doc extra 
python-amqp-doc_1.0.13-1_all.deb

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

iEYEARECAAYFAlJCrx0ACgkQl4M9yZjvmkm/QACfSIeYkVRx6ZrlRBgpLQle6veO
Z0IAoOLvcj5i1AUaaVPvAeJfPjo687Q3
=2IG/
-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/e1volik-0008cw...@franck.debian.org



Accepted check-postgres 2.21.0-1 (source all)

2013-09-25 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 10:31:10 +0200
Source: check-postgres
Binary: check-postgres
Architecture: source all
Version: 2.21.0-1
Distribution: unstable
Urgency: low
Maintainer: Peter Eisentraut pet...@debian.org
Changed-By: Christoph Berg christoph.b...@credativ.de
Description: 
 check-postgres - script for monitoring PostgreSQL databases
Closes: 718052
Changes: 
 check-postgres (2.21.0-1) unstable; urgency=low
 .
   * New upstream release.
 + t/02_disk_space.t: Skip if df doesn't work.  Closes: #718052.
 + t/02_last_vacuum.t: Commit content in test table so the stats can see it.
 + check_postgres.pl, t/02_locks.t: Sort lock types.
 + t/02_new_version_*: Skip if SKIP_NETWORK_TESTS is set.
 + t/02_replicate_row.t: Set MRTG test sleep delay to 0.5s.
 + check_postgres.pl, t/02_slony_status.t: Fix for 9.3.
   * B-D on libdbd-pg-perl 2.19.3 for testing PostgreSQL = 9.2.
Checksums-Sha1: 
 f979ac4e81a2c43708bedbc580ca84349f154f5a 2023 check-postgres_2.21.0-1.dsc
 88ddb1c35a8da0feeaad90036dd27d778551a36d 178511 
check-postgres_2.21.0.orig.tar.gz
 9e94e76e142e66dd7dd6307a26c0fe201571f53c 3347 
check-postgres_2.21.0-1.debian.tar.gz
 7d63410e6ec655359373ae3c6a3139660cf282d1 178522 check-postgres_2.21.0-1_all.deb
Checksums-Sha256: 
 97cf640652b5b8cdee8dceda59c7e9dc0542353bc6b5f51b0cd166fc850162fe 2023 
check-postgres_2.21.0-1.dsc
 e0fdfe9c0d8188b6bb52896c87257a35311f5aea0f0e2ce332961be034314298 178511 
check-postgres_2.21.0.orig.tar.gz
 d884c36faa7d20be14ef4b880c707535bd9b20de8bdbf850d0808e4406606d18 3347 
check-postgres_2.21.0-1.debian.tar.gz
 75d2340d1f336f49d6a565724c9d37e0b7c6d824ed8bb77d9810e1856eede969 178522 
check-postgres_2.21.0-1_all.deb
Files: 
 505eab17056692f76c80d9613243aa83 2023 database optional 
check-postgres_2.21.0-1.dsc
 c27dc6daaf75de32fc4f6e8cc3502116 178511 database optional 
check-postgres_2.21.0.orig.tar.gz
 5b7b682b24ddea6ab33c0fb330dcd813 3347 database optional 
check-postgres_2.21.0-1.debian.tar.gz
 1b175ad1c61f8d922dff80b10a3bdd52 178522 database optional 
check-postgres_2.21.0-1_all.deb

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

iQIcBAEBCAAGBQJSQrNiAAoJEExaa6sS0qeuwt8QAIg1YhNM3DFBKMPxHcLsDQza
P8O4kIqd8tfkdqBh40Zqy55rNQsJVYHbjupYX+bkjlNSrveCKnADZf6PZenfjK3l
nsU7uY3LxcoJ42vVKIgeHcLcxX5KEJHh9GqoTRJRRuLj7bWp2C/us/Af5lz8k5IB
1+IBSnhDQmxXJvBhDKkVrVxEYMRo3Z3w2JsCJevO8cbh0293C9yEF0xo9JfQGSQo
DnIg6q1csCkBy9lKAkVZ3sDXR1Wljb+76QebBwFGi5F1NoRs1MVvHFdsogZBmLXK
qPCPmcq61Dfn2OK4C92RIVsSYRzpg9b2PauLr28eyCrg1yldfpukmJ5d5DaACISw
anD9sYLLa57FbIOAaUxt8udva+Plee+PqanjRoNhZmVT9ez8vKwGvrKitOjPSzzQ
zRXlXgKQodQPP499E4m2rD4FsakYGOEOQeDImnUc649au/kF/WF51b6e1bHoM2lS
APJ6bSi8e6ZFVnC6Itep7ev8qcFJG0dcVzyF7ffbPx/9kIM53ajZqRabX2FlQyVz
ns39Pk0neFAQ7xQLBxiOvUCj+AMyQb5abOqubzQuUaRZXhwc+mTiI/hvspGfHfSR
Hi8AJWUAuG1U0I5mdh/HXrnrp2N75Qzdg3lHG64320/Lf88nPpLAn3dKzd/F9FRn
nc9EPzG6iohjj52+MrjR
=Yg3h
-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/e1volwr-0004fs...@franck.debian.org



Accepted kombu 2.5.14-1 (source all)

2013-09-25 Thread Michael Fladischer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 02 Sep 2013 19:40:58 +0200
Source: kombu
Binary: python-kombu python-kombu-doc
Architecture: source all
Version: 2.5.14-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Michael Fladischer fladischermich...@fladi.at
Description: 
 python-kombu - AMQP Messaging Framework for Python
 python-kombu-doc - AMQP Messaging Framework for Python (Documentation)
Changes: 
 kombu (2.5.14-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump debhelper Build-Depends to = 8.1.0~.
   * Bump Standards version to 3.9.4.
   * Bump Depends and Build-Depends on python-amqp to = 1.0.13.
   * Add python-librabbitmq to Build-Depends and Depends as the preferred
 alternative to python-amqp.
   * Add python-beanstalkc to Build-Depends and Suggests.
   * Drop temporary workaround for Metadata-Version in d/rules.
Checksums-Sha1: 
 cd6ff4fe877486c67899f1a71ce712f43360ac29 1773 kombu_2.5.14-1.dsc
 256dc8217719c07e49299bc19626e6f99cfea180 307139 kombu_2.5.14.orig.tar.gz
 236b07f3ede59a691b06f50c3014b2488ae057aa 5632 kombu_2.5.14-1.debian.tar.gz
 95a4562bee4392b748edc7da25b929c864350e55 140576 python-kombu_2.5.14-1_all.deb
 0e21f975cb83a8935e3cd5fd113cc7169d1f2d89 197442 
python-kombu-doc_2.5.14-1_all.deb
Checksums-Sha256: 
 3c6a98f5137155eb12475013c7c8516ffb4eeb0364938107e6519f49a4d1d37a 1773 
kombu_2.5.14-1.dsc
 2a480d8d676f584f6b7a399514f5effa96ced2ce7b37ff975f2c8d16e154e5b4 307139 
kombu_2.5.14.orig.tar.gz
 627445ab1954a21524ead47928993c1de5f454d7c0ce6db80c9bb73081963259 5632 
kombu_2.5.14-1.debian.tar.gz
 b9e6ddbf6455dad4485f0e7899be5111318d38f9437af1a081abdebee15121f2 140576 
python-kombu_2.5.14-1_all.deb
 17bc52f104e3446cc82d1c6f61ec061d72c7bffc96a4b2a0b3188ae29a0e88fe 197442 
python-kombu-doc_2.5.14-1_all.deb
Files: 
 83f37790af746ff6c833ed7f60af13ae 1773 python optional kombu_2.5.14-1.dsc
 72281e32ea18c644c840325c6ca1d0ce 307139 python optional 
kombu_2.5.14.orig.tar.gz
 37fbb3bf264c0e60ae8ed8ae61cf0a1c 5632 python optional 
kombu_2.5.14-1.debian.tar.gz
 89d653dfbcb1c79fb25918829ac86a54 140576 python optional 
python-kombu_2.5.14-1_all.deb
 1e4f74dec3bb2e8cc56824c608c1630f 197442 doc optional 
python-kombu-doc_2.5.14-1_all.deb

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

iEYEARECAAYFAlJCsZ0ACgkQl4M9yZjvmkk7sQCgg9937GElCBkPpVzlCrqV4Du/
Fi8AoIgKMF/Xjli/Dw+pTjYShWHdFg7I
=ZXHX
-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/e1volwy-0004oj...@franck.debian.org



Accepted multiboot 0.6.96+20101113-1 (source all)

2013-09-25 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 10:49:53 +0100
Source: multiboot
Binary: multiboot
Architecture: source all
Version: 0.6.96+20101113-1
Distribution: unstable
Urgency: low
Maintainer: GRUB Maintainers pkg-grub-de...@lists.alioth.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 multiboot  - The Multiboot specification
Closes: 554187 713606
Changes: 
 multiboot (0.6.96+20101113-1) unstable; urgency=low
 .
   * New Bazaar snapshot.
   * Use dh-autoreconf.
   * Convert from texi2html to makeinfo.
   * Drop cdbs; convert to debhelper v9 and dh.  Make sure to disable
 stack-protector and other hardening features which would otherwise be
 enabled by default.
   * Build-depend on gcc-multilib on amd64, so that -m32 works; although
 building this package on amd64 is really only relevant for test rebuilds
 (closes: #713606).
   * Move /usr/share/doc/multiboot/examples/kernel.gz to
 /usr/lib/multiboot/examples/kernel (now uncompressed), and leave a
 symlink behind.  While the previous version was tolerable since this
 file is included only as documentation, doing it this way causes less
 surprise and requires one fewer Lintian override (closes: #554187).
   * Add myself to Uploaders.
   * Remove obsolete DM-Upload-Allowed field.
   * Convert to source format 3.0 (quilt).
   * Add a Homepage field.
   * Drop lenny compatibility in install-info dependencies again; lenny is no
 longer supported, and the hack to support it here may cause upgrade
 problems.
   * Add Vcs-Bzr and Vcs-Browser fields.
   * Policy version 3.9.4.
 .
 multiboot (0.6.96+20100115-1) unstable; urgency=low
 .
   * New Bazaar snapshot.
   * Move to Bazaar branch instead of tar-in-tar + debian/patches.
 .
 multiboot (0.6.96-2) unstable; urgency=low
 .
   * Allow installation on Lenny.
Checksums-Sha1: 
 19bd374166843ed4ffb637dbf242907af8acaee5 2240 multiboot_0.6.96+20101113-1.dsc
 b9f7afd3e06031e446d15dc4647f8178c8e29b96 258755 
multiboot_0.6.96+20101113.orig.tar.gz
 828316bdaea1f4f432551e9399e55d3f02b71bba 3853 
multiboot_0.6.96+20101113-1.debian.tar.gz
 b45524fb5ad1b76c164e6c5fdbef067bc3f43486 61122 
multiboot_0.6.96+20101113-1_all.deb
Checksums-Sha256: 
 d55277af4d9c3d603c91379e4ad54706e23b86556571afc212acd4bd2aa11034 2240 
multiboot_0.6.96+20101113-1.dsc
 95e0706050e66cc29278c83194ee91549347a241129b8dcf1a84b1de821e1b1b 258755 
multiboot_0.6.96+20101113.orig.tar.gz
 2caf9a9c5cb11cfc3f55e27751d843f09d99615f489c3ba07d6bd489b7acf4c6 3853 
multiboot_0.6.96+20101113-1.debian.tar.gz
 9e56982f72f149dff4c1ea7c0dafc296dc6764c056faa0f6bb9696a2dcb41ad4 61122 
multiboot_0.6.96+20101113-1_all.deb
Files: 
 7f3bbfa4774f91b904d784748f86fe88 2240 doc optional 
multiboot_0.6.96+20101113-1.dsc
 b6f023572a4f5790af2217a9e819f21b 258755 doc optional 
multiboot_0.6.96+20101113.orig.tar.gz
 22928e14b5e70fc278a2cabe67939b4b 3853 doc optional 
multiboot_0.6.96+20101113-1.debian.tar.gz
 960e5e4de2f15f80ecfad3d90d3089db 61122 doc optional 
multiboot_0.6.96+20101113-1_all.deb

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

iQIVAwUBUkKzgTk1h9l9hlALAQg86Q/+M6oKohrfxtO5EXZkVTnLBrK9RPf5emb8
1oQhDEilwjukadktOO46yQj1EyfkYepPSqiaugMp8gmHDrFSoE3ipSvv1Y+7L6g+
LuRX+tG+ttpaIvTESYavbIfi4BeX7UPvYcj9DRgNnbQPFWqoGAtZuvCiAsGO2s4I
EzAizTLO2Ns4sdSZVLJQuMIMP7FrU5PMFd+9xc6iX0xkE/Sort/+7Opb+TJyMiYz
BaQ+YOxQH3gHs4XaIV/s+bZWQiL2MMPjj6CaxKG0PP5FWswPgrhjb4DfuXQqhIiK
OlFtzNEgryhdjFjSynwG8Ad7G6VMjXkInczERzKNr9pEPb5IgkayvlcPQqza/s7W
lATpOhBzc8WptPZqMpmDr0GndfeGdAzGo7fMqkemwAKSqP63J8dxUdYhe0C9yKWw
zh5p0I+K1/c5nY3rAtMylkBZdkftmbJNGUTeiRGXQjnoRP29dg9coFBTVxl2yb+j
lqrr30Eda4POF7+yxcQpjzXX3fVQyXhzyuF32VuhKv3r0BG6wi8aNZ2+FB8mbEfq
1hzbkDUdqJc5MCU5T1Tt+BNU33tFHyVO9ELmgzeVshaIngLhoLQOSTNigpkbkqnw
QNOeYqKLae8qjb7j6SLanyzdoL9BiincNJN1H4bf+ac9Lg0sbzAk/VydoMn7CvXx
iPHCE/Cd60A=
=X0CS
-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/e1volwf-0004ag...@franck.debian.org



Accepted darkplaces 0~20130304+svn11952-1 (source amd64)

2013-09-25 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 10:19:53 +0100
Source: darkplaces
Binary: darkplaces darkplaces-server darkplaces-dbg
Architecture: source amd64
Version: 0~20130304+svn11952-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Simon McVittie s...@debian.org
Description: 
 darkplaces - Game engine for Quake and similar 3D first person shooter games
 darkplaces-dbg - debug symbols for the DarkPlaces game engine
 darkplaces-server - Standalone server for Quake-based games
Closes: 721031
Changes: 
 darkplaces (0~20130304+svn11952-1) unstable; urgency=low
 .
   [ David Bate ]
   * Imported upstream version 0~20130304+svn11952, as recommended for
 Xonotic 0.7.0
 - refresh patches
 - updated debian/copyright
 .
   [ Simon McVittie ]
   * Provide quake-engine, quake-engine-server - we already followed
 everything required for that by my Quake mini-policy, except providing
 the actual virtual package. (Closes: #721031, thanks Fabian Greffrath)
   * Update README.Debian:
 - nexuiz, nexuiz-server now use this package
 - quake, quake-server are available in contrib, and are the recommended
   way to play Quake in Debian
 - describe how to manipulate the alternatives entries
   * Fix attribution on kFreeBSD support patch, it was really contributed by
 Cyril Brulebois
   * Release to unstable
Checksums-Sha1: 
 7351ff9660a3a1d67417c227b60d69c6391c3c46 2325 
darkplaces_0~20130304+svn11952-1.dsc
 2735f770dc3eda6832168e114a6e2cc214ceb5d0 2033170 
darkplaces_0~20130304+svn11952.orig.tar.gz
 96e315b2e5b53d003e87415ae4915e2b02acf00e 40831 
darkplaces_0~20130304+svn11952-1.debian.tar.gz
 c9a545b247c9c20f2902e097deaaafef96f251a8 1210388 
darkplaces_0~20130304+svn11952-1_amd64.deb
 a0c224cda843644ca5f9652e540e450673cf798f 1170262 
darkplaces-server_0~20130304+svn11952-1_amd64.deb
 d39ef40219bdc31be2eb662fab5d779edc7836a5 6354400 
darkplaces-dbg_0~20130304+svn11952-1_amd64.deb
Checksums-Sha256: 
 0a10a789e9496fc0b89fa74136e5cc9f9986bbec21b470c06f6b8466527309b4 2325 
darkplaces_0~20130304+svn11952-1.dsc
 02a4e9b2815af744c49df0aa1c6d6cd9e10fa18456aadd9596e8fd64ce15b658 2033170 
darkplaces_0~20130304+svn11952.orig.tar.gz
 ad060fde19ad14c1b1424e7296fe81089ab43bb4378ee462e00cce5b9d184b5e 40831 
darkplaces_0~20130304+svn11952-1.debian.tar.gz
 260f9f8ef8826e998869e100fde9291fdacdba1e6c3e368fcec5d0e415facb21 1210388 
darkplaces_0~20130304+svn11952-1_amd64.deb
 30119dbec024dee983ab9f92959c8b4dddf74477377b9d58d90eb03091152b28 1170262 
darkplaces-server_0~20130304+svn11952-1_amd64.deb
 408f28a2de6fdafcb2d7fc31efffee093dbe9de63599cd2c41757faa35b027a5 6354400 
darkplaces-dbg_0~20130304+svn11952-1_amd64.deb
Files: 
 bc69711956ea5720fef73c8d2188e642 2325 games optional 
darkplaces_0~20130304+svn11952-1.dsc
 a32d4fba77a994e5ff1615a2442cc806 2033170 games optional 
darkplaces_0~20130304+svn11952.orig.tar.gz
 574c9aa0b7c3eb881d9230dd302a4ac9 40831 games optional 
darkplaces_0~20130304+svn11952-1.debian.tar.gz
 f62f6741ef3f91a91184b580a758c901 1210388 games optional 
darkplaces_0~20130304+svn11952-1_amd64.deb
 a692d9f1bf0ae08af13c2beea62ec096 1170262 games optional 
darkplaces-server_0~20130304+svn11952-1_amd64.deb
 253941c7d26ee5e4ee99d85416fd1381 6354400 debug extra 
darkplaces-dbg_0~20130304+svn11952-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIVAwUBUkK0vk3o/ypjx8yQAQgGzhAAhFzLwQvSuR562mRXeTNRFfEqcNUx2RVU
Luxnw3XOU14v/AgJyhW/5dI4gTR2WHNGPAKpcr5qY6RIizG0FpnqlJMXuY9c/bCu
Fj0soSBrrHZynBWP+BMwOt+tPK0bTqeYJkoDXoP2yPZWueiI3quHU4ZTdDknlNw+
IS8LHdGW/iFF+nB01uM1x0XPKhsd5JXHL4rzcQo9+HA5d0QW/m3bNtoAsh8iunu6
7yS3ztxmpVPwZZe/Cbv8ER2THExGI2LUattYTarRmcQH3rIHgJin2k1Ol4kCnDbQ
iA23raToSQoGV0efgrc7K72g4Le5gZHNsPFqwtN7ScszFk91L0gR8URX1kPgG0O3
cU+R03jXk9qrdDfGMK2zYQEL1SDhFRHareAxb64Bxg8BUI1SDmH/27b/7MB4tuDY
zT8yYGSr5aJjJpJ9qFGEv4KwZ3rj3eD4EdKxskzHIspX+iq5iznnNMcqFGoU8EA9
TaRzvAYxafuT461CIGj9PjAF18Wt8QJ15F6N42p+ACG4dASZ34/4nJtu4m0b0NDo
2CNkV5PFWUp1oTvgtHe8BoAS1TpepUscsLu2xMsuCpwNLshSt8pk4V9jGyZyaSse
P6nCAi6Ok5utbtJ0Eo3/2gURlRwTu+0A30br2VN+cYgTbX+SkwZnDkPaMzc+5aPo
Zvq3YZXvmWM=
=aVte
-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/e1vomay-xi...@franck.debian.org



Accepted popa3d 1.0.2-8 (source amd64)

2013-09-25 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 11:07:29 +0200
Source: popa3d
Binary: popa3d
Architecture: source amd64
Version: 1.0.2-8
Distribution: unstable
Urgency: low
Maintainer: Krzysztof Krzyżaniak (eloy) e...@debian.org
Changed-By: Krzysztof Krzyżaniak (eloy) e...@debian.org
Description: 
 popa3d - Tiny POP3 daemon, designed with security as the primary goal
Changes: 
 popa3d (1.0.2-8) unstable; urgency=low
 .
   * use new tiny debhelper rules file
   * debian/compat: upgrade to 9
   * debian/control: bump dependency for debhelper to 9
   * Bump Standards-Version to 3.9.4 (no changes)
   * Remove article from short description
   * Add init-functions to init.d script
   * debian/rules: use /usr/share/dpkg/buildflags.mk
   * Switch to dpkg-source 3.0 (quilt) format
Checksums-Sha1: 
 23dfbfd1b2bb31bd23212a9afae3348a19676f28 1067 popa3d_1.0.2-8.dsc
 85779cfc657050352b3bcda5ca7f1dfe7ac4e92b 32848 popa3d_1.0.2.orig.tar.gz
 ce3615eefde5d9705cd1a825489d33c8aebb4f62 13608 popa3d_1.0.2-8.debian.tar.gz
 630a4bb93fe16fe98a03c18c3c7005df9a330c90 33314 popa3d_1.0.2-8_amd64.deb
Checksums-Sha256: 
 c99539d1e73e2a992c7966911fce2f9e8d65c4c526891ec4865765fbf01fd509 1067 
popa3d_1.0.2-8.dsc
 e7034336c1e4b6ed1ddff7c92851292d396d011237acb2268492f44cedbb7a7f 32848 
popa3d_1.0.2.orig.tar.gz
 bd4ddb5707bca13076365fa115fd6bffba401487df1f62cdcd2d000a6865c025 13608 
popa3d_1.0.2-8.debian.tar.gz
 2854f0dd6cf949c0f4afcccbf6eeb806ac6d0a0a6b0a8d2254b53777434690f4 33314 
popa3d_1.0.2-8_amd64.deb
Files: 
 3bbada6cfa407301cbbfa23680ecd6fd 1067 mail extra popa3d_1.0.2-8.dsc
 cebdc56b6fa0655a5688c89cb7703b66 32848 mail extra popa3d_1.0.2.orig.tar.gz
 d78586377c30b7deba2b2420a9bf2257 13608 mail extra popa3d_1.0.2-8.debian.tar.gz
 e25e45d2e869adcd37ca4da311ee8727 33314 mail extra popa3d_1.0.2-8_amd64.deb

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

iEYEARECAAYFAlJCtjoACgkQy+HP4f7iC8sP4wCeI6U7dM7/90Be47r7AKmPMPL2
LGAAnRS4gMUKwM0WrD1NZ7qg6sUL64AQ
=ojCm
-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/e1vomb5-ic...@franck.debian.org



Accepted quakespasm 0.85.9-1 (source amd64)

2013-09-25 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 10:32:48 +0100
Source: quakespasm
Binary: quakespasm quakespasm-dbg
Architecture: source amd64
Version: 0.85.9-1
Distribution: unstable
Urgency: low
Maintainer: David Banks amoe...@gmail.com
Changed-By: Simon McVittie s...@debian.org
Description: 
 quakespasm - engine for iD software's Quake
 quakespasm-dbg - engine for iD software's Quake - debug symbols
Changes: 
 quakespasm (0.85.9-1) unstable; urgency=low
 .
   [ David Banks ]
   * New upstream release.
   * Refresh upstream changelog.
 .
   [ Simon McVittie ]
   * Update debian/copyright
   * Upload to unstable
Checksums-Sha1: 
 e761cf906b6cde8d00da0e7e74d103197d4c25db 2073 quakespasm_0.85.9-1.dsc
 eb6877f3b0aa94b89957c8b4b2f66f8f4a19b7ab 1168265 quakespasm_0.85.9.orig.tar.gz
 0244db303c6438db5b0c2f11e6407cb56c5e6daf 67697 
quakespasm_0.85.9-1.debian.tar.gz
 29b5fadd8bba6eba4ada76ff9f58d87762a15b5f 367218 quakespasm_0.85.9-1_amd64.deb
 54c0ee13f593fed3ddb3b9ffea0bd4ab51763ec9 605188 
quakespasm-dbg_0.85.9-1_amd64.deb
Checksums-Sha256: 
 1e17683e6167b52e933d354682d816ee764e402433bfd73a9c9db836c90d0809 2073 
quakespasm_0.85.9-1.dsc
 34a0adb8c43fe48d9647ec713188c3876e85fba00e449892beec170ce1b4d677 1168265 
quakespasm_0.85.9.orig.tar.gz
 a1e345a21871607779f36043cc93c7b515490bd6a4803484b3854e5c506f4a4d 67697 
quakespasm_0.85.9-1.debian.tar.gz
 6a77d70cd92692701cbbba85209b8fad2debdcf396c5a376886e157b2a69c3b8 367218 
quakespasm_0.85.9-1_amd64.deb
 9ac1f2cc4a4a46cfe0ccbd0aeb096eb1ec6c873f40620b9cc5248a825f0fa7e1 605188 
quakespasm-dbg_0.85.9-1_amd64.deb
Files: 
 60a8853283d4e29f6a458f1dc4fb6adb 2073 games optional quakespasm_0.85.9-1.dsc
 18fba83149bbb7082f0f858c56061fcc 1168265 games optional 
quakespasm_0.85.9.orig.tar.gz
 cfea8968959170bc72fb92848e999660 67697 games optional 
quakespasm_0.85.9-1.debian.tar.gz
 3c28790433e507a5d4c231c4a90ee7a2 367218 games optional 
quakespasm_0.85.9-1_amd64.deb
 2675f28d5bc77a1d66e3ee0f6a03630f 605188 debug extra 
quakespasm-dbg_0.85.9-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIVAwUBUkK0v03o/ypjx8yQAQhqiw//dTMzONWrHa70PPKbkfhN2WoHWs4XC+KB
djC+lYfiBLNJ2HrOMOUmu294DBmSPsLztPKTxMgRrmmvZpeFJ8sx91h0tDoe80rN
9Nahl1DF3bKxT0EBRNft+SZxLbNF+yQirqK/gplfN6kkmvBzJ6FLVwCv0hp1uy6I
ENzALqV94S0aPBvh34dOV+YZPpoFrZ1oloGLesVqXVFxiSV1RPTaetlo9pOIbQON
F3k+67mNM5fHVEBzTkPG4r8pP2he3CD3DxODcwquueurh2ivKuO9bWLt1h8cm2QR
cIG7P3uyVlLDRRg55Gm6U3+uIUgdIfrc8z8g+g1oS+4rtc3JstbyntWB0dS8XO4w
YmUJ+YmDn+i1OWjIk34NitOF2MZ/NvCmzxerjSR656/Ax7VhXzRUxX1DMvSdLrrh
DBKuuQWYMKzyDPLBPxf/iCWLN71sUV3IrWIW4i7ZUvPPKgacLo68nCQHUO8G/YOq
Mr1kZR0B+4YdbyuBKc7y64vq9WRMFC8NtRMv6Z0aettKOATbznBM5g0Oj+AGZeWU
qwpR0nRAJBJgaUeZsOoZJwWUV3t7uGwaOYwmHZwVOzRtVt98aM/lHi41XJJRHTzt
m2akkrYjSIYtE7UnTbFPAz0G64n+4xOn9sSrDM4Z1abe/QawTyQ5dFggohvVyVsm
k3xPIjcmI7o=
=Vsyw
-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/e1vombd-tj...@franck.debian.org



Accepted atk1.0 2.10.0-2 (source all amd64)

2013-09-25 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 12:30:04 +0200
Source: atk1.0
Binary: libatk1.0-0 libatk1.0-udeb libatk1.0-data libatk1.0-dev libatk1.0-dbg 
libatk1.0-doc gir1.2-atk-1.0
Architecture: source all amd64
Version: 2.10.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gir1.2-atk-1.0 - ATK accessibility toolkit (GObject introspection)
 libatk1.0-0 - ATK accessibility toolkit
 libatk1.0-data - Common files for the ATK accessibility toolkit
 libatk1.0-dbg - ATK libraries and debugging symbols
 libatk1.0-dev - Development files for the ATK accessibility toolkit
 libatk1.0-doc - Documentation files for the ATK toolkit
 libatk1.0-udeb - ATK accessibility toolkit (udeb)
Changes: 
 atk1.0 (2.10.0-2) unstable; urgency=low
 .
   * Upload to unstable.
   * debian/libatk1.0-0.symbols: Add Build-Depends-Package field.
Checksums-Sha1: 
 77e9367480ea18aced3d4b0ec9cd56651d7e24ce 2669 atk1.0_2.10.0-2.dsc
 27d402d9fb144d91549cc460547d9f1dfee76521 10958 atk1.0_2.10.0-2.debian.tar.gz
 10b12bcb850ef78449c20acbb208d937e9aa0617 170608 libatk1.0-data_2.10.0-2_all.deb
 5944d198d7276a69abe877bfda3b3c7a54bd4cde 126304 libatk1.0-doc_2.10.0-2_all.deb
 01dba295e557741f0cd9ee247fd151b1684a3edd 85388 libatk1.0-0_2.10.0-2_amd64.deb
 fcc51aadb5d270411c518a59c75d7bb175bd1f13 36642 
libatk1.0-udeb_2.10.0-2_amd64.udeb
 ccc5ec7fc981942b1b6d4a834725693bf8f3aaea 114096 
libatk1.0-dev_2.10.0-2_amd64.deb
 784dbc9d345c5631cf9d1ff0a20ad94f977d3701 183112 
libatk1.0-dbg_2.10.0-2_amd64.deb
 5837155fb765c7f2646ca26205498b6dfe6cac63 62084 
gir1.2-atk-1.0_2.10.0-2_amd64.deb
Checksums-Sha256: 
 3d26b5f49c58e3ac4a972093e44bcf8e6e50f5f8bcb08c7d95bc8fbcf17d63be 2669 
atk1.0_2.10.0-2.dsc
 d94fd4fad5632ae1a5e5b0340225e75ab2a8856707f59d474caeb3a366b1b0ef 10958 
atk1.0_2.10.0-2.debian.tar.gz
 ad2f429344d94c298acb452b16914de668ae7fd9985e6764f448e5d77f6bf613 170608 
libatk1.0-data_2.10.0-2_all.deb
 d37e59a43df0ce4bcf363442323b1f97a864421dbdece7b24e64602cc4de6894 126304 
libatk1.0-doc_2.10.0-2_all.deb
 feffc7958c2fdca8ec502319bc5334d2596251f356ea40e209f2790bb0c585db 85388 
libatk1.0-0_2.10.0-2_amd64.deb
 e389310ee0fd4a519a0c932278fdbe71dd8ead39dbccfa5cd8f801a86cc01d41 36642 
libatk1.0-udeb_2.10.0-2_amd64.udeb
 ae006feb7a88ec07dd503e77782ad04047973a52abbcb6edaef09a1524761979 114096 
libatk1.0-dev_2.10.0-2_amd64.deb
 bf1c741c31be0248cd95d77146e065520e2505194dfcf6f05d4f538ae63fdc46 183112 
libatk1.0-dbg_2.10.0-2_amd64.deb
 2afa0b0cc2e8f31a0e97524df28bfe8acf5b691e60cbc80671cd345437b712ff 62084 
gir1.2-atk-1.0_2.10.0-2_amd64.deb
Files: 
 33a91cdc9c0c420bab2dcfbe0a490940 2669 libs optional atk1.0_2.10.0-2.dsc
 c51727b45a0e071cdc20d3e9932cfc6f 10958 libs optional 
atk1.0_2.10.0-2.debian.tar.gz
 cc2f64adf52e675880c9ccee306a85a2 170608 misc optional 
libatk1.0-data_2.10.0-2_all.deb
 8eda42536187ce86d7a6963ff8d3ed6b 126304 doc optional 
libatk1.0-doc_2.10.0-2_all.deb
 d72582bdade3dc2a8c50a1b0a47c2953 85388 libs optional 
libatk1.0-0_2.10.0-2_amd64.deb
 ad0c63479758c889c23e2bfbc22b9452 36642 debian-installer optional 
libatk1.0-udeb_2.10.0-2_amd64.udeb
 bfa1b8a5fc6195e2f5b613bfc4ecc6cc 114096 libdevel optional 
libatk1.0-dev_2.10.0-2_amd64.deb
 f37e6ca584ffc10c36712a791c3a42b3 183112 debug extra 
libatk1.0-dbg_2.10.0-2_amd64.deb
 75b3bd41737dbe3de868781c8f1268e0 62084 introspection optional 
gir1.2-atk-1.0_2.10.0-2_amd64.deb

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

iQIcBAEBCAAGBQJSQrvxAAoJEGrh3w1gjyLc6OUP/iqIL9MNB01wGAz5zcksopMk
EmSHhWbalACPoaAd6opfn8ILEvnKxjdL0KIX50d8rxxE6f9Y1pimIMIq/T1ZrpVb
10RP6b/kp+xk49ZHO8YbN+IcoDXTzQ8uliHS48RHZbrGVKtWHfJunDEV2xoDM0ht
B+FQGtsbeyLg+KIBvR9oZdu8av5cnXkPutSYCtwPft06X2Pl7HAV/le1pkUCHFpd
dkLip34vLrFs/r0lOjAHt/YDOKxjqeseITc2VT0RxvfLVL0jdoTlhlnXVaOH6a8n
npfjs0+z6jSGvSejOVXS6LldZiBMli7Mt5BdmYSDZJ0VjdtC2clgVcXKED41IQCx
HAq380OL6PzjkZl1RZrTI3jcag4vBhXbd+IqaHYbQbuBV0OkoqapLiF766ThYBhh
Gc9lEma8rvFxrX79eiDte4hJXs9gtjq98/cmNbC1fz35tv/z6V49hcdOa42yVrQL
ky5mjYNngX6ILMn87TDpZQEY+OYKQXzwASpKNucrpXCXAxbEqFTBIcghD+VrQu0o
Qrpr7bFLqigFtwEV3LTIGQdrmCNCpG81WYnmWduE33vbHlYUSBwGOvltxNhWFuZE
gV7/9WYZWKIjSsR2FBYv+bCoMH6Skp+pQ2f0f3Tb45HcO2qLDU4eFZFy9L7sPx+u
94EO8yrCsgYq+OiWAmKs
=YixH
-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/e1vome6-0002aj...@franck.debian.org



Accepted glib2.0 2.38.0-1 (all amd64 source)

2013-09-25 Thread Iain Lane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 25 Sep 2013 10:37:50 +
Source: glib2.0
Binary: libglib2.0-0 libglib2.0-tests libglib2.0-udeb libglib2.0-bin 
libglib2.0-dev libglib2.0-0-dbg libglib2.0-data libglib2.0-doc libgio-fam 
libglib2.0-0-refdbg
Architecture: all amd64 source
Version: 2.38.0-1
Distribution: experimental
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Iain Lane la...@debian.org
Description: 
 libgio-fam - GLib Input, Output and Streaming Library (fam module)
 libglib2.0-0-dbg - Debugging symbols for the GLib libraries
 libglib2.0-0 - GLib library of C routines
 libglib2.0-0-refdbg - GLib library of C routines - refdbg library
 libglib2.0-bin - Programs for the GLib library
 libglib2.0-data - Common files for GLib library
 libglib2.0-dev - Development files for the GLib library
 libglib2.0-doc - Documentation files for the GLib library
 libglib2.0-tests - GLib library of C routines - installed tests
 libglib2.0-udeb - GLib library of C routines - minimal runtime (udeb)
Changes: 
 glib2.0 (2.38.0-1) experimental; urgency=low
 .
   * New upstream release
   * debian/patches/0001-gio-Fix-typo-in-the-org-freedesktop-DBus-path.patch:
 Cherry-pick patch from upstream to fix object path typo in gio (LP:
 #1227295)
   * Add --enable-debug=minimal explicitly to the deb build so the debugging
 level doesn't change between pre-release and stable versions.
Checksums-Sha1: 
 3c34df8df81a06dabf8b32b86dd5c2db61088670 1936940 
libglib2.0-data_2.38.0-1_all.deb
 cc0673a54f4b1fc5c52e1a593658b0587881eb07 2404662 
libglib2.0-doc_2.38.0-1_all.deb
 81a85670be862663b4e98312e09cb77803e9a336 2147534 
libglib2.0-0_2.38.0-1_amd64.deb
 a1dd9c10dee448a09e40dbc5a7fcaccf8f7c71cf 1887968 
libglib2.0-tests_2.38.0-1_amd64.deb
 d8e00867bc39f31fe348c6977bcf74ab30149c90 1721862 
libglib2.0-udeb_2.38.0-1_amd64.udeb
 e130cec98db6d6834b5813138fda0147afa4184f 1137574 
libglib2.0-bin_2.38.0-1_amd64.deb
 9066c63a7470429393b3a9c8b0de90d6b200 2385632 
libglib2.0-dev_2.38.0-1_amd64.deb
 2260ac924bb8c58d516c8b18ee687d24f288 5165558 
libglib2.0-0-dbg_2.38.0-1_amd64.deb
 d8dda492e0b405fd71ee25d62ecb2af3647850bf 1487774 
libglib2.0-0-refdbg_2.38.0-1_amd64.deb
 d306633653ad3c043aa815aa279fd5108783d7b3 3019 glib2.0_2.38.0-1.dsc
 d01b16740bc90de6357fb44d80ce140dfa90da8f 6679660 glib2.0_2.38.0.orig.tar.xz
 0b474edc7045264ca88f3c114cebe25b6c878523 69398 glib2.0_2.38.0-1.debian.tar.gz
Checksums-Sha256: 
 429f1ecee71a6c8f309869954e15937a267966c9a76012d98fe95c811495d4f3 1936940 
libglib2.0-data_2.38.0-1_all.deb
 03c0df4049235c170b8c22383ee7f8ac9e161ddd7ac7eeb3fa86a2b78c3fa995 2404662 
libglib2.0-doc_2.38.0-1_all.deb
 c4f6800f30149846a08df35084665abf39ee0efce808727f7daa0f5daea1578c 2147534 
libglib2.0-0_2.38.0-1_amd64.deb
 ad17356fbc38862922975388278997a7d784649e2d83c3921caf951a019bae7b 1887968 
libglib2.0-tests_2.38.0-1_amd64.deb
 b4426bd4d486447732a712ae95513e6d92a21b8562c4902123b4bf9fce6b8e23 1721862 
libglib2.0-udeb_2.38.0-1_amd64.udeb
 754322e7fcd6e3f87f6fa4c4aa286b3947462facbfea648fe0f54cb4b1a306d5 1137574 
libglib2.0-bin_2.38.0-1_amd64.deb
 a1705447837d6818b6ff134feacaa14f494dbf5fe40e0c1ba62e76590e32e898 2385632 
libglib2.0-dev_2.38.0-1_amd64.deb
 4feef01eea2a98d85f42ab939c0ae86d582ac0383338d8002edce78a274f3766 5165558 
libglib2.0-0-dbg_2.38.0-1_amd64.deb
 5e8dbfa549190f78cc993959fcc4617b3fa8447fdab925e1012ab83d98e49fc7 1487774 
libglib2.0-0-refdbg_2.38.0-1_amd64.deb
 f187de50f2a9228f15967604fba9b04fe87093ad87ca16d188d00fe112551c25 3019 
glib2.0_2.38.0-1.dsc
 7513a7de5e814ccb48206340a8773ea523d6a7bf04dc74565de69b899bc2ff32 6679660 
glib2.0_2.38.0.orig.tar.xz
 c59b6bc35e846e0e0fc412ef7e98b000f8cbbba6eafd82e4d8d1ad86636a4c77 69398 
glib2.0_2.38.0-1.debian.tar.gz
Files: 
 a9b6e546f2574713c2fbba8849afd8b9 1936940 libs optional 
libglib2.0-data_2.38.0-1_all.deb
 60c62574cf968652b4bec3279a23a399 2404662 doc optional 
libglib2.0-doc_2.38.0-1_all.deb
 3d83e488a44831e4e135bbb2f1ec3943 2147534 libs optional 
libglib2.0-0_2.38.0-1_amd64.deb
 f611d89485f94749bb3208a8e35b20b1 1887968 libs optional 
libglib2.0-tests_2.38.0-1_amd64.deb
 2bb96627e81e3784f43f48ac2f94e45f 1721862 debian-installer optional 
libglib2.0-udeb_2.38.0-1_amd64.udeb
 2fc5f56b566f0e9d2c12a9078d277354 1137574 misc optional 
libglib2.0-bin_2.38.0-1_amd64.deb
 0b790bcab69b55c3812cf4b2b6956737 2385632 libdevel optional 
libglib2.0-dev_2.38.0-1_amd64.deb
 fb03e5e98d0feca3478ae04503f5d576 5165558 debug extra 
libglib2.0-0-dbg_2.38.0-1_amd64.deb
 43c7b2a7463dad0904893c8f6921e822 1487774 debug extra 
libglib2.0-0-refdbg_2.38.0-1_amd64.deb
 16a61e817abc20c802c8f5ff88ba11e8 3019 libs optional glib2.0_2.38.0-1.dsc
 c50d2805a76763e9b4cc4385d4ea215d 6679660 libs optional 
glib2.0_2.38.0.orig.tar.xz
 62d0a375071610e9ef7b18df98d17d31 69398 libs optional 
glib2.0_2.38.0-1.debian.tar.gz

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


Accepted xserver-xorg-video-siliconmotion 1:1.7.7-2 (source amd64)

2013-09-25 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 13:12:17 +0200
Source: xserver-xorg-video-siliconmotion
Binary: xserver-xorg-video-siliconmotion
Architecture: source amd64
Version: 1:1.7.7-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 xserver-xorg-video-siliconmotion - X.Org X server -- SiliconMotion display 
driver
Changes: 
 xserver-xorg-video-siliconmotion (1:1.7.7-2) unstable; urgency=low
 .
   * Release to unstable.
Checksums-Sha1: 
 ceed60028640a9b239dd7f69c78f08060999270a 2251 
xserver-xorg-video-siliconmotion_1.7.7-2.dsc
 c5f62a9eaadbef68ec3a0b9d7ca7a18a1476a2f1 6399 
xserver-xorg-video-siliconmotion_1.7.7-2.diff.gz
 1472bcc549a4c6829ce4afe7d792d7c914d59cb4 82532 
xserver-xorg-video-siliconmotion_1.7.7-2_amd64.deb
Checksums-Sha256: 
 4486b4130d11b2f3e1057894d007f8b46763e99e8a52342367f6467572b3fda7 2251 
xserver-xorg-video-siliconmotion_1.7.7-2.dsc
 674664116701af8508188c29c100925dcd688f0762534e9f3a268eb21e4923ca 6399 
xserver-xorg-video-siliconmotion_1.7.7-2.diff.gz
 6d5ac6a7f8c92af64101830d66eeaf227dfae69769e6faf7ae47a967ab4ecffe 82532 
xserver-xorg-video-siliconmotion_1.7.7-2_amd64.deb
Files: 
 129cc2a67df17704d41a6c60d5f74bc2 2251 x11 optional 
xserver-xorg-video-siliconmotion_1.7.7-2.dsc
 fca39b4d4da3ca4391a6d5e3fa2fe17e 6399 x11 optional 
xserver-xorg-video-siliconmotion_1.7.7-2.diff.gz
 d70cd5267837963066ac1174466aeec6 82532 x11 optional 
xserver-xorg-video-siliconmotion_1.7.7-2_amd64.deb

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

iQIcBAEBAgAGBQJSQsWZAAoJEP5VjHKmcBPDX5EP/RFBikZPs+qrGJESNbYxtVxb
VSWqRmViq1Y6cjCcVM6AKhibkZC1yGE2n5ZoMKEP57aEvtV/ft03fwH/T6nsK64y
yVKC3qpE6uH5vhPSwgvLTvtosQ2bR6zL4EYO+3405P2OBWtahluoWJK/Ar8qK0Gm
lYRSGIdps7+C2wfBLrApSvbEmyE5O6ipSEn4OXyYogb4Kneljj3umVQGMg5qnDD3
2va4UrrVpJ3tnhVN8e9rMGGPPD8YFDSmTI2bIYx7/8oCZHJoFHBlTmkuJhU88Bbn
5jm8oWrCkNY0FCFIy6iRn9A8LL3ljMlExBGGz/6hrtsyaMxsLheHgxCXTm3LniaR
mQy18pUzHBzFJDFcqGc0zQXx/QDg0dG6w2oixZT4liEFDAyLaeXvfv2mCL29H8YK
V0kgYGOSl9F6q4wvcwHAG4Nj6OHyoIQEWgBp1QCXMuqi6SaXthS2RdY1lmPAD4Wd
KVOI1mAbA9AdRFf4RxUgfAwefOL8TOPPO4y+A0hKMhWbrGgWJmF46c7LHo+amohs
HUys58ddF86STQc3EztsWOLvd1QLQbe7PEtKkCqaVzLK+zd79Xa/3b3eZdah2/XB
87CccWTaJYFP4kreYZ2onHZY7LZdIGmTn6b4HGGNL6+qTBmRDVw5NFlUKoFqWkpV
EKZ11agNE4yQQjD7EQVv
=z/WJ
-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/e1von7u-0002qo...@franck.debian.org



Accepted xserver-xorg-video-trident 1:1.3.6-2 (source amd64)

2013-09-25 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 12:58:07 +0200
Source: xserver-xorg-video-trident
Binary: xserver-xorg-video-trident
Architecture: source amd64
Version: 1:1.3.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 xserver-xorg-video-trident - X.Org X server -- Trident display driver
Changes: 
 xserver-xorg-video-trident (1:1.3.6-2) unstable; urgency=low
 .
   * Release to unstable.
Checksums-Sha1: 
 c6adbcdd9f13c9952113c33ea8eb469cdb394282 2235 
xserver-xorg-video-trident_1.3.6-2.dsc
 343fea24354e9cc8b684793685445a3f012b9361 5985 
xserver-xorg-video-trident_1.3.6-2.diff.gz
 427aa239fd7c82976b144abfc287bbd724547e51 66174 
xserver-xorg-video-trident_1.3.6-2_amd64.deb
Checksums-Sha256: 
 13001cdc71636cd13757bf91e19310ca93cc418e73455e83ade2b4f53456201f 2235 
xserver-xorg-video-trident_1.3.6-2.dsc
 460870b72baf7dff38cd9ee3c28af1e44e389f702e6f56e49b1f53f7a12ffdc9 5985 
xserver-xorg-video-trident_1.3.6-2.diff.gz
 5e37e8628ed553b8ccb0e312d7124bb3cf0e3c3388e76d866f8dd3a1ff60e418 66174 
xserver-xorg-video-trident_1.3.6-2_amd64.deb
Files: 
 9d7c1728e0ddb9559587f708e53ea035 2235 x11 optional 
xserver-xorg-video-trident_1.3.6-2.dsc
 73cbfca2d635cd1269924cc9c4f75252 5985 x11 optional 
xserver-xorg-video-trident_1.3.6-2.diff.gz
 686fdae8b8e06729aa10456cab0e5d09 66174 x11 optional 
xserver-xorg-video-trident_1.3.6-2_amd64.deb

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

iQIcBAEBAgAGBQJSQsKtAAoJEP5VjHKmcBPDmqcP/39m/9x9cYfOhwShdwu1DxED
AruVVFHwJpXxKSoCtVoLeTc2vU2DjCG4epZjnglNx47CEUiFF2ROwSStPbz3Xj3D
E76yMlGKFGyhLkSnQRs/ZsgTyToB4PffwIiHj2TbWwApVDpgaIo+MOjgvQDoaGhl
ofWbiYoCXkvDy7JeO9SFQ5xz4QU07nnF4wr6/LvvbquzOJbCoSLr2pYNyaDntlNx
CPFvVj95Bn7NeH37ErG1toUbB/zM1Ok1LhtQK4SKGtTqNPlt1LY/SpAcrrRdJd5l
Aq+MmF5ot059uJY22Vaq+64M/vRY/tBdPkdcbUmBFrcHEC5597z4f3KUloWJZqw1
vtEzWPIpkCJHt1AOaKl8QqlrT/ZXEdMFxkpqFfSekuebnra1TO7P3JzMi+ekYfXI
CUuIev8TiN4Ge5znoeb02ujNN42SZ1tzJcZwlK2lqlLo0g5LNKYY0iEcFYU7mwDY
xlEdtZOz9rvhDdKralATH00S0F226d5kHFM9Yg8SUevcK587sr6dL4pA4tvSjbAF
Rv+ZJ/+n7zNz+DvMSpAANVjYlhgTK1gC9Wuv1vHMeIzWBwm/7eq636Bpy/v70kqw
XtLeHQPkQKHqYArkY66SPTEcfFalbOUO6erPvmsyq36rjH+FmjP0PtLOK5qKxNlW
yhRCpWodLd0lkIQHWXXr
=3dOB
-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/e1von86-0002vk...@franck.debian.org



Accepted xserver-xorg-video-sisusb 1:0.9.6-2 (source amd64)

2013-09-25 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 13:07:42 +0200
Source: xserver-xorg-video-sisusb
Binary: xserver-xorg-video-sisusb
Architecture: source amd64
Version: 1:0.9.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 xserver-xorg-video-sisusb - X.Org X server -- SiS USB display driver
Changes: 
 xserver-xorg-video-sisusb (1:0.9.6-2) unstable; urgency=low
 .
   * Release to unstable.
Checksums-Sha1: 
 7d946341e39450fa5780727071aa56db3b4cdb25 2225 
xserver-xorg-video-sisusb_0.9.6-2.dsc
 4780f8383901e9990b063771c586bb6f671938cd 5649 
xserver-xorg-video-sisusb_0.9.6-2.diff.gz
 2eff1361299e35494fddf7cedb1c44af58b25bd5 46826 
xserver-xorg-video-sisusb_0.9.6-2_amd64.deb
Checksums-Sha256: 
 98605c584eee4a559dcfa7a3be3c83fcefb7bd636dce4ef33a66aa7d6d292e7f 2225 
xserver-xorg-video-sisusb_0.9.6-2.dsc
 5f0c6f1ccc2019af31eb578c2661880c90be875cc31178055f16e7bb3303ec03 5649 
xserver-xorg-video-sisusb_0.9.6-2.diff.gz
 40a36ea255315b88d3ee3f605fa4fd38215b44c218f270c79a7b567fe556cd6d 46826 
xserver-xorg-video-sisusb_0.9.6-2_amd64.deb
Files: 
 3b8c941692d3106cd1ba6e70d95e716c 2225 x11 optional 
xserver-xorg-video-sisusb_0.9.6-2.dsc
 c528c293966d248b3ade4c307ffb6adb 5649 x11 optional 
xserver-xorg-video-sisusb_0.9.6-2.diff.gz
 146fe227491055016c4b29a0c9b71f75 46826 x11 optional 
xserver-xorg-video-sisusb_0.9.6-2_amd64.deb

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

iQIcBAEBAgAGBQJSQsScAAoJEP5VjHKmcBPDzQgP+wWJ3Bds0d15VL+j0qJrygJl
/v7El/WUwou2Q5D5lfcqfjUGIWnN8RFkiS1oCQdW99eftkaWkjcbHdZh0kJtiPKF
hc32aLTvuNPEfQFkl4Xal0vdwhKzk32xTlBeEltyRcp8VR1/+A2fNuOA9NwhcSnb
E0K9cQssP9loccvdqYMBXbhP8tTWCjyJl2ozCevw7Y+UU02F3nQnExLTMyASK1wt
YsvOtZWfSggX9S0YT6sYBydniX/ju1KQSrcEfSToHz4QZxOgvefC4j4foqxQRWP0
TnYZFwcSof5GlXOytwLYjHU2VuJYA2RmK+8ceBZeYRWduWahVGsFH5AwEsnaSPay
a5HLMr1Z0WsXlgAWq5IXCAyUXFHRpFyDUkfZZGIxl40Qd0I4yOSyQ32MPFwDLQ0l
QoCcfL4oWJfIe8t5LBjDHsIwmBk14wl+cTiqjsAZaXesazFQnVqV5Ht99NddHG7M
ru8XhTxlBUGwLkwuaABGO94nCtfT08cnSOF4Ne0pxeP53RcnGXVpRJCKbyrFB+sK
mBmOIvrNuPiUbw2BGe8NyBz1zbbLy+kSgVvn6Sasrs7e0Plbqu3/Z5PGVE3oHjKd
EywS77Vp+7lg9BuvRg3wdvoiTcvJVh6R5sAIVgs3yI3f0n/s9sWpxoQudTvHzWg9
boK1lyp02TTskVix5XwO
=6F43
-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/e1von80-0002t4...@franck.debian.org



Accepted xserver-xorg-video-nv 1:2.1.20-2 (source kfreebsd-amd64)

2013-09-25 Thread Robert Millan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 13:04:06 +0200
Source: xserver-xorg-video-nv
Binary: xserver-xorg-video-nv
Architecture: source kfreebsd-amd64
Version: 1:2.1.20-2
Distribution: unstable
Urgency: low
Maintainer: GNU/kFreeBSD Maintainers debian-...@lists.debian.org
Changed-By: Robert Millan r...@debian.org
Description: 
 xserver-xorg-video-nv - X.Org X server -- NV display driver
Closes: 724325
Changes: 
 xserver-xorg-video-nv (1:2.1.20-2) unstable; urgency=low
 .
   [ Petr Salinger ]
   * Cherry-pick FreeBSD build fixes from upstream git.
 (Closes: #724325)
 .
   [ Robert Millan ]
   * Remove confusing note about nvidia blob.
   * Update VCS URLs to their new location.
Checksums-Sha1: 
 b5631f089da46c5a4d8fd3498b52db9923db5879 1670 
xserver-xorg-video-nv_2.1.20-2.dsc
 8a04d69d8441516e731bee28ac235d622b2c50ac 17323 
xserver-xorg-video-nv_2.1.20-2.diff.gz
 95896064aa46774e473c3f9ea8e9558ea1cb9574 95912 
xserver-xorg-video-nv_2.1.20-2_kfreebsd-amd64.deb
Checksums-Sha256: 
 f42aa84e7d5447685833d2b5019d7d994467668a47aaed581517a803e249af19 1670 
xserver-xorg-video-nv_2.1.20-2.dsc
 8e40ba85eeb134169b893d45d8e8681e449e260c5c77d20984451bf419cbb7fe 17323 
xserver-xorg-video-nv_2.1.20-2.diff.gz
 d59454c06a464343090c5584e328d5d8a0959d0eda2a10e69c1476e72a0c30d3 95912 
xserver-xorg-video-nv_2.1.20-2_kfreebsd-amd64.deb
Files: 
 c351dcd44a9db0ba6a90e9deac66ffa1 1670 non-free/x11 optional 
xserver-xorg-video-nv_2.1.20-2.dsc
 c07e8f71a5b1b191f8c0c4fc84ef5860 17323 non-free/x11 optional 
xserver-xorg-video-nv_2.1.20-2.diff.gz
 083f3abc3e1bceb8b10a3ad3ed880b4b 95912 non-free/x11 optional 
xserver-xorg-video-nv_2.1.20-2_kfreebsd-amd64.deb

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

iEYEARECAAYFAlJCzF0ACgkQC19io6rUCv/V0wCfe41nVIy3oayGf/SL4w0623sv
8tYAn3HwduZTGwzoHMfpeplW3+pYLfeF
=9eBx
-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/e1vonan-0006p0...@franck.debian.org



Accepted dspam 3.10.2+dfsg-10 (source amd64 all)

2013-09-25 Thread Thomas Preud'homme
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 13:25:02 +0200
Source: dspam
Binary: dspam dspam-webfrontend libdspam7 libdspam7-dev libdspam7-drv-hash 
libdspam7-drv-pgsql libdspam7-drv-mysql libdspam7-drv-sqlite3 dspam-doc 
dspam-dbg libdspam7-dbg
Architecture: source amd64 all
Version: 3.10.2+dfsg-10
Distribution: unstable
Urgency: low
Maintainer: Debian DSPAM Maintainers pkg-dspam-m...@lists.alioth.debian.org
Changed-By: Thomas Preud'homme robo...@debian.org
Description: 
 dspam  - Scalable, fast and statistical anti-spam filter
 dspam-dbg  - debugging symbols for dspam
 dspam-doc  - Documentation for DSPAM anti-spam filter
 dspam-webfrontend - Webfrontend for DSPAM anti-spam filter
 libdspam7  - Core message processing and classification functionality for DSPA
 libdspam7-dbg - debugging symbols for DSPAM related libraries
 libdspam7-dev - Development headers for libdspam
 libdspam7-drv-hash - Hash backend for DSPAM anti-spam filter
 libdspam7-drv-mysql - MySQL backend for DSPAM anti-spam filter
 libdspam7-drv-pgsql - PostgreSQL backend for DSPAM anti-spam filter
 libdspam7-drv-sqlite3 - sqlite3 backend for DSPAM anti-spam filter
Closes: 722484
Changes: 
 dspam (3.10.2+dfsg-10) unstable; urgency=low
 .
   * debian/patches:
 + Improve handling of malformed css file (Closes: #722484).
Checksums-Sha1: 
 b5fa5f26b512102cfea567999373f6c0a1d48a31 2600 dspam_3.10.2+dfsg-10.dsc
 117e999f439c4b59f24e4b17f697631cb719b334 67704 
dspam_3.10.2+dfsg-10.debian.tar.gz
 b876c67027d32eb3d136520aab3760310f6c3ed9 315944 dspam_3.10.2+dfsg-10_amd64.deb
 d1185e90e39da67587aa513a37bc9ad39910ecd3 167438 
dspam-webfrontend_3.10.2+dfsg-10_all.deb
 768a033f8992933088d9f914a39d255bb5c776bc 141862 
libdspam7_3.10.2+dfsg-10_amd64.deb
 214ba59527af82dd08bdcc83b7013ed1884c7c18 248734 
libdspam7-dev_3.10.2+dfsg-10_amd64.deb
 b7a98e021193040dac537e0536dc504459196abc 109424 
libdspam7-drv-hash_3.10.2+dfsg-10_amd64.deb
 07923d1e35e6cffca2b59274ad8b7a36f1dc0449 122202 
libdspam7-drv-pgsql_3.10.2+dfsg-10_amd64.deb
 bd1ee7faf3957373f3ee86e603acf99f8925a3a2 123910 
libdspam7-drv-mysql_3.10.2+dfsg-10_amd64.deb
 c5ed0d55080ed0eb02723fc3dd35f4fadb8477b4 111902 
libdspam7-drv-sqlite3_3.10.2+dfsg-10_amd64.deb
 a70a71e4db2a1030c6484888b18d1a9857a936b0 128810 
dspam-doc_3.10.2+dfsg-10_all.deb
 d368a49db8be92f41b22d10ef1c736edc7c9649e 558772 
dspam-dbg_3.10.2+dfsg-10_amd64.deb
 0a6473ebfefbcd386817f17a4b35d2f17cfcac27 306356 
libdspam7-dbg_3.10.2+dfsg-10_amd64.deb
Checksums-Sha256: 
 cadbb1c585790600fe5c9bb84a1030cddd002c597366533e6ff6fe5bdfbcb9d1 2600 
dspam_3.10.2+dfsg-10.dsc
 bd0f97379a6f79982fb36a03e78ed1efad1883260e5974af32b947f9934a5718 67704 
dspam_3.10.2+dfsg-10.debian.tar.gz
 a077fcca4376c3fd3e25de2d2ac9fd9a3d599c733072c14923edddbcdcea2776 315944 
dspam_3.10.2+dfsg-10_amd64.deb
 37ff2cac2571976034566e858823ea7bd8f9c99b5cacec9a2e64d91aa002c766 167438 
dspam-webfrontend_3.10.2+dfsg-10_all.deb
 14d30cd161a0a2a76260c2ff292b31b55c71034d5d21d2a1ee380c988af33c9f 141862 
libdspam7_3.10.2+dfsg-10_amd64.deb
 bcb78f7f9819bf2411eb36bcd5a9310d8cd65153bf19f4e88b1158a8e75d075f 248734 
libdspam7-dev_3.10.2+dfsg-10_amd64.deb
 5ad106a91b62532d363f3e1b5d14b104cbad2513fd20fce02a3ed241e9cd4351 109424 
libdspam7-drv-hash_3.10.2+dfsg-10_amd64.deb
 0397e5c410b3c7f12b3c0f3aaa7e9a064fb7887065f764fea4d5d1b0aa73bfd6 122202 
libdspam7-drv-pgsql_3.10.2+dfsg-10_amd64.deb
 9fdf7f91552999f7905a9cae310742052f74c5802cf910d80ebe7356284481c4 123910 
libdspam7-drv-mysql_3.10.2+dfsg-10_amd64.deb
 79a31144edfcf16b3613ef647b423732d2c3f3c568ebeacb860d25c4924a8290 111902 
libdspam7-drv-sqlite3_3.10.2+dfsg-10_amd64.deb
 bb57fe874d9852496a9bd709ffb93b8c7bea12f291cb309d14f45f630dfb5705 128810 
dspam-doc_3.10.2+dfsg-10_all.deb
 9cabf97a3780ed59a2aa91fea161d6f5291073cf13e09e6cd2b32af1de35acfe 558772 
dspam-dbg_3.10.2+dfsg-10_amd64.deb
 a06342a753dde32c2cebd0ecbbfea993afb9b28f008e9d13f3db6d5686361eb6 306356 
libdspam7-dbg_3.10.2+dfsg-10_amd64.deb
Files: 
 bdba6428b02c915a0a114b4863098c86 2600 mail optional dspam_3.10.2+dfsg-10.dsc
 ea17883f709b149d18bd08eea71575e9 67704 mail optional 
dspam_3.10.2+dfsg-10.debian.tar.gz
 fe3f43b3ec233183d46ba0c633dd7ece 315944 mail optional 
dspam_3.10.2+dfsg-10_amd64.deb
 978a8001797e5f5b86d10e5e0436a896 167438 mail extra 
dspam-webfrontend_3.10.2+dfsg-10_all.deb
 71ce677b3d54ba71f0fb0949d89f3145 141862 libs optional 
libdspam7_3.10.2+dfsg-10_amd64.deb
 47d14a93b74bf8fdacc62086c2c6a41d 248734 libdevel optional 
libdspam7-dev_3.10.2+dfsg-10_amd64.deb
 17befc6288fb24a71ba5fbe98fd38c9c 109424 mail optional 
libdspam7-drv-hash_3.10.2+dfsg-10_amd64.deb
 b6b4b84e0eba75eb5de212f70a1f91f4 122202 mail optional 
libdspam7-drv-pgsql_3.10.2+dfsg-10_amd64.deb
 28ba3ea39f9f0006aad1efff2105117e 123910 mail optional 
libdspam7-drv-mysql_3.10.2+dfsg-10_amd64.deb
 f6d86a03822c8072f0f5b9a3e2f3cea2 111902 mail optional 
libdspam7-drv-sqlite3_3.10.2+dfsg-10_amd64.deb
 f796dac6c3fcaddd6e84e2375e9ea617 128810 doc optional 

Accepted xserver-xorg-video-savage 1:2.3.6-1 (source amd64)

2013-09-25 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 14:06:58 +0200
Source: xserver-xorg-video-savage
Binary: xserver-xorg-video-savage
Architecture: source amd64
Version: 1:2.3.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 xserver-xorg-video-savage - X.Org X server -- Savage display driver
Changes: 
 xserver-xorg-video-savage (1:2.3.6-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 a4946e8edb387b06e2ca1525fa34a9e162caca91 2362 
xserver-xorg-video-savage_2.3.6-1.dsc
 3d461a12ebd0c28db253b74c0bdbd32f72ed5d47 121239 
xserver-xorg-video-savage_2.3.6.orig.tar.gz
 dcc796ee9b8ebe86ff8519c8805e4fb1d0b48f8b 33058 
xserver-xorg-video-savage_2.3.6-1.diff.gz
 453ecb796c809f4d6df67c399ab497af030eb4f6 88986 
xserver-xorg-video-savage_2.3.6-1_amd64.deb
Checksums-Sha256: 
 5b44d42c998916feed5afe7805ab9dd5f27a0c9a56487961da5d8d7a6a9dd514 2362 
xserver-xorg-video-savage_2.3.6-1.dsc
 fd8aba043747dc0b83c2ddce05b1061eeec2d306196ba3296d8ee8ff6a0fc15d 121239 
xserver-xorg-video-savage_2.3.6.orig.tar.gz
 413d56c41c57d7abfb6762a654ab298777c36298b2a16b6fd6bbaba2a17f5eda 33058 
xserver-xorg-video-savage_2.3.6-1.diff.gz
 6d9fe5c46b28e2b1aa28b6049e1f71648e5bd2c7dfb7e3dcdd9578575161b160 88986 
xserver-xorg-video-savage_2.3.6-1_amd64.deb
Files: 
 6227d19a09dfbf8d066d948c91f5c759 2362 x11 optional 
xserver-xorg-video-savage_2.3.6-1.dsc
 600655f3010d1c7ed5bf3bb49c8cf4d3 121239 x11 optional 
xserver-xorg-video-savage_2.3.6.orig.tar.gz
 ac667c076c7aa2bdb1202909c431b939 33058 x11 optional 
xserver-xorg-video-savage_2.3.6-1.diff.gz
 e54c7aaebb9ced402bd8c4b3f865445c 88986 x11 optional 
xserver-xorg-video-savage_2.3.6-1_amd64.deb

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

iQIcBAEBAgAGBQJSQtYlAAoJEP5VjHKmcBPDiMwP/3OkHjHFXzf/rKWn4nMr5w8M
zyEcgs0GS/J8c76U5NpW8d8wRuWyhExnCwb6ugPU5NqV7CZYxELyd9xG3r3SqrDg
GMcK83X5x3OU4CYVNbAPrXusFViDISsepDr8/cN6YGFWjQfNWQ8oDVgT2lnA4tCR
Q44KA3Lpe7cbUY86kMAlCwDOF8i35I+Yztw2gtUgoaT14Ue+OioKtB+Uwf8Oo0Sf
XIarHe5/c8+aBpQVEhIYftlzSvnD1iGUAv0LaQfjfmbew3nDSXf36rlNI6V6Ai7o
b57ecNStzj3IJM/kfKg2qm9FFFvWzoz6hrjjutNadausztfiiKNkruNXDai7j/lC
3rTC0aBljCAP3GoSV+mqBbSuJGeE9ZCjswWq8146H74qk+0C8YO+0wlvNdUcqniB
zU58ge/Dn+0vvJocqj/Awizot+OaUtBlKDRZFWS53fPckJb6AdNRnDW9ch9UJ18D
T97IQoLBmTDoqf/fgouIJxZmGsfjb0djZ64/+u8GYHTQBzMfVXeMdE6+oXQTqJah
887jLU3fn5FgajqFnQrjRHD6y4Z8zhRys5wp30svWB3TUjSj5YRni5KhlzKoDT/1
xOyVWTB6Ig5LDo0qypvvngDQ+knFlKUMvEZi5AHyrSMDmpGYKKFBHsqw/3L3Ou/Q
SwQ39zpN1tEmcNhzjt23
=KBbK
-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/e1voois-00051k...@franck.debian.org



Accepted hapm 0.7-2 (source amd64)

2013-09-25 Thread Joao Eriberto Mota Filho
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 03 Sep 2013 09:28:44 -0300
Source: hapm
Binary: hapm
Architecture: source amd64
Version: 0.7-2
Distribution: experimental
Urgency: low
Maintainer: Joao Eriberto Mota Filho eribe...@eriberto.pro.br
Changed-By: Joao Eriberto Mota Filho eribe...@eriberto.pro.br
Description: 
 hapm   - light and fast high availability port monitor
Changes: 
 hapm (0.7-2) experimental; urgency=low
 .
   * Migrations:
   - debian format from 1.0 to 3.0.
   - debian/copyright to new format (1.0).
   - debian/rules to new (reduced) format.
   - debhelper version from level 7 to 9.
   * New patch (debian/patches):
   - init.d: add source /lib/lsb/init-functions.
   * debian/control:
   - Changed VCS field from svn to git.
   - Updated Standards-Version from 3.8.4 to 3.9.4.
   * debian/copyright: updated packaging copyright years.
   * debian/gbp.conf: added.
Checksums-Sha1: 
 56ce51bc87604713215d721fb6d3d9e7b8d3bd6f 1433 hapm_0.7-2.dsc
 02f356a399a5b8db094e749ee97751154b2c0e8a 2995 hapm_0.7-2.debian.tar.gz
 f404439d8afccc2dfa431e0c4497158d8b1e11b9 9868 hapm_0.7-2_amd64.deb
Checksums-Sha256: 
 14e508d327f718d9ff7751edd2c5f0f98e537581701759a3a64a0d8acada339b 1433 
hapm_0.7-2.dsc
 e5cb00dd9f130b38628ea71f3dbb0a1a44679b9152b961d25158b86f2e96d363 2995 
hapm_0.7-2.debian.tar.gz
 be1e9e8f601522232eac748c4ec06549bce53393401bd7fd351e2b9c6325e860 9868 
hapm_0.7-2_amd64.deb
Files: 
 361576fd95bef0f83ed3f6bae97152ff 1433 admin optional hapm_0.7-2.dsc
 0e328377dd950a83c4c8b8cca6ac714e 2995 admin optional hapm_0.7-2.debian.tar.gz
 0f3a7d2b46de874ba6262608da802c75 9868 admin optional hapm_0.7-2_amd64.deb

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

iQEcBAEBAgAGBQJSQtTKAAoJEN5t4DnBz8JlfckH/084ABcVEDqj43p0iWWNp8iN
K7g4sRqkkp95hVY1THGuggV8DQhL1Tv+6cLDt1JHFaddkmw0pqNvk4QQSRjo7qa4
xRa4fYah8cNAidcOcovEQbyWWLd/lUzoVDghJiuqj6TyavqImUwGbWc06f14me/U
E9ZhQ1SCf4tz44Y5sEfKzBBTu9o5pel82z/5GUYOWAkcjy3mcOM6dHEsgVQRS8hG
S2qZ53pAKuRmGXRKSF+jqYwg5CWeSZPduEsj+YcDSCIYU540y++UsBva8SNJdGAt
aVEJI8xGNs17M+nTb1Q/YCk4VNmjzgBzmjNGM3z0NygUjKnSYekU6MEc3lwSC0c=
=aHpO
-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/e1vooil-0004zt...@franck.debian.org



Accepted horizon 2013.1.3-2 (source all)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 17:30:14 +0800
Source: horizon
Binary: python-django-horizon openstack-dashboard openstack-dashboard-apache
Architecture: source all
Version: 2013.1.3-2
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 openstack-dashboard - OpenStack Dashboard
 openstack-dashboard-apache - OpenStack Dashboard - Apache support
 python-django-horizon - Django module providing web interaction with OpenStack
Closes: 722421
Changes: 
 horizon (2013.1.3-2) unstable; urgency=low
 .
   * Added new French debconf translation (Closes: #722421).
Checksums-Sha1: 
 fed9faf4b3b03b43a4bf2f8d8a168567a97f45e1 2074 horizon_2013.1.3-2.dsc
 3b1102e5ea6cd3ba7af97ab6ca021ce45b3fc27f 15180 horizon_2013.1.3-2.debian.tar.gz
 f139f7c952c93c61014719c7cfd9fb54c3ca4472 208606 
python-django-horizon_2013.1.3-2_all.deb
 1d073e473a37b8c4e10beac538819c381f4ce0b4 471800 
openstack-dashboard_2013.1.3-2_all.deb
 f3e63dc249d9a98493aa0daa059748d367153aad 7010 
openstack-dashboard-apache_2013.1.3-2_all.deb
Checksums-Sha256: 
 4ed68369fff9351e6ea1f7ab93b91b6f9722936600f751fff30578ec62882fc4 2074 
horizon_2013.1.3-2.dsc
 cdea0e65f3f5682d449520698c7b47303739e51c43451dd2805572606055c4d9 15180 
horizon_2013.1.3-2.debian.tar.gz
 5f679ac2478283984966095d1c91f1b12e16cb57bf03cbbb28f96476af3d1e50 208606 
python-django-horizon_2013.1.3-2_all.deb
 3829c8f5191efd05dd7289ef91fcb778ad05592b309bac27bc456316965bbd77 471800 
openstack-dashboard_2013.1.3-2_all.deb
 9b845a894839e0617efa3ae8f0f550addbe4533adbc6f8dc117ab078f9b172a8 7010 
openstack-dashboard-apache_2013.1.3-2_all.deb
Files: 
 e3a504b113e99a580c64fe4e677d8762 2074 net extra horizon_2013.1.3-2.dsc
 754ea9988003b083c2608e0f992795d9 15180 net extra 
horizon_2013.1.3-2.debian.tar.gz
 f6ca43686126a4e0f158b038eb58ec96 208606 python extra 
python-django-horizon_2013.1.3-2_all.deb
 afd445c4c8d04d9a4722b5e532b6a2e6 471800 net extra 
openstack-dashboard_2013.1.3-2_all.deb
 d69e968980e1b92d45bd2473d7ffd670 7010 net extra 
openstack-dashboard-apache_2013.1.3-2_all.deb

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

iEYEARECAAYFAlJC364ACgkQl4M9yZjvmklwGwCfVzK2ZfpKZsVTZM7LG5v/LKfi
BbgAoOFSf0QFGRCE0kAQ8tmMefxLz014
=+Mai
-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/e1voozm-0002tb...@franck.debian.org



Accepted jana 0.0.0+git20091215.9ec1da8a-3 (source all i386)

2013-09-25 Thread PaulLiu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 22 Sep 2013 03:11:12 +0800
Source: jana
Binary: libjana0 libjana-dev libjana-doc libjana0-dbg libjana-ecal0 
libjana-ecal-dev libjana-ecal-doc libjana-gtk0 libjana-gtk-dev libjana-gtk-doc 
libjana-test libjana-examples
Architecture: source all i386
Version: 0.0.0+git20091215.9ec1da8a-3
Distribution: unstable
Urgency: low
Maintainer: Ying-Chun Liu (PaulLiu) paul...@debian.org
Changed-By: Ying-Chun Liu (PaulLiu) paul...@debian.org
Description: 
 libjana-dev - interface library for time-related personal information (dev. fil
 libjana-doc - interface library for time-related personal information (document
 libjana-ecal-dev - implementation of libjana based on evolution-data-server 
(dev. fi
 libjana-ecal-doc - implementation of libjana based on evolution-data-server 
(documen
 libjana-ecal0 - implementation of libjana based on evolution-data-server
 libjana-examples - Example applications for libjana, libjana-ecal and 
libjana-gtk
 libjana-gtk-dev - GTK+ widgets to visualise libjana data (development files)
 libjana-gtk-doc - GTK+ widgets to visualise libjana data (documentation)
 libjana-gtk0 - GTK+ widgets to visualise libjana data
 libjana-test - test applications for libjana and libjana-ecal
 libjana0   - interface library for time-related personal information
 libjana0-dbg - interface library for time-related personal information (debug 
sy
Changes: 
 jana (0.0.0+git20091215.9ec1da8a-3) unstable; urgency=low
 .
   * Upload jana with eds 3.8 patch to unstable.
Checksums-Sha1: 
 3b8190713e0a56fc7370ad229593782d20499111 2545 
jana_0.0.0+git20091215.9ec1da8a-3.dsc
 3e231a5c433d59e3948c87a0047d509000bffe9b 12227 
jana_0.0.0+git20091215.9ec1da8a-3.debian.tar.gz
 643ed9a169044ebd54da238853f3025ff7ae8e8d 50290 
libjana-doc_0.0.0+git20091215.9ec1da8a-3_all.deb
 e1e253d2e6ad427cfab34c3e0d71db65a3afa4d2 36614 
libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-3_all.deb
 6b0cc469a2679be3c6830a644dfd7c06b62bdb74 51808 
libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-3_all.deb
 c59aa802b2758f06eae1584159bf18eccf790525 38636 
libjana0_0.0.0+git20091215.9ec1da8a-3_i386.deb
 f49886353af77945f4147c69b31458608572aea0 30238 
libjana-dev_0.0.0+git20091215.9ec1da8a-3_i386.deb
 35c2f24f73124f6c41fced65cf2944f9d903bfdc 485672 
libjana0-dbg_0.0.0+git20091215.9ec1da8a-3_i386.deb
 4b9783751e95c3498bb1517897509d323e120f56 44730 
libjana-ecal0_0.0.0+git20091215.9ec1da8a-3_i386.deb
 bd3b553945a9c13ca9e61a991ba45f446f3b5cce 27682 
libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-3_i386.deb
 0bed781bf5fabfa6f01b5ddc62650412ca5fb247 91424 
libjana-gtk0_0.0.0+git20091215.9ec1da8a-3_i386.deb
 b7ff1004273fb8818e5fef595178031fb94fb3e6 30186 
libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-3_i386.deb
 18cff64c0d814a9390ae4726929bc6c65e1683d9 41216 
libjana-test_0.0.0+git20091215.9ec1da8a-3_i386.deb
 f2d58840b030eda1a97c8cba34ac9f56b2e3b20f 42138 
libjana-examples_0.0.0+git20091215.9ec1da8a-3_i386.deb
Checksums-Sha256: 
 96139b48c1e3ca7e51913b657e777dadae115065b4172f23090568d6ebc7108a 2545 
jana_0.0.0+git20091215.9ec1da8a-3.dsc
 ad852691fb53ded190c3cda43d2a25c467b722436475b9aef4edffd1fc4b7e67 12227 
jana_0.0.0+git20091215.9ec1da8a-3.debian.tar.gz
 c38863e2c551a8c5cbe7083a3bf9a6aff8d2788fd8894fd622c98da9dccd04ad 50290 
libjana-doc_0.0.0+git20091215.9ec1da8a-3_all.deb
 9ad1b87b95394c5f1fe5baa3b2deac55a2c1ef240d5652cd0c9f86f384e0bcaa 36614 
libjana-ecal-doc_0.0.0+git20091215.9ec1da8a-3_all.deb
 e13e828766bfedc5ac6a0c8f81b7366485059a1852edd401c878f19da1277a0e 51808 
libjana-gtk-doc_0.0.0+git20091215.9ec1da8a-3_all.deb
 1a4722b3eb1cf4857669234a3b3a1e1de70767df3e15d742c24538e2690997cd 38636 
libjana0_0.0.0+git20091215.9ec1da8a-3_i386.deb
 11acca4cb4165973e19e81fee9596e215c73befc0fb48191a7a5c5f172068154 30238 
libjana-dev_0.0.0+git20091215.9ec1da8a-3_i386.deb
 490488501ab0110eba536a940d49e6f6438e69f34814b2575a4278d28367f3d5 485672 
libjana0-dbg_0.0.0+git20091215.9ec1da8a-3_i386.deb
 40bf65d63733ab6f7d56a55269d41e76b18004487b9ad4d61f2e812741cb90f1 44730 
libjana-ecal0_0.0.0+git20091215.9ec1da8a-3_i386.deb
 e41782a72e92a3fe9778aa52e17538908ddcff776e191b0c9b8983ace100f829 27682 
libjana-ecal-dev_0.0.0+git20091215.9ec1da8a-3_i386.deb
 88594b1bdfeab9ddceedfe2937d92cfe3c17528c514b4218c474cb2ebe9bc83e 91424 
libjana-gtk0_0.0.0+git20091215.9ec1da8a-3_i386.deb
 d6a69a201dd709876c8982a16544a4c63b80695bb6783e3ceee33991c7b00c15 30186 
libjana-gtk-dev_0.0.0+git20091215.9ec1da8a-3_i386.deb
 523becc6aea3f556f5c5a4439d4ab61640e994deba050dae615b7b8d90fa29d5 41216 
libjana-test_0.0.0+git20091215.9ec1da8a-3_i386.deb
 84a506197059c5fd117368571c39fb32a46ae03b018de7dcb998374600c19dee 42138 
libjana-examples_0.0.0+git20091215.9ec1da8a-3_i386.deb
Files: 
 3e2e626df6afd5e1faa8890d7ca308e4 2545 libs optional 
jana_0.0.0+git20091215.9ec1da8a-3.dsc
 37042e26d00a2706d9df1d45c1816b1b 12227 libs optional 
jana_0.0.0+git20091215.9ec1da8a-3.debian.tar.gz
 fdcf72775a52112017eb6ec489aef201 50290 doc optional 

Accepted libdbix-dr-perl 0.25-1 (source all)

2013-09-25 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 25 Sep 2013 16:49:04 +0400
Source: libdbix-dr-perl
Binary: libdbix-dr-perl
Architecture: source all
Version: 0.25-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 libdbix-dr-perl - easy DBI helper
Changes: 
 libdbix-dr-perl (0.25-1) unstable; urgency=low
 .
   * Some fixes for Perl 5.18
Checksums-Sha1: 
 6974a9deca4c5a4e95769297857aee83a3e141fb 1200 libdbix-dr-perl_0.25-1.dsc
 84989fb9833449229d339207bb129a552dac5ce2 19560 libdbix-dr-perl_0.25.orig.tar.gz
 46bd66478f7334276039618b185b02f6076ac2b5 1616 libdbix-dr-perl_0.25-1.diff.gz
 4bafcb809405a1cdfb37bbd338677b7e0b753e75 34240 libdbix-dr-perl_0.25-1_all.deb
Checksums-Sha256: 
 fc4c7a124001e4e2072f255dd24c815e5d1a1107d9f02bc8dbb0cc8415b5fc97 1200 
libdbix-dr-perl_0.25-1.dsc
 ca0ea08257c513906ce9b4c12b01b05f7f7255b9337558f1e6ca46ab52165f76 19560 
libdbix-dr-perl_0.25.orig.tar.gz
 4525fb4bee41dc59f701da25ec508e8c9a67723b732ce1a6539d4be7d3da0c39 1616 
libdbix-dr-perl_0.25-1.diff.gz
 97e2597452014440b84f257739e18788535ebccaa95fa010e9949f2988936b4d 34240 
libdbix-dr-perl_0.25-1_all.deb
Files: 
 a32185374ba41b8c3fa8cd8d853b60de 1200 perl extra libdbix-dr-perl_0.25-1.dsc
 8bf9195a00d0b7bd7e1fcc284f7e0c2d 19560 perl extra 
libdbix-dr-perl_0.25.orig.tar.gz
 d79e12dd3b815671b2170fb7f4ae0b72 1616 perl extra libdbix-dr-perl_0.25-1.diff.gz
 1d82215ea6528e0a163a93cc09218e90 34240 perl extra 
libdbix-dr-perl_0.25-1_all.deb

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

iEYEAREDAAYFAlJC5HAACgkQq4wAz/jiZTcrZQCfRNCLZeQdVrATnAFCF26FDTXJ
GNsAoM11VX3SAURkec+tasPnUyzIZzHx
=8ymO
-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/e1vopda-0004oz...@franck.debian.org



Accepted lintian4python 0.24.3 (source all)

2013-09-25 Thread Jakub Wilk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 24 Sep 2013 17:48:46 +0200
Source: lintian4python
Binary: lintian4python
Architecture: source all
Version: 0.24.3
Distribution: experimental
Urgency: low
Maintainer: Jakub Wilk jw...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 lintian4python - Debian package checker (for Python packages)
Changes: 
 lintian4python (0.24.3) experimental; urgency=low
 .
   * data/python*-projects:
 + Update.
 .
   * debian/control:
 + Update lintian dependency (2.5.18).
 .
   * lintian4py:
 + Pass --include-dir as the first option.
 .
   * lintian4py-info:
 + Pass --include-dir as the first option.
 + Use exec() instead of do() to call lintian-info.
Checksums-Sha1: 
 aafb4ef1704e94927e55fea9720011ab92039f14 1882 lintian4python_0.24.3.dsc
 3309e1239abab6177688aa1830d0dfc636280c47 88550 lintian4python_0.24.3.tar.gz
 339c09ae5097fde72e42184407d1a4718ae490d1 52372 lintian4python_0.24.3_all.deb
Checksums-Sha256: 
 c0fa1b0985ac2ab67cee1d093059d0d83c0797d691c6017bc5606bc5acf6b0eb 1882 
lintian4python_0.24.3.dsc
 3d2609cd7739346668bd4803bdbf48b056f8ebed01c59fdb9bfe9391a8a8f08c 88550 
lintian4python_0.24.3.tar.gz
 22bd1ae564b1adb31f6468b612636b1c761eb781fa4ca92cfd8f49315892625d 52372 
lintian4python_0.24.3_all.deb
Files: 
 d81db5f00ab7d7d4f5a289fb5f4b8273 1882 devel extra lintian4python_0.24.3.dsc
 8bc1bc12e8a0d1214067f7924f96aa30 88550 devel extra lintian4python_0.24.3.tar.gz
 8dfac45b1202c9e7c7030cc050c289e9 52372 devel extra 
lintian4python_0.24.3_all.deb

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

iQIcBAEBCAAGBQJSQuDeAAoJEC1Os6YBVHX1ExEP/RyyN0sU/oAlW+1FxYBBUIbg
xC8SPZArkzvXo98GxqIHT1CWQXV9N1xIcD/8nY9rp7y9loNaDpGFd2dULBxvRySe
uEQ4rFyrHo5omehZOzs0CiNWvSYMeW5sd9paNTvNz9nHOB6uJCc/pWrl/N45H1Wu
/DyLk5FD+cpRUsB0FjKP2HhXaF4FYeOu8hF/2Qdw0WNCJttqFP0a1KPGXESshuMU
EtW3pHiZqHQUkcwQ6mBjoX46S/N9m3AMehQiHHwq3/rvom61/GxEKoI6RTsAXklW
EvXlWYp4szLbTkFFvUTYwK2j5sUq5+NWoHbD4aSwm6yLYBRGRJ2OM4Vrle9mlE5/
cmAGvlvKjzfgCG5eRaar86ZGlUwmzy1iKwop6EKUi4sFa99EoV34ZMkKG83sVqBR
4k5TgbjkroEH4te/aASYw39mCKFNGIq8sCteyjVIqRsqH96/Fk1r78M6HYoDy2Tk
bgM2s8b5lCeBwr6BkiqX+bkeg2gWYIpBQV8i7SE589SWiLdPyvqwiQx/jllVOrv2
rDG5XsDJgDQuOoshS/CtOFlmQJBNM+mlWg+VOmSYMpOYGimREk3bFFffSrrejWTp
hP7bAZP9FouWg6hcWEEZam82AII7+XyhhzRbl7z36UZmh7rBdDCsRWYPcWxIUbL9
w3NbXXI5miQUV9EARNi5
=/DLs
-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/e1vopdg-0004qu...@franck.debian.org



Accepted ftp-cloudfs 0.23.1-1 (source all)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 May 2013 11:19:42 +0800
Source: ftp-cloudfs
Binary: ftp-cloudfs python-ftp-cloudfs
Architecture: source all
Version: 0.23.1-1
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 ftp-cloudfs - FTP interface to Rackspace Cloud Files and OpenStack Object Stora
 python-ftp-cloudfs - FTP interface to Rackspace Cloud Files and OpenStack - 
Python lib
Changes: 
 ftp-cloudfs (0.23.1-1) unstable; urgency=low
 .
   * Ran wrap-and-sort.
   * New upstream release.
   * Added new python-swiftclient Depends:.
Checksums-Sha1: 
 549719b7f894d5e334ed27cc329abf9589947b40 1565 ftp-cloudfs_0.23.1-1.dsc
 c6c59c2011f497f69a2fa5a791a74eea0860163e 23120 ftp-cloudfs_0.23.1.orig.tar.xz
 d72c798338c236008874056950ceefa425a60b36 6491 
ftp-cloudfs_0.23.1-1.debian.tar.gz
 e01637f4612d52cc26c495eec127890025d1556e 10262 ftp-cloudfs_0.23.1-1_all.deb
 182f1678477066d9966f38992d6e7a681d78b5fb 22252 
python-ftp-cloudfs_0.23.1-1_all.deb
Checksums-Sha256: 
 3db6759c239196e8b7872f298c23da833b8c821a3b14f7249dee8ccf066c9e90 1565 
ftp-cloudfs_0.23.1-1.dsc
 321c59d4c9c1a7ae9dee6d27b0820e0002c08aabb59cafa1a1e0cca248de4e71 23120 
ftp-cloudfs_0.23.1.orig.tar.xz
 45b374cf88707d36ecedf8d9e8f0c74d9a9a1cfd12ab0fb7cb542e0e9eb751d2 6491 
ftp-cloudfs_0.23.1-1.debian.tar.gz
 02589e12c542f1875b99d90e7c6bd3a9305a9b138cb00a3e43de9dfa430787da 10262 
ftp-cloudfs_0.23.1-1_all.deb
 a685cd47aa4822bf8f990d20de2549247436d13088ea4afc112a8c9fe6e43911 22252 
python-ftp-cloudfs_0.23.1-1_all.deb
Files: 
 f92f76133382864eb18e03deb788c1e8 1565 net extra ftp-cloudfs_0.23.1-1.dsc
 e43cafd5da26ea98b182126a5f324b5d 23120 net extra ftp-cloudfs_0.23.1.orig.tar.xz
 bf344be9dea9814f1e060bd39a4bf033 6491 net extra 
ftp-cloudfs_0.23.1-1.debian.tar.gz
 037fb016f303ace990163b4f5692f89d 10262 net extra ftp-cloudfs_0.23.1-1_all.deb
 f8551ade8f24d452b90ebd702afa4254 22252 python extra 
python-ftp-cloudfs_0.23.1-1_all.deb

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

iEYEARECAAYFAlJC5xkACgkQl4M9yZjvmkmrNACfaLkAhXjaZjnIrsMqYrOfnDZ0
nBQAn0TX70klJGFtmcszJpureo2Y1xJo
=3hnS
-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/e1vops7-0006ip...@franck.debian.org



Accepted xserver-xorg-video-r128 6.9.1-1 (source amd64)

2013-09-25 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 15:29:50 +0200
Source: xserver-xorg-video-r128
Binary: xserver-xorg-video-r128 xserver-xorg-video-r128-dbg
Architecture: source amd64
Version: 6.9.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 xserver-xorg-video-r128 - X.Org X server -- ATI r128 display driver
 xserver-xorg-video-r128-dbg - X.Org X server -- ATI r128 display driver 
(debugging symbols)
Changes: 
 xserver-xorg-video-r128 (6.9.1-1) unstable; urgency=low
 .
   [ Maarten Lankhorst ]
   * New upstream release.
   * Bump Standards-Version to 3.9.3
 .
   [ Michele Cane ]
   * Bump Standards-Version to 3.9.4, no changes deeded.
 .
   [ Maarten Lankhorst ]
   * Grab upstream fixes.
Checksums-Sha1: 
 11513d737ed636c86c515cc55114b1631c9a5df0 2431 
xserver-xorg-video-r128_6.9.1-1.dsc
 62061720f51eb125e50c629bfda230b86e5f3727 570601 
xserver-xorg-video-r128_6.9.1.orig.tar.gz
 ea923dde335cf2a38a3f0fc106078e88918abc16 10770 
xserver-xorg-video-r128_6.9.1-1.diff.gz
 752b27aeeffa8b936780f2ead132da810b15ad23 177522 
xserver-xorg-video-r128_6.9.1-1_amd64.deb
 aab18a7119a9569b6a96c9c5c2bbc78856434ca7 264392 
xserver-xorg-video-r128-dbg_6.9.1-1_amd64.deb
Checksums-Sha256: 
 eb04c33b0b6583e89294d488d0a8d8041dbbfd9b5e53cf1f7f21f426015a02e9 2431 
xserver-xorg-video-r128_6.9.1-1.dsc
 e6cb3e92d5471a029bccb635dec735ecd777de24c2da502fdf26ddaa2a67b40e 570601 
xserver-xorg-video-r128_6.9.1.orig.tar.gz
 d1cbd31f859ab106cad66a8290bbf511a68a3abe39ed17b0d84ce5996993ef40 10770 
xserver-xorg-video-r128_6.9.1-1.diff.gz
 f403ffaa5534f989165c74fe9f1cee7028cfba8059bb1ccb3be28d4f214a2993 177522 
xserver-xorg-video-r128_6.9.1-1_amd64.deb
 e57f3e2d53d25b1033b812911149d4a4a91b751f7d32c7a43eda7693d8cc4675 264392 
xserver-xorg-video-r128-dbg_6.9.1-1_amd64.deb
Files: 
 4db2375f0c0e8cbdf5e6341e9fd25772 2431 x11 optional 
xserver-xorg-video-r128_6.9.1-1.dsc
 f69c938292fd2537d67e4d09350fb757 570601 x11 optional 
xserver-xorg-video-r128_6.9.1.orig.tar.gz
 f73cc8632d743ea608119f8ada0d03ab 10770 x11 optional 
xserver-xorg-video-r128_6.9.1-1.diff.gz
 0627e57a3bc4b7e626d3030e353c2d98 177522 x11 optional 
xserver-xorg-video-r128_6.9.1-1_amd64.deb
 5fbac180a7f804a35e6e7cb138bf15bb 264392 debug extra 
xserver-xorg-video-r128-dbg_6.9.1-1_amd64.deb

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

iQIcBAEBAgAGBQJSQuX4AAoJEP5VjHKmcBPDtjMQAIXuBVfSxZHuRmYjeoNOfW8T
hxFYuO+5XOX6Yt0gy0yMViwNR8zR0SHuljifCx8Vm0IfifMSMhTNopXiktsUuNXz
HAypo6rxNKQYKXQN8XbO+5cwWUhm73hnC+b+SJwhycXmhrzu0w2nwJmo34CYyN/Y
9vJESi4FsF2mCS7py/TTtOk0vSnkt/WTBDy8AkfqNEqTIAjG2pKw04dWR99DHZUh
aDtK23QazzomohFnl0XfEF2UYLIOVdsrV0Wux+AIsXhBN1NBv1QZbRdaTbxMxl1D
G8ISRdiyGEx/i3P0nhFYT+N2lYd5tlER8Z72BCCk4OvROUrwWr6a7hVhsnhi0ux0
nvDOQWGRfgUszSNUwcZVwl59IXt2SFvNdGtT/5cmUAqoNGeXxC9eyD+a/ZHzn+4Q
pW1fG0+uW8k1lZQ8hmoOwp1bpvxLNBR1xjm+QhPi/eVheJxMFioAIhGsB1BNth1O
MOIhHh/uJtqJN52KEgPZlWHhpokm4/jkYwPbyRX3PU25tPvpxWexpjiWjJDa6IGq
GKhAYtptOP3Hpi2HXrwim2kwM4KXOMQ7gwuXT8qIEAcnQeCq88t8N2n2sDSMCF2k
maZID/kBfQyrz2cbnRQmXjS2eq7OxN1FQud+C1Zk0HtnurmOu5mkM6ObXq/3369c
PdXBSICkSJ668cOsGI6G
=Pepa
-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/e1vopsq-0006e6...@franck.debian.org



Accepted sftpcloudfs 0.9-1 (source all)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 21:09:02 +0800
Source: sftpcloudfs
Binary: sftpcloudfs
Architecture: source all
Version: 0.9-1
Distribution: unstable
Urgency: low
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 sftpcloudfs - SFTP interface to Rackspace/OpenStack storage services
Closes: 719721 720006 720649 721226 721309 722417
Changes: 
 sftpcloudfs (0.9-1) unstable; urgency=low
 .
   * New upstream release.
   * Added new debconf translations, with thanks to:
 - French, Julien Patriarca (Closes: #722417).
 - Russian, Yuri Kozlov (Closes: #721309).
 - Czeck, Michal Šimůnek (Closes: #721226).
 - Italian, Beatrice Torracca (Closes: #720649).
 - Danish, Joe Dalton (Closes: #720006).
 - Japanese, Victory (Closes: #719721).
   * python-ftp-cloudfs minimum version is now = 0.23.1
Checksums-Sha1: 
 da3a4c3eaba7360dbf857af95f64b9679856b1c7 1498 sftpcloudfs_0.9-1.dsc
 6406c5f08034e55185287fae2cf96c34ff319276 11656 sftpcloudfs_0.9.orig.tar.xz
 1b87f26e8a10f8011a5ef03e47990ffa08c96e4a 9443 sftpcloudfs_0.9-1.debian.tar.gz
 5695603665e1b65be9fec171f01d1c23e9033a02 17590 sftpcloudfs_0.9-1_all.deb
Checksums-Sha256: 
 ff38c4f42ba73c093af7491e2ced651b201f61541462daed42d549cbd2078d76 1498 
sftpcloudfs_0.9-1.dsc
 0659e8c0c26a9510052972e80a4bf8cb1b05a6ba95c51eb35812b069218164f0 11656 
sftpcloudfs_0.9.orig.tar.xz
 e90259abbf4da6c52699938fcc852c56122d5c6f419daf03d01440ad79eaf747 9443 
sftpcloudfs_0.9-1.debian.tar.gz
 318e0b14f4248630d12238477b89550e44a90c0c3eb4fd4f2e12e86c8c959b51 17590 
sftpcloudfs_0.9-1_all.deb
Files: 
 fd7222130481f941e9a2c86d0b258c51 1498 net extra sftpcloudfs_0.9-1.dsc
 7c26296e2f7365b1a72acc231690ed31 11656 net extra sftpcloudfs_0.9.orig.tar.xz
 8fbaccb21e344068c4e6e50b77fff343 9443 net extra sftpcloudfs_0.9-1.debian.tar.gz
 f23e33f35ad44d33ee17a455092a543a 17590 net extra sftpcloudfs_0.9-1_all.deb

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

iEYEARECAAYFAlJC65UACgkQl4M9yZjvmklCJACgp0BAvzdbeNyImaR/PepPbJRl
rVUAn3HIh5DaMpMXrWHj1NnE28gz2JrY
=H5el
-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/e1voqtt-0001mn...@franck.debian.org



Accepted xserver-xorg-video-openchrome 1:0.3.3-1 (source amd64)

2013-09-25 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 16:41:14 +0200
Source: xserver-xorg-video-openchrome
Binary: xserver-xorg-video-openchrome xserver-xorg-video-openchrome-dbg
Architecture: source amd64
Version: 1:0.3.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 xserver-xorg-video-openchrome - X.Org X server -- VIA display driver
 xserver-xorg-video-openchrome-dbg - X.Org X server -- VIA display driver -- 
debugging symbols
Changes: 
 xserver-xorg-video-openchrome (1:0.3.3-1) unstable; urgency=low
 .
   [ Maarten Lankhorst ]
   * Move to git.
   * Remove svn note in README.source
   * Remove README.VCS-source
 .
   [ Timo Aaltonen ]
   * New upstream release. (LP: #1041625)
   * Remove 10-Deal-with-xserver-1.12.diff, not needed anymore.
   * control: Bump policy to 3.9.3, no changes.
 .
   [ Maarten Lankhorst ]
   * New upstream release.
Checksums-Sha1: 
 52eaf394a46ebf3f8e4843af5c8f28fbc975e229 2618 
xserver-xorg-video-openchrome_0.3.3-1.dsc
 d02fb6a4318f31095e552cf1f34b486b4ef0fcf7 633083 
xserver-xorg-video-openchrome_0.3.3.orig.tar.gz
 8af1c6879863f5f4b8299f2bfcd283888ec4c146 96991 
xserver-xorg-video-openchrome_0.3.3-1.diff.gz
 3ef482bac29d7e9efba8ae5fb33d16d761d0b84e 199204 
xserver-xorg-video-openchrome_0.3.3-1_amd64.deb
 2c2548ce4d26a109bd79f3d3dc4c94811ed647dd 425906 
xserver-xorg-video-openchrome-dbg_0.3.3-1_amd64.deb
Checksums-Sha256: 
 e9eb62d88c9a4ca6166020752b4e454c22cce522e9587c4fe059179411a3c8c4 2618 
xserver-xorg-video-openchrome_0.3.3-1.dsc
 bded3433b903f20eb879506980b20f8271ce05618368c0daf0d771a2c457889b 633083 
xserver-xorg-video-openchrome_0.3.3.orig.tar.gz
 1abdd81315ba4e4a7c9d9ccfa48ef09f0781be2b1112f02623cab5c43505749f 96991 
xserver-xorg-video-openchrome_0.3.3-1.diff.gz
 c77908c216677f81ad8ab1213873a1a4e80ddd1516647c1bd1c605fab97c638c 199204 
xserver-xorg-video-openchrome_0.3.3-1_amd64.deb
 00c5b120b28ec1aca652fec1525767c848517c8414851c344cffaf5091802a84 425906 
xserver-xorg-video-openchrome-dbg_0.3.3-1_amd64.deb
Files: 
 07898a31139a11d820b6bdc50b95a021 2618 x11 optional 
xserver-xorg-video-openchrome_0.3.3-1.dsc
 288dddcd2c3de417d4bb4985a91c3f61 633083 x11 optional 
xserver-xorg-video-openchrome_0.3.3.orig.tar.gz
 5ee0827845d3a950965608158eb09d7b 96991 x11 optional 
xserver-xorg-video-openchrome_0.3.3-1.diff.gz
 7d94418231564271efdaa7164f62844c 199204 x11 optional 
xserver-xorg-video-openchrome_0.3.3-1_amd64.deb
 e6f2c2fcd727403602a3575a023b5db6 425906 debug extra 
xserver-xorg-video-openchrome-dbg_0.3.3-1_amd64.deb

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

iQIcBAEBAgAGBQJSQvbSAAoJEP5VjHKmcBPDDAoQAKL3ZUKVBsJnyPQ4IznCZtDL
1AKVEsHqWaOYkOdKfyZXK7lazLeCTfol+1DexJLyBsDT+aLVuA/v3Bk+Xo6zCX4Z
i/GWw4nCAKGJGAY+Y4kLIx+ykHFhSZFuXnHlwt910gaU05j9R7IwB0SnKGOhdK7j
9tP1Eo0c3Vq8xvLkegJEBHBqIVMO34+hDFwmxrZTRx7HyFFCCnKokaFb6BwJ8AZ8
SM7AXQEhXmirOJa16Np0Ch4JVvz4BZ9H6PBaf6VVIz8QvgiTOMq8lllVonKbfyR3
4hhi5Z+Da6Omt3g5KjkoQlN/UECUyh+esaQTdZws61bQQkBCNK5WAto/U9UykrXm
AKzoxBxS/DgV09N2taqRvaNpAKHePofhJNCaE2F2lrPW5A1RsGGdp+yMSTCRP695
3je0cgQbvws4rmQXVHawsjxgYvjOdrn6uoV6cg4avUvShx51DA6gfdgaJdWyMIL5
/Lpz6Mx9qkape9IwMWnnyX9znjhUJe2ASP3hLgmk8D7oU9Tjqh7BQE5Wbc8E9QNX
MBN32yHECaCwtGPJ/r6gaFuqDb6jtBzHKvj1D+d370M38ZHQ8ocEj7aHGU/reURU
DrTzZOihUYe7ps9OwN0V3jONzEmLn2Fxy2AVjdW5UdhPFMQN2qDKLdu4vmOX++3/
OkKRX+KnFeXghaOikjmn
=ZGVa
-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/e1voqti-0001ts...@franck.debian.org



Accepted xserver-xorg-video-neomagic 1:1.2.8-1 (source amd64)

2013-09-25 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 16:59:37 +0200
Source: xserver-xorg-video-neomagic
Binary: xserver-xorg-video-neomagic
Architecture: source amd64
Version: 1:1.2.8-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 xserver-xorg-video-neomagic - X.Org X server -- Neomagic display driver
Changes: 
 xserver-xorg-video-neomagic (1:1.2.8-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump Standards-Version to 3.9.3 (no changes needed).
Checksums-Sha1: 
 2e09bc8c2f3fd6231239b6841b64b0cdbc659f44 2259 
xserver-xorg-video-neomagic_1.2.8-1.dsc
 cb01f505561aa6ec9c2ad0e52a18d9ef6fea26ef 403741 
xserver-xorg-video-neomagic_1.2.8.orig.tar.gz
 246959cf43852832c9da40e75283e7187f825b4f 6351 
xserver-xorg-video-neomagic_1.2.8-1.diff.gz
 15177b540ef4f95227a56438e2d9aee2542b7300 40944 
xserver-xorg-video-neomagic_1.2.8-1_amd64.deb
Checksums-Sha256: 
 83be8a8dad99703862f7f270b0aa6a50f80fec7471b1797dfb789ba844c74434 2259 
xserver-xorg-video-neomagic_1.2.8-1.dsc
 8502c2467b49a775e3b80046a4c2499b3262487c2e95bd312ddbad24e12e92f0 403741 
xserver-xorg-video-neomagic_1.2.8.orig.tar.gz
 7f51878c5698b1d9c6cbd636fd49f8203149732bd038659335d4e39d6a6c9f82 6351 
xserver-xorg-video-neomagic_1.2.8-1.diff.gz
 e46c3d86bebc85f2e89a9c94a7443fe40b283d68e4e53ad886528e8dd9108a14 40944 
xserver-xorg-video-neomagic_1.2.8-1_amd64.deb
Files: 
 bca592a7bc813cfb4415c3ae54f507d5 2259 x11 optional 
xserver-xorg-video-neomagic_1.2.8-1.dsc
 dc1e1b042eb61329081fef60618cdf03 403741 x11 optional 
xserver-xorg-video-neomagic_1.2.8.orig.tar.gz
 9241387de50ab0076c244f678e711a2c 6351 x11 optional 
xserver-xorg-video-neomagic_1.2.8-1.diff.gz
 6b4c9bee6ec20ae30b1cb2a57c42103b 40944 x11 optional 
xserver-xorg-video-neomagic_1.2.8-1_amd64.deb

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

iQIcBAEBAgAGBQJSQvseAAoJEP5VjHKmcBPDsc4P/1RcNNGk66umVXU/OZ08q9s7
xT21vLDsYwzYh2BkUCjIy56MvIHfTVNArffjbqrH3pTVj5QMai07ctcRwa9syZ1h
HNiIT4uxTeZ0d6rJGf+Ygap0jGs/5k6XBIE/xur9uvLUZ2PbSWXR8wpQY4HeJmo4
aNhGZz+gM9v/guwHhwzfPWCA/Hl+M4nRqP7tBaFNAehdz2RYkcMasBfXIOcDsJuN
MSgiPDhLylp8KZcjuK7qFtT//8DvkgPU9NQ1+cBl0oP0DXpZDp9udvb//gQcru2w
Z0nDdISe4JbpXT37Q16BqPc4KUx6FMsOggq0KuDHNQjltp5tP5D8HNWqNxjvNU+o
xULGRi4UXiibb7tlXvC1+80hNQUJcWSZI0QlrWLAbAvNuTvhJiDjxesPB19Tl3sX
JAPlgPs+z9kdk8z4y/d6NEXMdtH5FaOvcw1FP59QTKirdEMxfyzJLZo0zx2QqQaD
5t5cnp/ywpvQyH8QvszTeadYT9vQLBFf7hd4GJAqFgV15jAfjHcF9zmC+bgQ0a6m
DhjUSou6JoPn7pi0VWm3uosTwcoCBcIJc6Q6fvLy4PMQgjQLcjj5Cfbb/VVL6TUG
ImkNCQxjRHJjHEq6+vGJ6XloEZQxpDC3MHVHvNLDDeSJAkTqtcv4o8/zrFjmRZNc
E8rnZ3mJKKGhK9fyv7V2
=aOIB
-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/e1voqta-0001pi...@franck.debian.org



Accepted ircmarkers 0.14-3 (source amd64)

2013-09-25 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 17:28:02 +0200
Source: ircmarkers
Binary: ircmarkers
Architecture: source amd64
Version: 0.14-3
Distribution: unstable
Urgency: low
Maintainer: Christoph Berg m...@debian.org
Changed-By: Christoph Berg m...@debian.org
Description: 
 ircmarkers - place markers on maps at given coordinates
Closes: 724087
Changes: 
 ircmarkers (0.14-3) unstable; urgency=low
 .
   * Set POD encoding utf8. (Closes: #724087)
Checksums-Sha1: 
 7b4398723599f869d2225948150a8ec8a7cd786b 1546 ircmarkers_0.14-3.dsc
 e2863110cf31e0f1e738ae58eabf979ce19a01a4 33005 ircmarkers_0.14-3.tar.gz
 d3dfc5a791788c98924a4ceae953e2373f7d796c 41768 ircmarkers_0.14-3_amd64.deb
Checksums-Sha256: 
 adf443efaa885f6551270676d9f7414b50a0762989a7e95d3e302791d168b1d8 1546 
ircmarkers_0.14-3.dsc
 1dd4214277e142f3cc796c78bcc76adbd8d1a134cedee59fa62be19e6d0ae0ff 33005 
ircmarkers_0.14-3.tar.gz
 f915b024d6b309d67222f76f9fb7c3f460e2002c1eae031a63dc877c77cd5ee3 41768 
ircmarkers_0.14-3_amd64.deb
Files: 
 5f3b537342cd665f130f4d2de02a3449 1546 graphics extra ircmarkers_0.14-3.dsc
 4fddd66b7cd440d0dafef582bac62fa3 33005 graphics extra ircmarkers_0.14-3.tar.gz
 b01f1602cd56a814e06103a892992c7d 41768 graphics extra 
ircmarkers_0.14-3_amd64.deb

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

iQIcBAEBCAAGBQJSQwFpAAoJEExaa6sS0qeuRFYP/R9fgD5N7uJlJuQEsUlsFimU
MXgwg8z0KHQQqoEgeSmWKW42ksPRiSpA3+PoGlc2DToLglVe5JD0MT0MddaBuph8
SUXn1g05nZVjT5ND4TXgLxOwejfrCjVETsfnx8tfo1OPxeiENpEryL+MHEWgz6F0
Xif32ewZhgaCioLHD0EcXAI4+V5xM4Gm02TmjCSTwnCaccQn8ZKWW1iKvmCqWGXX
zPN2RaiEJ5hDp8DA6tzsKvDoUyVqsw/3CXXSbta5hOXCFS5bpvTgxydDDppOr801
XeHCoQVp9v+ZYRODmwS3FL/8Cj7yrvD4iXuSLT7SMGULksG4e9tlbtbA8qG1h+5j
wLzfmoWMomqiq7uU9CwYb5RCXgNUQk84pDTkjepqg1ckKeaJtxgIKHbZmivpICR2
s4a9PZf+J9c0IqbrKMeGAI1EBSLarCh6xZiCUXHke2DjNihQ9aRralLC48popSSx
PUc8khkFOi7Hzdefz7hy7WrHpENDfWvqrNrw6cVNAUPB9imEQvsDk6b/Qqk+DFr4
srv6K0vR+JeXwwFYGgjyZGcgy9XKMvTjbM4ImhkCKMzySU4pVsb/pAcuN1WZEJhm
pNAsV1MJKP90lalUuHj4A35x7InVe1jmeyMlwIzsC6seMVGn2HLQ20m5e2TRlHqO
xLP5kZ76b4WGzqQtS9/a
=1dWn
-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/e1vor6t-0003uo...@franck.debian.org



Accepted xserver-xorg-video-savage 1:2.3.7-1 (source amd64)

2013-09-25 Thread Maarten Lankhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 17:10:41 +0200
Source: xserver-xorg-video-savage
Binary: xserver-xorg-video-savage
Architecture: source amd64
Version: 1:2.3.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Maarten Lankhorst maarten.lankho...@ubuntu.com
Description: 
 xserver-xorg-video-savage - X.Org X server -- Savage display driver
Changes: 
 xserver-xorg-video-savage (1:2.3.7-1) unstable; urgency=low
 .
   * New upstream release that actually works.
Checksums-Sha1: 
 5ffd526a50fabba9d258b35ac823d2adf7bdb678 2359 
xserver-xorg-video-savage_2.3.7-1.dsc
 2fbc4727de2fa7fc3e9dfc9af4d0b14a0141be79 482397 
xserver-xorg-video-savage_2.3.7.orig.tar.gz
 a1037399fe071c691de400b61de3bfa89aa6df2f 8916 
xserver-xorg-video-savage_2.3.7-1.diff.gz
 34d598015f4b0fcb420d8edaea8991bb0e489cfc 89922 
xserver-xorg-video-savage_2.3.7-1_amd64.deb
Checksums-Sha256: 
 e1a5e97e9d325544bcaec1da5ef70337b79554a2d8dd01afa79e250d68f3693b 2359 
xserver-xorg-video-savage_2.3.7-1.dsc
 dd6a68e5caa5dda258ea1a96a5c7aeaedf56854d7fd7cbdd97be63634f4b758c 482397 
xserver-xorg-video-savage_2.3.7.orig.tar.gz
 34cc632f755ca201a842c3f7ca5fdcdad587bf24cecf0cf1c7ee42b6ba87fcb4 8916 
xserver-xorg-video-savage_2.3.7-1.diff.gz
 da47ba960a965f381062c61d26c211769d0d43cc2b1806dabaac2bd96e08e5aa 89922 
xserver-xorg-video-savage_2.3.7-1_amd64.deb
Files: 
 f0f9255e447d42b6b5b8bc8c24de45ab 2359 x11 optional 
xserver-xorg-video-savage_2.3.7-1.dsc
 6735338c113c5b2aef5809e4625e8540 482397 x11 optional 
xserver-xorg-video-savage_2.3.7.orig.tar.gz
 64b25eefdd08eb0f4828512e491f1e18 8916 x11 optional 
xserver-xorg-video-savage_2.3.7-1.diff.gz
 eaa55aa0d5e6f48b46d2c76fcf72510e 89922 x11 optional 
xserver-xorg-video-savage_2.3.7-1_amd64.deb

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

iQIcBAEBAgAGBQJSQv5mAAoJEP5VjHKmcBPD+VoP/2MmcofPfyCqp1dcZYNys6G4
Pys74NjL4rXMDDGYwnfYUBfhywxlAAyIs/yEUrTFH1j2gJ3ln2V66CBoWZuyzPrN
1FdV67SrPk+PB3zAaiyKqpagYhyTBlQnrZBqOkOXfNHYDn8OeSjWh/ax/z3n76UK
NtE7/kFRjR7QQww5qyXepIBLYQo1YHvRC5eER4Cn7NHl22t5RaGDxelFwcNa3taR
hcoZ2Khl5bZttcw/sftDAjSo9nT6Bb2OtU0h+OTz0qRprieetGBFH+AZ0zLfV6J5
6SGqx4YhjMv8N1qAbl+FDE9tL7iij5WOfegZ+ZUYMjxfrW/vcnGDhNndO+AAFrf9
zGUsVRVtID6PcJhuW8C2DTq67DZi2oltBYREHuDFwztBMteOGr6+AeBH3BwgwqwO
NpXFHaGGHtF4i1fbvg4KcCnt5rvxkTHzpG1mRzzpX5oI2Iw09g43QfIz9mtefKOi
XPDoM/agNbi1a90qhNeOwpi7nedieOlurErlCIVwt/3nqdH+2weYbiNQ4ejeRncH
hFne6eboDUUTXMKnuqbSNzX7Bz96fqd8KwJpqtnkF1DZ1JG69iOeCiv20h5aG5Ij
95SxhbEd5VH3nxvpQ/Otg46OdVuGfi25vKsxVUHL4BfpgljLye2gRIhe6/msie9U
Mb3H9iqc+GXSNBAcqubm
=XQqI
-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/e1vor6e-0003xn...@franck.debian.org



Accepted miniupnpd 1.8.20130730-2 (source amd64)

2013-09-25 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 23:30:11 +0800
Source: miniupnpd
Binary: miniupnpd
Architecture: source amd64
Version: 1.8.20130730-2
Distribution: unstable
Urgency: low
Maintainer: Thomas Goirand z...@debian.org
Changed-By: Thomas Goirand z...@debian.org
Description: 
 miniupnpd  - UPnP and NAT-PMP daemon for gateway routers
Closes: 719950 722278 722602 723025 723147 723768 724029 724310
Changes: 
 miniupnpd (1.8.20130730-2) unstable; urgency=low
 .
   * Added the review from the intl team (Closes: #719950).
   * Added Debconf translations, with thanks to:
 - Japanese, victory (Closes: #724310).
 - Portuguese, Traduz (Closes: #724029).
 - French, Baptiste Jammet (Closes: #723768).
 - German, Chris Leick (Closes: #723147).
 - Czech, Michal Šimůnek (Closes: #723025).
 - Russian, Yuri Kozlov (Closes: #722602).
 - Danish, Joe Dalton (Closes: #722278).
Checksums-Sha1: 
 63edb36edfc7014fba36c5eb3a408b1cf75ce4cf 1295 miniupnpd_1.8.20130730-2.dsc
 a685892fc746adc5db4b0b3455f3eec660f170f9 12952 
miniupnpd_1.8.20130730-2.debian.tar.xz
 1b14cb2c377968f2fb443ca4755ac72507d9a07a 70814 
miniupnpd_1.8.20130730-2_amd64.deb
Checksums-Sha256: 
 04e2ecf0793d33ae205350cc23b3aa9f001913f4300db31ad4dbd68f4b65a7c2 1295 
miniupnpd_1.8.20130730-2.dsc
 3b2aa940ef47676824fce078dee33df056d1e9dc148800810352f19484089212 12952 
miniupnpd_1.8.20130730-2.debian.tar.xz
 e7ba6344974a81ba932f8b984b72b7a7a11c650c92116801fd66dc7c746cc84a 70814 
miniupnpd_1.8.20130730-2_amd64.deb
Files: 
 ea4b330065f22ad7cdbf437c82d3d6c4 1295 net optional miniupnpd_1.8.20130730-2.dsc
 c7d73744654dcb21bfe7fd548a4ee59c 12952 net optional 
miniupnpd_1.8.20130730-2.debian.tar.xz
 9f26015a9b5b9e1cde95e70025358d48 70814 net optional 
miniupnpd_1.8.20130730-2_amd64.deb

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

iEYEARECAAYFAlJDA7EACgkQl4M9yZjvmknJiACfbwgmZlnO2uxGod880Z2I4PI9
uuoAoLym/GQRrCBsSUocZfBiodsftrPS
=ODor
-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/e1vorkl-0005a4...@franck.debian.org



Accepted ruby-multi-json 1.8.0-1 (source all)

2013-09-25 Thread Jérémy Bobbio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Sep 2013 17:25:12 +0200
Source: ruby-multi-json
Binary: ruby-multi-json
Architecture: source all
Version: 1.8.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Jérémy Bobbio lu...@debian.org
Description: 
 ruby-multi-json - Ruby library to provide easy switching between different 
JSON bac
Changes: 
 ruby-multi-json (1.8.0-1) unstable; urgency=low
 .
   * Team upload.
   * Imported Upstream version 1.8.0.
   * Build-Depends on the proper version of ruby-rspec.
   * Refresh patches.
   * Add git-buildpackage configuration.
Checksums-Sha1: 
 756ea9f18cf8486b643351b0703b2e0d26575587 2176 ruby-multi-json_1.8.0-1.dsc
 a7fe80dfa75361ad3d00a9916856cb6e6e7acd87 25291 
ruby-multi-json_1.8.0.orig.tar.gz
 32aae387e397c6921aead2f22b64fa7395944f31 3477 
ruby-multi-json_1.8.0-1.debian.tar.gz
 ad5ef9cde5b9b26ba8a10e4192451ffc96775475 18638 ruby-multi-json_1.8.0-1_all.deb
Checksums-Sha256: 
 61bb2cd4ebda8383db6365d9e3cc48c8856b4521f86dd62b585035cdd4b1f998 2176 
ruby-multi-json_1.8.0-1.dsc
 9c6bcaa25d69711abbb9008b647b154780faa65659896ce36a8d5db5ec2def56 25291 
ruby-multi-json_1.8.0.orig.tar.gz
 718db91884eef00bc80c1f4d7de3d012433a1a23b70a785f6e1e3eb8c064fd61 3477 
ruby-multi-json_1.8.0-1.debian.tar.gz
 da43c5b9862de28594a96f878fb104fa9692bd1ac3060089da6afecd2be0aa22 18638 
ruby-multi-json_1.8.0-1_all.deb
Files: 
 12680f367c4c0308924f8f63c23d3daa 2176 ruby optional ruby-multi-json_1.8.0-1.dsc
 279f0a68cd4ec97fb81bc0ad94137ae9 25291 ruby optional 
ruby-multi-json_1.8.0.orig.tar.gz
 38d523e3e7c98ede2aeee742509ff665 3477 ruby optional 
ruby-multi-json_1.8.0-1.debian.tar.gz
 62dc3f37b1787631e2689e30a6024af9 18638 ruby optional 
ruby-multi-json_1.8.0-1_all.deb

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

iQIcBAEBCAAGBQJSQwIKAAoJEEgU3sIrMHw8ZXIP/Al+sSDMuJatzSY3UsfVUeBm
XIaX6arz8sIlQHBKL//ABvRMDC5zvwiiwCZfadx5RmIiBgEqdCM4PBag/OpBXXZ+
BEGp9c2Hw4f3FWeO7ALe488xE6t1vpO9pb2FZ8Qr6XtUBN565JPUdc/g5bos6yeN
Mifyf/wN8xe51A2M9oo2Is0HPH76VtRCMNetNDFp9QCXPTou62TiFd49ATmoFiLt
m7vV+XLAF9IJQ4IkbckBeyp5q09r2N6ZKnPxwU2V03TJ18b7ZhuzBfgYxO5cEJGn
sYx9DJVa/a/WxlK5iWgbO7iodPJ57wpX77tme0m9HK0m7Zw4qP1gfSyHvLLFILF8
m48toDc6doduk1sS6mP102iQ2v+H2yb18mBfM/6m/L0zX6NKgKYPG+AbUWwweO2j
0whB8S0uPhKH+2QX4UqZUlrVhbegL/Y9izSfMoCrIKnHFCHcwp6Lcoki76040tBV
sn152f9k1FeEPjKwsSjKmnbTjvzGEqnaNipf1E7+GdmChG5ub5a0GhS35kW01jUK
4o33v5QgvGZMradv+Lc2D4XS6B04hhK6y/GJtB95H/znoU5llQkZiYlCgioDnT1i
n1CgxyyOi0E1/CaxxcSUPA8aKhLLOfqJImUPXOeHUXUnULgMqP0MoDuIHTKkht0R
V3xwJhilSad9HZsyHgwg
=swmc
-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/e1vorks-0005kp...@franck.debian.org



Accepted prboom-plus 2:2.5.1.4~svn4346+dfsg1-1 (source all amd64)

2013-09-25 Thread Fabian Greffrath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 10 Sep 2013 12:08:21 +0200
Source: prboom-plus
Binary: prboom prboom-plus prboom-plus-game-server
Architecture: source all amd64
Version: 2:2.5.1.4~svn4346+dfsg1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Fabian Greffrath fabian+deb...@greffrath.com
Description: 
 prboom - dummy package for the transition from prboom to prboom-plus
 prboom-plus - enhanced clone of the classic first-person shooter Doom
 prboom-plus-game-server - enhanced clone of the classic first-person shooter 
Doom (server)
Changes: 
 prboom-plus (2:2.5.1.4~svn4346+dfsg1-1) unstable; urgency=low
 .
   * New upstream SVN snapshot.
 + Mouse look now is available in software mode.
 + Added a crosshair. Three different crosshair graphics are for choice:
   cross, angle and dot. Extra features are changing crosshair colors
   according to the player's health and/or on sight of a target.
   * Add Build-Depends for all libraries we depend on, do not rely on 
libsdl*-dev
 to pull them in.
   * Demote freedoom et al. to Recommends to avoid circular dependencies.
   * Fix the sound font file name for musescore-soundfont-gm and prefer that
 package over freepats for usage with the fluidsynth MIDI player.
Checksums-Sha1: 
 978b792169d2f50aa3e217cdc6b538bfb58c2dbc 2497 
prboom-plus_2.5.1.4~svn4346+dfsg1-1.dsc
 77801afd6643d63bf68d086ea3a1e52b48545483 1043120 
prboom-plus_2.5.1.4~svn4346+dfsg1.orig.tar.xz
 8aab0825f17edf45ff213b2f8d47281bbd846495 8124 
prboom-plus_2.5.1.4~svn4346+dfsg1-1.debian.tar.gz
 6ab4d43f8cf04dce19a7f71388d83181499967e5 17508 
prboom_2.5.1.4~svn4346+dfsg1-1_all.deb
 8efccb1277a7148554216e6dbe8665ad81033a99 676468 
prboom-plus_2.5.1.4~svn4346+dfsg1-1_amd64.deb
 e4e26c12fc3dd6b8ebebdcdcb1dff0e952740429 27686 
prboom-plus-game-server_2.5.1.4~svn4346+dfsg1-1_amd64.deb
Checksums-Sha256: 
 01195d13909f2adafc85b9314de3e6a70fd21747833b3339f853e538da2580d7 2497 
prboom-plus_2.5.1.4~svn4346+dfsg1-1.dsc
 1f67f101a5715e3fae324eee08beb8821be3607ae6fb62375c3aac68bdf09609 1043120 
prboom-plus_2.5.1.4~svn4346+dfsg1.orig.tar.xz
 b57d3afb07272936859ce41428c02197b2a70f4259b3a422e1dcc45b5db6e257 8124 
prboom-plus_2.5.1.4~svn4346+dfsg1-1.debian.tar.gz
 3ee922e8a90e6f1f927f3931b8d326f659a48e8861afd80c965bc526f739644e 17508 
prboom_2.5.1.4~svn4346+dfsg1-1_all.deb
 8bd47bd2b0cc8054ddfa8e6bfebd1298e2e6ccafed610a60f0cdf40b85ca7687 676468 
prboom-plus_2.5.1.4~svn4346+dfsg1-1_amd64.deb
 7767a2356da3792dfc8ad613e1c67d4ddb9d6091a595d6f34224ec146e8acbb2 27686 
prboom-plus-game-server_2.5.1.4~svn4346+dfsg1-1_amd64.deb
Files: 
 05c1515f98d0c84f6925cf6f2bc0b4d0 2497 games optional 
prboom-plus_2.5.1.4~svn4346+dfsg1-1.dsc
 5be7b0f994c93638331e02f286d1075e 1043120 games optional 
prboom-plus_2.5.1.4~svn4346+dfsg1.orig.tar.xz
 9d728dde12daf5ffb10cbacda15b94ac 8124 games optional 
prboom-plus_2.5.1.4~svn4346+dfsg1-1.debian.tar.gz
 86b41de57cc1687c8da89d4b45039a90 17508 oldlibs extra 
prboom_2.5.1.4~svn4346+dfsg1-1_all.deb
 250ba45aa2471c3242b42998ed5dd281 676468 games optional 
prboom-plus_2.5.1.4~svn4346+dfsg1-1_amd64.deb
 b0fa6f1991fa5dc6d84cf9c0b33c0e42 27686 games optional 
prboom-plus-game-server_2.5.1.4~svn4346+dfsg1-1_amd64.deb

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

iQIcBAEBCAAGBQJSQwjlAAoJEAkHQJYGb6UP/0XU3kVHrfhG92SuaXXGLFN/
pl8y3FJBuLBHOQB4ftY5nIYO9hMjdJA1NMpqsAFWUZBuZW2n4SE2fef0MWKDbnxm
lYcz3/DN3C9Y0vtfLj7qjOZ0BFigEo35M+2HNtBxWUs0bjFlPXQqnXRAeeNaWB2L
IxyS05WfxVjrp/xzmPAselQMAfkzj7YAoXQjeYZsVGGEtFaTodewfD3ZBgFU8lxY
jyn3Ly381gWSk18AHGXI10GqqSme57bA0yqwpw+C/ifVasCzsDF3EvZfId/sCcxl
nLk4QevpYl11ug2YhypNeEJGjgpDP43jakRvn8zSi8+WrmbEgmDAi82WnNcw/JyQ
D2ghJFLHMokGqwKuu7z3gn7tKQ/CzkSyvrYKH9cseWY28J97l+JnhrDXuPlWzhIF
hC/X2G+VW10kU7B0R8UNU6DKe2peoFVC7IgbPorURTAx/ZMjMQrtyZR6mcgrhxYL
gUeM8JlhATTVh1sPi9ZEYva30TlwFGSdOwmq0GahAXVHrKpla32L7jEySMuygjy1
XKMDlPkKCBw7S8atxkvIBEagOWqf02dC0yLNuj4w9M1eTZl2xfwiEaIPgloMhpO7
qFoC4WyIOnDY5cNKfNQBiv6AwXvxYDy9avaxfnCZeD5Q6W4G0qDSoZY7GX9SLQRN
cZ+r3gi1/GyPel0if8uG
=ilre
-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/e1vornb-0001et...@franck.debian.org



Accepted tcl8.4 8.4.20-5 (source amd64 all)

2013-09-25 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 20:55:31 +0400
Source: tcl8.4
Binary: tcl8.4 libtcl8.4 tcl8.4-dev tcl8.4-doc
Architecture: source amd64 all
Version: 8.4.20-5
Distribution: experimental
Urgency: low
Maintainer: Debian Tcl/Tk Packagers pkg-tcltk-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 libtcl8.4  - Tcl (the Tool Command Language) v8.5 - run-time library files
 tcl8.4 - Tcl (the Tool Command Language) v8.4 - shell
 tcl8.4-dev - Tcl (the Tool Command Language) v8.4 - development files
 tcl8.4-doc - Tcl (the Tool Command Language) v8.4 - manual pages
Changes: 
 tcl8.4 (8.4.20-5) experimental; urgency=low
 .
   * Renamed -dev package back to tcl8.4-dev after a discussion on debian-devel
 mailing list.
   * Fixed [:cntrl:] regexp character class by adding missing \u-\u001f
 characters range to it.
Checksums-Sha1: 
 374b207bc44549ab9847f3b2ae2b475a5bc26bf6 1281 tcl8.4_8.4.20-5.dsc
 1f4a7e22890c5765bb238bfd6da30e98b71487a2 18893 tcl8.4_8.4.20-5.debian.tar.gz
 c319930f51382f095be2e55fa0284d739e9f3394 163476 tcl8.4_8.4.20-5_amd64.deb
 fbc553f097741e2008e75eb8376d6793c5dfb3e9 654700 libtcl8.4_8.4.20-5_amd64.deb
 61476954ee0f05d945eef83e71db759d8ad9cb83 628990 tcl8.4-dev_8.4.20-5_amd64.deb
 685651268598668122bd7f521b48867dcbee3df3 1116028 tcl8.4-doc_8.4.20-5_all.deb
Checksums-Sha256: 
 07d46a583d75f60251e24307c08381642010d28327f42dc63cc7ee6d42863df8 1281 
tcl8.4_8.4.20-5.dsc
 a51d3646f7fcc89b30e994c730dbe8819536976a7d7693f9d2093fdcd4c49890 18893 
tcl8.4_8.4.20-5.debian.tar.gz
 957cdbf4534aad69d05c7f5a615422f9ca39a482571508b79a8135c2ac7907d5 163476 
tcl8.4_8.4.20-5_amd64.deb
 1e0cb1e57494c48626d65844abb7b7d13e9ec29e015c390e98463d1f4bf30244 654700 
libtcl8.4_8.4.20-5_amd64.deb
 d2000aac4b7657806cd0a7a8737e9b7745115e461a82b506488e8808ed9da9a8 628990 
tcl8.4-dev_8.4.20-5_amd64.deb
 8d63076fdf4034a404901d96a634363be9845f2a0c09f570a1fa216e7fcca7b3 1116028 
tcl8.4-doc_8.4.20-5_all.deb
Files: 
 b93a23390dd9560a23dde7e9aadfc51d 1281 libs optional tcl8.4_8.4.20-5.dsc
 57d8865634fc390a87d2f6343a50a60f 18893 libs optional 
tcl8.4_8.4.20-5.debian.tar.gz
 e16688cc1705f57087cce1d26cbda6f4 163476 interpreters optional 
tcl8.4_8.4.20-5_amd64.deb
 b5c04e6d3011f0fdf837fd9ce21b4c70 654700 libs optional 
libtcl8.4_8.4.20-5_amd64.deb
 e2c2c734baffa6833e6d12f1c1565bf3 628990 libdevel optional 
tcl8.4-dev_8.4.20-5_amd64.deb
 9d6bc063c8e1c5e9069940d4a310feec 1116028 doc optional 
tcl8.4-doc_8.4.20-5_all.deb

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

iD8DBQFSQxdlIcdH02pGEFIRAuuyAJ9jmLuymvYLOKcDu+EopL/dCFJV7ACfT0Kk
ZwjNLlld92987Ws59jnT5Sg=
=PwcM
-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/e1vosjo-0001db...@franck.debian.org



Accepted ifupdown-extra 0.23 (source all)

2013-09-25 Thread Javier Fernández-Sanguino Peña
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 18:35:23 +0200
Source: ifupdown-extra
Binary: ifupdown-extra
Architecture: source all
Version: 0.23
Distribution: unstable
Urgency: low
Maintainer: Javier Fernandez-Sanguino Peña j...@debian.org
Changed-By: Javier Fernández-Sanguino Peña j...@debian.org
Description: 
 ifupdown-extra - Network scripts for ifupdown
Closes: 632210 641923
Changes: 
 ifupdown-extra (0.23) unstable; urgency=low
 .
   * if-up-scripts/check-duplicate-ip:
  - Manage redirections properly, the code causes invocation errors if using
iputil's arping (Closes: 632210)
  - Harmonise call to external programs in shell script
   * if-up-scripts/check-network-cable:
  - Fix spacing and some other minor shell scripts (Closes: 641923)
   * if-up-scripts/check-gateway:
  - Harmonise call to external programs in shell script
   * debian/control: Rename iproute to iproute2, since the former is a
 transitional package that will be removed in Jessie+1
Checksums-Sha1: 
 e66311a4016c8046f2f03673739bfa7a1331cdf0 917 ifupdown-extra_0.23.dsc
 9a8d89569abf3c70c9b726806b2fb7101d7d5b2f 22540 ifupdown-extra_0.23.tar.gz
 82e7599379a64d5060c358366482f4f0013cedfb 22688 ifupdown-extra_0.23_all.deb
Checksums-Sha256: 
 ddf7071aa5a2dbe3efd78d8f93daadaba08f5cb1d3ad280c69fe96511558b12c 917 
ifupdown-extra_0.23.dsc
 61236ec26f2a2697deb9d02fd5ca809869a6f97974beab337901433010be0465 22540 
ifupdown-extra_0.23.tar.gz
 f92669d672bfb958dbea0960bedd39b00352a705e4a12f715d0eb51707bb7f49 22688 
ifupdown-extra_0.23_all.deb
Files: 
 898ffb5c9bdea6b8f5a44034a17680b5 917 admin optional ifupdown-extra_0.23.dsc
 e595798153d0709b3393cbca4324f886 22540 admin optional 
ifupdown-extra_0.23.tar.gz
 ba2bd0a79e5ca8ee8d2539c171651d50 22688 admin optional 
ifupdown-extra_0.23_all.deb

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

iD8DBQFSQxrNsandgtyBSwkRAn9bAJ0e2zgo+3tm9Hk1xPh3DmevIikvXgCfRI82
6ewagzV3i0/1OwD893SuRhw=
=sV3I
-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/e1vosxp-0003w4...@franck.debian.org



Accepted tk8.4 8.4.20-5 (source amd64 all)

2013-09-25 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 21:05:32 +0400
Source: tk8.4
Binary: tk8.4 libtk8.4 tk8.4-dev tk8.4-doc
Architecture: source amd64 all
Version: 8.4.20-5
Distribution: experimental
Urgency: low
Maintainer: Debian Tcl/Tk Packagers pkg-tcltk-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 libtk8.4   - Tk toolkit for Tcl and X11 v8.4 - run-time files
 tk8.4  - Tk toolkit for Tcl and X11, v8.4 - windowing shell
 tk8.4-dev  - Tk toolkit for Tcl and X11, v8.4 - development files
 tk8.4-doc  - Tk toolkit for Tcl and X11, v8.4 - manual pages
Changes: 
 tk8.4 (8.4.20-5) experimental; urgency=low
 .
   * Renamed the development package back to tk8.4-dev after a discussion
 on debian-devel mailing list.
   * Make tk8.4-doc replace tck8.4 because of moving the
 /usr/share/tcltk/tk8.4/demos link.
Checksums-Sha1: 
 eff7181d55c225d822bc37252f9cc4aefc5ea55a 1334 tk8.4_8.4.20-5.dsc
 bf6c32bf8c0ca77a010767b7f7f44687562ff379 16204 tk8.4_8.4.20-5.debian.tar.gz
 03853e45be36954e4856b3fd8da2c60a4806a1d9 166312 tk8.4_8.4.20-5_amd64.deb
 d664111a7d973c25cb1943a4782d2a2131f0189a 674146 libtk8.4_8.4.20-5_amd64.deb
 59803b5b6220883b71dea3d858258e35399a8f72 666586 tk8.4-dev_8.4.20-5_amd64.deb
 4768b90c62b1c25af0baace67c3d005fe1026f4b 1004986 tk8.4-doc_8.4.20-5_all.deb
Checksums-Sha256: 
 6980bc7d597bd0fb8df34dc296a7b27ed495758adffaa4224ad7739614803122 1334 
tk8.4_8.4.20-5.dsc
 665c650166220ee5582c207aef4ecbc4503373a6fa63d72db08213e14b1f0bbd 16204 
tk8.4_8.4.20-5.debian.tar.gz
 5c24c2e6d33b84385e025e97314ee546a04f7eb356cefae744c43816f82001a3 166312 
tk8.4_8.4.20-5_amd64.deb
 50de282179b51be713535fe0b40b98b7e283452c4fccf7a5b7ea84f0d2c2556c 674146 
libtk8.4_8.4.20-5_amd64.deb
 6dbfa45c0d6587964a5afc092f14f9be71a29abbe048c3fd39d5a5d46f55efb9 666586 
tk8.4-dev_8.4.20-5_amd64.deb
 1e7d60816bbf1e1ab580c4421b0421c81892ac84261858c96cfe275634615f3e 1004986 
tk8.4-doc_8.4.20-5_all.deb
Files: 
 72c33e6bf8058e34a749d05f949952fd 1334 libs optional tk8.4_8.4.20-5.dsc
 33c3acd2f2a56c9a1635f7dc13886ed5 16204 libs optional 
tk8.4_8.4.20-5.debian.tar.gz
 fb8faffef7a3bd519dbbc5340637e9c2 166312 interpreters optional 
tk8.4_8.4.20-5_amd64.deb
 e0c85d561012d834dac4631356dd52f7 674146 libs optional 
libtk8.4_8.4.20-5_amd64.deb
 624b77b2dcdab7738728b468dc5f11f4 666586 libdevel optional 
tk8.4-dev_8.4.20-5_amd64.deb
 e47604622b8da9acd8f122ae1efcbabf 1004986 doc optional 
tk8.4-doc_8.4.20-5_all.deb

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

iD8DBQFSQxqMIcdH02pGEFIRAmUPAKCRmL2kLsdffs2SGie2gXrpVeEgvwCbB4ca
1kqjaxDwvp3caLN/RAsOLz4=
=ZSP1
-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/e1vosy4-0003jt...@franck.debian.org



Accepted gnutls26 2.12.23-7 (source all i386)

2013-09-25 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 25 Sep 2013 19:25:23 +0200
Source: gnutls26
Binary: libgnutls-dev libgnutls26 libgnutls26-dbg gnutls26-doc libgnutlsxx27 
libgnutls-openssl27
Architecture: source all i386
Version: 2.12.23-7
Distribution: unstable
Urgency: medium
Maintainer: Debian GnuTLS Maintainers pkg-gnutls-ma...@lists.alioth.debian.org
Changed-By: Andreas Metzler ametz...@debian.org
Description: 
 gnutls26-doc - GNU TLS library 2.x - documentation and examples
 libgnutls-dev - GNU TLS library - development files
 libgnutls-openssl27 - GNU TLS library - OpenSSL wrapper
 libgnutls26 - GNU TLS library - runtime library
 libgnutls26-dbg - GNU TLS library - debugger symbols
 libgnutlsxx27 - GNU TLS library - C++ runtime library
Closes: 724167
Changes: 
 gnutls26 (2.12.23-7) unstable; urgency=medium
 .
   * Upload to unstable, built against libtasn1-3.
   * 25_updatedgdocfrommaster.diff - Update gdoc script from gnutls master to
 fix spurious build failure with perl 5.18. Closes: #724167
Checksums-Sha1: 
 15e5e2fe49a3321f093cc572e8872a11cca17c42 1913 gnutls26_2.12.23-7.dsc
 5e98a564fc02579ce0ab2f485aa7b1099ea9d612 31005 gnutls26_2.12.23-7.debian.tar.gz
 bc899de007b389319ae6cafb45bbe9c2a16c157c 2459348 gnutls26-doc_2.12.23-7_all.deb
 bdc75d1bcab5719aec44687b9857f387cd6cd889 569516 
libgnutls-dev_2.12.23-7_i386.deb
 740482103c420c497df007713f187e9a6f051707 510990 libgnutls26_2.12.23-7_i386.deb
 4c35135d188d416e7a76f4f8e253d30bdc0cd379 1458646 
libgnutls26-dbg_2.12.23-7_i386.deb
 50151b9581cf2ceea07639dc39e586d57bfb0e96 218576 
libgnutlsxx27_2.12.23-7_i386.deb
 520cb9ce7f8e062a6c364374aebe974278b8f2c9 218962 
libgnutls-openssl27_2.12.23-7_i386.deb
Checksums-Sha256: 
 5cf59d8a4957c5cf4f4f614328898f048a89541d7a6f4967864aa3a4a99a417c 1913 
gnutls26_2.12.23-7.dsc
 9465ed8ab5da6e04722e4134a8295adcdbca68e89dabfec099975de6a53328d0 31005 
gnutls26_2.12.23-7.debian.tar.gz
 2403aa9a82fa106943c2266a01c5aca6c086eccd6f28b3527d87127c53667c82 2459348 
gnutls26-doc_2.12.23-7_all.deb
 b01911b69195afa63282583306535427212dbb5b0fb9613fe0a96df740e964e8 569516 
libgnutls-dev_2.12.23-7_i386.deb
 19c0a3e2bae43ac9d28b5acc2f1b10d9397bf3e400522c9732fab65bd688a8a1 510990 
libgnutls26_2.12.23-7_i386.deb
 6dd2d508db594a3c4df2ca0bf461e016c8c307d3b13e1645fd83370def149712 1458646 
libgnutls26-dbg_2.12.23-7_i386.deb
 4a70bb3b6a83a164d7b2e306ce7ad374faaf9af11e8306e728b12ba33804074d 218576 
libgnutlsxx27_2.12.23-7_i386.deb
 dab77461ae2656f9f16f818a09a0c59f36b944ee51c3bbd4e552588de8560413 218962 
libgnutls-openssl27_2.12.23-7_i386.deb
Files: 
 fbeadd32d2935b082622aa5777031081 1913 libs optional gnutls26_2.12.23-7.dsc
 a7582454d34e5a404998f3ed352276b9 31005 libs optional 
gnutls26_2.12.23-7.debian.tar.gz
 cfd0f0282afddf4f9d08d77943dda00a 2459348 doc optional 
gnutls26-doc_2.12.23-7_all.deb
 ed650ff4ece7b8de3230fe0e95fda406 569516 libdevel optional 
libgnutls-dev_2.12.23-7_i386.deb
 2b2b1c112eb0a2f7a64d3130c195849f 510990 libs standard 
libgnutls26_2.12.23-7_i386.deb
 29c07a4f3c2b5e0d6a5b8872c0dbfde8 1458646 debug extra 
libgnutls26-dbg_2.12.23-7_i386.deb
 ae56a53baea58e7c2b920e0d3e1b8f79 218576 libs extra 
libgnutlsxx27_2.12.23-7_i386.deb
 84233213c4157099c3810a1194d79e74 218962 libs standard 
libgnutls-openssl27_2.12.23-7_i386.deb

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

iEYEAREDAAYFAlJDHugACgkQHTOcZYuNdmPvGwCfW68oCg5bl9Pi+IFAPi43hGGy
s1cAoJqjVzH5OWZoFrRQ9l95x9oa/Bh5
=fOOx
-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/e1votcu-0005zs...@franck.debian.org



Accepted tcl8.5 8.5.15-1 (source amd64 all)

2013-09-25 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 21:22:27 +0400
Source: tcl8.5
Binary: tcl8.5 libtcl8.5 tcl8.5-dev tcl8.5-doc
Architecture: source amd64 all
Version: 8.5.15-1
Distribution: experimental
Urgency: low
Maintainer: Debian Tcl/Tk Packagers pkg-tcltk-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 libtcl8.5  - Tcl (the Tool Command Language) v8.5 - run-time library files
 tcl8.5 - Tcl (the Tool Command Language) v8.5 - shell
 tcl8.5-dev - Tcl (the Tool Command Language) v8.5 - development files
 tcl8.5-doc - Tcl (the Tool Command Language) v8.5 - manual pages
Changes: 
 tcl8.5 (8.5.15-1) experimental; urgency=low
 .
   * New upstream release.
   * Renamed the development package back to tcl8.5-dev after a discussion
 on debian-devel mailing list.
Checksums-Sha1: 
 def62cf86a8c7a5640a6b40494d8ff464d40c94c 1281 tcl8.5_8.5.15-1.dsc
 ff20698d7f77617ea179ec225300f4ea4a905299 4536117 tcl8.5_8.5.15.orig.tar.gz
 8f2b8adf9c2c9c60399b7afe97b3e6aa90db1951 16773 tcl8.5_8.5.15-1.debian.tar.gz
 e8b4887c4a8c76219284138825d15b5ccc80f222 58122 tcl8.5_8.5.15-1_amd64.deb
 15d8b732ad522001acf21dbcff28ae7a64bbb390 726632 libtcl8.5_8.5.15-1_amd64.deb
 25b7e3553d9d56a0f75c4eceba3bfa32d95df272 702978 tcl8.5-dev_8.5.15-1_amd64.deb
 44d4a7160927dc2e5454d1597867599f458f 1491762 tcl8.5-doc_8.5.15-1_all.deb
Checksums-Sha256: 
 1d9dce184104a943e48e8d4fe69172eef5d72a4582449af061502e148dad4b40 1281 
tcl8.5_8.5.15-1.dsc
 f24eaae461795e6b09bf54c7e9f38def025892da55f26008c16413cfdda2884e 4536117 
tcl8.5_8.5.15.orig.tar.gz
 58398d594af98edfa22ead1ad70df60d4430f122f3f72a6c96c4c2b1da778514 16773 
tcl8.5_8.5.15-1.debian.tar.gz
 0df5d1a34c26d55b280360c9d498823425d5cb2790015ca7d991970b60ccf408 58122 
tcl8.5_8.5.15-1_amd64.deb
 660c7865ea37e1c2812fb35287144cb91239d031734933428ae24305d7c35ce3 726632 
libtcl8.5_8.5.15-1_amd64.deb
 a2135e45f1abadb9e6741060d32d1c0d96a7f5349703c2ff008b20098d8cbdf9 702978 
tcl8.5-dev_8.5.15-1_amd64.deb
 842cd6faf0ad800fa1e04e8d0b68c81b763717f5ce78f02f3caa6a213bbfc211 1491762 
tcl8.5-doc_8.5.15-1_all.deb
Files: 
 533a06e21ea1f80f0194a6301fa9e1f3 1281 libs optional tcl8.5_8.5.15-1.dsc
 f3df162f92c69b254079c4d0af7a690f 4536117 libs optional 
tcl8.5_8.5.15.orig.tar.gz
 1db33279fdec3efa44d7db269575ed25 16773 libs optional 
tcl8.5_8.5.15-1.debian.tar.gz
 bad054e3921159fd503b11c8b4f586c7 58122 interpreters optional 
tcl8.5_8.5.15-1_amd64.deb
 e7b89329df4451747cfe48eb5fa4e8f8 726632 libs optional 
libtcl8.5_8.5.15-1_amd64.deb
 8d50276a9f560b22f7e6b5bc7743ef7a 702978 libdevel optional 
tcl8.5-dev_8.5.15-1_amd64.deb
 9995a87449007a2ce50e6d9e9b465b4d 1491762 doc optional 
tcl8.5-doc_8.5.15-1_all.deb

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

iD8DBQFSQx8dIcdH02pGEFIRArQQAJ9opGRK0qOwPxdv1YUA8Lp9kx0wdACfUssa
TKff1PsI9aBxqFeGrRYOXVE=
=fVUf
-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/e1votd5-0005xd...@franck.debian.org



Accepted sortsmill-tools 0.4-2 (source all)

2013-09-25 Thread Paul Wise
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 25 Sep 2013 19:31:57 +0200
Source: sortsmill-tools
Binary: sortsmill-tools
Architecture: source all
Version: 0.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Paul Wise p...@debian.org
Description: 
 sortsmill-tools - tools for designers of digital fonts
Changes: 
 sortsmill-tools (0.4-2) unstable; urgency=low
 .
   * Switch copyright file from DEP-5 to copyright format 1.0
   * Bump Standards-Version, no changes
   * Bump debhelper compat level
Checksums-Sha1: 
 c443b34c32a1652e7c9caba5b7d3f1f294bee69d 1878 sortsmill-tools_0.4-2.dsc
 b52da746207182624fc792027fa4edf8b14418e1 1904 
sortsmill-tools_0.4-2.debian.tar.gz
 e919f62d682b548a608de68d1bbdb451a287b822 35984 sortsmill-tools_0.4-2_all.deb
Checksums-Sha256: 
 371a5d608c088ad8ef18dbcb5deb6c25726b947807a4ced8514346657b9cf234 1878 
sortsmill-tools_0.4-2.dsc
 8ccf417a2ecf9dcb86500745288fb164ba41c3f4df4dcefb80b2ddb7951c2066 1904 
sortsmill-tools_0.4-2.debian.tar.gz
 8f38f8e1dbf5085907f497784c3db9f7f5575a29ea677135b531276cf2e6 35984 
sortsmill-tools_0.4-2_all.deb
Files: 
 5b0129cee591191e1a16d3e67bef2a66 1878 fonts optional sortsmill-tools_0.4-2.dsc
 38610a4be61f7cc0ff0684d161952dea 1904 fonts optional 
sortsmill-tools_0.4-2.debian.tar.gz
 33e1522a5dcc268e418ca1958acf2624 35984 fonts optional 
sortsmill-tools_0.4-2_all.deb

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

iQIcBAEBCgAGBQJSQx8+AAoJEDEWul6f+mmjH5UQALQVkvf53OyTwiGZN9xU9VBY
y+H6F+BoQ5gkfxNjnKFP4vfxH9c6/bB7tlcBWMAO98j61vy5OJJQpQVQR5ErVg3V
EQMDztU7g2o+AD6bkguzF2aiZ6nkYR7lFEbtKfsQEOm411c6hociC+xRVS6MzVda
HNPgGR9CKOl8jRsBbDeNTYPJiCBeFPuLfIsXELSV9Pu6ynVp3uL788I8OlHHag3x
CVqytO78XkqnOWuHArR7pxXvdAvBjvRpoXpWGp9179OekKtPIfkYW12CfIIW/d9i
dNwob3PLwRY40O4J7lgHaEZlWSDNKCiaB0tE2jG4VKirlPa5RjmNK5ek2hOSeoKk
Fjb0RkoQ5QM1h7YwwFxtbFthIylZmSv3SABmFVJ+WaCloo+zE+opPIU/ue+oQ3Py
iS6GmLjdyu3KPIcP1pFRZXEnz8aW7+xE/cF5x3V5wQ/na6zPX0zI6SoZRbYQQnjB
mcdRxtWaSKK4DbkZ/6G0NF7sjE+OkfCiweseViyIt+i9TIqiEVT9GHoPtJOJkekO
uTvn3gHXjcdwrjm0TNSX95FTNfcmFrYQXw8T2vneGB8BhfT2P4zLcnQ1y/u9T7+6
WKfsXVtyWYjQmwAU1nhOj4dTVnkss0QvqM3hvaTSuxTxY5BtiM0w9zapYde7Vbjh
96wvYiDpjE+1oEfAo1FV
=5IiK
-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/e1votcf-0005pl...@franck.debian.org



Accepted tk8.5 8.5.15-1 (source amd64 all)

2013-09-25 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 21:42:34 +0400
Source: tk8.5
Binary: tk8.5 libtk8.5 tk8.5-dev tk8.5-doc
Architecture: source amd64 all
Version: 8.5.15-1
Distribution: experimental
Urgency: low
Maintainer: Debian Tcl/Tk Packagers pkg-tcltk-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 libtk8.5   - Tk toolkit for Tcl and X11 v8.5 - run-time files
 tk8.5  - Tk toolkit for Tcl and X11, v8.5 - windowing shell
 tk8.5-dev  - Tk toolkit for Tcl and X11, v8.5 - development files
 tk8.5-doc  - Tk toolkit for Tcl and X11, v8.5 - manual pages
Closes: 722940
Changes: 
 tk8.5 (8.5.15-1) experimental; urgency=low
 .
   * New upstream release.
   * Renamed the development package back to tk8.5-dev after a discussion on
 debian-devel mailing list.
   * Make tk8.5-doc replace tk8.5 because of moving the
 /usr/share/tcltk/tk8.5/demos link (closes: #722940).
Checksums-Sha1: 
 d243c841e5dc2c4c66d8587ca6d495e976544b4b 1360 tk8.5_8.5.15-1.dsc
 11c9e4d94719184a62b6beb19d37e3391b376619 4086650 tk8.5_8.5.15.orig.tar.gz
 8cb377bcc816f12577fd4fb5bc7099e082c656fa 13409 tk8.5_8.5.15-1.debian.tar.gz
 6ade5c94b45d3f6f997141fb3c55e8466dcaf637 105858 tk8.5_8.5.15-1_amd64.deb
 42856c1e27c6266e4a571dd3dba78597ea6baca8 733086 libtk8.5_8.5.15-1_amd64.deb
 afa5ab1a56f22a781eec31f67bf3d1db95ab1878 739678 tk8.5-dev_8.5.15-1_amd64.deb
 28c1b9eef8550a57259b9fcf7332811c741c1576 1127876 tk8.5-doc_8.5.15-1_all.deb
Checksums-Sha256: 
 8ded510bc4172e3be37279be4ad82bad0b76365d9ef6a0bbceb34cc813e5005f 1360 
tk8.5_8.5.15-1.dsc
 815c6706d0b4fdd432fe16b82e7b9adfa1f057c44edd11d28f7c4b0ac104323f 4086650 
tk8.5_8.5.15.orig.tar.gz
 a3862269b3c1d9bd0dae562844af97dd069a2104a29544129f6d0f811a172c9b 13409 
tk8.5_8.5.15-1.debian.tar.gz
 2ed1f75fb584606fe5fac0e3d04ba40ed5932eb76a0413682efbeedb406b8430 105858 
tk8.5_8.5.15-1_amd64.deb
 dd3674164c807c03359644b308fb10cc1b91e25dd168a8c1b69c2e0cb030d796 733086 
libtk8.5_8.5.15-1_amd64.deb
 c82be88728f9d1b092ef38e93a86e85113d66923ae1c3e5ca6c91a8f358aeb5f 739678 
tk8.5-dev_8.5.15-1_amd64.deb
 c3d8c587cbb4b36eab65048ca060c41352c9daa4f8f5925c0a363208b77b7820 1127876 
tk8.5-doc_8.5.15-1_all.deb
Files: 
 b6d3b8b636aed7b8388247d338468126 1360 libs optional tk8.5_8.5.15-1.dsc
 55b8e33f903210a4e1c8bce0f820657f 4086650 libs optional tk8.5_8.5.15.orig.tar.gz
 6e38fb812c01c58fc07cf553a54a866f 13409 libs optional 
tk8.5_8.5.15-1.debian.tar.gz
 2e42369d5a7baefcc566f2b8f38c91ba 105858 interpreters optional 
tk8.5_8.5.15-1_amd64.deb
 8851ab7ebaf5d0758424e08775245e54 733086 libs optional 
libtk8.5_8.5.15-1_amd64.deb
 684b2d5f14ce7c1f8b2f5f043d13d1bb 739678 libdevel optional 
tk8.5-dev_8.5.15-1_amd64.deb
 cc3e7085f864d0f6bf34028ff2a30721 1127876 doc optional 
tk8.5-doc_8.5.15-1_all.deb

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

iD8DBQFSQyMBIcdH02pGEFIRAlUdAJwIcMtdEn429vp/8EuiZdqW8wqPDQCeJ681
+s4u0TNGtm174TD3Ygm572I=
=KX7B
-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/e1votr6-00081k...@franck.debian.org



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

2013-09-25 Thread Ivo De Decker
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 20:01:48 +0200
Source: samba
Binary: samba samba-common-bin samba-common samba-tools smbclient swat 
samba-doc samba-doc-pdf libpam-smbpass libsmbclient libsmbclient-dev winbind 
libpam-winbind libnss-winbind samba-dbg libwbclient0 libwbclient-dev
Architecture: source amd64 all
Version: 2:3.6.19-1
Distribution: unstable
Urgency: low
Maintainer: Debian Samba Maintainers pkg-samba-ma...@lists.alioth.debian.org
Changed-By: Ivo De Decker ivo.dedec...@ugent.be
Description: 
 libnss-winbind - Samba nameservice integration plugins
 libpam-smbpass - pluggable authentication module for Samba
 libpam-winbind - Windows domain authentication integration plugin
 libsmbclient - shared library for communication with SMB/CIFS servers
 libsmbclient-dev - development files for libsmbclient
 libwbclient-dev - Samba winbind client library - development files
 libwbclient0 - Samba winbind client library
 samba  - SMB/CIFS file, print, and login server for Unix
 samba-common - common files used by both the Samba server and client
 samba-common-bin - common files used by both the Samba server and client
 samba-dbg  - Samba debugging symbols
 samba-doc  - Samba documentation
 samba-doc-pdf - Samba documentation in PDF format
 samba-tools - Samba testing utilities
 smbclient  - command-line SMB/CIFS clients for Unix
 swat   - Samba Web Administration Tool
 winbind- Samba nameservice integration server
Changes: 
 samba (2:3.6.19-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release
Checksums-Sha1: 
 dadd1d70d67171040f5215ee6d38796524be61c0 3095 samba_3.6.19-1.dsc
 0359c2c1a94c03c52bad6423f3a9f47b4ca68569 26227044 samba_3.6.19.orig.tar.xz
 3098932cabad61e7356cac9df6f893f9ba12e496 358820 samba_3.6.19-1.debian.tar.gz
 907eea1eb1398177193b020bbb3f52f3778f22ea 4227874 samba_3.6.19-1_amd64.deb
 ad1cf8fd97add45cda7d6d04f67c3cb302d2b254 3645306 
samba-common-bin_3.6.19-1_amd64.deb
 eae230b17d083fe3319b5855388a1bf5a808514e 220096 samba-common_3.6.19-1_all.deb
 12785acc39237cc231cd1fe594e780a1b5c2157e 5257276 samba-tools_3.6.19-1_amd64.deb
 6c76bcdbf8254dc0a53733c35f870145e79f363f 5726694 smbclient_3.6.19-1_amd64.deb
 b152288fb7218dee53b5b8c57ed9bbfe52418e9c 1708776 swat_3.6.19-1_amd64.deb
 d33d11563cad2cd469c64d39ec8e488f7e72da1c 5771696 samba-doc_3.6.19-1_all.deb
 5203b9a32076f498ffb45058a40566abaeb40628 7066436 samba-doc-pdf_3.6.19-1_all.deb
 410cd7706f6a9e659836b62850d19ba94c4dd806 672038 
libpam-smbpass_3.6.19-1_amd64.deb
 cf1ce0ed87d12f1c39a563e268fec1080cbc2eed 1524308 
libsmbclient_3.6.19-1_amd64.deb
 f3641f55d1f52a89bee5757ffee2e72d73bf17ba 1847546 
libsmbclient-dev_3.6.19-1_amd64.deb
 bccb27cddd9516f9cc664827efbd1fdb1b1644f9 2554824 winbind_3.6.19-1_amd64.deb
 e13640fcfe536b9e85ebec9d03c44c5a2146c63e 102628 
libpam-winbind_3.6.19-1_amd64.deb
 780b4e271ae6f919ca74949c0c1591387cdf87a6 541086 
libnss-winbind_3.6.19-1_amd64.deb
 d7e204f121e7af8df1dd7623bb6167d5ac29e04d 66983098 samba-dbg_3.6.19-1_amd64.deb
 d50ff75967b0b8fbcb56616967be5e3e5063b4ba 95426 libwbclient0_3.6.19-1_amd64.deb
 0b54df04b28eca736227b76d348255285ecb1814 83670 
libwbclient-dev_3.6.19-1_amd64.deb
Checksums-Sha256: 
 f8e2e33197b437b7dfb9bb4c475e01196d848ce45cc27d632766e9906cdddb2e 3095 
samba_3.6.19-1.dsc
 b219d15cc2ea2690b1f56ad994fb5680a9988691bc11c86ddcfe551bc5c81381 26227044 
samba_3.6.19.orig.tar.xz
 4e33343ea2dc3de09ebc0535f9b352b4be589c60138d44d31521713bbbf51093 358820 
samba_3.6.19-1.debian.tar.gz
 fceccfa3cc93e4919c245676c9810e3bbac0d0b5f6350af41746e6e861791bc8 4227874 
samba_3.6.19-1_amd64.deb
 c4ef11745655979e9278b19970d9eea3bca6fc7a4e6a310dc00e5f3d808f0504 3645306 
samba-common-bin_3.6.19-1_amd64.deb
 b87f419b211bdef6d1392e3695563957b51b6a5bf8f4ba26fbf9a03466929ab0 220096 
samba-common_3.6.19-1_all.deb
 b787e4ca195d6150d08433de45468dadf46d1bc1df7a82ccff16e80f9befc983 5257276 
samba-tools_3.6.19-1_amd64.deb
 6608d08048ccf4ca26189c1af01ec11981217712eb2a30a8fbc2a401839f2e1d 5726694 
smbclient_3.6.19-1_amd64.deb
 b8136ce5eb630c9ec628080675a5c45b22bd703f71b8620733393516260706e3 1708776 
swat_3.6.19-1_amd64.deb
 c90b1944977513148b6e2a7e49c065347d6d9d378fd2abc6cdf84ceb43eed7c5 5771696 
samba-doc_3.6.19-1_all.deb
 2e62fb95ad9bbf23a54d41b141a928963022e8868a4d1b6fe5f5a5ac407e7da5 7066436 
samba-doc-pdf_3.6.19-1_all.deb
 25025bbeb9158792f49b87d42bfe612e60e0d7921a480aaf2a814d180703ac64 672038 
libpam-smbpass_3.6.19-1_amd64.deb
 d3afb394d2035fd0e61616b5fa907bd178478ec1d41b45a5b01bcde695b89109 1524308 
libsmbclient_3.6.19-1_amd64.deb
 c087fd5202f5826cd8bbe5098bb664eb9113fa5eb6a32b58ef2e2de63d1388a9 1847546 
libsmbclient-dev_3.6.19-1_amd64.deb
 9edc8429584d2f2079400960beec6cdddb778c9e7971e09774197f004a071bc0 2554824 
winbind_3.6.19-1_amd64.deb
 f2c56b125cae83aab4aeccba8c26be61529d5f81b724c00f7662de7e2ce3dd16 102628 
libpam-winbind_3.6.19-1_amd64.deb
 8370b108e46728b720ce44a4f547636a3bc433bf5fa7cae204dd095fb626ee2b 541086 
libnss-winbind_3.6.19-1_amd64.deb
 

Accepted tcl8.6 8.6.1-2 (source amd64 all)

2013-09-25 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 21:56:58 +0400
Source: tcl8.6
Binary: tcl8.6 libtcl8.6 tcl8.6-dev tcl8.6-doc
Architecture: source amd64 all
Version: 8.6.1-2
Distribution: experimental
Urgency: low
Maintainer: Debian Tcl/Tk Packagers pkg-tcltk-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 libtcl8.6  - Tcl (the Tool Command Language) v8.6 - run-time library files
 tcl8.6 - Tcl (the Tool Command Language) v8.6 - shell
 tcl8.6-dev - Tcl (the Tool Command Language) v8.6 - development files
 tcl8.6-doc - Tcl (the Tool Command Language) v8.6 - manual pages
Changes: 
 tcl8.6 (8.6.1-2) experimental; urgency=low
 .
   * Renamed the development package back to tcl8.6-dev after a discussion
 on debian-devel mailing list.
Checksums-Sha1: 
 98addc6392d37e04059455a4e7f0a6e7848d3a69 1286 tcl8.6_8.6.1-2.dsc
 b21c362f840b660765289f3a6d81748ad840ba7c 15169 tcl8.6_8.6.1-2.debian.tar.gz
 1af5594b51d452a6a14d3c209386e3dea69dfc8c 121680 tcl8.6_8.6.1-2_amd64.deb
 7e4af3ba5f80433afc405ba1883d7833c4b6c1cb 949456 libtcl8.6_8.6.1-2_amd64.deb
 c077644797ed96ef8d4aace40b0cf54013dcd632 954408 tcl8.6-dev_8.6.1-2_amd64.deb
 0202a088827f4f59374969a52c5ed2ecaed7e4c4 1700380 tcl8.6-doc_8.6.1-2_all.deb
Checksums-Sha256: 
 a02ecc9f41b06906f14e10c3d33af9b3640995be8308024b8fcc40c0c0b5a376 1286 
tcl8.6_8.6.1-2.dsc
 3dd4201df13760e91b2a7f08e0e45da82c08c7e4b16c80f1dc5a5e673d1bac5a 15169 
tcl8.6_8.6.1-2.debian.tar.gz
 0dd0e178470a99362b0ec441c374d0bb12863075f290a94702dacf4d4c57356a 121680 
tcl8.6_8.6.1-2_amd64.deb
 9ba88e6692c4756f284907cd06397f714f5ed464bc84e059cfc80eab85afda14 949456 
libtcl8.6_8.6.1-2_amd64.deb
 43ab97cc59d98af2f149d060b8efd8430fc271e4257796aa8c4333f773faee8e 954408 
tcl8.6-dev_8.6.1-2_amd64.deb
 59f3a05261d859cdbf6d3d4eabba517b710f8a4cbf1447a36af91b2ef5096098 1700380 
tcl8.6-doc_8.6.1-2_all.deb
Files: 
 51b6888f95f9593fe5cedcac571f6741 1286 libs optional tcl8.6_8.6.1-2.dsc
 c716519dcab7f1ef98ef0a020d997863 15169 libs optional 
tcl8.6_8.6.1-2.debian.tar.gz
 662195f5c651c4f108ebd67aaca1ffdf 121680 interpreters optional 
tcl8.6_8.6.1-2_amd64.deb
 44107cc5536490b8c37a03b2f2ca0b71 949456 libs optional 
libtcl8.6_8.6.1-2_amd64.deb
 f98d33e55c56ac97d446de5453ce82a9 954408 libdevel optional 
tcl8.6-dev_8.6.1-2_amd64.deb
 54fe45fcf5d88658c7e700bd922cc413 1700380 doc optional 
tcl8.6-doc_8.6.1-2_all.deb

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

iD8DBQFSQyWXIcdH02pGEFIRAv84AJ9RUH4xLoQo9V+fTANtmzE8QDlakACfeJtd
KAdC6xENiBzWQGinYhLY0DE=
=Nusa
-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/e1votgi-0002fb...@franck.debian.org



Accepted tk8.6 8.6.1-2 (source amd64 all)

2013-09-25 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 22:08:28 +0400
Source: tk8.6
Binary: tk8.6 libtk8.6 tk8.6-dev tk8.6-doc
Architecture: source amd64 all
Version: 8.6.1-2
Distribution: experimental
Urgency: low
Maintainer: Debian Tcl/Tk Packagers pkg-tcltk-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 libtk8.6   - Tk toolkit for Tcl and X11 v8.6 - run-time files
 tk8.6  - Tk toolkit for Tcl and X11 v8.6 - windowing shell
 tk8.6-dev  - Tk toolkit for Tcl and X11 v8.6 - development files
 tk8.6-doc  - Tk toolkit for Tcl and X11 v8.6 - manual pages
Changes: 
 tk8.6 (8.6.1-2) experimental; urgency=low
 .
   * Renamed the development package back to tk8.6-dev after a discussion
 on debian-devel mailing list.
Checksums-Sha1: 
 311362e9301dd49061ec612baab894a2d10b6679 1363 tk8.6_8.6.1-2.dsc
 f6e83550b0f249cfc7d72b1c039600ecec72e4d9 11406 tk8.6_8.6.1-2.debian.tar.gz
 3d369719a838996b3aa8d0d700b11ed49b5e2858 70638 tk8.6_8.6.1-2_amd64.deb
 2f708dbb5450e40903de2b37a36fc16d65b67298 750148 libtk8.6_8.6.1-2_amd64.deb
 3a8686082c1deb4e072427ab4482a63045eb7df6 722452 tk8.6-dev_8.6.1-2_amd64.deb
 2f8bf24ca920e549a43a7ff626abfaedd3201640 1170066 tk8.6-doc_8.6.1-2_all.deb
Checksums-Sha256: 
 30be8e4c00097599c2046bae157152588b44c4209a62b0cc6bef5913f73946a4 1363 
tk8.6_8.6.1-2.dsc
 ebfc705b6b6f85c3d774d3b0c02ea6ba558aac9597dc09b621141f55d0e416c9 11406 
tk8.6_8.6.1-2.debian.tar.gz
 4eaa74cd429199513ad5373dca8027907f466a30e2eebf2df642d26db1978a5b 70638 
tk8.6_8.6.1-2_amd64.deb
 dfb48a718cddda60d2049942202eb1d5ee75817be762f5ffc3470adc1dfd46f2 750148 
libtk8.6_8.6.1-2_amd64.deb
 a5364468ef15412fe06dae657ea1a47c0b47e3d862951c8feaa28dc180663875 722452 
tk8.6-dev_8.6.1-2_amd64.deb
 9835278f353f2a967026f039aabb7f36c8b56e70b3d4b2a1e7c170df4837b9da 1170066 
tk8.6-doc_8.6.1-2_all.deb
Files: 
 953c830b51500fab9e81bc00496d5379 1363 libs optional tk8.6_8.6.1-2.dsc
 74fca18b601f96a5d4f9fd8df42b27c7 11406 libs optional 
tk8.6_8.6.1-2.debian.tar.gz
 0f58001a6640836cb2d77b815bab0409 70638 interpreters optional 
tk8.6_8.6.1-2_amd64.deb
 07bdc1f2b7f80240e4b1db0aa1c9903f 750148 libs optional 
libtk8.6_8.6.1-2_amd64.deb
 2e392d480eb0c9cf72da4aec0078b812 722452 libdevel optional 
tk8.6-dev_8.6.1-2_amd64.deb
 286f8c2af2e59347aba2d41046b2ae89 1170066 doc optional tk8.6-doc_8.6.1-2_all.deb

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

iD4DBQFSQyfQIcdH02pGEFIRAiYQAJ9JBYOO5T10gP4Zt3UvQqjDfoWGLQCXREcn
VecF6ZbdW7pi92opD2IrXQ==
=l0PU
-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/e1votgv-0002la...@franck.debian.org



Accepted tcltk-defaults 8.6.0+6 (source amd64 all)

2013-09-25 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 25 Sep 2013 22:17:11 +0400
Source: tcltk-defaults
Binary: tcl tcl-dev tcl-doc tk tk-dev tk-doc
Architecture: source amd64 all
Version: 8.6.0+6
Distribution: experimental
Urgency: low
Maintainer: Debian Tcl/Tk Packagers pkg-tcltk-de...@lists.alioth.debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 tcl- Tool Command Language (default version) - shell
 tcl-dev- Tool Command Language (default version) - development files
 tcl-doc- Tool Command Language (default version) - manual pages
 tk - Toolkit for Tcl and X11 (default version) - windowing shell
 tk-dev - Toolkit for Tcl and X11 (default version) - development files
 tk-doc - Toolkit for Tcl and X11 (default version) - manual pages
Changes: 
 tcltk-defaults (8.6.0+6) experimental; urgency=low
 .
   * Removed lbtcl-dev and libtk-dev packages after a discussion on
 debian-devel mailing list.
Checksums-Sha1: 
 d95a21295e97d56b2467b2ff0a679d1d21e59c76 1276 tcltk-defaults_8.6.0+6.dsc
 5dd904566cc9d1a1bc7c16fe949b0c3a2e900868 14843 tcltk-defaults_8.6.0+6.tar.gz
 4cb2b2dbaf44b54c40485e6382e3198173a5e622 5174 tcl_8.6.0+6_amd64.deb
 9b3257202339fdda1142d096726772e50865bbff 7386 tcl-dev_8.6.0+6_amd64.deb
 32ca3eb1ea5ef98031a87bc020ddbd2fb84edaaf 115022 tcl-doc_8.6.0+6_all.deb
 836a7288cf5a14a404c50ac268322471d28cb9a3 5204 tk_8.6.0+6_amd64.deb
 ee4775246bd10251492d6d830643a1df3bc7fa20 5002 tk-dev_8.6.0+6_amd64.deb
 6e53c386503e82b2e5cfde811b33bc2534bb76a9 922 tk-doc_8.6.0+6_all.deb
Checksums-Sha256: 
 c5425789d10cf7de4d43ea4601e34b263871eec55085ea77ca1530874be28eef 1276 
tcltk-defaults_8.6.0+6.dsc
 323549efaad8c5e450692a59c37e08a3c3a6a827270c3d0584631a8f094298db 14843 
tcltk-defaults_8.6.0+6.tar.gz
 b3eb96e4e8deb6fd43dbea087d102d5ec219d1088145a1ee65f9bda5a06ced75 5174 
tcl_8.6.0+6_amd64.deb
 a73e8b3694e0d0c0cff99afa24e047d0d249a217f7c842aa05e028cb949095ec 7386 
tcl-dev_8.6.0+6_amd64.deb
 bab2efceb859f725bb442f93d44f7824391b8f017c9211a610022df312353e1e 115022 
tcl-doc_8.6.0+6_all.deb
 acfc38a4d7fd0095dde7a11a586da0724a2ae1963d0fda6a9439180e47838034 5204 
tk_8.6.0+6_amd64.deb
 6cec7c61046ad9cb029936bb5386205faa0d6277520ec06b1bc99c64a65d6d89 5002 
tk-dev_8.6.0+6_amd64.deb
 f3fcee71ee9011f55a65527cf622870e93cbb368bcf8d2758518c596ebc1f4ba 922 
tk-doc_8.6.0+6_all.deb
Files: 
 d892c809887867b77f389ce96367a3ed 1276 interpreters optional 
tcltk-defaults_8.6.0+6.dsc
 d464091d1b37b8b2e08ae5a2e48df471 14843 interpreters optional 
tcltk-defaults_8.6.0+6.tar.gz
 53ed258aec5ecfb5647d68991364c043 5174 interpreters optional 
tcl_8.6.0+6_amd64.deb
 157228efaccaabb5f96e32b7396c50eb 7386 libdevel optional 
tcl-dev_8.6.0+6_amd64.deb
 28dd0ee3ae759fda798e839afd8595c7 115022 doc optional tcl-doc_8.6.0+6_all.deb
 ee57da6f00ffd78caa666a8ab1e1eb3e 5204 interpreters optional 
tk_8.6.0+6_amd64.deb
 066a8d2688802107e26ca14f31f445f3 5002 libdevel optional 
tk-dev_8.6.0+6_amd64.deb
 4a909e25898c37dd6c8a76783ca03b03 922 doc optional tk-doc_8.6.0+6_all.deb

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

iD8DBQFSQyu3IcdH02pGEFIRAiTTAJ9BpDThg8mr4zaqOCTXkhjdq5YNAACbBGEM
iPVac5/GyzR7I2KKnU0MljM=
=HeaZ
-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/e1votud-0004ot...@franck.debian.org



Accepted pytables 3.0.0-2 (source amd64 all)

2013-09-25 Thread Antonio Valentino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 21 Sep 2013 17:48:09 +
Source: pytables
Binary: python-tables python-tables-dbg python3-tables python3-tables-dbg 
python-tables-doc
Architecture: source amd64 all
Version: 3.0.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Antonio Valentino antonio.valent...@tiscali.it
Description: 
 python-tables - hierarchical database for Python based on HDF5
 python-tables-dbg - hierarchical database for Python based on HDF5 (debug 
extension)
 python-tables-doc - hierarchical database for Python based on HDF5 - 
documentation
 python3-tables - hierarchical database for Python3 based on HDF5
 python3-tables-dbg - hierarchical database for Python 3 based on HDF5 (debug 
extension
Changes: 
 pytables (3.0.0-2) unstable; urgency=low
 .
   * Explicitly specify the minimum numexpr version in the binary
 package dependency line
Checksums-Sha1: 
 7ef35eaee750bbce0511a6fcd570fd8299d4cfe3 2047 pytables_3.0.0-2.dsc
 7d5f7e35f99404a7af938863d5aa7f979133839c 19856 pytables_3.0.0-2.debian.tar.gz
 129f5faac82dfc716856d14f7d5c56c59da39e56 656154 python-tables_3.0.0-2_amd64.deb
 b5a1cc644b64b80920a59278b2749a2c83d3b651 382838 
python-tables-dbg_3.0.0-2_amd64.deb
 d4f5f3b4fe113158c1e393b036415901f08c8b34 636908 
python3-tables_3.0.0-2_amd64.deb
 8cf76831679e33c1d8354654974c3d647747b4bf 372636 
python3-tables-dbg_3.0.0-2_amd64.deb
 0ccc253f390c42b651f96ae8ce4aa3b4dde33594 4189128 
python-tables-doc_3.0.0-2_all.deb
Checksums-Sha256: 
 05aeb03b660c416b34e6c734230df1ed584505dab11ddc3aa19e0b17c8d1d7cc 2047 
pytables_3.0.0-2.dsc
 46e4e08fc2193dfd23e69a6a028670c3fb98b1d04b87f6532074e93c4c915f8f 19856 
pytables_3.0.0-2.debian.tar.gz
 343a97d64fa808396a00c6d9e93474ccaeb7b2951f00ad473ac03316d29534e4 656154 
python-tables_3.0.0-2_amd64.deb
 535cb8e02868b5a5fd69922e5634d86afda8c286179d2bf0d7c693fa227c062c 382838 
python-tables-dbg_3.0.0-2_amd64.deb
 3e29feea3ca7e78a12cfa99d17e914027e4368d54e9e976017dd9d34421fad32 636908 
python3-tables_3.0.0-2_amd64.deb
 457aff06a517c729b0938802528b2cd44bb0d4abe8e574398c271d9a163af021 372636 
python3-tables-dbg_3.0.0-2_amd64.deb
 829b583f9055689c019fa079eacfddf0a8e318703c8d307897e44f9be55f40a2 4189128 
python-tables-doc_3.0.0-2_all.deb
Files: 
 c5351a4060cae44385724ae423edcbe3 2047 python optional pytables_3.0.0-2.dsc
 a67d9364df5eaf560f4cc3927572f7c2 19856 python optional 
pytables_3.0.0-2.debian.tar.gz
 59f22ba0208807c125f0425a742b44a3 656154 python optional 
python-tables_3.0.0-2_amd64.deb
 199a194adec6fa3f0f6d8fac06acee6b 382838 debug extra 
python-tables-dbg_3.0.0-2_amd64.deb
 e591351d4b1a58ece5057a70301999dc 636908 python optional 
python3-tables_3.0.0-2_amd64.deb
 8f2bac4d3e85e6ffe94a4f361714174b 372636 debug extra 
python3-tables-dbg_3.0.0-2_amd64.deb
 4a459cc21f62a0bf784b8fca245d48b0 4189128 doc optional 
python-tables-doc_3.0.0-2_all.deb

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

iEYEARECAAYFAlJDN9wACgkQjRFFY3XAJMghbACfQyzCJKpuEpdNPVIFNDnRZ0g4
BeUAoIFsA1zm9u6M+qJTyGBq6n1lndCz
=u2aN
-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/e1vouq2-00045j...@franck.debian.org



Accepted dish 1.19.1-1 (source all)

2013-09-25 Thread Dimitar Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 19 Sep 2013 18:12:56 +0200
Source: dish
Binary: dish
Architecture: source all
Version: 1.19.1-1
Distribution: unstable
Urgency: low
Maintainer: Dimitar Ivanov dimitar.iva...@mirendom.net
Changed-By: Dimitar Ivanov dimitar.iva...@mirendom.net
Description: 
 dish   - diligence/distributed shell for parallel sysadmin
Changes: 
 dish (1.19.1-1) unstable; urgency=low
 .
   * New upstream release
   * Standards-Version changed to 3.9.4
   * New entry in dish.links:
 '/usr/share/doc/dish/changelog.gz' points to '/usr/share/doc/dish/NEWS.gz'
   * Clean exit on timeout: all spawned processes terminated (Ubuntu LP: 
#661659)
Checksums-Sha1: 
 f2ba27091f2588a6ee8212270fc476921cafb5f8 1674 dish_1.19.1-1.dsc
 0b7b6af992697e831f86f00e58be9a5835e6b95c 53630 dish_1.19.1.orig.tar.gz
 340d4290007b6a2193b5716b7d825e5b208aec21 3365 dish_1.19.1-1.debian.tar.gz
 e10af8fc725c1378c16487313780d5008471132b 44310 dish_1.19.1-1_all.deb
Checksums-Sha256: 
 29566a2ac2c376852882a6fc0d9ffafc8c9add6d101d911dad8b348f9e72ef55 1674 
dish_1.19.1-1.dsc
 eaddd3f97240f00714879cfa6e279a652bc2afad106ff1da6c5083ff27af3bf0 53630 
dish_1.19.1.orig.tar.gz
 1970ed7a21fe4cdc1d4c2b7c9aef408a68c6785821063a9a4495e4449d042ba8 3365 
dish_1.19.1-1.debian.tar.gz
 75576226020f6fe09c264faca8a9e45eef0e9dfd38beaf69bb7ed39f8e21fa2e 44310 
dish_1.19.1-1_all.deb
Files: 
 32fa8892e4924870b4024f841ac96865 1674 admin optional dish_1.19.1-1.dsc
 5f15c9b38ac4d02c73c6d9410cc96d6c 53630 admin optional dish_1.19.1.orig.tar.gz
 5dc9b25be469470ed1a8267e88a59467 3365 admin optional 
dish_1.19.1-1.debian.tar.gz
 4de3eade7a04719154a032a265027a4f 44310 admin optional dish_1.19.1-1_all.deb

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

iQIcBAEBCAAGBQJSQ1EOAAoJEJWkL+g1NSX5PhoP/2fr7ditwq41ZkIV6+RyCfc1
fu7A9FzMIatwVQ2tvSwFTujyvOUP3Zr+itz8Aouks/Jm6fYkAgIdaU3c+0sWURWA
5xpkfElrVaF1vZ24OTid2stJUtaUxmcxQTAGcCrZOAVsPPVjkG31OeKBGFSR0ne+
2ULRGziIsLnJrmUIebDZHTHOeagyqwoGQNHEHKr7HrOjpbF1qZj1YE61GeQcnhbw
ydv1PAgIFR3jgxd3exno/8KjY9ZIVy1AJZE6uQCLocETh6ATPnUKKALUuRGJKYXH
M325DWk5n0djptbf/PfnX2+He+gE1W/hxUKmM0owIRma2QrbA+RpkQJ8iENtVoZb
S6LV/seVFIkghE/9Z+AOzygIwad+98yo8Bda66eVFNx/16m4H6OE+H7BLwnPnwcL
onGZkCvNdcRC4FlfsEFO4CxALQWctd4Jd7UKilaPTabqs4+sgXy5f/fXTZy7gewH
6VhBPtupEHKV8GBARuDaTgCAQGFP9h5ya0hUPsAqfNQVx7JRTuk9pP7K1e+lXtvN
87eAo7lRrwM8xvKkTH99KVXUb2FjErGzjVW8cbhoiKX3Kagm6z2bDLC3uUhyDxa7
Yzg9GFIn3IBiaXCkgkHDmBu20A2xnkol/kPRiCoC0MPCHRo2eP0BQZZF4Bz0pBKR
8ctAh4iUd1hx17ldr4Ly
=aeMF
-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/e1vowub-0003cg...@franck.debian.org



  1   2   >