Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Goswin von Brederlow
Scott Kitterman deb...@kitterman.com writes:

 On Wednesday, June 01, 2011 10:26:59 AM sean finney wrote:
 On Wed, Jun 01, 2011 at 02:39:42PM +0200, Goswin von Brederlow wrote:
  And note that as maintainer or for the VCS copy you can allways
  configure debian/soruce/local-options to unapply patches if you so
  desire.
 
 This is something i've been doing quite happily and I think it is
 a pretty decent compromise for the user/maintainer use cases.
 
 If you're building from the VCS there may be a difference in behavior,
 but if you build a downloaded source package (or even a source package
 generated from the VCS), the behavior is consistant.

 I tend to touch many packages and only revisit them infrequently so I don't 
 generally have a local copy of the package to have modified when I start 
 work.  
 So for me the general workflow for using debian/source/local-options would be 
 something like:

 download package/check out fom VCS

If it is from VCS and the workflow is with patches not checked in then
why isn't there a debian/source/local-options already?

 oh, this is V3
 unapply patches
 add debian/source/local-options
 work on package

Oh, this isn't a V3 packages. Read README.source, read debian/rules,
read manpage of strange patch system, run debuild and read the log to
figure out how this black box patches its source,  Works both ways.

Note that you do not need to unapply patches or care about them at all
to work on the package. So if you are doing an NMU or preparing a patch
for the BTS then it is just:

apt-get source foo
work on package
debuild
test
# Optionally: Just to be nice and fill out the header
# This would be improved by the --record-changes discussed earlier
edit debian/patches/debian-changes-version
reportbug -A debian/patches/debian-changes-version foo
(upload NMU)

With 1.0 packages you frequently first have to learn about the patch
system used before you can alter and build the package. That I think is
the greatest benefit of 3.0 (quilt): For the simple case of quickly
fixing a bug it is transparent and just works out of the box.

 apply patches if needed

That is never needed as building does that as needed. Unless you mean
going up and down the patch series while you work on the package. That
you have with 1.0 + patch system as well. No change then.

 upload
 rm -fr the package

 debian/source/local-options doesn't really help me much  Not making the 
 package source format 3 on the other hand conveniently provides the workflow 
 I 
 want in a persistent manner with no recurring effort needed.

 Scott K

Hardly persistent. Half the packages will have stuff pre-applied from
the diff.gz, half the packages will have $random patch system and the
third half :) will even mix the two.

I'm not saying 3.0 (quilt) is the ultimate format and I'm not saying
nobody should still use 1.0. But please don't call the 1.0 packages we
have in the archive consistent. If you just mean your own packages then
you could change them all to have debian/source/local-options in their
VCS too. If you mean other peoples packages then I don't see how you can
claim they behave in any persistent manner.

I think 3.0 (quilt) made a great step towards unifying the packaging of
most of the 1.0 packages with a patch system. Nearly all of those can be
easily changed to 3.0 (quilt) format to get a simple to use, flexible
(for the maintainer) and uniform (for the user) behaviour. Not all of
them but that is ok.

MfG
Goswin


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/877h94bnst.fsf@frosties.localnet



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Guido Günther
On Thu, Jun 02, 2011 at 11:11:30AM +0200, Goswin von Brederlow wrote:
 Scott Kitterman deb...@kitterman.com writes:
 
  On Wednesday, June 01, 2011 10:26:59 AM sean finney wrote:
  On Wed, Jun 01, 2011 at 02:39:42PM +0200, Goswin von Brederlow wrote:
   And note that as maintainer or for the VCS copy you can allways
   configure debian/soruce/local-options to unapply patches if you so
   desire.
  
  This is something i've been doing quite happily and I think it is
  a pretty decent compromise for the user/maintainer use cases.
  
  If you're building from the VCS there may be a difference in behavior,
  but if you build a downloaded source package (or even a source package
  generated from the VCS), the behavior is consistant.
 
  I tend to touch many packages and only revisit them infrequently so I don't 
  generally have a local copy of the package to have modified when I start 
  work.  
  So for me the general workflow for using debian/source/local-options would 
  be 
  something like:
 
  download package/check out fom VCS
 
 If it is from VCS and the workflow is with patches not checked in then
 why isn't there a debian/source/local-options already?
 
  oh, this is V3
  unapply patches
  add debian/source/local-options
  work on package
 
 Oh, this isn't a V3 packages. Read README.source, read debian/rules,
 read manpage of strange patch system, run debuild and read the log to
 figure out how this black box patches its source,  Works both ways.
 
 Note that you do not need to unapply patches or care about them at all
 to work on the package. So if you are doing an NMU or preparing a patch
 for the BTS then it is just:
 
 apt-get source foo
 work on package
 debuild
 test
 # Optionally: Just to be nice and fill out the header
 # This would be improved by the --record-changes discussed earlier
 edit debian/patches/debian-changes-version
 reportbug -A debian/patches/debian-changes-version foo
 (upload NMU)

The problem is that you don't have an underlying VCS here so it's hard
to track what you've changed and split patches when doing more complex
changes. So I'm usually using:

git-import-dsc --download package
# If you want to unapply patches after the build:
/usr/share/doc/git-buildpackage/examples/gbp-configure-unpatched-source

which puts the package in a git repo with all the git add -p/git
checkout -f/git format-patch features. But that's probably slightly of
topic.
Cheers,
 -- Guido


 
 With 1.0 packages you frequently first have to learn about the patch
 system used before you can alter and build the package. That I think is
 the greatest benefit of 3.0 (quilt): For the simple case of quickly
 fixing a bug it is transparent and just works out of the box.
 
  apply patches if needed
 
 That is never needed as building does that as needed. Unless you mean
 going up and down the patch series while you work on the package. That
 you have with 1.0 + patch system as well. No change then.
 
  upload
  rm -fr the package
 
  debian/source/local-options doesn't really help me much  Not making the 
  package source format 3 on the other hand conveniently provides the 
  workflow I 
  want in a persistent manner with no recurring effort needed.
 
  Scott K
 
 Hardly persistent. Half the packages will have stuff pre-applied from
 the diff.gz, half the packages will have $random patch system and the
 third half :) will even mix the two.
 
 I'm not saying 3.0 (quilt) is the ultimate format and I'm not saying
 nobody should still use 1.0. But please don't call the 1.0 packages we
 have in the archive consistent. If you just mean your own packages then
 you could change them all to have debian/source/local-options in their
 VCS too. If you mean other peoples packages then I don't see how you can
 claim they behave in any persistent manner.
 
 I think 3.0 (quilt) made a great step towards unifying the packaging of
 most of the 1.0 packages with a patch system. Nearly all of those can be
 easily changed to 3.0 (quilt) format to get a simple to use, flexible
 (for the maintainer) and uniform (for the user) behaviour. Not all of
 them but that is ok.
 
 MfG
 Goswin
 
 
 -- 
 To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
 with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
 Archive: http://lists.debian.org/877h94bnst.fsf@frosties.localnet
 


-- 
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/20110602100947.ga17...@bogon.sigxcpu.org



Bug#628915: ITP: doconce -- document once, include anywhere

2011-06-02 Thread Johannes Ring
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

Package name: doconce
Version: 0.5
Upstream authors: Hans Petter Langtangen h...@simula.no
URL: http://doconce.googlecode.com/
License: BSD-3-clause
Description: document once, include anywhere

 Doconce is two things:
 .
 1. Doconce is a very simple and minimally tagged markup language that
 looks like ordinary ASCII text (much like what you would use in an
 email), but the text can be transformed to numerous other formats,
 including HTML, Wiki, LaTeX, PDF, reStructuredText (reST), Sphinx,
 Epytext, and also plain text (where non-obvious formatting/tags are
 removed for clear reading in, e.g., emails). From reStructuredText
 you can go to XML, HTML, LaTeX, PDF, OpenOffice, and from the latter
 to RTF and MS Word.  (An experimental translator to Pandoc is under
 development, and from Pandoc one can generate Markdown, reST, LaTeX,
 HTML, PDF, DocBook XML, OpenOffice, GNU Texinfo, MediaWiki, RTF,
 Groff, and other formats.)
 .
 2. Doconce is a working strategy for never duplicating information.
 Text is written in a single place and then transformed to a number of
 different destinations of diverse type (software source code,
 manuals, tutorials, books, wikis, memos, emails, etc.).  The Doconce
 markup language support this working strategy.  The slogan is: Write
 once, include anywhere.
 .
 Here are some Doconce features:
 .
  * Doconce markup does include tags, so the format is more tagged
than Markdown and Pandoc, but less than reST, and very much less
than LaTeX and HTML.
  * Doconce can be converted to plain *untagged* text, often desirable
for computer programs and email.
  * Doconce has good support for copying in parts of computer code,
say in examples, directly from the source code files.
  * Doconce has full support for LaTeX math, and integrates very well
with big LaTeX projects (books).
  * Doconce is almost self-explanatory and is a handy starting point
for generating documents in more complicated markup languages,
such as Google Wiki, LaTeX, and Sphinx. A primary application of
Doconce is just to make the initial versions of a Sphinx or Wiki
document.
  * Contrary to the similar Pandoc translator, Doconce integrates with
Sphinx and Google Wiki. However, if these formats are not of
interest, Pandoc is obviously a superior tool.
 .
 Doconce was particularly written for the following sample
 applications:
 .
  * Large books written in LaTeX, but where many pieces (computer
demos, projects, examples) can be written in Doconce to appear in
other contexts in other formats, including plain HTML, Sphinx, or
MS Word.
  * Software documentation, primarily Python doc strings, which one
wants to appear as plain untagged text for viewing in Pydoc, as
reStructuredText for use with Sphinx, as wiki text when publishing
the software at web sites, and as LaTeX integrated in, e.g., a
thesis.
  * Quick memos, which start as plain text in email, then some small
amount of Doconce tagging is added, before the memos can appear as
MS Word documents or in wikis.



-- 
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/banlktikght5czgxcydjes1p+w9efkhv...@mail.gmail.com



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Charles Plessy
Le Thu, Jun 02, 2011 at 11:11:30AM +0200, Goswin von Brederlow a écrit :
 
 apt-get source foo
 work on package
 debuild
 test
 # Optionally: Just to be nice and fill out the header
 # This would be improved by the --record-changes discussed earlier
 edit debian/patches/debian-changes-version
 reportbug -A debian/patches/debian-changes-version foo
 (upload NMU)

Hi Goswin,

this is how a change of a couple of characters become a much larger patch.  See
for instance the following, which I have received in #606004 (not a NMU).

http://launchpadlibrarian.net/60144486/samtools_0.1.12a-1_0.1.12a-1ubuntu1.diff.gz

64 lines of patch for one line changed in examples/Makefile…

I see that debcheckout now has a --source option with ‘auto’ as a default
value, to “retrieve the remaining parts of the source using apt-get source and
move the files into the checkout” when only the debian directory of a package
is managed in a VCS.  In parallel, the most used patch systems honor the Debian
Policy's §4.9 by providing a ‘patch’ target for debian/rules.  So for many
packages, there is actually a quite uniform entry point.

When working on actively maintained packages, I think that using debcheckout
and committing the changes is more efficient as a whole.

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
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/20110602121105.gi14...@merveille.plessy.net



Uploading to multiple distros

2011-06-02 Thread Ian Jackson
Didier Raboud writes (Re: Color Management in Debian):
 Given that Debian is currently not frozen (and that the Oneiric
 release will very probably happen before Wheezy's), I really think
 that not uploading those packages to Debian first would be a shame,
 as this would only mean doubling efforts.

As a structural matter I think it's wrong to have either Debian or
Ubuntu end up being blocked on the other, if it can be avoided.  One
of the ways that free software really works well is that it enables
people to get their work done right away and worry about interacting
with others later.

One thing I have done a few times is to upload the very same package
simultaneously to (say) Debian and Ubuntu.

Where the package wants to be identical, and the person doing the
upload is the same, it would be nice if this could be made simpler.
At the moment you basically need to build the whole thing twice with
minor edits to the changelog to set the target suite.

It would be nice if this could be made simpler.  In principle it would
be nice if you could use the same .changes file for uploading to two
distros (provided that only one of them wants binaries) but that may
be too much to ask.

At the very least it should be possible to do one upload to two
distros without altering the debian/changelog.

For this to work I think the suite target in the changelog entry
should be qualified by the distro, so you could say (picking a random
example):

  picocom (1.4-1) debian:unstable ubuntu:oneiric; urgency=low

* new upstream version:
  - Changed the behavior of the C-a command. Now pressing C-a
   twice sends C-a to the serial port
  - Added the C-\ command that generates a break sequence
  - Added (optional) UUCP-lockfiles support

   -- Oliver Kurth o...@debian.org  Tue, 14 Sep 2004 11:25:07 -0700

or something.

What do people think ?

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



Re: Uploading to multiple distros

2011-06-02 Thread Iain Lane

On Thu, Jun 02, 2011 at 01:20:08PM +0100, Ian Jackson wrote:

Didier Raboud writes (Re: Color Management in Debian):

Given that Debian is currently not frozen (and that the Oneiric
release will very probably happen before Wheezy's), I really think
that not uploading those packages to Debian first would be a shame,
as this would only mean doubling efforts.


[...]

At the very least it should be possible to do one upload to two
distros without altering the debian/changelog.

For this to work I think the suite target in the changelog entry
should be qualified by the distro, so you could say (picking a random
example):

 picocom (1.4-1) debian:unstable ubuntu:oneiric; urgency=low

   * new upstream version:
 - Changed the behavior of the C-a command. Now pressing C-a
   twice sends C-a to the serial port
 - Added the C-\ command that generates a break sequence
 - Added (optional) UUCP-lockfiles support

  -- Oliver Kurth o...@debian.org  Tue, 14 Sep 2004 11:25:07 -0700

or something.


You can do this already by using syncpackage(1) from ubuntu-dev-tools — 
I don't think the archive software looks at the changelog, but the 
distribution in the changes file.


For normal syncs we generally advise not using syncpackage, but it 
might make sense when doing simultaneous uploads.


This at least works when uploading packages prepared for Debian to 
Ubuntu. I'm not sure how well Debian's infrastructure would cope if the 
changelog specifies an Ubuntu release.


Cheers,
Iain


signature.asc
Description: Digital signature


Re: Semantic change for dpkg triggers?

2011-06-02 Thread Ian Jackson
Raphael Hertzog writes (Semantic change for dpkg triggers?):
 I am considering changing the default behaviour of dpkg triggers. [1]
 Currently when a package activates a trigger (except if it uses
 dpkg-trigger directly with the --no-await option, and that is a minority
 of cases), the trigerring package ends up in triggers-awaited status
 and it doesn't satisfy dependencies.

 This tends to be not needed and requires trigger processing sooner than
 what's really required in many cases. Thus I am considering to change
 this: the triggering package would directly go to the installed status
 (the old behaviour could be kept if the package implementing the trigger
 switched to another trigger directive named interest-crucial for example
 instead of the usual interest).

In general, the reason for this rule about satisfying dependencies is
that a triggering package may well not be functional at all until the
trigger is run.  For example, if the triggering package T needs to be
registered with the interested package I, a package D which depends on
T may find that T does not work - and D's postinst may fail due to T
being broken.

But I can see that there might be a need for a less-restrictive
trigger, where the functionality which will be provided by trigger
processing is not crucial.  But it seems to me that whether the
functionality is crucial is at least as much a property of the
triggering package, not the interested package.

If a new behaviour is needed, it should have a new name.  Otherwise
you break existing packages.

So I would suggest:

 * New trigger directive trigger-noawait, works like 
   dpkg-trigger --no-await 

But we do also need a way to do this for file triggers:

 * New trigger directive interest-filenoawait which has the
   following semantics:
  - when triggered explicitly by name by a triggering package,
the triggering package awaits the trigger unless the
triggering package specifies --no-await
  - when triggered implicitly by installation of a file, the
triggering package does not await the trigger

 My question is thus: are there triggers currently in use where this
 relaxed behaviour would be wrong? Or more simply are there packages which
 are really not working before the processing of their awaited triggers?

I haven't done a survey but I would expect there to be some.

 Alternatively we could also discuss whether it would make sense
 to change the meaning of the triggers-awaited status to something where
 it would be enough to satisfy dependencies.

That would be wrong IMO.  If triggering without impeding dependencies
is required, simply going straight to installed is correct.

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



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Ian Jackson
Bernhard R. Link writes (Re: Behaviour of dpkg-source with 3.0 (quilt) and 
VCS and automatic patches):
 The more Debian packages you have seen, the more different ways you
 have encountered and the less likely you are to be confused or to
 forget to apply the patches before looking at the source, but as
 much as this kept repelling me from looking deeper into some packages
 even after some years of being DD, I can only imagine how someone not
 so deep into debian development is obstructed by this to help themselves
 and us.

Quite so.  The source code we supply is not there just for our
benefit.  It is also there so that our users can modify the software
to suit themselves, and run the modified versions.

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



Bug#628920: O: asunder -- GTK Audio CD ripper and encoder

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Asunder is in good shape, upstream is responsive (and would like to not
have his email made public).
-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87k4d4jt5y.fsf@turing.RAVNEHOLM26



Re: Uploading to multiple distros

2011-06-02 Thread Ian Jackson
Iain Lane writes (Re: Uploading to multiple distros):
 You can do this already by using syncpackage(1) from ubuntu-dev-tools ? 
 I don't think the archive software looks at the changelog, but the 
 distribution in the changes file.

I wasn't aware of syncpackage.  The manpage is quite discouraging.

 For normal syncs we generally advise not using syncpackage, but it 
 might make sense when doing simultaneous uploads.

Hrm.  So syncpackage generates a .changes for uploading to ubuntu from
the .dsc (which presumably came out of the Debian build).  That does
mean though that the Ubuntu target suite is not visible in the
changelog of the ultimate Ubuntu package.  And if the package is not
accepted into the Debian archive for any reason, the changelog is very
misleading because it looks like a sync from Debian.

 This at least works when uploading packages prepared for Debian to 
 Ubuntu. I'm not sure how well Debian's infrastructure would cope if the 
 changelog specifies an Ubuntu release.

Debian's archive tools don't look at the changelog either, I think.
But the .changes file is generated from it.  Both Debian and Ubuntu
will reject a .changes file containing unrecognised suites.

One way to enable simultaneous uploads would be to arrange for
dpkg-genchanges to filter out suites for other distros when
generating the .changes file.  Then you would have the same files
being uploaded but two different .changes files.

One .changes file would be nice but there are conceptual and practical
problems with 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/19943.34829.69443.412...@chiark.greenend.org.uk



Bug#628923: O: budy -- Binary Decision Diagram library

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, very low activity.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87hb88jryr.fsf@turing.RAVNEHOLM26



Bug#628924: O: changetrack -- automatic log book, recording what files were changed

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, very low maintenance.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87ei3cjrus.fsf@turing.RAVNEHOLM26



Re: Uploading to multiple distros

2011-06-02 Thread Stefano Rivera
Hi Ian (2011.06.02_14:54:37_+0200)
 I wasn't aware of syncpackage.  The manpage is quite discouraging.

It's discouraging for a reason, the Ubuntu archive admins would prefer
that we sync packages through them if possible (which results in ~1 days
wait). An API method for syncing (+ a button on launchpad) is supposed
to be available really soon now™.

 Hrm.  So syncpackage generates a .changes for uploading to ubuntu from
 the .dsc (which presumably came out of the Debian build).  That does
 mean though that the Ubuntu target suite is not visible in the
 changelog of the ultimate Ubuntu package.  And if the package is not
 accepted into the Debian archive for any reason, the changelog is very
 misleading because it looks like a sync from Debian.

Yes. It tries to do the same thing as the archive admins' sync script.
And obviously it can easily mislead people, which is why it should be
used with care, and has a big warning in the manpage.

 One way to enable simultaneous uploads would be to arrange for
 dpkg-genchanges to filter out suites for other distros when
 generating the .changes file.  Then you would have the same files
 being uploaded but two different .changes files.

Excepting the changelog bit, that's effectively what syncpackage does.
It doesn't modify anything except the .changes file, if possible.

SR

-- 
Stefano Rivera
  http://tumbleweed.org.za/
  H: +27 21 465 6908 C: +27 72 419 8559  UCT: x3127


-- 
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/20110602131914.go14...@bach.rivera.co.za



Bug#628935: O: libcrypto++ -- C++ class library of cryptographic schemes

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, upstream responsive and has a Debian guest
account for debugging failures.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87boygjrp7.fsf@turing.RAVNEHOLM26



Bug#628936: O: libfile-ncopy-perl -- Perl library for extended file copy functionality

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package has not been touched for years, very low activity upstream.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/878vtkjrge.fsf@turing.RAVNEHOLM26



Re: Uploading to multiple distros

2011-06-02 Thread William Grant
On 02/06/11 23:19, Stefano Rivera wrote:
 [snip]
 One way to enable simultaneous uploads would be to arrange for
 dpkg-genchanges to filter out suites for other distros when
 generating the .changes file.  Then you would have the same files
 being uploaded but two different .changes files.
 
 Excepting the changelog bit, that's effectively what syncpackage does.
 It doesn't modify anything except the .changes file, if possible.

Note that you can append the series name to any Launchpad upload path to
override the .changes file. eg. /ubuntu/oneiric will upload to oneiric
in the primary archive, /~wgrant/ppa/ubuntu/oneiric to oneiric in my PPA.

So you *can* use an identical .changes file, if you really want to.

This is deliberately not well documented, and is somewhat discouraged.

William



signature.asc
Description: OpenPGP digital signature


Bug#628937: O: libpam-ssh -- Use SSH keys to login and enable eg. single sign-on

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

pam-ssh has unclear upstream development, has a lot of Debian changes,
and in general need a firm hand.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/8762oojr86.fsf@turing.RAVNEHOLM26



Bug#628938: O: lua-mode -- Emacs mode for Lua programming

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, unclear upstream development.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/8739jsjr5k.fsf@turing.RAVNEHOLM26



Bug#628939: O: neko -- Virtual machine (byte code), interpreter and compiler

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, upstream responsive, low activity.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87zkm0ichg.fsf@turing.RAVNEHOLM26



Bug#628941: O: siggen -- Signal generation tools

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, very low activity upstream.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87wrh4icek.fsf@turing.RAVNEHOLM26



Bug#628942: O: sml-mode -- Emacs mode for Standard-ML programming

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, very low upstream activity.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87tyc8iccc.fsf@turing.RAVNEHOLM26



Bug#628943: O: trayer -- lightweight GTK-based systray

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, responsive (new) upstream.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87r57cic9g.fsf@turing.RAVNEHOLM26



Bug#628948: O: haxe -- Compiler for the Web-oriented haXe programming language

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Package in good shape, reposive upstream, although getting stable
upstream sources is little tricky.

The package has pseudo build failures on kFreeBSD because of the way
disks are mounted on the buildds.  I would suggest to simply exclude
kFreeBSD to avoid this hassle because the porters apparently cannot fix
it.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87oc2gibrx.fsf@turing.RAVNEHOLM26



Bug#628953: O: mercurial-buildpackage -- Utillities for maintaining a deb package in Hg repository

2011-06-02 Thread Jens Peter Secher
Package: wnpp
Severity: normal

Native package written by yours truly.  Pristine-tar part does not work
anymore, reason unknown.  Everything is written in haXe, which entails
some problems wrt. Process control  input/output, and I have created a
branch (combined-process-input-output) in which I have started taking
care of these problems, but you will need a good deal of dedication.  I
will help if needed.

-- 
Jens Peter Secher, GPG fingerprint 0EE5978AFE63E8A1.

A. Because it breaks the logical sequence of discussion.
Q. Why is top posting bad?



-- 
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/87ipsoiarc.fsf@turing.RAVNEHOLM26



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Scott Kitterman
On Thursday, June 02, 2011 05:11:30 AM Goswin von Brederlow wrote:
 Scott Kitterman deb...@kitterman.com writes:
  On Wednesday, June 01, 2011 10:26:59 AM sean finney wrote:
  On Wed, Jun 01, 2011 at 02:39:42PM +0200, Goswin von Brederlow wrote:
   And note that as maintainer or for the VCS copy you can allways
   configure debian/soruce/local-options to unapply patches if you so
   desire.
  
  This is something i've been doing quite happily and I think it is
  a pretty decent compromise for the user/maintainer use cases.
  
  If you're building from the VCS there may be a difference in behavior,
  but if you build a downloaded source package (or even a source package
  generated from the VCS), the behavior is consistant.
  
  I tend to touch many packages and only revisit them infrequently so I
  don't generally have a local copy of the package to have modified when I
  start work. So for me the general workflow for using
  debian/source/local-options would be something like:
  
  download package/check out fom VCS
 
 If it is from VCS and the workflow is with patches not checked in then
 why isn't there a debian/source/local-options already?
 
  oh, this is V3
  unapply patches
  add debian/source/local-options
  work on package
 
 Oh, this isn't a V3 packages. Read README.source, read debian/rules,
 read manpage of strange patch system, run debuild and read the log to
 figure out how this black box patches its source,  Works both ways.
 
 Note that you do not need to unapply patches or care about them at all
 to work on the package. So if you are doing an NMU or preparing a patch
 for the BTS then it is just:
 
 apt-get source foo
 work on package
 debuild
 test
 # Optionally: Just to be nice and fill out the header
 # This would be improved by the --record-changes discussed earlier
 edit debian/patches/debian-changes-version
 reportbug -A debian/patches/debian-changes-version foo
 (upload NMU)
 
 With 1.0 packages you frequently first have to learn about the patch
 system used before you can alter and build the package. That I think is
 the greatest benefit of 3.0 (quilt): For the simple case of quickly
 fixing a bug it is transparent and just works out of the box.
 
  apply patches if needed
 
 That is never needed as building does that as needed. Unless you mean
 going up and down the patch series while you work on the package. That
 you have with 1.0 + patch system as well. No change then.
 
  upload
  rm -fr the package
  
  debian/source/local-options doesn't really help me much  Not making the
  package source format 3 on the other hand conveniently provides the
  workflow I want in a persistent manner with no recurring effort needed.
  
  Scott K
 
 Hardly persistent. Half the packages will have stuff pre-applied from
 the diff.gz, half the packages will have $random patch system and the
 third half :) will even mix the two.
 
 I'm not saying 3.0 (quilt) is the ultimate format and I'm not saying
 nobody should still use 1.0. But please don't call the 1.0 packages we
 have in the archive consistent. If you just mean your own packages then
 you could change them all to have debian/source/local-options in their
 VCS too. If you mean other peoples packages then I don't see how you can
 claim they behave in any persistent manner.
 
 I think 3.0 (quilt) made a great step towards unifying the packaging of
 most of the 1.0 packages with a patch system. Nearly all of those can be
 easily changed to 3.0 (quilt) format to get a simple to use, flexible
 (for the maintainer) and uniform (for the user) behaviour. Not all of
 them but that is ok.

I agree that 3.0 (quilt) has a lot of advantages.  I don't find though that 1.0 
packages are particularly difficult to deal with as a rule.  Most of them 
either 
use no patch system (which I dislike for the same reason I don't like 3.0 
(quilt) applying patches by default) or quilt.  Sometimes I hit packages that 
still use dpatch or the CDBS simple patchsys.  These are easy enough to deal 
with using *-edit-patch.  Then there are a few odd cases that are difficult, 
but 
they are rare.  So I agree that they aren't consistent, but in practice this 
is easy enough to deal with.

When making a new package with modern DH based rules integrating quilt into a 
package is trivially simple, so ease of having quilt as your patch system 
really isn't an argument for 3.0 (quilt).

If 3.0 (quilt) didn't apply patches by default I'd have no reason not to just 
use it.  Keeping local_options in a VCS is a bit of a workaround for this, but 
it seems wrong to have a persistent diff between what's in the VCS for a 
package and what's in the archive.  I'd really like to have a way to just 
control this globally on my system.

Scott K


-- 
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/201106021030.13800.deb...@kitterman.com



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Stefano Rivera
Hi Scott (2011.06.02_16:30:13_+0200)
 Keeping local_options in a VCS is a bit of a workaround for this
...
 I'd really like to have a way to just control this globally on my system.

+1 to that. Esp for team-maintained packages where people have different
preferences, and QA work.

SR

-- 
Stefano Rivera
  http://tumbleweed.org.za/
  H: +27 21 465 6908 C: +27 72 419 8559  UCT: x3127


-- 
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/20110602145032.gp14...@bach.rivera.co.za



Re: Uploading to multiple distros

2011-06-02 Thread Martin Owens
On Thu, 2011-06-02 at 13:20 +0100, Ian Jackson wrote:
 For this to work I think the suite target in the changelog entry
 should be qualified by the distro, so you could say (picking a random
 example):
 
   picocom (1.4-1) debian:unstable ubuntu:oneiric; urgency=low
 
 * new upstream version: 

Why not just make ppa uploading simpler at the same time? (if you can
change the changelog file processing):

picocom (1.4-1) debian:unstable oneiric natty maverick lucid;
urgency=low

Instead of pushing 6 different packages, we could push just the one.
Have the tools search for a match and build for that archive.

Martin,


-- 
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/1307025634.3781.122.camel@delen



Re: Uploading to multiple distros

2011-06-02 Thread Cristian Henzel
I had this very same discussion with another packager and we came to the same
conclusion: changing stuff around a bit to make uploading to multiple
distributions easier, would greatly help packagers IMO.

One thing I would welcome, if possible, would be conditional build-deps, so that
you can set different build-deps for Debian/Ubuntu for example. I'm saying this
because my package for example depends on 'libappindicator-dev' in Ubuntu, but I
can't set this dependency in Debian, because that package doesn't exist there
(yet). Also, from what I've seen there are some packages which have different
names in Ubuntu/Debian, so a conditional build-depends might make
synchronisation of packages between different distributions a bit easier.
Now, one could also check how many packages actually *do* have different
build-depends fields in Ubuntu compared to Debian (not sure how I could do that)
to see how useful of an addition this would be.

For the changelog part, I thought *not* requiring a specific suite would also be
a good compromise. Then, in the case that a suite isn't specified, each
distribution would have a 'default' suite, where this package would be uploaded,
in Debian it might make sense to set 'sid' to default and in Ubuntu, the current
development version. Then, you only need to set a suite when you build the
package for a specific suite, and can have the 'default' package the same for
multiple distros.

-- 

Best regards,
Mit freundlichen Grüßen,

Cristian Henzel


-- 
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/4de7a60d.2050...@b3r3.info



Re: Uploading to multiple distros

2011-06-02 Thread Peter Samuelson

[Ian Jackson]
 Hrm.  So syncpackage generates a .changes for uploading to ubuntu from
 the .dsc (which presumably came out of the Debian build).  That does
 mean though that the Ubuntu target suite is not visible in the
 changelog of the ultimate Ubuntu package.  And if the package is not
 accepted into the Debian archive for any reason, the changelog is very
 misleading because it looks like a sync from Debian.

Since syncs from Debian are actually supposed to be the majority of
packages in Ubuntu anyway, why not just do that - a real sync, not a
fake simultaneous one.  I don't live in the Ubuntu dev universe, but
given how common of an operation this apparently is, I'd think the
tool(s) to do it would be mature and easy to use.  Sure, you have to
wait a few minutes until you get your ACCEPTED mail from dak, but what
of it?  The mail is your reminder to finish the job.

(And if the 'sync from debian' process can't pull your .dsc out of
incoming, that's something I imagine would be easy enough to add.)

 One way to enable simultaneous uploads would be to arrange for
 dpkg-genchanges to filter out suites for other distros when
 generating the .changes file.  Then you would have the same files
 being uploaded but two different .changes files.

I suppose you mean put that functionality into this syncpackage thing.
Because otherwise you're still going to need to run dpkg-genchanges
twice, once presumably by hand with some sort of suite override switch,
and that does rather break the abstractions of debian/rules, debhelper,
and the like.

-- 
Peter Samuelson | org-tld!p12n!peter | http://p12n.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/20110602152809.ga4...@p12n.org



Re: Uploading to multiple distros

2011-06-02 Thread Steve Langasek
On Thu, Jun 02, 2011 at 03:19:14PM +0200, Stefano Rivera wrote:
 Hi Ian (2011.06.02_14:54:37_+0200)
  I wasn't aware of syncpackage.  The manpage is quite discouraging.

 It's discouraging for a reason, the Ubuntu archive admins would prefer
 that we sync packages through them if possible (which results in ~1 days
 wait). An API method for syncing (+ a button on launchpad) is supposed
 to be available really soon now™.

Proof of concept for the button was shown around at the last UDS in early
May.  So we're hopeful that really soon now™ is measured in weeks.

  Hrm.  So syncpackage generates a .changes for uploading to ubuntu from
  the .dsc (which presumably came out of the Debian build).  That does
  mean though that the Ubuntu target suite is not visible in the
  changelog of the ultimate Ubuntu package.  And if the package is not
  accepted into the Debian archive for any reason, the changelog is very
  misleading because it looks like a sync from Debian.

 Yes. It tries to do the same thing as the archive admins' sync script.

It tries, but it does not succeed, which is why the archive admins
discourage its use.

-- 
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: Uploading to multiple distros

2011-06-02 Thread Iain Lane

On Thu, Jun 02, 2011 at 01:54:37PM +0100, Ian Jackson wrote:

[...]
Hrm.  So syncpackage generates a .changes for uploading to ubuntu from
the .dsc (which presumably came out of the Debian build).  That does
mean though that the Ubuntu target suite is not visible in the
changelog of the ultimate Ubuntu package.  And if the package is not
accepted into the Debian archive for any reason, the changelog is very
misleading because it looks like a sync from Debian.


Yes, this is one reason why it's probably better to wait for acceptance 
into Debian first before uploading anywhere else. NEW delays really 
are rather short these days in my experience so in all but the most 
urgent cases that would be the right thing to do.


Anyway, unless you're proposing changing the version string based on 
target distribution there is going to be confusion regardless IMO. It's 
simpler to just rebuild the source package with an Ubuntu changelog 
entry or wait the couple of days to sync. :-)


Regards,
Iain


signature.asc
Description: Digital signature


Re: Uploading to multiple distros

2011-06-02 Thread Matt Zimmerman
On Thu, Jun 02, 2011 at 01:54:37PM +0100, Ian Jackson wrote:
 Iain Lane writes (Re: Uploading to multiple distros):
  For normal syncs we generally advise not using syncpackage, but it 
  might make sense when doing simultaneous uploads.
 
 Hrm.  So syncpackage generates a .changes for uploading to ubuntu from
 the .dsc (which presumably came out of the Debian build).  That does
 mean though that the Ubuntu target suite is not visible in the
 changelog of the ultimate Ubuntu package.

That's true for most Ubuntu packages anyway, since the source packages are
copied unmodified from Debian.  We've accepted this since the beginning, as
it's certainly not worth modifying the package just to have this be correct.

It's similar to how in Debian, the changelog says the package was uploaded
to unstable but now it's in testing or stable having propagated there
unmodified.

 And if the package is not accepted into the Debian archive for any reason,
 the changelog is very misleading because it looks like a sync from Debian.

True, but perhaps harmless.

  This at least works when uploading packages prepared for Debian to 
  Ubuntu. I'm not sure how well Debian's infrastructure would cope if the 
  changelog specifies an Ubuntu release.
 
 Debian's archive tools don't look at the changelog either, I think.
 But the .changes file is generated from it.  Both Debian and Ubuntu
 will reject a .changes file containing unrecognised suites.
 
 One way to enable simultaneous uploads would be to arrange for
 dpkg-genchanges to filter out suites for other distros when
 generating the .changes file.  Then you would have the same files
 being uploaded but two different .changes files.

Yes, it seems like it would be straightforward enough to generate two
appropriate .changes files for this case, and it would do the right thing.

-- 
 - mdz


-- 
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/20110602165233.gc19...@alcor.net



British Chambers of Commerce Email: Strike action in current economic climate misguided

2011-06-02 Thread anndesmo
Hello,

My name is Anna Desmond, I saw your profile today through the help of chamber 
of commerce in Bamako the capital of Mali) and became interested in you, I will 
also like to know you the more,and I want you to send an email to my email 
address so I can give you my picture for you to know whom i am. Please i am 
waiting for your mail reply urgently. Remember that distance or color does not 
matter but love matters a lot in life

