Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Ian Jackson
My original announcement was quite cautious.  I've also recently seen
an article in LWN which was also rather cautious.  I think it's
probably a good idea to set out what the current state of play is:

dgit's current functionality seems to be in reasonably good shape, but
it lacks additional features which are important in some workflows.


dgit currently supports the following situations very well for DDs:

 * You're are not the maintainer, and want to cherry pick a patch from
   upstream, apply a patch from the BTS, or whatever.  Ie, NMUs and
   private changes.

   In this situation you do not need to know anything about the source
   code management practices of the maintainer (unless the package is
   still using some kind of hideous old debian/rules-based patch
   system).  I recommend liberal use of git-clean and git-reset.

 * The package has an existing fast-forwarding git branch whose
   content is exactly the same as (or can easily be made the same as)
   the Debian source packages.


The following situations are not currently supported well:

 * Your signing and login keys are on a host which is distant from the
   build and test host.  Ie, debsign -r and debrsign.  If you have
   enough bandwidth you can work around this by copying the git tree
   and build outputs to your signing host and running dgit push there.

   I am working on improving this; it's a SMOP but not trivial.

 * You are not a DD.  Fixing this is sadly blocked on changes in
   Debian's infrastructure including ftp-master and alioth.  I have
   started those conversations but it looks like nothing is going to
   happen quickly.

   I don't think this limitation is acceptable so if it persists I
   will perpetrate some kind of guerrilla workarounds.  But I don't
   expect improvement on this front for at least a month or two.

 * You are the maintainer and want to have a quilty kind of workflow.

   If you are the maintainer and are currently using a git-based patch
   stack system, dgit fetch will at least convert NMUs (whether made
   with dgit or not) into git commit(s) for you to incorporate into
   your patch stack (git-cherry-pick etc.), and you can then use your
   existing workflow for build and upload.

   But dgit push won't work for you because your tip git commit
   probably isn't a fast forward from the last upload.  Supporting
   this workflow well in dgit push involves some significant design
   work.  I have been thinking about this but it's not trivial.


I should also mention a non-goal:

 * I have no plans to support a workflow where dgit's git tree
   contains different contents to the source packages.

   My view is that the source code is the source code.  If something
   is not needed for [d]git users then it is not needed in the Debian
   soure package either; conversely if you need to put something in
   the Debian source package then by definition it is source code and
   should be in your vcs too.

   Furthermore, because dgit's need to bidirectionally gateway between
   git and the archive, it is difficult for dgit to do this properly.
   For example, if there are files in the source package that weren't
   in the last git commit pushed with dgit, then the git trees
   synthesised by dgit from source package (which dgit fetch/clone
   makes when the last upload was not done with dgit) would contain
   those files.  So the files would seem to have been created by the
   non-dgit-using upload.

   dgit's goal is that you should be able to use dgit's git tree in
   all situations where you could have used the source package
   directly.  If there are things in the source package which aren't
   in the dgit git tree then that's not the case.

   It may be that this means that there need to be separate git
   branches for dgit and for the sparser source.


Thanks,
Ian.


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



Re: foo link with -L/usr/lib

2013-09-17 Thread Samuel Thibault
Let's discuss this on debian-devel. Here is what I answered to bug
723358 about hwloc.

Samuel Thibault, le Tue 17 Sep 2013 13:01:32 +0200, a écrit :
 YunQiang Su, le Tue 17 Sep 2013 18:38:26 +0800, a écrit :
  This package has one or more -L/usr/lib in its build system,
 
 Err, no, it doesn't.  Please recheck your build log carefully.  And
 don't do Mass Bug Filling without extra care, which includes discussing
 about it on debian-devel first!
 
  which will make it ftbfs if there is libraries under /usr/lib,
  while is not the default architecture, mips* for example.
  
  On mips* systems, /usr/lib is defined as place to hold O32
  libraries, and /usr/lib32 for N32, and /usr/lib64 is for N64.
 
 That's not necessarily a problem: a spurious -L/usr/lib does not hurt,
 the linker will simply not take the binaries.  It's only if -L/usr/lib
 is required for proper linking that it would be a problem.  But the
 compiler already has that in its search path, so there is really no
 problem.
 
  Beside the way, on the multiarch system like Debian, user may install
  libraries under /usr/lib by hand.
 
 No, they are not supposed to be doing that.
 
  The attachement is the buildlog of this package on mips64el platform.
 
 The build didn't even start...

Samuel


-- 
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/20130917110507.ga29...@type.bordeaux.inria.fr



Re: foo link with -L/usr/lib

2013-09-17 Thread YunQiang Su
sorry for huge mistake bugs report.

My program met some problem. I am shutdowning the wrong bugs.

On Tue, Sep 17, 2013 at 7:05 PM, Samuel Thibault sthiba...@debian.org wrote:
 Let's discuss this on debian-devel. Here is what I answered to bug
 723358 about hwloc.

 Samuel Thibault, le Tue 17 Sep 2013 13:01:32 +0200, a écrit :
 YunQiang Su, le Tue 17 Sep 2013 18:38:26 +0800, a écrit :
  This package has one or more -L/usr/lib in its build system,

 Err, no, it doesn't.  Please recheck your build log carefully.  And
 don't do Mass Bug Filling without extra care, which includes discussing
 about it on debian-devel first!

  which will make it ftbfs if there is libraries under /usr/lib,
  while is not the default architecture, mips* for example.
 
  On mips* systems, /usr/lib is defined as place to hold O32
  libraries, and /usr/lib32 for N32, and /usr/lib64 is for N64.

 That's not necessarily a problem: a spurious -L/usr/lib does not hurt,
 the linker will simply not take the binaries.  It's only if -L/usr/lib
 is required for proper linking that it would be a problem.  But the
 compiler already has that in its search path, so there is really no
 problem.

  Beside the way, on the multiarch system like Debian, user may install
  libraries under /usr/lib by hand.

 No, they are not supposed to be doing that.

  The attachement is the buildlog of this package on mips64el platform.

 The build didn't even start...

 Samuel



-- 
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/cakcpw6xvyjuh5qb6wfggum1h6ft-eqmbebjhqflf-upoyqw...@mail.gmail.com



Re: foo link with -L/usr/lib

2013-09-17 Thread Samuel Thibault
YunQiang Su, le Tue 17 Sep 2013 19:06:54 +0800, a écrit :
 sorry for huge mistake bugs report.
 
 My program met some problem.

Please discuss here before starting any automated bug filling.

Samuel


-- 
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/20130917111026.gj5...@type.bordeaux.inria.fr



Re: foo link with -L/usr/lib

2013-09-17 Thread Samuel Thibault
YunQiang Su, le Tue 17 Sep 2013 19:06:54 +0800, a écrit :
 I am shutdowning the wrong bugs.

You mean only the wrong bugs, not completely all of them?  If your
program had troubles submitting the right ones, I'm afraid it will have
troubles closing the wrong ones.  Just close all of them and submit your
program here with rationale before starting it.

Also, I'm really unconvinced -L/usr/lib does really bring any problem
anyway, see what I wrote:

On Tue, Sep 17, 2013 at 7:05 PM, Samuel Thibault sthiba...@debian.org wrote:
  which will make it ftbfs if there is libraries under /usr/lib,
  while is not the default architecture, mips* for example.
 
  On mips* systems, /usr/lib is defined as place to hold O32
  libraries, and /usr/lib32 for N32, and /usr/lib64 is for N64.

 That's not necessarily a problem: a spurious -L/usr/lib does not hurt,
 the linker will simply not take the binaries.  It's only if -L/usr/lib
 is required for proper linking that it would be a problem.  But the
 compiler already has that in its search path, so there is really no
 problem.

  Beside the way, on the multiarch system like Debian, user may install
  libraries under /usr/lib by hand.

 No, they are not supposed to be doing that.

Samuel


-- 
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/20130917112330.gm5...@type.bordeaux.inria.fr



Re: foo link with -L/usr/lib

2013-09-17 Thread YunQiang Su
On Tue, Sep 17, 2013 at 7:23 PM, Samuel Thibault sthiba...@debian.org wrote:
 YunQiang Su, le Tue 17 Sep 2013 19:06:54 +0800, a écrit :
 I am shutdowning the wrong bugs.

 You mean only the wrong bugs, not completely all of them?  If your
 program had troubles submitting the right ones, I'm afraid it will have
 troubles closing the wrong ones.  Just close all of them and submit your
 program here with rationale before starting it.
There is about 200 true bugs report, while another about 300 is invaild


 Also, I'm really unconvinced -L/usr/lib does really bring any problem
 anyway, see what I wrote:
Yes, we can talk about it here.

Say sorry again.

 On Tue, Sep 17, 2013 at 7:05 PM, Samuel Thibault sthiba...@debian.org wrote:
  which will make it ftbfs if there is libraries under /usr/lib,
  while is not the default architecture, mips* for example.
 
  On mips* systems, /usr/lib is defined as place to hold O32
  libraries, and /usr/lib32 for N32, and /usr/lib64 is for N64.

 That's not necessarily a problem: a spurious -L/usr/lib does not hurt,
 the linker will simply not take the binaries.  It's only if -L/usr/lib
 is required for proper linking that it would be a problem.  But the
 compiler already has that in its search path, so there is really no
 problem.

  Beside the way, on the multiarch system like Debian, user may install
  libraries under /usr/lib by hand.

 No, they are not supposed to be doing that.

 Samuel



-- 
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/CAKcpw6X6-8WazWV1XxG_zogwX71Fv4KZCRfXYNoA5b=rzbv...@mail.gmail.com



Re: tlsa for smtp to at bugs.debian.org

2013-09-17 Thread Thorsten Glaser
Ian Jackson ijackson at chiark.greenend.org.uk writes:

  Curiously, the optional ephemeral Diffie-Hellman part of the TLS
  protocol runs in plaintext, which means that it can be attacked
  directly, without bothering to attack the RSA part.  As a result, that

 I diagree.  Forward secrecy is generally an important improvement.

Only if it provides secrecy.

If one of the communication partners (say, the client, because it’s
on a mobile) uses a guessable secret (say, due to lack of entropy),
the session is lost.

IMHO TLS should be changed to encrypt the DHE part (possibly with
an anon RSA key on the client side (which may be short- or medium-
lived) plus the server RSA key, *and* each party should send some
entropy to the other party before DHE kex happens (which the other
side may/should stir into their own RNG).

Of course, using a medium-lived RSA key for _that_ on the server
side (say, one regenerated every week) will provide additional
secrecy, as it can’t be forced out even by LEOs if it no longer
exists (has been properly purged after the week).

But looking at the sad state in SChannel… no chance.

Florian, what about switching to sign-only RSA server certs and
letting the server use ephemeral RSA encryption keypairs for the
actual session? Haven’t thought too long on that yet. (Probably
even slower, but then we’ve at least got an established slider
between fast and secure.)

bye,
//mirabilos, who wanted to write this up weeks ago and never
got around to do so


-- 
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.20130917t145055-...@post.gmane.org



Re: detecting autopkgtest

2013-09-17 Thread Ian Jackson
Enrico Tassi writes (Re: detecting autopkgtest):
 On Mon, Sep 16, 2013 at 03:08:12PM +0200, Jakub Wilk wrote:
  There's a hidden assumption here that adt is the only thing that
  will ever run the tests.
 
 Correct me if I'm wrong, but given http://dep.debian.net/deps/dep8/
 any implementation of DEP8 should define ADTTMP, sadt included.

Yes.  I guess you might be worried, though, that ADTTMP might be set
in some other circumstances.  And testing for that variable does seem
to be something of a bodge: having the behaviour of the tests changed
so radically due to setting a vaguely-TMPDIR-like variable doesn't
seem very pretty.  So I can see why you don't want to do that.

For now I recommend the solution suggested by Niels Thykier.

If you want another variable then that would be a spec change for the
DEP8 test declaration spec, and you'd probably want to define a new
restriction for it.

 The variable name may be badly chosen, since it is named after a
 particular test runner.

I didn't distinguish the name of the test runner from the name of what
is now thought of as the DEP-8 spec.  I think this was the right
choice at the time, compared to the alternative which would then have
been to have two names for two aspects of what at the time was one
thing.

I suggest that we should continue to conflate the names of the initial
runner implementation and of the test specification format.  Indeed
sadt has borrowed autopkgtest's adt name, entirely properly IMO.

Thanks,
Ian.


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



Re: foo link with -L/usr/lib

2013-09-17 Thread Osamu Aoki
Hi,

Now I see he really filed many similar bugs ...  I saw it for libucimf:
 http://bugs.debian.org/722802

It did not make sense to me.

This libucimf package was not multiarch.  So use of -L/usr/lib/ made
sense.  I took it as a wishlist request to convert package to multiarch.
So I made it as multiarch after his bug report and closed his bug.

Please note we can not always call -L/usr/lib or similar to be wrong for
multiarch.

I have Multiarch: same package (ibus-anthy) installs files like 
   /usr/lib/ibus/ibus-setup-anthy

I have Multiarch: foreign package (libucimf0) installs files like
   /usr/lib/x86_64-linux-gnu/libucimf.so.0.0.0

I used --libdir=/usr/lib/$(DEB_HOST_MULTIARCH) in debian/rules for the
second case just to be safe.  But I think with debhelper compat level 9,
this may be the default.  Please cut out strange logic around mips
etc...  

The mass bug filing should be done only after people agree to file such
bugs.  I think adding lintian warnings may be better at this moment.

If you file, please make such requests as wishlist to convert package to
multiarch.  
  (You may add reminder that -L and --libexecdir with /usr/lib 
   in debian/rules may needs to be changed for such conversion.)
Point people to read:
  https://wiki.debian.org/Multiarch/Implementation

Regards,

Osamu


-- 
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/20130917142432.GB10796@goofy.localdomain



Re: tlsa for smtp to at bugs.debian.org

2013-09-17 Thread Russ Allbery
Thorsten Glaser t...@mirbsd.de writes:

 Only if it provides secrecy.

 If one of the communication partners (say, the client, because it’s on a
 mobile) uses a guessable secret (say, due to lack of entropy), the
 session is lost.

I think that statement is somewhat too absolute.  There are levels of
protection that you can get, and guessable secrets still require someone
do the work of guessing.  Even if you're using a straight pseudorandom
number generator, the attacker still has to do some non-trivial work.

If you, specifically, are a target of a government agency, that probably
isn't going to help.  However, if you're just interested in avoiding
getting sucked into the casual dragnet, it helps quite a bit, since it
puts the complexity of an attack over the value of your data.

Schneier made this point recently and it's worth repeating: security isn't
about making your data perfectly secure.  Security is about increasing the
cost of getting at your data to more than your data is worth to the
attacker.  While strong security is obviously better since it's easier to
satisfy that requirement, weaker security is not worthless.

That said, your suggestions for making the security stronger are certainly
welcome, and that's always what we should strive for.  I just wanted to
make a minor point here about not letting the best be the enemy of the
good.  While we're working on something better, it's still worthwhile to
deploy the tools we have.

-- 
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/87ioxzmnws@windlord.stanford.edu



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Ian Jackson
Russ Allbery writes (Re: Status of dgit (good for NMUs and fast-forwarding 
Debian branches)):
 Ian Jackson ijack...@chiark.greenend.org.uk writes:
  I should also mention a non-goal:
...
   * I have no plans to support a workflow where dgit's git tree
 contains different contents to the source packages.
...
 I believe, if I understand this correctly, this will cause problems for
 the use of local-options and local-patch-header to set single-debian-patch
 for maintainer uploads.

I'm not sure what you mean, but I don't think so.  Mind you I haven't
actually tested this with any such package.

If you have one you wouldn't mind me uploading to experimental, I
could try it.

Ian.


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Julien Cristau
On Tue, Sep 17, 2013 at 11:43:29 +0100, Ian Jackson wrote:

 I should also mention a non-goal:
 
  * I have no plans to support a workflow where dgit's git tree
contains different contents to the source packages.
 
To me the tree that matters is the one after debian/rules clean, not
dpkg-source -x.  For most of the packages I touch, a lot of files get
removed by debian/rules clean.  Does the above mean that dgit will only
look at the tree as extracted by dpkg-source?

Cheers,
Julien


signature.asc
Description: Digital signature


Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Steve Langasek
On Tue, Sep 17, 2013 at 10:54:57AM -0700, Russ Allbery wrote:
 Ian Jackson ijack...@chiark.greenend.org.uk writes:
  Russ Allbery writes:

  debian/source/local-options and debian/source/local-patch-header are
  included in the working Git repository for the package but are not
  included in the source package as uplaoded to Debian.  (Yes, this means
  that they're somewhat directly contrary to the whole point of dgit.
  However, they're the best available mechanism to use a single patch for
  all changes with the 3.0 (quilt) package format if one doesn't want to
  attempt to track changes as separate patches.)

  So dpkg-source strips these options files out when it builds the
  package ?

 Correct.

  Surely then if someone does an NMU based on the source package the
  single debian patchness will be lost ?

 Correct, and that's partly the point.  It means that the maintainer
 changes are collected into one patch, but NMU patches are kept separate
 from that one patch.  (So I guess I misspoke -- it's not exactly like the
 1.0 format patch situation.  It's like that for the maintainer, but
 maintains separate NMU patches.)

Or patches in a downstream distribution.  I consider local-options to be a
horrible misfeature in the current dpkg-source.

-- 
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: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Ian Jackson
Russ Allbery writes (Re: Status of dgit (good for NMUs and fast-forwarding 
Debian branches)):
 Ian Jackson ijack...@chiark.greenend.org.uk writes:
  I guess that you think I'm saying that the series of git commits in the
  dgit history must correspond to the series of patches found in the
  source package.
 
 debian/source/local-options and debian/source/local-patch-header are
 included in the working Git repository for the package but are not
 included in the source package as uplaoded to Debian.  (Yes, this means
 that they're somewhat directly contrary to the whole point of dgit.
 However, they're the best available mechanism to use a single patch for
 all changes with the 3.0 (quilt) package format if one doesn't want to
 attempt to track changes as separate patches.)

So dpkg-source strips these options files out when it builds the
package ?  Surely then if someone does an NMU based on the source
package the single debian patchness will be lost ?

 Feel free to experiment with krb5-sync in experimental, since I'm about to
 release a new version, so there will be an upload that will clear out any
 NMUs in experimental as out of date before too much longer.

I'll see if I can take a look at this this evening.

Ian.


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

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

 Does dpkg-source provide a way to collapse all the patches into one ?
 If so you could use that before doing dgit push, and have much the same
 effect.

Well, you can always run dpkg-source with --single-debian-patch and figure
out how to plug that into your local build system.  That doesn't help with
the patch header, though; if you create a file called source/patch-header,
then that header will be applied by default to any patches created by
dpkg-source.  Which is probably not appropriate.

 Or you could simply ignore the format `3.0 (quilt)' thing entirely and
 allow it to automatically accumulate one diff per upload, and presumably
 clean it out occasionally.

I think what happens there is that the version number of the patch keeps
changing, but for my workflow I never full-circle the built Debian package
back to the Git repository, so there's nothing to clean out.  But the
patch header will be wrong.

-- 
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/87y56vjpa9@windlord.stanford.edu



Bug#723591: ITP: libcatmandu-perl -- suite of Perl modules to ease the import, storage, retrieval, export and transformation of metadata records

2013-09-17 Thread Vasudev Kamath
Package: wnpp
Severity: wishlist
Owner: Vasudev Kamath kamathvasu...@gmail.com

* Package name: libcatmandu-perl
  Version : 0.7002
  Upstream Author : Nicolas Steenlant 
* URL : https://metacpan.org/module/Catmandu
* License : Artistic or GPL-1+
  Programming Lang: (C, C++, C#, Perl, Python, etc.)
  Description :  metadata tool kit

 Catmandu provides a suite of Perl modules to ease the import, storage,
 retrieval, export and transformation of metadata records. Combine
 Catmandu modules with web application frameworks such as PSGI/Plack,
 document stores such as MongoDB and full text indexes such as Solr to
 create a rapid development environment for digital library services such
 as institutional repositories and search engines.


-- 
Vasudev Kamath
http://copyninja.info
Connect on ~friendica: copyninja@{frndk.de | vasudev.homelinux.net}
IRC nick: copyninja | vasudev {irc.oftc.net | irc.freenode.net}
GPG Key: C517 C25D E408 759D 98A4  C96B 6C8F 74AE 8770 0B7E


signature.asc
Description: Digital signature


Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Ian Jackson
Julien Cristau writes (Re: Status of dgit (good for NMUs and fast-forwarding 
Debian branches)):
 On Tue, Sep 17, 2013 at 11:43:29 +0100, Ian Jackson wrote:
  I should also mention a non-goal:
  
   * I have no plans to support a workflow where dgit's git tree
 contains different contents to the source packages.
 
 To me the tree that matters is the one after debian/rules clean, not
 dpkg-source -x.  For most of the packages I touch, a lot of files get
 removed by debian/rules clean.  Does the above mean that dgit will only
 look at the tree as extracted by dpkg-source?

Yes.  The tree of the source package is the what you get from
dpkg-source -x.

TBPH I think it's a bug if build followed by clean doesn't restore the
package to the state you got out of dpkg-source.  I don't want to
argue that as a policy change right now, but I don't have much
interest in adding code to dgit to better support the maintainers of
packages which are broken in this way.

You can just use git clean and git reset of course, so this doesn't
stop you using dgit.

In particular, if the package you are working with leaves droppings in
the source tree which its clean target doesn't pick up,
  dgit sbuild -wg
will use git-clean to remove them before building the source package.
So your source package won't contain the droppings.

Or do you mean that you have files in your git branch which are
removed by debian/rules clean ?  (I'm no longer ruling anything out
merely on the grounds that it would be utterly insane...)

Ian.


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Ian Jackson
Ian Jackson writes (Re: Status of dgit (good for NMUs and fast-forwarding 
Debian branches)):
 In particular, if the package you are working with leaves droppings in
 the source tree which its clean target doesn't pick up,
   dgit sbuild -wg
 will use git-clean to remove them before building the source package.
 So your source package won't contain the droppings.

I mean
  dgit -wg sbuild

Ian.


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Ian Jackson
Russ Allbery writes (Re: Status of dgit (good for NMUs and fast-forwarding 
Debian branches)):
 Ian Jackson ijack...@chiark.greenend.org.uk writes:
  Or you could simply ignore the format `3.0 (quilt)' thing entirely and
  allow it to automatically accumulate one diff per upload, and presumably
  clean it out occasionally.
 
 I think what happens there is that the version number of the patch keeps
 changing, but for my workflow I never full-circle the built Debian package
 back to the Git repository, so there's nothing to clean out.  But the
 patch header will be wrong.

dgit push runs dpkg-source --commit and automatically generates a new
patch name and a new patch header.

NMUers not using dgit have to run dpkg-source --commit themselves.

In either case you get a _new_ patch for each upload, I think.

But really, this kind of history should be being extracted from git,
not from the source package.  The whole point of dgit is not to have
to care about the archive's (and now dpkg-source's) strange ideas
about source package formats.

Ian.


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Russ Allbery
Steve Langasek vor...@debian.org writes:
 On Tue, Sep 17, 2013 at 10:54:57AM -0700, Russ Allbery wrote:

 Correct, and that's partly the point.  It means that the maintainer
 changes are collected into one patch, but NMU patches are kept separate
 from that one patch.  (So I guess I misspoke -- it's not exactly like
 the 1.0 format patch situation.  It's like that for the maintainer, but
 maintains separate NMU patches.)

 Or patches in a downstream distribution.

Indeed, which is what I want as maintainer.

-- 
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/87txhjjoif@windlord.stanford.edu



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Ian Jackson
Russ Allbery writes (Re: Status of dgit (good for NMUs and fast-forwarding 
Debian branches)):
 Ian Jackson ijack...@chiark.greenend.org.uk writes:
  So dpkg-source strips these options files out when it builds the
  package ?
 
 Correct.

Oh my god.

  Surely then if someone does an NMU based on the source package the
  single debian patchness will be lost ?
 
 Correct, and that's partly the point.  It means that the maintainer
 changes are collected into one patch, but NMU patches are kept separate
 from that one patch.  (So I guess I misspoke -- it's not exactly like the
 1.0 format patch situation.  It's like that for the maintainer, but
 maintains separate NMU patches.)

I think the answer is that in this situation the maintainer can't use
dgit push.  I think the idea that dgit push should do different things
for the maintainer and an NMUer is pretty repulsive.  It is this kind
of craziness that I was trying to get away from.

Does dpkg-source provide a way to collapse all the patches into one ?
If so you could use that before doing dgit push, and have much the
same effect.

Or you could specify the single Debian patch in debian/options rather
than local-options, and pick up NMUs out of git.  dgit fetch will make
commit(s) containing the NMU changes for you, although currently
you may end up with multiple NMUs squashed into a single git commit.

Or you could simply ignore the format `3.0 (quilt)' thing entirely and
allow it to automatically accumulate one diff per upload, and
presumably clean it out occasionally.

Ian.


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

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

 Or do you mean that you have files in your git branch which are removed
 by debian/rules clean ?  (I'm no longer ruling anything out merely on
 the grounds that it would be utterly insane...)

This is common.  Usually it's because upstream ships generated files in
the upstream tarball as well as source files.  As part of building the
Debian package from source, one wants to remove all generated files and
recreate them.  Deleting those files in debian/rules clean is an obvious
way to go about this.

Munging the upstream source to remove all the generated files means
diverging from the upstream source tarball and losing verifiability, etc.

See xfonts-jmk for a complex example.  See shibboleth-sp2 for a package
that has one generated file also included in the package which is changed
as part of the build process.  I don't want to keep carrying a diff for
that file, so I remove it in debian/rules clean.  This means that
debian/rules clean doesn't restore the source to exactly the same state as
an unpack, but it's in *functionally* the same state since that file will
be regenerated as part of a build and no useful information has been lost.

Saving all the build products and restoring them on debian/rules clean is
more trouble than I have any interest in doing, although patches are
welcome, I suppose.

There used to be far more of these, but dh-autoreconf goes to the effort
of stashing the files and restoring them on debian/rules clean, since
someone did the effort of centralizing that support in one place.  But
it's a lot of work to expect individual maintainers to do for one-off
cases.

-- 
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/87pps7jocj@windlord.stanford.edu



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Ian Jackson
Ian Jackson writes (Re: Status of dgit (good for NMUs and fast-forwarding 
Debian branches)):
 Russ Allbery writes (Re: Status of dgit (good for NMUs and fast-forwarding 
 Debian branches)):
  Ian Jackson ijack...@chiark.greenend.org.uk writes:
   I should also mention a non-goal:
 ...
* I have no plans to support a workflow where dgit's git tree
  contains different contents to the source packages.
 ...
  I believe, if I understand this correctly, this will cause problems for
  the use of local-options and local-patch-header to set single-debian-patch
  for maintainer uploads.
 
 I'm not sure what you mean, but I don't think so.

Ah, wait, I think maybe I can speculate as to what you mean.

I guess that you think I'm saying that the series of git commits in
the dgit history must correspond to the series of patches found in the
source package.

But no, that's not what I mean.  I just mean that the git tree object
referenced by the commit (that is, the set of files and directories in
that commit) must be identical to the tree yielded by unpacking the
source package.

There is no requirement on the shape of the history of the commit on
which you run dgit push, other than that it is a fast-forward on the
dgit suite branch.  Specifically the commit you push must be a
descendant of dgit's idea of the current state of the archive (which
might be a synthetic commit representing a non-dgit upload, or a
commit previously subjected to dgit push).

Ian.


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Julien Cristau
On Tue, Sep 17, 2013 at 19:19:22 +0100, Ian Jackson wrote:

 Julien Cristau writes (Re: Status of dgit (good for NMUs and fast-forwarding 
 Debian branches)):
  On Tue, Sep 17, 2013 at 11:43:29 +0100, Ian Jackson wrote:
   I should also mention a non-goal:
   
* I have no plans to support a workflow where dgit's git tree
  contains different contents to the source packages.
  
  To me the tree that matters is the one after debian/rules clean, not
  dpkg-source -x.  For most of the packages I touch, a lot of files get
  removed by debian/rules clean.  Does the above mean that dgit will only
  look at the tree as extracted by dpkg-source?
 
 Yes.  The tree of the source package is the what you get from
 dpkg-source -x.
 
 TBPH I think it's a bug if build followed by clean doesn't restore the
 package to the state you got out of dpkg-source.  I don't want to
 argue that as a policy change right now, but I don't have much
 interest in adding code to dgit to better support the maintainers of
 packages which are broken in this way.
 
 You can just use git clean and git reset of course, so this doesn't
 stop you using dgit.
 
 In particular, if the package you are working with leaves droppings in
 the source tree which its clean target doesn't pick up,
   dgit sbuild -wg
 will use git-clean to remove them before building the source package.
 So your source package won't contain the droppings.
 
 Or do you mean that you have files in your git branch which are
 removed by debian/rules clean ?  (I'm no longer ruling anything out
 merely on the grounds that it would be utterly insane...)
 
No, I mean the upstream tarball contains autotools-generated files that
debian/rules deletes (and that aren't in my, or upstream's, git tree).
dpkg-source ignores removals when generating the debian diff, so they're
extracted by dpkg-source -x, but since the first step after that is
pretty much always debian/rules clean, they're irrelevant.

Cheers,
Julien


signature.asc
Description: Digital signature


Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

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

 debian/source/local-options and debian/source/local-patch-header are
 included in the working Git repository for the package but are not
 included in the source package as uplaoded to Debian.  (Yes, this means
 that they're somewhat directly contrary to the whole point of dgit.
 However, they're the best available mechanism to use a single patch for
 all changes with the 3.0 (quilt) package format if one doesn't want to
 attempt to track changes as separate patches.)

 So dpkg-source strips these options files out when it builds the
 package ?

Correct.

 Surely then if someone does an NMU based on the source package the
 single debian patchness will be lost ?

Correct, and that's partly the point.  It means that the maintainer
changes are collected into one patch, but NMU patches are kept separate
from that one patch.  (So I guess I misspoke -- it's not exactly like the
1.0 format patch situation.  It's like that for the maintainer, but
maintains separate NMU patches.)

-- 
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/874n9jl4em@windlord.stanford.edu



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Adam Borowski
On Tue, Sep 17, 2013 at 07:02:04PM +0100, Ian Jackson wrote:
 Does dpkg-source provide a way to collapse all the patches into one ?
 If so you could use that before doing dgit push, and have much the
 same effect.
 
 Or you could specify the single Debian patch in debian/options rather
 than local-options, and pick up NMUs out of git.  dgit fetch will make
 commit(s) containing the NMU changes for you, although currently
 you may end up with multiple NMUs squashed into a single git commit.
 
 Or you could simply ignore the format `3.0 (quilt)' thing entirely and
 allow it to automatically accumulate one diff per upload, and
 presumably clean it out occasionally.

There's more to 3.0 (quilt) than just quilt:
* multiple tarballs (good)
* a way to include binaries without uuencode (good)
* upstream debian/ is nuked (sometimes good, at worst a minor waste of
  space and a minor inconvenience)

Here's one way:
rm -rf .pc debian/patches
echo single-debian-patch debian/source/options

The rm needs to be repeated, either in the clean target or perhaps by
dgit.

This turns 3.0 (quilt) into 3.0 (sane) and allows using version
control without having to go out of your way to work around quilt.

And since dgit is all about version control, I guess this is what you
want.

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


-- 
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/20130917190652.ga22...@angband.pl



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Colin Watson
On Tue, Sep 17, 2013 at 11:27:08AM -0700, Russ Allbery wrote:
 There used to be far more of these, but dh-autoreconf goes to the effort
 of stashing the files and restoring them on debian/rules clean, since
 someone did the effort of centralizing that support in one place.

Sadly, it doesn't - it just remembers which ones were changed, and
removes them on clean.  I think this is a bug, although it hasn't
stopped me using dh-autoreconf since it's such an improvement on what I
was doing before in just about every other way.