Best regards

Anna Desmond

Miss Anna Desmond saw this article on British Chambers of Commerce and thought 
you should see it.

Strike action in current economic climate misguided
Commenting on the decision by Council workers to hold walkouts in a dispute 
over pay
http://www.britishchambers.org.uk/zones/policy/press-releases_1/strike-action-in-current-economic-climate-misguided.html



--
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/opteronblade1ebbsvj001a6...@smtp.feedrrr.com



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Goswin von Brederlow
Guido Günther a...@sigxcpu.org writes:

 On Thu, Jun 02, 2011 at 11:11:30AM +0200, Goswin von Brederlow wrote:
 Scott Kitterman deb...@kitterman.com writes:
 
  On Wednesday, June 01, 2011 10:26:59 AM sean finney wrote:
  On Wed, Jun 01, 2011 at 02:39:42PM +0200, Goswin von Brederlow wrote:
   And note that as maintainer or for the VCS copy you can allways
   configure debian/soruce/local-options to unapply patches if you so
   desire.
  
  This is something i've been doing quite happily and I think it is
  a pretty decent compromise for the user/maintainer use cases.
  
  If you're building from the VCS there may be a difference in behavior,
  but if you build a downloaded source package (or even a source package
  generated from the VCS), the behavior is consistant.
 
  I tend to touch many packages and only revisit them infrequently so I 
  don't 
  generally have a local copy of the package to have modified when I start 
  work.  
  So for me the general workflow for using debian/source/local-options would 
  be 
  something like:
 
  download package/check out fom VCS
 
 If it is from VCS and the workflow is with patches not checked in then
 why isn't there a debian/source/local-options already?
 
  oh, this is V3
  unapply patches
  add debian/source/local-options
  work on package
 
 Oh, this isn't a V3 packages. Read README.source, read debian/rules,
 read manpage of strange patch system, run debuild and read the log to
 figure out how this black box patches its source,  Works both ways.
 
 Note that you do not need to unapply patches or care about them at all
 to work on the package. So if you are doing an NMU or preparing a patch
 for the BTS then it is just:
 
 apt-get source foo
 work on package
 debuild
 test
 # Optionally: Just to be nice and fill out the header
 # This would be improved by the --record-changes discussed earlier
 edit debian/patches/debian-changes-version
 reportbug -A debian/patches/debian-changes-version foo
 (upload NMU)

 The problem is that you don't have an underlying VCS here so it's hard
 to track what you've changed and split patches when doing more complex
 changes. So I'm usually using:

It automatically tracks what you've changed every time you build a
source package. That part is automatic.

Splitting the changes into suitable patches is another matter. The
easiest is to work on one thing at a time and rename the automatically
generated patch after each. If you do it all at once then you have to
split the resulting mess yourself.

But that is no worse than getting all the changes in the diff.gz and
having to split that into suitable patches.

 git-import-dsc --download package
 # If you want to unapply patches after the build:
 /usr/share/doc/git-buildpackage/examples/gbp-configure-unpatched-source

 which puts the package in a git repo with all the git add -p/git
 checkout -f/git format-patch features. But that's probably slightly of
 topic.
 Cheers,
  -- Guido

Yes. Evil attempt to do some product placement. :)

MfG
Goswin


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87r57ckt9g.fsf@frosties.localnet



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Goswin von Brederlow
Charles Plessy ple...@debian.org writes:

 Le Thu, Jun 02, 2011 at 11:11:30AM +0200, Goswin von Brederlow a écrit :
 
 apt-get source foo
 work on package
 debuild
 test
 # Optionally: Just to be nice and fill out the header
 # This would be improved by the --record-changes discussed earlier
 edit debian/patches/debian-changes-version
 reportbug -A debian/patches/debian-changes-version foo
 (upload NMU)

 Hi Goswin,

 this is how a change of a couple of characters become a much larger patch.  
 See
 for instance the following, which I have received in #606004 (not a NMU).

 http://launchpadlibrarian.net/60144486/samtools_0.1.12a-1_0.1.12a-1ubuntu1.diff.gz

 64 lines of patch for one line changed in examples/Makefile…

That is what happens if you blindly send a debdiff. Also no change
compared to a 1.0 + patchsystem package. The debdiff for 1.0 + quilt
would look exactly the same. For dpatch too iirc, or maybe 5 lines less.

The right thing to do would have been to fill out the patch header
properly and send just the patch. For both 1.0 and 3.0 format.

 I see that debcheckout now has a --source option with ‘auto’ as a default
 value, to “retrieve the remaining parts of the source using apt-get source 
 and
 move the files into the checkout” when only the debian directory of a 
 package
 is managed in a VCS.  In parallel, the most used patch systems honor the 
 Debian
 Policy's §4.9 by providing a ‘patch’ target for debian/rules.  So for 
 many
 packages, there is actually a quite uniform entry point.

 When working on actively maintained packages, I think that using debcheckout
 and committing the changes is more efficient as a whole.

 Cheers,

In which case you get the debian/source/local-options and the proper
patched or not patched behaviour depending on what the VCS system
workflow is using. So again. It makes no difference wether it is 1.0 or
3. format in that case.

MfG
Goswin


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87mxi0ksv2.fsf@frosties.localnet



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Goswin von Brederlow
Stefano Rivera stefa...@debian.org writes:

 Hi Scott (2011.06.02_16:30:13_+0200)
 Keeping local_options in a VCS is a bit of a workaround for this
 ...
 I'd really like to have a way to just control this globally on my system.

 +1 to that. Esp for team-maintained packages where people have different
 preferences, and QA work.

 SR

+1 for the global thing. But an alias can do that for the initial
unpacking of source packages.

But if you are working with a VCS then I don't think this has anything
to do with peoples preferences but with the workflow of the VCS. Wether
sources are commited with patches applied or not. Having the patch
behaviour differ from the workflow of the VCS is just trouble.

And I hope all team-maintained packages do use some VCS.

MfG
Goswin


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87ipsoksnr.fsf@frosties.localnet



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Goswin von Brederlow
Scott Kitterman deb...@kitterman.com writes:

 If 3.0 (quilt) didn't apply patches by default I'd have no reason not to just 
 use it.  Keeping local_options in a VCS is a bit of a workaround for this, 
 but 
 it seems wrong to have a persistent diff between what's in the VCS for a 
 package and what's in the archive.  I'd really like to have a way to just 
 control this globally on my system.

You have .git/.svn/.hg/CVS in your VCS and working directory but not in
the debian package. Or .*tags and .*ignore files and probably a bunch of
others. Only difference for local_options is that it isn't a hidden file
in the top dir.

MfG
Goswin


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87ei3cksid.fsf@frosties.localnet



Re: Uploading to multiple distros

2011-06-02 Thread Dustin Kirkland
On Thu, Jun 2, 2011 at 8:20 AM, Ian Jackson
ijack...@chiark.greenend.org.uk wrote:
...
 One thing I have done a few times is to upload the very same package
 simultaneously to (say) Debian and Ubuntu.

 Where the package wants to be identical, and the person doing the
 upload is the same, it would be nice if this could be made simpler.
 At the moment you basically need to build the whole thing twice with
 minor edits to the changelog to set the target suite.

 It would be nice if this could be made simpler.  In principle it would
 be nice if you could use the same .changes file for uploading to two
 distros (provided that only one of them wants binaries) but that may
 be too much to ask.

 At the very least it should be possible to do one upload to two
 distros without altering the debian/changelog.

I handle this using a set of scripts in Ubuntu's bikeshed package:
 * http://manpg.es/release-build
 * http://manpg.es/release

'release-build' builds me one binary package, which I test locally,
and gives me instructions on what to do next, if I want to proceed
with the upstream release and upload to a bunch of different places
simultaneously.  It also builds source packages for each of the
supported Ubuntu releases.  If my testing goes well, I'm informed to
run the 'release' command.

'release' then does a handful of things (like tagging the release,
bumping and opening the next version), and prints a series of commands
that I run manually, if I want to actually do the release (such as the
bzr push to the trunk, lp-project-upload to put the tarball on
Launchpad, dput of the backport changes file to that package's PPA,
and dput to Ubuntu Oneiric).  (If I had Debian Maintainer privileges,
I'd also simultaneously dput to Debian too).  I just used
release-test, release-build, and release to publish bikeshed-1.15, and
captured its log here:
 * http://paste.ubuntu.com/616969/

These helpers allow me to consistently release dozens of open source
projects simultaneously to the current development series of Ubuntu,
but also publish backports to PPAs of that same package for
Lucid/Maverick/Natty.  They keep me from making many of the most
common mistakes and allow me to upload pretty effortlessly.

These scripts are a little Ubuntu/Launchpad/Bzr specific, so I'm not
advocating their use to you (Debian), but acknowledging and supporting
Ian's suggestion to solve some duplication of effort!

-- 
:-Dustin

Dustin Kirkland
Ubuntu Core Developer


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



Re: Behaviour of dpkg-source with 3.0 (quilt) and VCS and automatic patches

2011-06-02 Thread Scott Kitterman
On Thursday, June 02, 2011 02:17:14 PM Goswin von Brederlow wrote:
 Scott Kitterman deb...@kitterman.com writes:
  If 3.0 (quilt) didn't apply patches by default I'd have no reason not to
  just use it.  Keeping local_options in a VCS is a bit of a workaround
  for this, but it seems wrong to have a persistent diff between what's in
  the VCS for a package and what's in the archive.  I'd really like to
  have a way to just control this globally on my system.
 
 You have .git/.svn/.hg/CVS in your VCS and working directory but not in
 the debian package. Or .*tags and .*ignore files and probably a bunch of
 others. Only difference for local_options is that it isn't a hidden file
 in the top dir.
 
True, but that's part of the internal structure of the VCS.  This isn't so I 
see it as different.

Scott K


-- 
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/201106021710.17035.deb...@kitterman.com



Re: Uploading to multiple distros

2011-06-02 Thread Barry Warsaw
On Jun 02, 2011, at 10:28 AM, Peter Samuelson wrote:

Since syncs from Debian are actually supposed to be the majority of
packages in Ubuntu anyway, why not just do that - a real sync, not a
fake simultaneous one.  I don't live in the Ubuntu dev universe, but
given how common of an operation this apparently is, I'd think the
tool(s) to do it would be mature and easy to use.  Sure, you have to
wait a few minutes until you get your ACCEPTED mail from dak, but what
of it?  The mail is your reminder to finish the job.

How can we help Ubuntu developers do the right thing?  Are there tools,
processes, or documentation that we can develop that would make it easy(er)
for someone who works on an Ubuntu machine, is well versed in Ubuntu culture
(processes, tools, etc), to integrate with Debian?

-Barry


signature.asc
Description: PGP signature


Bug#629001: ITP: libxml-atom-microformats-perl -- parse microformats in Atom content

2011-06-02 Thread Jonas Smedegaard
Package: wnpp
Severity: wishlist
Owner: Jonas Smedegaard d...@jones.dk

* Package name: libxml-atom-microformats-perl
  Version : 0.002
  Upstream Author : Toby Inkster toby...@cpan.org
* URL : http://search.cpan.org/dist/XML-Atom-Microformats/
* License : Artistic or GPL-1+
  Programming Lang: Perl
  Description : parse microformats in Atom content

 The XML::Atom::Microformats module brings the functionality of
 HTML::Microformats to Atom 1.0 Syndication feeds. It finds microformats
 embedded in the content elements (note: not summary) of Atom
 entries.
 .
 The general pattern of usage is to create an XML::Atom::Microformats
 object (which corresponds to an Atom 1.0 feed) using the new_feed
 method; then ask for the data, as a Perl hashref, a JSON string, or an
 RDF::Trine model.



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



Re: Uploading to multiple distros

2011-06-02 Thread Andres Rodriguez


 I handle this using a set of scripts in Ubuntu's bikeshed package:
  * http://manpg.es/release-build
  * http://manpg.es/release


+1! I have been using these scripts extensively to do my releases, and
preparing the packages to upload them into the archive or
PPA's. Specifically for TestDrive and PowerNap. A common example is
PowerNap, on which I use these scripts to prepare a release, test it, and
once I'm satisfied, I upload them to the PPA's without having to do manual
modifications to the changelogs and being able to easily release a backport
in PPA for PowerNap.

These scripts are a little Ubuntu/Launchpad/Bzr specific, so I'm not
 advocating their use to you (Debian), but acknowledging and supporting
 Ian's suggestion to solve some duplication of effort!


I agree with you Dustin that the use of scripts like this can resolve some
duplication! Even though they don't work with Debian itself, I don't see the
problem of adapting them to handle both cases and then making life easier
for everybody!

-- 
Andres Rodriguez (RoAkSoAx)
Ubuntu Server Developer
Systems Engineer


Re: Uploading to multiple distros

2011-06-02 Thread Brian May
On 3 June 2011 01:02, Cristian Henzel cri...@b3r3.info wrote:

 For the changelog part, I thought *not* requiring a specific suite would
 also be
 a good compromise.


Why do we even bother putting the suite into the changelog? I don't see the
point myself.

I believe it is the DISTRIBUTION header in the changes file that matters,
the changelog value is only used as a default for the DISTRIBUTION header
(unless overridden in the build process).

Once the file is uploaded, the value is not used again, and may become
obsolete, e.g. as the package migrates from unstable to stable.

Personally, my build script sets the DISTRIBUTION header automatically based
on the chroot I build the package in.
-- 
Brian May br...@microcomaustralia.com.au


Re: Uploading to multiple distros

2011-06-02 Thread Robert Collins
On Fri, Jun 3, 2011 at 2:40 AM, Martin Owens docto...@gmail.com wrote:
 On Thu, 2011-06-02 at 13:20 +0100, Ian Jackson wrote:
 For this to work I think the suite target in the changelog entry
 should be qualified by the distro, so you could say (picking a random
 example):

   picocom (1.4-1) debian:unstable ubuntu:oneiric; urgency=low

     * new upstream version:

 Why not just make ppa uploading simpler at the same time? (if you can
 change the changelog file processing):

 picocom (1.4-1) debian:unstable oneiric natty maverick lucid;
 urgency=low

 Instead of pushing 6 different packages, we could push just the one.
 Have the tools search for a match and build for that archive.

The challenge with ppas here  is that a package can only be built once
in a given archive: the binary package names are the same for all of
unstable/oneiric/natty/maverick/lucid : the APT archive which makes up
a PPA cannot present different binary versions for each series.

We could build only in lucid and then promote the package forward (the
same as doing a 'binary + source copy' between
lucid-maverick-natty-oneiric. For many packages though, that will
run into various dependency / toolchain hell issues - particularly
because source packages tend to be updated to build with the latest
dpkg/debhelper etc, rather than staying geared to build with lucids
dpkg.
-Rob


--
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/BANLkTinm+4q4BG_X3peEPHFnpPv=aqp...@mail.gmail.com



Re: Uploading to multiple distros

2011-06-02 Thread Evan Broder
On Thu, Jun 2, 2011 at 6:05 PM, Robert Collins
robe...@robertcollins.net wrote:
 On Fri, Jun 3, 2011 at 2:40 AM, Martin Owens docto...@gmail.com wrote:
 Why not just make ppa uploading simpler at the same time? (if you can
 change the changelog file processing):

 picocom (1.4-1) debian:unstable oneiric natty maverick lucid;
 urgency=low

 Instead of pushing 6 different packages, we could push just the one.
 Have the tools search for a match and build for that archive.

 The challenge with ppas here  is that a package can only be built once
 in a given archive: the binary package names are the same for all of
 unstable/oneiric/natty/maverick/lucid : the APT archive which makes up
 a PPA cannot present different binary versions for each series.

Hmm...a lot of this discussion seems to be getting caught up in the
ubuntu-devel moderation queue, but I'll try to guess context as best
as I can...

If you want to upload a package to a PPA for a bunch of versions
simultaneously, I'd recommend my backportpackage script in
ubuntu-dev-tools. You can do something like

  backportpackage --destination natty --destination maverick
--destination lucid --upload ppa:broder/ppa picocom_1.4-1.dsc

Or instead of a .dsc, you can give it a --source release (e.g.
oneiric) and a package name. It handles bumping (well, dropping) the
package version number appropriately (e.g. ~natty1). It can also build
locally (--build/-b) and save the build products (-w WORKDIR)

It will still push 3 different packages, but the generation and upload
process is totally automated, and it avoids issues with version
numbers, toolchains, and upgrades.

- Evan


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



Texas Invitation Mailing List Unsubscription Confirmation

2011-06-02 Thread Texas Invitation

This message has been sent to you as the final step to confirm your
email *removal* for the following list: 

Texas Invitation

To confirm this unsubscription, please follow the URL below:

http://hsvpp.com/cgi-bin/dada/mail.cgi/u/txinvite/debian-devel/lists.debian.org/5BcIX2RokH8d2/

(Click the URL above, or copy and paste the URL into your browser. 
Doing so will remove you to this list.)

---

The following is the description given for this list: 

This list is used to promote home lot sales in Hot Springs Village, AR. 
Subscribers to this list ARE entered in the 6th Annual Home Site Give Away. No 
purchase, attendance, or participation is required.  

---

This Closed-Loop Opt-Out confirmation email was sent to protect the privacy
of the owner of this email address. 

Furthermore, the following privacy policy is associated with this list: 

This list is the SOLE property of HSVPP Inc. The names and data on this list 
will not be shared, sold or rented in anyway. 

Please read and understand this privacy policy. 

If you did not ask to be removed from this particular list, please
do not visit the confirmation URL above. The confirmation for removal 
will not go through and no other action on your part will be needed.

To contact the owner of this email list, please use the address below: 

mailto:den...@hot-springs-village.net

The following physical address is associated with this mailing list: 

HSVPPI, 
7024 Arch Street, 
Little Rock, AR 72206
501-350-0227


- mailto:den...@hot-springs-village.net


--
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/20110602210957.48429...@hot-springs-village.net



Bug#629029: general: Screen scrambled up after hibernation wake up

2011-06-02 Thread etienne

Package: general
Severity: important


  Hello,

after the 2nd or 3rd wake up from hibernation, the screen is all  
scrambled and I have to reboot the computer (maybe killing X would be  
sufficient but in either case, my session goes down the drain).


   Etienne

P.S. Thanks for making Debian!

-- System Information:
Debian Release: 6.0.1
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



This message was sent using IMP, the Internet Messaging Program.




--
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/20110602210958.13004140zkmzh...@webmail.isr.ist.utl.pt



Accepted cdk 1:1.2.10-1 (source all)

2011-06-02 Thread Onkar Shinde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 30 May 2011 20:50:41 +0530
Source: cdk
Binary: libcdk-java
Architecture: source all
Version: 1:1.2.10-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Onkar Shinde onkarshi...@ubuntu.com
Description: 
 libcdk-java - Chemistry Development Kit (CDK) Java libraries
Closes: 627582 627683 627712
Changes: 
 cdk (1:1.2.10-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #627582, #627712)
   * debian/control
 - Drop bunch of not used build dependencies - libcommons-cli-java,
   libcrimson-java, libmysql-java, libpgjava, xsltproc.
 - Add javahelper as build dependency to use jh_classpath and jh_depends
   utilities.
   * debian/rules
 - Include javahelper.mk
 - Remove ant-nodeps, vecmath, log4j-1.2, commons-cli from build classpath.
   Build classpath is managed by upstream build system.
 - Remove modules which do not contain any class files when built - inchi,
   pdbcml, qsarxml.
 - Add logic to generate debian/classpath file. This file is used by
   jh_classpath to update classpath in manifest files. (Closes: #627683)
   * debian/patches/
 - 21_vecmath_lib_name.patch - Remove. Not needed anymore.
 - 22_fix_build.patch - Update as per current upstream source.
Checksums-Sha1: 
 b8f0ebc74c1260067c1690e3e32dddfe964a3a7d 2179 cdk_1.2.10-1.dsc
 68081168c20cc3e8ded28a7b89fbec031350c6f9 3898374 cdk_1.2.10.orig.tar.gz
 d2a91a05f414786491946cc3bd7a992bc88ac90b 10536 cdk_1.2.10-1.debian.tar.gz
 d6a5d2088307592ccbbfc57a7cd7cad550bd8ff1 9461310 libcdk-java_1.2.10-1_all.deb
Checksums-Sha256: 
 58d9c5704d199b7c6885da657118ac3a49a4bf2e212df6d3db63c009b597f1a1 2179 
cdk_1.2.10-1.dsc
 0e4196bb22b78954369fcfa2517d52220e89da669f25658921bce79383f93105 3898374 
cdk_1.2.10.orig.tar.gz
 404f2025db79a67b8554683a2d1dd5f9650e497290e7ef929fee443fc15ad53c 10536 
cdk_1.2.10-1.debian.tar.gz
 6d2fd73631e9916aa98b7be9531c0f6c7909cc149c554724c3a9814f14c405c4 9461310 
libcdk-java_1.2.10-1_all.deb
Files: 
 f904b794bcc6797b645d252145cc9529 2179 java optional cdk_1.2.10-1.dsc
 8fd60215cb6e4b52ebc8915aceb42a19 3898374 java optional cdk_1.2.10.orig.tar.gz
 0bb80594389323c2d1655bf1c2293c2d 10536 java optional cdk_1.2.10-1.debian.tar.gz
 916d9672d18d43ea6f8bc60a4172ad4b 9461310 java optional 
libcdk-java_1.2.10-1_all.deb

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

iQIcBAEBCAAGBQJN5yScAAoJECHSBYmXSz6WuUcP/i/gBEe0qk7zIiiAKnoyHYWr
GjSlTs0T1btAVChZLb24PiuCzpspx66+GiDg5OeiTGnKF9O/1SJyAPbpi+CHqxuF
kIzgqkshzs53kq2vYjfM2E7vPJtlJUe1hEpBrLgZ4DGoUrZlrb9H1XN40ARJBIXY
NVfqPW+qBfb6Ne4PVufyPDWV0bEBhQrGwqtTE6tcjAlfVl8P/7HjG1ytI0+bjqtb
eqy2ckYXoplUQo0E6k/C9zaJgoXibhxgkFkITOGRSIgONfh6HqFKCvpyvGEr5mpM
0o8LI4n4GW+GKXZ28KRlsqE2NlgMn39LZpojGCzqJ/1c4+2c+Fisi9zags4qP4tp
gs5iiB4m43JeDyGrdIpkPtbt2KTRpqz96cfFLmOXuQRmgOwjCRPWNWPeRrBqXssK
chx4m8hxoqDENM/pLIRxd0Ygt5nfGHLLMbSSGc7VG75pdJlaoccDZf1ZhxO/28EV
IskQBg12bw3BAbYTJkeqLbmIt61hdBKTx3XLsZzhCv1zIvulDHpFrrH2L7TaL49Q
rxkQBzFaEITXRnYX7yNcJyOwZXc5ReBAoUXf8FXz47SnJlJ4CmRuT7USs0OKHHLJ
E+4T7c+CXe9QMrE25iHEaSEmkZQ8pHntzdTaQYp/pdMHFVcpwrjfNp9DqCpYqEwb
K8DyFbRmBV146EMl5FNg
=Jcy+
-END PGP SIGNATURE-


Accepted:
cdk_1.2.10-1.debian.tar.gz
  to main/c/cdk/cdk_1.2.10-1.debian.tar.gz
cdk_1.2.10-1.dsc
  to main/c/cdk/cdk_1.2.10-1.dsc
cdk_1.2.10.orig.tar.gz
  to main/c/cdk/cdk_1.2.10.orig.tar.gz
libcdk-java_1.2.10-1_all.deb
  to main/c/cdk/libcdk-java_1.2.10-1_all.deb


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



Accepted logstalgia 1.0.3-2 (source amd64)

2011-06-02 Thread Francois Marier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jun 2011 17:49:03 +1200
Source: logstalgia
Binary: logstalgia
Architecture: source amd64
Version: 1.0.3-2
Distribution: unstable
Urgency: low
Maintainer: Andrew Caudwell acaudw...@gmail.com
Changed-By: Francois Marier franc...@debian.org
Description: 
 logstalgia - web server access log visualizer
Closes: 628802
Changes: 
 logstalgia (1.0.3-2) unstable; urgency=low
 .
   [ Andrew Caudwell ]
   * Fixed missing ttf-freefont dependency (Closes: #628802)
 .
   [ Francois Marier ]
   * Bump Standards-Version to 3.9.2
Checksums-Sha1: 
 1b9ff757610c1a3b862fd26da8f0bb32fd5b5959 1950 logstalgia_1.0.3-2.dsc
 76784065cea222006adeeac8efc23bc87765d852 3336 logstalgia_1.0.3-2.debian.tar.gz
 a266283fec3c94be904bb2820d108e74374bfe68 159166 logstalgia_1.0.3-2_amd64.deb
Checksums-Sha256: 
 a4ac60a60afaff99b24c39bbe5056d38b9b05e4cec7fe19532e3341e816eee48 1950 
logstalgia_1.0.3-2.dsc
 4400be5db8f8098cd756e8ba210e2ec4c1b11461cf5f793b6194c19ab8f04e23 3336 
logstalgia_1.0.3-2.debian.tar.gz
 9619a6c33813c7b9a5bd07ad8a7550259c19d5061069dc001389820dc2579b5b 159166 
logstalgia_1.0.3-2_amd64.deb
Files: 
 9b1a0b44034ec8ec85951a25bbcdc344 1950 web extra logstalgia_1.0.3-2.dsc
 6911ca846517b6f15e4747ab9c481713 3336 web extra 
logstalgia_1.0.3-2.debian.tar.gz
 bc479a1b3a5083534191b95b437e49b8 159166 web extra logstalgia_1.0.3-2_amd64.deb

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

iQIcBAEBCAAGBQJN5ySVAAoJEBYoHy4AfJjRMRAQALkotENyv4g/UjJHGGVBhnJN
bFJg8WNtC3wzyBNq3DIvxUph2NvVVnMm1epncW0GediJpcrorkLUvF3VEddmS4qq
iDJGXxB8FPZnon5YjbU/qfhVTrUGHJfQ0yQM2NsLCsfKR/zZ8q2YoIkbgqjtFzQ3
McdDC59wtAFDmvULBv2qSShmgFXmj02elNthAHpieVavuHYYh64/5c8vrV0gkEca
5GXJy4X8/x7+k+20mq8Fv10a99DdO3/ZuKZ9dubcTfT4c/iPLGmK4J0T9eUBAWKf
oHKo9Bf7mubzJ6moH+Nut+Vu791IkJ8oQcpHn2ZPof+T0ucjMfpT4cD848It7U9r
zopJ4LbbgFvYz15eU/O7R+xxXNmZM1c4qiC6Hz/oCcq4WvzS2iSSuWo/v1xaNGO7
BUOIEqAEvhbyec3nysPjLB7WlFQuWQ5mTk979qm1dOEvKLNwJd0w+/CVljgJWpab
5tXO04V54SU1MByBfubCx+UddgzQWzGH0f3XlwJCAspW5q/UiDe46EHVesCSrUDQ
6DnPVIuSgZwNuwMhTnwiKzpISIiiLNlus7xRcW8I10l7UWgDfWfcXD9VUiyMTvwI
O6/kPd1DRuvgKxIW5qNqe8JdxjeCvBYcsIpMR/hdGQmRFV55KorVAXMkgwUuqquD
7pIX8fU/XD8sBg6WqxtI
=ZJoS
-END PGP SIGNATURE-


Accepted:
logstalgia_1.0.3-2.debian.tar.gz
  to main/l/logstalgia/logstalgia_1.0.3-2.debian.tar.gz
logstalgia_1.0.3-2.dsc
  to main/l/logstalgia/logstalgia_1.0.3-2.dsc
logstalgia_1.0.3-2_amd64.deb
  to main/l/logstalgia/logstalgia_1.0.3-2_amd64.deb


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



Accepted opensc 0.12.1-1 (source amd64)

2011-06-02 Thread Eric Dorland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 01:31:38 -0400
Source: opensc
Binary: opensc
Architecture: source amd64
Version: 0.12.1-1
Distribution: unstable
Urgency: low
Maintainer: Eric Dorland e...@debian.org
Changed-By: Eric Dorland e...@debian.org
Description: 
 opensc - Smart card utilities with support for PKCS#15 compatible cards
Closes: 627241
Changes: 
 opensc (0.12.1-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #627241)
   * debian/control: Upgrade Standards-Version to 3.9.2.
   * debian/opensc.install: rutoken-tool has been removed.
   * debian/opensc.install: Add eidenv and piv-tool manpages.
Checksums-Sha1: 
 fa26db916feef1492c32965dcbbafcc88a5951c2 1255 opensc_0.12.1-1.dsc
 656524f2aef61cfeea60b7795ef5a942bcca6f30 1579129 opensc_0.12.1.orig.tar.gz
 246983ff390d38d33a422e27b93257ea5e731064 7456 opensc_0.12.1-1.debian.tar.gz
 09d717501365a75a68a79235ab75a681e902ab2c 1862220 opensc_0.12.1-1_amd64.deb
Checksums-Sha256: 
 0b2a266ef35a48e1b26df05d3eb856ec87e52628a62c06132e654f9a2801de3b 1255 
opensc_0.12.1-1.dsc
 e9b5812dd8024484c6bb7400fb3e638aca2e9b112a7ffb161c300fe2260b28c8 1579129 
opensc_0.12.1.orig.tar.gz
 c08e7b3808acc5293807e0d3ce6996dccbf7ade068bc424c6b21fd1f1077aa34 7456 
opensc_0.12.1-1.debian.tar.gz
 deb3f05cc16ff1696fe97d6970f561ef2aa27dd2c0ef3238661335ba0864b717 1862220 
opensc_0.12.1-1_amd64.deb
Files: 
 5fc29d022befab6dd0fe1450d86c62ff 1255 utils extra opensc_0.12.1-1.dsc
 62fe8d3ed1864556c1970d7c23d8d58e 1579129 utils extra opensc_0.12.1.orig.tar.gz
 bf49798892304da653d8224fae833d39 7456 utils extra opensc_0.12.1-1.debian.tar.gz
 2543d2aadb8f5be7c9a9a7716ec131a8 1862220 utils extra opensc_0.12.1-1_amd64.deb

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

iEYEARECAAYFAk3nKpQACgkQYemOzxbZcMZTmQCfXakp97M9/5701p0gwAHuIPc7
jt0Ani1ZXIT3CQfK6x09TsTPDJ7jLYcw
=lZsL
-END PGP SIGNATURE-


Accepted:
opensc_0.12.1-1.debian.tar.gz
  to main/o/opensc/opensc_0.12.1-1.debian.tar.gz
opensc_0.12.1-1.dsc
  to main/o/opensc/opensc_0.12.1-1.dsc
opensc_0.12.1-1_amd64.deb
  to main/o/opensc/opensc_0.12.1-1_amd64.deb
opensc_0.12.1.orig.tar.gz
  to main/o/opensc/opensc_0.12.1.orig.tar.gz


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



Accepted freetalk 3.2-7 (source amd64)

2011-06-02 Thread Kartik Mistry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 12:12:36 +0530
Source: freetalk
Binary: freetalk
Architecture: source amd64
Version: 3.2-7
Distribution: unstable
Urgency: low
Maintainer: Kartik Mistry kar...@debian.org
Changed-By: Kartik Mistry kar...@debian.org
Description: 
 freetalk   - console based Jabber client
Changes: 
 freetalk (3.2-7) unstable; urgency=low
 .
   * debian/control:
 + Updated short description to not use article
 + Do not recommend 'beep' on kFreebsd-* architectures
 + Updated to Standard-Version to 3.9.2
   * debian/copyright:
 + Updated as per latest DEP-5 specifications
Checksums-Sha1: 
 db8cd0293057e035ff0d0100dfe76e0fce5dc67f 1162 freetalk_3.2-7.dsc
 19f1bc2b46208675e8c2d00f0dd00ecd90e3e503 4973 freetalk_3.2-7.debian.tar.gz
 0807265412726ebc9f8298bc32203eee1d612d85 88004 freetalk_3.2-7_amd64.deb
Checksums-Sha256: 
 15e970c7b701f4243e5a50d1338a1c3606419f4c77916cc969e80b8ce5b2f612 1162 
freetalk_3.2-7.dsc
 7c36457e44bc47dd4ef2867d24bf56c716cecf40f753576db9f18b93c871e8c6 4973 
freetalk_3.2-7.debian.tar.gz
 fb1a904b494814806ea0212db8456f81fb102b014485206c945bf1170589264e 88004 
freetalk_3.2-7_amd64.deb
Files: 
 2a3960a820c4613c87ac5adc36968602 1162 net optional freetalk_3.2-7.dsc
 2c06f4f57d910ae0f52f0b234fdca479 4973 net optional freetalk_3.2-7.debian.tar.gz
 e0f260da6525bb9d0fd45734d291712c 88004 net optional freetalk_3.2-7_amd64.deb

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

iEYEARECAAYFAk3nOCAACgkQoRg/jtECjI21OQCfYbP+V67ET4iPFl19LcOc6Daz
yAkAoI93d3EsrnuyeKZdQCnHTe5S+jEu
=fKDe
-END PGP SIGNATURE-


Accepted:
freetalk_3.2-7.debian.tar.gz
  to main/f/freetalk/freetalk_3.2-7.debian.tar.gz
freetalk_3.2-7.dsc
  to main/f/freetalk/freetalk_3.2-7.dsc
freetalk_3.2-7_amd64.deb
  to main/f/freetalk/freetalk_3.2-7_amd64.deb


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



Accepted b43-fwcutter 1:014-4 (source all amd64)

2011-06-02 Thread Fabrizio Regalli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 31 May 2011 11:36:49 +0200
Source: b43-fwcutter
Binary: b43-fwcutter firmware-b43-installer firmware-b43-lpphy-installer 
firmware-b43legacy-installer
Architecture: source all amd64
Version: 1:014-4
Distribution: unstable
Urgency: low
Maintainer: Fabrizio Regalli fab...@fabreg.it
Changed-By: Fabrizio Regalli fab...@fabreg.it
Description: 
 b43-fwcutter - Utility for extracting Broadcom 43xx firmware
 firmware-b43-installer - Installer package for firmware for the b43 driver
 firmware-b43-lpphy-installer - Installer package for firmware for the b43 
driver (LP-PHY version
 firmware-b43legacy-installer - Installer package for firmware for the 
b43legacy driver
Closes: 628126
Changes: 
 b43-fwcutter (1:014-4) unstable; urgency=low
 .
   * Add proxy support for downloading. Closes: #628126
Checksums-Sha1: 
 69674b5024fb044de9978dafd37ee4ddd01e3c8b 1964 b43-fwcutter_014-4.dsc
 5bd22ff212f2238fce31c3c79aceeb4de72b0041 8166 b43-fwcutter_014-4.debian.tar.gz
 a1adcae147a98e9278145eb793790a1df8699db4 7340 
firmware-b43-installer_014-4_all.deb
 91035c615871291d3db4ef831316d2a9d465c4ac 6950 
firmware-b43legacy-installer_014-4_all.deb
 2953ea6614b78831306d5f3c2e95c855a413350e 7086 
firmware-b43-lpphy-installer_014-4_all.deb
 c910fcf6ade47260b2ea9897aaf0cc54ad8189e8 19162 b43-fwcutter_014-4_amd64.deb
Checksums-Sha256: 
 17113f63de18fe86d8b859b6c7bed3f4b54329ea41005af130f8863f67810f15 1964 
b43-fwcutter_014-4.dsc
 8d90e5bb66d760a642b16a8ad7dc88b13f98cebc3ef1b371192e8df1400abe16 8166 
b43-fwcutter_014-4.debian.tar.gz
 e5fd7a0931b7b5bea62dc55c32d413c82cc78567d07bd7a62724009f7e327668 7340 
firmware-b43-installer_014-4_all.deb
 11841a41835f21b5333789ce38dfffb5e6068c674d20dfd4cbba35456b34ffaf 6950 
firmware-b43legacy-installer_014-4_all.deb
 92a3a63b293087f0499db16215d5e72a31dcad9d89afa70328cae268544c27ec 7086 
firmware-b43-lpphy-installer_014-4_all.deb
 3e7bfa74be348a951dd7d4eb409d5059c5372eed35d7a874b5023fa22ba7897a 19162 
b43-fwcutter_014-4_amd64.deb
Files: 
 75ef2d1e854973825cc8082ff215209a 1964 contrib/utils optional 
b43-fwcutter_014-4.dsc
 99c50aaf3bf559e453996f6af81694c7 8166 contrib/utils optional 
b43-fwcutter_014-4.debian.tar.gz
 5892b12534a33c6771a3325263341ad5 7340 contrib/kernel optional 
firmware-b43-installer_014-4_all.deb
 159f774d8fb917e01dc2847e9f030c1c 6950 contrib/kernel optional 
firmware-b43legacy-installer_014-4_all.deb
 3d6c6a81019a5e30babee14ab901e275 7086 contrib/kernel optional 
firmware-b43-lpphy-installer_014-4_all.deb
 406c85ccc03faeea585754e370381581 19162 contrib/utils optional 
b43-fwcutter_014-4_amd64.deb

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

iQIcBAEBCAAGBQJN50j9AAoJEBLZsEqQy9jk5mQP/2dwuNJfQKcRA9z1hIcbnjyb
GOifEjYOjFBMIEGnSrzYmoSGp1UGP6TL52sVdKt8Jaq8t/bYg7605CuSsFs3fL63
mcIwzTHGIn6kATlJRMXAlan824/wm4pDSc7lvnzjF6CT/RR2NkE2eVtUa1qCXzEk
sf8IQbUbDsEeplcnqZcn0NFz4JiuJuu/AUwiUObQEWSbV01x8McsBH9d0E5CERiD
ckcIesoME1hZE2bhkL08mE5mf8IsOs3hfxwI1LF1fJ++cGhekhBWlzUxbqZRdlyf
3havM8wjv+2x10VZSqXddUNV4StxOIzqIq00gfmE+Dd5H+JIlpZSzKnjJpOu6id+
dGUvgObje+09sfFhLXoGtG/vU/Gj2SkRURWfLHMVJWX7F5uha1OmwSz90TvaD8Qy
9vG2bD2vwAE3yCLqlivoTOwxC+K94lywrfHb7uai+t2ocsUObckyElFMzQZP8oBa
lSwOYH+iD9TJlWL6Oy9CuLfVF6xQl680cr2KhjWbWb2Oal1IilbeAzOOr0nY6EL+
P5gtZ0FNBhWyJPQyT1oeG21iAw+eqrtrwOs3iyQ6ik1el0T7KSfb0aY9S1HBeUM9
wRGmAeqPeDHYy5BZjQ9ejtDr5QqlzAcSa44Q8GN4XyqRQZ9fJlm9y1sH4Hs93L6c
Nea2p3Phwo1LlCWS24Rg
=Ccm0
-END PGP SIGNATURE-


Accepted:
b43-fwcutter_014-4.debian.tar.gz
  to contrib/b/b43-fwcutter/b43-fwcutter_014-4.debian.tar.gz
b43-fwcutter_014-4.dsc
  to contrib/b/b43-fwcutter/b43-fwcutter_014-4.dsc
b43-fwcutter_014-4_amd64.deb
  to contrib/b/b43-fwcutter/b43-fwcutter_014-4_amd64.deb
firmware-b43-installer_014-4_all.deb
  to contrib/b/b43-fwcutter/firmware-b43-installer_014-4_all.deb
firmware-b43-lpphy-installer_014-4_all.deb
  to contrib/b/b43-fwcutter/firmware-b43-lpphy-installer_014-4_all.deb
firmware-b43legacy-installer_014-4_all.deb
  to contrib/b/b43-fwcutter/firmware-b43legacy-installer_014-4_all.deb


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



Accepted bcfg2 1.1.2-1 (source all)

2011-06-02 Thread Arto Jantunen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 11:50:12 +0300
Source: bcfg2
Binary: bcfg2 bcfg2-server
Architecture: source all
Version: 1.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Arto Jantunen vi...@debian.org
Changed-By: Arto Jantunen vi...@debian.org
Description: 
 bcfg2  - Configuration management client
 bcfg2-server - Configuration management server
Changes: 
 bcfg2 (1.1.2-1) unstable; urgency=low
 .
   * New upstream version 1.1.2
   * Patches 0004 and 0005 included upstream, remove them
   * Update Standards-Version to 3.9.2.0, no changes
Checksums-Sha1: 
 7968423f08794ceb4427bdf145a784c68176254a 1071 bcfg2_1.1.2-1.dsc
 a032b3d9ee314c7918c276e62a9e29635e289eec 1783891 bcfg2_1.1.2.orig.tar.gz
 880bfcdbad41012de1b0acbec0f554c7daeafd5b 15012 bcfg2_1.1.2-1.debian.tar.gz
 ebf3297b033789e184d10cb4f28a233c7c247ad1 94342 bcfg2_1.1.2-1_all.deb
 6ef1b08339f9ffa0b1fea2f2a9283e2f342bd88f 179072 bcfg2-server_1.1.2-1_all.deb
Checksums-Sha256: 
 a86a9f8efa476fbb3cbbc88bbce7a719df164f3f03828051dc1a4aec80f4e560 1071 
bcfg2_1.1.2-1.dsc
 1fcb65e62499b33e3e280e41901551b88f102ebc2a47bdc4a5f4191a95dc5b60 1783891 
bcfg2_1.1.2.orig.tar.gz
 99e4eaf5fa078fcebb73d4fd2d58325eb2be9219be3594220faa3c8ad277927a 15012 
bcfg2_1.1.2-1.debian.tar.gz
 89d1df38cb69182379486ed8adb75c01ee6a79c10496aee2e363f1fb7e243791 94342 
bcfg2_1.1.2-1_all.deb
 4a0e176bd98bc73062e47d8a4d635a170b268f7ad58898412937a54da9fa0983 179072 
bcfg2-server_1.1.2-1_all.deb
Files: 
 48ed6dd83affacf08bfb77ce7c5945d8 1071 admin optional bcfg2_1.1.2-1.dsc
 8e34ba164a8272a6614d075e332c2dec 1783891 admin optional bcfg2_1.1.2.orig.tar.gz
 220543ef0a181ea60c98c44cc64115ad 15012 admin optional 
bcfg2_1.1.2-1.debian.tar.gz
 4835d5c8ecf62fcbd8cbdba3a6bb7611 94342 admin optional bcfg2_1.1.2-1_all.deb
 3d67e5cd448f55a0634dc1ab9d928e67 179072 admin optional 
bcfg2-server_1.1.2-1_all.deb

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

iEYEARECAAYFAk3nUBUACgkQQ9/iJIjcFnqdRQCgg/Gh5voHlwvnmxuwHm5R3AEO
XxYAnjfaQc5buL0Z7Ve6hvbNXrr0qcr+
=9JtS
-END PGP SIGNATURE-


Accepted:
bcfg2-server_1.1.2-1_all.deb
  to main/b/bcfg2/bcfg2-server_1.1.2-1_all.deb
bcfg2_1.1.2-1.debian.tar.gz
  to main/b/bcfg2/bcfg2_1.1.2-1.debian.tar.gz
bcfg2_1.1.2-1.dsc
  to main/b/bcfg2/bcfg2_1.1.2-1.dsc
bcfg2_1.1.2-1_all.deb
  to main/b/bcfg2/bcfg2_1.1.2-1_all.deb
bcfg2_1.1.2.orig.tar.gz
  to main/b/bcfg2/bcfg2_1.1.2.orig.tar.gz


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



Accepted stardict-english-czech 20110601-1 (source all)

2011-06-02 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jun 2011 11:23:32 +0200
Source: stardict-english-czech
Binary: stardict-english-czech
Architecture: source all
Version: 20110601-1
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 stardict-english-czech - Stardict package for English-Czech dictionary
Changes: 
 stardict-english-czech (20110601-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 44d603fbcc1de988acd89f0f0d44e270801ca910 1980 
stardict-english-czech_20110601-1.dsc
 a9090f819982931eea8a2f2a41b5f3755ebd1d1b 4264260 
stardict-english-czech_20110601.orig.tar.gz
 ce29b4e022774bc9e041120f726299b6009d6945 9549 
stardict-english-czech_20110601-1.debian.tar.gz
 55b48ead5d0240cc17aaddbd52b7e6758f10dc8f 4260638 
stardict-english-czech_20110601-1_all.deb
Checksums-Sha256: 
 fa2e4b00c183d68734411132c93e3756a96872fa34d34002f57f8083f4cb4151 1980 
stardict-english-czech_20110601-1.dsc
 773b1eee99e2929eacc2e4dd24ab09656192a632fde7816437c6463eb5f2dd1d 4264260 
stardict-english-czech_20110601.orig.tar.gz
 f41de52117b6218572a3eb73a8d83d0a736aa3ec3f471cac9dfd69690343e277 9549 
stardict-english-czech_20110601-1.debian.tar.gz
 950d3c10018bf15d3a85c3bee588ed1187ea6a1879a85a79c1796fe1621d9b1e 4260638 
stardict-english-czech_20110601-1_all.deb
Files: 
 46b34edac7f90f66a349202e8adb5fe5 1980 non-free/text optional 
stardict-english-czech_20110601-1.dsc
 9e1ac8cc947f33fa7225cb43c844765b 4264260 non-free/text optional 
stardict-english-czech_20110601.orig.tar.gz
 835e75c69c52339746dc0ae68373dc99 9549 non-free/text optional 
stardict-english-czech_20110601-1.debian.tar.gz
 95ba97f36fd3684975478915c665773b 4260638 non-free/text optional 
stardict-english-czech_20110601-1_all.deb

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

iQIcBAEBCAAGBQJN51eQAAoJEGo39bHX+xdNgtUQAM/EhUYQy1pXVTQuXrzaK93X
c+1epPvim5xkpSSmE+tz3b4dsQiAwVRRPg7tFYAuRJ0jvZA7+NQXzHq3cb1TTCOA
lO+MciXZuqHif4viqRwoswe+Xa2tZBNyLt92FVMu9wZcgkauQ+QK/S1TVjYZ4Qz5
YEolrRS2+7WIDmXnbGgCD20ou5o7JS+GLHvr8abWB6m+r8dsTOV55fz8wsr+ARwe
xVqRHAF+EEReZuxmzZoJFtBRnNtg5zgerCfwgvCUHxIFqff2Bn5mKF8QIxS0dqWL
0/JKpvwN2bQJGYMGdN5tBiw1qf1jUOc7Z9xC8qiwn9lVvYUI8GIeAU+l1cTSFbEg
qvC9i26+L5tt5jYZoMOh6qVHNHYl4Xid72u9KuC45dT8Hw2tCa6F2sW6g2/YAJK3
O9j1xL8RaQF964mZUgVbZWUBLbRljkddcbQrLxASt6g6v38AOaQ0OPKrefyGVaYu
pBXfzigIx2l0P20iyrYWLZIdFuZl+xsM+56a/E6ap3tTResgQymja8FwoG+VJi4/
4ystRpDXrBeBFDSUhur6tagZJiapCFL9Gud3Pff/OCHebCsfQqVux6Q1JTJnMyGO
n3k9B7srBfAcm2uhKEkakrQKk01pNgDdIYPaTy8Tsa0W2vtVuFQTmeYGbOLJkhxC
MhVUau8GUUyxA8OqL0R1
=Y4iQ
-END PGP SIGNATURE-


Accepted:
stardict-english-czech_20110601-1.debian.tar.gz
  to 
non-free/s/stardict-english-czech/stardict-english-czech_20110601-1.debian.tar.gz
stardict-english-czech_20110601-1.dsc
  to non-free/s/stardict-english-czech/stardict-english-czech_20110601-1.dsc
stardict-english-czech_20110601-1_all.deb
  to non-free/s/stardict-english-czech/stardict-english-czech_20110601-1_all.deb
stardict-english-czech_20110601.orig.tar.gz
  to 
non-free/s/stardict-english-czech/stardict-english-czech_20110601.orig.tar.gz


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



Accepted pommed 1.39~dfsg-1 (source amd64)

2011-06-02 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 11:31:04 +0200
Source: pommed
Binary: pommed gpomme wmpomme
Architecture: source amd64
Version: 1.39~dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE jbla...@debian.org
Changed-By: Julien BLACHE jbla...@debian.org
Description: 
 gpomme - graphical client for pommed
 pommed - Apple laptops hotkeys event handler
 wmpomme- WindowMaker dockapp client for pommed
Changes: 
 pommed (1.39~dfsg-1) unstable; urgency=low
 .
   * New upstream release.
 .
   * debian/control:
 + Bump Standards-Version to 3.9.2 (no changes).
Checksums-Sha1: 
 92e5a08acaf2d36c900f5062a3922b2e1592 1223 pommed_1.39~dfsg-1.dsc
 5890126ba931e174cb6526592bcd499c526cf427 445434 pommed_1.39~dfsg.orig.tar.gz
 29dcf5764f600954c6952335c2c82ec4560ae470 8167 pommed_1.39~dfsg-1.debian.tar.gz
 b17467f0daebf6dcda0d291057eb03d172cc9ea8 61294 pommed_1.39~dfsg-1_amd64.deb
 de6e906f9645de94b1344fc216b71f6ee2af6a16 345050 gpomme_1.39~dfsg-1_amd64.deb
 dd5db6f6660aa80d04cc2bd9a3ff3c55a9b3a789 31764 wmpomme_1.39~dfsg-1_amd64.deb
Checksums-Sha256: 
 dc726e250ea99ff77bdbad7116e8ba12acd5bfb06875262cc5cc4e3245d2dd73 1223 
pommed_1.39~dfsg-1.dsc
 2d052c8eccc08f1dc070cc8d96316734afb7623ae849277857754b0233ded131 445434 
pommed_1.39~dfsg.orig.tar.gz
 8b7f91f3faf2a45c004b9361f43beae9a987fbc5a9e0f3716847944622cac5f2 8167 
pommed_1.39~dfsg-1.debian.tar.gz
 1e639a049c8a42d85bd5a24859f2710111ceabf436e38cb08b0e87412e0367a8 61294 
pommed_1.39~dfsg-1_amd64.deb
 cbe53e3375a835d2605d0e516c0714fc3f7552bd4610917d6af4228cb3e0b1a1 345050 
gpomme_1.39~dfsg-1_amd64.deb
 21a0f78b72448f79dea5b5c2aa9c0650705a14506adc411a11237dfafed75d6a 31764 
wmpomme_1.39~dfsg-1_amd64.deb
Files: 
 fe39e8d3d5199e17d63844c0b1e6e4d1 1223 utils optional pommed_1.39~dfsg-1.dsc
 057ac067dd900be87865f69201b3631b 445434 utils optional 
pommed_1.39~dfsg.orig.tar.gz
 aba579c1f7b4a19d86036ae0202a98cc 8167 utils optional 
pommed_1.39~dfsg-1.debian.tar.gz
 ddf890bc390d7b9075651b3ea8dfe523 61294 utils optional 
pommed_1.39~dfsg-1_amd64.deb
 e31dc6e560d103ba43ec68e0d9f959aa 345050 utils optional 
gpomme_1.39~dfsg-1_amd64.deb
 53ecb7f9a87abc669c9b0449c367629e 31764 utils optional 
wmpomme_1.39~dfsg-1_amd64.deb

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

iD8DBQFN51kozWFP1/XWUWkRApW8AJ9AQZ23LTmW1VaPy+yzfQtIqbCdUwCfRozk
UUMpRknYJlyrHJqZJ0uz5Js=
=MSGM
-END PGP SIGNATURE-


Accepted:
gpomme_1.39~dfsg-1_amd64.deb
  to main/p/pommed/gpomme_1.39~dfsg-1_amd64.deb
pommed_1.39~dfsg-1.debian.tar.gz
  to main/p/pommed/pommed_1.39~dfsg-1.debian.tar.gz
pommed_1.39~dfsg-1.dsc
  to main/p/pommed/pommed_1.39~dfsg-1.dsc
pommed_1.39~dfsg-1_amd64.deb
  to main/p/pommed/pommed_1.39~dfsg-1_amd64.deb
pommed_1.39~dfsg.orig.tar.gz
  to main/p/pommed/pommed_1.39~dfsg.orig.tar.gz
wmpomme_1.39~dfsg-1_amd64.deb
  to main/p/pommed/wmpomme_1.39~dfsg-1_amd64.deb


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



Accepted partman-partitioning 82 (source i386)

2011-06-02 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jun 2011 11:04:36 +0100
Source: partman-partitioning
Binary: partman-partitioning
Architecture: source i386
Version: 82
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 partman-partitioning - Partitioning operations for partman (udeb)
Changes: 
 partman-partitioning (82) unstable; urgency=low
 .
   * Use msdos disk label on mipsel/loongson-2e and mipsel/loongson-2f.
Checksums-Sha1: 
 20fac418f25c174fb32b46c5016ecaf1046476c5 1653 partman-partitioning_82.dsc
 b5bc46161ceca208a0a9893e65b2b1e37e359c89 201431 partman-partitioning_82.tar.gz
 fbcbc7c743a44df85f06c49a0bd8a386c1fa123c 200616 
partman-partitioning_82_i386.udeb
Checksums-Sha256: 
 62a1bfc9448a09b909587fdfdf2f80e3ab0bbf069084f1c04a905922e6eaf82b 1653 
partman-partitioning_82.dsc
 989d73a439c974b33b8b8dbd7c88ae4f4a6ecc17baf289b7e7642a2ee433497e 201431 
partman-partitioning_82.tar.gz
 695e6ac84717c994b85c22977061cbb5f25223ed0ea6bd79ef7fed42258c027c 200616 
partman-partitioning_82_i386.udeb
Files: 
 00421e8297a5fb9faf1acf99b756dca3 1653 debian-installer optional 
partman-partitioning_82.dsc
 fa4964d3abbfd129f88b03bbfa29aab8 201431 debian-installer optional 
partman-partitioning_82.tar.gz
 869f3d68a7d53f4758079ed027c20bbe 200616 debian-installer optional 
partman-partitioning_82_i386.udeb
Package-Type: udeb

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

iQIVAwUBTedgrTk1h9l9hlALAQik+A//c4gyP9AxNDZsDiuobPtIUAborx7mNCqX
fO3bNtsG5jA5G3bMBYJg7oR+cPVvctUFtVCrHIwo9hf93XNE7y4m9lBUPmfyTn3j
6/suL1QYbYwl+W57D5FqxRNjIvIshwExqqBSkTAK47JtKGWFppS4wETa2nmXLXaq
cXjkksQSYucmKpQuQDjOhzJDoqOHjwMSIivoVEjKN2KuCa87XuGNBUuXpMYhZfVX
bUFj7x9dtdz6Wd1zBcUhlb9SjUkepQiAJdxetqo09Ue9GP2yZxzfthEjl9lD8sPr
BYmfhnOpxwJ6qdE6BQo/19fnyQ39bPuOwbEe69evFH/cAXe3k64MSLOMMHiLFfPI
ej951/Kj80lyemuAnUSEGwqJdFarvZBrG7D9SLtXz+1TVtu9Bycus6NIEY/xSvVc
dQuGdqHzHQX2qnHjstNF6uo/BfVkKQunDJ3JPCGAjHhltjbqb6eFPG4qxEq9Iyry
72SpxtIG9fnKDkI+ssPKQEuH5PGZEtezHt++5svn4Phknew8Rl1D46rbRzYFQ4yI
NFRMUtFtt3IBAuJsr83+KEncdd3y7gLOh8qGoX+tfgBY2zHF6DJhYKCxHMbTfW1t
QiM/gkfZEkjLbVRguwJRqPxfLInBtMisVShrE9Tw5NqzimmDQMrjj7guM/zudzNT
umUHmsCzSYk=
=pLjB
-END PGP SIGNATURE-


Accepted:
partman-partitioning_82.dsc
  to main/p/partman-partitioning/partman-partitioning_82.dsc
partman-partitioning_82.tar.gz
  to main/p/partman-partitioning/partman-partitioning_82.tar.gz
partman-partitioning_82_i386.udeb
  to main/p/partman-partitioning/partman-partitioning_82_i386.udeb


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



Accepted radvd 1:1.8-1 (source amd64)

2011-06-02 Thread Ghe Rivero
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 08:20:52 +0200
Source: radvd
Binary: radvd
Architecture: source amd64
Version: 1:1.8-1
Distribution: unstable
Urgency: low
Maintainer: Ghe Rivero g...@debian.org
Changed-By: Ghe Rivero g...@debian.org
Description: 
 radvd  - Router Advertisement Daemon
Closes: 601975 604905 611297 615625 618266 628592
Changes: 
 radvd (1:1.8-1) unstable; urgency=low
 .
   * New upstream release
 - Fix segfault in timer handling. (Closes: #611297)
 - Fix error in DNSSL parsing (Closes: #615625)
 - Fix no respond on a tunnel interface after peer is reconnected
 (Closes: #628592)
   * Bumped Debian Policy Version 3.9.2
   * Added support for kfreebsd (Closes: #618266)
   * Remove pid file checking in init script (Closes: #604905)
   * Some clarifications in README.Debian file (Closes: #601975)
Checksums-Sha1: 
 0d805be4dd5feeacb695cc47b72f5a7f6fa79676 942 radvd_1.8-1.dsc
 56d76a9c88ffd58bfa3c853cb26dd85cebcff5f1 173761 radvd_1.8.orig.tar.gz
 2e2a7278e24e956393e2bc17223c545b9e5852fa 8103 radvd_1.8-1.diff.gz
 3e5412d7f31255b109d8516ee4b4e24b136802c3 74804 radvd_1.8-1_amd64.deb
Checksums-Sha256: 
 3d888ae64a806f725fc67c8b9c78de78254977eae3255fb674309060644a17bc 942 
radvd_1.8-1.dsc
 158a21f7bf5ae480c0f7ae1c0a734aeaa233659ad58ef2f392cb1c064cbfdad0 173761 
radvd_1.8.orig.tar.gz
 12471719c9c9b85dd66b99da6dda52c5f1cd5cfaa2032b0af3689e7c38a0bbc8 8103 
radvd_1.8-1.diff.gz
 783e27f9b36a152c5f00e755db12fc8325e48dc2db4fb6e582cf324a3357e259 74804 
radvd_1.8-1_amd64.deb
Files: 
 c4979db2d8c71fb7e6da9c057250b90b 942 net optional radvd_1.8-1.dsc
 50b4cfbdfa04d629d80437fd1d9e2aef 173761 net optional radvd_1.8.orig.tar.gz
 8e05ec59fc0d92c743038ee67286fdfa 8103 net optional radvd_1.8-1.diff.gz
 f5688d36fd8cfedfdc70e6b88d9ffd30 74804 net optional radvd_1.8-1_amd64.deb

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

iEYEARECAAYFAk3nTBQACgkQZttaNibwIPf0rwCfUaI++Hj5f4K8B38S0joaitTW
mIkAn2jdxakv711ADEfXsLjzPA/UVCF/
=1Lau
-END PGP SIGNATURE-


Accepted:
radvd_1.8-1.diff.gz
  to main/r/radvd/radvd_1.8-1.diff.gz
radvd_1.8-1.dsc
  to main/r/radvd/radvd_1.8-1.dsc
radvd_1.8-1_amd64.deb
  to main/r/radvd/radvd_1.8-1_amd64.deb
radvd_1.8.orig.tar.gz
  to main/r/radvd/radvd_1.8.orig.tar.gz


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



Accepted wmclock 1.0.14-1 (source amd64)

2011-06-02 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 12:07:58 +0200
Source: wmclock
Binary: wmclock
Architecture: source amd64
Version: 1.0.14-1
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE jbla...@debian.org
Changed-By: Julien BLACHE jbla...@debian.org
Description: 
 wmclock- dockable clock applet for Window Maker
Closes: 624484
Changes: 
 wmclock (1.0.14-1) unstable; urgency=low
 .
   * New upstream release.
 .
   * debian/control:
 + Do not recommend wmaker, as dockapps can be used with a number of other
   window managers (closes: #624484).
 + Bump Standards-Version to 3.9.2 (no changes).
Checksums-Sha1: 
 337cf207d34c3d75ba4a2c2b8b798c1dc24758d1 1068 wmclock_1.0.14-1.dsc
 99d385f7bd2a76565c31195ac7744ecc4ed7b0b2 38311 wmclock_1.0.14.orig.tar.gz
 d585753ba532fadc483f351d24438ef28ed82184 6104 wmclock_1.0.14-1.debian.tar.gz
 e5a44e3086358c8913069baa39e9cf1191294188 34860 wmclock_1.0.14-1_amd64.deb
Checksums-Sha256: 
 bcf4474a41adeeb1981c81865d5f1f2cd57df3594b71d55149c7c66dfe6d933c 1068 
wmclock_1.0.14-1.dsc
 9a05bd547bb1f855ea75374cfada9f14ef90592246362a91dcb2c580550db64d 38311 
wmclock_1.0.14.orig.tar.gz
 66a26b15bd588556e1923620cab0a57bfe7e44f3cb5560b2d29340003ba00628 6104 
wmclock_1.0.14-1.debian.tar.gz
 1dad4e205027e53c9d6137c72f0560e857566fa32cbc2f8d1297401317f339ff 34860 
wmclock_1.0.14-1_amd64.deb
Files: 
 fdbbbf31c9a56c35c06a5900167baf35 1068 x11 optional wmclock_1.0.14-1.dsc
 15a83f45e2baabec26b22a2153aa2417 38311 x11 optional wmclock_1.0.14.orig.tar.gz
 9d301126ba2552661331957b65027747 6104 x11 optional 
wmclock_1.0.14-1.debian.tar.gz
 c94c6c24f3709fcef0c9652a9f307a91 34860 x11 optional wmclock_1.0.14-1_amd64.deb

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

iD8DBQFN52ICzWFP1/XWUWkRAkuxAKCFsPGDnMNsZX44dqPZuxCA/3Mq2gCg2R1w
Z97fp8qySbT1sZfi1PJRhwU=
=XPvQ
-END PGP SIGNATURE-


Accepted:
wmclock_1.0.14-1.debian.tar.gz
  to main/w/wmclock/wmclock_1.0.14-1.debian.tar.gz
wmclock_1.0.14-1.dsc
  to main/w/wmclock/wmclock_1.0.14-1.dsc
wmclock_1.0.14-1_amd64.deb
  to main/w/wmclock/wmclock_1.0.14-1_amd64.deb
wmclock_1.0.14.orig.tar.gz
  to main/w/wmclock/wmclock_1.0.14.orig.tar.gz


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



Accepted wmauda 0.7-5 (source amd64)

2011-06-02 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 12:13:51 +0200
Source: wmauda
Binary: wmauda
Architecture: source amd64
Version: 0.7-5
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Julien BLACHE jbla...@debian.org
Description: 
 wmauda - remote-control dockapp for Audacious
Changes: 
 wmauda (0.7-5) unstable; urgency=low
 .
   * Orphaning the package.
 .
   * debian/control:
 + Set maintainer to Debian QA.
Checksums-Sha1: 
 bc88a529bbeaf60b997db458a2cbed2027d75a62 951 wmauda_0.7-5.dsc
 39c07755d4176592bd5d3cae6773a8fde130270f 3982 wmauda_0.7-5.diff.gz
 7453f52704c354704ec48dbf883760f3348be0ef 18274 wmauda_0.7-5_amd64.deb
Checksums-Sha256: 
 fad90b968120dc0da9172d74b52648cfbb7ce73e4ab254e01919f67be8cf1649 951 
wmauda_0.7-5.dsc
 4086ce8a74fdf8e6cc8140ec2d4d307160507f8f66ec6ef401f535256f1e4f6f 3982 
wmauda_0.7-5.diff.gz
 4a6490744de21c10bf8d82fb8a6fcd371ddcb76725a8167454f413bb06cfdc5d 18274 
wmauda_0.7-5_amd64.deb
Files: 
 b492189ea8526aaeb07594a93c91d154 951 sound extra wmauda_0.7-5.dsc
 9a051b30fba998cc018c225fcf2bec9a 3982 sound extra wmauda_0.7-5.diff.gz
 d6a96bb15ab36b69f113bb9a4b8e8c7f 18274 sound extra wmauda_0.7-5_amd64.deb

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

iD8DBQFN52NszWFP1/XWUWkRAkmPAJ9nMje4j0tsJ4Z4INuj1oR98Tod/QCgsIUM
/5UykVU+WiSrBYcaHGIQpAU=
=w4/U
-END PGP SIGNATURE-


Accepted:
wmauda_0.7-5.diff.gz
  to main/w/wmauda/wmauda_0.7-5.diff.gz
wmauda_0.7-5.dsc
  to main/w/wmauda/wmauda_0.7-5.dsc
wmauda_0.7-5_amd64.deb
  to main/w/wmauda/wmauda_0.7-5_amd64.deb


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



Accepted wmacpi 2.2~rc5-1 (source amd64)

2011-06-02 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 12:34:39 +0200
Source: wmacpi
Binary: wmacpi
Architecture: source amd64
Version: 2.2~rc5-1
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE jbla...@debian.org
Changed-By: Julien BLACHE jbla...@debian.org
Description: 
 wmacpi - ACPI battery monitor for WindowMaker
Changes: 
 wmacpi (2.2~rc5-1) unstable; urgency=low
 .
   * New upstream release.
   * Switch to source format 3.0 (quilt).
 .
   * debian/control:
 + Bump Standards-Version to 3.9.2 (no changes).
 + Do not recommend wmaker, as dockapps can be used with a number of other
   window managers.
 + Drop dpatch build-dep.
   * debian/rules:
 + Drop dpatch code.
Checksums-Sha1: 
 e867cdb7bbf7ace2005c60599b03a5e3f1c873e7 1090 wmacpi_2.2~rc5-1.dsc
 bf6524729dcc5b3e5b4cba4e3ac4be384c1ebf06 34743 wmacpi_2.2~rc5.orig.tar.gz
 d2ac1715e9e7560b932897a894ea5d6634c14458  wmacpi_2.2~rc5-1.debian.tar.gz
 8278c2b0625cf9ab3d7945bc3e69e02819adb040 33874 wmacpi_2.2~rc5-1_amd64.deb
Checksums-Sha256: 
 38c03571b1f9236405e9dc8d9eb0485cbe4fad4e613e588cd67d07e2721da314 1090 
wmacpi_2.2~rc5-1.dsc
 28f96d9ec69884c2455684466ed627091c9fec982af32cf46761b83bd22e6d75 34743 
wmacpi_2.2~rc5.orig.tar.gz
 ebca5e4ec2f7553c9c5398629ffbd295504a4c7591ddcb9666e0b63e1d4be678  
wmacpi_2.2~rc5-1.debian.tar.gz
 8eb11f854698ec1d5ea766f0c85c01c4f58511e13bc00a35acfd3d22337c0a43 33874 
wmacpi_2.2~rc5-1_amd64.deb
Files: 
 87ea0fc9c65cacce56a11b8a2c7508ae 1090 x11 extra wmacpi_2.2~rc5-1.dsc
 5e0ba18c3e9d860ffc5d69d634d4b105 34743 x11 extra wmacpi_2.2~rc5.orig.tar.gz
 93e81534ed1e188072ba5f1bc22493dc  x11 extra wmacpi_2.2~rc5-1.debian.tar.gz
 df250f671f480b6becf7b8c5d286ef05 33874 x11 extra wmacpi_2.2~rc5-1_amd64.deb

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

iD8DBQFN52eJzWFP1/XWUWkRAnOUAKCRJz+/rQTTV4FRV/PWK8C9cHeMMwCfV7yS
yyN+Vor3uzGKvrtQYS/fQ9o=
=F7K3
-END PGP SIGNATURE-


Accepted:
wmacpi_2.2~rc5-1.debian.tar.gz
  to main/w/wmacpi/wmacpi_2.2~rc5-1.debian.tar.gz
wmacpi_2.2~rc5-1.dsc
  to main/w/wmacpi/wmacpi_2.2~rc5-1.dsc
wmacpi_2.2~rc5-1_amd64.deb
  to main/w/wmacpi/wmacpi_2.2~rc5-1_amd64.deb
wmacpi_2.2~rc5.orig.tar.gz
  to main/w/wmacpi/wmacpi_2.2~rc5.orig.tar.gz


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



Accepted whitedune 0.30.10-1 (source all amd64)

2011-06-02 Thread Ghe Rivero
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 29 Apr 2011 19:23:37 +0200
Source: whitedune
Binary: whitedune whitedune-docs
Architecture: source all amd64
Version: 0.30.10-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Ghe Rivero g...@debian.org
Description: 
 whitedune  - graphical VRML97/X3D viewer, editor, 3D modeller and animation to
 whitedune-docs - documentation for whitedune
Closes: 623652
Changes: 
 whitedune (0.30.10-1) unstable; urgency=low
 .
   * New upstream version
   * debian/control:
 - Comaintenance set to pkg-multimedia team
 - recommends fonts (Close:#563925)
 - updated standards and fix lintian warning (src)
   * configure.ac: undepends on libxp (Closes: #623652)
   * ignore generated files
Checksums-Sha1: 
 067ed9b31cd0e018cb7e2de795ed560b9ff0f148 1469 whitedune_0.30.10-1.dsc
 6ceaa670402a180779f45e3b6ee5c3af9d7eff59 13487943 whitedune_0.30.10.orig.tar.gz
 7811651679b35eb4dce3465c2a674d02ef122742 9333 whitedune_0.30.10-1.debian.tar.gz
 039e5fd9766f144373f75a1f0248044dad0941f7 7481316 
whitedune-docs_0.30.10-1_all.deb
 dee32cc528b6b7559a98bc820f9cf65f636921e6 1703500 whitedune_0.30.10-1_amd64.deb
Checksums-Sha256: 
 d8f6d1e4ca7cfe798d031e97d377201037991c3286653d8c21aefae7b7a31ae6 1469 
whitedune_0.30.10-1.dsc
 46ac9eb20161f763d6fe8458ef72bce937e4d213330eac97dec2feeacbeef37d 13487943 
whitedune_0.30.10.orig.tar.gz
 3206b05b186c6c40b63e92691ab112f0bcd1165ccb815907801c8114962b8bd7 9333 
whitedune_0.30.10-1.debian.tar.gz
 9ddae22c0e813da5d0e7f436066ac2d716ab84ed50b4a36a7be0f4daea0ff0c3 7481316 
whitedune-docs_0.30.10-1_all.deb
 476bf67fd19326d0a2d459ce4a9a12ca6b495a3bd9ed6ca0a2bd9a40953c1aa0 1703500 
whitedune_0.30.10-1_amd64.deb
Files: 
 46de9bb6dfeb8ae862df5cbfb243ed39 1469 graphics optional whitedune_0.30.10-1.dsc
 09fcfe5cf99eec5d18ccd48bdf2478f9 13487943 graphics optional 
whitedune_0.30.10.orig.tar.gz
 971439c38295a6cfbae2b2826492a220 9333 graphics optional 
whitedune_0.30.10-1.debian.tar.gz
 8669871f9ae0aa4cc3c6ea2979fb3ec2 7481316 doc optional 
whitedune-docs_0.30.10-1_all.deb
 912c2435e0508c4fbb6bc8a2960622a1 1703500 graphics optional 
whitedune_0.30.10-1_amd64.deb

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

iEYEARECAAYFAk3naI4ACgkQZttaNibwIPcstwCfVNFj2ZU4xR7AU0rSAS7gd5RC
H50AoPMBWrnZW5RePJE0TrBcm+rMAZcH
=lpeK
-END PGP SIGNATURE-


Accepted:
whitedune-docs_0.30.10-1_all.deb
  to main/w/whitedune/whitedune-docs_0.30.10-1_all.deb
whitedune_0.30.10-1.debian.tar.gz
  to main/w/whitedune/whitedune_0.30.10-1.debian.tar.gz
whitedune_0.30.10-1.dsc
  to main/w/whitedune/whitedune_0.30.10-1.dsc
whitedune_0.30.10-1_amd64.deb
  to main/w/whitedune/whitedune_0.30.10-1_amd64.deb
whitedune_0.30.10.orig.tar.gz
  to main/w/whitedune/whitedune_0.30.10.orig.tar.gz


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



Accepted epiphany-browser 3.0.2-2 (source all amd64)

2011-06-02 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 13:02:26 +0200
Source: epiphany-browser
Binary: epiphany-browser epiphany-browser-data epiphany-browser-dev 
epiphany-browser-dbg gir1.2-epiphany-2.31
Architecture: source all amd64
Version: 3.0.2-2
Distribution: experimental
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 epiphany-browser - Intuitive GNOME web browser
 epiphany-browser-data - Data files for the GNOME web browser
 epiphany-browser-dbg - Debugging symbols for the GNOME web browser
 epiphany-browser-dev - Development files for the GNOME web browser
 gir1.2-epiphany-2.31 - GObject introspection data for the GNOME web browser
Changes: 
 epiphany-browser (3.0.2-2) experimental; urgency=low
 .
   * rules: create a new epiphany-newtab.desktop which is the handler for
 x-scheme-handler/http{,s} and has NoDisplay=true.
   * Drop epiphany-gecko and epiphany-webkit transitional packages.
   * 11_browse_to.patch: new patch. Fix “browse to” feature, by looking
 for inode/directory instead of x-directory/normal.
Checksums-Sha1: 
 abcee02532fa49e9b48f9b3b569715fa7675b9be 2402 epiphany-browser_3.0.2-2.dsc
 601817164ca2cbbf0a2333fb91cc5016188fd8fd 30788 
epiphany-browser_3.0.2-2.debian.tar.gz
 67e18ea28dbdbeb342cbe820a91f177e0c42a8e4 5703006 
epiphany-browser-data_3.0.2-2_all.deb
 3fb276ae054f59584687c4c89861e90d6bfe7059 1125130 
epiphany-browser-dev_3.0.2-2_all.deb
 cb150c00096cfa1a2f8f8b210fe74fc85144f3e7 1401500 
epiphany-browser_3.0.2-2_amd64.deb
 b054d34ad7594e9e68b41aab448f5392c29dc040 2020258 
epiphany-browser-dbg_3.0.2-2_amd64.deb
 839bec837d764295423dbed08dccf52c4f9e98ba 1044130 
gir1.2-epiphany-2.31_3.0.2-2_amd64.deb
Checksums-Sha256: 
 cca7e5b3377739f94043b8828d112a44104c8ecfdd0207c6328cf711e66e6f51 2402 
epiphany-browser_3.0.2-2.dsc
 9d0b2f9157d563722dfd7159baa971560d329056e71886a089e250b05082582d 30788 
epiphany-browser_3.0.2-2.debian.tar.gz
 3051c7d6e1d7be557690e720d0aa6b937e68623094a3ae5a28eb895471b7030c 5703006 
epiphany-browser-data_3.0.2-2_all.deb
 ce6ff6c437fbf2aa9db8ebc6cf807be426500d64f88f0772a7d228d88a1c254d 1125130 
epiphany-browser-dev_3.0.2-2_all.deb
 adddef3405e31fe3968461f4c66a6c80f0cfae3b0a1d646eb5cdeb59cb1ca1e5 1401500 
epiphany-browser_3.0.2-2_amd64.deb
 768a1366fdffd9cd6304b0de195273b530411443e7e4bc611d9c9ca70aff525e 2020258 
epiphany-browser-dbg_3.0.2-2_amd64.deb
 62b352ec24fbbc7120a0cb131e40eca0676fa6075a023512fcbb7faaedf1c26b 1044130 
gir1.2-epiphany-2.31_3.0.2-2_amd64.deb
Files: 
 9990d8d7b8a0c732b7cd0a65869762a0 2402 gnome optional 
epiphany-browser_3.0.2-2.dsc
 db1f97ce95eeb9e718866a0914d68e3d 30788 gnome optional 
epiphany-browser_3.0.2-2.debian.tar.gz
 d6aee944810d410c3f983476ca662cf0 5703006 gnome optional 
epiphany-browser-data_3.0.2-2_all.deb
 a607eec0ea8c3503bef176a39972ef28 1125130 devel optional 
epiphany-browser-dev_3.0.2-2_all.deb
 efee83f554be66d9cfc4beb52c49aa88 1401500 gnome optional 
epiphany-browser_3.0.2-2_amd64.deb
 5c01dd3a275492729ab7de2fd974c6d7 2020258 debug extra 
epiphany-browser-dbg_3.0.2-2_amd64.deb
 6a3d69fc05ec93ce7a62c43985c14c30 1044130 libs optional 
gir1.2-epiphany-2.31_3.0.2-2_amd64.deb

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

iD8DBQFN53KzrSla4ddfhTMRAjaSAJ0T1OQxEP5a9EOEYPfJYEAbxv3w7ACfS9kW
AmnJmj5yTE9bdxBZjCDS5Ag=
=q1nw
-END PGP SIGNATURE-


Accepted:
epiphany-browser-data_3.0.2-2_all.deb
  to main/e/epiphany-browser/epiphany-browser-data_3.0.2-2_all.deb
epiphany-browser-dbg_3.0.2-2_amd64.deb
  to main/e/epiphany-browser/epiphany-browser-dbg_3.0.2-2_amd64.deb
epiphany-browser-dev_3.0.2-2_all.deb
  to main/e/epiphany-browser/epiphany-browser-dev_3.0.2-2_all.deb
epiphany-browser_3.0.2-2.debian.tar.gz
  to main/e/epiphany-browser/epiphany-browser_3.0.2-2.debian.tar.gz
epiphany-browser_3.0.2-2.dsc
  to main/e/epiphany-browser/epiphany-browser_3.0.2-2.dsc
epiphany-browser_3.0.2-2_amd64.deb
  to main/e/epiphany-browser/epiphany-browser_3.0.2-2_amd64.deb
gir1.2-epiphany-2.31_3.0.2-2_amd64.deb
  to main/e/epiphany-browser/gir1.2-epiphany-2.31_3.0.2-2_amd64.deb


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



Accepted djvulibre 3.5.24-5 (source amd64)

2011-06-02 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 12:32:53 +0100
Source: djvulibre
Binary: libdjvulibre-dev libdjvulibre21 libdjvulibre-text djvulibre-dbg 
djvulibre-desktop djview djview3 djvuserve djvulibre-bin
Architecture: source amd64
Version: 3.5.24-5
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 djview - Transition package, djview3 to djview4
 djview3- Transition package, djview3 to djview4
 djvulibre-bin - Utilities for the DjVu image format
 djvulibre-dbg - Debug symbols for the DjVu image format
 djvulibre-desktop - Desktop support for the DjVu image format
 djvuserve  - CGI program for unbundling DjVu files on the fly
 libdjvulibre-dev - Development files for the DjVu image format
 libdjvulibre-text - Linguistic support files for libdjvulibre
 libdjvulibre21 - Runtime support for the DjVu image format
Changes: 
 djvulibre (3.5.24-5) unstable; urgency=low
 .
   * fix kbsd pthreads linkage more gently
Checksums-Sha1: 
 fbf70b49b0bd0225be09f8f4d0b55a02df344909 1454 djvulibre_3.5.24-5.dsc
 23e7e0c4cbbe4fc928b5c8e53f5b749cf88d6701 65972 djvulibre_3.5.24-5.debian.tar.gz
 9cdb85a17bdd0e2845851f9df476c9e066393624 1751438 
libdjvulibre-dev_3.5.24-5_amd64.deb
 35abb0ddbb75377c4d3569af1b0be5db3d020619 719526 
libdjvulibre21_3.5.24-5_amd64.deb
 820d1d53e05f5b3f06f952d9eb28c06d8d3c4af2 75136 
libdjvulibre-text_3.5.24-5_amd64.deb
 767e0387e0d12d031872dc76712d92e774ffd953 118828 
djvulibre-dbg_3.5.24-5_amd64.deb
 f479f3454c8321587c983fc5b1da9667e52dd40f 34042 
djvulibre-desktop_3.5.24-5_amd64.deb
 f8899be9a666c9692e5da55e3cce532f0db87ed3 12594 djview_3.5.24-5_amd64.deb
 386ae99b6bf75c0bd0cbc917c3721783efa0da8c 12590 djview3_3.5.24-5_amd64.deb
 b5744d62f09f22a0b152d6d1dbfaf6f8a433592a 34386 djvuserve_3.5.24-5_amd64.deb
 7ff7258f6006132995586b3310a48d91d19da466 386524 
djvulibre-bin_3.5.24-5_amd64.deb
Checksums-Sha256: 
 8ccac0ff1a4aa3359be9e53f944ab690ac0ccaa20e1b758fbf480da8f6c17625 1454 
djvulibre_3.5.24-5.dsc
 79d2aa78d55014119a7d67a708e0a19b90d4a4e80292dabb93b63172a324f319 65972 
djvulibre_3.5.24-5.debian.tar.gz
 1bd55bd04929f4251f22971dbacb2fc50594cfbeae3a9107b18afd4ef774bb98 1751438 
libdjvulibre-dev_3.5.24-5_amd64.deb
 6313a84c4c0ee1b04f5973c9e0e52ac7fd8c8a8b78f5490eeb90831687e15b0f 719526 
libdjvulibre21_3.5.24-5_amd64.deb
 debb528bbddf1db6b3b704853b1b2d88e3d72a8abf93e9b0d9154e1b28018fe5 75136 
libdjvulibre-text_3.5.24-5_amd64.deb
 6894ddfdbe6d61f76bd4d346a6cfa1eeea9f1ed0bb58d28bd4bd96a447accc7d 118828 
djvulibre-dbg_3.5.24-5_amd64.deb
 544b955646b9e1f9bf2ff037824f12ccfc59c28f742b6c86c2342d91c4f623a0 34042 
djvulibre-desktop_3.5.24-5_amd64.deb
 99610929cd7584976b566c49c71d2554e29d6b4b8dd4ff949fc4b395578889ad 12594 
djview_3.5.24-5_amd64.deb
 dee82e2236996d1551b1bfa50105f0a07542535ad1629afaa3ec9680285760a6 12590 
djview3_3.5.24-5_amd64.deb
 6b50495fcbfb906430d881915ee2bbdae1de03e677e8edf0ab1e1ef80f8a669f 34386 
djvuserve_3.5.24-5_amd64.deb
 ea589829a7eca8255367a5bf13f98d40d446bc29b8f61f0144531f1ed89438db 386524 
djvulibre-bin_3.5.24-5_amd64.deb
Files: 
 e0fc63a3e5ebffad581d61ca501ec4a5 1454 web optional djvulibre_3.5.24-5.dsc
 1cdca5a6485e86b4bbecadee86c43daa 65972 web optional 
djvulibre_3.5.24-5.debian.tar.gz
 e3fed13c47793715ec2bc7e0c9bccde2 1751438 libdevel optional 
libdjvulibre-dev_3.5.24-5_amd64.deb
 68b724b5f7ea994578ba674f905f4177 719526 libs optional 
libdjvulibre21_3.5.24-5_amd64.deb
 b84cee33f776fca0c43ef88e8bd4f706 75136 libs optional 
libdjvulibre-text_3.5.24-5_amd64.deb
 b79b3f9fbc2a856a8dfb9ecaf04d845b 118828 debug extra 
djvulibre-dbg_3.5.24-5_amd64.deb
 a412c064e6ae3bfc781d715e9251ac5b 34042 libs optional 
djvulibre-desktop_3.5.24-5_amd64.deb
 38cc4e235393338a1df7358438b36fcd 12594 graphics optional 
djview_3.5.24-5_amd64.deb
 7c02b43e9003635afbe13e58e7a9f0d4 12590 graphics optional 
djview3_3.5.24-5_amd64.deb
 876f89db78c207eadb386fb8448db3a9 34386 web optional 
djvuserve_3.5.24-5_amd64.deb
 7bbe540dffc050deb76aad36646d8cb7 386524 graphics optional 
djvulibre-bin_3.5.24-5_amd64.deb

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

iEYEARECAAYFAk3ndkcACgkQLz4Gnv7CP7IZAwCgm8zW4xxsLAfHNfAG7yujzxe0
V5AAn1nKg3YOug0IEpOTQ8NBKl6pGbwY
=PTSh
-END PGP SIGNATURE-


Accepted:
djview3_3.5.24-5_amd64.deb
  to main/d/djvulibre/djview3_3.5.24-5_amd64.deb
djview_3.5.24-5_amd64.deb
  to main/d/djvulibre/djview_3.5.24-5_amd64.deb
djvulibre-bin_3.5.24-5_amd64.deb
  to main/d/djvulibre/djvulibre-bin_3.5.24-5_amd64.deb
djvulibre-dbg_3.5.24-5_amd64.deb
  to main/d/djvulibre/djvulibre-dbg_3.5.24-5_amd64.deb
djvulibre-desktop_3.5.24-5_amd64.deb
  to main/d/djvulibre/djvulibre-desktop_3.5.24-5_amd64.deb
djvulibre_3.5.24-5.debian.tar.gz
  to main/d/djvulibre/djvulibre_3.5.24-5.debian.tar.gz
djvulibre_3.5.24-5.dsc
  to main/d/djvulibre/djvulibre_3.5.24-5.dsc
djvuserve_3.5.24-5_amd64.deb
  to main/d/djvulibre/djvuserve_3.5.24-5_amd64.deb

Accepted libdatetime-format-natural-perl 0.96-1 (source all)

2011-06-02 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 Jun 2011 13:19:57 +0200
Source: libdatetime-format-natural-perl
Binary: libdatetime-format-natural-perl
Architecture: all source
Version: 0.96-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 libdatetime-format-natural-perl - Perl module for parsing human-readable 
date/time strings
Changes: 
 libdatetime-format-natural-perl (0.96-1) unstable; urgency=low
 .
   * New upstream release.
   * Refresh do-not-install-dateparse.patch.
Checksums-Sha1: 
 b325ee394f458bea9f0e76aef58850dab05a590c 2554 
libdatetime-format-natural-perl_0.96-1.dsc
 437050631e1aeb79f8bb17a624fa79c441cbb307 65493 
libdatetime-format-natural-perl_0.96.orig.tar.gz
 e11e6c676156d98d11d1dcc545fc5065160418f1 4123 
libdatetime-format-natural-perl_0.96-1.debian.tar.gz
 d83da43083d4b81d04d8665edfffdb14f1a22f1a 75084 
libdatetime-format-natural-perl_0.96-1_all.deb
Checksums-Sha256: 
 7e522cd02d1fbab2e8948cbc682a499d29fe4e9b3a6121606ff1611769ea02be 2554 
libdatetime-format-natural-perl_0.96-1.dsc
 3ed5c85bf2da4cae7b3a394603356499e33de8e259d4f8e4808c6b8d3ee92ddb 65493 
libdatetime-format-natural-perl_0.96.orig.tar.gz
 ffc2baa216a80108659481fc010805292cc035228166209cf04d2b3afc063a6f 4123 
libdatetime-format-natural-perl_0.96-1.debian.tar.gz
 16ef35da7dccaaa4158433555c816292b13ca0e014f1959df0a677495be3cfb6 75084 
libdatetime-format-natural-perl_0.96-1_all.deb
Files: 
 bbf6ed8d0fe040e7d62ac8fe2eaef5eb 2554 perl optional 
libdatetime-format-natural-perl_0.96-1.dsc
 d61ff809f4b6376de968c2df7ce180ee 65493 perl optional 
libdatetime-format-natural-perl_0.96.orig.tar.gz
 9ec3cc359e3b9dfb7c2ee01b13d43f48 4123 perl optional 
libdatetime-format-natural-perl_0.96-1.debian.tar.gz
 c751ee963a54848fc2e74d4329021613 75084 perl optional 
libdatetime-format-natural-perl_0.96-1_all.deb

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

iQIcBAEBCgAGBQJN53dQAAoJEIATJTTdNH3IKaAQAMyQCyG9lspDuMUzxKjYd5Dy
gOpULD3ytndsMx29bFL+nYxUJQ1yB+fcZ8r6aHQNJR4WmCe1BmjAPY0wmoh/31LA
O1uahs5ZcNCDe9OQ15N66xd/wiDV0id3FUDFXPnOq/ADpiwNyW5niD1DNu91qthU
/3zCXJl5SsiS3cMhRTG6G/rsxYJKw3HoyXORVXJ0fVI2CrOwHC96Q/ryiY/XOe9R
3vc4m5FSE81wNdb0EjJGrf59InQc2fEJ9YRBv1B6xPwHeazKfKuGu7qQXE4IAJ05
3cJ/WprZeXUzwwVVqnW2sS0ZxSDcV1yV7Qo7oMjnWelces+oH9PZ+1OfAp3rJUCq
CyrgoUbMiBfF8nVq6HjAXelyJZt60fPh6ZCGphVFZABxTA5YlE6AO5BXLpMNs9W8
fVtL6lcTpMP4dHjYmNSKeu6S0zZvsGMJGXu6YBcbVxrdHA75lkchfkhEHPsEHKLv
Gbi1A8IOvvZjd8SpEQHedDdBgLygigl0kkW6hQK1Qy3Rb1EGV+nm2DV4e1eYeNoM
ltZHSFQKY2j2XlLVWEUmRTsbW2r4X/oLgxHmBxdfFb7CZh3LuLPD/J5X/eUClqNJ
ggIpwsZlHMiz6uzKv88ITn1WoUerrZkMGyMdE9p428SCKlG8QgWsT8kVZJY3PxG4
oqZ7Zc5G7WSIzDlUhpi6
=eH+W
-END PGP SIGNATURE-


Accepted:
libdatetime-format-natural-perl_0.96-1.debian.tar.gz
  to 
main/libd/libdatetime-format-natural-perl/libdatetime-format-natural-perl_0.96-1.debian.tar.gz
libdatetime-format-natural-perl_0.96-1.dsc
  to 
main/libd/libdatetime-format-natural-perl/libdatetime-format-natural-perl_0.96-1.dsc
libdatetime-format-natural-perl_0.96-1_all.deb
  to 
main/libd/libdatetime-format-natural-perl/libdatetime-format-natural-perl_0.96-1_all.deb
libdatetime-format-natural-perl_0.96.orig.tar.gz
  to 
main/libd/libdatetime-format-natural-perl/libdatetime-format-natural-perl_0.96.orig.tar.gz


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



Accepted libdatetime-format-pg-perl 0.16006-1 (source all)

2011-06-02 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 Jun 2011 13:13:02 +0200
Source: libdatetime-format-pg-perl
Binary: libdatetime-format-pg-perl
Architecture: all source
Version: 0.16006-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 libdatetime-format-pg-perl - module for parsing and formatting PostgreSQL 
dates and times
Changes: 
 libdatetime-format-pg-perl (0.16006-1) unstable; urgency=low
 .
   * New upstream release.
   * Update my email address.
   * debian/copyright: Update for new upstream release; refer to GPL-1; refer
 to Debian systems instead of Debian GNU/Linux systems.
   * Bump Standards-Version to 3.9.2.
Checksums-Sha1: 
 3dfdf52025d4e79c5204df1cbd10855ac6970a7a 2361 
libdatetime-format-pg-perl_0.16006-1.dsc
 11039b39e9591c71924f1c2e1d7e2bc6eea9997f 37232 
libdatetime-format-pg-perl_0.16006.orig.tar.gz
 0e8448e9b6be8fb4d48526031918694d7da374cf 2912 
libdatetime-format-pg-perl_0.16006-1.debian.tar.gz
 1c65bfa299ee2e433637151766b725110781f05e 18894 
libdatetime-format-pg-perl_0.16006-1_all.deb
Checksums-Sha256: 
 650c4d687a7d8c8be1f71d5f4a22ded7508dcdb7c32dc27d71dc8f7ce4a1b473 2361 
libdatetime-format-pg-perl_0.16006-1.dsc
 47129f24b089c5469adb2f22b06d1095631927c0aa027b814d63fb2342472098 37232 
libdatetime-format-pg-perl_0.16006.orig.tar.gz
 6bb362903303983502701ad61c9addbbe6a74c064940343c3579bb5ff9237bd3 2912 
libdatetime-format-pg-perl_0.16006-1.debian.tar.gz
 33527c6e8875dc06557c04e22350803ffa1323595cb2832632c1d9d8c6998d76 18894 
libdatetime-format-pg-perl_0.16006-1_all.deb
Files: 
 83b4345fb2802c77328a45be818d3d69 2361 perl optional 
libdatetime-format-pg-perl_0.16006-1.dsc
 42070b37dbbe10961614c0900a55f1b0 37232 perl optional 
libdatetime-format-pg-perl_0.16006.orig.tar.gz
 42b3426d6e8584178f841adc3024d161 2912 perl optional 
libdatetime-format-pg-perl_0.16006-1.debian.tar.gz
 b4d9a59d24ee0f2ff1bbf915dd464bfa 18894 perl optional 
libdatetime-format-pg-perl_0.16006-1_all.deb

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

iQIcBAEBCgAGBQJN53dQAAoJEIATJTTdNH3I2vsQANB2eF/1bKgCU+oRF+IVgqSe
xEg06cqov9wJ/O3zLKrImiTHcq/AxO9BgbICQuIFM0u1rtDI3OdPFIIbWJqlAgjn
9usFDp61INxpTRwEYASgTL/RiP/ZRu9lw5Q211TSON7veV7MtVqOyA9wlue/EZxk
bFApB2Bh+NSQwfAwRGD6Ei6NL4Can31lQFsfOgaglWNuVAROp5HyDiWRAWI4Ha7z
J4EO537JM1JaEPIUTZL0ye0ItLVsJtWqJhIk1oea+EWKJYmszKSY6k1hJLeWySnT
YDUWbnp818+vQPGeUb6+iRiKrOzJl4jPc+D2aUp3E0A6e4ZllQMb5CV0lX4GD71U
PmBXSc/3NmDIZaYKkNqDozyWpQkhD1EqrUav5A0y2L/UaE/9xDSQXaaGLZLkLqAZ
FidKH0+511ox9VUrE0wjaRWWOmRwZKLQu5SM/2gFwWGH34nQ1JXOcWAJqxNbLtMe
MU865UYSDPZbUOV5FFl0lEsZ5REqPMnM9WP2Tk7eiTVV4R4FDQeQIUNfCfYPfvcJ
HGjEK2yenrmWlV3YE8bdoph7bBP72ThLDj9uJTJmGW8wHSoP4itJTUfWCoOMWL9p
4gan0L9LkHJWQeCTys5Ta66q4KieSFy2sc7CP1AuUpg2TP9fys7h6xq0HSF53zfe
F+RLa1r2XCCuCchjZxEi
=7ul+
-END PGP SIGNATURE-


Accepted:
libdatetime-format-pg-perl_0.16006-1.debian.tar.gz
  to 
main/libd/libdatetime-format-pg-perl/libdatetime-format-pg-perl_0.16006-1.debian.tar.gz
libdatetime-format-pg-perl_0.16006-1.dsc
  to 
main/libd/libdatetime-format-pg-perl/libdatetime-format-pg-perl_0.16006-1.dsc
libdatetime-format-pg-perl_0.16006-1_all.deb
  to 
main/libd/libdatetime-format-pg-perl/libdatetime-format-pg-perl_0.16006-1_all.deb
libdatetime-format-pg-perl_0.16006.orig.tar.gz
  to 
main/libd/libdatetime-format-pg-perl/libdatetime-format-pg-perl_0.16006.orig.tar.gz


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



Accepted libdist-zilla-perl 4.200007-1 (source all)

2011-06-02 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 Jun 2011 13:16:28 +0200
Source: libdist-zilla-perl
Binary: libdist-zilla-perl
Architecture: all source
Version: 4.27-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 libdist-zilla-perl - Perl distribution builder
Changes: 
 libdist-zilla-perl (4.27-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 0c7d0ef019cd941c12009feee7fd1a491fd2db99 3418 libdist-zilla-perl_4.27-1.dsc
 cf874fcd03ec94757b187e7bbaeef3278c40fce3 110718 
libdist-zilla-perl_4.27.orig.tar.gz
 02a621bfac12bba57369700d27b4fcd5a3140556 4669 
libdist-zilla-perl_4.27-1.debian.tar.gz
 7f90f959a05047d9be0704a326e40ed0a8e8274b 358400 
libdist-zilla-perl_4.27-1_all.deb
Checksums-Sha256: 
 e26e4a3579f0a87a7baa2f95de21d3f0f2fdbbc0d31847b2e647349de7b65c31 3418 
libdist-zilla-perl_4.27-1.dsc
 3598df47fa2a07188a7d318c0c16b0740d5e7efc7c4522daa4fd707a7b6b11a3 110718 
libdist-zilla-perl_4.27.orig.tar.gz
 f0a6a50d7a482861d3e9e6f9e3ca30e1348516e45ebe5c62151edc88e4dfc4ec 4669 
libdist-zilla-perl_4.27-1.debian.tar.gz
 dd3398e9f64f7277ac6c0721916e22988765b4f56511f0fba43736efc64c4ae1 358400 
libdist-zilla-perl_4.27-1_all.deb
Files: 
 9604cbde2ae8f535814f0df9ce208514 3418 perl optional 
libdist-zilla-perl_4.27-1.dsc
 891594cce8759f1aa58e3eb577fbf6fc 110718 perl optional 
libdist-zilla-perl_4.27.orig.tar.gz
 35563a1ab8f456ad601b8ce21c130797 4669 perl optional 
libdist-zilla-perl_4.27-1.debian.tar.gz
 edf454a04512976de3b37fe23b9c38c2 358400 perl optional 
libdist-zilla-perl_4.27-1_all.deb

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

iQIcBAEBCgAGBQJN53dQAAoJEIATJTTdNH3IAqYQAMdEunjYm1bZUiEGh3NLCBXM
aOduZAE0CGoXxX7boEAz3iSxSC9xJJVhHBi8sejNk5HX5ijf8KeaD37FbEI2Wibf
BAX4ZfPe3Q/td+ZdiqG5Qf00m9N8Qr4yZaoS1Qm+ZKVdj1nI7YtMgloGHBW0kBfs
ukXLNW1krUPMHatnf0UgauYlDu6Q85QNu7UzNYZzeVYqjT8RSJ/qlZCPdG+zKK3W
F9yySOSd/d8mKsUEbMyh8td2LYE/PU0aGmqPa0IrlQlyK3vQF91k7GtgrFsbDQPb
eXbTMh/ewNOabPWO0v2S+T+NHPUunMRLxtPsyXlBgwf1e7D6OcCV3s2ILMTGzwa0
tKZw3DYCrqznTQL2PAURta498l+XZCm0OEGkBM5c5tKe7IAFOB15zqslT+s3PZpR
ucIQIwligyMIXUmi4qG+V6PEEww9d8PB2/Ed8S+0bjXvEgiUeR0lCVuG02iCCrvM
f+9F7TXP3rHuEA2qaaltbk5ZmPA/IKP7RXD5BSe7eQk6VxAt9uuU6Ng1a5uLC8EQ
IQz7mKMOCUXhGhIEf3ueYkGcGfeAhNuC5aKbEExUMk8xGfQ2MU0yzFXIbWrrysIR
wvnImd7/+FaVwPUFyPw9ROi31kjgCPMUtXdRyO14/nLkMui7MnQe9LYB4vjfqE/H
yCSsNUfeg6CpHbL0RT+J
=FmpS
-END PGP SIGNATURE-


Accepted:
libdist-zilla-perl_4.27-1.debian.tar.gz
  to main/libd/libdist-zilla-perl/libdist-zilla-perl_4.27-1.debian.tar.gz
libdist-zilla-perl_4.27-1.dsc
  to main/libd/libdist-zilla-perl/libdist-zilla-perl_4.27-1.dsc
libdist-zilla-perl_4.27-1_all.deb
  to main/libd/libdist-zilla-perl/libdist-zilla-perl_4.27-1_all.deb
libdist-zilla-perl_4.27.orig.tar.gz
  to main/libd/libdist-zilla-perl/libdist-zilla-perl_4.27.orig.tar.gz


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



Accepted libversion-perl 1:0.9000-1 (source amd64)

2011-06-02 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 Jun 2011 13:29:15 +0200
Source: libversion-perl
Binary: libversion-perl
Architecture: amd64 source
Version: 1:0.9000-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 libversion-perl - Perl extension for Version Objects
Changes: 
 libversion-perl (1:0.9000-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump Standards-Version to 3.9.2 (no changes).
Checksums-Sha1: 
 bff904d55f46472d1f029aca6eca70b5c17410f8 2038 libversion-perl_0.9000-1.dsc
 1a643f3bde4048882cbd8ab48b2c66f6cfdc05ac 102846 
libversion-perl_0.9000.orig.tar.gz
 c14b4209ae3e17f48334018ad9b906f5808b70b0 3242 
libversion-perl_0.9000-1.debian.tar.gz
 de15ad3f676dc946356c13df0a3c637e5929156a 73088 
libversion-perl_0.9000-1_amd64.deb
Checksums-Sha256: 
 db68c5a5f5d4c2962547e42a54cf5c1834b812235a29fbf25d9f994177c36a65 2038 
libversion-perl_0.9000-1.dsc
 f8f4f89d08ca442078026d78e87641f2873125ca5e2fe485bfa12079453d6520 102846 
libversion-perl_0.9000.orig.tar.gz
 04eae0f0b925a74c1fbbf24af3d6a0cb3d644355ab1efdac7dc05308979ba7c0 3242 
libversion-perl_0.9000-1.debian.tar.gz
 f75f7c1d657ff1492cd82b5feea9f59f628d1a52037f8f9ad8c10aafad0136c0 73088 
libversion-perl_0.9000-1_amd64.deb
Files: 
 3d4797908bbb88d5d44b6c8216184030 2038 perl optional 
libversion-perl_0.9000-1.dsc
 d427825f461b241a55ae104ed937140c 102846 perl optional 
libversion-perl_0.9000.orig.tar.gz
 947af7cea156acfa34b0284b6fa3c06b 3242 perl optional 
libversion-perl_0.9000-1.debian.tar.gz
 8e5dd49d0678467474ce55769f5e23e4 73088 perl optional 
libversion-perl_0.9000-1_amd64.deb

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

iQIcBAEBCgAGBQJN53dRAAoJEIATJTTdNH3I7BEP/1EjGHfPC8gVZShMB4i+qc5i
aEmf+ys2o/n2ZxxBd0rLTtq3NoYl59wAGnJa7uY8SGZ/qGqbHyp3pFpX3QMkfL/z
7WF6pXb1+mhd+RouyVndDDyilb1Hhq0rQpRK4FOlJ7vHWurGFXA9DAaUorXZl2da
msXyCrDkCEOFZxs2kbskcAJ5LLFwGMCzFk4FmbQtaQ0pcrsU+UzgpdPM4HPCI61t
C77fNuvDoWyX1nu36LmjmWCcLCpUClzpJa1Z88V9EGiijhXpFexsGxqUP/Ft+Q7U
meSPDAcZD4HlNEecIdl/9jwK42bkpnfb+/mMgQktwSfBd7B72MPddgUsY50/YGI3
Lcq7a60N2tZc5+mfM0ZInzgwg5gBUvC9njVSL0+4gkczI1Q6GVuZpTRxTBmiXwMn
es8hJ3jUv/4rhtywEHUy7/mFR+L4ldXO/rWpY5PlESjO01z3/w3Dv27LGn76X5/x
AggalG3Gc5KO8PvpfXzwpOLytYfjaypqSYdOWxiBo9lYeygjIIgGYrmZAIMQqvPq
0imF8JNfy/PoHFUnPxtbR5q+s7D0m77JcYhtGrjV1W0kWT3hw0Q3uHnlP0WxxjzD
R/a7DL1Lh6+fYm2SDjYZZp8cLEpLkkoErjuDqycWBzOQvpPtm//d3Cn4eLC+/8x+
y1Lux1ZVsu4Mp+On4NQR
=ElAS
-END PGP SIGNATURE-


Accepted:
libversion-perl_0.9000-1.debian.tar.gz
  to main/libv/libversion-perl/libversion-perl_0.9000-1.debian.tar.gz
libversion-perl_0.9000-1.dsc
  to main/libv/libversion-perl/libversion-perl_0.9000-1.dsc
libversion-perl_0.9000-1_amd64.deb
  to main/libv/libversion-perl/libversion-perl_0.9000-1_amd64.deb
libversion-perl_0.9000.orig.tar.gz
  to main/libv/libversion-perl/libversion-perl_0.9000.orig.tar.gz


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



Accepted libxml-libxml-simple-perl 0.15-1 (source all)

2011-06-02 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 Jun 2011 13:04:09 +0200
Source: libxml-libxml-simple-perl
Binary: libxml-libxml-simple-perl
Architecture: all source
Version: 0.15-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 libxml-libxml-simple-perl - Perl module that uses the XML::LibXML parser for 
XML structures
Changes: 
 libxml-libxml-simple-perl (0.15-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release.
   * debian/control, debian/rules: Remove quilt references. Not needed with
 source format 3.0 (quilt).
   * debian/copyright: Update for new upstream release; refer to GPL-1; refer
 to Debian systems instead of Debian GNU/Linux systems.
   * debian/control: Mention module name in description.
   * Bump Standards-Version to 3.9.2 (no changes).
Checksums-Sha1: 
 1c5b033a0f5244a5982f5e3906393cc3fa152deb 2147 
libxml-libxml-simple-perl_0.15-1.dsc
 f1b90be0e70b8ac14e8d7543984ca6c188151590 20495 
libxml-libxml-simple-perl_0.15.orig.tar.gz
 7b0abcfadaf30da4364241a3b70cd8433012764b 1889 
libxml-libxml-simple-perl_0.15-1.debian.tar.gz
 f9cc48ee2e1a08074ec1b4fdd2873dc8d5556036 23058 
libxml-libxml-simple-perl_0.15-1_all.deb
Checksums-Sha256: 
 ea4babdc946f068a7934ff3b6e81233cd3b8ade529284f7141ad43f0fafe41a0 2147 
libxml-libxml-simple-perl_0.15-1.dsc
 084f8a9a6a5f324335037477f921b97aded485f274f1b0272e0b8066394f028b 20495 
libxml-libxml-simple-perl_0.15.orig.tar.gz
 48941482bf7794ffd28191c371eb418813e2e4f01a6edb32e6d621af0deb37cb 1889 
libxml-libxml-simple-perl_0.15-1.debian.tar.gz
 e1108ac1e94a366522f81ebf4b1eda80fa55c48c5eeb35d5205f4cbc371ae257 23058 
libxml-libxml-simple-perl_0.15-1_all.deb
Files: 
 76aa3294b04d842aa95325e961b397cf 2147 perl optional 
libxml-libxml-simple-perl_0.15-1.dsc
 3932eafb24c265dc0d10b9e5a881e721 20495 perl optional 
libxml-libxml-simple-perl_0.15.orig.tar.gz
 db877ad5d5a94b36d17bee8cfcb303c7 1889 perl optional 
libxml-libxml-simple-perl_0.15-1.debian.tar.gz
 6937f1f317974af0ca0f98103183859c 23058 perl optional 
libxml-libxml-simple-perl_0.15-1_all.deb

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

iQIcBAEBCgAGBQJN53dQAAoJEIATJTTdNH3IQooP/0cbnewhfRJt4mM8u9Adr1/T
gKobDCCwx+0y3ywUx1ygQYyYbTWjK3AfrJItvXdem0ZLb1QhYN4TScZgD8gtAqT/
W3pxTpgtLkJ1KrWA4zDmO1d6gx0bbSyhTuXdRQBvKEEMx+5YssQedsqwWojxyo+4
XBT45ZlL3RqR1RJx1ksM0wTgWJMq3sdxeOMfdkZY2KcRV1Npxy0P24VYqCOwKQKD
ziPwjkQcHVrFCNkY/apAIwpwVLwV0CroxezBSZtRxkR+wSe54oHKLr5nlxIspopQ
jjF4HDQOyhvOKKekno31mqMRsiskQKEE5z13TGzfBoLTjhSFVmkKBVnkagkBKoby
4jGAMhCTZYMo4zIzh8oPABVa3y8Uw1MWuQt2/fw+prEbqW+gIohIKrkJ9grcSL8f
9d7qr58Gfwj7FNJPzTxvuvRnUfhEWbO/wldm5ct/JWqPEoXE0yBrsFSnz28im1LZ
w/tQt19hBygrwjFLekLcBHpgxj3YfQOGPAxvuMivS7CQvQoTUgE1yabxHjk4GoDW
cLdib8Ns2fAIUEk9nB3zvLVtS6ExwWgge5U8EUMbj+tTG1cvzInpSL68dCaqNz8C
yk7xWJDxZjTJZBk96DIYm0AuCTNaTgqoXLUVRBfI2hiY5TaXub7HLCkaxrxiAfoG
3/9ldgqXGBSNd1HjTyQ3
=WE+o
-END PGP SIGNATURE-


Accepted:
libxml-libxml-simple-perl_0.15-1.debian.tar.gz
  to 
main/libx/libxml-libxml-simple-perl/libxml-libxml-simple-perl_0.15-1.debian.tar.gz
libxml-libxml-simple-perl_0.15-1.dsc
  to main/libx/libxml-libxml-simple-perl/libxml-libxml-simple-perl_0.15-1.dsc
libxml-libxml-simple-perl_0.15-1_all.deb
  to 
main/libx/libxml-libxml-simple-perl/libxml-libxml-simple-perl_0.15-1_all.deb
libxml-libxml-simple-perl_0.15.orig.tar.gz
  to 
main/libx/libxml-libxml-simple-perl/libxml-libxml-simple-perl_0.15.orig.tar.gz


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



Accepted bjsonrpc 0.2.0-1 (source all)

2011-06-02 Thread Miriam Ruiz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 May 2011 16:29:09 +0200
Source: bjsonrpc
Binary: python-bjsonrpc
Architecture: source all
Version: 0.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Miriam Ruiz little_m...@yahoo.es
Description: 
 python-bjsonrpc - asynchronous bidirectional JSON-RPC protocol over TCP/IP
Closes: 628856
Changes: 
 bjsonrpc (0.2.0-1) unstable; urgency=low
 .
   * Initial release. Closes: #628856
Checksums-Sha1: 
 fa6649b85208100c9be42dbd57be111fc7132180 1377 bjsonrpc_0.2.0-1.dsc
 446ed948bf95a79087a49d354caa71bf0436ca04 14589 bjsonrpc_0.2.0.orig.tar.gz
 20af63f9706a9188e23ddcad45d93936a27e6aab 2958 bjsonrpc_0.2.0-1.debian.tar.bz2
 bb5ce43e53a6a3db39548c854c62620d7c48a952 17082 python-bjsonrpc_0.2.0-1_all.deb
Checksums-Sha256: 
 c9e3d918ff5eb676d7b9d3e6425b4261eeeb592d669334d057f5698f2d123bb8 1377 
bjsonrpc_0.2.0-1.dsc
 5ff1aa650b3cb2217d8427390de000f0ce0d653a4dd897a4b74cfdb5e8aca2b8 14589 
bjsonrpc_0.2.0.orig.tar.gz
 6bb981984067588d20826e8c398030bdcb65f7692f52b76bca3232fcdf59f666 2958 
bjsonrpc_0.2.0-1.debian.tar.bz2
 f3b885a45e5dba8132bc5e1e664d26ddf06ec2398119ca0cd19a382e34129741 17082 
python-bjsonrpc_0.2.0-1_all.deb
Files: 
 ebe05cf421e71dd0b0378f1723622bca 1377 python optional bjsonrpc_0.2.0-1.dsc
 e4f08f179af6d99bc2892bd4ec4c1c03 14589 python optional 
bjsonrpc_0.2.0.orig.tar.gz
 eceee61d58a00dc27ed4de3847bcf8b5 2958 python optional 
bjsonrpc_0.2.0-1.debian.tar.bz2
 2ff82f166458713f8a3d1cacae433b02 17082 python optional 
python-bjsonrpc_0.2.0-1_all.deb

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

iEYEARECAAYFAk3my3EACgkQfbltLjbuCGF9RQCfd6HqO47a9sl27cGvoxdYKV50
ju0AoId3pFdEUZbN3BR6eSSyS7Wjw+cF
=iiA1
-END PGP SIGNATURE-


Accepted:
bjsonrpc_0.2.0-1.debian.tar.bz2
  to main/b/bjsonrpc/bjsonrpc_0.2.0-1.debian.tar.bz2
bjsonrpc_0.2.0-1.dsc
  to main/b/bjsonrpc/bjsonrpc_0.2.0-1.dsc
bjsonrpc_0.2.0.orig.tar.gz
  to main/b/bjsonrpc/bjsonrpc_0.2.0.orig.tar.gz
python-bjsonrpc_0.2.0-1_all.deb
  to main/b/bjsonrpc/python-bjsonrpc_0.2.0-1_all.deb


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



Accepted dose3 2.9.4-1 (source amd64)

2011-06-02 Thread Ralf Treinen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 11:25:57 +0200
Source: dose3
Binary: libdose3-ocaml-dev libdose3-ocaml dose3-distcheck dose3-builddebcheck 
ceve
Architecture: source amd64
Version: 2.9.4-1
Distribution: experimental
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 ceve   - Parses package dependencies as set of constraints
 dose3-builddebcheck - Checks whether build-dependencies can be satisfied
 dose3-distcheck - Checks whether dependencies of packages can be satisfied
 libdose3-ocaml - OCaml libraries for package dependencies (runtime files)
 libdose3-ocaml-dev - OCaml libraries for package dependencies (development 
files)
Closes: 627274
Changes: 
 dose3 (2.9.4-1) experimental; urgency=low
 .
   * New upstream release. This release solves an issue with spuriously
 exported modules that blocked resolution of #627274.
   * Install all of usr/lib/ocaml/dose3 in the -dev package (closes: #627274)
   * Remove patch ignore-experimental since this is fixed upstream now.
   * Bump version on build-dependency libcudf-ocaml-dev.
   * Add a binary package libdose3-ocaml for the runtime stub libraries.
   * debian/rules: install _build/algo/algo.{a,o}.
Checksums-Sha1: 
 20abd7fae630c81dfb79c4cdcd4540b14dd82a69 1533 dose3_2.9.4-1.dsc
 99f15dd8c435674e5fc0776259dd39e6b469dfdd 173301 dose3_2.9.4.orig.tar.gz
 bfc0254b462697f4945d1bd953cd7a800e66e283 7353 dose3_2.9.4-1.debian.tar.gz
 b6d024d89d50b5b54ac3d7d279fcb6ea4553d677 715628 
libdose3-ocaml-dev_2.9.4-1_amd64.deb
 26d2b4d3d35e2e942c1ea5e20bfdaa97be4e3ccd 7664 libdose3-ocaml_2.9.4-1_amd64.deb
 db00991d28ae79deccf90553979fcf67559fb011 448860 
dose3-distcheck_2.9.4-1_amd64.deb
 00aecb6a72478b2e7540df35fc636939031bf670 447546 
dose3-builddebcheck_2.9.4-1_amd64.deb
 fbf95cd66a2a89c1ecc4f11e8951d5002fe8d9a5 619886 ceve_2.9.4-1_amd64.deb
Checksums-Sha256: 
 4116e0faef873e648eeb27375cd2674a4d2c8f9c082028528ce647dd63d29aeb 1533 
dose3_2.9.4-1.dsc
 f6779c1063528c75c59910be66b3ec9dfb4339add4a5abb7086bcde5fe4a5603 173301 
dose3_2.9.4.orig.tar.gz
 4f52a1f12a0b895bb00a1aa7c27ceebe43e75855c1e50317f56571efedff1416 7353 
dose3_2.9.4-1.debian.tar.gz
 a867534b3dcbc0dc8eafb7d4aa0a8d9ccb2ffce58d2870bfe4e3e5013e3fb09c 715628 
libdose3-ocaml-dev_2.9.4-1_amd64.deb
 b6fd6e5d6e871f24ccac72cfc87d26c5c1ceaa987f2af54832c1d02801248358 7664 
libdose3-ocaml_2.9.4-1_amd64.deb
 a34a338dc3da15baca6c1902535cd5ec66a2699c5c16ddb2166dee2596814515 448860 
dose3-distcheck_2.9.4-1_amd64.deb
 478cdd7427b2102464ea781a4dfb255e7a1048c5687b5e506de4690f7ac05e54 447546 
dose3-builddebcheck_2.9.4-1_amd64.deb
 d357ab723c70224f65cad66f634788909d3066895f62e360c539d5170be469c7 619886 
ceve_2.9.4-1_amd64.deb
Files: 
 1dd1227cc4dd6700f2cba0076042f6a3 1533 ocaml extra dose3_2.9.4-1.dsc
 bb710bddb63bb7fcf381b8e9523dc915 173301 ocaml extra dose3_2.9.4.orig.tar.gz
 3396c9e8f2a31d2f2420f81f4edd7aa2 7353 ocaml extra dose3_2.9.4-1.debian.tar.gz
 cf0fd689caef0b95cf4a537ab9f53980 715628 ocaml extra 
libdose3-ocaml-dev_2.9.4-1_amd64.deb
 21ec6a95c75dba09b65ed6e58a2b52d1 7664 ocaml extra 
libdose3-ocaml_2.9.4-1_amd64.deb
 fe1402f6234aa6d743b0f6124661aa41 448860 devel extra 
dose3-distcheck_2.9.4-1_amd64.deb
 f38861e7855e9b749bb21a14653c556c 447546 devel extra 
dose3-builddebcheck_2.9.4-1_amd64.deb
 e5da3011dd6d3c88cd0decd0260be115 619886 devel extra ceve_2.9.4-1_amd64.deb

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

iEYEARECAAYFAk3nXGEACgkQtzWmSeC6BMFKVwCgvMcJL+giHfEDeM6EcOOH8vEf
WXEAoM1axgkdGJmaJbvMkQNjx/v7dKL6
=tIud
-END PGP SIGNATURE-


Accepted:
ceve_2.9.4-1_amd64.deb
  to main/d/dose3/ceve_2.9.4-1_amd64.deb
dose3-builddebcheck_2.9.4-1_amd64.deb
  to main/d/dose3/dose3-builddebcheck_2.9.4-1_amd64.deb
dose3-distcheck_2.9.4-1_amd64.deb
  to main/d/dose3/dose3-distcheck_2.9.4-1_amd64.deb
dose3_2.9.4-1.debian.tar.gz
  to main/d/dose3/dose3_2.9.4-1.debian.tar.gz
dose3_2.9.4-1.dsc
  to main/d/dose3/dose3_2.9.4-1.dsc
dose3_2.9.4.orig.tar.gz
  to main/d/dose3/dose3_2.9.4.orig.tar.gz
libdose3-ocaml-dev_2.9.4-1_amd64.deb
  to main/d/dose3/libdose3-ocaml-dev_2.9.4-1_amd64.deb
libdose3-ocaml_2.9.4-1_amd64.deb
  to main/d/dose3/libdose3-ocaml_2.9.4-1_amd64.deb


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



Accepted linux-latest-2.6 36 (source all i386)

2011-06-02 Thread Ben Hutchings
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 Jun 2011 04:37:28 +0100
Source: linux-latest-2.6
Binary: linux-source linux-source-2.6 linux-doc linux-doc-2.6 linux-tools 
linux-tools-2.6 linux-image-alpha-generic linux-image-2.6-alpha-generic 
linux-headers-alpha-generic linux-headers-2.6-alpha-generic 
linux-image-alpha-smp linux-image-2.6-alpha-smp linux-headers-alpha-smp 
linux-headers-2.6-alpha-smp linux-image-alpha-legacy 
linux-image-2.6-alpha-legacy linux-headers-alpha-legacy 
linux-headers-2.6-alpha-legacy linux-image-amd64 linux-image-2.6-amd64 
linux-headers-amd64 linux-headers-2.6-amd64 linux-image-iop32x 
linux-image-2.6-iop32x linux-headers-iop32x linux-headers-2.6-iop32x 
linux-image-ixp4xx linux-image-2.6-ixp4xx linux-headers-ixp4xx 
linux-headers-2.6-ixp4xx linux-image-kirkwood linux-image-2.6-kirkwood 
linux-headers-kirkwood linux-headers-2.6-kirkwood linux-image-orion5x 
linux-image-2.6-orion5x linux-headers-orion5x linux-headers-2.6-orion5x 
linux-image-versatile linux-image-2.6-versatile linux-headers-versatile 
linux-headers-2.6-versatile linux-image-mx5
 linux-image-2.6-mx5 linux-headers-mx5 linux-headers-2.6-mx5 linux-image-parisc 
linux-image-2.6-parisc linux-headers-parisc linux-headers-2.6-parisc 
linux-image-parisc-smp linux-image-2.6-parisc-smp linux-headers-parisc-smp 
linux-headers-2.6-parisc-smp linux-image-parisc64 linux-image-2.6-parisc64 
linux-headers-parisc64 linux-headers-2.6-parisc64 linux-image-parisc64-smp 
linux-image-2.6-parisc64-smp linux-headers-parisc64-smp 
linux-headers-2.6-parisc64-smp linux-image-486 linux-image-2.6-486 
linux-headers-486 linux-headers-2.6-486 linux-image-686-pae 
linux-image-2.6-686-pae linux-headers-686-pae linux-headers-2.6-686-pae 
linux-image-itanium linux-image-2.6-itanium linux-headers-itanium 
linux-headers-2.6-itanium linux-image-mckinley linux-image-2.6-mckinley 
linux-headers-mckinley linux-headers-2.6-mckinley linux-image-amiga 
linux-image-2.6-amiga linux-headers-amiga linux-headers-2.6-amiga 
linux-image-atari linux-image-2.6-atari linux-headers-atari
 linux-headers-2.6-atari linux-image-bvme6000 linux-image-2.6-bvme6000 
linux-headers-bvme6000 linux-headers-2.6-bvme6000 linux-image-mac 
linux-image-2.6-mac linux-headers-mac linux-headers-2.6-mac linux-image-mvme147 
linux-image-2.6-mvme147 linux-headers-mvme147 linux-headers-2.6-mvme147 
linux-image-mvme16x linux-image-2.6-mvme16x linux-headers-mvme16x 
linux-headers-2.6-mvme16x linux-image-r4k-ip22 linux-image-2.6-r4k-ip22 
linux-headers-r4k-ip22 linux-headers-2.6-r4k-ip22 linux-image-r5k-ip32 
linux-image-2.6-r5k-ip32 linux-headers-r5k-ip32 linux-headers-2.6-r5k-ip32 
linux-image-sb1-bcm91250a linux-image-2.6-sb1-bcm91250a 
linux-headers-sb1-bcm91250a linux-headers-2.6-sb1-bcm91250a 
linux-image-sb1a-bcm91480b linux-image-2.6-sb1a-bcm91480b 
linux-headers-sb1a-bcm91480b linux-headers-2.6-sb1a-bcm91480b 
linux-image-4kc-malta linux-image-2.6-4kc-malta linux-headers-4kc-malta 
linux-headers-2.6-4kc-malta linux-image-5kc-malta linux-image-2.6-5kc-malta 
linux-headers-5kc-malta
 linux-headers-2.6-5kc-malta linux-image-octeon linux-image-2.6-octeon 
linux-headers-octeon linux-headers-2.6-octeon linux-image-r5k-cobalt 
linux-image-2.6-r5k-cobalt linux-headers-r5k-cobalt 
linux-headers-2.6-r5k-cobalt linux-image-loongson-2f 
linux-image-2.6-loongson-2f linux-headers-loongson-2f 
linux-headers-2.6-loongson-2f linux-image-powerpc linux-image-2.6-powerpc 
linux-headers-powerpc linux-headers-2.6-powerpc linux-image-powerpc-smp 
linux-image-2.6-powerpc-smp linux-headers-powerpc-smp 
linux-headers-2.6-powerpc-smp linux-image-powerpc64 linux-image-2.6-powerpc64 
linux-headers-powerpc64 linux-headers-2.6-powerpc64 linux-image-s390x 
linux-image-2.6-s390x linux-headers-s390x linux-headers-2.6-s390x 
linux-image-s390x-tape linux-image-2.6-s390x-tape linux-image-sh7751r 
linux-image-2.6-sh7751r linux-headers-sh7751r linux-headers-2.6-sh7751r 
linux-image-sh7785lcr linux-image-2.6-sh7785lcr linux-headers-sh7785lcr 
linux-headers-2.6-sh7785lcr linux-image-sparc64
 linux-image-2.6-sparc64 linux-headers-sparc64 linux-headers-2.6-sparc64 
linux-image-sparc64-smp linux-image-2.6-sparc64-smp linux-headers-sparc64-smp 
linux-headers-2.6-sparc64-smp linux-image-686 linux-image-2.6-686 
linux-image-686-bigmem
 linux-image-2.6-686-bigmem
Architecture: source all i386
Version: 36
Distribution: experimental
Urgency: low
Maintainer: Debian Kernel Team debian-ker...@lists.debian.org
Changed-By: Ben Hutchings b...@decadent.org.uk
Description: 
 linux-doc  - Linux kernel specific documentation (meta-package)
 linux-doc-2.6 - Linux kernel specific documentation (dummy package)
 linux-headers-2.6-486 - Header files for Linux 486 configuration (dummy 
package)
 linux-headers-2.6-4kc-malta - Header files for Linux 4kc-malta configuration 
(dummy package)
 linux-headers-2.6-5kc-malta - Header files for Linux 5kc-malta configuration 
(dummy package)
 linux-headers-2.6-686-pae - Header 

Accepted haskell-wai-extra 0.2.4.2-1 (source all amd64)

2011-06-02 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 01 Jun 2011 23:22:01 -0400
Source: haskell-wai-extra
Binary: libghc-wai-extra-dev libghc-wai-extra-prof libghc-wai-extra-doc
Architecture: source all amd64
Version: 0.2.4.2-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-extra-dev - some basic WAI handlers and middleware
 libghc-wai-extra-doc - some basic WAI handlers and middleware; documentation
 libghc-wai-extra-prof - some basic WAI handlers and middleware; profiling 
libraries
Changes: 
 haskell-wai-extra (0.2.4.2-1) unstable; urgency=low
 .
   * Initial release.
Checksums-Sha1: 
 88b5cf36a3b7ed62cc6a52efa41711ad7b54f584 2394 haskell-wai-extra_0.2.4.2-1.dsc
 f01d51e3b0bf5f27efdcc69b107a0d3391af530b 11262 
haskell-wai-extra_0.2.4.2.orig.tar.gz
 7c62770c6b39c913893ee7794fbbeb782cd08cc5 2153 
haskell-wai-extra_0.2.4.2-1.debian.tar.gz
 9be087fb83392a19c1fe842a9e71f78002890113 52122 
libghc-wai-extra-doc_0.2.4.2-1_all.deb
 ae2ee6b7ef77271090db5ff72e5deaa7c34d5b0d 159970 
libghc-wai-extra-dev_0.2.4.2-1_amd64.deb
 6166e8b29381a7e6462bfc0d5afc0bb035955a08 160620 
libghc-wai-extra-prof_0.2.4.2-1_amd64.deb
Checksums-Sha256: 
 779c91dcca5d83800b3b544032aff59f1eef24dbd3025a8c35407fdca23c1e80 2394 
haskell-wai-extra_0.2.4.2-1.dsc
 17828f84844961613920841149db7b2c22a69e8449bd784270f50c4d06f9b7dc 11262 
haskell-wai-extra_0.2.4.2.orig.tar.gz
 684a1862e2543b76703e7cecb60cbee623ee78c6ed3ae434f664b15dda5a4291 2153 
haskell-wai-extra_0.2.4.2-1.debian.tar.gz
 3de45b4a24eedc763660089d0b45801a778b33a6189c0a708a152929cb4cd05d 52122 
libghc-wai-extra-doc_0.2.4.2-1_all.deb
 f83d2bf5cd7e86e7931550a9ba70db2d077b1da915a1d833fa8383943ccd3829 159970 
libghc-wai-extra-dev_0.2.4.2-1_amd64.deb
 2043a5f53d1d32a67c7feda965977245dd5e61c818f0a9d5d0d0e5089069 160620 
libghc-wai-extra-prof_0.2.4.2-1_amd64.deb
Files: 
 358a8177337c92fc0fd838f7e57ea119 2394 haskell extra 
haskell-wai-extra_0.2.4.2-1.dsc
 e7109b64214970ce53312c14597eaf1a 11262 haskell extra 
haskell-wai-extra_0.2.4.2.orig.tar.gz
 94a97db43478e26e43e88a406b10d23a 2153 haskell extra 
haskell-wai-extra_0.2.4.2-1.debian.tar.gz
 981ce816d8f0b99adacc1c659be36519 52122 doc extra 
libghc-wai-extra-doc_0.2.4.2-1_all.deb
 a430d77b13c4edc78b56ca51fdc81cb4 159970 haskell extra 
libghc-wai-extra-dev_0.2.4.2-1_amd64.deb
 fe18409eda26a2565ecbe9760e0c6168 160620 haskell extra 
libghc-wai-extra-prof_0.2.4.2-1_amd64.deb

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

iQIcBAEBCgAGBQJN5wSdAAoJEFWSMx4ZnTioe6MP/RwvPGneXeBWn6vpnXv8jX3G
ZDeg0y3oErQPLeY44JECMxE05Ses7gFhD9ltceBtrLCI7tf5AldjKYOCihU2v4hQ
fVkDeeeDRZfJhtzOxUjXQMNz6aFxo5j3etWqiFutpuRJ3PJZIUWb+Xi295A2i7D/
3P5MwhXrFGa3fGeR2ykrdy4G29whNROKQTwAkEFGAnsLCjvtsTKR3QabECDMmb54
tc7/jta/uet0WI8PqRxBitGY/zgmIHdRWSwGlBm8LggSQQ+PGI88KyRHMrOgcIlI
vaSL8RASaBffmfv5Cig55OJn8g2e5bC8RdFioC6I7eUWFkB55kkTHHzOa10eqvEm
hgQoZf98lr4fZl6U0XGm2I3Z+6OFYkSOBqOEAXE7w1sJW262zafrJz8/1jhBIeIc
ovKaszUornKqcJjVTrg0db1kkovVRJpHEfLvlli2EUA+zkrBlBG3ZxkoN3lpfoyT
QRIgImEb7DHpYwSiSZ0rhIjDTgUUCbciEydzGQuD0RX1yKBOau2Aiaa+F3Q8l1zO
vksYYgdnohQtx9R/vdWK1Nm7FXAztSDPd1B2g3veB+H9vzpMSfxFvDssKYsvFTQB
b2rUbacfbovtbN0RDhY+bNy7GvROOrLrHOvjw8KgxcECg1ISB9l7LlPNQ5H0af6C
KskgE7RbBqk71N3CNR5K
=3mww
-END PGP SIGNATURE-


Accepted:
haskell-wai-extra_0.2.4.2-1.debian.tar.gz
  to main/h/haskell-wai-extra/haskell-wai-extra_0.2.4.2-1.debian.tar.gz
haskell-wai-extra_0.2.4.2-1.dsc
  to main/h/haskell-wai-extra/haskell-wai-extra_0.2.4.2-1.dsc
haskell-wai-extra_0.2.4.2.orig.tar.gz
  to main/h/haskell-wai-extra/haskell-wai-extra_0.2.4.2.orig.tar.gz
libghc-wai-extra-dev_0.2.4.2-1_amd64.deb
  to main/h/haskell-wai-extra/libghc-wai-extra-dev_0.2.4.2-1_amd64.deb
libghc-wai-extra-doc_0.2.4.2-1_all.deb
  to main/h/haskell-wai-extra/libghc-wai-extra-doc_0.2.4.2-1_all.deb
libghc-wai-extra-prof_0.2.4.2-1_amd64.deb
  to main/h/haskell-wai-extra/libghc-wai-extra-prof_0.2.4.2-1_amd64.deb


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



Accepted libunicode-linebreak-perl 0.0.20110426-1 (source amd64)

2011-06-02 Thread Emmanuel Bouthenot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 Jun 2011 07:31:29 +
Source: libunicode-linebreak-perl
Binary: libunicode-linebreak-perl
Architecture: source amd64
Version: 0.0.20110426-1
Distribution: unstable
Urgency: low
Maintainer: Emmanuel Bouthenot kol...@debian.org
Changed-By: Emmanuel Bouthenot kol...@debian.org
Description: 
 libunicode-linebreak-perl - UAX #14 Unicode Line Breaking Algorithm
Closes: 628482
Changes: 
 libunicode-linebreak-perl (0.0.20110426-1) unstable; urgency=low
 .
   * Initial Release (Closes: #628482).
Checksums-Sha1: 
 a902888b995c4c87894ee39f85295469b03fb5b2 2113 
libunicode-linebreak-perl_0.0.20110426-1.dsc
 ec0a95c08f9c73119b23d1da72b7012d976ac0f1 472044 
libunicode-linebreak-perl_0.0.20110426.orig.tar.gz
 b4fdd621a1438714b5f3f1b0f8585629eb7fe537 2277 
libunicode-linebreak-perl_0.0.20110426-1.debian.tar.gz
 4925265e277dfa0b1052b586b57940c581e8441e 109786 
libunicode-linebreak-perl_0.0.20110426-1_amd64.deb
Checksums-Sha256: 
 7c114057e172cceb4acbae186feeade23c48758cd3b945bf57cf184f97b89c86 2113 
libunicode-linebreak-perl_0.0.20110426-1.dsc
 aeb1aff98c5759aa6d5c4636aab7fcd35dd48109d254317a08b544384038856b 472044 
libunicode-linebreak-perl_0.0.20110426.orig.tar.gz
 386a790914c9a62b902ac4e56d74ed91c5d20fceafe642606b3320571bfbd5a9 2277 
libunicode-linebreak-perl_0.0.20110426-1.debian.tar.gz
 acfe324f5a1db72e4a67ce50ce584d269ce07b61ec66018d9f2b227debbd86dc 109786 
libunicode-linebreak-perl_0.0.20110426-1_amd64.deb
Files: 
 f10f336365f985936e6678d10ce10943 2113 perl optional 
libunicode-linebreak-perl_0.0.20110426-1.dsc
 5366c60941e3d9eba10ef2f85f627952 472044 perl optional 
libunicode-linebreak-perl_0.0.20110426.orig.tar.gz
 94aa2634d41705c22ba64979a6345521 2277 perl optional 
libunicode-linebreak-perl_0.0.20110426-1.debian.tar.gz
 6233873b68e4d0a9c806cf06501dda9b 109786 perl optional 
libunicode-linebreak-perl_0.0.20110426-1_amd64.deb

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

iQIcBAEBCgAGBQJN53IhAAoJEEsHdyOSnULDXiAP/3bWY84OjBO7w6830jn4IMVV
o1qL0g8r6KfYQCYQlqNE6AqPpnuNcF43WgQf2vBtUZ94FAq9n6HDwGgTLqJAiYO7
yPQ09HTuz4Lriu3MHAslY5ZUSvxqg8eAcNH5kB/fBl61/t9zp0s14CzMDaUMp0v3
qU04ox1mO2TVxJBCUF+XSX8UPuFb4sBn8ikhs+XTDIH8Nss7+/YevikwqOgk7rkH
ynE3IUjU3w8MrCRWrHXMFFnyTF2GTP5L808bQQL+BDf2T6zoBeheyfQfKkXW2zhD
p3CJyrrsUe+CrzXv8YIcWCV9zLp/vY1fCqBU/oxZlVy2VucsifCj/QhV44AyBQJH
l7FE1vSUwwQWpgMOizmp4YFJs0870NYXPRKXNtERXHYTVyFNuQdGK4EX2LtfZKcH
p0ZtSzWG9iHouMyA+gc/7ObkBM6wDoICLNi9St7CfeinRGi6PGAwFuN1imoCoLYf
Bvo6JsAIkQ5yS6AKLwVhIC5VMMGBo/sIirM0u3bO8HkOI6SsKVHCqHLTzJMp/VMh
eP8eJYTsEYYNGUu3Csciq77XNkbmzVFViKpy1Y4x0hPBX+5sQJib9ge+hrqX0Vfd
Cvh/qekYg8ssk6CL/Dg6S+zvMRQ4FzD05GWSkC7metew18pNIYEocniCKTl/HA9M
kfatPQ0IG/xrYvhSuRW8
=zBEp
-END PGP SIGNATURE-


Accepted:
libunicode-linebreak-perl_0.0.20110426-1.debian.tar.gz
  to 
main/libu/libunicode-linebreak-perl/libunicode-linebreak-perl_0.0.20110426-1.debian.tar.gz
libunicode-linebreak-perl_0.0.20110426-1.dsc
  to 
main/libu/libunicode-linebreak-perl/libunicode-linebreak-perl_0.0.20110426-1.dsc
libunicode-linebreak-perl_0.0.20110426-1_amd64.deb
  to 
main/libu/libunicode-linebreak-perl/libunicode-linebreak-perl_0.0.20110426-1_amd64.deb
libunicode-linebreak-perl_0.0.20110426.orig.tar.gz
  to 
main/libu/libunicode-linebreak-perl/libunicode-linebreak-perl_0.0.20110426.orig.tar.gz


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



Accepted haskell-persistent 0.3.1.3-1 (source all amd64)

2011-06-02 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 01 Jun 2011 20:28:23 -0400
Source: haskell-persistent
Binary: libghc-persistent-dev libghc-persistent-prof libghc-persistent-doc
Architecture: source all amd64
Version: 0.3.1.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-persistent-dev - type-safe, non-relational, multi-backend persistence
 libghc-persistent-doc - type-safe, non-relational, multi-backend persistence; 
documentati
 libghc-persistent-prof - type-safe, non-relational, multi-backend persistence; 
profiling l
Changes: 
 haskell-persistent (0.3.1.3-1) unstable; urgency=low
 .
   * Initial release.
Checksums-Sha1: 
 5a0fc27f86317d8b68294984a69b36e35b05da8c 2584 haskell-persistent_0.3.1.3-1.dsc
 e651ac9825a76c5ead45a3bf5216fc3d3411ad07 17057 
haskell-persistent_0.3.1.3.orig.tar.gz
 3f80a16560649ea2e50a0401d008c0743a77c114 2279 
haskell-persistent_0.3.1.3-1.debian.tar.gz
 6506ed491b51b99623f9eceb9daf9c2d3f432449 85902 
libghc-persistent-doc_0.3.1.3-1_all.deb
 dd14b668cf48a9b64103748195b975bb5579e200 405694 
libghc-persistent-dev_0.3.1.3-1_amd64.deb
 33265cdc6e274bd32b82d350c85875392f1246ed 437376 
libghc-persistent-prof_0.3.1.3-1_amd64.deb
Checksums-Sha256: 
 17c2d29c574023b1cf2daf2d1e63a88917f014694c6f19753234ecab9cad324f 2584 
haskell-persistent_0.3.1.3-1.dsc
 9a372ab2e3c10f0cfbf38098897d266b614637e719ad1442a9bb87ca3496469d 17057 
haskell-persistent_0.3.1.3.orig.tar.gz
 3eafc4e88d3a537e2685c4507da8a00eb84acc36a115afaa3d5d74c83b5b12c8 2279 
haskell-persistent_0.3.1.3-1.debian.tar.gz
 437f68fce478f6309e8205b7f72806b2de546461b3fede942c71100a5da58b00 85902 
libghc-persistent-doc_0.3.1.3-1_all.deb
 03b47b511619288a8ba26f866b97ab56e78d440c41942ab0f9e860be2f9ca633 405694 
libghc-persistent-dev_0.3.1.3-1_amd64.deb
 b925fcbb222820a8090befde1055cabaaf146cebca346d6ff26271cb2fe96a32 437376 
libghc-persistent-prof_0.3.1.3-1_amd64.deb
Files: 
 973a952e140b6836799888dea7fc34c1 2584 haskell extra 
haskell-persistent_0.3.1.3-1.dsc
 f6edd9ab0f5fe8693dcc5c5bfc444839 17057 haskell extra 
haskell-persistent_0.3.1.3.orig.tar.gz
 033b3bcdfe61922f781983f690dd2e5c 2279 haskell extra 
haskell-persistent_0.3.1.3-1.debian.tar.gz
 167eefd3cbb76e93e1340a3573033ee0 85902 doc extra 
libghc-persistent-doc_0.3.1.3-1_all.deb
 ed55425f7022fc047c74d0a69aefc6ba 405694 haskell extra 
libghc-persistent-dev_0.3.1.3-1_amd64.deb
 0d075205a14b274c638984dc582aeafb 437376 haskell extra 
libghc-persistent-prof_0.3.1.3-1_amd64.deb

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

iQIcBAEBCgAGBQJN5wE+AAoJEFWSMx4ZnTioCdQP/RjpFsc03r9+ZDMORz6g2cGT
ndSfG8hWKlq1XpK7n8Du1vjWcCJ1ZgUiQr6CSEXWYqHZyZJ+E/awuLKWmHCa0yhq
+eQDEvJNRHwv37yh3aPwgH9jE7RzGj4R26I3A0Jlh1ZyZ5pbIeL5RAUchsD1hYFY
N2UITy8HEwQViWglY4FHMPAJ9x2yMM/LajAdHMPzjN+BcR+pJDLSa4wt4KPr77id
bbgXEGsc0ovsYmuaSLEeKfvNDS7wGtmW3yJGxhqTfk41SUafQaTLoE284wezsrVt
eJvE6fQKy3CDOIkfWP2GENDVXTAziWjYk5WVnx/Ldu23ui+aMzYnNF1siFBk5s+C
YIDIRqoa4Vem360vojaBsagMW+hl6lZvrrWWcYRHCJK0GoIT8vAkUTIFHOi3zKn0
ayZIETZ6dPzJdlY9XG7FiUH3LEEfd70BwtVzieCvKTs2AWkhoQumd11OR38rOSPQ
ccAut/Zwap2b72l20BwBEbh4tKCaaGKyfq7FTUwEahW9XbF07w7SO6fQZpLBFcrY
vFd0dPkmL04XXNjLeRoFDBr2JAZXgjEq9fCPkaXP0n2eK4Oyd84bh2fJ/6byE1xs
tHuf4+5RFe4O16heu2SAtGZ0ELW4rpaKSx9w0zXIborYz+/OFA71uz+sSt2Ce09v
YV+IZ9D1aTpWNXxjbnTj
=LTRw
-END PGP SIGNATURE-


Accepted:
haskell-persistent_0.3.1.3-1.debian.tar.gz
  to main/h/haskell-persistent/haskell-persistent_0.3.1.3-1.debian.tar.gz
haskell-persistent_0.3.1.3-1.dsc
  to main/h/haskell-persistent/haskell-persistent_0.3.1.3-1.dsc
haskell-persistent_0.3.1.3.orig.tar.gz
  to main/h/haskell-persistent/haskell-persistent_0.3.1.3.orig.tar.gz
libghc-persistent-dev_0.3.1.3-1_amd64.deb
  to main/h/haskell-persistent/libghc-persistent-dev_0.3.1.3-1_amd64.deb
libghc-persistent-doc_0.3.1.3-1_all.deb
  to main/h/haskell-persistent/libghc-persistent-doc_0.3.1.3-1_all.deb
libghc-persistent-prof_0.3.1.3-1_amd64.deb
  to main/h/haskell-persistent/libghc-persistent-prof_0.3.1.3-1_amd64.deb


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



Accepted debsecan 0.4.15 (source all)

2011-06-02 Thread Florian Weimer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 14:11:56 +0200
Source: debsecan
Binary: debsecan
Architecture: source all
Version: 0.4.15
Distribution: unstable
Urgency: low
Maintainer: Florian Weimer f...@deneb.enyo.de
Changed-By: Florian Weimer f...@deneb.enyo.de
Description: 
 debsecan   - Debian Security Analyzer
Closes: 628541
Changes: 
 debsecan (0.4.15) unstable; urgency=low
 .
   * Actually support recent python-apt versions, with thanks to Michael
 Gilbert.  Closes: #628541.
Checksums-Sha1: 
 28c8aac13e166d8fd89b0f9544a9cd249311def8 1025 debsecan_0.4.15.dsc
 4c1c850ff08b57304f00e0b6e3db6c38be7c168f 86694 debsecan_0.4.15.tar.gz
 f49f0da15749a086406b7102acd0dca0180f2af2 34672 debsecan_0.4.15_all.deb
Checksums-Sha256: 
 a5829728a9e6d871671b8169930f29f71da1fa4dd1bc0387eb9fc856216eeb2e 1025 
debsecan_0.4.15.dsc
 96ee7df58522eae515228a751343e7f895838997ea9e7140825b253e05e22c4a 86694 
debsecan_0.4.15.tar.gz
 1fb0bb8c130f43f975106677f444d99855d263577b67feab1001cb65711bc954 34672 
debsecan_0.4.15_all.deb
Files: 
 30581d1cfddd5a8f6139f47544810229 1025 admin optional debsecan_0.4.15.dsc
 df6266863221ac2cc6ebcefd01e9a410 86694 admin optional debsecan_0.4.15.tar.gz
 e68c176a470fd1893d676048b02cc26b 34672 admin optional debsecan_0.4.15_all.deb

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

iQEcBAEBAgAGBQJN54LkAAoJEL97/wQC1SS+WHwH/0ZvqrVwO8avVjyDDIQP9O2r
Zq8Rm0i4/GlMZSPhyg2B5HfFRLKps6LGyqNDa6lAM8SWT0kI9cIrrUOdVAkC4Czp
E+SpzPtTl1gUEO8oqMj2HG3/0B2FaoJ8dNq+h0JYwmmFTCDhQcRN38VtH7YbAbHq
gX6Tqx+brP0rG4JEVy4FVtWYhafkub/tWX+KV3Cf4JD6Sbp5QR2//Fm4MBuT/FSh
LNfoIqscnYYaHidCF6xKRqSOKDCQayESYQvMSqCbak6KBOldyUj+yJWVEsZ4HaXH
lfnd3oejS8O1g0g8naK9mvZXYGDRToQWjNPLiqWcFB8CidB2ljKmFlmQeVEMK6A=
=BQmR
-END PGP SIGNATURE-


Accepted:
debsecan_0.4.15.dsc
  to main/d/debsecan/debsecan_0.4.15.dsc
debsecan_0.4.15.tar.gz
  to main/d/debsecan/debsecan_0.4.15.tar.gz
debsecan_0.4.15_all.deb
  to main/d/debsecan/debsecan_0.4.15_all.deb


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



Accepted mcs 0.7.2-1 (source i386 all)

2011-06-02 Thread Andrew O. Shadoura
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jun 2011 13:59:21 +0300
Source: mcs
Binary: libmcs-utils libmcs-doc libmcs-dev libmcs1 libmcs-backend-gconf
Architecture: source i386 all
Version: 0.7.2-1
Distribution: unstable
Urgency: low
Maintainer: Andrew O. Shadoura bugzi...@tut.by
Changed-By: Andrew O. Shadoura bugzi...@tut.by
Description: 
 libmcs-backend-gconf - GNOME GConf backend for libmcs
 libmcs-dev - development library and headers for libmcs1
 libmcs-doc - documentation files for libmcs1
 libmcs-utils - tools for the maintenance of the mcs system
 libmcs1- abstraction library to store configuration settings
Closes: 521010
Changes: 
 mcs (0.7.2-1) unstable; urgency=low
 .
   * New maintainer.
   * New upstream release.
   * Use dh7 and DebSrc3.0:
 - Drop dpatch.
 - Drop README.source.
 - Use dh_installdocs instead of *.links tricks.
   * debian/control:
 - Depend on autotools-dev (= 20100122.1) which supports dh7.
 - Update Standards-Version to 3.9.2.
 - Updated the homepage.
 - Updated the descriptions of the packages.
 - Added Vcs-* fields.
 - Purged KConfig backend.
   * Ship *.symbols and *.doc-base files.
   * Link with --as-needed.
   * Don't output ANSI codes during the build process.
   * Ship doxygened documentation (Closes: #521010):
 - Run Doxygen on build.
 - Also depend on LaTeX/TeXLive and Ghostscript.
Checksums-Sha1: 
 e6621d69dce2a9eb54d1f0ab76818399fdcccf45 1957 mcs_0.7.2-1.dsc
 f0f147f3175d6e0d9e8e2ddb0918dde65b96c86b 112987 mcs_0.7.2.orig.tar.gz
 72ec519954862fdb618ffd6116c9119cbdfab876 7315 mcs_0.7.2-1.debian.tar.gz
 7d3743b05b4212c3f7774cc89d422d0864c68f29 13456 libmcs-utils_0.7.2-1_i386.deb
 ba698a017b91d278b971a0ae1327f8fef7d20901 198550 libmcs-doc_0.7.2-1_all.deb
 afb177c207cff424b1bd552a4fd947edbdae6216 6910 libmcs-dev_0.7.2-1_i386.deb
 6eedfaaac715104ae33e8feca9195cee2e7ad38b 16784 libmcs1_0.7.2-1_i386.deb
 f77c48923a0fb2edf49d65c0002f65ea4bdcdbed 8050 
libmcs-backend-gconf_0.7.2-1_i386.deb
Checksums-Sha256: 
 968ba0106075a1d5ba18c16bd2a910494b7f8a06c1ca7fb85b7e803bc445fa0e 1957 
mcs_0.7.2-1.dsc
 989f8dc4598ffab2f6a5648ba40f12d2e2c392b7ec6e66eeef194591565e60d9 112987 
mcs_0.7.2.orig.tar.gz
 912396a69c20c1063a4f5c9f434ed59dd79f22c299c622c7abc095181527f42d 7315 
mcs_0.7.2-1.debian.tar.gz
 74e0649f8c13b84af78411f4ad7d79d61790cde0685c547ea234e0a985bcec09 13456 
libmcs-utils_0.7.2-1_i386.deb
 fbd2fdd04e33f5e72e707065f25308fef02dde5d13fa98cc8b62c456485c7f1d 198550 
libmcs-doc_0.7.2-1_all.deb
 0faf5bb96da48f76e62b1750459e2b8fa3255e4aeddf8d2b317a158bf4d258f8 6910 
libmcs-dev_0.7.2-1_i386.deb
 c01539eb62a5025c6fffdc9fcea206567c694440cec4ed0f5bf70a081856339c 16784 
libmcs1_0.7.2-1_i386.deb
 bf4a98b1557bf70ae8960ac87fc109371c4cd1aafc7c0c74190f792db60cecbe 8050 
libmcs-backend-gconf_0.7.2-1_i386.deb
Files: 
 d0155f3d5625120406c0b87baab57b63 1957 libs optional mcs_0.7.2-1.dsc
 c47fc81f3efacaa0a5a0b8fd14f9d48e 112987 libs optional mcs_0.7.2.orig.tar.gz
 1558688d1a7ab2d52ca36452de30b15f 7315 libs optional mcs_0.7.2-1.debian.tar.gz
 8af3b2e52e319fdcc33d857be9dcd891 13456 admin optional 
libmcs-utils_0.7.2-1_i386.deb
 b0c265e8d940072e7167a248bc63c573 198550 doc optional libmcs-doc_0.7.2-1_all.deb
 f6956b927e83500ac19546635aa17f70 6910 libdevel optional 
libmcs-dev_0.7.2-1_i386.deb
 84b3643dc3d5aae4d0c9926479775be0 16784 libs optional libmcs1_0.7.2-1_i386.deb
 f99d6b7d27328f9f576001a326f874e2 8050 libs optional 
libmcs-backend-gconf_0.7.2-1_i386.deb

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

iQIcBAEBCAAGBQJN53YQAAoJEC1Os6YBVHX1ZnQQAKtrE/iNgkORzVsm5jifUtoW
AIrP9y9KZzzAava7o5ThZvNq4z977mxOn7giYIRt4vBa9nD1RcMZNZjgrrQDAzwb
ArsODy03uv+SpCYUJvIgBKhGulwp4mHABHbGPwr0s8ZxnT3VYNdG6PxWkaMwg6Fx
gY2lXYgQyv2YXNzyvYZFCgPUVr482jy0AMp7Fo9bmzZ0OeloM69ANR/p7jIaDrR+
MOB6ULMukD2+wf6ht3apxH4uurQVtGMVXHYcpODsXUzlHqu897bMDXROBxqbpbht
P8jutBmUsomnmOu0RpJBZr5RkmaVpXxPr/AGHdgjcVI7I1laA6iDevwuoHHFVHRe
EYYSW7zKoj+4MxZ/dPM1bGRkvVcueIXx/Mcft1H+U/Q1auWQrX4IxTKyCRzc51Y4
WB70yEtKBfoV30rBIYOqlnpRLX9q7FKyyzfVUe9+gN04SBGEleY3dhiJp06kMEcQ
iThJyu4wg2FJrvBqiXsyeqoXoMtH0SKxclrq933TWZwnDvlmNc5QsMjEChtM0Y6Q
6jtn3XWWL7ZjfxX2AFKZZLr+/uOCTi5Mu8HZ+sc/+OeUvDggqRD5/U9RfWCn6uJU
efRP9YWs/kabi2dim1vGFQaGrmEIrQpTR+o0z3cyfRk5wvo8y+mdNOoLyjp9tQKy
UToEdyzD5yTEEiyNRbQO
=tyMg
-END PGP SIGNATURE-


Accepted:
libmcs-backend-gconf_0.7.2-1_i386.deb
  to main/m/mcs/libmcs-backend-gconf_0.7.2-1_i386.deb
libmcs-dev_0.7.2-1_i386.deb
  to main/m/mcs/libmcs-dev_0.7.2-1_i386.deb
libmcs-doc_0.7.2-1_all.deb
  to main/m/mcs/libmcs-doc_0.7.2-1_all.deb
libmcs-utils_0.7.2-1_i386.deb
  to main/m/mcs/libmcs-utils_0.7.2-1_i386.deb
libmcs1_0.7.2-1_i386.deb
  to main/m/mcs/libmcs1_0.7.2-1_i386.deb
mcs_0.7.2-1.debian.tar.gz
  to main/m/mcs/mcs_0.7.2-1.debian.tar.gz
mcs_0.7.2-1.dsc
  to main/m/mcs/mcs_0.7.2-1.dsc
mcs_0.7.2.orig.tar.gz
  to main/m/mcs/mcs_0.7.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a 

Accepted r-bioc-limma 3.8.2-1 (source amd64)

2011-06-02 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jun 2011 13:07:58 +0900
Source: r-bioc-limma
Binary: r-bioc-limma
Architecture: source amd64
Version: 3.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description: 
 r-bioc-limma - linear models for microarray data
Closes: 628548
Changes: 
 r-bioc-limma (3.8.2-1) unstable; urgency=low
 .
   * Initial release (closes: #628548).
Checksums-Sha1: 
 1c36f60237b39f9e493282344bb600106c8ce4aa 1931 r-bioc-limma_3.8.2-1.dsc
 8424f7ce6d39355f2b410db4fc11c7ba67d65bed 916654 r-bioc-limma_3.8.2.orig.tar.gz
 1aee4cf6f887e704f27946fce20a345103899e07 2158 r-bioc-limma_3.8.2-1.diff.gz
 7a9021d1a25139cd267b1cbe65c70f00f65f33f6 1395084 r-bioc-limma_3.8.2-1_amd64.deb
Checksums-Sha256: 
 e0660ec191a2223ff29e489646a7681ed58c03c709ff7def4c5eee25a44f1886 1931 
r-bioc-limma_3.8.2-1.dsc
 9a824792349de351a6623102feb5c2f4bc3642215496eb3422a78938422c970f 916654 
r-bioc-limma_3.8.2.orig.tar.gz
 6f5a543511b1b3d29d68e2dbf4aa48c1371fa0af2b9f9d40272132f629f6b94f 2158 
r-bioc-limma_3.8.2-1.diff.gz
 e00c45565d2296ad3c74e6364d350f488e2bf5d49845694739db00cdcab61a02 1395084 
r-bioc-limma_3.8.2-1_amd64.deb
Files: 
 6bc37ee8f8768fa5caff6f025503f462 1931 gnu-r optional r-bioc-limma_3.8.2-1.dsc
 3ee3f6366c152f599dbd8bedefded85b 916654 gnu-r optional 
r-bioc-limma_3.8.2.orig.tar.gz
 63cf5d468f9d7468cf41bb22c4554915 2158 gnu-r optional 
r-bioc-limma_3.8.2-1.diff.gz
 b5de0e25504dcc8ed7abb73be130c3d8 1395084 gnu-r optional 
r-bioc-limma_3.8.2-1_amd64.deb

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

iQIcBAEBCAAGBQJN5w8hAAoJEMW9bI8ildUCZ/8P/2N8ZemxovucKm+UBRQlU2no
rgv9Rp4pH5GkyzfVxgVdm4I3+P9pM0eFp2PlWka6Db+GYiLmRRKASTq6Ah3UILN9
1Mu2PT1XvNx/RrVhHASOQoXiKn6jcCOKLa/Zb5bPUrWYIl4MPkGO1wGs936NdpFI
Go7ypZq4KrNHFBW4qnRKrU6xFCMKNGfSBHWzBl8qouetUKykj5dQsfVkpgH336/O
nv70FvcZcHsuBTtCTFM/B822jFxyEa3B0ssy2j1YFZMikGW7uXs6GMx5c8sZooSC
tBXV5bKfwL1tx918Es5OwzfKlTCKFziVM81G+q73ZupmqmBmOXJOf7WgTpUigH8p
rr3f5b9jxASlk5OYvMM8QBl/rpVDjscdDY0d501+jJduQe5vzj9W8vMv8qgmbWyf
XhfAcPDYxhBrGq88rgd+ajp6I1qq7IXX8KxoYNiPvF1w9ooQoW3/CAIphi6aRR1l
ulVhDSj0lZW/DJrJaO79gucZL5eWSbbzmbk8mXd6LvK8pb5F3tG5hSHpgpwIs7TF
bKi790C3VCccsWTuQp9pgIOWlVmCOw+ybWlzoclDj5hJU9psLLrQVVWVg6LBRph1
Lf36NFvXzNLHSV3VCzy2BmOFwBlrCUMy4vimFnUurUkSH/A1LI2in6weCE2G14GU
K8VAlUukmA2xIRUoUX/6
=0CSb
-END PGP SIGNATURE-


Accepted:
r-bioc-limma_3.8.2-1.diff.gz
  to main/r/r-bioc-limma/r-bioc-limma_3.8.2-1.diff.gz
r-bioc-limma_3.8.2-1.dsc
  to main/r/r-bioc-limma/r-bioc-limma_3.8.2-1.dsc
r-bioc-limma_3.8.2-1_amd64.deb
  to main/r/r-bioc-limma/r-bioc-limma_3.8.2-1_amd64.deb
r-bioc-limma_3.8.2.orig.tar.gz
  to main/r/r-bioc-limma/r-bioc-limma_3.8.2.orig.tar.gz


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



Accepted sane-backends 1.0.22-3 (source amd64)

2011-06-02 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 14:57:53 +0200
Source: sane-backends
Binary: sane-utils libsane libsane-dev libsane-dbg
Architecture: source amd64
Version: 1.0.22-3
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE jbla...@debian.org
Changed-By: Julien BLACHE jbla...@debian.org
Description: 
 libsane- API library for scanners
 libsane-dbg - API development library for scanners [debug symbols]
 libsane-dev - API development library for scanners [development files]
 sane-utils - API library for scanners -- utilities
Closes: 619612 627043
Changes: 
 sane-backends (1.0.22-3) unstable; urgency=low
 .
   * debian/control:
 + Bump Standards-Version to 3.9.2 (no changes).
   * debian/libsane.NEWS:
 + Added; document the switch to ACLs starting with 1.0.22-1.
 .
   * debconf translations:
 + pt_BR.po: update from Eder L. Marques (closes: #619612).
 + nl.po: courtesy of Jeroen Schot (closes: #627043).
Checksums-Sha1: 
 6a1fcfe3a71969c8725ae203e30d6ec3c19c4dcd 1473 sane-backends_1.0.22-3.dsc
 599833c097d9f139d5ece4ad8300d900da5fc79d 61334 
sane-backends_1.0.22-3.debian.tar.gz
 a79368526139b3b9a28b3474f9749c95a832ac1f 233756 sane-utils_1.0.22-3_amd64.deb
 1d9163e74134c950a1e6eb6c7034b26e7a083df5 4638266 libsane_1.0.22-3_amd64.deb
 b31b3a53b2298a0a2322b4fe5603a896f876afc2 4367484 libsane-dev_1.0.22-3_amd64.deb
 de4afe08c19de7ab2b44f1aba94a22252f68e4ca 5083980 libsane-dbg_1.0.22-3_amd64.deb
Checksums-Sha256: 
 8a33d436ae5fc1428e87e86729b8271533ff3933247b01ed3168fcfee463933f 1473 
sane-backends_1.0.22-3.dsc
 b3e928dcdb7c689409692ba7c7701fc9a2f71d35ec5eaa21d2ee70952369b237 61334 
sane-backends_1.0.22-3.debian.tar.gz
 68b66b50cf2cc3b365be5704ba9dffa34c291bd19094633c19adcca0cc8f5ca2 233756 
sane-utils_1.0.22-3_amd64.deb
 27e6c0d6ae1fabf25da14f1412770ecb6a91889777933ac0d5659494c3fc142e 4638266 
libsane_1.0.22-3_amd64.deb
 c67b315f69c4c5a0dd7f86a041973a0737d4230460a704becbe273ac62f3016b 4367484 
libsane-dev_1.0.22-3_amd64.deb
 c8cd21bddbc14c052c0760dac0514e4d9f8ea7d586813702404980f3a45b399a 5083980 
libsane-dbg_1.0.22-3_amd64.deb
Files: 
 066c437c088a71c9870f89a7a75f6752 1473 graphics optional 
sane-backends_1.0.22-3.dsc
 ca8117a4923291b281579f2dd94c9f7c 61334 graphics optional 
sane-backends_1.0.22-3.debian.tar.gz
 b6607101ecd37252833ae7a48c9411b9 233756 graphics optional 
sane-utils_1.0.22-3_amd64.deb
 02f00ea092a0e5e21e251e13c5402233 4638266 libs optional 
libsane_1.0.22-3_amd64.deb
 b5b10e6e6544dd11599a2c4ca6b0ac8c 4367484 libdevel optional 
libsane-dev_1.0.22-3_amd64.deb
 a4e9b306dde7eddfeadcc78a3f5fbcee 5083980 debug extra 
libsane-dbg_1.0.22-3_amd64.deb

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

iD8DBQFN54sNzWFP1/XWUWkRAn/mAJ9Ql6UK5ehJj4wYSH+X1i3y7vbtuwCfRtxP
US4wculWhXOkSps5OY2rPRY=
=Usol
-END PGP SIGNATURE-


Accepted:
libsane-dbg_1.0.22-3_amd64.deb
  to main/s/sane-backends/libsane-dbg_1.0.22-3_amd64.deb
libsane-dev_1.0.22-3_amd64.deb
  to main/s/sane-backends/libsane-dev_1.0.22-3_amd64.deb
libsane_1.0.22-3_amd64.deb
  to main/s/sane-backends/libsane_1.0.22-3_amd64.deb
sane-backends_1.0.22-3.debian.tar.gz
  to main/s/sane-backends/sane-backends_1.0.22-3.debian.tar.gz
sane-backends_1.0.22-3.dsc
  to main/s/sane-backends/sane-backends_1.0.22-3.dsc
sane-utils_1.0.22-3_amd64.deb
  to main/s/sane-backends/sane-utils_1.0.22-3_amd64.deb


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



Accepted libchart-clicker-perl 2.68-1 (source all)

2011-06-02 Thread Jotam Jr. Trejo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jun 2011 01:19:25 -0600
Source: libchart-clicker-perl
Binary: libchart-clicker-perl
Architecture: source all
Version: 2.68-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jotam Jr. Trejo jota...@debian.org.sv
Description: 
 libchart-clicker-perl - module for creating attractive charts and graphs
Changes: 
 libchart-clicker-perl (2.68-1) unstable; urgency=low
 .
   * New upstream release
   * Bump Standards Verstion to 3.9.2 (no changes)
   * debian/copyright:
 + Get rid of GPL-1 copyright versionless symlink reference to
   /usr/share/common-licenses
 + Use Debian systems instead of Debian GNU/Linux systems
   * Add myself to Uploaders and Copyright
Checksums-Sha1: 
 5c67bd01f74165f706aecc6e7c5a4c62771393b9 2388 libchart-clicker-perl_2.68-1.dsc
 64b120931f8c93083b82d55d30fb89a013f120e8 78485 
libchart-clicker-perl_2.68.orig.tar.gz
 afb3ba98fdc5c51ff77519cdb8e72394cdae6c36 2182 
libchart-clicker-perl_2.68-1.debian.tar.gz
 19532e48556d2b8bec68104cccabc2c89ddb00e8 135234 
libchart-clicker-perl_2.68-1_all.deb
Checksums-Sha256: 
 0fddd4561f4914ed08325a104ba7d51ec4e623e8773dc249ec08a306954a4e60 2388 
libchart-clicker-perl_2.68-1.dsc
 c1fc1ba748ef628dfae21fa06a1864b4246d44fdb7e9f1cc2482b41c378e96d3 78485 
libchart-clicker-perl_2.68.orig.tar.gz
 cd5b14021df785cca3f515960a192eb09c8c17c42358f08ea5d8b5bf45a43568 2182 
libchart-clicker-perl_2.68-1.debian.tar.gz
 5b5d0a1d8f01709a004152d21b8b84a01117f961c841bd7c573f6c963487e24a 135234 
libchart-clicker-perl_2.68-1_all.deb
Files: 
 26722698d9063504fa2a11e6f09db7fe 2388 perl optional 
libchart-clicker-perl_2.68-1.dsc
 1191dd717791f2e45701f6feb37800d0 78485 perl optional 
libchart-clicker-perl_2.68.orig.tar.gz
 bd5243ef50289b93ae26cd7964ccb27f 2182 perl optional 
libchart-clicker-perl_2.68-1.debian.tar.gz
 ed5a315ebc7e931a9e0c32e5fb12c2dd 135234 perl optional 
libchart-clicker-perl_2.68-1_all.deb

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

iQIcBAEBCAAGBQJN54tiAAoJELs6aAGGSaoGyt4QALjNNh/YKsxFb5QpbAoAW34z
JuvLou9pvTSNgFPiVHnOkmIh8UhC8q7+WhCZht1QGEmnIbri+r2lCHxPT5QbtZqC
YOOgkP7zIZOXAlXQFC49Q6W4kMo2daed/t/boZ9+vcioTCGvKeDQNRBOSkzTaSry
g45NEquEZoNv19qOYc3CAtL42qrzOXlxJgOTYvpJA4W5OOcRItV2Eq73i55JpR4x
84t6pWMWih+jhqyeZ0H9lIquYoBF0z25rWhH6P2nrzHbZFuOqn3h/vs6r3Ia/XV/
56y67Hk3N4sm1Fd2py5kaQ82KSAkMr02eNtX8esOTMuIGlDZoRM9qMVvBkHI3Kot
LqvE3MFcYoZ9f8a0AyB12rBueHZLnh0v2uJlghNTcSxMVxn2FLSqKigxSa2yhMXW
lJGrIYpgfELQxy5dNYq0zG3UXizWIjMapl/UTB1QS3mkdjnd3npLHQ+Tnyi7auqf
2RiL9pTSLDmpTex/3wIN8nGgyniwSVEm96aWL7dUDwfAljZ73mQI1/k53+daRnFZ
Swvh4mj2bY4utfDjfE3VrfXQ9Nme5onHTIxyJKhH1cdAVOZhT7RHEY5I+/9U3sGg
KINhmfrE1xx1qar9Hfy3FwOgVj2NdrBRzUwmoJBOni2FNj5nYP4TgOWvrPUsIrzI
z+2cY9soHAu806qGJirp
=F0kN
-END PGP SIGNATURE-


Accepted:
libchart-clicker-perl_2.68-1.debian.tar.gz
  to main/libc/libchart-clicker-perl/libchart-clicker-perl_2.68-1.debian.tar.gz
libchart-clicker-perl_2.68-1.dsc
  to main/libc/libchart-clicker-perl/libchart-clicker-perl_2.68-1.dsc
libchart-clicker-perl_2.68-1_all.deb
  to main/libc/libchart-clicker-perl/libchart-clicker-perl_2.68-1_all.deb
libchart-clicker-perl_2.68.orig.tar.gz
  to main/libc/libchart-clicker-perl/libchart-clicker-perl_2.68.orig.tar.gz


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



Accepted libhtp 0.2.6-1 (source amd64)

2011-06-02 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 15:23:27 +0200
Source: libhtp
Binary: libhtp-dev libhtp1
Architecture: source amd64
Version: 0.2.6-1
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier pol...@debian.org
Changed-By: Pierre Chifflier pol...@debian.org
Description: 
 libhtp-dev - HTTP normalizer and parser library (devel)
 libhtp1- HTTP normalizer and parser library
Changes: 
 libhtp (0.2.6-1) unstable; urgency=low
 .
   * Imported Upstream version 0.2.6
Checksums-Sha1: 
 29204decf480e4faac5565c2426971dcea910356 1019 libhtp_0.2.6-1.dsc
 4e4146ea8d5d958eeb34d115e4b3c255581859d8 354351 libhtp_0.2.6.orig.tar.gz
 5a2eed8b049865f0ca1cf92fa3275158ea0697d0 2138 libhtp_0.2.6-1.diff.gz
 f7e18157e957d694a56d68cde044147dc97883bb 51782 libhtp-dev_0.2.6-1_amd64.deb
 c32f8af834192e8c015adac8261e3f4b254431ca 35334 libhtp1_0.2.6-1_amd64.deb
Checksums-Sha256: 
 229e3b7bfbce0a107211fc77333f45db3191ede2b68810bb3b0e9033e56cd379 1019 
libhtp_0.2.6-1.dsc
 59c4f46ccd88430f6d392cdc43bb926a84336d07595657510435a6c112eede87 354351 
libhtp_0.2.6.orig.tar.gz
 e0f2d785c51af5e95b349db61eaefa79e573df03584ac38b6a7941befd114e43 2138 
libhtp_0.2.6-1.diff.gz
 ff8006bd4585bf7502e441094c3c1310053acc185e0432c61494a247e90c1dd8 51782 
libhtp-dev_0.2.6-1_amd64.deb
 56e6a43cb419f4f8e546fb12638ad32be89cb271f6a652319cea07884687633d 35334 
libhtp1_0.2.6-1_amd64.deb
Files: 
 3e230bd71149f17dc35329a200b02f46 1019 libs extra libhtp_0.2.6-1.dsc
 9f7f9c459d309713eca61f6eb867c0e0 354351 libs extra libhtp_0.2.6.orig.tar.gz
 77ba47c12bcfbe87c4d7ecf66dbf79b1 2138 libs extra libhtp_0.2.6-1.diff.gz
 95c911eb1d6ad21d59333c81357b2f92 51782 libdevel extra 
libhtp-dev_0.2.6-1_amd64.deb
 0fc80d2e8d3ae21f4977c6a62965f913 35334 libs extra libhtp1_0.2.6-1_amd64.deb

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

iEYEARECAAYFAk3njzwACgkQtwVrWo1fQMsNjQCg3G9lMw/YWCcn8+tIe88cNOrq
FaoAnRc/rCmtSsqruhkmAGt+5VUMT6qD
=aCGK
-END PGP SIGNATURE-


Accepted:
libhtp-dev_0.2.6-1_amd64.deb
  to main/libh/libhtp/libhtp-dev_0.2.6-1_amd64.deb
libhtp1_0.2.6-1_amd64.deb
  to main/libh/libhtp/libhtp1_0.2.6-1_amd64.deb
libhtp_0.2.6-1.diff.gz
  to main/libh/libhtp/libhtp_0.2.6-1.diff.gz
libhtp_0.2.6-1.dsc
  to main/libh/libhtp/libhtp_0.2.6-1.dsc
libhtp_0.2.6.orig.tar.gz
  to main/libh/libhtp/libhtp_0.2.6.orig.tar.gz


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



Accepted pdf-presenter-console 2.0-4 (source amd64)

2011-06-02 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 14:04:31 +0100
Source: pdf-presenter-console
Binary: pdf-presenter-console
Architecture: source amd64
Version: 2.0-4
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 pdf-presenter-console - multi-monitor presentation tool (ala Keynote) for PDF 
files
Closes: 609676
Changes: 
 pdf-presenter-console (2.0-4) unstable; urgency=low
 .
   * reverse valac disjunctive dependencies (closes: #609676)
   * bump debian standards
Checksums-Sha1: 
 426bc1fa7a99910982f45d7e3e44c741e5033eef 1388 pdf-presenter-console_2.0-4.dsc
 bde82a1b96d64f7509d07944801f40c14971e2b2 10857 
pdf-presenter-console_2.0-4.debian.tar.gz
 636aeacf6c98489e85ea79bad59d155d6346c413 48652 
pdf-presenter-console_2.0-4_amd64.deb
Checksums-Sha256: 
 aece5ae1d8c677246d728cef2166b5cacac4613145173c54878018ba80bb 1388 
pdf-presenter-console_2.0-4.dsc
 ac9279b89ecbdb265acdb40dcf0a24df4c00f89cacdf3536907d4f0026e5b997 10857 
pdf-presenter-console_2.0-4.debian.tar.gz
 d272b60285553bd83052398d2e587f1810321f5d66d75cbfb380120e9fb74e20 48652 
pdf-presenter-console_2.0-4_amd64.deb
Files: 
 5b0f59171616fb0a5924101b9e129e4d 1388 graphics optional 
pdf-presenter-console_2.0-4.dsc
 46224d943bf3994f93b4122ee6860696 10857 graphics optional 
pdf-presenter-console_2.0-4.debian.tar.gz
 be4e2716a1c068448ab9001ab548308d 48652 graphics optional 
pdf-presenter-console_2.0-4_amd64.deb

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

iEYEARECAAYFAk3njp4ACgkQLz4Gnv7CP7KUswCgmFEHqrypryAa/JSZboynSTJm
Ms4Anj+ks9IHZNuDudhMpKYITwk68pQg
=pTjT
-END PGP SIGNATURE-


Accepted:
pdf-presenter-console_2.0-4.debian.tar.gz
  to main/p/pdf-presenter-console/pdf-presenter-console_2.0-4.debian.tar.gz
pdf-presenter-console_2.0-4.dsc
  to main/p/pdf-presenter-console/pdf-presenter-console_2.0-4.dsc
pdf-presenter-console_2.0-4_amd64.deb
  to main/p/pdf-presenter-console/pdf-presenter-console_2.0-4_amd64.deb


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



Accepted partman-ext3 65 (source all)

2011-06-02 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 02 Jun 2011 14:34:14 +0100
Source: partman-ext3
Binary: partman-ext3
Architecture: source all
Version: 65
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 partman-ext3 - Add to partman support for ext3 and ext4 (udeb)
Changes: 
 partman-ext3 (65) unstable; urgency=low
 .
   * Check for ext2/ext3 /boot on mipsel/loongson-2f.  This subarchitecture
 needs all the same checks as the listed ARM systems, except that it
 doesn't matter whether the boot partition is marked as bootable.
Checksums-Sha1: 
 6a4d7d41f21ac173ef4ba88f1d772de65d24d5b6 1593 partman-ext3_65.dsc
 1ffb543425cfcdb3a8cdef28ff048a791323a3a5 70668 partman-ext3_65.tar.gz
 23981991fdbbf5a9b11f90efafc96b859e768679 58610 partman-ext3_65_all.udeb
Checksums-Sha256: 
 9ae011ca51257e58ed8c8d9966a680dd42f691c2606b71a0be98363bf886c4d6 1593 
partman-ext3_65.dsc
 9895ce625982420b7028569a2976d7d364f084aa505bbb6b2eab3f79a430e092 70668 
partman-ext3_65.tar.gz
 e440d09017dfbd7034313b533c3cfc5dc6a7b25c94de35426b4a83acfae79176 58610 
partman-ext3_65_all.udeb
Files: 
 37b7d565f7dc37ddf15ef27e7ec64915 1593 debian-installer standard 
partman-ext3_65.dsc
 d8a831cc7af52b9c9f9e0c0c581351b7 70668 debian-installer standard 
partman-ext3_65.tar.gz
 a41268cc77464facc0d29d184c39b8ce 58610 debian-installer standard 
partman-ext3_65_all.udeb
Package-Type: udeb

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

iQIVAwUBTeeSEDk1h9l9hlALAQg+/RAAl56CrY03yEpWDKFGJIdWxZ06oKXL9geO
kNqj/GV2lanGWmqgLFXliqQL83dVSH8B+z4uPd8YH6bNsVFxPynWEWNIegsdH9Gb
wt5Wl7doXh8JP5oiYegdzxd49rgcc7SckD99qp9qipyhfjFR1akY75/DZBu/Izwf
uPTbM9rHTKn1q4RDYdSiUu0NZbOf7EzBVpgmGX3A9SQV+SM7HsGn6TKXShZxE7G2
gEkogXXl1s+o9bLLHsyCBrOUXnvNrV6JZqv2omh6dDRndzNM1bkxALZnRMZHvgD/
PrrgbhVxCZpiMpEUdM6qlbi2/MHyfFjsGem6mfTYSjniFvvaavdzWhCrzu/uHPAL
ZOC/tKdmknZkTMMMzlMqUa+YtrlNktWz6usjeWUtdEFIsFtC1qnH7GhHhON2mCbF
Vm2V6lw+G2yfbEnkzscEKY+uS1UzXii4qzxFkTzAXF9QvrTdqV4KdXxadda5oDcb
kzaEDsO1eLHNIWSwD5xD8ncXLqEa9swea4epxV4VNR4RhCh7i/9SrXZl3/NvIVYn
xfGLwPRWPZZDO6g/rlYz6EEzGlNk5vZwf/3jAIzd0W7BcNJFo6RyQaKoI2KX1F68
OKRI/FdzeGjGN3Oc1WMbv2zbLicxQBHfi3jWdYz9JN0fpjXPQSccwOHBw+ZSM4BI
bPjQ5DE77AU=
=+IRP
-END PGP SIGNATURE-


Accepted:
partman-ext3_65.dsc
  to main/p/partman-ext3/partman-ext3_65.dsc
partman-ext3_65.tar.gz
  to main/p/partman-ext3/partman-ext3_65.tar.gz
partman-ext3_65_all.udeb
  to main/p/partman-ext3/partman-ext3_65_all.udeb


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



Accepted xsane 0.998-2 (source all amd64)

2011-06-02 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Jun 2011 15:27:09 +0200
Source: xsane
Binary: xsane xsane-common
Architecture: source all amd64
Version: 0.998-2
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE jbla...@debian.org
Changed-By: Julien BLACHE jbla...@debian.org
Description: 
 xsane  - featureful graphical frontend for SANE (Scanner Access Now Easy)
 xsane-common - featureful graphical frontend for SANE (Scanner Access Now Easy)
Closes: 592972
Changes: 
 xsane (0.998-2) unstable; urgency=low
 .
   * debian/control:
 + Bump Standards-Version to 3.9.2 (no changes).
 .
   * debian/patches/fix_tighten_default_umask.patch:
 + Added; tighten default umask, going to 0077 from 0007 (closes: #592972).
Checksums-Sha1: 
 405f80692b6d2435c892e290f8af794216fa25c3 1127 xsane_0.998-2.dsc
 0681e26601252760bcf6ed62e1e1a58a16aa0b70 92209 xsane_0.998-2.debian.tar.gz
 e7594dcef9f86922307d69df600186b7c3260d47 1820078 xsane-common_0.998-2_all.deb
 e8cb42eba5afc0f910b03ddea74db069081b2ece 333186 xsane_0.998-2_amd64.deb
Checksums-Sha256: 
 4c6fcb4649041395b343e7c4227b664669a6b00a144acc9075b64ffda04651d4 1127 
xsane_0.998-2.dsc
 bb1abebcf7910f846d1cce5ce7ac93d7199d9a4128990a77b95513127aee7768 92209 
xsane_0.998-2.debian.tar.gz
 f3ac658481cdb47fa0489836ae29cf31c3ca64c6cac210214f1ba6e189385423 1820078 
xsane-common_0.998-2_all.deb
 217f9d060026e4665cc32a337974f5273f0658180b37c6ea8e635f1d6b850dcb 333186 
xsane_0.998-2_amd64.deb
Files: 
 c93964bc1b84089dcd4be9a1c04ca664 1127 graphics optional xsane_0.998-2.dsc
 250b7d6981fcc871d30b8917fd910a77 92209 graphics optional 
xsane_0.998-2.debian.tar.gz
 11c4a004eb5278648c7709817217627a 1820078 graphics optional 
xsane-common_0.998-2_all.deb
 d8f0907819c09a7d55a897587e226530 333186 graphics optional 
xsane_0.998-2_amd64.deb

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

iD8DBQFN55BuzWFP1/XWUWkRAk6gAJ4mdWCHcbkzlvCiIPfwuN57XbrEpQCgwMmK
ACYiLiVDmcUuaIz3okB2uRk=
=sS3P
-END PGP SIGNATURE-


Accepted:
xsane-common_0.998-2_all.deb
  to main/x/xsane/xsane-common_0.998-2_all.deb
xsane_0.998-2.debian.tar.gz
  to main/x/xsane/xsane_0.998-2.debian.tar.gz
xsane_0.998-2.dsc
  to main/x/xsane/xsane_0.998-2.dsc
xsane_0.998-2_amd64.deb
  to main/x/xsane/xsane_0.998-2_amd64.deb


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