-- 
Colin Watson   [cjwat...@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/20130917192958.ga11...@riva.ucam.org



Bug#723609: ITP: blogofile-blog -- Blogofile plugin implementing a basic blog engine

2013-09-17 Thread Jakob Haufe
Package: wnpp
Severity: wishlist
Owner: Jakob Haufe su...@sur5r.net

* Package name: blogofile-blog
  Version : 0.8b1
  Upstream Author : Ryan McGuire r...@enigmacurry.com
* URL : http://www.blogofile.com/
* License : MIT
  Programming Lang: Python
  Description : Blogofile plugin implementing a basic blog engine

 This is a plugin for Blogofile that impleents a basic blog engine.

 It provides a collection of Mako template files along with CSS and ancillary
 files, all derived from the HTML5Boilerplate project.
 It also provided Blogofile_ configuration, controllers, filters, and commands
 to allow you to create a simple blog engine that requires no database and no
 special hosting environment.

 The templates include features like:

 * Custom web fonts from Google
 * Disqus comments
 * Google Analytics tracking code stub
 * seaofclouds jQuery twitter plugin







   * plugin


-- 
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/20130917201148.8493.65504.report...@samsa.sur5r.net



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Russ Allbery
Colin Watson cjwat...@debian.org writes:
 On Tue, Sep 17, 2013 at 11:27:08AM -0700, Russ Allbery wrote:

 There used to be far more of these, but dh-autoreconf goes to the
 effort of stashing the files and restoring them on debian/rules clean,
 since someone did the effort of centralizing that support in one place.

 Sadly, it doesn't - it just remembers which ones were changed, and
 removes them on clean.  I think this is a bug, although it hasn't
 stopped me using dh-autoreconf since it's such an improvement on what I
 was doing before in just about every other way.

Oh, I thought it did.  So yeah, there's still a *ton* of that in the
archive.  I use dh-autoreconf for every package that I have that uses
autotools, for example.

-- 
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/874n9jxmhc@windlord.stanford.edu



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

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

 I should also mention a non-goal:

  * I have no plans to support a workflow where dgit's git tree
contains different contents to the source packages.

My view is that the source code is the source code.  If something
is not needed for [d]git users then it is not needed in the Debian
soure package either; conversely if you need to put something in
the Debian source package then by definition it is source code and
should be in your vcs too.

Furthermore, because dgit's need to bidirectionally gateway between
git and the archive, it is difficult for dgit to do this properly.
For example, if there are files in the source package that weren't
in the last git commit pushed with dgit, then the git trees
synthesised by dgit from source package (which dgit fetch/clone
makes when the last upload was not done with dgit) would contain
those files.  So the files would seem to have been created by the
non-dgit-using upload.

I believe, if I understand this correctly, this will cause problems for
the use of local-options and local-patch-header to set single-debian-patch
for maintainer uploads.

-- 
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/87mwnbmo57@windlord.stanford.edu



Re: UTF-8 in jessie

2013-09-17 Thread Jakub Wilk

* Adam Borowski kilob...@angband.pl, 2013-08-12, 02:51:

Detecting non-UTF files is easy:
* false positives are impossible
* false negatives are extremely unlikely: combinations of letters that would 
happen to match a valid utf character don't happen naturally, and even if they 
did, every single combination in the file tested would need to match valid 
utf.


Not+IAo-quite. While 7-bit encodings different than ASCII are all endangered 
species, some of them can still be seen in the wild, and they excellently 
disguise themselves as UTF-8. (We had to add special code to detect ISO-2022 
encodings to Lintian not that long ago.)


Anyway, it you want to help UTF-8-ize the world, you could start by providing 
patches for these bugs:

http://lintian.debian.org/tags/debian-changelog-file-uses-obsolete-national-encoding.html
http://lintian.debian.org/tags/debian-copyright-file-uses-obsolete-national-encoding.html
http://lintian.debian.org/tags/doc-base-file-uses-obsolete-national-encoding.html

--
Jakub Wilk


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Steve Langasek
On Tue, Sep 17, 2013 at 07:19:22PM +0100, Ian Jackson wrote:
 Julien Cristau writes (Re: Status of dgit (good for NMUs and fast-forwarding 
 Debian branches)):
  On Tue, Sep 17, 2013 at 11:43:29 +0100, Ian Jackson wrote:
   I should also mention a non-goal:
   
* I have no plans to support a workflow where dgit's git tree
  contains different contents to the source packages.
  
  To me the tree that matters is the one after debian/rules clean, not
  dpkg-source -x.  For most of the packages I touch, a lot of files get
  removed by debian/rules clean.  Does the above mean that dgit will only
  look at the tree as extracted by dpkg-source?

 Yes.  The tree of the source package is the what you get from
 dpkg-source -x.

 TBPH I think it's a bug if build followed by clean doesn't restore the
 package to the state you got out of dpkg-source.  I don't want to
 argue that as a policy change right now, but I don't have much
 interest in adding code to dgit to better support the maintainers of
 packages which are broken in this way.

My understanding is that the current policy implies that the 'dpkg-source -x'
- './debian/rules clean' - 'dpkg-source -b' round-trip should be
idempotent for all practical purposes, just as the './debian/rules build' -
'./debian/rules clean' round-trip should be.  So if ./debian/rules clean
does something to a checkout of your branch, then that branch seems not to
be a complete representation of the source package.

There are various reasons this might be the case - for instance,
autogenerated autotools output that you want shipped in the source package
but don't store in the repository - but these all still amount to imperfect
representations of the source package, and dgit shouldn't cater to them.
Either debian/rules clean should be fixed to not leave droppings, or if the
output is not 'droppings', it should be part of the VCS history.

-- 
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


Decision on R datasets

2013-09-17 Thread Joerg Jaspert
Hi,

it came to our attention[0] that most R packages ship data files (*.Rda,
*.Rdata), which can contain a lot of different kind of data, from
command line instructions, to huge data tables, or even extra modules
loaded by means of install.packages() function.

It is common practice for R packages to fully document the content of
the data files in .Rd files shipped in the source tarball[1], so it
becomes easier to determine which kind of information those data files
provide.

Data files can contain modules loaded at runtime, for which we do not
usually have corresponding source code shipped in the package (or even
anywhere, if it was modified and saved without keeping the source file),
or can contain malicious code as well. This is a very extreme corner
case, but you cannot know it in advance.

This is an example of a R library without source code:

 install.packages(sig)
[snip]
 library(sig)
 save(sig, file=mydata)


When users load the data file, they have a sourceless library in their
environment:

 before - loadedNamespaces()
 load(mydata)
 setdiff(loadedNamespaces(), before)
[1] sig



This is an example of malicious code:

 old_print - print
 print - function(...)
+ {
+ unlink('the_most_important_file.txt')
+ old_print('Say goodbye to your file!')
+ }
 save.image(mydata)


When users load the data file, and try to execute a simple print
statement, they can have their files removed:

 load(mydata)
 list.files()
[1] mydata  the_most_important_file.txt
 print('Hello world!')
[1] Say goodbye to your file!
 list.files()
[1] mydata

This just shows that there exist cases where .Rda files are *not* the
prefered form of modification, such as placing code (or even whole
libraries) into *.Rda files to be loaded.

Therefore, we shall consider these data files as preferred form of
modification if the data was captured in this format from a scientific
instrument, created manually and painstakingly by hand (this is not the
common case), or otherwise not generated. If the data was generated, or
converted by a script or series of scripts, the .Rda file is likely not
the prefered form, and needs to be rebuilt at build-time from source (as
we do with any binary in the archive).

[0] http://lists.debian.org/20130805005735.ge22...@falafel.plessy.net
[1] http://cran.r-project.org/doc/manuals/R-exts.html#Documenting-data-sets

-- 
bye, Joerg
on behalf of the FTP Team


signature.asc
Description: PGP signature


Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Charles Plessy
Le Tue, Sep 17, 2013 at 11:43:29AM +0100, Ian Jackson a écrit :
 
 dgit's current functionality seems to be in reasonably good shape, but
 it lacks additional features which are important in some workflows.

Dear Ian,

for a small native package that I prepared, I would like to indicate dgit's
repository as VCS in its source control file (Vcs-Browser and Vcs-Git fields).

However, it does not clone nor browse well:

 - 
‘http://anonscm.debian.org/gitweb/?p=dgit-repos/repos/pv-grub-menu.git;a=tree’
   gives ‘404 - Reading tree failed’.

 - ‘git clone git://anonscm.debian.org/dgit-repos/repos/pv-grub-menu.git’ gives
   ‘warning: remote HEAD refers to nonexistent ref, unable to checkout.’

Do you think it is problems that are possible to solve ?

Have a nice day,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


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



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Cyril Brulebois
Charles Plessy ple...@debian.org (2013-09-18):
 Dear Ian,
 
 for a small native package that I prepared, I would like to indicate dgit's
 repository as VCS in its source control file (Vcs-Browser and Vcs-Git fields).
 
 However, it does not clone nor browse well:
 
  - 
 ‘http://anonscm.debian.org/gitweb/?p=dgit-repos/repos/pv-grub-menu.git;a=tree’
gives ‘404 - Reading tree failed’.
 
  - ‘git clone git://anonscm.debian.org/dgit-repos/repos/pv-grub-menu.git’ 
 gives
‘warning: remote HEAD refers to nonexistent ref, unable to checkout.’

HEAD probably points to master, and there's no branch at all, just two tags.

I suspect that explains both issues.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

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

 I believe, if I understand this correctly, this will cause problems
 for the use of local-options and local-patch-header to set
 single-debian-patch for maintainer uploads.

 I'm not sure what you mean, but I don't think so.

 Ah, wait, I think maybe I can speculate as to what you mean.

 I guess that you think I'm saying that the series of git commits in the
 dgit history must correspond to the series of patches found in the
 source package.

debian/source/local-options and debian/source/local-patch-header are
included in the working Git repository for the package but are not
included in the source package as uplaoded to Debian.  (Yes, this means
that they're somewhat directly contrary to the whole point of dgit.
However, they're the best available mechanism to use a single patch for
all changes with the 3.0 (quilt) package format if one doesn't want to
attempt to track changes as separate patches.)

Feel free to experiment with krb5-sync in experimental, since I'm about to
release a new version, so there will be an upload that will clear out any
NMUs in experimental as out of date before too much longer.

-- 
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/87fvt3l4va@windlord.stanford.edu



Re: Status of dgit (good for NMUs and fast-forwarding Debian branches)

2013-09-17 Thread Russ Allbery
Steve Langasek vor...@debian.org writes:

 My understanding is that the current policy implies that the
 'dpkg-source -x' - './debian/rules clean' - 'dpkg-source -b'
 round-trip should be idempotent for all practical purposes,

This is idempotent for many packages because dpkg-source -b ignores file
deletions.

 just as the './debian/rules build' - './debian/rules clean' round-trip
 should be.  So if ./debian/rules clean does something to a checkout of
 your branch, then that branch seems not to be a complete representation
 of the source package.

I don't believe that follows.  Both the Git branch and the source package
can contain files that will be immediately removed with debian/rules
clean.

-- 
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/878uyvjnou@windlord.stanford.edu



Re: Bug#723307: flash-kernel link with -L/usr/lib

2013-09-17 Thread Dmitrijs Ledkovs
Dear YunQiang Su,

It looks like this class of problems is reported against a lot of
packages now. Did you consult on debian-devel before doing this mass
bug filing?

Regards,

Dmitrijs.


On 17 September 2013 11:34, YunQiang Su wzss...@gmail.com wrote:
 Package: flash-kernel
 Version: 3.11
 X-Debbugs-CC: wzss...@gmail.com

 This package has one or more -L/usr/lib in its build system,
 which will make it ftbfs if there is libraries under /usr/lib,
 while is not the default architecture, mips* for example.

 On mips* systems, /usr/lib is defined as place to hold O32
 libraries, and /usr/lib32 for N32, and /usr/lib64 is for N64.

 Beside the way, on the multiarch system like Debian, user may install
 libraries under /usr/lib by hand.

 Please use the default search path if you can, and please consider fix
 this.

 I will try to fix this bug, while if you can help to fix it,
 It will be very appreciative.

 The attachement is the buildlog of this package on mips64el platform.


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



Re: Bug#723307: flash-kernel link with -L/usr/lib

2013-09-17 Thread Dmitrijs Ledkovs
please ignore this thread.
I've now noticed these bug reports were raised to debian-devel in the
foo link with -L/usr/lib thread.

Regards,

Dmitrijs.

On 18 September 2013 02:54, Dmitrijs Ledkovs x...@debian.org wrote:
 Dear YunQiang Su,

 It looks like this class of problems is reported against a lot of
 packages now. Did you consult on debian-devel before doing this mass
 bug filing?

 Regards,

 Dmitrijs.


 On 17 September 2013 11:34, YunQiang Su wzss...@gmail.com wrote:
 Package: flash-kernel
 Version: 3.11
 X-Debbugs-CC: wzss...@gmail.com

 This package has one or more -L/usr/lib in its build system,
 which will make it ftbfs if there is libraries under /usr/lib,
 while is not the default architecture, mips* for example.

 On mips* systems, /usr/lib is defined as place to hold O32
 libraries, and /usr/lib32 for N32, and /usr/lib64 is for N64.

 Beside the way, on the multiarch system like Debian, user may install
 libraries under /usr/lib by hand.

 Please use the default search path if you can, and please consider fix
 this.

 I will try to fix this bug, while if you can help to fix it,
 It will be very appreciative.

 The attachement is the buildlog of this package on mips64el platform.


-- 
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/CANBHLUhf=BO=u=6mknot2fcz8qwrdwkqahvfuuyiennctix...@mail.gmail.com



Accepted snake4 1.0.12-15.1 (source amd64)

2013-09-17 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 08:08:42 +0200
Source: snake4
Binary: snake4
Architecture: source amd64
Version: 1.0.12-15.1
Distribution: unstable
Urgency: low
Maintainer: Alexandre Dantas alex.danta...@gmail.com
Changed-By: Anton Gladky gl...@debian.org
Description: 
 snake4 - Snake game
Changes: 
 snake4 (1.0.12-15.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Move package from experimental to unstable.
Checksums-Sha1: 
 b6e0001b1bd2d07c7132b456411126a0d6383e4b 1939 snake4_1.0.12-15.1.dsc
 9e3eb9e311a65b4bc7c3f5e03bbed57c4a5e9682 7388 snake4_1.0.12-15.1.debian.tar.gz
 8d9d8873330264f5e962c534e13d7552996821da 33918 snake4_1.0.12-15.1_amd64.deb
Checksums-Sha256: 
 9de4b9894362b38f38e42cc0420c50f06bf6de8f146953d989a5c19456fbb9bc 1939 
snake4_1.0.12-15.1.dsc
 e4b5f594aedb7f81731408f5a47964fd483394706e23017c79bef43b6a2c1adf 7388 
snake4_1.0.12-15.1.debian.tar.gz
 7022b8ba28a677d8abb03cf1df6d419e89c41dafea32fd1a12278f1f9f76f334 33918 
snake4_1.0.12-15.1_amd64.deb
Files: 
 a85c48ecb1d9cb5bbbccfb25999c8b5f 1939 games optional snake4_1.0.12-15.1.dsc
 002d4e2e19bbf5d695b9c21d34041375 7388 games optional 
snake4_1.0.12-15.1.debian.tar.gz
 068cb6292ab54561a13c852f50d6ba94 33918 games optional 
snake4_1.0.12-15.1_amd64.deb

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

iQIcBAEBAgAGBQJSN/L0AAoJENPhc4PPp/8GtzoP/ijptNvKRI6MayVwLRcOOBt4
BOWlc8FvCPUxy303FWf8eh/OgJJgwUllyPzcpn2gljVYeB6z04mbY67eWDK4ab7F
0KwE1LrPsoO7O+ysIESSE2aANJUZ9CPNkJywJwXMaOt7QB8Fu0vAX7M7Y4y88ZZc
RX6V9rAElT2mrNByL3HtPYY1ZrF5tX8JM5YXrLc2h7o+n9FZZjGY02T6vOtTtEQf
JfBmFymH+1UBkyF+3rhra9CyNO9fl2Bc264a5nfQYPp0aQNPaRyoIUvFbr6DtTSR
2WXzXWfh4CGaY1zp5zoHv21PDbWUIwxVEi92AsiLGI58UWvWl5Phi9bXm26+tq2R
dhhNkHmeIrXuPI83JVu9KFAVUvESQ+pbs9drZvrmLDaVdAIfLo4S/uwrPnvkqHOu
vm94QaNXVQWHzncN3w5DdRh4C51J1/h6SrlluWrVj+yh0PjLA43qxfjY2E0FwFhT
LTfPLObC020qml0FuUd4YlcW8PVEMwA2ceb7mAjnzfb3Sfmvbw1RfSwmYxK3/OV7
9jkEbwfEuNPAyrHd17LiEU2WaU8FLtTVItmJdnIZKFY/QfgHEpF3Qorezjq4cYne
8LUJwkPv5FgxG0JVI7IPkeY6AGg3YyVbiL8pTvcLzOBNtbfPka0pYZ7RDOtqXxBx
w3Li7EX3bHy4adayFuS5
=QVxC
-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/e1vlocw-0003zh...@franck.debian.org



Accepted petsc 3.4.2.dfsg1-2 (source amd64 all)

2013-09-17 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 07:52:56 +0200
Source: petsc
Binary: libpetsc3.4.2-dev petsc-dev libpetsc3.4.2 libpetsc3.4.2-dbg 
petsc3.4.2-doc
Architecture: source amd64 all
Version: 3.4.2.dfsg1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description: 
 libpetsc3.4.2 - Shared libraries for version 3.4.2 of PETSc
 libpetsc3.4.2-dbg - Static debugging libraries for PETSc
 libpetsc3.4.2-dev - Static libraries, shared links, header files for PETSc
 petsc-dev  - Virtual package depending on latest PETSc development package
 petsc3.4.2-doc - Documentation and examples for PETSc
Closes: 722979
Changes: 
 petsc (3.4.2.dfsg1-2) unstable; urgency=low
 .
   * [35ff06e] Add copyright-info of some files. (Closes: #722979)
   * [0002c26] Remove libpastix-dev and change libsuperlu4-dev on
   libsuperlu3-dev.
Checksums-Sha1: 
 f224e197ae6ff57119243fd3189c0d0d0e2e3840 2638 petsc_3.4.2.dfsg1-2.dsc
 89c6f629ed9f763094b3318f098a375b861a27b9 8929008 petsc_3.4.2.dfsg1.orig.tar.xz
 deb76ed9bdb86af6851eb9adafee7912277a6ba4 34796 
petsc_3.4.2.dfsg1-2.debian.tar.gz
 23a5a0eb4dbd4de1d31de1afd3e6370b11ea73e9 3627662 
libpetsc3.4.2-dev_3.4.2.dfsg1-2_amd64.deb
 222445d5700cb6aaef6f1681592f9ab583089781 2392310 
libpetsc3.4.2_3.4.2.dfsg1-2_amd64.deb
 0e5640316e2e64a3cb01b8a8478460f0bde7ec72 9762900 
libpetsc3.4.2-dbg_3.4.2.dfsg1-2_amd64.deb
 3e070ecbab28d159cdd1b19b6943dc5731078daa 21052 petsc-dev_3.4.2.dfsg1-2_all.deb
 e0ae49d4eafc126f5c9c55b8f583458660449d1a 4035222 
petsc3.4.2-doc_3.4.2.dfsg1-2_all.deb
Checksums-Sha256: 
 8fee1fb03e4a30415df5909a83eb57dc27a8dd68ab4566707835c71d2bc70b25 2638 
petsc_3.4.2.dfsg1-2.dsc
 735df638a0aa04cf565ebad3a25853626d53f3caff49a1b2f6f3f69ac534a3c3 8929008 
petsc_3.4.2.dfsg1.orig.tar.xz
 b4cd814854f114b5ae12d1e8217eb6f71c052a230310c2cc55b1d5aacaa3c6d1 34796 
petsc_3.4.2.dfsg1-2.debian.tar.gz
 318a9ffee026a11d00028d876280cc2e2602bfda2c5e0513353069b829f5a885 3627662 
libpetsc3.4.2-dev_3.4.2.dfsg1-2_amd64.deb
 6c9e6e9512280804b6fbca79637b10f41846affc7c35e3e4bcacca7ca8d363eb 2392310 
libpetsc3.4.2_3.4.2.dfsg1-2_amd64.deb
 c98537d28a49f47a1c947a05adaa9cf824482104bfc806aae28d40791597e511 9762900 
libpetsc3.4.2-dbg_3.4.2.dfsg1-2_amd64.deb
 41c265570e06f166074aad7907f69f5337ed11e1e4cedd060a1e021678b9ace4 21052 
petsc-dev_3.4.2.dfsg1-2_all.deb
 07a02aa817d6dc41f389e493c2be974d5125eb36529fa4e06a1f80aaacf0ab35 4035222 
petsc3.4.2-doc_3.4.2.dfsg1-2_all.deb
Files: 
 0622771d96545e27595575da2f429e2a 2638 devel extra petsc_3.4.2.dfsg1-2.dsc
 3c4c747846bac6811ce998f4a594dc27 8929008 devel extra 
petsc_3.4.2.dfsg1.orig.tar.xz
 825b3f6d2281700e95f07edf9fe4fb0b 34796 devel extra 
petsc_3.4.2.dfsg1-2.debian.tar.gz
 8fab592575421562d0c78e9f13d10f46 3627662 libdevel extra 
libpetsc3.4.2-dev_3.4.2.dfsg1-2_amd64.deb
 76599beddf63cf09e7a7d0219429f1a7 2392310 libs extra 
libpetsc3.4.2_3.4.2.dfsg1-2_amd64.deb
 74c72aa8193f39f3ad9e091561eea7b1 9762900 debug extra 
libpetsc3.4.2-dbg_3.4.2.dfsg1-2_amd64.deb
 b69195060d6af841ea7856da0b962a4e 21052 libdevel extra 
petsc-dev_3.4.2.dfsg1-2_all.deb
 06d6f84d76e34140ef75f04bfcf70427 4035222 doc extra 
petsc3.4.2-doc_3.4.2.dfsg1-2_all.deb

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

iQIcBAEBAgAGBQJSN/WyAAoJENPhc4PPp/8GOIgP+wRmVuOgNAgANsQlouAw4BKz
QutSpMB+Emm5/5v+x7OG5xdZPZmC1UCQxsDhspfu88DRjCE4x2kDjvbT4ySl/l1Q
lML9kkoCfq4OqtPcUlDpSvZ+fxRZjN/iRg4ao8AenyA02XBaYnQreXRQsMVdida8
XDiiRnltH9uCa6Z564DG4jLh1zXh1s2YV/uAGbXm9PaeDy1FjYHB5mO0veXXMSlF
s0OD6Nr+pGxo/F34OfFj/mfcmCzcNIOxuwIws3Wa6fDC3cMoTZAHIS7fsSN6jnj9
4Y6vgOmWwZSferCkza99zALdOydIHLT9vmSfOWFo5DbocC89D1P8vSaAQr2njzh8
oKcIfdnxNfVAAqCkW55YUbVmMZjyCiFiYji5Jfh96fv/yrtJn9Dkq3ZfmWRto5yJ
zReJj0lxUMC66scZ/znPujWxoqHSFZ30HUu7d/3E5Fh5vjDyUZsTyxuXA/1zrbA1
tcBPRrt3LY1LkKgo+rGjbpGmYwkTI1+SHWnZ+QEVkDBnz2f4Fpr6ZOt0enuCIbz2
ZHYAGNLoYJXnu+a/1fF3Oq/HYTBC1dTCVxR5e1KncSJVoNTw0HTVoTNl/uyUoZrP
MgS0YrccgRYjzfiWSLyx+ixsW/ZGBrWzu8jHiXmyT1QwyqzdzI/EqOmmfLOpW06a
2RvhYkxspJohfKN94k8r
=W5vs
-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/e1vloql-0005ob...@franck.debian.org



Accepted tilda 1.1.7-1.1 (source amd64)

2013-09-17 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 08:16:59 +0200
Source: tilda
Binary: tilda
Architecture: source amd64
Version: 1.1.7-1.1
Distribution: experimental
Urgency: low
Maintainer: Sebastian Geiger lan...@gmx.net
Changed-By: Anton Gladky gl...@debian.org
Description: 
 tilda  - Gtk based drop down terminal for Linux and Unix
Changes: 
 tilda (1.1.7-1.1) experimental; urgency=low
 .
   * Non-maintainer upload.
   * Move package from experimental to unstable.
Checksums-Sha1: 
 822fc5c26661a67db119928c5108a55593af5413 1885 tilda_1.1.7-1.1.dsc
 39e64949c314a2eba531b2212f7c01f71d96250a 4802 tilda_1.1.7-1.1.debian.tar.gz
 2924d1411b0c8c341427c4f21760ebc2ec6abf25 74462 tilda_1.1.7-1.1_amd64.deb
Checksums-Sha256: 
 ae37eeb09eb337e12344f3e6c1756c1749b03eb52c3fc724fcdc3b05a2edad79 1885 
tilda_1.1.7-1.1.dsc
 353dcb4398191fe8c26fa7d43349a708eba4865ea09b66c4c8ebbc587e37fa8b 4802 
tilda_1.1.7-1.1.debian.tar.gz
 b3770dffa16ee035ccc7f57c1788af5510dc1a4f6ae1e0f778f2ebdf1ce81810 74462 
tilda_1.1.7-1.1_amd64.deb
Files: 
 f3c38e4e4694c1c74abc6ceb32c1e43e 1885 x11 extra tilda_1.1.7-1.1.dsc
 17c2e4cabd253d9fe3360254cdfe479a 4802 x11 extra tilda_1.1.7-1.1.debian.tar.gz
 4af77d123796db384302872ed4602472 74462 x11 extra tilda_1.1.7-1.1_amd64.deb

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

iQIcBAEBAgAGBQJSN/WPAAoJENPhc4PPp/8G2E8P/0EHjRZwXW+/n0xdFZkWr6ty
5rmNpPlPQp7UsTd4L1bF5g8W1hw6BNU2xgmGQ91ZIXDNqz3osP3l7E1uQ5kZu6lt
dH76l6Oi4iSiNX8LXzCH5DxVHs/LJaNWKblYGb4Mm4LtlgfI0ZU0FWIz+946N4lX
730qTkUfxtSMDY/6xuHsplphE4SYxPAZH6tjlwtaUl9AjSpjoTF3m8nTG8e37O2j
nfFQGQVKwSsEIpOxakJ0XhxFre0edHZIrf4Df6P3EEW2FnbviVCtZkPR7+mzVrem
R6YWlbz2QrhNyE0g6zLqNJTEHklIiwI71OpgGx7Lzdzuv8H7NVaAg+I/yzz80VSz
phOFoAQ8zA8Doz+g1LeT+65pWhtaujHR7btInrsxLhOClWyKPsy7Q6gHegT/agIB
zskDmpVeyBoPiXxIXuDFRHjpTKUZHdVVhfMOnlgST1h4A1xHu7j1jZ8wLidJCFs9
GVi9tblAJQPwQxv9vLx60JTDFMviPVWHY5wf9+k5C3pZ6+/EWMa0z17wbe7M2HXa
TmDvAIXcvpGIPk1u4lhvfovRvpTdaeOHytXWo3Pdv7vJU4ozhiVHLf3dG1vsQuRX
3YoiGdCN/YonBEchiv8hVfAZZV4oWg9HQobg5O8cmVE6XtqerWvPPqNo1iZMEVRK
LwI9qsbt0KO6H8dY4ODm
=Qbq3
-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/e1vloqt-0005wc...@franck.debian.org



Accepted tilda 1.1.7-1.2 (source amd64)

2013-09-17 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 08:37:46 +0200
Source: tilda
Binary: tilda
Architecture: source amd64
Version: 1.1.7-1.2
Distribution: unstable
Urgency: low
Maintainer: Sebastian Geiger lan...@gmx.net
Changed-By: Anton Gladky gl...@debian.org
Description: 
 tilda  - Gtk based drop down terminal for Linux and Unix
Changes: 
 tilda (1.1.7-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Move package from experimental to unstable.
Checksums-Sha1: 
 ccbd246e18655ea000ebe46e8181b550d84eb0d1 1885 tilda_1.1.7-1.2.dsc
 ed38eb84d79c7fdf846ff35de2425f440c484d0a 4800 tilda_1.1.7-1.2.debian.tar.gz
 5a00364ee40b447645ee4dcb432f28af25ffc439 74330 tilda_1.1.7-1.2_amd64.deb
Checksums-Sha256: 
 8f98cfa55fdc5da10d98f468fccdbb3bbb757577e0dbdeb6a22763c530a1bdee 1885 
tilda_1.1.7-1.2.dsc
 0ac53d887b55a3f8b4890f427d56ddadafe25e627c7a436a7ef116ac5f9cbcf5 4800 
tilda_1.1.7-1.2.debian.tar.gz
 0faa19efb23f32e47b0c81974b70d18656dc025e6dfa185429f84cacb0cef83b 74330 
tilda_1.1.7-1.2_amd64.deb
Files: 
 1dc0b689fca4935cbac038321c8944ce 1885 x11 extra tilda_1.1.7-1.2.dsc
 433879b859f5de63fdcc9cc5ba088b9a 4800 x11 extra tilda_1.1.7-1.2.debian.tar.gz
 a93e380f60dc55e0b1ef3cb94147aef6 74330 x11 extra tilda_1.1.7-1.2_amd64.deb

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

iQIcBAEBAgAGBQJSN/k3AAoJENPhc4PPp/8GYRkP/3xLlxk+PhDZxoMn8yZP6t60
NZPXeZRpYUVGdxSGA1F1sLW2jxlS24mIV8taJEGypKGY/vKMZblgMeRaxJCUzitA
iP8OzPADf0XIRcp435wGcGBAr5S0QqErN4wN0hAUz5JFgx7i/thpAYi94s3SHZav
B3iB6eZuFzAuxPVrwsDXx/0TUm9K5Yc71G+H0n/G1rnXe2cirxBt9xJWE4kQobDg
6P+cWwiQsU4HcISHk6LOqE4NEfHVzks9dzPDhVXx4E5ZCGZsEbF6EkoNWpO2apmt
cp7RhZbNh1Pvkm5VDmBdhAkvi8pN3opZzqVTHQb4aVA8+27nAheF8uPhnzaWZd4L
MBcxB9dyS8NNEcBn18n4w+/WqzolDvr0EbNNUBuiPaMJOhAartcBil++QZ6y4/Yh
sJhmxJQhNzkZtDfeZd8G2lP8vbHpNqNwHvpL+/Qe5CEyDjunlDrT3i9otS63sh0d
Y4VISl/TAgSNqeH19qsWPaztVk/vjv+Zw+hX4xoH8MFVIdZIMUmrV47vxn9Qt5Fp
Qckk+4tli65/IpNma2RQyh4pj5ucAVy6FbOwHYBcYCRZHikxBt6dFu5ZbqhztDor
8sNK1RyYcMwXwDYPOptwsEtpnZjdn5ycdYgPmAuPvggSMmYUv2kIW39DaX7sdgyZ
+61RO2TysOiib7GNlKG2
=DSiU
-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/e1vlp4v-0007ix...@franck.debian.org



Accepted xserver-xorg-video-cirrus 1:1.5.2-1 (source amd64)

2013-09-17 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 08:34:42 +0200
Source: xserver-xorg-video-cirrus
Binary: xserver-xorg-video-cirrus
Architecture: source amd64
Version: 1:1.5.2-1
Distribution: sid
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-cirrus - X.Org X server -- Cirrus display driver
Changes: 
 xserver-xorg-video-cirrus (1:1.5.2-1) unstable; urgency=low
 .
   [ Maarten Lankhorst ]
   * New upstream release.
   * Refresh 10-qemu.diff
 .
   [ Michele Cane ]
   * Bump Standards-Version to 3.9.4, no changes needed.
   * Refresh patches.
 .
   [ Julien Cristau ]
   * Disable silent build rules.
Checksums-Sha1: 
 dfb52967fac0474fe2e5509143f02d5272fd9ec2 2201 
xserver-xorg-video-cirrus_1.5.2-1.dsc
 c9ed50a3f7d81a7aafd75dc262d90a3df961558d 405237 
xserver-xorg-video-cirrus_1.5.2.orig.tar.gz
 2126629cf32eb27f7ee5b9a94313f0b5db26f2cd 6848 
xserver-xorg-video-cirrus_1.5.2-1.diff.gz
 c4a193e933a56d5089ff67f6c18fd19f6a88063f 43296 
xserver-xorg-video-cirrus_1.5.2-1_amd64.deb
Checksums-Sha256: 
 5ae3c92cadd38db609d003d2c32b9b30d2928d4ea79213e58ebbe1521a70fe55 2201 
xserver-xorg-video-cirrus_1.5.2-1.dsc
 7c882c9064f58edf6cb08ef889b6e1d9e7bf6be0eb0002c052d5b4cb6a9bf74d 405237 
xserver-xorg-video-cirrus_1.5.2.orig.tar.gz
 1b3422aeb0103c032e79cf985d0a3f4654be95d5689155d974dd23e1a79618b5 6848 
xserver-xorg-video-cirrus_1.5.2-1.diff.gz
 bc041e635356ae25b1e0e0069e197be95f2657cd3d8b93d1cb839d13887bd8e4 43296 
xserver-xorg-video-cirrus_1.5.2-1_amd64.deb
Files: 
 dab0d1e3aef167a2bef73cb3061be64c 2201 x11 optional 
xserver-xorg-video-cirrus_1.5.2-1.dsc
 a00cf7eb9a9e27e9738cdbe716012b61 405237 x11 optional 
xserver-xorg-video-cirrus_1.5.2.orig.tar.gz
 754573d3f86d863403f1c7e6ebf5c68d 6848 x11 optional 
xserver-xorg-video-cirrus_1.5.2-1.diff.gz
 024f4e316cdbd4ca678b4a074f8560e4 43296 x11 optional 
xserver-xorg-video-cirrus_1.5.2-1_amd64.deb

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

iQIcBAEBAgAGBQJSN/mcAAoJEDEBgAUJBeQMVNUQAOdy1P6GqrzVJqDnL0/PCr9Z
IKiUmSv5der65Tg/1q7aeFHjLexgAeOonjq46MAfGskDjRHMhTzcxUoTw9Tw7iPm
KJyZcJ5XxPx9AthsP0rtgWFb3SAIqkkUwEyLQP7Q2XsnPie/D0nAQBAv7m7YpFZ7
v4ChsFdcbB4r7zEzj31dWi+R23RU8yOZOTfD+Z7zx9U0ViGAD1Oqcuh0taCjS4ve
jY/mv2ml8QagfV1RvKS9PEUccE+wT9DGzzxD5a15qRj12Bv4Qh2bl/Fc1kPGMTob
pTky/OCLoe/jTkGdxphohSxaHQkKhuB70Bn+/WbmEp8gh/dom4uKVlR6BHtmVzDn
6YX1RQlvtQLmcrkvi5TZljk0O/P60IniDhud2g9S7cWiWljGxWcFvh+Dtn6EqlZ/
7xRHrcpxRJovNcvPHpz7vKJlaYaRkrp1DivtsK37rN1Aom4PigGC4BdgwZ0k/Q5S
JBrt+mHGETIKuRGwP/a8VDxat9ozQptNi32WIxoTIyv43rIAXjYX3ZqISOeUAlPd
B39C1ap1VNoOlm6daiXc9vNDA8PmX382BXyz+SYerq1BkzEhI6OKrztuLz2JWcqk
a+wfBLq00t12MXLvS2ue+QNxXhDhjiuVUoeIwJCcN3PR1UEHFAz4ipLeLsQyIGRr
69Q772mvq50fcHQphj9+
=FKyQ
-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/e1vlp50-0007jt...@franck.debian.org



Accepted acpid 1:2.0.20-1 (source amd64)

2013-09-17 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 10:26:14 +0200
Source: acpid
Binary: acpid kacpimon
Architecture: source amd64
Version: 1:2.0.20-1
Distribution: unstable
Urgency: low
Maintainer: Debian Acpi Team pkg-acpi-de...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 acpid  - Advanced Configuration and Power Interface event daemon
 kacpimon   - Kernel ACPI Event Monitor
Closes: 719659
Changes: 
 acpid (1:2.0.20-1) unstable; urgency=low
 .
   * Imported Upstream version 2.0.20 (Closes: #719659)
Checksums-Sha1: 
 2c48081a98243f1eeec336568e921bfbaaf790ab 1303 acpid_2.0.20-1.dsc
 3dc61ce2f8d1f7729b74ec2c307a614388776181 204699 acpid_2.0.20.orig.tar.gz
 109202ca1d2f9b6c75af0e67a751b228f4435a9c 18980 acpid_2.0.20-1.diff.gz
 918809dad6a0e5e13e9cec3e2ef7cd5acbc05a52 53144 acpid_2.0.20-1_amd64.deb
 a383ed60fcef0c4f1dffa31cfe44752c2cd03e70 31480 kacpimon_2.0.20-1_amd64.deb
Checksums-Sha256: 
 7222df5e86a08191eb87fbbee63c140d518cdb59fc13ec5d145a365c037087eb 1303 
acpid_2.0.20-1.dsc
 d109074af3997d2fc46cea3e8f57756ce77f16c97dff6f7b1c602a8219cd58eb 204699 
acpid_2.0.20.orig.tar.gz
 ba16724c347af2f69e4e6ecdbfa45eb13ba642aee6ba7a8f48cf4c2e8a5b4cf7 18980 
acpid_2.0.20-1.diff.gz
 c157b17c1d1f288431c5ee4d41559039e52f88ddf22f2b66295c03f4ba427ab1 53144 
acpid_2.0.20-1_amd64.deb
 2a53eb1bfd336689a65f2e053d2dca998bc4007916fa46f62c2632cefb98c9cc 31480 
kacpimon_2.0.20-1_amd64.deb
Files: 
 02550e062b1008b679ef7ea11d2cccf3 1303 admin optional acpid_2.0.20-1.dsc
 72dc7985bdc525be20ab5cc0296cdb5b 204699 admin optional acpid_2.0.20.orig.tar.gz
 200bde826920bedd6e943aa0efc309e2 18980 admin optional acpid_2.0.20-1.diff.gz
 ff8f77811b25441b09a266969a375dc0 53144 admin optional acpid_2.0.20-1_amd64.deb
 8f26ff0161217b9649383ae3fe21f1b5 31480 utils extra kacpimon_2.0.20-1_amd64.deb

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

iD8DBQFSOBMfVkEm8inxm9ERAgcRAJ9Xermi3U+yPLkBb22c+3d/X5fptQCeJszG
LYupd1Rt0OmjGx2LGETCme0=
=TjbX
-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/e1vlrby-0002ef...@franck.debian.org



Accepted broadcom-sta 6.30.223.141-1 (source all)

2013-09-17 Thread Cyril Lacoux
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Sep 2013 10:19:56 +0400
Source: broadcom-sta
Binary: broadcom-sta-common broadcom-sta-dkms broadcom-sta-source
Architecture: source all
Version: 6.30.223.141-1
Distribution: unstable
Urgency: low
Maintainer: Cyril Lacoux clac...@easter-eggs.com
Changed-By: Cyril Lacoux clac...@easter-eggs.com
Description: 
 broadcom-sta-common - Common files for the Broadcom STA Wireless driver
 broadcom-sta-dkms - dkms source for the Broadcom STA Wireless driver
 broadcom-sta-source - Source for the Broadcom STA Wireless driver
Closes: 688823 716999
Changes: 
 broadcom-sta (6.30.223.141-1) unstable; urgency=low
 .
   * New upstream release (Yeah!) (Closes: #688823).
   * Refreshed the following patch files:
 - 00-changelog.patch
 - 01-shipped-module.patch
 - 02-license.patch
 - 03-rename-to-wlan0.patch
 - 05-user_ioctl.patch (- 04-user_ioctl.patch)
   * Dropped applied upstream patch files:
 - 04-linux-semaphore-include.patch
 - 06-2.6.39.patch
 - 07-3.0.0.patch
 - 08-3.2.0.patch
 - 09-3.4.0.patch
 - 10-3.6.0.patch
 - 11-3.8.0.patch
 - 12-3.9.0.patch
   * Added 05-3.10.0.patch for kernel 3.10 compatibility (Closes: #716999).
Checksums-Sha1: 
 ff6524676c9f6c1c4832412faa77c30c0e9493c3 1988 broadcom-sta_6.30.223.141-1.dsc
 8609aad912c0e1e8bc9a8f0cbc878d5819656408 3231806 
broadcom-sta_6.30.223.141.orig.tar.bz2
 05e5add64b1f53e64675c9f0348a6098648fb1f8 17017 
broadcom-sta_6.30.223.141-1.debian.tar.gz
 bf1ff62de1a89c17b326749873e2432cef67a5b2 11912 
broadcom-sta-common_6.30.223.141-1_all.deb
 993327c49ffc893cea5cf394ca6f53a7a4545c76 1744664 
broadcom-sta-dkms_6.30.223.141-1_all.deb
 566d428c83d1c953d4df2b4b336d504922b994d6 3150710 
broadcom-sta-source_6.30.223.141-1_all.deb
Checksums-Sha256: 
 3fc145cf48314d210eb2ab17dcdc2d2e66b995ffc1740f2d82de87bf59c02e62 1988 
broadcom-sta_6.30.223.141-1.dsc
 23e8a0d5039c84f85b3ec5b6c4a860417b58098a27dd1945124270b8b5f6d1cd 3231806 
broadcom-sta_6.30.223.141.orig.tar.bz2
 0b8da0a1d80afde4d46c96bb8c2b095a7f5db1780517ef3a3664bce643666be9 17017 
broadcom-sta_6.30.223.141-1.debian.tar.gz
 da48704b2454f1133aa157c42dbb858c4758183314dabe1d7792852c5156d035 11912 
broadcom-sta-common_6.30.223.141-1_all.deb
 5b7d4241cb01a76c34dedc3735c62754846327dccc6dde70cdf6b372332596e6 1744664 
broadcom-sta-dkms_6.30.223.141-1_all.deb
 76af708a10e288988c1107fbb062224ad33c05399cac7d855e33f943c0f6b19e 3150710 
broadcom-sta-source_6.30.223.141-1_all.deb
Files: 
 fb980c0a58e79d2bd66af5c336abe74f 1988 non-free/kernel optional 
broadcom-sta_6.30.223.141-1.dsc
 3b6973e59e67faf2f7cece00f40e859f 3231806 non-free/kernel optional 
broadcom-sta_6.30.223.141.orig.tar.bz2
 bd52585757feb95c8ada0e772c75bcec 17017 non-free/kernel optional 
broadcom-sta_6.30.223.141-1.debian.tar.gz
 d5bbbdac215be1a9493317d3b0dd9d78 11912 non-free/kernel optional 
broadcom-sta-common_6.30.223.141-1_all.deb
 0ff4ccfc57d63466b1d9b73a41f2dddf 1744664 non-free/kernel optional 
broadcom-sta-dkms_6.30.223.141-1_all.deb
 66c3c3dcfa3b746d16cd49349148f980 3150710 non-free/kernel optional 
broadcom-sta-source_6.30.223.141-1_all.deb

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

iQIcBAEBAgAGBQJSOAv9AAoJEGEbqVCLeKXCkwAP/iLl5pI/o2J/WWCua20Hwgcx
kH69CvM/sf14mbIs9R68lxUlpIHGedZj69wyNKRZuzCRpI4t2v6NsEqdwZ5gALCM
yQ20xhNU1Tl03xjvUYWZSVzvSaCD27EbVW90uFuwgigKOJFdHQxtHXlk/f1HdFww
ijQFI7ib66ncOh6EEp+DaETCLbthHD+BpWVaGG0LkIbdya7EGSDDsxJ/YjW343h8
az9Gy8CZYVvCkyMHNas1c7fE7jg6jyEDVon6mQ62yvge8UuvagBJ+j6xekBtcbt4
rWQW3j48/zT6poK9TetRaF3+LT+7sgvluWXbMTtG27FEbLjq7xbTBlJBISkzj+b5
ja5VR76dH5r8B0pt1q2xdqBeX0tPCd4Q/460Umzvy9SGPGHf5CRbextIZbrprcRA
JmQjjx+QL86x0YE//nHWJd/myzFF3xj77/wmlhccQKOKKbWO6n8XDb/rk2uW7kae
rR7ABu+MERydlvSB5LP9IWtDU/jnDWAN9VlFCaQCQ7y57yWrsY1HGKcCcREsHTdp
zsVwLmAtDR4XQdoal4e8u+UZ4MRBmv5g2qFRYov3mHgvK+61tqFfeHM7JN1PuOcq
M8Udw2UPC/kIjP6FN+ckscyrQuaW89Dnt1G8hWVNtWLAAuRQXx0ZObMlAha72jHa
iU5u61GgPzZsKxqvcBY1
=SHoQ
-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/e1vlrcj-0002ya...@franck.debian.org



Accepted fotowall 0.9-11 (source amd64)

2013-09-17 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 10:49:01 +0200
Source: fotowall
Binary: fotowall
Architecture: source amd64
Version: 0.9-11
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 fotowall   - simple application for creating collages and compositions
Closes: 722721
Changes: 
 fotowall (0.9-11) unstable; urgency=low
 .
   * Allow parallel building.
 Closes: #722721
Checksums-Sha1: 
 a7aad357f4948696181c692f8fb9d7c8abaeba95 1802 fotowall_0.9-11.dsc
 98d372313441c19a1f973ce398093804d3b44fb3 14601 fotowall_0.9-11.debian.tar.gz
 d6581ec636bd9e4e463d62839c8a2eda5349abf9 661574 fotowall_0.9-11_amd64.deb
Checksums-Sha256: 
 1bd194f7f56d5bcdd4141c23e0bd063bbd3471458839d3ec6a3916ce17f0b959 1802 
fotowall_0.9-11.dsc
 1cc69d74926e0425a0056f8b342a5ebc1f59e4213cfba56cff6631fe40f8f12c 14601 
fotowall_0.9-11.debian.tar.gz
 32167162f9af430bb0ade47d03f60dc0c6345846968c0c3c432acdbbac74d4d5 661574 
fotowall_0.9-11_amd64.deb
Files: 
 46d81e4e8362064ae4d9fd306de787c1 1802 kde optional fotowall_0.9-11.dsc
 7df64f71b3557f162d57888a19bfb105 14601 kde optional 
fotowall_0.9-11.debian.tar.gz
 0e127d82582d06f086999b650a65407c 661574 kde optional fotowall_0.9-11_amd64.deb

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

iQIcBAEBCAAGBQJSOBm+AAoJEBLZsEqQy9jkadgQAJnZnFgFdIdIUb5cmcpNZ83P
zRnb5WTFWd3NnZO5d1slhP2M/sWjASu/ais/DGSry1kpxggYjyL/GR/cUab9mY9e
73fTRQ0kZLyAb6F7EbbYhHSl1lyn71oo/i9FoxwdrUq7Vk3s1qundgODR5gu8Ukv
ene2kl96tzVEWr5ljYbZbMrHkkiLTBP6G9amYYk1ERnIeuLNW9nLyuOJgo/fHKg8
9ODWs+Vf3209u+vkNE+1SEPwNQEhXPbdKnohF7w3Gpkop4Bn8Ly0uXNWCAtm0D9O
uresh2hDq8q4i6mFEP6dlMwnarS1Mh+jcePBZRpzA9pZtn3+ed3sADIn9vpRRxaC
vqo+ZVIYBdw9jkQEwuGNgXiozzPq0MFRdneuF5kf6ij1azTsFHMqqMIuO74GEGye
JE31qP0yJ20FzkG+JQOC5EUNK/0TeiJbCvsJCvhMQDJCiT+xXFzORNo9h2DEO7JP
d7s+RLrFHAYGngt6j/yqvzuRPSuGNjl7Ta5FNDCQMY8nJwDjhb9pA+UoWeFFwEgV
nbYH6A+uFd9Fl0ycTGOjir6KHICxJUEzKp7UeQZmb7gVCsREAjhb7dDREaZRQADh
RHIm+teHzPB1GC+zZysRowB2HJKTlTgQwVJag29vzT6CAiy9Vbj36J8Xzr+hZO+m
BL1eKV1qDrgAJOnXvtiC
=mY8t
-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/e1vlrcm-0002eb...@franck.debian.org



Accepted geoip-database 20130917-1 (source all)

2013-09-17 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 10:14:35 +0200
Source: geoip-database
Binary: geoip-database
Architecture: source all
Version: 20130917-1
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 geoip-database - IP lookup command line tools that use the GeoIP library 
(country
Changes: 
 geoip-database (20130917-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 ae1da6bac2b9bdadce9eb5fda1b13de7b9e47552 1826 geoip-database_20130917-1.dsc
 5eb4d8204d7d50711dec0f037c8ef72d6bae86cb 1611399 
geoip-database_20130917.orig.tar.bz2
 9d49ab48dec6501f25afeb40ad766bba16b0246e 3584 
geoip-database_20130917-1.debian.tar.gz
 e829aef46a4999ef216333e09551083bcc41f76a 1126784 
geoip-database_20130917-1_all.deb
Checksums-Sha256: 
 e8f220efa8e135cda99575156466763820c1ceff1bbf97884b442b09a68e2c9e 1826 
geoip-database_20130917-1.dsc
 b4541b45ca7a9531c4dd632db55a42b5eac6eb11e4b18f08f1bbfa4af90c3395 1611399 
geoip-database_20130917.orig.tar.bz2
 2862834be17e7f5b4db3c284cf38a41927651dfe107373208d5a1267b4adad3c 3584 
geoip-database_20130917-1.debian.tar.gz
 86452708c6fdb753999d8024ea91b6a4ca119fc3be9d1681d04207b91c4f0624 1126784 
geoip-database_20130917-1_all.deb
Files: 
 e3c393abc359f1282abe6b055e83fbf1 1826 net optional 
geoip-database_20130917-1.dsc
 ca12f619e1a0bbee10f62cc7248565f8 1611399 net optional 
geoip-database_20130917.orig.tar.bz2
 42a056979bde15e8bfda8d2ad58e9146 3584 net optional 
geoip-database_20130917-1.debian.tar.gz
 14ef80d7a3172160264127ffc738b80f 1126784 net optional 
geoip-database_20130917-1_all.deb

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

iQIcBAEBCAAGBQJSOBm+AAoJEBLZsEqQy9jkwCoP/iAdExBeqnK33lz/GpCIWzy3
YkWsHGd3FxREzwqwV+xAB9xmoojmYGckXauIebo0iBHN03Y3oHMEO2b0pfRXFRWO
QRaHoxaCR78rICuDDRRwgKPEHLLxH/6s2Mk682VTV4HPqxIJg2RqxKROW/qhzKII
0jgeSSpSY9mWw9c0N+djL/AA52/zr33IaFScDFvOP4LYQjyjXg9bvGbGHp+Yo9nL
zIB0+2AMDmrFeHJh24rep/oBbxbnIlEw9cItx78IbiqxhJwER3Fr2r3ewM8+nL7v
iqxe5HybUehScrmgCOFGI0HVTPxNJg5tNvEtSvXUMJJUsaMAY8SI1o2v/yRQyT+J
MjRSbtYhbj+l4WpuONQL3CSG3NyJN2nY2wWfWN7CTJWrwD/0L2ySWXnZeAAVMuIj
PBqZA0yZD/29sgaSTtAfZg6YoDkGf37gVbc4ycj62H1UGVYPmsyLEgJjlcJ8KP1y
vhBE1AWhN6jXEglit2CasUNNZ2D9WBeO/Aj2AmpSnQn/aV1fyhQkOTTsZQHOkzHH
RtVwAzT9mhSfA7EYqtlb93uK0BJysMutgpgbL/R3QitCHEgbZYjPsu8HF0CBRS/s
WUODSokBo5xj4E7jVkjvNYe+8LKQ7EZCNO9sQBZTTLqhmT4HgN8mYdtDI80JFEnx
Q0VC0wMsWNhbc3bI+xGn
=e0u/
-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/e1vlrcz-0002h2...@franck.debian.org



Accepted live-manual 1:4.0~a6-1 (source all)

2013-09-17 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 09:57:17 +0200
Source: live-manual
Binary: live-manual live-manual-epub live-manual-html live-manual-odf 
live-manual-pdf live-manual-txt
Architecture: source all
Version: 1:4.0~a6-1
Distribution: experimental
Urgency: low
Maintainer: Live Systems Maintainers debian-l...@lists.debian.org
Changed-By: Daniel Baumann m...@daniel-baumann.ch
Description: 
 live-manual - Live Systems Documentation (metapackage)
 live-manual-epub - Live Systems Documentation (epub)
 live-manual-html - Live Systems Documentation (html)
 live-manual-odf - Live Systems Documentation (odf)
 live-manual-pdf - Live Systems Documentation (pdf)
 live-manual-txt - Live Systems Documentation (txt)
Changes: 
 live-manual (1:4.0~a6-1) experimental; urgency=low
 .
   [ Daniel Baumann ]
   * Updating weblinks to legal information.
 .
   [ chals ]
   * Updating dates in live-manual.ssm* files.
   * Fixing one minor formatting error in user_customization-runtime,
 Italian translation.
   * Adding missing comma after 'Finally' in user_customization-runtime.
   * Updating the translations of user_customization-runtime.
   * Fixing fuzzy strings in the Catalan translation.
   * Fixing fuzzy strings in the German translation.
   * Fixing fuzzy strings in the Spanish translation.
   * Fixing fuzzy strings in the French translation.
   * Substituting '/dev/null' for '/dev/zero' in image file example.
   * Updating how to copy an iso hybrid image to a usb stick using 'cp' and
 'sync'.
   * Updating dates in live-manual.
   * Spreading changes from the English files to the translations.
   * Updating Spanish translation of several files.
   * Updating Catalan translation of several files.
   * Updating French translation of several files.
   * Reinstating 'if=/dev/null' in user_customization-runtime.ssi.
   * Updating dates in live-manual files.
   * Updating user_customization-runtime files from the original English
 version.
   * Updating Catalan translation.
   * Updating Spanish translation.
   * Updating French translation.
 .
   [ Daniel Baumann ]
   * Dropping references to global archive definitions shipped in
 /usr/share/live/build/archives (same as with packagelists, hidden
 archive 'magic' is gone now in favour of explicit config tree
 configuration).
 .
   [ chals ]
   * Updating dates in live-manual files.
   * Updating translation files from the English sources.
   * Updating Catalan translation.
   * Updating French translation.
   * Updating Spanish translation.
 .
   [ Daniel Baumann ]
   * Adding note about branches of live-* when reproducibility is asked
 before submitting bugs.
 .
   [ chals ]
   * Updating dates in live-manual files.
   * Updating the translation files of project_bugs from the original file.
   * Updating French translation.
   * Updating Catalan translation.
   * Updating Spanish translation.
   * Updating dates in live-manual files.
   * Assigning its own chapter to the Style Guide.
   * Spreading the chapter change in the Style Guide to the translations.
   * Updating Spanish translation.
   * Updating Catalan translation.
   * Fixing broken link to markup examples in SiSU's manual.
   * Renaming 'includes.debian-installer' to 'includes.installer'.
 .
   [ Daniel Baumann ]
   * Updating bootparameter for live-config 4.x.
   * Adding IdentiesOnly to sample ssh config.
 .
   [ chals ]
   * Updating dates in live-manual files.
   * Updating translation files from the original sources.
   * Updating French translation of several files.
   * Updating Catalan translation of several files.
   * Updating Spanish translation of several files.
Checksums-Sha1: 
 de38f0ed2576ae30e036e442dd6d67b9eb5a1b5e 1787 live-manual_4.0~a6-1.dsc
 3e51d76f3a4280420e84aff440211c54495fb8b6 337268 live-manual_4.0~a6.orig.tar.xz
 00661c76928643aa1657a45f4196281a2bb1a630 28560 
live-manual_4.0~a6-1.debian.tar.xz
 a180ad0caef39f1decddb3e228501fec8d13089b 32020 live-manual_4.0~a6-1_all.deb
 3df100461fab06d38f0ef107286e6a451f338e9f 882658 
live-manual-epub_4.0~a6-1_all.deb
 2db4c16181841b5bc00c5940f039cd40e79a5afd 383390 
live-manual-html_4.0~a6-1_all.deb
 716dd20d8af778261b3d9a652991efceabc3a31c 683296 
live-manual-odf_4.0~a6-1_all.deb
 432266094be046951fd612e29d82220d016733a7 11779250 
live-manual-pdf_4.0~a6-1_all.deb
 4215a359fccf9b6cf7478f4e9376ca17980708ba 463044 
live-manual-txt_4.0~a6-1_all.deb
Checksums-Sha256: 
 75812143eb4d24bb0587119f67e1885d3c251dcfe20884cf57bd7efefbefd1c6 1787 
live-manual_4.0~a6-1.dsc
 4f2007e4f374e0e163d48315655e6fd087019429ffeb858e1f1f6a90a2ecd321 337268 
live-manual_4.0~a6.orig.tar.xz
 b9da6d95564e7b5ab9ab8f77c7f8233320e48aa8033e11a9b99ea38cdf5ac737 28560 
live-manual_4.0~a6-1.debian.tar.xz
 d829d4d3147ce135bc4707d889d25b5fdfa24a22105ea558bfadb41c9eaa28fe 32020 
live-manual_4.0~a6-1_all.deb
 96c2f51ec42e02fcb98b72d5816848ddc308a7fc9b4ea75c1788d137fba48307 882658 
live-manual-epub_4.0~a6-1_all.deb
 

Accepted manaplus 1.3.9.15-1 (source amd64 all)

2013-09-17 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 10:35:51 +0200
Source: manaplus
Binary: manaplus manaplus-dbg manaplus-data
Architecture: source amd64 all
Version: 1.3.9.15-1
Distribution: unstable
Urgency: low
Maintainer: Andrei Karas aka...@inbox.ru
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 manaplus   - Extended client for Evol Online and The Mana World
 manaplus-data - Extended client for Evol Online and The Mana World (data files)
 manaplus-dbg - Extended client for Evol Online and The Mana World (debugging 
sym
Changes: 
 manaplus (1.3.9.15-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 1c5e829c6bfec86b636c3ba1bb0acf3c32aa1169 2130 manaplus_1.3.9.15-1.dsc
 6a291ed3733ee7643d59ac785e55a121faf02af9 7208896 manaplus_1.3.9.15.orig.tar.xz
 4f19af447acb9591027d7395fb08155a1bb288e9 21886 
manaplus_1.3.9.15-1.debian.tar.gz
 639bd58c1c0e1e26c8a7cc7032974da6a8b4d513 1299140 manaplus_1.3.9.15-1_amd64.deb
 0f8f51a1a1efb63d334f3f5ac75007f2a81b901e 18575816 
manaplus-dbg_1.3.9.15-1_amd64.deb
 6ee24d7734e368c808592f1ff2554512eb5e2577 1132746 
manaplus-data_1.3.9.15-1_all.deb
Checksums-Sha256: 
 1a26ae4020a8d921916d0727a58f284cfb21a785ac0ab80ad3ab58a32d673d5a 2130 
manaplus_1.3.9.15-1.dsc
 f186b8a8d85f6d15a95e03ed4d34bef118c8b70cf66cb4d23679f69e7805ece9 7208896 
manaplus_1.3.9.15.orig.tar.xz
 cdd2c18c655105911dbc553430245e8b51bbf34119dc5c1fece0f40066d1aebb 21886 
manaplus_1.3.9.15-1.debian.tar.gz
 db1e7b004ee1212ff3a95e1e1078188ffb7d4ebbc8da8a3fa7a294b2b0bb88e0 1299140 
manaplus_1.3.9.15-1_amd64.deb
 b4a4f46f9546b9ee41a9e37c9d330467042635d5f3f5baf714277bdc4fbb67eb 18575816 
manaplus-dbg_1.3.9.15-1_amd64.deb
 fc69866c88761165af3a46c8b4e8ad7a8c54ae78e7a6fcf767c1e042cf14c261 1132746 
manaplus-data_1.3.9.15-1_all.deb
Files: 
 219a7b94d1f7c9f129793a78784bf0b0 2130 games optional manaplus_1.3.9.15-1.dsc
 78b401b63f8ffb56086defa05c8885ca 7208896 games optional 
manaplus_1.3.9.15.orig.tar.xz
 bf4691a1bd36e191bdc0d4b3db488d58 21886 games optional 
manaplus_1.3.9.15-1.debian.tar.gz
 3a996b34165e57808106edb03175 1299140 games optional 
manaplus_1.3.9.15-1_amd64.deb
 e13bd6c82056423b41aa5184d238e56e 18575816 debug extra 
manaplus-dbg_1.3.9.15-1_amd64.deb
 1a925574090719ca350ecc1bc00b1139 1132746 games optional 
manaplus-data_1.3.9.15-1_all.deb

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

iQIcBAEBCAAGBQJSOBm/AAoJEBLZsEqQy9jkWxwQAJ/PCJHUxQ+UXK5KGi+T+hkV
5Bm7GYB8WATz4WMoe+Tmt51CwuH2p6W4BU/EtExDvs8mUbgNlq05EJ6ZHo3owkQg
BbYI5AKAUa/i71PP+M3fH3MqMKV/1LETWxUOEmwh1wDxC6R10zdCoCCbwyBh5sAt
jXvt6yhqixuOqIqC5r4+TMeXfZkLyor3SThHzkBOORfjuk9xs42nxc6kFdWPtnSv
KQtjJCWkZib2pgO/HLZGJwtl5xgwIJE0SoDRjHgjYlebeJh3mm1kUAXwXcaNgFAL
KWA4FwP9LqYa/9pHU2Kpc1JXQddZiSfxlgNNhipi3/9MBxRzGalB53a5gNrBTP7q
FAKCeFXwQHw174eTJrM96bo4rbF5KxAukz39fxcn/tRyJF3ih5ZnVkHzjhXMqNUb
WOjhbBaUyzQbi0t1cT2u4ebcKE+cBDyAozxMKNcFrfUqnqPQ9PyyxTTBSGIws2kv
wKq+6MlDWtD5Ei10wVDPZ7kepILbFmnaK6IQKmXpAp7OVc/drCfZmoIx5xUU1R5T
LRpwoc6G9+kZKfCMpMoTAUvJYeS1ODSQSZDi7RrcyaD7iyBW5gS7Ay5n4J+B4BW5
KYxby9PC8cIDISSQmpn9KCYluyN4khZmD2/lXBM2XP3FT/6sKM0Rn2w60nYEhb+K
MzMACk7Yp2inSC3Dn5gF
=9ABG
-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/e1vlrf5-000367...@franck.debian.org



Accepted needrestart 0.3-1 (source all)

2013-09-17 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 10:33:19 +0200
Source: needrestart
Binary: needrestart
Architecture: source all
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 needrestart - check which daemons need to be restarted after library upgrades
Closes: 721809 721810
Changes: 
 needrestart (0.3-1) unstable; urgency=low
 .
   * New upstream release.
 - Fixed argument handling.
   Closes: #721809
 - Fixed missdetection of restart needing daemons and added a blacklist.
   Closes: #721810
 - Add new dependency libmodule-find-perl.
 - The manpage has been merged.
 - Add patch 01-makefile-fix to fix PREFIX and DESTDIR of the installed Perl
   modules.
Checksums-Sha1: 
 5d32fc8f34e0d054b4aecbabdc2cfa0434d71c30 1744 needrestart_0.3-1.dsc
 27078ca02043e4fb24dc171daae3dedaa1eda66a 15845 needrestart_0.3.orig.tar.gz
 8e0193370abba7317d5641c493f3c79675524ae9 2033 needrestart_0.3-1.debian.tar.gz
 508f5d16df92416e7b04650534cd0d0fcc2e086e 10352 needrestart_0.3-1_all.deb
Checksums-Sha256: 
 615e573ac8c269eae3ce5720e968533a4aa2871486dd614a0a8e0098e9186c0a 1744 
needrestart_0.3-1.dsc
 ce96a3c1f86771805eb4f6f17d00dd812e51ac564e7fb7a29f3872472f8e8cc3 15845 
needrestart_0.3.orig.tar.gz
 60913f2f19c0640f87ee81d677ab98dcf68f8e1dba8e535fe46ca5c3305732c9 2033 
needrestart_0.3-1.debian.tar.gz
 5792abc948cedee069abda40070ef1b530884a9fbf76b279f40e3303e5cfd4bc 10352 
needrestart_0.3-1_all.deb
Files: 
 75d72549e26fb017f32d88bb7a442417 1744 admin optional needrestart_0.3-1.dsc
 87cfd7a7c59233d8add1a4a5db6bf625 15845 admin optional 
needrestart_0.3.orig.tar.gz
 183ac22ab71af770ac2da4e2bef9f3f8 2033 admin optional 
needrestart_0.3-1.debian.tar.gz
 02260c4d85f98c80b07edfb040604153 10352 admin optional needrestart_0.3-1_all.deb

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

iQIcBAEBCAAGBQJSOBm/AAoJEBLZsEqQy9jkKxIP/RE51dPSNMf16d+kkNERNBOn
hyFNQAv19+fIVZvGnwV24EDTTOBj7Q1tyf96h9dEexFf7ghbPkj8hA2vAmoFDceW
D+AGfhDTrjDUNrChwSFvvmB/3Ayc2qOCPYEW22YK53Vm7dTDLAJdVSfl+ykRW4zv
FdvEhaggoRKPs9FEylNXgyXTODC6gPmPGPeP6/pmKG3IxE72inRSIp+G+/zJHvHI
2EZHF2Vbfvp1D7c8A63BzsMtDnpTkpnX7iYx0jFJrnbh4AKae/JLpST6kHXsLrqT
GCRzkxta4jYTOQOxF4+9OeA8HWtvkBfadCjBcv6evBEd8mxgt9aAX0c5P/YFkU/I
l1xpE1irAITbRE/AdONa7n6+8xeYj5WtqV96YIkfZfOHkupvIZFedJyG4muJfbW9
o352Npzz98+LAmYU9rMMgLDVMKn7ZhotDf3PciF7lOL9e64hmFbZ4hpiKy6mpf9U
DR41Svd4N2590fpc0bp06CTrRvdTnCPCb7n/bkYben9eBvtvLSCtyI4D2KeGc4xf
z/pEgfKU/VoyN8J1XLzZnj21QLaoOTbNqWT10nR+VNC4gx8NCSv9MzXY45c669Kw
ivIcdNLcNjgNxuRiSMkKIj13m96MJK1KKEqMBsKGrhH8AgCgJwUhWKgwkDZ0SFra
O/KKXA3WgZ0nCJnGEyWy
=SBxh
-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/e1vlrfo-00039f...@franck.debian.org



Accepted qviaggiatreno 2013.7.3-1 (source amd64)

2013-09-17 Thread Gianfranco Costamagna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 08:25:00 +0200
Source: qviaggiatreno
Binary: qviaggiatreno
Architecture: source amd64
Version: 2013.7.3-1
Distribution: unstable
Urgency: low
Maintainer: Davide Puricelli (evo) e...@debian.org
Changed-By: Gianfranco Costamagna costamagnagianfra...@yahoo.it
Description: 
 qviaggiatreno - Qt tool to monitor the Italian railway traffic
Changes: 
 qviaggiatreno (2013.7.3-1) unstable; urgency=low
 .
   * Added libqt4-dev as build-dep.
   * Removed revert-qt5.patch, now the revert is
 complete (until 2012.9) since ubuntu ftbfs in 2013.7.2 release.
   * Added new-url.patch, to comply with new viaggiatreno url.
Checksums-Sha1: 
 fad3dbdfefd99bede9bd2d02a368520f21590e0c 1507 qviaggiatreno_2013.7.3-1.dsc
 9d4843e2ad216831c7b65828e44b0f9b37933ff9 200570 
qviaggiatreno_2013.7.3.orig.tar.gz
 8be1bd67ba3261d4d4427810751c00c63131a108 17550 
qviaggiatreno_2013.7.3-1.debian.tar.gz
 f69ced53c53163cbcf5239f7969ede4429b3e3aa 198064 
qviaggiatreno_2013.7.3-1_amd64.deb
Checksums-Sha256: 
 27842e0eba78c976e96e84b2087107d7ce4a8ada0b743387aa83994ce6f5bdbc 1507 
qviaggiatreno_2013.7.3-1.dsc
 3c1fd75075c716c58b307209a7d2e5b231379d07f4f3c2f02ae342e5ae9e05d7 200570 
qviaggiatreno_2013.7.3.orig.tar.gz
 eda1aa3e016770aef3a54b03024d1afb21bc069c4e7b0fa866f3c97526bd1364 17550 
qviaggiatreno_2013.7.3-1.debian.tar.gz
 85cd0ab4fd76c9a32cb6bfab4c97452e5251fd90b8425605d26f3d3fd22584a6 198064 
qviaggiatreno_2013.7.3-1_amd64.deb
Files: 
 bff899e985bc5c5212a6bcaa20a483e0 1507 misc optional 
qviaggiatreno_2013.7.3-1.dsc
 b8bdeb7a1eea9225d17191c3a96d381c 200570 misc optional 
qviaggiatreno_2013.7.3.orig.tar.gz
 1db752cba598ac50e384366daac06826 17550 misc optional 
qviaggiatreno_2013.7.3-1.debian.tar.gz
 9b44d66c3a18ab3089040ac9654ea07b 198064 misc optional 
qviaggiatreno_2013.7.3-1_amd64.deb

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

iQEcBAEBAgAGBQJSOBOBAAoJEItu8lKPB14d8PIIALrOKeJ/TDFVY/2zEK/XTCKg
tOzuvLavTYPHVAQFBHCbr02EuPZlXbUxFqMt4agsPlacVLbwGDw2/mWKkmyc8VsM
HmLqfWoLXhKBHpxsEIaD5HHYs+S/9GN56ZDuRZpEteTwTbEQPh5WpQKOaTGWj5+e
8WD0c+s3EdEtHqv0pzasVuwxdEKPIZ1WPCJWuuruOb2YJX6TQpiR2MeDq6jzdxft
T9t6beAm4iEkiWHWnFojbNy7fPnChxbHXgwrgm5Omws6jLEjeWCRS3mst8BHdylP
Kr5Fm9vGGwVWhqiWPUKG7izi+xPYXTQABSPEfTkhTy/xYHxq3619LZrHdFSwkcU=
=RGSF
-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/e1vlrgl-0003ig...@franck.debian.org



Accepted clipit 1.4.2-1 (source amd64)

2013-09-17 Thread Jackson Doak
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 04 Aug 2013 18:40:05 +1000
Source: clipit
Binary: clipit
Architecture: source amd64
Version: 1.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Jackson Doak nosk...@ubuntu.com
Changed-By: Jackson Doak nosk...@ubuntu.com
Description: 
 clipit - lightweight GTK+ clipboard manager
Closes: 718681
Changes: 
 clipit (1.4.2-1) unstable; urgency=low
 .
   * New upstream version 1.4.2
   * Delete patch glib-single-include.patch it is fixed in the new version
   * Set myself as maintainer. closes: #718681
   * Update debhelper to version 9
   * Update standards version to 3.9.4
   * Enable hardening and verbose mode in debian/rules
   * Set xdotool as required
   * Updated copyright file to standard 1.0
Checksums-Sha1: 
 f0324f3af83c96b64f4c30a670e3848db71519d3 1716 clipit_1.4.2-1.dsc
 e01d02a60efdac575f8c0f84ceef210be1466d1a 284614 clipit_1.4.2.orig.tar.gz
 77047944bf8bde632da2a6e36a1e7b1809896372 2822 clipit_1.4.2-1.debian.tar.gz
 541daa0215a099e6aeb277f145eb79706d4c2b6f 52362 clipit_1.4.2-1_amd64.deb
Checksums-Sha256: 
 14c603fc9dbf61a7b402e243a5b06bd1004f19bb65b92e1d21463d2b81aaf1ef 1716 
clipit_1.4.2-1.dsc
 6a63c7c4c39b423a266907e5b76f7d16301b164437dc7635cf25ace730b23c4b 284614 
clipit_1.4.2.orig.tar.gz
 781fc51f829eafcaa69463fb0ec8e2cb787734b7b6864958a60b6c9e181dd4a2 2822 
clipit_1.4.2-1.debian.tar.gz
 6ce5eb7cbad2ef840e2c0d06ac0b53de4e89d10ff58b17be10dd139583c7bb61 52362 
clipit_1.4.2-1_amd64.deb
Files: 
 cff1b8fbd5f418cafc3ae5b621d5d26c 1716 misc optional clipit_1.4.2-1.dsc
 118175f26869adcf04909fdbb5021eff 284614 misc optional clipit_1.4.2.orig.tar.gz
 fc36814bbd2483a96b09c64094eb9223 2822 misc optional 
clipit_1.4.2-1.debian.tar.gz
 b0acf8a40cc6ff100135f1bbd986b16b 52362 misc optional clipit_1.4.2-1_amd64.deb

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

iQIcBAEBCgAGBQJSOB+iAAoJEONS1cUcUEHUOlAP/j2HBwQyp5zzJnSBFSqUyryp
OXLsVsY6mEz+I3/WYCbtar2j4jdgdnzcdJyqds0EJedpORlxTCHs63B6tT0fZwfV
/ZVckxeDcF89POZ2Lv63Bebb2he47VpwpPkqpI1hiAOhWp1r+Yef6GugfaEcYRn3
8tDOYs//w2sU/1QiJ1qeVVIyn6Y4/dnb6piO0MSLvYLb/eoBNQfy2SniP5Ipd1pW
wxR/PvPW5VrgkR/R6KzSTepaxK9GE6BlzbuyJgSiYuXrnY3YNofOfPTU6FPygeFm
WGExpM002GUYYrleeqtIIUwoU/iu18zxX98rTwzV786xqH5dwMMBs16gQ5an7d8J
rCIQDvBZmRZ48umCoTpsHhTPZhnHUOAKYlAYdg/mRifjt0ujyX5Abmi7SfpvGYra
bwcMnfEGRPs4KktsukXzbFnREWcdRZxx3tldFSwut0usOV0hEJfnyBZ90B+wM2Zj
Tv3Hs63Dy0ezXUFA2j7PCg4+TXirBcXb3EvEaB8dTLqiq/DgqiKjEx79PQP0t6XE
SG0RySok/CxLAW1vMWq1TTZihm3J9g1HDpFXHDyss4UvgvGbJKbCw8nu1BSBPysh
pzjrZAqDEpYRuX8SUOAmRDjPb91VRFYV0TGQIl9smpEpc06KHbPxDO7/xuyXdK0T
5GLT0jet1aSnsSdCZ4Wz
=+tEA
-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/e1vlrf3-0007nd...@franck.debian.org



Accepted dotclear 2.5.3+dfsg-1 (source all)

2013-09-17 Thread Dario Minnucci
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 12:28:30 +0200
Source: dotclear
Binary: dotclear
Architecture: source all
Version: 2.5.3+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Dario Minnucci mid...@debian.org
Changed-By: Dario Minnucci mid...@debian.org
Description: 
 dotclear   - open-source web publishing software
Changes: 
 dotclear (2.5.3+dfsg-1) unstable; urgency=low
 .
   [ Nicolas Roudaire ]
   * New upstream release
Checksums-Sha1: 
 12b808bc3a8ed0d8c69049e8fa549f931a7a907d 1938 dotclear_2.5.3+dfsg-1.dsc
 a65fab378948da4f83efe1e78c3b97980331f51e 1575364 
dotclear_2.5.3+dfsg.orig.tar.gz
 f966897644b12c3a22873f1c0f64bbd13b500054 40361 
dotclear_2.5.3+dfsg-1.debian.tar.gz
 6320cfe3494c46f0013b44b24df1b4357cdd45d3 1156604 dotclear_2.5.3+dfsg-1_all.deb
Checksums-Sha256: 
 e75bf0be24437b4581880c90158d5c1903adf8233f9aee38c0aee4b3c578dc93 1938 
dotclear_2.5.3+dfsg-1.dsc
 c53ac250b2efe28684327615ac7c235f42db8c1aab9ef920872f6b4d2efc9ac3 1575364 
dotclear_2.5.3+dfsg.orig.tar.gz
 43f98d3df3ed69af70ab7d0ca5e15a62eb65152167d9aa2afa86a25b78366bab 40361 
dotclear_2.5.3+dfsg-1.debian.tar.gz
 21192ed87636c47540a93cfb28dd3e44497d65ea70a34190f4e34846b37828d0 1156604 
dotclear_2.5.3+dfsg-1_all.deb
Files: 
 f390f47902b511b984eab7cd9001a377 1938 web optional dotclear_2.5.3+dfsg-1.dsc
 5e7cb7199140fd684a62959f7bf21030 1575364 web optional 
dotclear_2.5.3+dfsg.orig.tar.gz
 5067bad9790ef529bc19902bef1d43bb 40361 web optional 
dotclear_2.5.3+dfsg-1.debian.tar.gz
 b0353470c5f32b0e774da41b673cd0cd 1156604 web optional 
dotclear_2.5.3+dfsg-1_all.deb

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

iQIcBAEBCAAGBQJSOC/+AAoJEKgvu4Pz1XAzbXMP/A91DqKNfSkd/v4S09w+VOFw
s4i4ZaQa0IOilDocJgiqLob8IFcaUnYm23AdzmxKO+R67+emtSX9zOsqDsgnDWgC
6udKfwfnAL8tmjkxwCTGR0nCAlb1C3N3jAfMJcC1MfpXr9XwvzeF2iulj6e6re07
UO81h9/9W9oPVTm+1p3rqrg3GzNHOPivZSNcGVX3HpO8wObmxNIYCgB3XCqoI+J5
XtNeo/c041CyBZL6SkfyHgp2tvaY8I4Z9+3ROCCW8ojfRZgAYS+jsI5DkL8Ulhfa
GC5HN9sJs+17TM5tHectUHxI95oEHXtwkUOLb+FjQpgtEwYWMnVMiIOCcxzuU8hX
0MkJXNypTnOL4X7JoKgzvXicq3rCxn9gMQp5/wKAYhNnvFK6c+KsjhxR/XerpR14
nTzh/htOIAo3ioiLmtKEp5pinDq6Z84VsGu7gg24XVjSmQNjB2IRJmcTM7qCAVP0
9fHGmiq0Z37g49c8dkmo4USjpOvkjon4I7WevCFHXo8Rbt9ps443AGAbzDDPIp/b
ZqImLb64Rco9jN6Sgx9GGaPxBo0156EmmL7k5+HNXMj0J/gproGwp7ER7FGgbH2+
1vxr1CFkHKKAtvi7VWUACPyg7ocn3fMYaQVGf7OCqkLEQMDy5Li8iW6VjXIMsJjW
XZ8rC0yOxSp0B7Ni+H+Y
=7FkC
-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/e1vlspf-000507...@franck.debian.org



Accepted lxc 0.9.0-21 (source i386)

2013-09-17 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 13:12:17 +0200
Source: lxc
Binary: lxc lxc-dbg lxc-dev
Architecture: source i386
Version: 0.9.0-21
Distribution: experimental
Urgency: low
Maintainer: Daniel Baumann m...@daniel-baumann.ch
Changed-By: Daniel Baumann m...@daniel-baumann.ch
Description: 
 lxc- Linux Containers userspace tools
 lxc-dbg- Linux Containers userspace tools (debug)
 lxc-dev- Linux Containers userspace tools (development)
Closes: 723130
Changes: 
 lxc (0.9.0-21) experimental; urgency=low
 .
   * Updating lxc-backup/lxc-restore.
   * Changing preseed hiearchy to more suitable includes-before-including
 for one-level of includes only.
   * Removing cgroup-bin conflict, again (Closes: #723130).
   * Correcting variable spelling typo when writing preseeded apt
 preferences for pinning packages.
   * Temporarily building without autoreconf since newer automake fails on
 sub-directories quite unelegantly.
Checksums-Sha1: 
 da4795a6117253b60aa609ee16e38aa2fbca88d6 1376 lxc_0.9.0-21.dsc
 719d2d375e6701123e82abbd19a0f7c2a616b832 49868 lxc_0.9.0-21.debian.tar.xz
 b5c6cbffb7ebbacc85b59437b26f2aa39eb149c4 224838 lxc_0.9.0-21_i386.deb
 c4a5f84fc1f913a1202467ccfea14bd3109a5a0c 319360 lxc-dbg_0.9.0-21_i386.deb
 cfc937fa8da9685fc82169ea18c07b26c6b971ec 29402 lxc-dev_0.9.0-21_i386.deb
Checksums-Sha256: 
 866b4034ae2f8c77981e9efb493a904410df6ca9aa4fe11d7ad4d8b892fb3156 1376 
lxc_0.9.0-21.dsc
 f815f396b552b6a8ec2ed697aeaa98c8b99784994b10069090f60bf8a0ec464a 49868 
lxc_0.9.0-21.debian.tar.xz
 8a8826e4ebcaf7cc6df6aa91bbe6558be086a42d15be9e63ecf66c0ce74c107d 224838 
lxc_0.9.0-21_i386.deb
 f976f274197cab3de8fa0f71946cad45e470d070b9df7ff7ef56471bdc1e7469 319360 
lxc-dbg_0.9.0-21_i386.deb
 16e65e5b5e8a11a098297e3295f0f31f5d15975e2dbf4062e995dc7b6de30d18 29402 
lxc-dev_0.9.0-21_i386.deb
Files: 
 b432d6862ada3d9fe7b350f6e6b76599 1376 admin optional lxc_0.9.0-21.dsc
 1fb85e7d8ad085f08febb88f16144d96 49868 admin optional 
lxc_0.9.0-21.debian.tar.xz
 006ed7297bc535c4a0e6ef37fe995bcd 224838 admin optional lxc_0.9.0-21_i386.deb
 62eb0f5fc435d6a2f18a661496f8afbb 319360 debug extra lxc-dbg_0.9.0-21_i386.deb
 f247a69b1765c6ce3e4ce0bcabe17be6 29402 libdevel optional 
lxc-dev_0.9.0-21_i386.deb

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

iEYEARECAAYFAlI4PKwACgkQ+C5cwEsrK57KVQCdEyLwI+N6jk81RxeF9LqTwTmc
8p8AoMsWMUfoQHU475Mf1bgTBNziCFET
=+gy7
-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/e1vltwy-0002a8...@franck.debian.org



Accepted mc 3:4.8.10-4 (source amd64 all)

2013-09-17 Thread Dmitry Smirnov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 17:28:54 +1000
Source: mc
Binary: mc mc-data mc-dbg
Architecture: source amd64 all
Version: 3:4.8.10-4
Distribution: unstable
Urgency: low
Maintainer: Debian MC Packaging Group pkg-mc-de...@lists.alioth.debian.org
Changed-By: Dmitry Smirnov only...@debian.org
Description: 
 mc - Midnight Commander - a powerful file manager
 mc-data- Midnight Commander - a powerful file manager -- data files
 mc-dbg - Midnight Commander - a powerful file manager - debug package
Closes: 722891
Changes: 
 mc (3:4.8.10-4) unstable; urgency=low
 .
   * New backported 3059.patch to fix Compute totals progress bar and
 segfault on copy/move operations (Closes: #722891);
 Thanks, Graham Inggs.
Checksums-Sha1: 
 f68a8fabd85f5a27cebe110962bfa8093faf991b 2223 mc_4.8.10-4.dsc
 19c28e4584d4784c1378714f1265e260c1ba4fb8 46140 mc_4.8.10-4.debian.tar.xz
 b0ce6f045b00b4c501f79d6c55f755dfddc5687e 489936 mc_4.8.10-4_amd64.deb
 d0da4f9ef164ad0891d9d8254b386a52112da65c 1170246 mc-data_4.8.10-4_all.deb
 2ddebe8dc53e234fbf4d4d9591e66935ce0284fa 1327540 mc-dbg_4.8.10-4_amd64.deb
Checksums-Sha256: 
 c9872f1e3a2f2b0981ae0e23b82d2baeae76b9554acec9a7c0b091c74a5b4966 2223 
mc_4.8.10-4.dsc
 449c491ae0415ae51d8d9190d75f49e45b676dccda036235bea8f3ec01df4acf 46140 
mc_4.8.10-4.debian.tar.xz
 953a8618fbca92de8f21f2963f0c117e0c7fa5eea70a461d20d800e86be79173 489936 
mc_4.8.10-4_amd64.deb
 f314ddf213c3af9ba005947b3477601a1783c8a0124c1a17ecb2c5df25326e03 1170246 
mc-data_4.8.10-4_all.deb
 0988bde55b662e313a49bb8a2188ba42e54c26e0d12efa284220ccb1c70892a9 1327540 
mc-dbg_4.8.10-4_amd64.deb
Files: 
 1287f9fe64abf5a4b2f762e0e0cf1077 2223 utils optional mc_4.8.10-4.dsc
 e55222108e84d71a7fb8ff4aeaf44664 46140 utils optional mc_4.8.10-4.debian.tar.xz
 7a2860c9a66cea8d9acc2efb800e928f 489936 utils optional mc_4.8.10-4_amd64.deb
 d6228983fdb261515e76eee830796d45 1170246 utils optional 
mc-data_4.8.10-4_all.deb
 708bfc97748927b2d2242b0591fa43a8 1327540 debug extra mc-dbg_4.8.10-4_amd64.deb

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

iQIcBAEBCAAGBQJSOCGIAAoJEFK2u9lTlo0bEWIP/ijBO75dR+luHC7HIjpxCt/B
omCsz8BQm9J43siuAt2sYKMl5MJGvcVzhqD6Cw6lZ7vBY9E5Ua/uRjiKjMbZEnXs
kd35c409eScrj/gDCzFsy5OEZ0oZu6HPrTlA983mhlq8teGQF+eADXw3CUAqwuMJ
Qc/9RNySya9fxUQTJKwmbSKbrIf/i4HjE126Fpsb4gE4kLz+kHvTgt/0RsPj9FMu
Yf/EkHDvR3n82q9bUapIPhRSqmz8ajhJvTxadHNgQIaWW0WYNPWDNZL5KR/8BX9Q
gw4Bps/SDKvxZg+kJmLfPD/FC8DtQ0E2Pi92DFpQmJLkUyQdL56a6jampa65gGS6
kd/y8qD8k/B6iU21RvTznMG8P76SsxpF5Mkao6G3fmT0/i6JqKPhwPEgm7Hx7kW4
DK8eT4ukOJTHOqK22omwK//vPZDTx5xrKPBUqjK3iGCNHOBEufZoBkIyHuMCeiWF
yeoINctT22i2ShOosI3JB8iYwkN2tCk6fh+eEGhN4BTXiXYYjFBcHMBnBl7cHZLH
Qx18F+pfx1dMkXKFy3Y5yUpvP9FUh+LcxI9x4ZVEZLKJjca7KrtWCBlLkgwJEQAG
SQkf0+VW4Ixr8gaainwRYtkbXMh2X3Q7787emowYDRkqlyZya8Xl9HZjSl/aEsMX
itoCNrQuEn7EQ4ClMyUX
=mBdn
-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/e1vltlc-0004mf...@franck.debian.org



Accepted xjokes 1.0-14 (source amd64)

2013-09-17 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 12:28:32 +0100
Source: xjokes
Binary: xjokes
Architecture: source amd64
Version: 1.0-14
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 xjokes - X11 jokes
Changes: 
 xjokes (1.0-14) unstable; urgency=low
 .
   * dh9
   * bump standards version, no changes required
   * update collab-maint git repo url to naming scheme du jour
Checksums-Sha1: 
 4bde15718e49d2a2fdf27198edd4fcab538be43c 1136 xjokes_1.0-14.dsc
 54ece5d746ebdcf35ec10dfe7190b496b3c310f4 12285 xjokes_1.0-14.debian.tar.gz
 50aa92711fc045fed0dd3004648ae81c88b323ab 13150 xjokes_1.0-14_amd64.deb
Checksums-Sha256: 
 234153a974cdfcb6660a4c3e3c7c33b6875e4043ca70b911b5c731e6c5f82064 1136 
xjokes_1.0-14.dsc
 907cd97bb0d24c0e066078c94077713735bfaf73e10b9a31547de50989c42b76 12285 
xjokes_1.0-14.debian.tar.gz
 1459272c4b5ef0c94529f4ccd404270b8646b0334abbb8f541884e01f8ec500b 13150 
xjokes_1.0-14_amd64.deb
Files: 
 e800e82318aa707986c8ceb70fbcda3b 1136 games optional xjokes_1.0-14.dsc
 1b27f406c9d13be381c2e185df7c67ce 12285 games optional 
xjokes_1.0-14.debian.tar.gz
 4f18180ce760156145fedd59735c844a 13150 games optional xjokes_1.0-14_amd64.deb

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

iEYEARECAAYFAlI4Pl0ACgkQLz4Gnv7CP7IE+QCfaX3l3b5x4i9JNMSVqJeAz37P
9agAoNv7DLpz0/zdQO4fycwGarWYTOC1
=4ACw
-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/e1vltm7-0004fh...@franck.debian.org



Accepted telepathy-haze 0.7.1-1 (source amd64)

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

Format: 1.8
Date: Tue, 17 Sep 2013 11:36:00 +0100
Source: telepathy-haze
Binary: telepathy-haze telepathy-haze-dbg
Architecture: source amd64
Version: 0.7.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers 
pkg-telepathy-maintain...@lists.alioth.debian.org
Changed-By: Simon McVittie s...@debian.org
Description: 
 telepathy-haze - Telepathy connection manager that uses libpurple
 telepathy-haze-dbg - Telepathy connection manager that uses libpurple - debug 
symbols
Changes: 
 telepathy-haze (0.7.1-1) unstable; urgency=low
 .
   * New upstream release (release candidate for 0.8)
Checksums-Sha1: 
 dd8167b6219380d2c6b3ce1a8bf501c0ed475ea6 2229 telepathy-haze_0.7.1-1.dsc
 c92e2979ec8275261f4347770adeed9361a781dd 577366 
telepathy-haze_0.7.1.orig.tar.gz
 19eb1ab8e1123155b544ad99b7b6980b6616c3a6 4246 
telepathy-haze_0.7.1-1.debian.tar.gz
 26b7bf48580cb9253ea2ae2b4342eaf3a2f44917 129532 
telepathy-haze_0.7.1-1_amd64.deb
 99dce78a976719bba9c017fa1db781aa8ebcc61c 338424 
telepathy-haze-dbg_0.7.1-1_amd64.deb
Checksums-Sha256: 
 23d587998cc82fa4954b41ff4d930d09c2b6dadba5ab92655c27308fcc9bca4e 2229 
telepathy-haze_0.7.1-1.dsc
 2b9ad41af225cb997b1e7c719bf5a3990738b976bba49cb7ba74772453342c90 577366 
telepathy-haze_0.7.1.orig.tar.gz
 fc5a3a1af875e4ff1b1a46b362bc337a5770892cb3ced4787b6bb7d2a4a9abfd 4246 
telepathy-haze_0.7.1-1.debian.tar.gz
 545a2ea49a379530f59799c1dae32fc3762fc16f83efa1a13612b03d5384bba5 129532 
telepathy-haze_0.7.1-1_amd64.deb
 5769f3ffb73b7f2ca842ba2648ea7800f52e27e07cbdda157f9f54be2f56bffb 338424 
telepathy-haze-dbg_0.7.1-1_amd64.deb
Files: 
 dd541144b9157a91237dc88da807fa35 2229 net optional telepathy-haze_0.7.1-1.dsc
 08a78287840558f3804408a6b1a599e5 577366 net optional 
telepathy-haze_0.7.1.orig.tar.gz
 1173b0a8fc6998c4b618f99b003192a4 4246 net optional 
telepathy-haze_0.7.1-1.debian.tar.gz
 66d9d073842352f2cb7b3e0e9cf664c4 129532 net optional 
telepathy-haze_0.7.1-1_amd64.deb
 7ca903bf1af40b316faf2aba8b026188 338424 debug extra 
telepathy-haze-dbg_0.7.1-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIVAwUBUjhG0k3o/ypjx8yQAQiWqA/9F7DhOqCzjiCiTnY3052aZTdl0r8nD+hd
j/WCTAFdQX50F0cxs4CojHINacNoyeyl2Cdeft0DHuzXYlgvVozaueqrp+LPLyhY
b+WpXc7MRPsZdPLbHUMu/i2aV9PBKtRAJkUggoOjdndyDdzzamT62XJgp0qgDSoR
J2k+qrCC6NzH/WSmEk5Hv0qO/WKS7xYfHDdFvzmohnffW4P6806sXDNFSZY3l97X
2kDXRv82wAIcEsorVOTTITUNN1vKCbwOoVP3WRAGmeRxm3v+rfTMsQaBhPbjZjOY
Q7JV1Z7UEihfM9Gxu4afLURPorVnJvXEmjw5JgVjIlYNjMyw7E2zeGabkVVt2WZM
wf9TgujCwDLmDlIevsXPQJuQF3mJECPH+FVlJ3W0HANClGZbu34URjV6VZ5F0ZoG
ncB9JH7usGJYOAS3+gkccLUsgeY8oC9ZFgN1IZMTaIMDYrCCIa1kbw6zY12/obvo
9hOndv26xdtvUah84NqSvdmCpzXgCCn07ZCDz3kZc+7W9E97DAUCdO3p/PnIkPOq
+587Ffl8wrMCqvAgWegKyV9e5gMrK6Y6ti/ltVXuwG2ssGLV/1g5TKk2i5PNgUEI
TtjKtVeuH2qleyc8l/WTTDQMM6Tche8hDh/OW5z9qse+Jk9JNAijvxAlKKIbW67/
Xz02j5NoYMk=
=Z280
-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/e1vlueh-0008wi...@franck.debian.org



Accepted lxc 1.0.0~alpha1-1 (source i386)

2013-09-17 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 14:40:47 +0200
Source: lxc
Binary: lxc lxc-dbg lxc-dev
Architecture: source i386
Version: 1.0.0~alpha1-1
Distribution: experimental
Urgency: low
Maintainer: Daniel Baumann m...@daniel-baumann.ch
Changed-By: Daniel Baumann m...@daniel-baumann.ch
Description: 
 lxc- Linux Containers userspace tools
 lxc-dbg- Linux Containers userspace tools (debug)
 lxc-dev- Linux Containers userspace tools (development)
Changes: 
 lxc (1.0.0~alpha1-1) experimental; urgency=low
 .
   * Merging upstream version 1.0.0~alpha1.
   * Building with autoreconf again.
   * Removing lxc-configuration-path.patch, not needed anymore.
   * Removing lxc-debconfig.patch, not needed anymore.
   * Removing lxc-destroy-symlinks.patch, not needed anymore.
   * Removing lxc-clone-mac.patch, not needed anymore.
   * Removing lxc-init-path.patch, not needed anymore.
   * Removing lxc-quote-arguments.patch, not needed anymore.
   * Removing lxc-unshare-manpage.patch. not needed anymore.
   * Removing lxc-path.patch, not needed anymore.
   * Rediffing ftbfs-sparc.patch.
   * Rediffing ptsmode.patch.
   * Renumbering patches.
   * Removing removal of removed templates in rules.
   * Reincluding lxc-busybox template.
   * Keeping local lxc-list for now, but not as the default lxc-list.
   * Sourcing init-functions in initscript.
Checksums-Sha1: 
 b0d64db7b94b203b49987fb25c60b9232cb8ed6c 1436 lxc_1.0.0~alpha1-1.dsc
 401dffa169ca908c06fda4f770a555ea1e545217 241712 lxc_1.0.0~alpha1.orig.tar.xz
 20e1cc9f3915598857d888654b6f16e8192326a8 46884 lxc_1.0.0~alpha1-1.debian.tar.xz
 64bebdb129cd9b640a77dfba82a12e7946cad7a5 274604 lxc_1.0.0~alpha1-1_i386.deb
 ed14bb2e8675ae3d3e4188956b6d1896ad02195e 463206 lxc-dbg_1.0.0~alpha1-1_i386.deb
 c8ead0ed7dbd9a5c8db987c0dcca47de01f5e39a 34742 lxc-dev_1.0.0~alpha1-1_i386.deb
Checksums-Sha256: 
 0ba197d2441356f5487ef2d9c61968a43d7f6bff8c4605335069d77023130128 1436 
lxc_1.0.0~alpha1-1.dsc
 78899fb620917011491a9511b22a123746d6c25c132b4b56ba5da05fb1f12a6b 241712 
lxc_1.0.0~alpha1.orig.tar.xz
 42400cc06be14109153bf73bb93f7f01c978a8a7f9720032ad00328c7f825b5b 46884 
lxc_1.0.0~alpha1-1.debian.tar.xz
 70bc55081619f910535b816716cc780bb458b2dcf807b33a7ccb017cad0823f6 274604 
lxc_1.0.0~alpha1-1_i386.deb
 8950fb37560d66d8315ccc2875c95b24cc7060466a4cb7f09ed6b339738f5dcd 463206 
lxc-dbg_1.0.0~alpha1-1_i386.deb
 649d93d08127dd12e126fafdd9b65883be8d09299604a91eb5c351a5421bbf69 34742 
lxc-dev_1.0.0~alpha1-1_i386.deb
Files: 
 8c63abf1325ce60a5762942992d02d35 1436 admin optional lxc_1.0.0~alpha1-1.dsc
 0029a3e948f33755a5e1399053f007d1 241712 admin optional 
lxc_1.0.0~alpha1.orig.tar.xz
 ddf266521b0384fb9ae02ad8c9ab2099 46884 admin optional 
lxc_1.0.0~alpha1-1.debian.tar.xz
 c714a8d2fb2fa841a96384084f306866 274604 admin optional 
lxc_1.0.0~alpha1-1_i386.deb
 79725149ba666156654e30862c850ff9 463206 debug extra 
lxc-dbg_1.0.0~alpha1-1_i386.deb
 5b621bd24ce2bd848a01a73ce055a2c6 34742 libdevel optional 
lxc-dev_1.0.0~alpha1-1_i386.deb

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

iEYEARECAAYFAlI4UMEACgkQ+C5cwEsrK56pTwCeJEoYssMecD1HSF8KQQXsIB8Z
zTsAoJQ0T/Rs0+bR92AZTcM6/Ngkb5Mu
=JM3Z
-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/e1vluvs-00068h...@franck.debian.org



Accepted mkvtoolnix 6.4.1-1 (source i386)

2013-09-17 Thread Christian Marillat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 13:44:48 +0200
Source: mkvtoolnix
Binary: mkvtoolnix mkvtoolnix-gui
Architecture: source i386
Version: 6.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Christian Marillat maril...@debian.org
Changed-By: Christian Marillat maril...@debian.org
Description: 
 mkvtoolnix - Set of command-line tools to work with Matroska files
 mkvtoolnix-gui - Set of tools to work with Matroska files - GUI frontend
Changes: 
 mkvtoolnix (6.4.1-1) unstable; urgency=low
 .
   * Bug fix upstream release.
Checksums-Sha1: 
 8920ac76f26be85a9280670dfd8cbf222ecef2e4 1430 mkvtoolnix_6.4.1-1.dsc
 b301d1a7dc184bbadc08762e88129a4acfde4edc 5119860 mkvtoolnix_6.4.1.orig.tar.xz
 d2a68c48e8f182220ddc0d9e572542c090c76cad 5040 mkvtoolnix_6.4.1-1.debian.tar.xz
 f0c9adfd32fea2ef717ebf658b7411331abc3f12 4890974 mkvtoolnix_6.4.1-1_i386.deb
 b818f4fe96bf964734373727a422fe93d1ec470c 2635464 
mkvtoolnix-gui_6.4.1-1_i386.deb
Checksums-Sha256: 
 cf6e8197bef25adae165aa8f204946f4f7ce5db5e539bcd988a70c37d4200339 1430 
mkvtoolnix_6.4.1-1.dsc
 76f24d792264a8c5aaa7ec7f3603bed458f03dff4ffe4f67bda8cc6dd908bea3 5119860 
mkvtoolnix_6.4.1.orig.tar.xz
 12de7bc7b47f5cfb47431b8dd67d398d1edde7a9f30b04c9e2c88a87b6f6d81f 5040 
mkvtoolnix_6.4.1-1.debian.tar.xz
 738385cc01fc2ad89262dcb8ae7294267cc9ab1206df206fbb539079ae20f413 4890974 
mkvtoolnix_6.4.1-1_i386.deb
 d9ea45fb2cb1e4cd92d6064ea7d0859d30c44e08e1942262c2a33eea21d54517 2635464 
mkvtoolnix-gui_6.4.1-1_i386.deb
Files: 
 7db8bab6d99b0604c8cb2a21bc033221 1430 graphics optional mkvtoolnix_6.4.1-1.dsc
 1e878646b34eb2c32772d05b91f84f4c 5119860 graphics optional 
mkvtoolnix_6.4.1.orig.tar.xz
 73b46aa1a8daeab1024edf4b3989087b 5040 graphics optional 
mkvtoolnix_6.4.1-1.debian.tar.xz
 79c540a40b400f226f109c39fce7bd17 4890974 graphics optional 
mkvtoolnix_6.4.1-1_i386.deb
 987b5214e31d999fdf97f4c6e7bc66b6 2635464 graphics optional 
mkvtoolnix-gui_6.4.1-1_i386.deb

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

iD8DBQFSOFw0B9xWPR9BuQcRAhrnAJ9QY0twihxwzcDJSBSmGauIiFZTZgCghgB4
KO4Skl4v5+guMoaeaqXH+/0=
=2+JR
-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/e1vlvdy-0003y7...@franck.debian.org



Accepted cairo 1.12.16-2 (source all amd64)

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

Format: 1.8
Date: Tue, 17 Sep 2013 16:37:22 +0200
Source: cairo
Binary: libcairo2-dev libcairo2 libcairo2-dbg libcairo2-doc 
libcairo-script-interpreter2 libcairo-gobject2 cairo-perf-utils libcairo2-udeb
Architecture: source all amd64
Version: 1.12.16-2
Distribution: unstable
Urgency: low
Maintainer: Dave Beckett daj...@debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 cairo-perf-utils - The Cairo 2D vector graphics library performance utilities
 libcairo-gobject2 - The Cairo 2D vector graphics library (GObject library)
 libcairo-script-interpreter2 - The Cairo 2D vector graphics library (script 
interpreter)
 libcairo2  - The Cairo 2D vector graphics library
 libcairo2-dbg - The Cairo 2D vector graphics library (debugging symbols)
 libcairo2-dev - Development files for the Cairo 2D graphics library
 libcairo2-doc - Documentation for the Cairo Multi-platform 2D graphics library
 libcairo2-udeb - The Cairo 2D vector graphics library (udeb)
Closes: 648533
Changes: 
 cairo (1.12.16-2) unstable; urgency=low
 .
   [ Cyril Brulebois ]
   * Misc fixes:
 + Update libcairo2-udeb's description (one line is sufficient).
 + Use the official field for udebs: Package-Type.
 .
   [ Michael Biebl ]
   * Add myself to uploaders.
   * The libcairo2-udeb package already ships the libcairo-gobject2 library, so
 instead of splitting libcairo-gobject2 into its separate udeb, just fix
 the shlibs information for libcairo-gobject2 to point to libcairo2-udeb.
 Closes: #648533
Checksums-Sha1: 
 4900650c0ac832a90754ac4737ce4b82e3c2ba70 2787 cairo_1.12.16-2.dsc
 f62dc0b2ccb992eb43210506f100fe85399be77f 31839 cairo_1.12.16-2.debian.tar.gz
 342ebebd4ada023e8b2fab58c23a36ac1a485fda 656006 libcairo2-doc_1.12.16-2_all.deb
 8910c7a7511729de4d8edb6d9d1fe5b0ac35b178 1130536 
libcairo2-dev_1.12.16-2_amd64.deb
 3e780e9762f11ec4b01ff0702894526ab4df92c9 987312 libcairo2_1.12.16-2_amd64.deb
 dc91e73a6b8995a1b290e12226db31aeb6c3dae8 2602142 
libcairo2-dbg_1.12.16-2_amd64.deb
 175bd5b3abddc16b82f76f743cfcec7e89c1f651 574588 
libcairo-script-interpreter2_1.12.16-2_amd64.deb
 da860b19e84b3a9ae34d2fabe2dfc7ecc443b39d 538622 
libcairo-gobject2_1.12.16-2_amd64.deb
 b079b948c0d28971eea12a9752613b557e51e733 876268 
cairo-perf-utils_1.12.16-2_amd64.deb
 6e64152609d60a198d4616ed40aede325ee17621 389876 
libcairo2-udeb_1.12.16-2_amd64.udeb
Checksums-Sha256: 
 87a50de10580c3d1056dde7ba105f53945be3ac123d4ed4c0f6a918bef1239f9 2787 
cairo_1.12.16-2.dsc
 82685a4ccd78c62462f5118b42a55b6b8deceeb320bff459f223718cc6860085 31839 
cairo_1.12.16-2.debian.tar.gz
 917b1a5f1ffdd96149ee04727e8396438371858c4ef33b37fcd89b8566890411 656006 
libcairo2-doc_1.12.16-2_all.deb
 1707f288ffd42b0a4003d111b6080bbb0a18ccf3e1ac91ade7df13d906b8dd6f 1130536 
libcairo2-dev_1.12.16-2_amd64.deb
 a585ef261130cfbaec7c29ce2d0ff92ccc2083473bb432f3d9836478fccc7e1d 987312 
libcairo2_1.12.16-2_amd64.deb
 d98fd07e5df6065cbc24a6f22ecd3f7420127cb40e7424abc665ea6309fa2d0c 2602142 
libcairo2-dbg_1.12.16-2_amd64.deb
 5d611bcc32ec2f548d4ae87a5d5f6387075105964482951295eb0c887a41877c 574588 
libcairo-script-interpreter2_1.12.16-2_amd64.deb
 af64992a08ca0a4b028a3d95a04fa2e7c0a2bf424d515c1989f42b7435c4cd3e 538622 
libcairo-gobject2_1.12.16-2_amd64.deb
 e7f59e7294edb1a2b891459615b0e190a92bb2d48e932bd52c27831a994fcf22 876268 
cairo-perf-utils_1.12.16-2_amd64.deb
 14011789ea2a5ca6981b505e2fa5fcd286df08263a2ba0b111fc9dcaf4738ffa 389876 
libcairo2-udeb_1.12.16-2_amd64.udeb
Files: 
 b2615a0d5de4931b1db2c1696b19c747 2787 libs optional cairo_1.12.16-2.dsc
 50104b9dfedda9b13d2ae9027660deb4 31839 libs optional 
cairo_1.12.16-2.debian.tar.gz
 d50aed2443d16d5a1c44c211c06dce44 656006 doc optional 
libcairo2-doc_1.12.16-2_all.deb
 b056991be57989fd8731c63dde372cb4 1130536 libdevel optional 
libcairo2-dev_1.12.16-2_amd64.deb
 fa2ed00f82e1291ed6ba3c4bd6247fb9 987312 libs optional 
libcairo2_1.12.16-2_amd64.deb
 5fe0bee97723a2f0c13be74411e58ee9 2602142 debug extra 
libcairo2-dbg_1.12.16-2_amd64.deb
 8ff78de96851983e1d4b5825b84ba2bf 574588 libs optional 
libcairo-script-interpreter2_1.12.16-2_amd64.deb
 ebcf09bf21bbc68408ac0d4c27b59bda 538622 libs optional 
libcairo-gobject2_1.12.16-2_amd64.deb
 7bc9cb1c95052f10bd07e86812733d0a 876268 misc optional 
cairo-perf-utils_1.12.16-2_amd64.deb
 7201417ae38daffd5578bb4805462b48 389876 debian-installer optional 
libcairo2-udeb_1.12.16-2_amd64.udeb

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

iQIcBAEBCAAGBQJSOGqoAAoJEGrh3w1gjyLc3lsP/iiKSwLCi9+pcerzHbAODjRu
HV+jAVUZ9ZLsyaAOPhNkk+F0Wl8vt31NluftQ18w4G9odAZ/G5WXoUuvI2MUxfpP
6NXmTzBrU0QmX6iMn53L+PWfEKJHp4XVxCU+9Q4l/WlRc5xQiov/fL7BhcbT5SpN
u3MZF0G4YEruncufOmGeAP/FabBIAIlnWUJpK/xDBYtX+kAjxg+C5EHshiuh3lXb
oPfIA/uioQzsrakfggsf3WLEOYPGHiAT4x3r43LNF8MVN8ZdAfQB9vVMut1ABXCw
MU4//5OlwFyDnFKaDWWZcZFoeDeX+cwq/FRKQJBRpDVAcwA6b5f0JPz90H2P9Awo
FDTkEoVmwkx8NwyThymaImmRrlR68OhlY7F6TLD8moz1Bm4TVwi3accO09gFBAae

Accepted fonts-ebgaramond 0.015+git20130628-2 (source all)

2013-09-17 Thread Scott Howard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 10:25:44 -0400
Source: fonts-ebgaramond
Binary: fonts-ebgaramond fonts-ebgaramond-extra
Architecture: source all
Version: 0.015+git20130628-2
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Scott Howard show...@debian.org
Description: 
 fonts-ebgaramond - EB Garamond OpenType fonts
 fonts-ebgaramond-extra - EB Garamond Initials and TrueType fonts
Closes: 723159
Changes: 
 fonts-ebgaramond (0.015+git20130628-2) unstable; urgency=low
 .
   * Documented the license for tests/test-microtype.tex (lppl-1.3c)
 Closes: #723159 Thanks Paul Tagliamonte
Checksums-Sha1: 
 42204055165f371de3573705d2c69a223acd593a 1554 
fonts-ebgaramond_0.015+git20130628-2.dsc
 d41c11307ba0b7d25b10c6ceed54a070461104c4 10753 
fonts-ebgaramond_0.015+git20130628-2.debian.tar.gz
 d880d31ad29f2466ba48a087886b2ad4c09f212d 414886 
fonts-ebgaramond_0.015+git20130628-2_all.deb
 a42096f74c14b44a14f9f764520d59894239e3e4 679416 
fonts-ebgaramond-extra_0.015+git20130628-2_all.deb
Checksums-Sha256: 
 46301ea0bf2a48068038397d4b7ec3b30502b967ceca6781af9ceeb5196fbf9b 1554 
fonts-ebgaramond_0.015+git20130628-2.dsc
 f6e293d39dcf3af7cc5a982a1e24445a433b687c214d72b28288aef46517cd36 10753 
fonts-ebgaramond_0.015+git20130628-2.debian.tar.gz
 8862f0a58fc5a8635847c9f92a0f1ea54955a57c5111b54c509f3ffdd2fea235 414886 
fonts-ebgaramond_0.015+git20130628-2_all.deb
 fde90248e17d5b3e58023f43f6aa078fcd4e2696f9c0efbfeb43d89d79199f1f 679416 
fonts-ebgaramond-extra_0.015+git20130628-2_all.deb
Files: 
 4745c828f4f99150377db88f31e3adb5 1554 fonts optional 
fonts-ebgaramond_0.015+git20130628-2.dsc
 3c7f08a20846e6c1bcb18b0205a37064 10753 fonts optional 
fonts-ebgaramond_0.015+git20130628-2.debian.tar.gz
 cd69e689f6734ccb3297c289e34a68a4 414886 fonts optional 
fonts-ebgaramond_0.015+git20130628-2_all.deb
 605e95265ed7bc13864bf03e9cba27cd 679416 fonts optional 
fonts-ebgaramond-extra_0.015+git20130628-2_all.deb

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

iEYEARECAAYFAlI4aqMACgkQuqVp0MvxKmoZXACgpcMWGAfAkbXasy3xpmWiw7DC
7TMAnRUenXfuvetN43gR+s4FuoEwQG33
=G4oU
-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/e1vlx3z-00075y...@franck.debian.org



Accepted lxc 1.0.0~alpha1-2 (source i386)

2013-09-17 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 15:59:32 +0200
Source: lxc
Binary: lxc lxc-dbg lxc-dev
Architecture: source i386
Version: 1.0.0~alpha1-2
Distribution: experimental
Urgency: low
Maintainer: Daniel Baumann m...@daniel-baumann.ch
Changed-By: Daniel Baumann m...@daniel-baumann.ch
Description: 
 lxc- Linux Containers userspace tools
 lxc-dbg- Linux Containers userspace tools (debug)
 lxc-dev- Linux Containers userspace tools (development)
Changes: 
 lxc (1.0.0~alpha1-2) experimental; urgency=low
 .
   * Adding now required --rootfs handling to lxc-debconfig template.
   * Keeping local lxc-list for the time being.
Checksums-Sha1: 
 cb43f66b17f817e1a4cdc75a317ec8ecac495b04 1436 lxc_1.0.0~alpha1-2.dsc
 2f060f48047863c3d5e0e832e503bf939d782a86 46996 lxc_1.0.0~alpha1-2.debian.tar.xz
 6acb6e66b6ef5928227703c51da2ff254e550b09 274262 lxc_1.0.0~alpha1-2_i386.deb
 1fc3b87f61e6b10bff8da723d507de5a391de79b 463268 lxc-dbg_1.0.0~alpha1-2_i386.deb
 b5b3307ba298ffa18145986a7828e5ba72b7e73f 34770 lxc-dev_1.0.0~alpha1-2_i386.deb
Checksums-Sha256: 
 ed88d1ff898d7d675505cfa9658c71340518350228b1dc8c67887ca923f4f103 1436 
lxc_1.0.0~alpha1-2.dsc
 eac860db8d4c02cfe69bd0846337f91cefb22484ca59f315fbedeba301915233 46996 
lxc_1.0.0~alpha1-2.debian.tar.xz
 5ad6f36fd240a1de139f9e4971ccf1c1d9343dbd39f1cdb6b456c741371506f1 274262 
lxc_1.0.0~alpha1-2_i386.deb
 2f4195cb463cb0d1c0b97188619742a926d18f4aca17a1181064a913cb3a7dfd 463268 
lxc-dbg_1.0.0~alpha1-2_i386.deb
 82eb9752621d29612351c22865e726342a36fde579ba8e2f9ad936094a78 34770 
lxc-dev_1.0.0~alpha1-2_i386.deb
Files: 
 ab2e82231b7f68c636524cd24931cd4c 1436 admin optional lxc_1.0.0~alpha1-2.dsc
 be71bb5a7e976404aeed067dfe12046f 46996 admin optional 
lxc_1.0.0~alpha1-2.debian.tar.xz
 3bbe1c43826b2613060a56ffb61411ca 274262 admin optional 
lxc_1.0.0~alpha1-2_i386.deb
 4f56cd326fd7cf57d23a450e4e23e6a7 463268 debug extra 
lxc-dbg_1.0.0~alpha1-2_i386.deb
 0ce236059bcb15217d708f2f99f47bae 34770 libdevel optional 
lxc-dev_1.0.0~alpha1-2_i386.deb

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

iEYEARECAAYFAlI4YKEACgkQ+C5cwEsrK57wVgCfYzPWxo6DlMTx6DSJSiAzsLuZ
mlUAnRGn9FpG1Kz+1SO725c5eFvRxlnc
=3snc
-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/e1vlx5g-0008su...@franck.debian.org



Accepted shutdown-qapps 1.6.7-1 (source amd64)

2013-09-17 Thread Christian Metscher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 11 Aug 2013 10:48:39 +0200
Source: shutdown-qapps
Binary: qprogram-starter qshutdown
Architecture: source amd64
Version: 1.6.7-1
Distribution: unstable
Urgency: low
Maintainer: Christian Metscher hakai...@web.de
Changed-By: Christian Metscher hakai...@web.de
Description: 
 qprogram-starter - Qt program to start programs or commands
 qshutdown  - Qt program to shutdown/reboot/suspend/hibernate the system
Closes: 716194 717102
Changes: 
 shutdown-qapps (1.6.7-1) unstable; urgency=low
 .
   closes: #716194
   * qprogram-starter
 - fixed not beeing able to start commands after first one failed
 - fixed not saving text editors contents and state of checkboxes
   * qshutdown
 - closes: #717102
Checksums-Sha1: 
 6a7b68fb9e97cfde58ebb513843cb38423a42120 1286 shutdown-qapps_1.6.7-1.dsc
 c78077e65b8b4b2bcbb42a08bcad63a1f6f317cb 194900 
shutdown-qapps_1.6.7.orig.tar.gz
 5f972a93764257d58b39e3b9122b3467c6999d60 7960 
shutdown-qapps_1.6.7-1.debian.tar.gz
 9a4d3ca2ab7dd5862dfff4012b0de46ce31176cb 57950 
qprogram-starter_1.6.7-1_amd64.deb
 3a259a041fed8ad5d853b0223c3659ce861fd106 180512 qshutdown_1.6.7-1_amd64.deb
Checksums-Sha256: 
 1420712cc976d4118f6b10cb65c528bfdf5945784c5ff0e61d4897920ee063a4 1286 
shutdown-qapps_1.6.7-1.dsc
 9f9df11cb93e1bd6ce63d118bc3f94b02ae60f5b0d6ea219f234919adde67b88 194900 
shutdown-qapps_1.6.7.orig.tar.gz
 b6a2bd709ccc41da20faad53d1474ef2ea3b8df511ee0bdab63948b1c03df51b 7960 
shutdown-qapps_1.6.7-1.debian.tar.gz
 83a7f72b7509bc3c7c6a768dc4a19f7471249910b173bf7288d0c11e73858303 57950 
qprogram-starter_1.6.7-1_amd64.deb
 09371489337403c76b9448dca31f43c96e09e9422d6cf04cbb2de5cce08d898e 180512 
qshutdown_1.6.7-1_amd64.deb
Files: 
 d2d0826fda7196c354a18bdbcc774f62 1286 utils optional shutdown-qapps_1.6.7-1.dsc
 eb55c7784814795c584b02f6b5baa003 194900 utils optional 
shutdown-qapps_1.6.7.orig.tar.gz
 65dfe21bb1c2967fab99a33476ca0720 7960 utils optional 
shutdown-qapps_1.6.7-1.debian.tar.gz
 2bd62ef3d4485600e7ce565b27a3e267 57950 utils optional 
qprogram-starter_1.6.7-1_amd64.deb
 6a150cc1d63e33af0481730534fd09c5 180512 utils optional 
qshutdown_1.6.7-1_amd64.deb

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

iEYEARECAAYFAlI4YzMACgkQ1Ng1YWbyRSEpBwCgj/eqMB0Gi904X/UkZzGWM7l5
hW4AninY8xb3ZlBKOBVRkJADE/Pw5G35
=I53k
-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/e1vlx6f-7o...@franck.debian.org



Accepted webkitgtk 2.1.91-1 (source all amd64)

2013-09-17 Thread Gustavo Noronha Silva
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 16 Sep 2013 15:02:08 -0300
Source: webkitgtk
Binary: libjavascriptcoregtk-1.0-0 libjavascriptcoregtk-1.0-dev 
libjavascriptcoregtk-1.0-0-dbg gir1.2-javascriptcoregtk-1.0 libwebkitgtk-1.0-0 
libwebkit-dev libwebkitgtk-dev libwebkitgtk-1.0-common libwebkitgtk-1.0-0-dbg 
gir1.2-webkit-1.0 libjavascriptcoregtk-3.0-0 libjavascriptcoregtk-3.0-dev 
libjavascriptcoregtk-3.0-0-dbg gir1.2-javascriptcoregtk-3.0 libwebkitgtk-3.0-0 
libwebkitgtk-3.0-dev libwebkitgtk-3.0-common libwebkitgtk-3.0-0-dbg 
gir1.2-webkit-3.0 libwebkit2gtk-3.0-25 libwebkit2gtk-3.0-dev 
libwebkit2gtk-3.0-25-dbg gir1.2-webkit2-3.0 libwebkitgtk-common-dev
Architecture: source all amd64
Version: 2.1.91-1
Distribution: experimental
Urgency: low
Maintainer: Debian WebKit Maintainers 
pkg-webkit-maintain...@lists.alioth.debian.org
Changed-By: Gustavo Noronha Silva k...@debian.org
Description: 
 gir1.2-javascriptcoregtk-1.0 - GObject introspection data for the GTK+-based 
JavaScriptCore libr
 gir1.2-javascriptcoregtk-3.0 - GObject introspection data for the GTK+-based 
JavaScriptCore libr
 gir1.2-webkit-1.0 - GObject introspection data for the WebKit library
 gir1.2-webkit-3.0 - GObject introspection data for the WebKit library
 gir1.2-webkit2-3.0 - GObject introspection data for the GTK+ port of the 
WebKit2 libra
 libjavascriptcoregtk-1.0-0 - Javascript engine library for GTK+
 libjavascriptcoregtk-1.0-0-dbg - Javascript engine library for GTK+
 libjavascriptcoregtk-1.0-dev - Javascript engine library for GTK+
 libjavascriptcoregtk-3.0-0 - Javascript engine library for GTK+
 libjavascriptcoregtk-3.0-0-dbg - Javascript engine library for GTK+
 libjavascriptcoregtk-3.0-dev - Javascript engine library for GTK+
 libwebkit-dev - Transitional package for the development files of WebKitGTK+
 libwebkit2gtk-3.0-25 - Web content engine library for GTK+
 libwebkit2gtk-3.0-25-dbg - Web content engine library for GTK+ - Debugging 
symbols
 libwebkit2gtk-3.0-dev - Web content engine library for GTK+ - Development files
 libwebkitgtk-1.0-0 - Web content engine library for GTK+
 libwebkitgtk-1.0-0-dbg - Web content engine library for GTK+ - Debugging 
symbols
 libwebkitgtk-1.0-common - Web content engine library for GTK+ - data files
 libwebkitgtk-3.0-0 - Web content engine library for GTK+
 libwebkitgtk-3.0-0-dbg - Web content engine library for GTK+ - Debugging 
symbols
 libwebkitgtk-3.0-common - Web content engine library for GTK+ - data files
 libwebkitgtk-3.0-dev - Web content engine library for GTK+ - Development files
 libwebkitgtk-common-dev - Web content engine library for GTK+ - common 
development files
 libwebkitgtk-dev - Web content engine library for GTK+ - Development files
Closes: 721206 721863
Changes: 
 webkitgtk (2.1.91-1) experimental; urgency=low
 .
   [ Michael Biebl ]
   * debian/rules:
 + Use filter instead of findstring to match the current architecture as
   findstring also matches substrings so we accidentally used stabs debug
   symbols for i386 and amd64 and disabled jit for mips.
 .
   [ Emilio Pozuelo Monfort ]
   * debian/rules:
 + Use CPPFLAGS instead of JSC_CPPFLAGS to disable JIT and MacroAssembler
   as JSC_CPPFLAGS is no longer honored by the build system. This fixes
   the build (again) on ia64 powerpc sparc s390 and s390x.
   * debian/patches/40_hppa_platform_h.patch,
 debian/patches/41_hppa_build_fix.patch,
 debian/rules:
 + Add support for HPPA. Thanks to John David Anglin for the patches.
   Closes: #721206.
   * debian/patches/20_mesa-llvmpipe-crash.patch,
 debian/patches/25_bison_2.6_ftbfs.patch:
 + Remove patches that were cherry-picked from upstream 2.1.x and we
   no longer use.
   * debian/rules:
 + Disable JIT and MacroAssembler on alpha. Closes: #721863.
 + Likewise for ppc64 and sparc64.
 .
   [ Gustavo Noronha Silva ]
   * debian/rules:
 + Disable GLX on ARM, thanks to Sjoerd Simons.
   * debian/patches/10_hurd_getCurrentExecutablePath.patch,
 debian/patches/20_bsd-hurd-gtest-port.patch:
 + removed, applied upstream
Checksums-Sha1: 
 c774eaea679e59fc1042409bb74919a429e994cb 4151 webkitgtk_2.1.91-1.dsc
 0f4f1919e9b05be55dc437a55dd04d645532b28c 9570360 webkitgtk_2.1.91.orig.tar.xz
 0f7fe67520a43535a8f8760a36051005ea6f9201 78175 webkitgtk_2.1.91-1.debian.tar.gz
 bebf27fe834316d10b50581fcb39cafe03e3bb18 1047184 
libwebkitgtk-1.0-common_2.1.91-1_all.deb
 8d2411bcf9b65d01047461c4adafad5f95944d0a 1047614 
libwebkitgtk-3.0-common_2.1.91-1_all.deb
Checksums-Sha256: 
 b7413ef08f9ce140e816842d76c7ee3fa09b36a769b230c6b034bb3545f706a0 4151 
webkitgtk_2.1.91-1.dsc
 76620dce9805a5d06f4afc3dd620f6a094c8f49e4431ef1b2a0100d1d51b18e0 9570360 
webkitgtk_2.1.91.orig.tar.xz
 fa4efaffe29de60f4f380007f39643015d0f0dcf1478c9056b322e6d82fb895d 78175 
webkitgtk_2.1.91-1.debian.tar.gz
 d8ba3df591e82317307c4d701f67b666c12960c632660f7ed22f01d3e75a591b 1047184 
libwebkitgtk-1.0-common_2.1.91-1_all.deb
 

Accepted gcc-snapshot 20130917-1 (source amd64)

2013-09-17 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 13:25:03 +0200
Source: gcc-snapshot
Binary: gcc-snapshot
Architecture: source amd64
Version: 20130917-1
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 gcc-snapshot - A SNAPSHOT of the GNU Compiler Collection
Changes: 
 gcc-snapshot (20130917-1) unstable; urgency=low
 .
   * Snapshot, taken from the trunk (20130917)
Checksums-Sha1: 
 37a541eb5fb7468fd735403071556f75136c9137 3392 gcc-snapshot_20130917-1.dsc
 b22ad8d836cb13ae8693207770e1dacfb2c1240f 66653396 
gcc-snapshot_20130917.orig.tar.gz
 786c0df57d18f37e6f010258fd6499b9ce7f7dca 3117565 
gcc-snapshot_20130917-1.diff.gz
 873f9fc404ada309d96a7fb4808d94b59044c0d1 111847104 
gcc-snapshot_20130917-1_amd64.deb
Checksums-Sha256: 
 51aea05084386680875263ac76584cfea150eab4b177f0d884c868eed627dd3c 3392 
gcc-snapshot_20130917-1.dsc
 1b0005f2131e29cd5fced0f0fa16e66845ee5fb432cb870dde5cb26c4d8bb9f6 66653396 
gcc-snapshot_20130917.orig.tar.gz
 b9fd58fd80d8c7c9568f96be951c00958bf5f31a407b055d4f1096e20b0268e8 3117565 
gcc-snapshot_20130917-1.diff.gz
 ab7cef449c2b55cc5a0ff7e336a27cc9a8592f49e89f8a64c44a117f4207e402 111847104 
gcc-snapshot_20130917-1_amd64.deb
Files: 
 81d80561fcc7b147f0fa30f479ad73d8 3392 devel optional 
gcc-snapshot_20130917-1.dsc
 ecf84abcfa922e0a9234aa82dcde1652 66653396 devel optional 
gcc-snapshot_20130917.orig.tar.gz
 9804d73c89d395a007c9c4c1ebf8b1df 3117565 devel optional 
gcc-snapshot_20130917-1.diff.gz
 6bff6895a50e86fdd8e91a4207a70126 111847104 devel extra 
gcc-snapshot_20130917-1_amd64.deb

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

iEYEARECAAYFAlI4ZLgACgkQStlRaw+TLJx3cACfagnXMFBOW/PdpViwMnAhM2aM
omwAnRl+gDVz+RzpWZ5C+Oybkz/KMpg7
=65K+
-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/e1vlx4z-0008hs...@franck.debian.org



Accepted haskell-hspec-expectations 0.3.3-1 (source all amd64)

2013-09-17 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2013 12:12:02 -0400
Source: haskell-hspec-expectations
Binary: libghc-hspec-expectations-dev libghc-hspec-expectations-prof 
libghc-hspec-expectations-doc
Architecture: source all amd64
Version: 0.3.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-hspec-expectations-dev - catchy combinators for HUnit
 libghc-hspec-expectations-doc - catchy combinators for HUnit; documentation
 libghc-hspec-expectations-prof - catchy combinators for HUnit; profiling 
libraries
Changes: 
 haskell-hspec-expectations (0.3.3-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 c96c84238afc2f70e700d76f83738ed9a49f4dc1 2275 
haskell-hspec-expectations_0.3.3-1.dsc
 d64193f50df17b9ff806b981bb27e690d79eb934 3848 
haskell-hspec-expectations_0.3.3.orig.tar.gz
 cbd89b263806001753ea41cb4ceade7dac36eba9 2095 
haskell-hspec-expectations_0.3.3-1.debian.tar.gz
 16385ee6c08bcce4005b6b66cf1c105d895b994f 30486 
libghc-hspec-expectations-doc_0.3.3-1_all.deb
 dff8c6efa56949f0b68992f37e297ab26f1f7098 13194 
libghc-hspec-expectations-dev_0.3.3-1_amd64.deb
 1c3085c6f9acff00210ba76acbba0027477ae4fe 13546 
libghc-hspec-expectations-prof_0.3.3-1_amd64.deb
Checksums-Sha256: 
 905070101241fa2fcad3ad0c42c52775a31a8a1bf2b06ecfd16db73d91bcd5df 2275 
haskell-hspec-expectations_0.3.3-1.dsc
 b3b024396c8cb171f1c5a2e9c380dd9a6659e8e608873817d8bce294dfe4e769 3848 
haskell-hspec-expectations_0.3.3.orig.tar.gz
 80f0c7084d1a319263e90a5dedb06c8d89a08c778a76fe45c5a644fadde59d3f 2095 
haskell-hspec-expectations_0.3.3-1.debian.tar.gz
 143c4187ce18c2b057e2f51f44126859257008943b97df659c7bfba5591a02f9 30486 
libghc-hspec-expectations-doc_0.3.3-1_all.deb
 0876f03b7fac0c4cd2e0ac246a049ec9368638ebde95c11a162669710b4894a5 13194 
libghc-hspec-expectations-dev_0.3.3-1_amd64.deb
 3280079b95703d53053fa6b6ab585a4825b187d006ae6fdac7b43b22737be2af 13546 
libghc-hspec-expectations-prof_0.3.3-1_amd64.deb
Files: 
 6cc54ceb33c1aae9a47515b5d43efd16 2275 haskell extra 
haskell-hspec-expectations_0.3.3-1.dsc
 4a5ac9d361916bcb9f65cb20e3cd05e9 3848 haskell extra 
haskell-hspec-expectations_0.3.3.orig.tar.gz
 9bd205c09103ac08bf33e6849bab5c1f 2095 haskell extra 
haskell-hspec-expectations_0.3.3-1.debian.tar.gz
 68431561714dd80828ba87b38bb3b583 30486 doc extra 
libghc-hspec-expectations-doc_0.3.3-1_all.deb
 72e8771937ff95e3d1b3193539c0291a 13194 haskell extra 
libghc-hspec-expectations-dev_0.3.3-1_amd64.deb
 9ec05a98ce07ee12a81eefde87ba3712 13546 haskell extra 
libghc-hspec-expectations-prof_0.3.3-1_amd64.deb

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

iQIcBAEBCgAGBQJSOH/+AAoJEFWSMx4ZnTioMhYP/ArwppgGfPqyZeiVLZUqrcX9
Lev3m6dxJDDpYOl0Lv12fZaAntyZ8vF4TKZKNG3bq8y5QQvFfdI3+IZIuZtARGr1
y6iagusIerlPD0pKjoz3TICvdw+VwSuzPekYsqb3lyIWDlhElmSVw3ntf/JI14q2
IkUv3s61h9hpUhr8gaLsBvVRiau/VtynNCRExuLh6iOwduloqHWQ9g9eAoY2k860
lG1cFHxH8ksci6jdEgLo+lKNmbayXGgHrRvPmTWzn8x1aoi87WmCnxsR0qIYepHT
GDl+VShzq4jbdMPW7hEJN1H95gAMo+uhOrRU9texMzGJQOvSLTJHUWcY7QhnSS2t
s/ibFZvbyQJm01Ta1Zrt9HvrC/j3A9KINBcVO7NxZSgUmuKA+fMEnUKklXxZdIrp
hs5pMcwdFQNAC5zb5R3aMgjFGhBxLPwAZiTYFRpzeIskBa+BcnywtNOVN7RBEFRZ
UstU80VVv9PlQDvQOYCk55nL3mbMaOnIIqUYo+ZdXmeckIBOxcYjNBAr1SEvpjIK
eIYZVetmzZdupfFZTANCZwUYhZH3qywgD3gUMmZAWPLalh7iFPDYMaQn5Se2UvFw
lVmB2smwOSuvZS6rmTGflHBYtybwjAoyA4hXVOIjUQh3SA14DQStZ4l71/xz+9S7
7YlE8ZDOhTwpx6JDkpH9
=ESnz
-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/e1vlxyn-0008i6...@franck.debian.org



Accepted libtree-dagnode-perl 1.17-1 (source all)

2013-09-17 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 06:11:16 +0200
Source: libtree-dagnode-perl
Binary: libtree-dagnode-perl
Architecture: source all
Version: 1.17-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libtree-dagnode-perl - Perl (super)class for representing nodes in a tree
Changes: 
 libtree-dagnode-perl (1.17-1) unstable; urgency=low
 .
   * Imported Upstream version 1.17
Checksums-Sha1: 
 1b4b3baf7cf68159cfe0b6b4143151c1ea2eb194 2180 libtree-dagnode-perl_1.17-1.dsc
 4e57b6d3d2dfe658ed0ecc8bf0a3af36b050574e 49554 
libtree-dagnode-perl_1.17.orig.tar.gz
 7b037fc2fee31120661bf7afba7a37598499fe80 5545 
libtree-dagnode-perl_1.17-1.debian.tar.gz
 c04a04a679be9a77529c0367bbd5a1086804e93f 58810 
libtree-dagnode-perl_1.17-1_all.deb
Checksums-Sha256: 
 c8180beb64e2958c4d4c551e27e2a025f1e82203d965d5e1fd01d136012d1fb2 2180 
libtree-dagnode-perl_1.17-1.dsc
 c0581858002b725399b284b73c6b237850bc9cbbcf566932640341c2459e28f1 49554 
libtree-dagnode-perl_1.17.orig.tar.gz
 79544d3c32909a69e70b1d3a1f172760c4520ed5f9de88c1443c24c98d24d550 5545 
libtree-dagnode-perl_1.17-1.debian.tar.gz
 63226af17c388a3183a2ad6f5a5f50b02eed5c42eab2af8903d43b474cdda4db 58810 
libtree-dagnode-perl_1.17-1_all.deb
Files: 
 183578b054fe53dd626488ec79da6679 2180 perl optional 
libtree-dagnode-perl_1.17-1.dsc
 cbbfacf2680279379bb7291f7f25a5aa 49554 perl optional 
libtree-dagnode-perl_1.17.orig.tar.gz
 e1a1ca88ce424b4c2c6d5d6058402014 5545 perl optional 
libtree-dagnode-perl_1.17-1.debian.tar.gz
 4c4c4568ddca5a973226a0f6a3b701e7 58810 perl optional 
libtree-dagnode-perl_1.17-1_all.deb

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

iQIcBAEBCAAGBQJSOIAdAAoJELs6aAGGSaoGRgcQALh1pP5Fk+ehCTIkTvegYXNw
fNNKq5hMG/cShrBjRwea/ze2bv5kZ9TBf9e5rY0m/y1HhatgfD5/p1ZrREQhgCme
MN1zm6J+TfgE2KlhF0QSQQOwqJezslsZYH/B3VYkPOsAyNGOuNsh4aO6NDwAOZ3N
3IFF1eEybMKGTJN+izhWz6AfLAEhJvNIe332QHTMcLPNbonKJxER+lgGdGZntiPG
SY8cE/R0Z11lg345KQx7n8WXdTtr4B7OTHDC3HR11u3ZShdzR122yJC4ucmhfjhQ
6KoLlA90rtpQTuAoxx69ltw9rQ3IK/367KfgvtMAwzFWpqwpfDO+9uYIuvRnxYXs
XI3q9yq73/Fis6lkVadrEhN/ktEk4Hrcc86XBxcGPqmpow12ohmtdUu5ND0CZ29Y
unmgDZsJpDlE5Jgse56dO5pizi76I0qRJAK3w+fFUX2+6ErNvFAiDyfGIf3Mhkvn
52lCYrFRt9zw0UdDShUjdyGADfkmX8ZMMfR06b/2H8ydOJYPmTlKoxQVbb3I6K2O
wc/pGUItBMGOW6Uc/903nGzUGOAWhLuL0boyAfSw7fwEdgBmz6jmYvtGEABOFkXR
YlOIeQDXFcAIVGD8CicGUtaLe+ifdap6JMfupi1owSOQ/RWYWZoCmW5XynUnIuOD
yuzDpzoprKhqkTkEYpiu
=fiaQ
-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/e1vlxyu-0008jy...@franck.debian.org



Accepted libcpan-meta-perl 2.132510-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 19:01:02 +0200
Source: libcpan-meta-perl
Binary: libcpan-meta-perl
Architecture: source all
Version: 2.132510-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libcpan-meta-perl - Perl module to access distribution metadata for a CPAN 
distributi
Changes: 
 libcpan-meta-perl (2.132510-1) unstable; urgency=low
 .
   * New upstream release.
   * Switch order of alternative (build) dependencies, now that 5.18 is in
 sid.
Checksums-Sha1: 
 da376a9f93e81274d5ab09278522978d140104ab 2496 libcpan-meta-perl_2.132510-1.dsc
 14b57f5f970d4a512e9d1328e0cef29326cc96eb 79484 
libcpan-meta-perl_2.132510.orig.tar.gz
 cfaddb1220add97abbeca5dcbc39d58692a90b4c 3068 
libcpan-meta-perl_2.132510-1.debian.tar.gz
 c8b571ed9d787f8d3ca8933d441e19b15b9bf8fa 73520 
libcpan-meta-perl_2.132510-1_all.deb
Checksums-Sha256: 
 af0f24d47df9500499af7b1267a14f13853b81ad14450c3e2c6909b02b73a6ee 2496 
libcpan-meta-perl_2.132510-1.dsc
 97c77bd84dbe707c79452de42b47fe9f4daa98d08d160d3ae43e2e7207351ee9 79484 
libcpan-meta-perl_2.132510.orig.tar.gz
 290d0d3126922ac629f73b0973a35d8e181a4d7aa23ff28eb3806087cdfe84a9 3068 
libcpan-meta-perl_2.132510-1.debian.tar.gz
 4b10c006ed0977d49884aa735d503ae8e3ecab6a97a16772711ef5bae283286c 73520 
libcpan-meta-perl_2.132510-1_all.deb
Files: 
 49153912ceabd7905b5c73635a8b01bd 2496 perl optional 
libcpan-meta-perl_2.132510-1.dsc
 acd4cc59b45adc5dd447868a00414357 79484 perl optional 
libcpan-meta-perl_2.132510.orig.tar.gz
 fe90f2fc86ca54602e72baf9c4e4fe36 3068 perl optional 
libcpan-meta-perl_2.132510-1.debian.tar.gz
 77a2fc346473f47b183469714e60f520 73520 perl optional 
libcpan-meta-perl_2.132510-1_all.deb

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

iQIcBAEBCAAGBQJSOIrgAAoJELs6aAGGSaoGM70P/i+OpjAbsWA9dgkw8USv32dY
PnfkXUfvysQUIURtUtIPGW815uSUk71v7M/i7MMqetB4f2HSuKAeWEaivk/lkDaR
oxahjrmIV5LceHjdbuno5k+1xCh/0yuO8lzwPIJKh9WtuXHjAkYT14+oA9LQr6E8
iCmhBFOVH+U0/vrnQeCLc+DfAoCrD2T2l34oj+pnm5F+tdJk1ehFPVVRRr7ocQVF
1M2QeYehPX8qO7BnOJbPvPbjMGu7WoiCG0GojJ7cgF9vtp/myGx7B83T5GFNSoZn
49i/Y9u1FxFjP1FKZLVsM2x4ySDxf3AAPJyP1FwIvExTHvxM2JP2T7TSkYDCsLmk
fWsnCQsvQcchw4cRTeC1e9rghxjkj1ExwyLl2C78M4Q59ublJ633Wucq/pamE09s
wldKcBD7r7Kec9BaCFIqxheG9Fus0JSG3Rm8M8M8vg2oF0nY2qvxL64cYc3Av8+s
Z2ZvbwHFuL2dtH66+kXTz/Y7pqCPwUzInx3f2kTV6Gk/Lnx3shS7O6NFyTv6Q89n
t4bBNtD/N44/CFO7t0isU25xfTicqEt/go4t5SyoeIxmB5WzXy3xpl5K7tT8nx+H
3ln8sCmJigBLpOa3Pz3w9ZIzfZlG/WOYuo/8NSzr6i//5U8Pmv+6P3yxccagZ92z
u6sAI7znYxCdeu+W1lPZ
=0Xh0
-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/e1vlyg7-0006zz...@franck.debian.org



Accepted libsdl1.2 1.2.15-7 (source amd64)

2013-09-17 Thread Felix Geyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 18:26:42 +0200
Source: libsdl1.2
Binary: libsdl1.2debian libsdl1.2-dev libsdl1.2-dbg
Architecture: source amd64
Version: 1.2.15-7
Distribution: unstable
Urgency: low
Maintainer: Debian SDL packages maintainers 
pkg-sdl-maintain...@lists.alioth.debian.org
Changed-By: Felix Geyer fge...@debian.org
Description: 
 libsdl1.2-dbg - Simple DirectMedia Layer debug files
 libsdl1.2-dev - Simple DirectMedia Layer development files
 libsdl1.2debian - Simple DirectMedia Layer
Closes: 723165
Changes: 
 libsdl1.2 (1.2.15-7) unstable; urgency=low
 .
   * Drop the udeb package as it doesn't have any reverse dependencies anymore.
 (Closes: #723165)
Checksums-Sha1: 
 d4478b36d2c3c9d7abbcb8603df7e39397805de0 2465 libsdl1.2_1.2.15-7.dsc
 24b16c99e11ebb5efb4f2d14c0fb8cbf19909a72 24879 libsdl1.2_1.2.15-7.debian.tar.gz
 a72a6cac61de66edde1395016e8b7013aa13f5f1 184486 
libsdl1.2debian_1.2.15-7_amd64.deb
 02fe8c3dbd9f3e90e4717e5aed3c94b23349055b 768194 
libsdl1.2-dev_1.2.15-7_amd64.deb
 ce0af4df5547043acb137613e9ac68963cd72567 761182 
libsdl1.2-dbg_1.2.15-7_amd64.deb
Checksums-Sha256: 
 3a9c1eb6cc9b1e78d8f70fcdb0d8af7a8d8139034ea09f7bec780e513845cd1e 2465 
libsdl1.2_1.2.15-7.dsc
 14cd3a24e2e4c87514c2bf23ee2c9fe622977b09b18518e247d47241bdf75675 24879 
libsdl1.2_1.2.15-7.debian.tar.gz
 4e044d46aded3a33d648e10d057361cf5e7b61f9fb780b033408fdbe59317258 184486 
libsdl1.2debian_1.2.15-7_amd64.deb
 2d78ff7c4beb559cd70ea9334a8658418e3805945d0702e7a2c82b350863fbf4 768194 
libsdl1.2-dev_1.2.15-7_amd64.deb
 34e2b8842246ad928e0b52bf6e0c4497f1fa222ec30152e04be04f8f0c82283e 761182 
libsdl1.2-dbg_1.2.15-7_amd64.deb
Files: 
 2670bd364fcd37941604f60b13141dda 2465 libs optional libsdl1.2_1.2.15-7.dsc
 74e75a2fe664d12bd5817d61249ebe1b 24879 libs optional 
libsdl1.2_1.2.15-7.debian.tar.gz
 91a22a3af941fddcfc86ecb70a4c9847 184486 libs optional 
libsdl1.2debian_1.2.15-7_amd64.deb
 3b18dcaa30d14a40acf6b05b7adbc539 768194 libdevel optional 
libsdl1.2-dev_1.2.15-7_amd64.deb
 a68868f6373ece94e07023609ea95e07 761182 debug extra 
libsdl1.2-dbg_1.2.15-7_amd64.deb

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

iQIcBAEBCAAGBQJSOIPoAAoJEP4ixv2DE11Fh80QAIUv/ioJj2cvl3MX+T0nMmVi
xqrP43E3kn27nZlW1yNVXhC3EyvlvpDuJGUBH15LR0xCkytTVD5wWdX/F0f2iP8X
mPgNFMeu/jyejWYFtJe/K8EWPg8vBHCS377jdtr1ifnYmIescAKjh485TqHApVcs
1ey6QIcMHorD0VHWsHlQf5swNR6slN0XxBFL+Co3RPOMh2qAeinPqbTIRCm9vh9H
omvSBHNgff7mceSHg3VpGf8ZEIL8aZxlUENnxaXkbeW0mHBRUA/tyJOeC5M4w0tx
wSVphza9PNzYCvP2Og+yhXknCy/v29Gaz/XyPSclIA7I6vFHJSBR69riaiqY9aCx
L0q/68x9H0jyFv2FUdDI2RZuk1BrMcCXilGRW7MBOgGHDKpyCX1QF/6NPO5LnEHr
tnpNx9v0Fdl0GcvzU1SaCBXxPGyW9QXZm0WjpVN2JfSfym0m3AWDUOp+vEvTy/bG
s68/oFgA73AVpLKHJPKiogKCI8UxuUyuAiTLhub+hiz1s1lmaECVtztCjtf6yTok
sHuziyv48L5FKZ+TXcFJkhbhT8nn1sEMCxJq7hJgrjU85dyrJKFs0X21Jdm53r3L
otxeg3fFqJbvuvTlNU4+svomOnq85e+wt8f0hPOrae94oxH1t6/l4xvr1gkLwG5/
wzUw+bVHxaOlb55LD2WO
=fRIC
-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/e1vlys2-0004cm...@franck.debian.org



Accepted libcpan-meta-requirements-perl 2.123-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 18:51:52 +0200
Source: libcpan-meta-requirements-perl
Binary: libcpan-meta-requirements-perl
Architecture: source all
Version: 2.123-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libcpan-meta-requirements-perl - set of version requirements for a CPAN dist
Changes: 
 libcpan-meta-requirements-perl (2.123-1) unstable; urgency=low
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ gregor herrmann ]
   * New upstream release.
   * Update years of packaging copyright.
   * Declare compliance with Debian Policy 3.9.4.
Checksums-Sha1: 
 1d62de9d5435f02535f7983d31435568fc50b1ea 2210 
libcpan-meta-requirements-perl_2.123-1.dsc
 e36b83c81daaccbc69375a4affc2229145b35434 21780 
libcpan-meta-requirements-perl_2.123.orig.tar.gz
 72b6ba84e72cee2012f4dc8bd1f5b4e528a77c39 1727 
libcpan-meta-requirements-perl_2.123-1.debian.tar.gz
 c8927f69f49fa18f6e7c3ef6abe9031ed1165aa7 13128 
libcpan-meta-requirements-perl_2.123-1_all.deb
Checksums-Sha256: 
 c7a75f4fd50aea6ec92df204842d4f5bc6e17e6abf2e277e0e9f0f44a43cd22a 2210 
libcpan-meta-requirements-perl_2.123-1.dsc
 1d45c5717aabc669fc7c85d6d12beaf351714ca5aeb46e53c4372650e4ce47b3 21780 
libcpan-meta-requirements-perl_2.123.orig.tar.gz
 a40e7da20c5c83950a1d356bff9b66da21c4281aa9218d5bdb20ea130d35b0ed 1727 
libcpan-meta-requirements-perl_2.123-1.debian.tar.gz
 0cb7d6145c456861d64f2a0c4d07cf95e4504aafd4d8ca7547efb3643417605c 13128 
libcpan-meta-requirements-perl_2.123-1_all.deb
Files: 
 a1f688dd54b6ecad72b66742a579714c 2210 perl optional 
libcpan-meta-requirements-perl_2.123-1.dsc
 a3eb482c9f2f0710b6131d0e00d04489 21780 perl optional 
libcpan-meta-requirements-perl_2.123.orig.tar.gz
 dadf3623b0eb9b965f50249ef2bd4d6f 1727 perl optional 
libcpan-meta-requirements-perl_2.123-1.debian.tar.gz
 d860a8b787936c798b028df3ed3a6176 13128 perl optional 
libcpan-meta-requirements-perl_2.123-1_all.deb

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

iQIcBAEBCAAGBQJSOIjbAAoJELs6aAGGSaoG7AIP/2TnFDTTeTCIdi+8t55yh6hX
YctwoYvJ+IFSwhdLnPiIBuICsZiqyOVO5jE6f4if4ZlVNHE54QeJeZ00way5MbX3
wFwqmv6qDKj94X1erIsq7PtH+wYpCMHCd3ZnKR1PHoRLYSxp5HO2eo/D7GuGnGUV
yX5fz4TyD2NR8NIXGOMuZVPusQDxsK8RDgvgeUzETSV/sLQA6+8533NMN6FcFx/M
4lnP//K5NgK6VvPdte6B7i9zO4Fgl424J3IQS6rybbXMoZU+lht0XdHE/ssH6qi0
PA2GLbIA63Aubk2mpPBdmmu0ORFVKjD8uH5KG3Cz0qlPzxqnneiuWbCIx575UG1x
Er2TBb6ZHYzV1nDhCvpQYyu3I3UgX9ZfWPMgDdPFWM7I+AB0NeFERUSym72vMEgo
KdidwMDEfC3CUA74p+cLqGOlxLwHckKah6j0grfYqoUac+2opgGJVOrGX6KPM/H0
MbRIhQaoPVmfS58ORSgkxaqYGM2cOWYR1WeXJCWnchH2POMqjLRxw43zN7Dy/gWR
omdviGQU0f4S0VrubT1foJCm/eXetyS14smg66q0YhNyKbcJ/75Ay2KKHHc8j/cn
UC8/B/O/jhi2s8w105AvLjFZSXlJXG9K+I62OccgZ8G5nBj/MeP6ZFCi8y5/9J81
luxqe7dbQgnmBXe+DeS0
=VPjQ
-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/e1vlyge-0006bt...@franck.debian.org



Accepted haskell-wai-logger 0.3.1-1 (source all amd64)

2013-09-17 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2013 12:33:26 -0400
Source: haskell-wai-logger
Binary: libghc-wai-logger-dev libghc-wai-logger-prof libghc-wai-logger-doc
Architecture: source all amd64
Version: 0.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-wai-logger-dev - logging system for WAI${haskell:ShortBlurb}
 libghc-wai-logger-doc - logging system for WAI${haskell:ShortBlurb}
 libghc-wai-logger-prof - logging system for WAI${haskell:ShortBlurb}
Changes: 
 haskell-wai-logger (0.3.1-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 4c195298dc0ea9703961a07d98310682c87f211c 2845 haskell-wai-logger_0.3.1-1.dsc
 f6f1dddf2b3bacc4a5dfa5a90e4a79f9728e9ba9 3645 
haskell-wai-logger_0.3.1.orig.tar.gz
 c0884eda1e42bac32ac88d6e61c3c9c6467189ba 2447 
haskell-wai-logger_0.3.1-1.debian.tar.gz
 fef38d5ae975ed77d2ad034592d6513eb0a4 32664 
libghc-wai-logger-doc_0.3.1-1_all.deb
 233ddb17b948a74b458858a76dcc5d988b7079b4 30026 
libghc-wai-logger-dev_0.3.1-1_amd64.deb
 4063728cb12bfa20538e7970512a91643266e293 32044 
libghc-wai-logger-prof_0.3.1-1_amd64.deb
Checksums-Sha256: 
 e3632b088774fb61a6065c26483cbcb559fa5339e087ce704bac40dc8d46251a 2845 
haskell-wai-logger_0.3.1-1.dsc
 313e2823d715e594123c92d68e3eea23cc9fb18b37c293a57f595ec7dc312d74 3645 
haskell-wai-logger_0.3.1.orig.tar.gz
 3d0095da1f7aaec05984088727b44d6edf935aebbba9b3036425b5cf0ee289ad 2447 
haskell-wai-logger_0.3.1-1.debian.tar.gz
 57ec3e4d1feaf7604659869fc37c87256b5eb62d2416de953731033bc15bf59a 32664 
libghc-wai-logger-doc_0.3.1-1_all.deb
 27b368937944c926a703f4792a283cf00ba71c1a33779b0b34be3c73847223a2 30026 
libghc-wai-logger-dev_0.3.1-1_amd64.deb
 c9b01cbdcdeb4efde6b0fafd4b69600b46143f39bcc9cee929fb163543254637 32044 
libghc-wai-logger-prof_0.3.1-1_amd64.deb
Files: 
 da64a688bd58f7b183c649dcaf7c293f 2845 haskell extra 
haskell-wai-logger_0.3.1-1.dsc
 916ce8ae2740aec9760bd24b493805b1 3645 haskell extra 
haskell-wai-logger_0.3.1.orig.tar.gz
 f49930d11adeb0059a5935aabac6a91c 2447 haskell extra 
haskell-wai-logger_0.3.1-1.debian.tar.gz
 768e3258349eaf0eca7282632466d6a5 32664 doc extra 
libghc-wai-logger-doc_0.3.1-1_all.deb
 d5013aebc02aabf0d01a2b9b3b9a96c8 30026 haskell extra 
libghc-wai-logger-dev_0.3.1-1_amd64.deb
 1f9f053b73302891a876ddf501462998 32044 haskell extra 
libghc-wai-logger-prof_0.3.1-1_amd64.deb

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

iQIcBAEBCgAGBQJSOIVXAAoJEFWSMx4ZnTioRxcP/1hswowpynlCz5QooYTeDy+f
aGSeOzWPd6InUnE+zlmalB4s+O9wEwbvkpSG7P44rI3lF5jp0A5SjSUmxfAQXXOw
XImDRrIRUQjf+crTj/giTwultCa5t0IbUewjCfmf4ihOJWv6zAZqFAEAfWz/FXGC
91Kj3N/l6Uk39UOSIk7K6938lbYuF3MPxYzqep/VAj7xSN2vmOiqIyJ17OaQNpIS
iXdWO15pJYFiRZMsIGH2zoMpItfqv9ZMBUyK7bbQYbOzI/jj9clU//eX+CzplsaG
EQIb6YGi0/NI7UVJBvVIzJgfmwJzODpanMyzMzOPBCoejbcr8va7AG6AMqEAUYbb
X42meLnNQqG8vmi6VckLuBVzjxieAXWf0VBx34ebkrV3cEl6AA4s0soRrCpCk2sI
aLdfK+QUS7c8wasbqBsyYwZxZ21fTFGuyzMdz1fm3rfu1eRY3ydA/fe9Z7lEsIQ5
cGnDJAD4YgFo830yztoTBMUT/CyNp6itiMhOrcLIzXCNmkMQOQlPo/Qok66CZOpT
igLYWpqQZZEfG9qzq9NtxSL88BMtLXU3NVEF2p2S0LfcnKApCAfvbClo/nFTJFQ3
fnoxN+oz6/FFlKhKrdk5nwqgzM2BDAkUI0dXq2haZ0NO5EhDX2SZi9zP4O0veQST
tkvziJUshHyJQW7ieTM0
=jZdi
-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/e1vlyre-00043g...@franck.debian.org



Accepted python2.7 2.7.5-8 (source all amd64)

2013-09-17 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 15:47:45 +0200
Source: python2.7
Binary: python2.7 libpython2.7-stdlib python2.7-minimal libpython2.7-minimal 
libpython2.7 python2.7-examples python2.7-dev libpython2.7-dev 
libpython2.7-testsuite idle-python2.7 python2.7-doc python2.7-dbg 
libpython2.7-dbg
Architecture: source all amd64
Version: 2.7.5-8
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 idle-python2.7 - IDE for Python (v2.7) using Tkinter
 libpython2.7 - Shared Python runtime library (version 2.7)
 libpython2.7-dbg - Debug Build of the Python Interpreter (version 2.7)
 libpython2.7-dev - Header files and a static library for Python (v2.7)
 libpython2.7-minimal - Minimal subset of the Python language (version 2.7)
 libpython2.7-stdlib - Interactive high-level object-oriented language 
(standard library
 libpython2.7-testsuite - Testsuite for the Python standard library (v2.7)
 python2.7  - Interactive high-level object-oriented language (version 2.7)
 python2.7-dbg - Debug Build of the Python Interpreter (version 2.7)
 python2.7-dev - Header files and a static library for Python (v2.7)
 python2.7-doc - Documentation for the high-level object-oriented language 
Python
 python2.7-examples - Examples for the Python language (v2.7)
 python2.7-minimal - Minimal subset of the Python language (version 2.7)
Closes: 714802 715063 719566
Changes: 
 python2.7 (2.7.5-8) unstable; urgency=medium
 .
   * Update to 20130917, taken from the 2.7 branch.
 - Fix SSL module to handle NULL bytes inside subjectAltNames general
   names (CVE-2013-4238). Closes: #719566.
   * Don't run the curses autopkg test.
   * Set Multi-Arch attributes for binary packages.
   * Fix multiarch include header for sparc64. Closes: #714802, #715063.
Checksums-Sha1: 
 e65c6d4b47b58e1143b7d57c6af6fe84af62664d 2439 python2.7_2.7.5-8.dsc
 f96e19357688d114d63f3576017714c3d838243a 425497 python2.7_2.7.5-8.diff.gz
 ee74037e6a2895ec08480d3b820c18ef1f95027a 588446 
python2.7-examples_2.7.5-8_all.deb
 73e1b34eef887bfc0a2623c42fb78716060d7bcc 2492640 
libpython2.7-testsuite_2.7.5-8_all.deb
 93e22703992b573538b6813eb17918d080682b1d 251768 idle-python2.7_2.7.5-8_all.deb
 154a53c3431d4d78daa82591952362475f8773a2 4312242 python2.7-doc_2.7.5-8_all.deb
 9ac3b83e1c60948505e6b40b899ce7a327679dfa 229528 python2.7_2.7.5-8_amd64.deb
 58a88ee5d8f33771926de0dd02ed0f55130cac35 1862928 
libpython2.7-stdlib_2.7.5-8_amd64.deb
 18767a9573e685c79335d40e0b77978adf4843d1 1227542 
python2.7-minimal_2.7.5-8_amd64.deb
 4bcf1b77413758cb009a372e6a7201cd11b2194a 344988 
libpython2.7-minimal_2.7.5-8_amd64.deb
 16e3330941f43cdcddea18dd628c08c7fb13f490 1040798 libpython2.7_2.7.5-8_amd64.deb
 377389d7cffc2c84d895cfec2ce54147a20cd371 296530 python2.7-dev_2.7.5-8_amd64.deb
 2d9a2583156e917291f91988f656604365d41e6d 21974656 
libpython2.7-dev_2.7.5-8_amd64.deb
 6c4b4a5d8eac31cd599ab3f31ea11d76978edc30 6387174 
python2.7-dbg_2.7.5-8_amd64.deb
 8932f0b19f9b2fef11ec75cfbb1cce2e4b4a1d59 3887476 
libpython2.7-dbg_2.7.5-8_amd64.deb
Checksums-Sha256: 
 2323f6afd95d7b5b900f6c98d617bcc7253a54a06b7c9749ff32fa949b338400 2439 
python2.7_2.7.5-8.dsc
 cab74e66a27d64e0fcf773e12f0ba3e217c72ff8653cc9efbf4d86b8dbad8e57 425497 
python2.7_2.7.5-8.diff.gz
 2ecda1f94fc0c625f853f6dd808f069cd7e98fdd51b2fb7924a45fa6e4690ae1 588446 
python2.7-examples_2.7.5-8_all.deb
 4457ce0b9de6c0b8f1cb1b94729d4cdb168486335387cba17d25c258e4c1c11b 2492640 
libpython2.7-testsuite_2.7.5-8_all.deb
 7447e0f4ed28fbd1a49a3429ac94aa146852e802a754c4e735c689c8e4e23c48 251768 
idle-python2.7_2.7.5-8_all.deb
 47c061dea67893b3ae352df211c007b0d7a20789296f647ad0c63c40440a3e13 4312242 
python2.7-doc_2.7.5-8_all.deb
 a1b0ee97d5303525bdc9339e1e8a3f64faaf9f20a467f250754a67c8cbe20b6a 229528 
python2.7_2.7.5-8_amd64.deb
 4fc3e285634b3ef97a819b8a5917d84a0bce6ba779496c7132dc50cbb39858e3 1862928 
libpython2.7-stdlib_2.7.5-8_amd64.deb
 a091bdae1827a66710fe5263cb2c8d5cccb74b1a97a32a940fc55449ae4f2143 1227542 
python2.7-minimal_2.7.5-8_amd64.deb
 da6df8decd8877df9dfd525765036415acee7d304064b263f8cc49bcd2b6fe98 344988 
libpython2.7-minimal_2.7.5-8_amd64.deb
 49a174556ae7b86f240c7918a704ce448c18d77dfbd68afc00eea2c8cae10f7b 1040798 
libpython2.7_2.7.5-8_amd64.deb
 fa55c7cdc9ad989063e0f2f6869c677d20810aa25eba8bfc6a81c556fc7bda55 296530 
python2.7-dev_2.7.5-8_amd64.deb
 fd108327bf07e004a57a6a289223d5528ccd3fd95976311194559c5f76da1c07 21974656 
libpython2.7-dev_2.7.5-8_amd64.deb
 98ddf31c5a83b1f3ed4f3a79074def08307486c955c30a2258ae9521a1f89a96 6387174 
python2.7-dbg_2.7.5-8_amd64.deb
 987ae10599866c19414f08d7b265cecb3e076dc791af233f4f4d787d7d38e0f9 3887476 
libpython2.7-dbg_2.7.5-8_amd64.deb
Files: 
 e32762806e50c7c9e51c7c0d69914153 2439 python optional python2.7_2.7.5-8.dsc
 a1862a9a68578e45812b3340a07cdda7 425497 python optional 
python2.7_2.7.5-8.diff.gz
 6cba32ae9565823587aec473444a532d 588446 python optional

Accepted libmodule-cpanfile-perl 1.0002-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 19:06:31 +0200
Source: libmodule-cpanfile-perl
Binary: libmodule-cpanfile-perl
Architecture: source all
Version: 1.0002-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libmodule-cpanfile-perl - format for describing CPAN dependencies of Perl 
applications
Changes: 
 libmodule-cpanfile-perl (1.0002-1) unstable; urgency=low
 .
   * New upstream release.
   * Switch alternative (build) dependencies. Perl 5.18 has arrived in
 unstable.
Checksums-Sha1: 
 f0756f5e147919eac406f0fe90574d75d3a4bf5f 2185 
libmodule-cpanfile-perl_1.0002-1.dsc
 7582454553a3c3179fe60b3d990c1fba2e127cda 20292 
libmodule-cpanfile-perl_1.0002.orig.tar.gz
 aaadfeab11619d3ba8daed35acd093c6a530fa33 1881 
libmodule-cpanfile-perl_1.0002-1.debian.tar.gz
 44df79697f498d76670ab887d343832ae61afe80 27386 
libmodule-cpanfile-perl_1.0002-1_all.deb
Checksums-Sha256: 
 e125c13fe51c3f960c9f917e5989269e61435e94f2ce65c82cb8a2358ec4b973 2185 
libmodule-cpanfile-perl_1.0002-1.dsc
 3c4e9e2b870dd25e2615d844a1f9fa1f6f4d4635f90ea38fb24eb1217606fa24 20292 
libmodule-cpanfile-perl_1.0002.orig.tar.gz
 c4fb4b2a82ba3eee45ccf78b872ac86654d5b00c3611bf41bdcee54db6bb2b23 1881 
libmodule-cpanfile-perl_1.0002-1.debian.tar.gz
 bc6f5f6173fa8380d4c0e17f4492f60407d1ca545c5e5fba2dab1575f666 27386 
libmodule-cpanfile-perl_1.0002-1_all.deb
Files: 
 8f0be80f47adbe374f8f1d1660d2263a 2185 perl optional 
libmodule-cpanfile-perl_1.0002-1.dsc
 dbe3f4f198b17f41e5405ce2635a2f1e 20292 perl optional 
libmodule-cpanfile-perl_1.0002.orig.tar.gz
 967d55e0f155cbe7073cd807e3a1b11c 1881 perl optional 
libmodule-cpanfile-perl_1.0002-1.debian.tar.gz
 3f643df4b03fc4aec9bb3a92d4882933 27386 perl optional 
libmodule-cpanfile-perl_1.0002-1_all.deb

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

iQIcBAEBCAAGBQJSOIwoAAoJELs6aAGGSaoGusgP/3ukdj8jHav7lwwGZqhiNXW/
MPQfSaGbpslRlLeTKPT0fxQffG2Tyue8cBYFkN0mmXGEq1N+WrLjTUa82OjhDnv9
9fA9eOzd5WdwkOROKZRE9tzhheqSPMcLVCAE5UnIhu820fkAuz2qsUlQ6FoaSuce
NeZJsZFRNx8nHGunG0hr6ZuKEwV6pItTDGYmxe8sPU7IzQ2ZLa2zbHYjV/Sk/DtQ
JQitMkZa4E+5NrLwll+u0Eb+oV5y5JcJFXp80PuMtLHvAq5cmqnR8jGHIBcluIJn
kKOQXXLOOwBjoLakc6IrlYjrZCzt8eocMWtqvrLrToQ+VNrQlh4uMNKMhnWz3mJ4
Sr9ZcQEhzFmZQPq+8VnoJXXMAuBnVNkjtC6Urb2Zf0IIq7B9+ye6YAJO6AI41iFP
6jKlpa4JstG22DKE2sGKeYE6I4C8xOSkyKmWpw2bfRKSvciVZTLOdRaY2SpLLd7G
aax5dH8HwMsUryZS6E4D2rHT3aR5XAu77M+F2NyVS5w42Y4M7nNK3nNZr6AgAy4n
ocX44ftD77IyM2N1/o103aBZ0uWuj5t/+O2PkY/5ToHgB2TM0krEqsH3KzoIGOw+
YkqYy7kvUi8roFMnARc61vVcGPo5oi8s08hyHVkywWA/N7Hzb0vaFeqIVLUMIpz4
gkIfenTvhaO0oxrg2sqp
=49HB
-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/e1vlyuh-fz...@franck.debian.org



Accepted libparse-cpan-meta-perl 1.4407-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 19:14:04 +0200
Source: libparse-cpan-meta-perl
Binary: libparse-cpan-meta-perl
Architecture: source all
Version: 1.4407-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libparse-cpan-meta-perl - module to parse META.yml and other similar CPAN 
metadata files
Changes: 
 libparse-cpan-meta-perl (1.4407-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/rules: remove override for tests. AUTOMATED_TESTING doesn't
 exist anymore on the test suite.
   * Add new upstream copyright holder.
   * Switch order of alternative (build) dependencies now that Perl 5.18 is
 uploaded.
   * Drop build dependencies that are not needed anymore.
Checksums-Sha1: 
 0da3e291624bd041983f5e3507b1fc965aee67c8 2452 
libparse-cpan-meta-perl_1.4407-1.dsc
 507c9a07cb167f452763f5d4c07209b8edc95c2f 20979 
libparse-cpan-meta-perl_1.4407.orig.tar.gz
 56c70163c2f79932bc1e65465e9cfca848e721c7 3080 
libparse-cpan-meta-perl_1.4407-1.debian.tar.gz
 dc3a2cf17026d2df394fba3f0bbcd6960a9648b3 12466 
libparse-cpan-meta-perl_1.4407-1_all.deb
Checksums-Sha256: 
 f95b352554b614b7887c2ca89bacbc9f3d6afeab0e0dd4092af435563ee08855 2452 
libparse-cpan-meta-perl_1.4407-1.dsc
 d646d961af7ab66074bc956617e092be9934525f5915d33e82f394ff15a17ab5 20979 
libparse-cpan-meta-perl_1.4407.orig.tar.gz
 1e88c2f19e9a30e9b8a323a616fe7b20970141858ed88d4eb1dcc80c072158cc 3080 
libparse-cpan-meta-perl_1.4407-1.debian.tar.gz
 ce73e00292b98d8573b3bd6fbb2a34ad4a3ea7aeb089da7a095507636f3bfadf 12466 
libparse-cpan-meta-perl_1.4407-1_all.deb
Files: 
 b5871d2edbd6f64c2750d4b3fc3726b9 2452 perl optional 
libparse-cpan-meta-perl_1.4407-1.dsc
 57331a587d2b78211bc8db49439a6c35 20979 perl optional 
libparse-cpan-meta-perl_1.4407.orig.tar.gz
 349598eed7b6d40afeb08fc5060ace78 3080 perl optional 
libparse-cpan-meta-perl_1.4407-1.debian.tar.gz
 57825f897660ab799ec41b8c6ac466b7 12466 perl optional 
libparse-cpan-meta-perl_1.4407-1_all.deb

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

iQIcBAEBCAAGBQJSOI5hAAoJELs6aAGGSaoGLpYQAJnrVvO64nydKoWgE39nb9iR
JFl5nD1rPJhAYAlpZHW3zUwxgOoPtBc3fwtHvCblAkG9atIxBLnI2635Sb35cYdc
KMFxLRioSSLLMM3Wyo2DB5RqsGzvS/R7ltTb1hGnSmHOCOY3eSmC4wTHBTQTyVCW
g760twgKZIc2L64dZshjCBKWcJVEJyuS3r3XFclFgXxfYAui6xa8/dU88p6l3k93
bPMb9ub43oQU9TUviqIAYLFW98aUWhINmKKg9ALahxNpfS64J/5zAsupqaDQgvK5
dBFfHgUMWpBXfOzGeULF+Agd+VuENSOJ0/qkiwiJ4nRGO6N2wu2pcpBeJ9G0+Cgv
zDNE/u8XuHP9mG1vzBBD9xEly+a6j4volqCjT86ndgkkTFGGX95B1wGMTumYpaMk
HLhnrtNk4IP1F1oef6OQz7+VzdhKwugZEbCIFYhrlTfzePcu1w9oP6eYmQ4pYGiq
leBtJhRdqQnlhkk+rgo92AOiQ46XoqibTlGO/9auLCq033Saws66pXW34UuRCBhu
VqxdOMq4GRCQc+Df0NQ5owCc0NvYoi01Zw8p8KKM71pgTkZJ5YySPqK2QqgGXYhk
Rsuw9khFwPXNSgvHbfKYVZYQ36FRsdHM24ZUJ5ilCd8+W4f7uYRX4EwPWyXsBgyY
W03TBk1gRMNvKa5VcVOB
=koCC
-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/e1vlyun-ho...@franck.debian.org



Accepted libbio-asn1-entrezgene-perl 1.700-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 19:40:23 +0200
Source: libbio-asn1-entrezgene-perl
Binary: libbio-asn1-entrezgene-perl
Architecture: source all
Version: 1.700-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libbio-asn1-entrezgene-perl - parser for NCBI Entrez Gene and NCBI Sequence 
records
Changes: 
 libbio-asn1-entrezgene-perl (1.700-1) unstable; urgency=low
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ Axel Beckert ]
   * debian/copyright: migrate pre-1.0 format to 1.0 using cme fix dpkg-
 copyright
 .
   [ gregor herrmann ]
   * New upstream release.
   * Drop spelling patch, applied upstream.
   * Update years of upstream and packaging copyright.
   * Declare compliance with Debian Policy 3.9.4.
Checksums-Sha1: 
 3708f84b4b6a1099ad31f226a2242f9841e66b1c 2234 
libbio-asn1-entrezgene-perl_1.700-1.dsc
 124773ee99463aa10d63da5454e8ed1e1dd3f762 46969 
libbio-asn1-entrezgene-perl_1.700.orig.tar.gz
 d4b67f0cf53030b4ad7a9385ac70d1604262acda 2568 
libbio-asn1-entrezgene-perl_1.700-1.debian.tar.gz
 6027764dc1184f6b8b33d3f670bd031a3fe0642d 40894 
libbio-asn1-entrezgene-perl_1.700-1_all.deb
Checksums-Sha256: 
 1ddbeaf4ef1ea5c4a1b873b2bba1e753990a6c7f5ce705479a2c5a50c984224d 2234 
libbio-asn1-entrezgene-perl_1.700-1.dsc
 342ce97702e101da813e76221e15414be3fd608fc9059fcc36a141d939048dfb 46969 
libbio-asn1-entrezgene-perl_1.700.orig.tar.gz
 067c42f6db73e57d3ac09cfd4800815f9a046d3e3059dfe072b6c807fc00664e 2568 
libbio-asn1-entrezgene-perl_1.700-1.debian.tar.gz
 ebec56bed457ce08eae9a43ae3e5893d500f69dc77bc82167bdf9a719b729429 40894 
libbio-asn1-entrezgene-perl_1.700-1_all.deb
Files: 
 53fca3e00518857057cbd9a3509931a6 2234 perl optional 
libbio-asn1-entrezgene-perl_1.700-1.dsc
 1afa1e3d94cad304be2fc80a24c9d2c9 46969 perl optional 
libbio-asn1-entrezgene-perl_1.700.orig.tar.gz
 ecf5aeeec95d93d394fe52208250fe41 2568 perl optional 
libbio-asn1-entrezgene-perl_1.700-1.debian.tar.gz
 d8bc786c14db5645f18f46c9233c2f01 40894 perl optional 
libbio-asn1-entrezgene-perl_1.700-1_all.deb

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

iQIcBAEBCAAGBQJSOJSJAAoJELs6aAGGSaoG1j4P+QFn9jR2U5CkypiFo5F4FKVY
SKBTYtN5c+NcA9/32pD+kresfPIITUmtnjEl+x/x3/J/UhJXbqP/pt22YToFdQxE
KCGoMB+DAuU8Uh/ql/mUjvdLB1TnzDloT7Ql7vECU5tbfcdGEWhUWqCWqyO1tpm3
/KV9NLqlmOScQ84+py86awQmy3x32k3k7YnRRmfS+3TMh4pIL81dB4QUbHWr+v21
tjNo0AfVzYZU/YN/K5DPalr+2pzeL6aIdALxLrkEjdYYAY5RxbNhIbuTu5vOgnI9
T/9dpg0oACy7BwaCnKl/+5iEm/j4SOzN6PJA6a50EKgBCV30+QCWEPgXSudE7U78
wYZeYjYfJa9BjhLbI4RcMNU3YJxwjllIZ7vbrYXvZdeQn+d5xFvihI268X32mWIv
8ldfH8ISpHuZ0GUZGd2CiiuIyrY6LMgxKh2r/ENM104YV2dKqpAWtezzbZkhu+O3
KUGzYmysW61gJAekUdqpTDrqAbso0lX51vK3c3tnJJC/6t/3BauXPqnobKZLCzIx
6qFddovjc3fe201hI1UXZBTpxlTbxYsSqU4yQKExaywQHD+nQw6/wUbIgsKQA8Hj
FDMiJvOYXBG84roegiij7CC0RUNcP2y1GPCaKVXQhta3zO8ZeoRoQP5sBzkonMdT
EZkkQda7Mdz4js7qN3F0
=a1XG
-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/e1vlznj-0004m3...@franck.debian.org



Accepted libb-compiling-perl 0.04-1 (source amd64)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 19:35:37 +0200
Source: libb-compiling-perl
Binary: libb-compiling-perl
Architecture: source amd64
Version: 0.04-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libb-compiling-perl - Perl module for expose PL_compiling to perl
Changes: 
 libb-compiling-perl (0.04-1) unstable; urgency=low
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
 .
   [ gregor herrmann ]
   * New upstream release.
   * Update debian/copyright: Bump upstream and packaging copyright years.
 Drop information about removed files.
Checksums-Sha1: 
 bbe2058ea7afc2cfe3e8495808dfd96fa4e366e5 2082 libb-compiling-perl_0.04-1.dsc
 8f3f8271bb02cb7f69cf3dbff18245a459771ec2 10803 
libb-compiling-perl_0.04.orig.tar.gz
 0d579554288470b82fbb3577d96680cecd7f8943 1537 
libb-compiling-perl_0.04-1.debian.tar.gz
 2bc4c06048682d077d0238a98bf961c804f0c8e2 7422 
libb-compiling-perl_0.04-1_amd64.deb
Checksums-Sha256: 
 f29a37a00cbbff6ed978eadb4a3b98a05c0ea38f4cf62549728c32400a653edf 2082 
libb-compiling-perl_0.04-1.dsc
 ca52957675efc2cf5f636af9a71e26c0e6c8e8b5f97f1789f3a9171536d4bd8d 10803 
libb-compiling-perl_0.04.orig.tar.gz
 81c6fb35ecf81c294312843d46e63ae517201c6f5eb542c718476f5a3a82a1db 1537 
libb-compiling-perl_0.04-1.debian.tar.gz
 9c734c4af4b7367544807de8981f32be042ddd63ee731760b09ed72ecad3ca89 7422 
libb-compiling-perl_0.04-1_amd64.deb
Files: 
 4916d17ea615eb8adf4f6a4df19a37fd 2082 perl optional 
libb-compiling-perl_0.04-1.dsc
 fe70646c681b8efe13552f7a672e8799 10803 perl optional 
libb-compiling-perl_0.04.orig.tar.gz
 619105d6cf23aa927b3fa1184288217f 1537 perl optional 
libb-compiling-perl_0.04-1.debian.tar.gz
 73c74e1cbf3d8e9e2ad97f453132f184 7422 perl optional 
libb-compiling-perl_0.04-1_amd64.deb

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

iQIcBAEBCAAGBQJSOJMNAAoJELs6aAGGSaoGrhcP/jyiHGgBG8pjDL/iNdMqdWUk
SD68n9Oy+7LigkeeySnwHSZ3+Cvgnkjz6MNfqgrXrY39/JVzbjZd78LLNSPAHVNq
0OU3k1rMiLtZQQyxPZWEzWGh+GpVuy6Iw5SWEZnrJNLPHqwseCVBOIhX7YkwT+3K
5q0c4obn8ZHnp0Ihb2EX1+KzgPKMotyt9d5UZDze0gFDOxRKhqjSPhozOk8p1e6h
2na3g8ltVC6EAu6olI9AFyTBTCQiXK60TEAf4OOLXosyDMeGHA565M+ruNkYimyE
RIH5tPL43xRqU/4eCOd4WpJrRzeFxvIMv0fc6JS7QgrOg4L/e8XLHQDPTbUaoWAv
BaqzVfL7g5idwS+X73XXRYVhRbNHKPn3Kvumd65Le2pSVvlrhUhhnbBAfOxw3o5B
UbonOFTqEKQd1JgnN+kfJIHrbM2FGQ+lpksMoau/XQcwaTjU0ZDrMNIS4R01XJAl
TP3w8x2NCud1+gZxYB/rPmAFoOC20aBKAM/LXdZ0gJ+Az1ZR16VtkTO9EiMJdbIJ
0X8+lmhVnhugN/sXlWSAJGLMP6KxnK5UZrT5NRjHg3invG398k0tGlX+2jZ3NhXx
8bbq7GJVPaOWm0LkVxdJqLBGqOcJx/b0uPzJB7bTaN35sKrBsah/ScTRWOiP19Iu
58Z81qfzcxEUv1ee7DaV
=bKnQ
-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/e1vlznc-0004kd...@franck.debian.org



Accepted treeview 1.1.6.4+dfsg-1 (source all)

2013-09-17 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 18:00:00 +0200
Source: treeview
Binary: treeview
Architecture: source all
Version: 1.1.6.4+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 treeview   - Java re-implementation of Michael Eisen's TreeView
Changes: 
 treeview (1.1.6.4+dfsg-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 71249b4b800740fc6ad95f081d1cb8057e2c0973 1620 treeview_1.1.6.4+dfsg-1.dsc
 df157f6ea2f168f9e3336c3aa60fc1b928d22e42 1900637 
treeview_1.1.6.4+dfsg.orig.tar.gz
 674fd10dc51e35782e42b964bfc7088dccbcce03 9151 
treeview_1.1.6.4+dfsg-1.debian.tar.gz
 cd2432da735ddd05f7984ebdd163489651f3bf5a 2745468 
treeview_1.1.6.4+dfsg-1_all.deb
Checksums-Sha256: 
 e7d6127a07dbaea514ff5167b6819eea4338a10efeb3c6c7b5f415642eca224c 1620 
treeview_1.1.6.4+dfsg-1.dsc
 987ea0f7c47f6eb1533fde0a2043614cfa786364800e9818848f4f3969f8ba79 1900637 
treeview_1.1.6.4+dfsg.orig.tar.gz
 ab04cd1ef7ba7428f50051d083cdadf1f2ef5fa0f822fc54a578df57ad1569bc 9151 
treeview_1.1.6.4+dfsg-1.debian.tar.gz
 a9cdfc14f169311b0d4160d0ae73c0065ffb630c334799cba7c7da13e103d925 2745468 
treeview_1.1.6.4+dfsg-1_all.deb
Files: 
 5a5b4764caf1bd01796e0f14cfc9c093 1620 contrib/science optional 
treeview_1.1.6.4+dfsg-1.dsc
 01c0871bd45e8dbc5316dbcb72114a66 1900637 contrib/science optional 
treeview_1.1.6.4+dfsg.orig.tar.gz
 a0c996819686f0538ab73d5bcd132a7e 9151 contrib/science optional 
treeview_1.1.6.4+dfsg-1.debian.tar.gz
 2cc4ae703d9d14a6f6ed5c4e07c0a6fc 2745468 contrib/science optional 
treeview_1.1.6.4+dfsg-1_all.deb

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

iEYEARECAAYFAlI4lcgACgkQ02K2KlS5mJCLVwCffDFvIcY+0JJ42u1Oe45HBoVo
ah8Anj4fzmjlOe8zdRRcvzIYAkxGDaSA
=Cin7
-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/e1vlzcv-0006yl...@franck.debian.org



Accepted libcatalyst-action-rest-perl 1.12-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 19:54:50 +0200
Source: libcatalyst-action-rest-perl
Binary: libcatalyst-action-rest-perl
Architecture: source all
Version: 1.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libcatalyst-action-rest-perl - module for automatic REST method dispatching
Changes: 
 libcatalyst-action-rest-perl (1.12-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/rules: remove override_dh_builddeb. xz compression is the
 default now.
   * debian/control: move libhtml-parser-perl and libyaml-syck-perl to
 Recommends.
   * Add debian/NEWS entry about the changes regarding the YAML and HTML
 parsers.
Checksums-Sha1: 
 2c7e8e207acea74f27b600e363c0628486df3f34 2617 
libcatalyst-action-rest-perl_1.12-1.dsc
 de806f5ba1d3a170b7e77d76497be81b2c77fc55 65663 
libcatalyst-action-rest-perl_1.12.orig.tar.gz
 af3ecb25233e1957a9de8ed7762d14c7b112b0ef 4348 
libcatalyst-action-rest-perl_1.12-1.debian.tar.xz
 234a8d144467b4e998c0fef8a54c2294f867b740 65958 
libcatalyst-action-rest-perl_1.12-1_all.deb
Checksums-Sha256: 
 0b3f9aa909d678f563a86127245f6600a0a85961d260d39e7c2d9b27830a0936 2617 
libcatalyst-action-rest-perl_1.12-1.dsc
 1f854e3469bdd47e6948d1c46204304ca907672fffdb102a3f8de310adb1951a 65663 
libcatalyst-action-rest-perl_1.12.orig.tar.gz
 324e11ec5cd21d5f179b12715bfb8983a88fc44732d52e83c4894d7e67a89e4a 4348 
libcatalyst-action-rest-perl_1.12-1.debian.tar.xz
 43e251a700ef0e0338679d656c0edb060a4a34011e80a0a9af355414cc854745 65958 
libcatalyst-action-rest-perl_1.12-1_all.deb
Files: 
 9a93a07d667d71561660829bdf937407 2617 perl optional 
libcatalyst-action-rest-perl_1.12-1.dsc
 96e991a52f80026048301a45c68e 65663 perl optional 
libcatalyst-action-rest-perl_1.12.orig.tar.gz
 7582214e07d05c87a6fe044a120378ed 4348 perl optional 
libcatalyst-action-rest-perl_1.12-1.debian.tar.xz
 e69f14c3ea0e492178b5c9023453fac7 65958 perl optional 
libcatalyst-action-rest-perl_1.12-1_all.deb

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

iQIcBAEBCAAGBQJSOJekAAoJELs6aAGGSaoGHxoQAIqN62cM/CK8blTn1LhRRpz4
9X6Gw6mzNdczpm1UqRvFfVDLXCI/4V493aTmxhOTmch1uobvPa4eWRcLJWbBnePw
8PMBKlSsES45WNl3Ci0eLT3U5guPU2EyKd1Itnyhr60AgFJNOjoh6hzJ/qBdKprc
+DzF/ThcEovr6rU+1Dp8NDfoXtTdibWtN383EvsXYKlvbyjpjbIb3qDTz6UjvpuD
NFYqIPZvSZbNXo0RaZCQQrTItt8HzUD3n7brtxt9ZZ+nDnbn83pL490F9b8WWP5W
KIKLCev5n/+h839nuvRr5mFulmn4xbrhKvCu4QztyKiJgT5dpyR5tN5FPabaSl1/
7IFD7s+o853PGZFsrR8NcD03bsB5wuh/CoC0Y8c43c6M93Gy5ZC4vLuKcqPHus0V
p4SnHT3c9WJAztWAnBZqWmR6nJKQHCXEldmyeBTNCAudKIoOpox3hamjF8ODDWRs
d1llIYOWW5sj7X9/Mb4kJ33G9wX1rsumaXHZ+80DBylMX82uJh8v/X8vJA92jTEw
bF1mfuanLCCx7WD0oohI5S1QIh4IjjitS9MNK0DrV4ruMAD6PetJt10HgNyK88m5
sODdMXi3MVj9EjU8QEaAoV35A43whHp+cfh6+uPa5ranwVtMlgOKrv7tiag1fmmc
MKW2NL6hNbxADVWuuI1E
=ehdt
-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/e1vlzca-0006sa...@franck.debian.org



Accepted cpanminus 1.7001-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 19:18:45 +0200
Source: cpanminus
Binary: cpanminus
Architecture: source all
Version: 1.7001-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 cpanminus  - script to get, unpack, build and install modules from CPAN
Changes: 
 cpanminus (1.7001-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
   * Update runtime dependencies.
Checksums-Sha1: 
 836a5aa6095169ef130e6f8c8ce662cdf7f71f63 1982 cpanminus_1.7001-1.dsc
 cb14e078ae9addb6c8d9fb1e13ef4c032ce12d4d 281289 cpanminus_1.7001.orig.tar.gz
 bd1621ecbd5ee3e6cf01735adb58748b7a8493a2 4095 cpanminus_1.7001-1.debian.tar.gz
 3b5d1c2df7543356372e11b5bf02f7a20fa4f58c 202446 cpanminus_1.7001-1_all.deb
Checksums-Sha256: 
 b0cd0e0d0c9909454736c6b37545a52304b6db4425d25d1e935b94e7743231dd 1982 
cpanminus_1.7001-1.dsc
 6d5f99835bb3c9f7930ba26c42879d2e180993c16d9e6de2c0ca955c8eda84b9 281289 
cpanminus_1.7001.orig.tar.gz
 6b3d43b3d0744209481fab7dcbaa1177ab95824a39b8fb6cad9e399ed5b2e494 4095 
cpanminus_1.7001-1.debian.tar.gz
 f1025945321d83ab33346761afb270f0291a403d926e512f79f041a3313e780c 202446 
cpanminus_1.7001-1_all.deb
Files: 
 5f3df320661400ffca8ca5f2d20c3d78 1982 perl optional cpanminus_1.7001-1.dsc
 4655c5903e2885085262cf5f15ff5ae3 281289 perl optional 
cpanminus_1.7001.orig.tar.gz
 81c91e0c30daac5ea701dd1734b3e59f 4095 perl optional 
cpanminus_1.7001-1.debian.tar.gz
 c75cbe70cf0b42a50c63440bffc90595 202446 perl optional 
cpanminus_1.7001-1_all.deb

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

iQIcBAEBCAAGBQJSOI80AAoJELs6aAGGSaoGtlQP/A2Wu1K6KKCuI/35K1Y2vhDO
7p9db4m7nPhGpTvP5+o6wLG7NAgK25vXv3rQ84IIrGjufArgI6bHDV/ONzeBo6yK
kMMx/A1vETihHUBZafEsLnoN9dHWb9ndyB/789b83Pmdn1J1x50tqI+oeJoFldJG
3c25uLDoGQ6Y36GCiidm1Aq7jPx3KQS8wriv08m6K4Pzzu6sE0EpqT5refoxYg4v
ArxsM32T0ECEDHEr5eqr5ag9nTjreZ/CvMbXa0lMBgYjTf1TznZNPWbIfh4FpWBy
3/4O/PA6mZ2iPLWuJIKUgi1k4v5qpGvMwTCqXG/Cw4aynTxzfIKXeHvrTuEM2su3
7kDmxGdc9xNsrnJr5T/IBjydYQnIQPHPXHwM+cbQVq5bx+zBkX0KbJXLOKK/1SZu
PYLtOPZrTOpD5PCm3UzU82XLYT84HJ3TV79oM1GunS949niCG02r7++XYxJbhEVi
whpvhdcygx7PqKZsKgfvIkAV9itTq6jM1cj6s5ySefHBhRbnY8JqWYKCgQJeq7xV
STCUKq65NMGiL7AfpQ2T1myJ20cBiJu00eQGOlm+erY+J+fmL7Dj0in2WfCH/M25
iqRaGmkCc+d618qTy8VoVwAqu1tzbebJ64dgKoGsodcdB6VwLYH3LVWOq/p3jfD1
XuIYUZAV4b46y5pT6RCa
=4cT6
-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/e1vlz99-0002d1...@franck.debian.org



Accepted libnet-server-mail-perl 0.21-1 (source all)

2013-09-17 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 06:02:21 +0200
Source: libnet-server-mail-perl
Binary: libnet-server-mail-perl
Architecture: source all
Version: 0.21-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 libnet-server-mail-perl - versatile and extensible mail server framework
Changes: 
 libnet-server-mail-perl (0.21-1) unstable; urgency=low
 .
   * Imported Upstream version 0.21
Checksums-Sha1: 
 18e2b29e43a1d0ea882ba2706a16c521f25d81d2 2204 
libnet-server-mail-perl_0.21-1.dsc
 bb3e0f1671b861bfeb6cee9c98491efcea3f6b05 25485 
libnet-server-mail-perl_0.21.orig.tar.gz
 1ebaaa86fc16149f889a3781ab050a8c1fc9dded 2556 
libnet-server-mail-perl_0.21-1.debian.tar.gz
 96da31948bc9bfaa7e77988ede30c0c469fd307a 43198 
libnet-server-mail-perl_0.21-1_all.deb
Checksums-Sha256: 
 e917c0ce1a9eefe2829c5509f0bb20e615e7c85cc8f9fa375528c590f13cacae 2204 
libnet-server-mail-perl_0.21-1.dsc
 ac677a49172799612323b5288e107724a261fa328435a9bb0f9947c4a5f2d58f 25485 
libnet-server-mail-perl_0.21.orig.tar.gz
 6a1776e60aa304b7c2ef03653b0a0f93562b2133f80275da0376d6ae6959 2556 
libnet-server-mail-perl_0.21-1.debian.tar.gz
 30457e8543569ae87e9e7579f15a9505cd59d7d663db97ebbd9cb1aebfa017a1 43198 
libnet-server-mail-perl_0.21-1_all.deb
Files: 
 f9be9768f9a3a3a1cb1695723da7e933 2204 perl optional 
libnet-server-mail-perl_0.21-1.dsc
 09662edc27819970358e4c0f8570ff3d 25485 perl optional 
libnet-server-mail-perl_0.21.orig.tar.gz
 87a692e04d5c40985ce3e4e95bd13fa7 2556 perl optional 
libnet-server-mail-perl_0.21-1.debian.tar.gz
 2df265978d53d8d8b84600ae3feb9b52 43198 perl optional 
libnet-server-mail-perl_0.21-1_all.deb

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

iQIcBAEBCAAGBQJSOIFTAAoJELs6aAGGSaoGlckP/RVnKbOIJUa9l5evEzv8AhPa
ejCzU/mEh+EOD+pzVd3gC9nmvrkbrXoVp7rJIlq76GrjVBM2BoHqNi39lWwEiNRC
N4/K0tgRSiHIONpWRbotdXew31aePKhX4rVT/cfPw+IBavum4mvTOJ7pvuJxB67K
2A4HSVDlpYjn2ZvzR8DG58eruCbsxPKACyOo5/GpUgo/UUXjpNhJvAb1n2tNy9Fc
dZSzMOgJlQ6hPTkCrF4S96uekodFIY4qPwaOd2PXcQgYsL9m2K///RauRgWCuxiC
i7wFLM6SYgWaU0afIe5seu7YJSiRNFxv9ZBajqMtlsTvbvlCUmadZ1ADgB+5Fgp0
qoQoP1gkNpz4gEI6ovAKYt43xO3ddRlw64O2PBkNbDTrZETLvhqCyCXRbf5A4K8T
3BRKfqKeVzPsra3PVivpjrPoRCea5DPplLn58YQroQezEyCsWYJ/7XiVJnYSB6qM
yZnft7wXdH9/ejogWbX1ZPWLH+Q4LPRfBx6OvQbQRMiE3wqTwFNMuKUJAeouUaro
q0+k47UZa4Zk3+srrxl58fOsque8jrnyLY8JiCIHKfzC/rcZdwdi9SP1ldwzksWU
BAhh5PT8J546P8g+0jOZe+iV52xmmIqsGm+bWQk4CxYIAGQeew/A2gBhpdRVslwW
QKwTqatqE8oh13oBe5E0
=/aql
-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/e1vlydd-000284...@franck.debian.org



Accepted redis 2:2.6.16-2 (source amd64)

2013-09-17 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 19:08:01 +0100
Source: redis
Binary: redis-server redis-tools
Architecture: source amd64
Version: 2:2.6.16-2
Distribution: unstable
Urgency: low
Maintainer: Chris Lamb la...@debian.org
Changed-By: Chris Lamb la...@debian.org
Description: 
 redis-server - Persistent key-value database with network interface
 redis-tools - Persistent key-value database with network interface (client)
Closes: 723162
Changes: 
 redis (2:2.6.16-2) unstable; urgency=low
 .
   * Completely rework and refresh debian/copyright. (Closes: #723162)
   * Update website in debian/copyright.
   * Drop client library references from debian/copyright (dropped in
 2:1.1.90~beta-1).
   * Update main copyright year.
Checksums-Sha1: 
 4184b3a6030f5d33eb6fc0dd5df036ea3a0c7c8a 1221 redis_2.6.16-2.dsc
 acec11b70702ee3a1ef00d31f59e85a775f638b5 19991 redis_2.6.16-2.debian.tar.gz
 84748e5e51a998b329d6f86ba20909eaf31a3ad3 249774 redis-server_2.6.16-2_amd64.deb
 e2e0ddb143eade583cfc05c87eca1923b4ef462d 67452 redis-tools_2.6.16-2_amd64.deb
Checksums-Sha256: 
 c0ca56abb85f35d7b36b41384ac1fa0125f55622cd975d8a663eae4066bee9c3 1221 
redis_2.6.16-2.dsc
 6b0046b88ccf799381ddf81f33d5fdf4f0dcd0296c29c76ea9f93dac6313ff88 19991 
redis_2.6.16-2.debian.tar.gz
 fa13de88695a676f07d55fb3862d33e3a5f809d1cd2a92532d6883522a493779 249774 
redis-server_2.6.16-2_amd64.deb
 69b228ac3c366d6ca633e78766b8d730f87923c4807843a6b6251703e9aa5b08 67452 
redis-tools_2.6.16-2_amd64.deb
Files: 
 1dd758e9d871b0154331eff8020fd64b 1221 database optional redis_2.6.16-2.dsc
 bb3bca0ba11ba2483dfdf7f220e1a9d5 19991 database optional 
redis_2.6.16-2.debian.tar.gz
 15abebe5b3f5624ce4983c409abfd8ea 249774 database optional 
redis-server_2.6.16-2_amd64.deb
 724c6f713208abd14c6f34d9d3dc80b4 67452 database optional 
redis-tools_2.6.16-2_amd64.deb

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

iEYEARECAAYFAlI4msUACgkQ5/8uW2NPmiA9xQCgp/TAbB0cor8mKVafSu0YUcT6
4EkAnim4Q1nUphtHHXV33zo8kIEuahfP
=f5eD
-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/e1vlzri-av...@franck.debian.org



Accepted libarray-iterator-perl 0.09-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 19:30:53 +0200
Source: libarray-iterator-perl
Binary: libarray-iterator-perl
Architecture: source all
Version: 0.09-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libarray-iterator-perl - simple class to provide iterators over Perl arrays
Changes: 
 libarray-iterator-perl (0.09-1) unstable; urgency=low
 .
   * Team upload
   * New upstream release.
   * Update patches. Drop fix-whatis-entry (fixed upstream), refresh
 (offset) and forward fix-spelling.
   * Stop installing README. Text version of the POD.
   * Update years of upstream copyright.
   * Declare compliance with Debian Policy 3.9.4.
Checksums-Sha1: 
 960c1f6f4607d239d512053299672fe2283a95d0 2129 libarray-iterator-perl_0.09-1.dsc
 24bc1cf89eef46526a1cc9b4670416e8ad2387d7 21764 
libarray-iterator-perl_0.09.orig.tar.gz
 248615366de9c20e82de3940275a46675e05ebb9 2507 
libarray-iterator-perl_0.09-1.debian.tar.gz
 78e51590a63624c0ca5c1e8c9ac41eb88d9b5451 26102 
libarray-iterator-perl_0.09-1_all.deb
Checksums-Sha256: 
 ffe6934bd12203feeb134571d4a8d67bd6e99ff8b86359b4f679098cc8b6eb4a 2129 
libarray-iterator-perl_0.09-1.dsc
 c05985ca238f7d3611da9f64bc3b91cffd81fefaeea0403c5492a2a39edbd2a1 21764 
libarray-iterator-perl_0.09.orig.tar.gz
 1c16e50a47a295551273f56f3521325845c453fa17b9ffc515c9ffd4a343394b 2507 
libarray-iterator-perl_0.09-1.debian.tar.gz
 d12dc135f8c9307cd87110b37300159ded6ab4c975e94b327a8319f25167dacc 26102 
libarray-iterator-perl_0.09-1_all.deb
Files: 
 1371c8bea6c4994ae8551b071e530d1d 2129 perl optional 
libarray-iterator-perl_0.09-1.dsc
 c825a67b1bbd12a6ce4e6c94b3777ee4 21764 perl optional 
libarray-iterator-perl_0.09.orig.tar.gz
 e79e0af7382b0e7ac2df5664c33b6428 2507 perl optional 
libarray-iterator-perl_0.09-1.debian.tar.gz
 ed22f5b5ff13ecd319692db78307f1e7 26102 perl optional 
libarray-iterator-perl_0.09-1_all.deb

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

iQIcBAEBCAAGBQJSOJHvAAoJELs6aAGGSaoGOdQQAMZz9aR7HKWmQUCw8DaCDTH/
g6VLUFOhp2nTj6T9nXmim7JqjEHlktDMARtHiHCHKNfJvPrUyGKqBVa85SQ/bypJ
WqI8cg92om1LLKRLPvZ9FYkmn2XggPoKr7QZrS0vMey6oUYZOSVVRwlYNocrlnzH
Hap4JkK3zZyEomq2yVhLxwgxWRqYCniTbCDbr5/MmPxIFMJGozLXpwjuqX8fmuNP
T3f6J75ULpKdnxORUFrmscMjUHGHHqkQ5lDBrX94/U3j6CcTgUkgXXEN9XEj8TMg
S3AFHJpDAv4ZAYzbvoNUG45MghNpvTqLURpKWs1b/fK5seR2AbgIpC/iGC5++AuN
rX9HkzE+TBmBVoy98/Sd8qjZbYB328ERTuPPSSjMcYDCxJe3j+RJPClqDDGqTJe9
Lz5GEoFtDmSrw2ilygNlmPE1zQjFNudu7bEPsFOLUkGQ2yNXmt1qrX1TIM5DDHir
R7VjH3OIwp1fTVIAIyDTE0mRHwFs/nUzMmFIhzVxkP7dlPXCbg9ohC4pHESLA0K+
KaRrtr1L/4Rn2NadLcCFPCITdxHk5/zbaN/VtHZvBN/sv0gWHKvd08S8Al3nUKJC
0ja8MOuZmwd7Arain4RLFzdW56QQ5KnFIvi17s0zVA6vRL8uKp3nab8yn1x+nQGq
4oMUH+l+8tzghtPl59ox
=jHvr
-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/e1vlz9l-0002fi...@franck.debian.org



Accepted haskell-hspec 1.7.2.1-1 (source all)

2013-09-17 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2013 12:20:08 -0400
Source: haskell-hspec
Binary: libghc-hspec-dev libghc-hspec-prof libghc-hspec-doc
Architecture: source all
Version: 1.7.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-hspec-dev - behavior-driven development for Haskell${haskell:ShortBlurb}
 libghc-hspec-doc - behavior-driven development for Haskell${haskell:ShortBlurb}
 libghc-hspec-prof - behavior-driven development for 
Haskell${haskell:ShortBlurb}
Changes: 
 haskell-hspec (1.7.2.1-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 c4614c579a0befa23e374cb9b692227b64e8e61d 2929 haskell-hspec_1.7.2.1-1.dsc
 cddc2ec0bde504377da792b74aa2f06a3b62be7d 34555 
haskell-hspec_1.7.2.1.orig.tar.gz
 bb1d69059b9f682db8a616c74f2de5be09221f59 2604 
haskell-hspec_1.7.2.1-1.debian.tar.gz
 a24dd07cc5c7575f4ee36f1dc16a07677e2482ef 87724 
libghc-hspec-doc_1.7.2.1-1_all.deb
Checksums-Sha256: 
 6b2c31a0efd0f7f3af08e3164bdac4a86d0ac7ac8d122ba502cd826bf5cb93ea 2929 
haskell-hspec_1.7.2.1-1.dsc
 730142cc746d5c76e719630b1274d051b1533808222ed9f79a59cc1ecdf3708a 34555 
haskell-hspec_1.7.2.1.orig.tar.gz
 314b348ecceff0b61bab1863a56fbf4db41300c40d0740f1e0ca63070ac1f5e8 2604 
haskell-hspec_1.7.2.1-1.debian.tar.gz
 a9b9aad86d23a35e98eb55388edb1628872a768ac21e389ccf58722c5a4c432d 87724 
libghc-hspec-doc_1.7.2.1-1_all.deb
Files: 
 6aa98a7f1a63be0c5e97473b13a06032 2929 haskell extra haskell-hspec_1.7.2.1-1.dsc
 a7fc78617273b36a50f8f2f5a80c95ab 34555 haskell extra 
haskell-hspec_1.7.2.1.orig.tar.gz
 7a254b732cfe429f29af9a8a4f1c3418 2604 haskell extra 
haskell-hspec_1.7.2.1-1.debian.tar.gz
 16a0754497e9d7f3559a3a3a4e5be60a 87724 doc extra 
libghc-hspec-doc_1.7.2.1-1_all.deb

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

iQIcBAEBCgAGBQJSOIJdAAoJEFWSMx4ZnTioESIQAI2MHd9VXD6PczyjwaaYN56t
oHM9XXqwFwmCu4h5SxRnH8AmxLA2lX4bso/8E3BS3h4LRdKloEFm83+1617rYATr
9Xp2fYmU+KrpyJ+sw0pSkgSggYIEg4kz3DjfOtu/D0TYrDVBInOCBmpM2E/ktvhw
2AcB6oi4x2G42too2e8Aw+Vf72i/OIF5O6zC362dMXMzHXYgXnIOW9v5qESn5lhT
9zfAy8OLUtfMP+tnVxOv8xZt15vhFiRpQpLdhV28AVWSEynnWkfOVwI6iK/4xaKB
bOwQ5wNwaVpPNmYpg7MkX7LA9Z5lwYnqdnMRsPa4gpcup11J2tsG5EsRgcVtRXs8
XfgkOtBhQTHpN57MHExABmZEX05amxUIEABSxIgyEYhTL/PPvh+2HhTAopy5nETt
1FmiOf1PV+IEv/SCwrBj2Z6RCpT8m3bNSgXWjMwsy3a49e4wcpgIoqCaAAczC2Ov
vYmZpssDfHDmMf8TXjWwQGo9fdECI83jLxKRVGHrse/j2ltgVblSEJ68Rmmat2sU
EvkbuCp/wll21iNdVn2EbkGkHob8zjLl+E26IpM6nkwz5RcFKiFLDg08UXn0YPVV
F6C5BDhdSAJU8Nx6pTiyjGkw6hfHvbJ6djI7rHrwmU9cGqkmEFQ5s934Sp4grQ4w
nsLv0Ydvviaeusf+jZmP
=z1kK
-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/e1vlyde-0001pq...@franck.debian.org



Accepted haskell-unix-time 0.2.0-1 (source all)

2013-09-17 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2013 12:00:16 -0400
Source: haskell-unix-time
Binary: libghc-unix-time-dev libghc-unix-time-prof libghc-unix-time-doc
Architecture: source all
Version: 0.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-unix-time-dev - Unix time parser/formatter and 
utilities${haskell:ShortBlurb}
 libghc-unix-time-doc - Unix time parser/formatter and 
utilities${haskell:ShortBlurb}
 libghc-unix-time-prof - Unix time parser/formatter and 
utilities${haskell:ShortBlurb}
Changes: 
 haskell-unix-time (0.2.0-1) unstable; urgency=low
 .
   * New upstream version.
   * Enable tests on all architectures now that they have changed.
Checksums-Sha1: 
 34a89c1a73935ae7d10bf10131e6e0f5e6fadace 2184 haskell-unix-time_0.2.0-1.dsc
 b43d39c57338dbc601709cdd7a46c461a515fcb6 35181 
haskell-unix-time_0.2.0.orig.tar.gz
 2383c29c7f7a33519c39dac9396664cb434025e0 2466 
haskell-unix-time_0.2.0-1.debian.tar.gz
 49a5c5a362bb0a06b9bd23e71843aa1e053b92bd 38904 
libghc-unix-time-doc_0.2.0-1_all.deb
Checksums-Sha256: 
 50065e424a59b4df54c6c767400907fe6c47ca7a617ce3f53bfc4f7755801122 2184 
haskell-unix-time_0.2.0-1.dsc
 48764d3106c58d5bb4b81135bc1a5af1017fa4521fc8c0eda5a3adcc4c84acbe 35181 
haskell-unix-time_0.2.0.orig.tar.gz
 4d8217e9702ba04e9560d0abe2a9e2393f1df6413a9ea90b1109314766944ff0 2466 
haskell-unix-time_0.2.0-1.debian.tar.gz
 fb99afd3dd162148c4e93074d67f2669bcdeb79cc976bc37d5625cb877d1ce81 38904 
libghc-unix-time-doc_0.2.0-1_all.deb
Files: 
 a77c524dc1113573b8910e850028a95e 2184 haskell extra 
haskell-unix-time_0.2.0-1.dsc
 cb3378bfbe55a4bb315e923d6e130c02 35181 haskell extra 
haskell-unix-time_0.2.0.orig.tar.gz
 407bd11b3f60b371693430d4457781a3 2466 haskell extra 
haskell-unix-time_0.2.0-1.debian.tar.gz
 b94121903d0b22a1e317596d91100b84 38904 doc extra 
libghc-unix-time-doc_0.2.0-1_all.deb

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

iQIcBAEBCgAGBQJSOIMiAAoJEFWSMx4ZnTioF64P/1S61I2Np7kpEi5uYJkjqP91
Y+N7dpHrcTjtM2+HoY/kY24jQr3xR4fP1BEZOZOddcWGXw8Pi3Y55OSQxHVU+zlD
KTEu4rxZsy5ZWBcZXBAVV8iKGd2p9KuOJ67uUObXKbxHD9N6E2Xw/ZcmqvRR/ffr
Fp7e8laWQioAtBVi7ERr15S3VMdNKdvsLcz5uEP4zSyY+oQxWZpLUFku44CEpaOT
DGVgiV5Dzo0fTjXj49nnAfz/NuZcepQ3pwH1SCqESAUi6rT8pZJVOTwN8fxTICDi
n1pfhgnBsC52NxpFa8F0C9r1IEdZLYyN/JqD8lNPpVPDFumyNQcuiVRrRq+CTuUK
egjcETirX3W1bllKNv22poD1ivg6Y09T5FsZdjVGOy3iI0mFCBymg0UbleQk/Z3c
x2aubBbdGY3Y3PJPcoZrZlioGpveFeVqttDZOCEe9zN9A+fRINF0yZiYuAKTzWAS
ywV1mWZOIDXQN4yD/y1hYlBQFRv1rQISsrFUsRcHYAo7uWLc5Jz9W8qq7IDzXdM9
Oo2DRLc7Hl8u3WoT3jAi3AKjTZQjwkFWa9fFImnrsTu4ONGAfWIfMvAQLelMwo7F
CdHE9bR8QeLBZSjRuAuHCRwykI3QsKXmDePa2m/jehRMD2/hgPFFFVh3NTD6nGwm
8sGguxFclcLlDzV/Ur4V
=2cT6
-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/e1vlydn-0001s1...@franck.debian.org



Accepted liblingua-identify-perl 0.56-1 (source all)

2013-09-17 Thread Nuno Carvalho
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 15:06:18 +0100
Source: liblingua-identify-perl
Binary: liblingua-identify-perl
Architecture: source all
Version: 0.56-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Nuno Carvalho sm...@cpan.org
Description: 
 liblingua-identify-perl - language identification module for perl
Changes: 
 liblingua-identify-perl (0.56-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
Checksums-Sha1: 
 dfd43da8272bf65b1ca699c76ca4feb9814113ba 2288 
liblingua-identify-perl_0.56-1.dsc
 669cf01665f13e3f7f11928aa3a1d42f30cd560e 181032 
liblingua-identify-perl_0.56.orig.tar.gz
 55c4c7c8749fefac125fa2b19dbe4f2018c3390a 1847 
liblingua-identify-perl_0.56-1.debian.tar.gz
 335bc1e2be916f2daf2cd608424efab726cd2df0 133266 
liblingua-identify-perl_0.56-1_all.deb
Checksums-Sha256: 
 df7f7deaf41dbaf5054eb3972bba0f8f2c60852b4f6b527fbbb2d75596b47b4d 2288 
liblingua-identify-perl_0.56-1.dsc
 5a47cdb785e6f1f94adf501369365ad35181f0dc199b66dd42aac169848668a5 181032 
liblingua-identify-perl_0.56.orig.tar.gz
 6d93fad2b007db5a52865f8b3e1685b21a793a61d5efe18dd45f54c310e65800 1847 
liblingua-identify-perl_0.56-1.debian.tar.gz
 7c0646429c4ef4d14548281dd95a0399be1f53fae073b8c4cca7527c76559f1b 133266 
liblingua-identify-perl_0.56-1_all.deb
Files: 
 b48187908c96b0361e1db150a0966e61 2288 perl optional 
liblingua-identify-perl_0.56-1.dsc
 e6aa95abf743ed3ec6b5b5a0b8e48a77 181032 perl optional 
liblingua-identify-perl_0.56.orig.tar.gz
 06f0a7e97fe244bdf2eaf8f61e776a27 1847 perl optional 
liblingua-identify-perl_0.56-1.debian.tar.gz
 476dc04e8aa0dc24569d78aaacfbbe1d 133266 perl optional 
liblingua-identify-perl_0.56-1_all.deb

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

iQIcBAEBCAAGBQJSOIHhAAoJELs6aAGGSaoGW24P+wYYtXKsK2cuEojb/VorB9ZK
3yRTbrO1ZmH1KNI+4uRMwBGF5IMbjZPf4rsdp9u2hNfUVUSal7+UvadYYwfViEt+
jaEYeoqH7+Cg5ybdOPGgQfbH82UssehL8y7MS6dK5PFGVMpM1OsXoEm5pQ+f9niQ
+nft3VjY9qdHO2aGHC9XNwoRB9WzBx0X0ShN7yrbMykZnnYEJZhPH5b5vpTD8ZzN
W4yFC/JMj54mhm678HUi2O2ty6Sc2qXIP1WBSoIWOO6RmQHlW9/oIe1tsl9S0Pel
Sm1fgVN/xOeudqsp+A6VpUcT0OTfWIgcEy3KF/wk/lMrunL5WbsGcMDUq65wpwgA
1qk5D10n307IAMcbslZivKU5fzbTrNgVCd0mKvG0lhADYVJvaTaukKA+uSLI8iYn
PnCr0AtpgvZsbRvaTH1WV3Ph3CQ8ZSsuUfQz3b0tCTfdSkd80UHQn0Pur0XCvEzD
kYKnPVynCPxbz1hiiemm8dcffl/hdg49Cv8Z26Yyu0S7XdVOSfpy5DHJg8oVr/zw
f3GdP/lguJcQeqFdEuaUI8d/EDhxYcKD0qLHnjoyhojeIpDfqF/GVrI0yrFIp/40
ciQa0QIMzudsJUnchPmfDrwgRdEU4GJm+Yd9fDDvFDK4k7otwuEKTnnb/d7uED9v
7G67lqAk/lv/cTMO+MVJ
=ar8N
-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/e1vlydw-0001yt...@franck.debian.org



Accepted libgetopt-long-descriptive-perl 0.094-1 (source all)

2013-09-17 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2013 19:20:17 +0200
Source: libgetopt-long-descriptive-perl
Binary: libgetopt-long-descriptive-perl
Architecture: source all
Version: 0.094-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libgetopt-long-descriptive-perl - module that handles command-line arguments 
with usage text
Changes: 
 libgetopt-long-descriptive-perl (0.094-1) unstable; urgency=low
 .
   * Imported Upstream version 0.094
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
   * Add build dependency for Capture::Tiny.
 Add Build-Depends-Indep on libcapture-tiny-perl for Capture::Tiny used
 in the testsuite.
   * Update copyright years for debian/* packaging files
Checksums-Sha1: 
 a8b142a4d87cac97135499d0237c68582d3e616c 2492 
libgetopt-long-descriptive-perl_0.094-1.dsc
 7f605552e1eb9b2106ec545e0e12c3b915efbf00 23884 
libgetopt-long-descriptive-perl_0.094.orig.tar.gz
 81fd63b1c477ee4eeeddd1c65a1a5980317e248c 2995 
libgetopt-long-descriptive-perl_0.094-1.debian.tar.gz
 5b2c675d40961b2d3d0bedaf77ff338810a07708 25138 
libgetopt-long-descriptive-perl_0.094-1_all.deb
Checksums-Sha256: 
 75c4f8288d9461c96749265fa34a9b52cb0a876b2f03a95ddd4e74c0fffb5077 2492 
libgetopt-long-descriptive-perl_0.094-1.dsc
 ef55fea05b072081c03451758cc3066b9a56b614e9f5334c17db667ef9e32b82 23884 
libgetopt-long-descriptive-perl_0.094.orig.tar.gz
 c793f8cfbd41ee13da179d0e6c3e4ee9df52d2f8e9d34e12b1c28ad948bbe872 2995 
libgetopt-long-descriptive-perl_0.094-1.debian.tar.gz
 096651a358e7fb7bd4b3971cf76a7e8627b368c2f29ae228338661e85bcb8726 25138 
libgetopt-long-descriptive-perl_0.094-1_all.deb
Files: 
 0f7c200d58e073d02a5582db15dfc9a8 2492 perl optional 
libgetopt-long-descriptive-perl_0.094-1.dsc
 767891549379e82fe9376320b565e181 23884 perl optional 
libgetopt-long-descriptive-perl_0.094.orig.tar.gz
 4af7ca6fa9fc785b729e6b81cb00b4bc 2995 perl optional 
libgetopt-long-descriptive-perl_0.094-1.debian.tar.gz
 ebfcaf51ca8ead22c6dd65e7f825c395 25138 perl optional 
libgetopt-long-descriptive-perl_0.094-1_all.deb

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

iQIcBAEBCgAGBQJSOI/uAAoJEHidbwV/2GP+Y7kQAJ7p8stf6B3S1bMw7CKNDWEc
UD2EXpgokY80sX7hP3dEhbmKJRGv8/aw8IhLCqu4ehuQxSSRSevVpMnHWJenUTXe
o+aaRYMCWkJrjvASmSezcC8+CSCcrfgC3dfz39Qxi7noQoo1Rtb548BPTk8RGYvn
zcvmBNuU0ah9VfQTRr86GiMxqN0vJGhXRJPdQTIV3ggJLgxG91wviCfdW8W3XAf/
vGIy246hfqRIGoXWDYQxoTgZLcjzrvuPoboeVRkDHFQLl18rknBGF0s2RYwGbLQ9
rwn7R4H7T9rHNS+aqIpPczsxDfM1iy3ZrPHY/SbWyIDPc6mF7C4fHhl1UFeELwpr
r0ApYBc5wfCbYGmb9Fpy/XTTMYNpfTmEPAiCR+PDeh1Xstq+FyZTlAoZx/E82PvD
yhXGnqeQ+KNaF0KGbJxnyUfiD0dZ7SAgQJ7Tn7wygtYxqI/6mJu8QT3P55yJ24mk
JKRFMYEB+9G3jkcCUkZ+EfaHvOu/+BmJTG1VJaH7eZEXxwwo/YKL3DK/IQl3Vtoq
WTBb71jQ5H3FOY5qrp8FzEznLDJo3DfRRaRpefwCdf5SkilSiZCyeAYk0/RRB2pZ
uDJMMh6u7Q0wgm2xztifuXCgzk97F+a0fPJ8t8QF3+K/UWcRfaLFNTRdIp9FjcqY
EX2yWQdIhDqOjzRNxgYh
=LyPp
-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/e1vlz9s-0002ha...@franck.debian.org



Accepted haskell-fast-logger 0.3.3-1 (source all)

2013-09-17 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2013 12:29:58 -0400
Source: haskell-fast-logger
Binary: libghc-fast-logger-dev libghc-fast-logger-prof libghc-fast-logger-doc
Architecture: source all
Version: 0.3.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-fast-logger-dev - a fast logging system${haskell:ShortBlurb}
 libghc-fast-logger-doc - a fast logging system${haskell:ShortBlurb}
 libghc-fast-logger-prof - a fast logging system${haskell:ShortBlurb}
Changes: 
 haskell-fast-logger (0.3.3-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 263bc62d46d5ded9513895f530f6ea8b991ad9dc 2590 haskell-fast-logger_0.3.3-1.dsc
 1af9edfdb258872ee937d9e1047e21dc788d2f43 4612 
haskell-fast-logger_0.3.3.orig.tar.gz
 d7ed0bd69dc815b520b0c550bed98506c8b741a0 2500 
haskell-fast-logger_0.3.3-1.debian.tar.gz
 84ea02ca8ee797466aab891d3aa0f581bdb538cc 39278 
libghc-fast-logger-doc_0.3.3-1_all.deb
Checksums-Sha256: 
 6dffc256d9a31398cdad1ad7354c229dc49004f8b3c0891f487c5f7f8d001efa 2590 
haskell-fast-logger_0.3.3-1.dsc
 3017bb11d56d112d94330568ae0128bd0b1ceb9386032029bbad5921936d4979 4612 
haskell-fast-logger_0.3.3.orig.tar.gz
 8a210d721ecd6e9dfc85a0df5d93cce23e1d5a01e1e3d287cb3f044dcf90bb25 2500 
haskell-fast-logger_0.3.3-1.debian.tar.gz
 279a9c58b2a2da5e31a637695f6f8befbd89c8e82937be629a23808f23e95e24 39278 
libghc-fast-logger-doc_0.3.3-1_all.deb
Files: 
 a9cede5da76723743917bd4e862fd758 2590 haskell extra 
haskell-fast-logger_0.3.3-1.dsc
 ad579a092c5b2cc15979d276d08a797f 4612 haskell extra 
haskell-fast-logger_0.3.3.orig.tar.gz
 0bf883478ff2f9ddc90b63e531b2dd05 2500 haskell extra 
haskell-fast-logger_0.3.3-1.debian.tar.gz
 bf66e8589fd987f6a6210237c5afd62e 39278 doc extra 
libghc-fast-logger-doc_0.3.3-1_all.deb

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

iQIcBAEBCgAGBQJSOIPlAAoJEFWSMx4ZnTioHt8P/i/C1EMXO0ZHS3pKIvXaxNgU
doyH+swOOtNbvr4s7kDvzSgprVacqZ4R/eH5douLgsTrIhJotVXsxU7sjx8oHyLE
N5ji5lYSSOxjwmOTQMqeRRKowTpz/FvwfvyeaJCLMvL8iujgyxXsS6nQUUbXNoWI
sOAOgmsYlyrbPm0hzW1Ds0otM9UZGKAQKUXnZnp7klKagnWHCW0Os2yGNFtu7R5m
W8wLULRRb3Uo9NVLHmBA83/fvMwXDwGEDvxr+dk++A+eMlTFUoVzEdIRJy44CNTJ
CWwPeO18J/TtNsi7aUbpMXpdE5+H3nS2ZO2yifwwNG7rrGHbVfhiVLmuplT9O9m7
jYAGKoHyT3TubSMWcY4RCKtf98s6G6W/oPocLO3riUCKvBoo7STV3UThxpBudaEl
yOY0d0r1hhQjvHnEVuVaGSo6K7elmsIwsTd3vyUU9MeBHxyoCXgwtGBP7kmsjN34
rKrqJqfuEq2D3FzluzhFBLo6S1ZyGYjuIVvVZNpftP0RUvP7LAJhln5sDFY2GhBv
HXxkGKqu90fp/MDQd/hM/xhc/YTVHadawuN1x1C67wwHBOgAGZR1aZHSxBy7lru5
HnKmsiHSMed1+wGevEtAutNqHps36gA6AfFvznlKISTzfvLFRKf2uTbuDR9hk57P
SOYJ5w3brh0p7Df9eTtO
=QW27
-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/e1vlyd7-0001o0...@franck.debian.org



Accepted haskell-yesod-static 1.2.0.1-1 (source all amd64)

2013-09-17 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2013 11:46:41 -0400
Source: haskell-yesod-static
Binary: libghc-yesod-static-dev libghc-yesod-static-prof libghc-yesod-static-doc
Architecture: source all amd64
Version: 1.2.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-yesod-static-dev - Static file serving subsite for Yesod Web 
Framework.${haskell:Sho
 libghc-yesod-static-doc - Static file serving subsite for Yesod Web 
Framework${haskell:Shor
 libghc-yesod-static-prof - Static file serving subsite for Yesod Web 
Framework${haskell:Shor
Changes: 
 haskell-yesod-static (1.2.0.1-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 b01998f3c956a62f528c219e941d35443f95acf4 3991 
haskell-yesod-static_1.2.0.1-1.dsc
 dfd63b1107a040e4a08d252830243ce114c4ca96 8509 
haskell-yesod-static_1.2.0.1.orig.tar.gz
 367ea8127d4396ed16cb9d6e9eaceed3681fdc7b 2970 
haskell-yesod-static_1.2.0.1-1.debian.tar.gz
 5a951cf2fb62b5a06ce7f43cbcac4557c48d165c 44748 
libghc-yesod-static-doc_1.2.0.1-1_all.deb
 7da35dc321888b62803ab9648953b3e7d165b399 73930 
libghc-yesod-static-dev_1.2.0.1-1_amd64.deb
 21c6971b48e5aac3e317e966e984766414fe28b8 89114 
libghc-yesod-static-prof_1.2.0.1-1_amd64.deb
Checksums-Sha256: 
 b5176b097280e82c00631f5f8ebb2aa7946a2e952dfe645f85742bc6dc749cb6 3991 
haskell-yesod-static_1.2.0.1-1.dsc
 25ea8742c68d1b1d9f2ee8497c3f9863e9a1cc98d1b54f681e861a996a9040c6 8509 
haskell-yesod-static_1.2.0.1.orig.tar.gz
 9212a6543b3043ba6f3758a4c269f5d6bb526255e9f4d5735e2121e9c033bc11 2970 
haskell-yesod-static_1.2.0.1-1.debian.tar.gz
 59f0472355ab92b3a3c6b359b39cfacf76568297329cb9573e3756340510f4a8 44748 
libghc-yesod-static-doc_1.2.0.1-1_all.deb
 2d2039f569b4c04af5b85dd542cadfc63ef22f3ce34b764807600db767e7dbe7 73930 
libghc-yesod-static-dev_1.2.0.1-1_amd64.deb
 b1cb7addce80e14ff59194dd8220f12e670a7c845af2c123e8a79871b28b4896 89114 
libghc-yesod-static-prof_1.2.0.1-1_amd64.deb
Files: 
 8792bb54426ab4f4eb869217eabbf995 3991 haskell extra 
haskell-yesod-static_1.2.0.1-1.dsc
 bba5e1182bc3acaa712d999fbac4e746 8509 haskell extra 
haskell-yesod-static_1.2.0.1.orig.tar.gz
 aa94e7dfbe8e95fb30e5ae91ab980a5a 2970 haskell extra 
haskell-yesod-static_1.2.0.1-1.debian.tar.gz
 91388d7fc197bcfed2c9bed4aa637199 44748 doc extra 
libghc-yesod-static-doc_1.2.0.1-1_all.deb
 dad169f65942b302b150e55b375c7bf7 73930 haskell extra 
libghc-yesod-static-dev_1.2.0.1-1_amd64.deb
 085ae002d41ee0e2e1fefeaa1cd0c415 89114 haskell extra 
libghc-yesod-static-prof_1.2.0.1-1_amd64.deb

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

iQIcBAEBCgAGBQJSOHrjAAoJEFWSMx4ZnTioZQsP/RYauZU3hDmHP2dbmpNDg9UK
4Ntfmy7PAtPlEIPjO8Vcr6h6zrXsBw89Do8lAs9F4HTrtHZ+Thd811XGk+WNief+
LesVvpjpKZ+Ghh4IXJc77ex52A2K9rR0UhjewbjHGb25zHzBW0XtEeFySWHiZaJR
qfUNG3fNaLUhBQjFBO/BkKNCR6ugKy9Qi4IPlS4tecvT/SDbH05/buaTCCn7PnHE
XRHfCaQVgYQg7enM9DsY/tHK7tKEk4BMgTDaIvBk6MeLKZlMnbzbfAQRuLKCYDXz
ewSrD13LnHmeqJp7RexamSCeJMMu9zn+V/dVPm5tvjai4Yb6O9094aakr2/+QvYX
hn29WtofbbxwIQT1Siaj3s5M8G+kHnQ3LHNx3QZ86pdt198xEw3s6vT0JRQ0j7BI
21EDn14rUOyCJT50SHDXjGSXoi6GhItSsDIvjht+WhvRRI3IWD0WGaFhlfa2OIPG
ENoys5ybvviZ6An0jFpWKTqWqmA5IVwCPfN1tuF5eqeHtntDyAW7kv9591YQpWM+
rZjHXOjqvLA4zyDUBlrNHumHnMzz4472JbmTQ+Omp0T4OJZZ1bZscNxnP5+AA7N3
yYweWOovFdW0ziS8nMZBY1Ah0co3ThKNFFSRls14Zz0jVzTEfaZRu4yUEF9WtBOA
bYClKc+EXcuxQCgz4uFA
=r0OQ
-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/e1vlxks-00068w...@franck.debian.org



Accepted dh-python 1.20130917-1 (source all)

2013-09-17 Thread Piotr Ożarowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 17 Sep 2013 19:29:05 +0200
Source: dh-python
Binary: dh-python
Architecture: source all
Version: 1.20130917-1
Distribution: unstable
Urgency: low
Maintainer: Piotr Ożarowski pi...@debian.org
Changed-By: Piotr Ożarowski pi...@debian.org
Description: 
 dh-python  - Debian helper tools for packaging Python libraries and applicatio
Closes: 723070
Changes: 
 dh-python (1.20130917-1) unstable; urgency=low
 .
   * dh_python{2,3}:
 - bump minimum required python{,3}:any version to workaround #723586
 - generate :any dependencies to specify range of supported Python versions
   (doesn't include extensions case), closes: 723070
Checksums-Sha1: 
 7b9c78375cffa6c2c6d5ff6b4b05c7c64b9ebc61 1993 dh-python_1.20130917-1.dsc
 1cc1ad4590dd1e90d23194174db422c4d9d6de08 52772 dh-python_1.20130917.orig.tar.xz
 0aa476d3ab0b9850855baab6dff096179bf5c138 4323 
dh-python_1.20130917-1.debian.tar.gz
 bae5982858e4c9a785727433f0a1a92dc7e8fbe2 45204 dh-python_1.20130917-1_all.deb
Checksums-Sha256: 
 465acd5a1f1cffe44041615e931339dfa252669381a7a47f0a6c36e7b6185d8c 1993 
dh-python_1.20130917-1.dsc
 3709aeddc4cf48c59378a83b8bcc89c0837cd2350726695a32884998111e4853 52772 
dh-python_1.20130917.orig.tar.xz
 901050db8dd0914a33a20b41e8d6096c07313c2d4dff9a0d38bfc47f9cb72ba3 4323 
dh-python_1.20130917-1.debian.tar.gz
 aaca039364ff93175716fb606aa7af9003d3840b63887893cc0538fd1d952416 45204 
dh-python_1.20130917-1_all.deb
Files: 
 d0ab1c1997f40271fa58f115d2472436 1993 python optional 
dh-python_1.20130917-1.dsc
 24271694c7096376c7397d6a05fc7ff3 52772 python optional 
dh-python_1.20130917.orig.tar.xz
 e9c4a7453707a6b4567e9322dc31aecd 4323 python optional 
dh-python_1.20130917-1.debian.tar.gz
 a6234200463a3cd4af3facc19f4212c7 45204 python optional 
dh-python_1.20130917-1_all.deb

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

iQIcBAEBCgAGBQJSOKGEAAoJEK728aKnRXZFRC4P/3X10/mEm2zplC6y/+n9+JXs
AMx1GcYK/rJpPmzdysv13yxYCqDfXGzdt0++BwQhWA9Be1ho/voG00nHazFrPIeZ
EhKJdqfmPad8zjpdhP8yl7+siukVxGlPi4LnKOZe7QLR4flsa+ADdA4X2fziMnAV
j9ghMw1rL94boe1LeFmpouxDm47U5MLIun+AJsx+J9b59WpOFBOixITqTw6fQKwr
VxbypeIdZAtdmCfLn2E7X+l0U/y29MsUM0iCSxI05Kk/hQRtm6PpUu3QfbRqG9Bv
wKWcLuHE+WWbZOtCRAhSQfpgJegLApT9WKs8WHoVoqKOEO40tMW6lB01UGQ6BLXk
lQhcRTpP/a34wnhyNLqdQzcLYzeAifpkPQEzh33D4EZ31QX8TXMiIoWAAZGelwDi
Z3ZIu08JajJL2WDR/dYB896uMop/h9CE/XD7f3ey27P8/lfKCBSDNS6WEa2qp9Ot
wYXG7988gu+bKbqkkXy0CUf3xVSC5uwmRett6VZTQ0q+zkPOzOLyL4b2ZpliDWul
XmY020xAh4IAlN22OyYZxIGBCfXlhaCMc9N23oxoUE3PRP6NpF87gX1Rn1CGrEPo
75btUZq1G0I6ZHaDFfTyG6xDP5tqXlTiQoTnjcxcTdoV+6CeVM+lVf0+B4QW5Gd8
DyQ+3i/VGQDdN7HixGWQ
=+Flg
-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/e1vm0jd-0004er...@franck.debian.org



Accepted soqt 1.6.0~e8310f-1 (source amd64)

2013-09-17 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 21:13:53 +0200
Source: soqt
Binary: libsoqt-dev-common libsoqt4-20 libsoqt4-dev
Architecture: source amd64
Version: 1.6.0~e8310f-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description: 
 libsoqt-dev-common - Qt GUI component toolkit for Inventor - common 
development files
 libsoqt4-20 - Qt4 GUI component toolkit for Inventor - runtime
 libsoqt4-dev - Qt4 GUI component toolkit for Inventor - development
Changes: 
 soqt (1.6.0~e8310f-1) unstable; urgency=low
 .
   * [7158525] Move maintainership into debian-science-team.
   * [8596233] Remove some obsolete files.
   * [1dd5f9a] Imported Upstream version 1.6.0~e8310f
   * [6b50de8] Update homepage.
   * [2efcc04] Use dh 9. Simplify debian/rules.
   * [adae349] Add TODO.
   * [8b79572] Add files from SoGui as a patch. Need for build.
   * [729840d] Set Standards-Version 3.9.4. No change.
   * [0f30b6a] Update copyright file (BSD-license), use DEP-5.
   * [67be221] Use wrap-and-sort.
Checksums-Sha1: 
 0b38d06c3a6b5ca24e1be7559530950e4fffcc03 2147 soqt_1.6.0~e8310f-1.dsc
 9744e64866e72692b23803c516beeae68880c7b5 774603 soqt_1.6.0~e8310f.orig.tar.bz2
 72be93f5a7dfce35ab4da9afbe88a5ed390189a3 277570 
soqt_1.6.0~e8310f-1.debian.tar.gz
 de0a3daf41c29014da6a077fd209ce6e331410b7 99978 
libsoqt-dev-common_1.6.0~e8310f-1_amd64.deb
 0df92e6f6d56e3a7ee54ec1ba0fc6d937be50285 207992 
libsoqt4-20_1.6.0~e8310f-1_amd64.deb
 022f7e6d5208a4056e2160bc08165f374b66cc51 6426 
libsoqt4-dev_1.6.0~e8310f-1_amd64.deb
Checksums-Sha256: 
 b734ebbd7eb1b1f3c00e2c7f86c9256990cfd7dd83476d3f54fcc77ea0aeca21 2147 
soqt_1.6.0~e8310f-1.dsc
 abd0ec7c2863af4f45b4b1e3a6de30c50d548d299e5dd1180c31ea380fdbed56 774603 
soqt_1.6.0~e8310f.orig.tar.bz2
 2dc6a7c564096b790be8fda08e0f76e03986d81c4c612e73c0c3f8fb83a11835 277570 
soqt_1.6.0~e8310f-1.debian.tar.gz
 60090f8b91ad3c8a467d3a877919e41f12cb4eed872d9f5ae4dffeb22c6c2137 99978 
libsoqt-dev-common_1.6.0~e8310f-1_amd64.deb
 5eeeb18da39b71769fa9ec1e1ea237ab14c9f41ae027cf994cfde306538c96ca 207992 
libsoqt4-20_1.6.0~e8310f-1_amd64.deb
 4b79fa44adc881950cf7bfa1ad0bb19cf2a74059ebae6c3da88051442f9c6bc8 6426 
libsoqt4-dev_1.6.0~e8310f-1_amd64.deb
Files: 
 496469bb37bd2dad9766ccfe29bafbe2 2147 graphics optional soqt_1.6.0~e8310f-1.dsc
 af16e51cd672c957de424df22a8a3199 774603 graphics optional 
soqt_1.6.0~e8310f.orig.tar.bz2
 7cec47c9af8c58727e4c7cdee890992c 277570 graphics optional 
soqt_1.6.0~e8310f-1.debian.tar.gz
 a142e65ca81b8267f7cab32e40548c42 99978 libdevel optional 
libsoqt-dev-common_1.6.0~e8310f-1_amd64.deb
 cd5333ab08feca983fd596d597ed89dd 207992 libs optional 
libsoqt4-20_1.6.0~e8310f-1_amd64.deb
 747bbe1ef21b933cc37c928ef0bc4178 6426 libdevel optional 
libsoqt4-dev_1.6.0~e8310f-1_amd64.deb

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

iQIcBAEBAgAGBQJSOKt+AAoJENPhc4PPp/8GRycP/3AcPbaVM/VEb1+r0xAmKQXL
zqa4Q1iyPbqcvREcnRQJHs+S0O75rGSGDXcKh8HYeOg68vxhO793hNOokva7wMgC
XgkTBPav0WYzrlVhsQU5iE6upgKr+GtqeXGgIkKeAxAIZAxppoOBeuakabpFADWi
J67MZ8ItCGh2q335qaYsQa6gLk0bcKDODujEfEeQzpL1q1s04KqcltCLA5N4fWkN
Bz99O7Zu2wzbKQW2XEoBzaKmk8nSCNrwnAkh4c4Z0iJ4rAbKxXPwYysHlF/Q6F2X
Oz8bI3RXGjYnODQ7xIa38yXd9GZ4l9+94sExU9NY8ENIJeRFcn6tSRGcRBDTaQqx
A7Pco7jnY2trz1KVob4n5pB6TWoE6zimLphI3V9YzMM/wYC9thEK7zmM+hikVPKq
3G/DoMt+484RQ+WkbW8YbG4RNq2+FZKcIraz2JRKWW22yS/mFBG+fgcqNfBDroM1
YMRz024gAahvaSUCxOoF7CK3HLWaJVc0XRqFhNuKaQ+j95YtnWi4jUkQRjJL92w7
/fcwUNDuFyosia4YKyoXOJmwrV9XNHyXWUMifcrykYkEO0epka1/r/7x1Rm9OUsf
NhquVUBSMLz1mZWFQRhen5tn2fZ/6ZETGqiMX3Ht2ijUhIecnqCRyP+cRMuSrYLR
hndigxJQ6Xn0J01o3zek
=qGdT
-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/e1vm11p-0002nu...@franck.debian.org



Accepted elmer-doc 2013.09.13-1 (source all)

2013-09-17 Thread Boris Pek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 22:13:29 +0300
Source: elmer-doc
Binary: elmer-doc
Architecture: source all
Version: 2013.09.13-1
Distribution: experimental
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Boris Pek tehn...@debian.org
Description: 
 elmer-doc  - Elmer multiphysics FEA package documentation
Changes: 
 elmer-doc (2013.09.13-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 dd7f99ff51c5190e47fe8f1a3e3adeef84fd6e31 2031 elmer-doc_2013.09.13-1.dsc
 aefdacb8fb68ffa1353b4ecfdfc50592d36d199d 83807228 
elmer-doc_2013.09.13.orig.tar.gz
 0813ea4bf559602c61034bbb46463e1835fbf753 3463 
elmer-doc_2013.09.13-1.debian.tar.gz
 fe9af436431d57e9876318927e9cd036451d0616 83376458 
elmer-doc_2013.09.13-1_all.deb
Checksums-Sha256: 
 3c56db1485b94071889d0013fb2a4257d70a73764cf8718c19dbcf57b588b69b 2031 
elmer-doc_2013.09.13-1.dsc
 99555c7d52126177e9d290adfad5b706437c5f5705da27aa39765d8d1dd0615a 83807228 
elmer-doc_2013.09.13.orig.tar.gz
 171907451ad45e3fdf27cfb7377dcb267dbb0cac153fead9740b8e055706b12b 3463 
elmer-doc_2013.09.13-1.debian.tar.gz
 d78861aa256b30d2e4daaa53a97e5823557dee9b8a4dacddfc7ce06bc17d1e5c 83376458 
elmer-doc_2013.09.13-1_all.deb
Files: 
 b789cd13b57975fab369954a24afe382 2031 non-free/doc extra 
elmer-doc_2013.09.13-1.dsc
 63cd30f1ea180edf0a2e1bb49ffb8dc7 83807228 non-free/doc extra 
elmer-doc_2013.09.13.orig.tar.gz
 6350a489b8370f21aa3d7351cf75c201 3463 non-free/doc extra 
elmer-doc_2013.09.13-1.debian.tar.gz
 328a367b084778a93fb41f77ccc59149 83376458 non-free/doc extra 
elmer-doc_2013.09.13-1_all.deb

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

iQIcBAEBAgAGBQJSOKpsAAoJENABW9Eo85J42IAQALozXqo6TdzqAlnceJ21ZGm3
j69hTSqhcMpRQqkaCpVbJsSxAqAwz6WbvLZxna3qOJ0NcQE6BUIEd89pGL1IzIM4
tXCa8FlXTJ2LKeluwJ349N9uaZHIBb40vHjTCqV45nT+/e27QsqxMQMEoig89Man
v25BgE/DSiirLr/n4srfakqixuX0lQ1SwbxuFSgvhWqceCyjlFIHpdxYbLeVXIWS
jzbVwd9++54vmWmG5R2I8W5OmjOz/2REaadiuVrXCA3tKEC+vUodrnj3Yr7x+3g6
+YgzrakLNw2Hc1NKLVQM0fZQNjTzDnAP4X5A2xyu/gUqoj4muNJDOWIVIcAzwlKV
V4iX4rHyqNv5iEKh5eu+UhucB46Qzpz7utLR/UBXkUuRcmCxoLblSQUeUi4y2W2g
QvNDrGKAgKICZAuCZjnSWuNslwlbkIr6Jt2vBAVuALgs2jd1K4B5KWQK1WRDoNH2
0QA/76HNAkf4q7UMr4xWY9js9Hzg8wn9boyVA6XLFrMNHSYzYX0RUkqd8+doCP9h
9V/kpvNDh6X0cj5zaHESKcz9p4kRCZ3jry87sTQrxBamsCQBUJEvoVuyJAa/gLBA
wneY/7xzbORz6iKz/t9w9D8dT3XpuaBIFI4HGo0rCPeOzdV26OnDisLgNEHy7GpI
CTZmqUnvHcNsB6F0F+N0
=pjAi
-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/e1vm11n-0002vx...@franck.debian.org



Accepted pyopencl 2013.1+git20130916-1 (source amd64 i386 all)

2013-09-17 Thread Tomasz Rybak
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 18:03:59 +0200
Source: pyopencl
Binary: python-pyopencl python-pyopencl-dbg python3-pyopencl 
python3-pyopencl-dbg python-pyopencl-doc
Architecture: source amd64 i386 all
Version: 2013.1+git20130916-1
Distribution: unstable
Urgency: low
Maintainer: Tomasz Rybak tomasz.ry...@post.pl
Changed-By: Tomasz Rybak tomasz.ry...@post.pl
Description: 
 python-pyopencl - Python module to access OpenCL parallel computation API
 python-pyopencl-dbg - Python module to access OpenCL API (debug extensions)
 python-pyopencl-doc - module to access OpenCL parallel computation API 
(documentation)
 python3-pyopencl - Python 3 module to access OpenCL parallel computation API
 python3-pyopencl-dbg - Python 3 module to access OpenCL API (debug extensions)
Changes: 
 pyopencl (2013.1+git20130916-1) unstable; urgency=low
 .
   * New upstream release, removing non-free file from examples (#722014)
   * Update changed Sphinx doc build directory.
Checksums-Sha1: 
 ade2f2b3670af55cbdbfd25bff693e5209532315 2598 pyopencl_2013.1+git20130916-1.dsc
 1b340db1ac87ecd48339f50d6e94a3568f27efd8 288943 
pyopencl_2013.1+git20130916.orig.tar.gz
 1ab7ef3de8e384def35f7e7cca6599b2daae7828 10855 
pyopencl_2013.1+git20130916-1.debian.tar.gz
 f20bda22021b1dcd0f93be0610688518e9035973 338000 
python-pyopencl_2013.1+git20130916-1_amd64.deb
 ce8b1807d3d0715ca6da5b1a504b286fb1f8001d 4786602 
python-pyopencl-dbg_2013.1+git20130916-1_amd64.deb
 eb9fd0f58a65262144ab4ff4e6002211732f7684 339674 
python3-pyopencl_2013.1+git20130916-1_amd64.deb
 a4efecb0d1f6464d491ab9b9133c9d4a2b01a36c 4701516 
python3-pyopencl-dbg_2013.1+git20130916-1_amd64.deb
 7e8d88f938501412be17a5c91fcfa354b746b098 330820 
python-pyopencl_2013.1+git20130916-1_i386.deb
 2e9eac01fe855f51eeb91fdc2559c1392a76a836 4513200 
python-pyopencl-dbg_2013.1+git20130916-1_i386.deb
 dca5d4ba0926079cbd4fab6f7634096efe5fc91a 334480 
python3-pyopencl_2013.1+git20130916-1_i386.deb
 0f873bb0ab13e7a53db3228f47268921e72260e1 4531040 
python3-pyopencl-dbg_2013.1+git20130916-1_i386.deb
 90b6a67e2df61e943bddf6a5c9e16a789835084d 113728 
python-pyopencl-doc_2013.1+git20130916-1_all.deb
Checksums-Sha256: 
 36fabc1b2d13173cca599b17930fb533b2b69306ca3080fe16bebedfecce6dae 2598 
pyopencl_2013.1+git20130916-1.dsc
 24eb6545ea71dc92574572a4f4bb6eb0a428861d865f1699091cb2b027d38104 288943 
pyopencl_2013.1+git20130916.orig.tar.gz
 847c63300c48f5da4c88f673b9174b17a79037bc9261fa236abdf9abc344eb7f 10855 
pyopencl_2013.1+git20130916-1.debian.tar.gz
 83f127482d5534cee2d7eb5c333e578717e0d78fefbcd947f00407cfa4f70daa 338000 
python-pyopencl_2013.1+git20130916-1_amd64.deb
 09b0a58058b37402654f1c5aad863d1f3ea45005d2bc3d3547132d8d9dbaf7cd 4786602 
python-pyopencl-dbg_2013.1+git20130916-1_amd64.deb
 7e2329ca0bb1ea543b281efa72e9ce60eb29b8a55a39bf204cd36e04845656e1 339674 
python3-pyopencl_2013.1+git20130916-1_amd64.deb
 a6976679eb5d93d2ca765ac14a6e47c095a5bb2f9a1814b4e64d3614a89b5ac0 4701516 
python3-pyopencl-dbg_2013.1+git20130916-1_amd64.deb
 2dff9acebad0e4369ab8e5a0ab5ea56ded03848766902dd6fbce074f4504a239 330820 
python-pyopencl_2013.1+git20130916-1_i386.deb
 8a25f88c979b7ca99a67f280be7c07c9f4a7632134a44f2d87968f912ac4729b 4513200 
python-pyopencl-dbg_2013.1+git20130916-1_i386.deb
 044bd36018cf3d637dc600aa7620854b4571611732a9af6f2fa1af186fc06b3f 334480 
python3-pyopencl_2013.1+git20130916-1_i386.deb
 efb181cb2314a25296699b44c4bda942daf29eb27b4e5f419d5a183e5a74f9d5 4531040 
python3-pyopencl-dbg_2013.1+git20130916-1_i386.deb
 d9ef9682074c21538affd4cc691b06f7221581609c195b8d89e792407306e0e5 113728 
python-pyopencl-doc_2013.1+git20130916-1_all.deb
Files: 
 14e5fd3d1a3c55f2812e703d4e82a885 2598 contrib/python optional 
pyopencl_2013.1+git20130916-1.dsc
 de384a303c9a16175d427ed2bb1056a1 288943 contrib/python optional 
pyopencl_2013.1+git20130916.orig.tar.gz
 6e0603d3a5bbb1d95c5b7a9f0add7379 10855 contrib/python optional 
pyopencl_2013.1+git20130916-1.debian.tar.gz
 08ad3e65019b4db3bad517c9b980d01d 338000 contrib/python optional 
python-pyopencl_2013.1+git20130916-1_amd64.deb
 127400e41e89ff5472ad0610815271d4 4786602 contrib/debug extra 
python-pyopencl-dbg_2013.1+git20130916-1_amd64.deb
 b85ab10d3bb636a9b3c4ab0b1975cd6f 339674 contrib/python optional 
python3-pyopencl_2013.1+git20130916-1_amd64.deb
 8561dc1b75a0ae4c8960498f68549ac7 4701516 contrib/debug extra 
python3-pyopencl-dbg_2013.1+git20130916-1_amd64.deb
 6ff6809fe3b0bc91821bbbe84d807179 330820 contrib/python optional 
python-pyopencl_2013.1+git20130916-1_i386.deb
 01a3a340ddf6d466b022b1cef32adc9c 4513200 contrib/debug extra 
python-pyopencl-dbg_2013.1+git20130916-1_i386.deb
 94a0ae6770b978d52ccb7e69cbf9331b 334480 contrib/python optional 
python3-pyopencl_2013.1+git20130916-1_i386.deb
 44836b4cdfc3096a74870173ecabf430 4531040 contrib/debug extra 
python3-pyopencl-dbg_2013.1+git20130916-1_i386.deb
 bc72909547bf8ceb819c524d6751ecd0 113728 contrib/doc optional 

Accepted git-remote-gcrypt 0.20130908-3 (source all)

2013-09-17 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 15:33:35 -0400
Source: git-remote-gcrypt
Binary: git-remote-gcrypt
Architecture: source all
Version: 0.20130908-3
Distribution: unstable
Urgency: low
Maintainer: Joey Hess jo...@debian.org
Changed-By: Joey Hess jo...@debian.org
Description: 
 git-remote-gcrypt - encrypted git repositories
Changes: 
 git-remote-gcrypt (0.20130908-3) unstable; urgency=low
 .
   * Add remote.name.gcrypt-signingkey config.
Checksums-Sha1: 
 7196794a32566f5ceae33774e1141997badece4d 1858 
git-remote-gcrypt_0.20130908-3.dsc
 3b7b4cb19a7b96cbd9bea309b505f65e93909238 1674 
git-remote-gcrypt_0.20130908-3.diff.gz
 4b1550e256c126c8ccfbdb15d031fb9a72d84a57 11304 
git-remote-gcrypt_0.20130908-3_all.deb
Checksums-Sha256: 
 6791130fc5baef10cbdd71a1f802ad6c894acf00730861e5bba822556e65f809 1858 
git-remote-gcrypt_0.20130908-3.dsc
 82719794882d6b65c64fd336458ad773565cbfc73708d48772ade6ce83263929 1674 
git-remote-gcrypt_0.20130908-3.diff.gz
 7a24fe3989bbee4327559daf2cef84fcacc1145c061963558b414be67e6611c5 11304 
git-remote-gcrypt_0.20130908-3_all.deb
Files: 
 d5c0b8e5c7f94df45bd1f91b258e0e20 1858 vcs optional 
git-remote-gcrypt_0.20130908-3.dsc
 4878b5fcb8ab24bc3cf1274896aaf778 1674 vcs optional 
git-remote-gcrypt_0.20130908-3.diff.gz
 59d79fa5f2bc64d0101656f79fe58b4b 11304 vcs optional 
git-remote-gcrypt_0.20130908-3_all.deb

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

iQIVAwUBUjixk8kQ2SIlEuPHAQiQ9RAApD0teciDAju6xW4QjqHCyQMMUbXADKSP
h80vOfaGjpbi+KWSKQSKZ/YgXdCtFku6omPLzGFj3UCj3zSix3o4jRvmjM8kxMMs
4/SNUWbEkWmRBAEIodoT8uCnxHcT+QBTmZpxajKXkwMPkqpnCdsIPgkWbTE7qrrU
iJgO4vs/LWLvIaJC8YccuTDdKN0q+nmXVmZUvf4J+Q39IWheTKW4aBRh1NcPMBsI
W+VVb3ysgQdomT0LI6c7E7+CkGSFOdh0o36rI4ldKdmXUV2r3vSMClm7e/vRq2xn
uRXqBuxRP+fKVPLf2+tWE0tHDWYPFlcN4PrBwI5p1qePagUf00lducrpBGEACAIQ
lHa8RsVrnIHHv8n2pJl94hAi7ikeyLtWqWEDw7fjQDnThn5XQqoZAp2lqo9qqh1i
jG6nFNvGPN3fi3Q7RNm4KyhMu4nbgY/J4c1KHSNPslZrxv7eeBl2tHxfDHuyEZBP
th9q2g5S/K/YzAOGsp+yFyq0Cw22U8h+/V/m/oR/XabmvA+uormr/9BZoomInrt1
GH03F6EJvxxPqjdSJutDqrtJ19R8/+qHY4SHxhfRFqgjM2iEPMYwmuSOq7iO2RuW
J9M3NbHqS77Fb4fav1DMArvPKDX0DOewzkcGJCiOko7IG23YzlAjQRceHtpCnOR4
iPnMpdJ1hJw=
=tLgL
-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/e1vm1fp-0004ek...@franck.debian.org



Accepted libdata-stag-perl 0.13-1 (source all)

2013-09-17 Thread Florian Schlichting
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 21:43:56 +0200
Source: libdata-stag-perl
Binary: libdata-stag-perl
Architecture: source all
Version: 0.13-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Florian Schlichting f...@debian.org
Description: 
 libdata-stag-perl - module to manipulate Structured Tags datastructures
Changes: 
 libdata-stag-perl (0.13-1) unstable; urgency=low
 .
   [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ Florian Schlichting ]
   * Import Upstream version 0.13
   * Bump dh compatibility to level 8 (no changes necessary)
   * Switch to source format 3.0 (quilt), dropping README.source
   * Bump Standards-Version to 3.9.4 (delete versioned depends perl = 5.10)
   * Switch to short-form debian/rules
   * Refresh debian/copyright
   * Delete fix_WHATIS_entries.patch, applied upstream
   * fix_manpage_names.patch mostly applied upstream
   * New more_pod_errors.patch
   * Make short description a noun phrase
   * Add myself to uploaders
Checksums-Sha1: 
 a379e4becd1d2dfa579b5ca70beaa1db50af1ab2 2141 libdata-stag-perl_0.13-1.dsc
 93b3a60dd9219ecc6670124e6a4cf9691046201e 428040 
libdata-stag-perl_0.13.orig.tar.gz
 626b3729c303639cdf102510dd1048f63a462473 4864 
libdata-stag-perl_0.13-1.debian.tar.gz
 d1bce4f51a3d571f7da5d2b088621062bb3dfdf4 476226 
libdata-stag-perl_0.13-1_all.deb
Checksums-Sha256: 
 be35637f670ddbd0c7447684147587f6bc8369fc131744f1475a63073c3045ae 2141 
libdata-stag-perl_0.13-1.dsc
 cd814b9f20254e99f1cde26d414a5072f54754022481a389fe4348cc7e2e06d1 428040 
libdata-stag-perl_0.13.orig.tar.gz
 7e33a1dfcec45f8d67140a684efcf63892f182899927ddd923b4a9d64c717ca6 4864 
libdata-stag-perl_0.13-1.debian.tar.gz
 8213afdfbecbab028a5c3e082a4a413a6a06a61ac844d9164232dfd3906bf9b4 476226 
libdata-stag-perl_0.13-1_all.deb
Files: 
 10fb7e12c70b729748c3249bcf437e11 2141 perl optional 
libdata-stag-perl_0.13-1.dsc
 d87658c6e8b15a06a929a77e94bf2781 428040 perl optional 
libdata-stag-perl_0.13.orig.tar.gz
 c9011a0ee8c44349a3af492672fac1c4 4864 perl optional 
libdata-stag-perl_0.13-1.debian.tar.gz
 62ab9163325e0588f13e968e27bf9f3d 476226 perl optional 
libdata-stag-perl_0.13-1_all.deb

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

iQIcBAEBCAAGBQJSOLGKAAoJEBKXO25y3Ae1gc0P/jci1YrrAyukVVfbvZedfATz
PHCFD3dHjRWKGd2VSIPjSBOEjh1UkUh4VV0PSphPB5vpV+aZWbGkuWHzHpMana6N
K2wcW+xQ60Yw2CMhAZHdB5hUHs+xbUgw7k0sNgfCMUsqbpSlmLdAdnBzw5Tx6abu
26VVOpDkeGDhRIahsd9xSTn43AgFAhJdlOa+M2iCPcwtXNkqHFw1hD1sYhFkiEsf
G5NkLhmkp4cCjHN2DOIEt0akZWIZScny4RWqaB4j82r2xcoT4BDK9zP71/1UOv0F
dkUM/WEFvNq7a2M4baiQUXQjzhimz3eNA6ixOJw3lnGSYQxzB+fd+EyrkR/LoWOL
NYbe4WfCAxdMFAms8cOXHNcLgqYQRG3hKnHs9SxrOTySCq8SXdum265a0F015ylG
1mqTLJY35VcbuxL7udJRi0fiMjNRxNkRf2HgS22usJdsIJjVYOon1xYNyR2aan1P
FtlDwUl/3y3HMxYw+3LwRC3lk41IuBK6K61n2F1sf265gPu/DoV9omKAK7mDEu5M
TmQJ3bFbq0CjzsRBfUpoH4QGB9uMcSoTcfc3ixeIa2Hu0qJPn0gYS5V45CEzaKOg
WFtOt3wHINIew1VFDQv0C6oLY4yt+EEvAEWrZQKvzPu9P1KyIx5dnO0S2Mv58s0r
Df7DhmMeYNfK96dHUzzm
=wwUh
-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/e1vm1g5-0004hy...@franck.debian.org



Accepted libclass-method-modifiers-perl 2.05-1 (source all)

2013-09-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 20:24:45 +0200
Source: libclass-method-modifiers-perl
Binary: libclass-method-modifiers-perl
Architecture: source all
Version: 2.05-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libclass-method-modifiers-perl - Perl module providing method modifiers
Changes: 
 libclass-method-modifiers-perl (2.05-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/copyright: drop information about removed Module::Install.
   * Update (build) dependencies.
Checksums-Sha1: 
 a02cb5ceed37302486673fb44187cb8ea920876f 2596 
libclass-method-modifiers-perl_2.05-1.dsc
 3e89176ff4bef73d83fbc6fc14262b82c4e6e923 27419 
libclass-method-modifiers-perl_2.05.orig.tar.gz
 ac679c4f2e3fd652986fedc7505a1b26ab3e649b 2735 
libclass-method-modifiers-perl_2.05-1.debian.tar.gz
 bac1fdc0d1235040771d85e4ea88e8c9caaf94b5 15800 
libclass-method-modifiers-perl_2.05-1_all.deb
Checksums-Sha256: 
 f9685ce6cee0a25f83207bb913bc6068e0382913107c173291b1c7968310fe6a 2596 
libclass-method-modifiers-perl_2.05-1.dsc
 8e26e8eee6285f30e388ed715c0694f15293eeb969b615406cd770b9f67b29c3 27419 
libclass-method-modifiers-perl_2.05.orig.tar.gz
 adf7519ecf0620394b10b220176f7c01044e0780750c4fed9e539865c1dcbbea 2735 
libclass-method-modifiers-perl_2.05-1.debian.tar.gz
 76edbb4829bef1f8ac7b8545ae35627d5e518b7f50e4624a227dad45cbce8a3b 15800 
libclass-method-modifiers-perl_2.05-1_all.deb
Files: 
 21753c5f44d73d60930f3d970b8f7422 2596 perl optional 
libclass-method-modifiers-perl_2.05-1.dsc
 360aadbd1b2dbef2cb064f1e48373117 27419 perl optional 
libclass-method-modifiers-perl_2.05.orig.tar.gz
 c67bc330c43e9abb1840612bd5da915e 2735 perl optional 
libclass-method-modifiers-perl_2.05-1.debian.tar.gz
 efa8a53cf0d77717f6e84bd94310f1f2 15800 perl optional 
libclass-method-modifiers-perl_2.05-1_all.deb

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

iQIcBAEBCAAGBQJSOJ6CAAoJELs6aAGGSaoGZMIQAME2el0gdtCwaRnUOg8n1O4t
PgOFBpHjECH3GDpwwcIogAdXGTi8ERmMCu/9II2XfMKQQxXyrz6HCoq0ZgsnMMua
RI5WRHulkKS0XMe2kJBWevyUqVyr+sDgbjFhLvw1VC1O8+qSQJrjhoNYHeZvScek
4sNB034j6gel9VTGYl3YuldEr7ZDQBJqr/9XNDJfw2E/tfYVbmnYV11k0kTa5Uah
/SzmpQ9idbI8BhZAaVkaoYjoEz4+HAgDlopKRbERYoy3oc3cBQMNTRiJBAuEoNkC
oElZh4uvrHwAAn8kjmfZ6VjmGkXTxD+Lb7FI3xE6+J/f0eOLdNyzxcNSpLC/krFL
yr5x3s6ZE2TWmvQ1ZckH80q05m1rbSCZ6cwTbSdqAFFz46kNwJ1RxtDTIkewHk26
5X08Hl62+0FJknn82//91sEo0ihKnY0vOm5sZGOv3GWUG8j4IClqQ7YDCdIV6fhk
4klQk7Emunl8/RmK2qXedxMx3mpdB3FUrFZv0XedMeMFE2WN73l8oqcHO7tVsB/1
4jClsSGlWMPMjjAdGHLNmQPXmDndv3bHLb0BOvgFmL554N5uCKcdX3Tlw51hlQL6
fyeGRvb36VHXHKkW+e+qebkodWI1XSvtQfobX5bm7ZPNEl3HeDBIwIIwY9ImQ0A4
vUdQFpcX+o9+Cp6CZz93
=hdy8
-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/e1vm05d-0002ez...@franck.debian.org



Accepted mpich 3.0.4-3 (source amd64 all)

2013-09-17 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 19:42:55 +0200
Source: mpich
Binary: libmpich-dev libmpich10 libmpich2-dev mpich mpich-doc mpich2 mpich2-doc
Architecture: source amd64 all
Version: 3.0.4-3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description: 
 libmpich-dev - Development files for MPICH
 libmpich10 - Shared libraries for MPICH
 libmpich2-dev - Transitional dummy package for MPICH development files
 mpich  - Implementation of the MPI Message Passing Interface standard
 mpich-doc  - Documentation for MPICH
 mpich2 - Transitional dummy package
 mpich2-doc - Transitional dummy package for MPICH documentation
Closes: 722666 722667
Changes: 
 mpich (3.0.4-3) unstable; urgency=low
 .
   * [090aeef] Add Break/Replaces for libmpich1.0-dev. (Closes: #722666)
   * [abf7347] Add Break/Replaces for mpich-bin. (Closes: #722667)
Checksums-Sha1: 
 a813693863b210c14d052d538b3ff0c2869f4897 2539 mpich_3.0.4-3.dsc
 024fd0ce16939d23ebafa366f3fb1f6cb091b65e 56307 mpich_3.0.4-3.debian.tar.gz
 8c77cd353ac2a5a7e6faefcdc90849bf1079cf46 896364 libmpich-dev_3.0.4-3_amd64.deb
 d9d92b004f66558e1acad9b0262a68b3e8cfda0e 805058 libmpich10_3.0.4-3_amd64.deb
 1e4204ff01407c620d53184689e8824297db3f26 26024 libmpich2-dev_3.0.4-3_amd64.deb
 31f91ec739b5fe2ed0231799447acfeec71036ef 199532 mpich_3.0.4-3_amd64.deb
 6ec6ca1aa25ca1f853f2bff4bceb4ada9b365fd7 739990 mpich-doc_3.0.4-3_all.deb
 872d60c95e02e7c04fb40872c5b76e5289b380cc 25990 mpich2_3.0.4-3_amd64.deb
 e43683125a325ee5984acff77a5d0f461e5fc60d 26004 mpich2-doc_3.0.4-3_all.deb
Checksums-Sha256: 
 c7743bbef6cf6f029ccb96318bed961433dca5973190832487f68b5c3dfc6708 2539 
mpich_3.0.4-3.dsc
 ccec3b7e6ac3ffcba05e936b1fcecaf199a23fce1b7acb6d2cf4c9b729978cee 56307 
mpich_3.0.4-3.debian.tar.gz
 11e71006ebbb4e8c3d7e9609cd159cdaf0a86bdf642b0a5f9f0e4cf154f5c97f 896364 
libmpich-dev_3.0.4-3_amd64.deb
 60e0bf803816028d8fc7fca704f7cc8973cb5bc1fa55d4fd2da099eeaa5d07eb 805058 
libmpich10_3.0.4-3_amd64.deb
 144865bfc9dbc96bb7c8b4794b669f1b2b0d0746cd422745a1da2ce3403eaadc 26024 
libmpich2-dev_3.0.4-3_amd64.deb
 f82da85f4869e37e2a23686d9c9bc38e526c3b5cfbe4e1a61ddc13da0dd7d91f 199532 
mpich_3.0.4-3_amd64.deb
 f0c9de3972c951f506543701fbdaf84a3ad75d4e5380b2e9a5e90eb822f1f208 739990 
mpich-doc_3.0.4-3_all.deb
 ab037b1ca4b44810e42dff7e58a08db5032685012ddd632233c77b2fadc8aaf5 25990 
mpich2_3.0.4-3_amd64.deb
 e10a23ea9a38d22af72a46e18a4ae2af101e6fc94626eda5c785acad3fb8fd62 26004 
mpich2-doc_3.0.4-3_all.deb
Files: 
 d5c32a14c4a1d58af75d78f19e2d2ce6 2539 devel extra mpich_3.0.4-3.dsc
 3a90d484f38e5d855994d3aa3abd4536 56307 devel extra mpich_3.0.4-3.debian.tar.gz
 a8f80349eed1e000532056cf3a30622a 896364 libdevel extra 
libmpich-dev_3.0.4-3_amd64.deb
 b3609fd9b42c352d2fdf33b8eed6d42e 805058 libs extra libmpich10_3.0.4-3_amd64.deb
 da48bb4bf0fb30364a9a6978d3cfcaad 26024 libdevel extra 
libmpich2-dev_3.0.4-3_amd64.deb
 dee74033abf7cd0bb1341b33789e8a0a 199532 devel extra mpich_3.0.4-3_amd64.deb
 34c90a4dc75934a2b2cf78e74fc9ad94 739990 doc extra mpich-doc_3.0.4-3_all.deb
 87788a68bd2d50be65ca11502057e766 25990 devel extra mpich2_3.0.4-3_amd64.deb
 2caefc5a3dfcd53edefab58c4ed5fc34 26004 doc extra mpich2-doc_3.0.4-3_all.deb

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

iQIcBAEBAgAGBQJSOJ1PAAoJENPhc4PPp/8Gu2gQAJ7WZeNa/MgM/up8OqoebFHf
XPt9w0Oz9FEG52jMuDm7v44sI9zNsnoiAaxa+laOxJT7VBpWXf//JDfBuMiN7EsZ
L3vyuIOKBcrxakB2QoQafLzY7gPnz9t2xy9EKNpxQuWwb1pnpmRITY9mvQwBbKeh
On8vUcvT6bRv/IQXSKyhANnE0b/O4zhsZrqwP1CX8RwoQBikfeZ2Q/2edtnopuqs
9YJeY4AitX3wRO3EXugI8eqwwDQeTfJrNPAY0LS4yj36R9wb7NBUeYJuIG8BnADt
dxc3zHcx7KDIqsC/VG5uNbKEPYB25W9o0vjNxzA51Nx7WFMDDlkNQXBZM94ITOfY
JR8n8311cholBEoRiSvHQJiHswti3EM1Iu/7J0ExJ3B/1F5EaehfeztdFZEIE/S5
q7viqMZgR1bBbU+JmnG4lLf4Aag6IM4jAj2STBcqP8uJi3goq6ze53mzySE9khNL
cCVuB14qWyjNhUeB09vnNPF1lmB9A+gRneR3OGZjtJt19K754J+s1lsdsn5FukyU
TgXhkkm4G6wxgvXxr7t1BZrBJr+xkLIR2KvsedkzVgt5sjdqBK/D/Ho7Hrs2fpnS
Df5PEK2AZ8TNGSDvW48aCxRT/rTkgl2YWGiC7pzCBf7A9TRUHeFCZq4KLPjDj3O2
oQbfgjhWE1zAdsds74cE
=EZBK
-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/e1vm05w-0002od...@franck.debian.org



Accepted libxml-bare-perl 0.53-1 (source amd64)

2013-09-17 Thread Nuno Carvalho
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 15:54:28 +0100
Source: libxml-bare-perl
Binary: libxml-bare-perl
Architecture: source amd64
Version: 0.53-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Nuno Carvalho sm...@cpan.org
Description: 
 libxml-bare-perl - Perl module to parse XML into a Perl hash
Changes: 
 libxml-bare-perl (0.53-1) unstable; urgency=low
 .
   * Team upload.
 .
   [ gregor herrmann ]
   * debian/control: update {versioned,alternative} (build) dependencies.
 .
   [ Salvatore Bonaccorso ]
   * Change Vcs-Git to canonical URI (git://anonscm.debian.org)
   * Change search.cpan.org based URIs to metacpan.org based URIs
 .
   [ Axel Beckert ]
   * debian/copyright: migrate pre-1.0 format to 1.0 using cme fix dpkg-
 copyright
 .
   [ Nuno Carvalho ]
   * New upstream release.
   * debian/copyright: update copyright years.
   * debian/control: update standards version.
   * debian/control: update debhelper required version, in order to pass all
 the hardening flags to EUMM.
   * Add lintian override to apparently false-positive warning.
   * Add set of patches accepted upstream but still not included in this
 release, visit https://rt.cpan.org/Public/Bug/Display.html?id=88155
 for details.
Checksums-Sha1: 
 1f4d4b0ebe6de17b0adfd7e4d10761bf2835dc51 2161 libxml-bare-perl_0.53-1.dsc
 c7dab0d8809c71e7034db313b955e14662d49782 79278 
libxml-bare-perl_0.53.orig.tar.gz
 d4a60593ea0bd16a9b4c64bc7270712dc43f4548 4297 
libxml-bare-perl_0.53-1.debian.tar.gz
 8a7d681844537e6767d3a7cbeac3bd85c50f0b34 41838 
libxml-bare-perl_0.53-1_amd64.deb
Checksums-Sha256: 
 a44e5ee4e783e82cf88800972c6628bffad0c5e101d12df94853ff52c9c61560 2161 
libxml-bare-perl_0.53-1.dsc
 865e198e98d904be1683ef5a53a4948f02dabdacde59fc554a082ffbcc5baefd 79278 
libxml-bare-perl_0.53.orig.tar.gz
 cd9aa699f13b739e7e06a2b97ad4f40ddebf877382f87488b1a8e05fca725e0b 4297 
libxml-bare-perl_0.53-1.debian.tar.gz
 426a520ddea5a93d86bb5119659a09ac2e327f6bda969d1bfbaffd8e6e79b66a 41838 
libxml-bare-perl_0.53-1_amd64.deb
Files: 
 4f5d73b069119e159effd5a2d68a8225 2161 perl optional libxml-bare-perl_0.53-1.dsc
 5e9c3dbe4368034fcff392333203339b 79278 perl optional 
libxml-bare-perl_0.53.orig.tar.gz
 1d03d9f1ed6911a3458b7fbe2397c139 4297 perl optional 
libxml-bare-perl_0.53-1.debian.tar.gz
 29c2247e20ca99b723afbd25dbf66c6b 41838 perl optional 
libxml-bare-perl_0.53-1_amd64.deb

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

iQIcBAEBCAAGBQJSOLvuAAoJEBKXO25y3Ae1r94QAIT9wcIIQUSjlDXNgsmqC/NE
3aRm3YthYcFH9s0BpUM57/vW5mf72vFSZkinSwO8Ia5BckoEkJxNZjwL5TUa+oyk
XfDZnrRYasKZPlpYZASGc+S329Ovrws2BE+Cy9eyqt5i0Ezg3WVLFfxKkWZb/iZE
EkDEMtrnUzaTKTc8QBCXIYdN4Fno0muavxP3qKrDHhVqPG19oOwupazRioHH9uUh
si09oj8ScM7l2RvtOoVi9RYWUEdn75Yj10UIRZhf+4RaeqYjjveALOHDVtoaEoCQ
gIBVBH8caP6BukwMO2swe4fhjhDN4gq4+pY27E08jz7sDf9eHKZJVn7v/5YARtre
WZTDh5p+Vm3br6w3zT3vyV/d9nMMeLwBDQ6IfIytIv/g2tS2/BoLCXCsDsec0C5L
DG3vRnLroOIOVYn0lr8VcZ6BJAH+iKNDBvHDmPOv9EUMFsymFpcwyWOI2HexSfTP
5f9QDtXOUOmdIyW7jZnU91/8cL0JnBnLBw3kIPZltPShc3JPSLlzE78EG6590S1G
aTLHSwUYFdwMkf2NrtcuDVP2hGhABQ0slccv3zX4yGYf11YtBHZsSRJYilS+h50v
25URl/iJekcST/5hqU9YXKbzE9+VU3enNqXt8qjri+psiRIeFBy6VzODv1Hjui8M
Dhqd0k9up/L0VLpcBiSZ
=ev6D
-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/e1vm2rx-0007jz...@franck.debian.org



Accepted debian-edu-install 1.720 (source all)

2013-09-17 Thread Holger Levsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 17 Sep 2013 22:40:29 +0200
Source: debian-edu-install
Binary: debian-edu-install debian-edu-profile-udeb debian-edu-install-udeb
Architecture: source all
Version: 1.720
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Holger Levsen hol...@debian.org
Description: 
 debian-edu-install - Set d-i values to install Debian Edu without questions
 debian-edu-install-udeb - Execute Debian Edu debian-installer profile (udeb)
 debian-edu-profile-udeb - Choose Debian Edu profile (udeb)
Changes: 
 debian-edu-install (1.720) unstable; urgency=low
 .
   * Change version number from 7.1+edu0~b2 to 7.1+edu0 in preparation of the
 Debian Edu Wheezy release.
   * Automatic updates of lib/partman/recipes*- at build-time.
Checksums-Sha1: 
 6ef663ad580ab54f458458d3131d4d63fea0e196 2191 debian-edu-install_1.720.dsc
 80e634823423a9967ee734561b50cc4324ae9959 172236 debian-edu-install_1.720.tar.gz
 4087bbf4d3b4ed0c9d9140583a82d5c39dda44c2 54008 debian-edu-install_1.720_all.deb
 f105df2b91d962c5f35b02a7fe3f390c1773fd9a 2690 
debian-edu-install-udeb_1.720_all.udeb
 84f26da61257f47dca80882db295ce1967265d12 62170 
debian-edu-profile-udeb_1.720_all.udeb
Checksums-Sha256: 
 99ff6d21bbd5406fa598d743ea7e6ba268fc66be479988583260ad745501e161 2191 
debian-edu-install_1.720.dsc
 6b82e82fa81cb35ff7ca08a0020712ed02e33046b1eb7bbe41caa4801d144841 172236 
debian-edu-install_1.720.tar.gz
 b0e591f0be53381b84f78a4750754e8067f393087fa461a7f39b2d44720e3fe5 54008 
debian-edu-install_1.720_all.deb
 6c0a55f7c139b05fd9630520fe27a594e66a54266aed9d2c3267d1344b383b31 2690 
debian-edu-install-udeb_1.720_all.udeb
 f815fc30c22667b565639a7afddc20dd35a048efe5197532beb5c12c76fb5188 62170 
debian-edu-profile-udeb_1.720_all.udeb
Files: 
 c7ff0d584704663824cdfeccc5210ab9 2191 misc optional 
debian-edu-install_1.720.dsc
 3dae52f0130c2448782a8cd8027d9862 172236 misc optional 
debian-edu-install_1.720.tar.gz
 66c278f9d5905efe4577ca5421ed440e 54008 misc extra 
debian-edu-install_1.720_all.deb
 ac49092d0db95808e997f54100c2e4cb 2690 debian-installer optional 
debian-edu-install-udeb_1.720_all.udeb
 659c7eac808f3c7982b80e017448f35c 62170 debian-installer optional 
debian-edu-profile-udeb_1.720_all.udeb
Package-Type: udeb

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

iQIVAwUBUji/hAkauFYGmqocAQjZixAAlh//vzHPNFLcZSYxpAT7BkPHrSVVFr1j
9LTyzNztX/H2AlkGANQ5L2PaD0YBMfaQTsYiaP5KojnoY45VmsxZXeU3wDoKbg6d
I+QMIcU9illFiKHOYXTnqxKq0PbUL+bM5gxpLL8JIS6o077+1wnOdT2VPMHUnTT4
5IsJZeiBTEOvxuksVyARWhsBw7UGV2sl5XtNCZnPqaHiPzVKVRM3JNjG5385FeAK
i5vQQL/kYLQN+GwumSXzj41n1j9JQk7O70FEDQWDioWrt0JlYnYakrj5FZdKxQsL
JRlzaluw02qPifRXI4rb8heybrISx4UXy1JdyFzgLNhjQ/CyxSjkgO+SrEDK+KOQ
CdSrRFxwAD/VrTOM9tA7fjM3d0uSbQSc0OZREG/0ixC/kthtC370ac/Qx39PrBlO
XKp4s1Kv7R9WGax/0LFM5vlY5xQxXgVAJxaZ9pFKt2orzOf0TAXiQZKaYNxjOgTa
GDSIfabPz5FyjOtIh2aq1b5/U97AHuD6dXKW8BD1ejzL3BYsmKbp3fkZFEP7QvLi
U9yBBJ1OLayoAkUsnVCWUuDchrNqQNBAWLNDNrrbxG4arl00qNP3w6/tvAQNR3t0
wmZ7onnmomtHTL6pWLaIuDnj5TXurhU3Y/599+0uGwc5CUBbA4OEJuiVb+584Xxt
aerkfrVb6Vg=
=SX0M
-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/e1vm2qn-0007jc...@franck.debian.org



Accepted php-horde-queue 1.1.1-1 (source all)

2013-09-17 Thread Mathieu Parent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Sep 2013 22:50:10 +0200
Source: php-horde-queue
Binary: php-horde-queue
Architecture: source all
Version: 1.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Horde Maintainers pkg-horde-hack...@lists.alioth.debian.org
Changed-By: Mathieu Parent sath...@debian.org
Description: 
 php-horde-queue - ${phppear:summary}
Changes: 
 php-horde-queue (1.1.1-1) unstable; urgency=low
 .
   * New upstream version 1.1.1
Checksums-Sha1: 
 7f3342f108c9d82c2b5281d9ad7dd37342fd5897 1374 php-horde-queue_1.1.1-1.dsc
 ed89c18319a9db7ef183e59c4b0d9122cfdcf82a 11789 
php-horde-queue_1.1.1.orig.tar.gz
 9369b1010ae7f2d9911f07022c3ff1ccb40f5adc 1867 
php-horde-queue_1.1.1-1.debian.tar.gz
 9ecd5c46082072aa854666467cbb97a93a195d66 8482 php-horde-queue_1.1.1-1_all.deb
Checksums-Sha256: 
 b9a44b17a77420e5006304459af080242b272a52c8f8a5597c266f8f91109cd1 1374 
php-horde-queue_1.1.1-1.dsc
 f65f2890caed81c0727f699a302e7178eb341c5df60636281d48bba99690b361 11789 
php-horde-queue_1.1.1.orig.tar.gz
 1994c08353373f9d220cea4ec4dfa97acaabb7d176b34fbbec471bdb73847acc 1867 
php-horde-queue_1.1.1-1.debian.tar.gz
 e0c26f7450e6479a8442e2b2aff0e855734fe541f00ebbd7ccb638544082efe5 8482 
php-horde-queue_1.1.1-1_all.deb
Files: 
 cbba43a2a5955f4ae4092276d312a3c1 1374 php extra php-horde-queue_1.1.1-1.dsc
 d75a55694197460ea761aa030a2e1f16 11789 php extra 
php-horde-queue_1.1.1.orig.tar.gz
 fa7d63fb59e2fa4a4ce5f33140c881bb 1867 php extra 
php-horde-queue_1.1.1-1.debian.tar.gz
 aed0bf018bc6026081341d492519a066 8482 php extra php-horde-queue_1.1.1-1_all.deb

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

iEYEARECAAYFAlI4wKQACgkQOW2jYf5fHX/HewCePL+1m5ZIgA0fzEPD9iqWm2aV
pRcAn2SB7+zRkwwrx3qggS43lfIg3D9K
=QXiy
-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/e1vm2t4-0007xu...@franck.debian.org



  1   2   >