Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Andreas Tille
On Thu, Mar 17, 2011 at 11:21:52AM +0800, Paul Wise wrote:
  5. Cheerfully ignore any purists complaining that debian/rules clean does
    not restore whatever crap was there upstream.
 
 I generally don't bother with these unless I'm patching the autotools
 source files (configure.ac/Makefile.am). I'm increasingly being
 convinced that doing it in all autotools-based packages is a good
 idea.

Would you consider the existence of autotools autogenerated files inside
an upstream source a valid reason to rebuild upstream source in a
get-orig-source target?

More generally: Would you consider it a valid reason for rebuilding
upstream source if upstream forgot to `make (dist)clean`?

In several cases the answer yes to both questions would have saved me
a certain amount of time because I cared about purists complaining that
debian/rules clean does not restore whatever crap was there upstream.

Kind regards

Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317071542.ga25...@an3as.eu



Re: [buildd-tools-devel] re buildd's resolver and package's build deps

2011-03-17 Thread Cyril Brulebois
Hi,

just as a reminder:

Roger Leigh rle...@codelibre.net (16/03/2011):
 OK.  I think this is the only known discrepancy between the two
 resolvers.  Given that we now routinely build using minimal clean
 (cloned) chroots, they will behave identically in practice because
  
AFAICT: only possible on Linux for now.

 non-first alternatives will not be present in the clean chroot, so
 this behaviour in the internal resolver will not be exercised in
 practice.  I certainly saw no evidence of it during my whole-archive
 rebuild.

KiBi.


signature.asc
Description: Digital signature


Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Paul Wise
On Thu, Mar 17, 2011 at 3:15 PM, Andreas Tille andr...@an3as.eu wrote:

 Would you consider the existence of autotools autogenerated files inside
 an upstream source a valid reason to rebuild upstream source in a
 get-orig-source target?

I would consider autotools generated files (Makefile.in, configure,
etc) in an orig.tar.gz to be normal for an upstream project with a
build system based on autotools. Indeed, if such projects had a
tarball without those things I would consider it abnormal. I usually
wouldn't consider rebuilding a tarball to remove such files.

 More generally: Would you consider it a valid reason for rebuilding
 upstream source if upstream forgot to `make (dist)clean`?

Not sure what you are asking here. If upstream didn't use `make dist`
or `make distcheck` and that caused a problem I would contact upstream
and educate them about how to generate tarballs from autotools-based
projects.

 In several cases the answer yes to both questions would have saved me
 a certain amount of time because I cared about purists complaining that
 debian/rules clean does not restore whatever crap was there upstream.

I don't think `debian/rules clean` was ever supposed to restore stuff
in orig.tar.gz, as long as debian/rules build regenerates it. So I
wouldn't bother caring about such folks.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/AANLkTi=4986onj6f8yk3nifkt-omk68407bivv+kl...@mail.gmail.com



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Sean Finney
On Wed, 2011-03-16 at 16:36 +, Ian Jackson wrote:
  Then, you need a way to patch them. There is lots of software where
  you need to patch configure.ac and/or Makefile.am
 
 That's fine, you patch the input, rerun the autofoobar stuff, and then
 build the source package with diff.  If you're using a patch queue
 system, or a vcs, you arrange for the autogenerated autofoobar output
 changes to be committed along with the corresponding input change.

and then you end up with either (a) masses of changes to upstream files
in your local branch which will cause merge conflicts (and
aesthetically, ew, yuck.) or (b) a patch in your patch queue which will
very likely not apply in the next upstream release.

  If you do it with the patch system (quilt or even plain dpkg),
  before building the package source, you cannot ensure that files are
  patched in the right order.
 
 What do you mean in the right order ?

autofoo stuff examines timestamps on various files, so it's possible
that if configure gets patched before configure.ac, and
AM_MAINTAINER_MODE is set to a specific value, that ./configure ends up
wanting to regenerate ./configure at build time.  double fail.

  So Makefile rules can then re-run auto* tools at build time and you
  lost the benefit you want to have.
 
 Makefile rules should not rerun auto* stuff at build time.

they will if AM_MAINTAINER_MODE is being used, in some cases.


sean


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


Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Raphael Hertzog
On Thu, 17 Mar 2011, Sean Finney wrote:
   If you do it with the patch system (quilt or even plain dpkg),
   before building the package source, you cannot ensure that files are
   patched in the right order.
  
  What do you mean in the right order ?
 
 autofoo stuff examines timestamps on various files, so it's possible
 that if configure gets patched before configure.ac, and
 AM_MAINTAINER_MODE is set to a specific value, that ./configure ends up
 wanting to regenerate ./configure at build time.  double fail.

dpkg-source resets the timestamp of patched files so that they all have
the same timestamp. This is precisely to avoid this.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Follow my Debian News ▶ http://RaphaelHertzog.com (English)
  ▶ http://RaphaelHertzog.fr (Français)


-- 
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/20110317075628.gb7...@rivendell.home.ouaza.com



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Andreas Tille
On Thu, Mar 17, 2011 at 03:32:05PM +0800, Paul Wise wrote:
 On Thu, Mar 17, 2011 at 3:15 PM, Andreas Tille andr...@an3as.eu wrote:
 
  Would you consider the existence of autotools autogenerated files inside
  an upstream source a valid reason to rebuild upstream source in a
  get-orig-source target?
 
 I would consider autotools generated files (Makefile.in, configure,
 etc) in an orig.tar.gz to be normal for an upstream project with a
 build system based on autotools. Indeed, if such projects had a
 tarball without those things I would consider it abnormal. I usually
 wouldn't consider rebuilding a tarball to remove such files.

Sorry, I was not precise.  I also regard Makefile.in and configure (and
files which are used by configure to run properly) as useful in an
upstream tarball.  However, files like config.log etc. should be cleaned
up.
 
  More generally: Would you consider it a valid reason for rebuilding
  upstream source if upstream forgot to `make (dist)clean`?
 
 Not sure what you are asking here. If upstream didn't use `make dist`
 or `make distcheck` and that caused a problem I would contact upstream
 and educate them about how to generate tarballs from autotools-based
 projects.

I mean cases were the process:

   tar -xzf *.orig.tar.gz
   cd upstream-dir
   make clean(or make distclean whatever is used)

leads to a different directory layout than it is provided in the
tarball.  For sure I would try to contact upstream but this does not
always work (dead upstream, unresponsive upstream).

Simply rebuilding the cleaned source as orig.tar.gz would be a quite
simple way to handle issues like this.
 
  In several cases the answer yes to both questions would have saved me
  a certain amount of time because I cared about purists complaining that
  debian/rules clean does not restore whatever crap was there upstream.
 
 I don't think `debian/rules clean` was ever supposed to restore stuff
 in orig.tar.gz, as long as debian/rules build regenerates it. So I
 wouldn't bother caring about such folks.

If you try to build the source twice in a row you get a diff to the
original tarball.  This should be avoided.

Kind regards

   Andreas. 

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317080210.gc25...@an3as.eu



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Paul Wise
On Thu, Mar 17, 2011 at 4:02 PM, Andreas Tille andr...@an3as.eu wrote:

 Sorry, I was not precise.  I also regard Makefile.in and configure (and
 files which are used by configure to run properly) as useful in an
 upstream tarball.  However, files like config.log etc. should be cleaned
 up.

Agreed. That would usually not be something that would cause enough
problems for a new tar.gz to be warranted though.

 I mean cases were the process:

   tar -xzf *.orig.tar.gz
   cd upstream-dir
   make clean    (or make distclean whatever is used)

 leads to a different directory layout than it is provided in the
 tarball.  For sure I would try to contact upstream but this does not
 always work (dead upstream, unresponsive upstream).

 Simply rebuilding the cleaned source as orig.tar.gz would be a quite
 simple way to handle issues like this.
...
 If you try to build the source twice in a row you get a diff to the
 original tarball.  This should be avoided.

I would just have `debian/rules clean` remove the (re-)generated files
as per usual.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Michael Biebl
Am 17.03.2011 08:51, schrieb Sean Finney:

 
 So Makefile rules can then re-run auto* tools at build time and you
 lost the benefit you want to have.

 Makefile rules should not rerun auto* stuff at build time.
 
 they will if AM_MAINTAINER_MODE is being used, in some cases.

It's really the other way around.
By default automake generates rules which will regenerate the build system if
affected files are changed.

AM_MAINTAINER_MODE (which is optional and not used by most packages) allows to
explicitl disable this dependency checking via AM_MAINTAINER_MODE(disable) or as
configure switch --disable-maintainer-mode.

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Re: [buildd-tools-devel] re buildd's resolver and package's build deps

2011-03-17 Thread Roger Leigh
On Thu, Mar 17, 2011 at 08:31:13AM +0100, Cyril Brulebois wrote:
 Hi,
 
 just as a reminder:
 
 Roger Leigh rle...@codelibre.net (16/03/2011):
  OK.  I think this is the only known discrepancy between the two
  resolvers.  Given that we now routinely build using minimal clean
  (cloned) chroots, they will behave identically in practice because
   
 AFAICT: only possible on Linux for now.

You can get the same effect with file chroots (tarball unpack).  It's
not that slow providing your tarball is really minimal, and it works
on all architectures.  I used this for the whole archive rebuild after
LVM snapshots oopsed and then froze the kernel.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


signature.asc
Description: Digital signature


Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Andreas Tille
On Thu, Mar 17, 2011 at 04:09:25PM +0800, Paul Wise wrote:
 
 Agreed. That would usually not be something that would cause enough
 problems for a new tar.gz to be warranted though.

I just accept your opinion that repackaging is not warranted and I did
not in the past - but I was never really sure whether this is really
reasonable.  I'm somehow missing *clear* rules when to rebuild the orig
tarball and when not.
 
  If you try to build the source twice in a row you get a diff to the
  original tarball.  This should be avoided.
 
 I would just have `debian/rules clean` remove the (re-)generated files
 as per usual.

I understand the requirement to build a package twice in a row as it
was discussed here[1] (including link to policy) that the removal of
those files is not OK.

Kind regards

  Andreas.

[1] http://lists.debian.org/debian-devel/2007/05/msg00490.html 

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317083422.ge25...@an3as.eu



Re: [buildd-tools-devel] re buildd's resolver and package's build deps

2011-03-17 Thread Lars Wirzenius
On to, 2011-03-17 at 08:32 +, Roger Leigh wrote:
 You can get the same effect with file chroots (tarball unpack).  It's
 not that slow providing your tarball is really minimal, and it works
 on all architectures.  I used this for the whole archive rebuild after
 LVM snapshots oopsed and then froze the kernel.

As a data point for comparison: Some years ago, when I ran piuparts
tests on the archive myself, it took a few seconds to unpack the
piuparts chroot tarball. 

An LVM snapshot or other such magic might be faster than that, but the
actual build or install test is so much slower that it is hardly worth
worrying about a few seconds.

-- 
Blog/wiki/website hosting with ikiwiki (free for free software):
http://www.branchable.com/


-- 
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/1300351213.2771.83.ca...@havelock.lan



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Paul Wise
On Thu, Mar 17, 2011 at 4:34 PM, Andreas Tille andr...@an3as.eu wrote:

 I just accept your opinion that repackaging is not warranted and I did
 not in the past - but I was never really sure whether this is really
 reasonable.  I'm somehow missing *clear* rules when to rebuild the orig
 tarball and when not.

My rule is: when there is something non-free or when the amount of
useless stuff is huge. For example I would repack a tarball with a
small program and 20Mb of embedded code copies of all its dependencies
to remove the deps.

 I understand the requirement to build a package twice in a row as it
 was discussed here[1] (including link to policy) that the removal of
 those files is not OK.

Eh? Rebuilding twice in a row would remove the files, regenerate them,
remove them, regenerate them. I can't see how the second regeneration
would fail if the first one did not.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/AANLkTinJ7+4Z6yX=mvfbp+gxthxcvbbxjrlqkbjs5...@mail.gmail.com



Re: new Contents generator on ftp-master

2011-03-17 Thread Adam D. Barratt
On Tue, March 15, 2011 21:40, Joerg Jaspert wrote:

 The new implementation is currently only used for suites that are not
 marked as untouchable. Oldstable and stable will switch during the next
 point release.
 Have you (or anyone else) verified that any tools in {old,}stable
 parsing contents files are compatible with the new structure (and
 filenames in the case of udebs)?

 As far as I remember, there is currently no user for the udeb contents
 files.
 Or that was the case last we had a discussion about it. :)

That wouldn't surprise me.  The filenames were a bit of an add-on thought
to be honest, my main concern was the tool compatibility.

Regards,

Adam


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/c84c74dad8297a327440c4cd27cd48f8.squir...@adsl.funky-badger.org



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Andreas Tille
On Thu, Mar 17, 2011 at 04:40:29PM +0800, Paul Wise wrote:
 My rule is: when there is something non-free or when the amount of
 useless stuff is huge. For example I would repack a tarball with a
 small program and 20Mb of embedded code copies of all its dependencies
 to remove the deps.

What about .svn dirs?
 
 Eh? Rebuilding twice in a row would remove the files, regenerate them,
 remove them, regenerate them. I can't see how the second regeneration
 would fail if the first one did not.

The problem is that the regenerated files are not identical to the
original files and you simply get a diff which finally makes different
Debian source packages depending how often you start the build process.

Kind regards

  Andreas. 

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317091235.gg25...@an3as.eu



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Lars Wirzenius
On to, 2011-03-17 at 10:12 +0100, Andreas Tille wrote:
 On Thu, Mar 17, 2011 at 04:40:29PM +0800, Paul Wise wrote:
  My rule is: when there is something non-free or when the amount of
  useless stuff is huge. For example I would repack a tarball with a
  small program and 20Mb of embedded code copies of all its dependencies
  to remove the deps.
 
 What about .svn dirs?

I would not re-package a tarball because of .svn dirs, unless they
actuall cause breakage or are large. I would, however, talk to upstream
about generating tarballs without them.

(Ditto for CVS, .git, .bzr, etc, of course.)

-- 
Blog/wiki/website hosting with ikiwiki (free for free software):
http://www.branchable.com/


-- 
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/1300353447.2771.92.ca...@havelock.lan



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Andrey Rahmatullin
On Thu, Mar 17, 2011 at 09:17:27AM +, Lars Wirzenius wrote:
   My rule is: when there is something non-free or when the amount of
   useless stuff is huge. For example I would repack a tarball with a
   small program and 20Mb of embedded code copies of all its dependencies
   to remove the deps.
  What about .svn dirs?
 I would not re-package a tarball because of .svn dirs, unless they
 actuall cause breakage or are large. 
.svn dirs are usually exactly the same size as all other files, unless
there are huge non-committed files in the tarball.

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Paul Wise
On Thu, Mar 17, 2011 at 5:12 PM, Andreas Tille andr...@an3as.eu wrote:

 The problem is that the regenerated files are not identical to the
 original files and you simply get a diff which finally makes different
 Debian source packages depending how often you start the build process.

You won't get a diff if you remove them in `debian/rules clean` like
dh-autoreconf does. I agree that the regenerated files can be
different for each build but I don't consider that an issue.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/AANLkTimeTo+=5dGQ9MH8=zcw87bfn+2+zsjprxbmc...@mail.gmail.com



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Julien Cristau
On Thu, Mar 17, 2011 at 10:12:35 +0100, Andreas Tille wrote:

 On Thu, Mar 17, 2011 at 04:40:29PM +0800, Paul Wise wrote:
  Eh? Rebuilding twice in a row would remove the files, regenerate them,
  remove them, regenerate them. I can't see how the second regeneration
  would fail if the first one did not.
 
 The problem is that the regenerated files are not identical to the
 original files and you simply get a diff which finally makes different
 Debian source packages depending how often you start the build process.
 
Err, no.  If debian/rules clean removes some files, they'll never show
up in a diff anywhere.

Cheers,
Julien


-- 
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/20110317093048.ga12...@radis.liafa.jussieu.fr



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Adam Borowski
On Thu, Mar 17, 2011 at 09:17:05AM +0100, Michael Biebl wrote:
 Am 17.03.2011 08:51, schrieb Sean Finney:
  So Makefile rules can then re-run auto* tools at build time and you
  lost the benefit you want to have.
 
  Makefile rules should not rerun auto* stuff at build time.
  
  they will if AM_MAINTAINER_MODE is being used, in some cases.
 
 It's really the other way around.
 By default automake generates rules which will regenerate the build system if
 affected files are changed.

Ie, consistently with all regular commands in a makefile: if a source file
has been modified, everything that is generated from that source needs to be
rebuilt.

Which works just fine if timestamps haven't been trampled over.

The problem in the past stemmed from patch not preserving them, but dpkg
since version 1.13.15 (five years ago) works around that by setting the
timestamps of patched files to current time.

 AM_MAINTAINER_MODE (which is optional and not used by most packages) allows to
 explicitl disable this dependency checking via AM_MAINTAINER_MODE(disable) or 
 as
 configure switch --disable-maintainer-mode.

AM_MAINTAINER_MODE is also strongly depreciated and discouraged.  Using it,
you are effectively patching compiler output rather than source.

You're likely to end up shipping things without source, obviously failing
DFSG and being in a breach of the GPL.  There's no way you can argue for
./configure to be a preferred form for modification...

-- 
1KB // Microsoft corollary to Hanlon's razor:
//  Never attribute to stupidity what can be
//  adequately explained by malice.


-- 
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/20110317104253.ga17...@angband.pl



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Andreas Tille
On Thu, Mar 17, 2011 at 10:30:48AM +0100, Julien Cristau wrote:
  The problem is that the regenerated files are not identical to the
  original files and you simply get a diff which finally makes different
  Debian source packages depending how often you start the build process.
  
 Err, no.  If debian/rules clean removes some files, they'll never show
 up in a diff anywhere.

Assume please the following:

  1. Unpack upstream source, copy debian/ dir into it
  2. make -f debian/rules clean
  3. store the resulting build dir into a temporary dir say dir1
  4. debuild
  5. store a backup of your *.dsc + *diff*
  6. make -f debian/rules clean
  7. Now compare the build dir with dir1
  -- you get a diff (for whatever reason there are several
  examples - most of them because of broken clean targets
  which do not clean up autogenerated files)
  8. debuild
  9. Now compare the backup of the *.dsc + *diff* with the
 current one - for sure they will feature a difference because
 you noticed the diff in 7.

Do you agree that there are cases where you get such a diff?

I would consider this a situation which should be avoided if possible.

Kind regards

  Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317105055.gg31...@an3as.eu



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Ian Jackson
Sean Finney writes (Re: Best practice for cleaning autotools-generated 
files?):
 On Wed, 2011-03-16 at 16:36 +, Ian Jackson wrote:
  That's fine, you patch the input, rerun the autofoobar stuff, and then
  build the source package with diff.  If you're using a patch queue
  system, or a vcs, you arrange for the autogenerated autofoobar output
  changes to be committed along with the corresponding input change.
 
 and then you end up with either (a) masses of changes to upstream files
 in your local branch which will cause merge conflicts (and
 aesthetically, ew, yuck.) or (b) a patch in your patch queue which will
 very likely not apply in the next upstream release.

Yes, you get some trivial-to-fix conflicts: you simply rerun
autofoobar and the affected files are fixed.

 autofoo stuff examines timestamps on various files, so it's possible
 that if configure gets patched before configure.ac, and
 AM_MAINTAINER_MODE is set to a specific value, that ./configure ends up
 wanting to regenerate ./configure at build time.  double fail.

The package should be configured so that this does not happen.

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



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Henrique de Moraes Holschuh
On Thu, 17 Mar 2011, Paul Wise wrote:
 Does your autogen.sh script ever become anything more than calling
 autoreconf with some specific options?

Yes.  I think it was Cyrus IMAP that required -I in places where
autoreconf doesn't reach, so I called each tool separately.  Which is
obviously a problem in autoreconf.

  3. I always hook the debian package to retool on package build.  I have
 ...
  4. Just deal with the annoyance in the debian clean target, but do use
 ...
  5. Cheerfully ignore any purists complaining that debian/rules clean does
    not restore whatever crap was there upstream.
 
 I generally don't bother with these unless I'm patching the autotools
 source files (configure.ac/Makefile.am). I'm increasingly being
 convinced that doing it in all autotools-based packages is a good
 idea.

If you get it right, and life for anyone doing an NMU suddenly is much
easier.  That's why I do it on all my packages, even if I don't have to
patch configure.ac or Makefile.am at the moment.

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


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



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Henrique de Moraes Holschuh
On Thu, 17 Mar 2011, Andreas Tille wrote:
 On Thu, Mar 17, 2011 at 04:09:25PM +0800, Paul Wise wrote:
  Agreed. That would usually not be something that would cause enough
  problems for a new tar.gz to be warranted though.
 
 I just accept your opinion that repackaging is not warranted and I did
 not in the past - but I was never really sure whether this is really
 reasonable.  I'm somehow missing *clear* rules when to rebuild the orig
 tarball and when not.

If it breaks something, it violates the DFSG, or it increases the chances of
massively confusing someone or breaking a security build/NMU/binNMU, rebuild
it (and *document* it properly).

Otherwise, don't.

It is a bit simpleminded, but it has worked for me for 15 years, so far.

For a while I had debian/rules clean cleaning up some of the mess more
likely to show up, and it was simple enough for anyone to understand how it
interacted with the build at first glance... but it was certainly NOT simple
for people to grasp how to regenerate the list of supposed-to-be-executable
files and supposed-to-be-deleted-on-sight files.  But all my upstreams got
better at rolling release tarballs, and after a couple years without any
need to use any such fixups, I dropped that machinery in the name of
simplicity.

Now that we have get-orig-source targets, such heavy-handed cleanups even
have a place to live that is standard and fully documented.

   If you try to build the source twice in a row you get a diff to the
   original tarball.  This should be avoided.
  
  I would just have `debian/rules clean` remove the (re-)generated files
  as per usual.
 
 I understand the requirement to build a package twice in a row as it
 was discussed here[1] (including link to policy) that the removal of
 those files is not OK.

You can have packages that build properly n times in a row, for n  0,
without messing with the debian diff, even if you remove files in
debian/rules clean and do full retooling on every build.  Debian QA was
complaining of broken packaging that did not do that, and NOT of the removal
of the files themselves.

Note that any non-reversible transformation of the package source during
build IS against policy.  I cheerfully ignore that requirement as long as
the packaging is properly done (i.e. it not only rebuilds as many times in a
row as you want, it ALSO always rebuilds in the same way, INCLUDING in the
first time, and INCLUDING source package builds, not just binary packages).

I consider that policy requirement an artifact of dark times we've long left
behind.  As I said, I have never been presented with an usecase that
requires that policy of only allowing reversible transformations in the
first place, and I didn't have enough imagination to come up with one that
fit reality.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317134838.gb1...@khazad-dum.debian.net



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Henrique de Moraes Holschuh
On Thu, 17 Mar 2011, Andreas Tille wrote:
 Assume please the following:
 
   1. Unpack upstream source, copy debian/ dir into it
   2. make -f debian/rules clean

You should have looked for a get-orig-sources target, first.  You just
skipped any orig source conditioning the maintainer had to do.

Let's assume none was required.

   3. store the resulting build dir into a temporary dir say dir1
   4. debuild
   5. store a backup of your *.dsc + *diff*
   6. make -f debian/rules clean
   7. Now compare the build dir with dir1
   -- you get a diff (for whatever reason there are several
   examples - most of them because of broken clean targets
   which do not clean up autogenerated files)

The packaging is broken, maybe in a minor way.  It depends on whether it
retools properly and will present the same differences no matter how many
times you rebuild, or do a different thing at every rebuild.

 I would consider this a situation which should be avoided if possible.

Sure, but it has nothing to do with using non-reversible transformations
during the build (such as removing files or retooling in-place).

It has everything to do with not doing a througout job in debian/rules
clean, and not fixing/working around bugs in the upstream build system.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317140144.gc1...@khazad-dum.debian.net



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Henrique de Moraes Holschuh
On Thu, 17 Mar 2011, Sean Finney wrote:
 autofoo stuff examines timestamps on various files, so it's possible
 that if configure gets patched before configure.ac, and
 AM_MAINTAINER_MODE is set to a specific value, that ./configure ends up
 wanting to regenerate ./configure at build time.  double fail.
 
   So Makefile rules can then re-run auto* tools at build time and you
   lost the benefit you want to have.
  
  Makefile rules should not rerun auto* stuff at build time.
 
 they will if AM_MAINTAINER_MODE is being used, in some cases.

It is the other way around.  UNLESS you are using AM_MAINTAINER_MODE, it
*will* attempt to regenerate itself due to timestamp skews or file
modifications.  It will use the missing script if it cannot find the tools
it wants (and missing will touch things to solve the timestamp skew).

AM_MAINTAINER_MODE is used to DISABLE the timestamp checking in the first
place, so that no retooling is done even if the user has some random version
of the autotools installed.

It is also worth noticing that this is an automake macro.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317140750.gd1...@khazad-dum.debian.net



Bug#618674: ITP: sagan-rules -- Real-time System Event Log Monitoring System [rules]

2011-03-17 Thread Pierre Chifflier
Package: wnpp
Severity: wishlist
Owner: Pierre Chifflier pol...@debian.org

* Package name: sagan-rules
  Version : 10212010-r1
  Upstream Author : Champ Clark III ch...@softwink.com
* URL : http://sagan.softwink.com/
* License : BSD
  Programming Lang: other (text files)
  Description : Real-time System  Event Log Monitoring System [rules]

 Sagan is a multi-threaded, real time system- and event-log monitoring
 system, but with a twist. Sagan uses a “Snort” like rule set for
 detecting malicious events happening on your network and/or computer
 systems.
 If Sagan detects a potentially bad event, that event can be stored to a
 Snort database (MySQL/PostgreSQL), send it to a SIEM tool like Prelude,
 or send an email.
 .
 This package provides the rules for Sagan.



--
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/20110317140905.26473.35592.report...@piche2.inl.fr



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Andreas Tille
On Thu, Mar 17, 2011 at 11:01:44AM -0300, Henrique de Moraes Holschuh wrote:
 On Thu, 17 Mar 2011, Andreas Tille wrote:
  Assume please the following:
  
1. Unpack upstream source, copy debian/ dir into it
2. make -f debian/rules clean
 
 You should have looked for a get-orig-sources target, first.  You just
 skipped any orig source conditioning the maintainer had to do.

I assumed I'm the maintainer (and have either written such a target or
know about it)
 
 Let's assume none was required.

Yes.  If it is assumed anyway in most cases it is to just change the
upstream source for whatever reason.  In this case I would also fix the
issues I have mentioned.  So assuming none is required is the only case
we really need to discuss here.
 
3. store the resulting build dir into a temporary dir say dir1
4. debuild
5. store a backup of your *.dsc + *diff*
6. make -f debian/rules clean
7. Now compare the build dir with dir1
-- you get a diff (for whatever reason there are several
examples - most of them because of broken clean targets
which do not clean up autogenerated files)
 
 The packaging is broken, maybe in a minor way.

I agree that it is minor.  However, I try to care also for minor issues.

 It depends on whether it
 retools properly and will present the same differences no matter how many
 times you rebuild, or do a different thing at every rebuild.

It does different things between the first and all other builds (while
the later will probably not lead to remarkable changes any more - except
if some autogenerated files might contain time stamps inside the code).
 
  I would consider this a situation which should be avoided if possible.
 
 Sure, but it has nothing to do with using non-reversible transformations
 during the build (such as removing files or retooling in-place).
 
 It has everything to do with not doing a througout job in debian/rules
 clean, and not fixing/working around bugs in the upstream build system.

Yes.  You can make backup copies of all affected files and put them
right into place inside your clean target.  That's perfectly doable but
is this really worth the effort?  I would prefer to fix the upstream
tarball in a way that these stupid cases will not happen (if such a
change is easily doable and in cases were upstream just has forgotten
to call make distclean it is).

So the question boils down to:  Fixing up upstream cruft in
get-orig-source or in clean target?

Kind regards

Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20110317143357.gb10...@an3as.eu



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Ian Jackson
Adam Borowski writes (Re: Best practice for cleaning autotools-generated 
files?):
 Ie, consistently with all regular commands in a makefile: if a source file
 has been modified, everything that is generated from that source needs to be
 rebuilt.
 
 Which works just fine if timestamps haven't been trampled over.

No, it doesn't work if the auto* on the system is not compatible with
the auto* in the package, which happens very often.  It doesn't happen
often to people who are building packages for Debian courgette /on/
Debian courgette.  But it happens to Debian's users and downstreams a
lot.

Furthermore when the auto* incompatibility strikes, it can be a very
hard hole to dig out of.  If there is some problem with rejected
patches or timestamps, but a working and compatible auto* setup, it is
trivial to rerun auto* to fix the problem.

The design of autoconf is predicated on the idea that people who are
building the package are given a portable configure as part of the
source package, so there is no need to have good compatibility between
configure.in and various versions of autoconf.

I don't understand why the current autoconf maintainers have lost
sight of this.  Perhaps it's because they're actually the automake
maintainers who maybe never understood it.

 AM_MAINTAINER_MODE is also strongly depreciated and discouraged.

It is discouraged and deprecated (not depreciated!) by the autotools
maintainers.  But the autotools maintainers are wrong.

  Using it, you are effectively patching compiler output rather than
 source.

I'm not sure what you mean by you are patching.  Automatic systems
for managing source code will indeed edit compiled output as well as
input, but with AM_MAINTAINER_MODE no human ever needs to edit
compiled output.

There is nothing wrong with automated systems such as version control
systems and patch systems including representations of changes to
generated files, provided the generated files are portable.

 You're likely to end up shipping things without source, obviously failing
 DFSG and being in a breach of the GPL.  There's no way you can argue for
 ./configure to be a preferred form for modification...

I think this is a highly unlikely scenario.  No-one is suggesting
removing configure.in et al and there is no plausible mechanism that
might result in it vanishing.  Since often the Debian packaging is
going to involve editing auto* input, the buildability from scratch
will be tested on every new upstream version.

Also, I could argue that the configure.in without configure is
likewise not the preferred form for modification.  The question surely
is preferred by who.  I think that the preferred form for
modification of ls includes coreutils's Makefile, Makefile.in and
configure as well as its Makefile.am and configure.in etc.

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



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Tollef Fog Heen
]] Ian Jackson 

Hi,

| Adam Borowski writes (Re: Best practice for cleaning autotools-generated 
files?):
|  Ie, consistently with all regular commands in a makefile: if a source file
|  has been modified, everything that is generated from that source needs to be
|  rebuilt.
|  
|  Which works just fine if timestamps haven't been trampled over.
| 
| No, it doesn't work if the auto* on the system is not compatible with
| the auto* in the package, which happens very often.  It doesn't happen
| often to people who are building packages for Debian courgette /on/
| Debian courgette.  But it happens to Debian's users and downstreams a
| lot.

(I disagree with it happening very often, but that's a minor point.)

If you can't regenerate the autofoo files with the autofoo that we ship
we're not actually shipping source any more than shipping preprocessed C
source files would be considered shipping source.  Any such
incompatibility is a fairly serious bug.

| The design of autoconf is predicated on the idea that people who are
| building the package are given a portable configure as part of the
| source package, so there is no need to have good compatibility between
| configure.in and various versions of autoconf.

This might have been true once upon a time.  It's becoming less and less
common with many people building VCS-es instead of using a tarball.

Personally, I wish I could treat configure and its siblings with the
same amount of attention I treat gcc's intermediate files with: none,
unless I need to debug something weird.

|  You're likely to end up shipping things without source, obviously failing
|  DFSG and being in a breach of the GPL.  There's no way you can argue for
|  ./configure to be a preferred form for modification...
| 
| I think this is a highly unlikely scenario.  No-one is suggesting
| removing configure.in et al and there is no plausible mechanism that
| might result in it vanishing.  Since often the Debian packaging is
| going to involve editing auto* input, the buildability from scratch
| will be tested on every new upstream version.

We have to ship _source_ and the necessary tools to get from source to
whatever ends up in binaries. It's not ok to ship configure scripts we
can't rebuild any more than shipping .jar files we can't rebuild or
PDF-es we can't rebuild. People go to great lengths to rebuild
documentation and similar that upstream ship, and I see no reason we
should not go to the same lengths to rebuild the build system.

| Also, I could argue that the configure.in without configure is
| likewise not the preferred form for modification.  The question surely
| is preferred by who.  I think that the preferred form for
| modification of ls includes coreutils's Makefile, Makefile.in and
| configure as well as its Makefile.am and configure.in etc.

I think the preferred form is whatever is in its git (or whatever VCS
they are using) repository.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87aagtlm6l@qurzaw.varnish-software.com



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Peter Samuelson

[Bernhard R. Link]
 It usually also make sense to think twice before patching build
 systems.  Especially automake is very good in allowing many things
 changed without having to patch something. (There are some cases
 where patches are necessary, but there are also enough cases where
 patching can be easily avoided).

I see it as a question of, as the FSF puts it, the freedom to study
how the program works, and change it to make it do what you wish
(freedom 1).  A lot of us believe that's one of the main points of
Free Software in the first place.  Access to source code isn't _just_
to let you build on armel if the vendor only cares about i386.

If there _is_ some risk or perception of risk, that re-auto-tooling a
package might break it, then we're not really providing the FSF's
freedom 1.  We're then saying This is free software; downstream users
can modify the .c files, you can modify the .h files, you can modify
the manpages, but you'll want to try and avoid modifying any
Makefile.am or configure.ac files, or who knows what might happen.

(Side note: even if automake lets you change things without editing
Makefile.am, there are limits.  What if you refactor to add or
remove a source file?  I think Freedom 1 applies to those types of
edits as much as to trivial typo fixes.)

Better to take on this risk, such as it is, by building from source
every time.  It's the only way to know we _can_.  And fix whatever
issues come up.  Even though it's not actually spelled out in the DFSG,
I see it as a maintainer responsibility to ensure that our software
builds from source on a Debian platform, even if you patch it, assuming
your patch itself isn't buggy.

There's also the added convenience that if you always build from
source, downstream users who patch the autotools files won't have to
wonder how to rebuild them.  'sudo apt-get build-dep packagename' and
'dpkg-buildpackage' will Just Work.  That's sort of a side benefit, but
can be important (say, if the downstream patch-er happens to be the
Debian Security Team).
-- 
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/20110317175627.gf10...@p12n.org



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Ian Jackson
Peter Samuelson writes (Re: Best practice for cleaning autotools-generated 
files?):
 Better to take on this risk, such as it is, by building from source
 every time.  It's the only way to know we _can_.  And fix whatever
 issues come up.  Even though it's not actually spelled out in the DFSG,
 I see it as a maintainer responsibility to ensure that our software
 builds from source on a Debian platform, even if you patch it, assuming
 your patch itself isn't buggy.

This is true and it would be fine to insist that our own builds of our
own packages on the intended distro always rebuilt the autotools
output.

But that doesn't mean that we should hobble the users who _aren't_
doing that, by deleting the files they need to achieve their
objectives without undue hassle.

 I see it as a question of, as the FSF puts it, the freedom to study
 how the program works, and change it to make it do what you wish
 (freedom 1).  A lot of us believe that's one of the main points of
 Free Software in the first place.  Access to source code isn't _just_
 to let you build on armel if the vendor only cares about i386.
 
 If there _is_ some risk or perception of risk, that re-auto-tooling a
 package might break it, then we're not really providing the FSF's
 freedom 1.  [...]

That rerunning the autotools is sometimes difficult and sometimes
breaks things (because the attempt deletes the working output files)
is not a perception, it is a fact.

Deleting the working autotools output files does nothing to help this
situation.  It just puts the user who only wanted to edit a .c file in
the same bad position as one who wants to add a new .c file or a new
autoconf test.

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



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Bernhard R. Link
* Peter Samuelson pe...@p12n.org [110317 19:12]:
 If there _is_ some risk or perception of risk, that re-auto-tooling a
 package might break it, then we're not really providing the FSF's
 freedom 1.  We're then saying This is free software; downstream users
 can modify the .c files, you can modify the .h files, you can modify
 the manpages, but you'll want to try and avoid modifying any
 Makefile.am or configure.ac files, or who knows what might happen.

It's not higher than the risk that a program might no longer work with
a newer version of some library used. And still we have no
build-dependencies that forbid all future versions and we do not rebuild
everything every time there is a new build system.

Changing something in the source can always have some ill effects.
Editing a .c or .h file can also make a program non-functional, you have
to know what you do.

 (Side note: even if automake lets you change things without editing
 Makefile.am, there are limits.  What if you refactor to add or
 remove a source file?  I think Freedom 1 applies to those types of
 edits as much as to trivial typo fixes.)

Removing it easy, that is simply some _OBJECTS variable. Adding can be
more complex, but in easy setting it is just the same.

 Better to take on this risk, such as it is, by building from source
 every time.  It's the only way to know we _can_.

While I'am all in favour of failing early instead of hiding things, the
question is: does this make sense?

 There's also the added convenience that if you always build from
 source, downstream users who patch the autotools files won't have to
 wonder how to rebuild them.

I'd rather say rebuilding them puts additional pressure on downstream
users to make sure it still works, as they will not usually synchronize
all those packages in the same way.

 That's sort of a side benefit, but
 can be important (say, if the downstream patch-er happens to be the
 Debian Security Team).

I think security uploads are a big argument against recreating the
build system at every build.

Security patches should be minimal, changes to the build system are
usually a big no-go there and having minimal and thus easier to review
changes is much important than then suddenly having to also patch some
minor build-system incompatiblity.

Bernhard R. Link


-- 
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/20110317191157.ga24...@pcpool00.mathematik.uni-freiburg.de



Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Ian Jackson
Tollef Fog Heen writes (Re: Best practice for cleaning autotools-generated 
files?):
 | Adam Borowski writes (Re: Best practice for cleaning autotools-generated 
 files?):
 | No, it doesn't work if the auto* on the system is not compatible with
 | the auto* in the package, which happens very often.  It doesn't happen
 | often to people who are building packages for Debian courgette /on/
 | Debian courgette.  But it happens to Debian's users and downstreams a
 | lot.
 
 (I disagree with it happening very often, but that's a minor point.)
 
 If you can't regenerate the autofoo files with the autofoo that we ship
 we're not actually shipping source any more than shipping preprocessed C
 source files would be considered shipping source.  Any such
 incompatibility is a fairly serious bug.

I agree with that.  But Debian source packages are not only built on
the identical same environment that we build them.

We should be providing source packages which are maximally useful to
users of related distros, whether that's derivatives with different
versions of autoconf, or different versions of Debian.


 | The design of autoconf is predicated on the idea that people who are
 | building the package are given a portable configure as part of the
 | source package, so there is no need to have good compatibility between
 | configure.in and various versions of autoconf.
 
 This might have been true once upon a time.  It's becoming less and less
 common with many people building VCS-es instead of using a tarball.

The _design_ is still predicated on this assumption.  The autotools
maintainers' behaviour with respect to backward compatibility is still
predicated on this assumption.

What has happened is simply that the assumption is becoming false.  
I agree that many people nowadays do not provide autotools output as
part of their vcs trees or sometimes even tarballs.  They do this
because the autotools maintainers recommend it, and because of threads
like this one.

But those people are doing it wrong.

Either (a) autotools needs to be redesigned so that it no longer
assumes that the autotools output form part of the source code which
is distributed to people who want to modify and build the package, or
(b) we need to make that assumption true.

(a) is obviously too hard.  (b) is very simple.


 Personally, I wish I could treat configure and its siblings with the
 same amount of attention I treat gcc's intermediate files with: none,
 unless I need to debug something weird.

The analogy is completely flawed.

One can compile source code for gcc with pretty much any version of
gcc; whereas, autotools source code can only reliably be compiled with
the specific version of autotools for which it is intended.

gcc's intermediate files do not work except on the exact system where
they are built; whereas, autotools output files are highly portable
aned can be used unaltered anywhere regardless of processor, autotools
version, or even the entire build and target operating systems.


 | I think this is a highly unlikely scenario.  No-one is suggesting
 | removing configure.in et al and there is no plausible mechanism that
 | might result in it vanishing.  Since often the Debian packaging is
 | going to involve editing auto* input, the buildability from scratch
 | will be tested on every new upstream version.
 
 We have to ship _source_ and the necessary tools to get from source to
 whatever ends up in binaries. It's not ok to ship configure scripts we
 can't rebuild any more than shipping .jar files we can't rebuild or
 PDF-es we can't rebuild. People go to great lengths to rebuild
 documentation and similar that upstream ship, and I see no reason we
 should not go to the same lengths to rebuild the build system.

Did you read what I wrote ?  Let me say it again a few times:

No-one is suggesting removing configure.in et al.

I agree that we must continue to ship autotools input.

Yes, the source code input to autotools must continue to be in all vcs
repositories and source packages.

Indeed, the autotools input must not be deleted.


BUT we should ALSO provide the autotools-generated files.

The reason why people go to these great lengths to rebuild
documentation is to make sure that it can be done.  This does not
apply to autoconf output.

As I say, it will in practice be essential to rerun the autotools
when we package every upstream release anyway.  So there is very low
risk that we will ship package where autotools can't be rerun using
the tools we're shipping.


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



Bug#618473: general: Problems to handle NIS group names

2011-03-17 Thread Arthur de Jong
reassign nfs-common
thanks

On Tue, 2011-03-15 at 15:10 +0100, Christian Andretzky wrote:
 I've really no idea, which package(s) are responsible for this problem.

Reassigning to nfs-common because that seems to be the most likely
candidate (assuming autofs is used to mount nfs filesystems).

 In my log files I can find messages like:
 
 Mar 15 14:56:09 oedibus automount[1983]: set_tsd_user_vars: failed to get 
 group info from getgrgid_r
 
 As the result the output from ls command looks like
 
 ...
 drwx--  21 saadi   12000  4096 19. Nov 12:22 saadi
 ...
 
 The output of 'ypcat group' shows the correct group names.
 
 If I dont use autofs and mount the filesystem manual using 'mount',
 the same problem happens.

It would really be hulpful if you could post more
information. /etc/nsswitch.conf, /etc/auto.master, nfs mount settings
(nfs version), etc come to mind.

I know nfs4 uses and idmap that has caused issues in the past if the
naming service is not available during boot (see e.g. #500778).

-- 
-- arthur - adej...@debian.org - http://people.debian.org/~adejong --


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


Re: Speeding up dpkg, a proposal

2011-03-17 Thread Goswin von Brederlow
Marius Vollmer marius.voll...@nokia.com writes:

 ext Chow Loong Jin hyper...@ubuntu.com writes:

 Could we somehow avoid using sync()? sync() syncs all mounted filesystems, 
 which
 isn't exactly very friendly when you have a few slow-syncing filesystems like
 btrfs (or even NFS) mounted.

 Hmm, right.  We could keep a list of all files that need fsyncing, and
 then fsync them all just before writing the checkpoint.

 Half of that is already done (for the content of the packages), we would
 need to add it for the files in /var/lib/dpkg/, or we could just fsync
 the whole directory.

 But then again, I would argue that the sync() is actually necessary
 always, for correct semantics: You also want to sync everything that the
 postinst script has done before recording that a package is fully
 installed.

Except for chroots, the throw away after use kind, this realy doesn't
matter. If the system crashes at any point before the chroot is thrown
away then it just gets thrown away after boot and the whole operation is
restarted from scratch.

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/8762rha3ax.fsf@frosties.localnet



Re: Speeding up dpkg, a proposal

2011-03-17 Thread Goswin von Brederlow
Adrian von Bidder avbid...@fortytwo.ch writes:

 On Wednesday 02 March 2011 17.02:11 Marius Vollmer wrote:
 - Instead, we move all packages that are to be unpacked into
   half-installed / reinstreq before touching the first one, and put a
   big sync() right before carefully writing /var/lib/dpkg/status.

 You don't want to do this. While production systems usually are upgraded in 
 downtime windows (with less load), it is sometimes necessary to install some 
 package (tcpdump or whatever to diagnose problems...) while the system is 
 under high load. Especially when you're trying to find out why the machine 
 has a load of 20 and you can't afford to kill it...

 On a machine with lots of RAM (== disk cache...) and high I/O load, you 
 don't want to do a (global!) sync().  This can totally kill the machine for 
 20min or more and is a big no go.

 -- vbi

Then don't use the option. It should definetly be an option:

sync / fs sync / fsync / sync only metadata / single sync at end / no sync at 
all

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/871v25a36z.fsf@frosties.localnet



Processed: Re: Bug#618473: general: Problems to handle NIS group names

2011-03-17 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 618473 nfs-common
Bug #618473 [general] general: Problems to handle NIS group names
Bug reassigned from package 'general' to 'nfs-common'.
 thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
618473: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=618473
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.130039451515991.transcr...@bugs.debian.org



Re: quantification of cost of outdated dependencies

2011-03-17 Thread Goswin von Brederlow
Joey Hess jo...@debian.org writes:

 I've been hearing a bit lately about removing dependencies that are no
 longer needed for stable upgrade paths. The most common reason seems
 that this will make apt need less memory[1].

 So then, someone must have measured the memory use. Unless this is a
 kind of premature optimation. But, I've not seen a citation of any such
 measurement. I can make a rough estimate: apt-cache stats suggests that
 the average dependency takes 29 bytes.

 If that estimate were right, then to save 100kb, which seems an easy
 minimum amount to care about, 3500 dependencies would have to be
 removed. On average, one package in ten would need to be modified.

 That's a lot of skull sweat. It's larger than all but the biggest
 transitions. It does not seem, to me, to be worthwhile to save 100 kb of
 ram. Perhaps others would disagree?

 But my estimate is *not* right. apt-get may show a RSS of 20 mb
 but 16 of that is mmaped cache files. So, removing a dependency probably
 saves closer to 0 bytes of memory than 20 bytes.

The mmaped chache file IS where the memory is spend. apt doesn't keep
the dependencies in memory and cache. It just mmapes the cache. But even
though that are files you still need the memory to swap in the data.

Also the dependency resolver needs to process the extra depends. I'm
certain I could construct you a case that has exponentially many nearly
solution that the resolve can only exclude at the end of a long chain.

 Where then is the savings? It's not in Packages file download time;
 pdiff optimizes that away. It's not Package file bloat on the mirrors
 or on disk; the compressed text of *all* Dependency lines takes only
 some 500 kb on-disk. The main bloat seems to be 6 mb used in
 pkgcache.bin, and some amount of CPU time spent by apt-get update to
 parse the dependencies and populate the file.

So 6 out of 16MB are depends. That is nearly 40%. How much of those are
obsolete?  1%, 10%, 50%?

 So, I've convinved myself this is probably a false optimisation.

I wouldn't jump to conclusions either way that fast.

Why not write little script that checks the Packages file for obsolete
depends. Simply remove all entries that are not available in squeeze
main. That shouldn't be to hard to script and should be a fair
approximation. Then feed that to apt and compare memory and runtime for
a few things.

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



Re: potential MBF: first alternate depends not available in main

2011-03-17 Thread Goswin von Brederlow
Bernhard R. Link brl...@debian.org writes:

 * Goswin von Brederlow goswin-...@web.de [110316 01:24]:
 I disagree. If non-free has a superior implementation of a package and
 the user has non-free configured then it should prefer the non-free
 package.

 Superiority is always a question of what metrics you start with.
 Not being able to fix bugs because of missing source code or missing
 licenses gives a very strong push into inferiority, at least it should
 for Debian users.

   Bernhard R. Link

My metric here is clearly the functionality for the user.

If not having free (as in speech) source is a problem then do not add
non-free to your sources.list. That metric should not decide the order
of depends.

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



Re: oops I sent a courtesy copy in violation of the code of conduct

2011-03-17 Thread Michelle Konzack
Hello Shachar Shemesh,

Am 2011-03-13 19:54:01, hacktest Du folgendes herunter:
 If I set reply-to to myself, the mail won't go to the list. If I
 set it to the list, it won't go to me. Either way, the desired
 effect isn't achieved.
 
 Also, reply-to is the wrong tool for this job (this is NOT what it's
 for), as it prohibits distinction between replies to the list and
 reply to me.

If I remember right another discussion in the past about Reply-To: and
Mail-Followup-To: you can specify more then one E-Mail like

Reply-To: shac...@shemesh.biz, debian-devel@lists.debian.org
or
Mail-Followup-To: shac...@shemesh.biz, debian-devel@lists.debian.org

Note:   I am not subscribed to any Debian Lists except whitelist
and on mailinglists which support nomail,  it  is  REALY
annoying, if someone send me useless messages  of  several
100 kByte to my cell-phone.

If I have the need for list-help/infos I read it  from  an
archive, but my business E-Mail must  be  clean.  And  no,
filtering of messages is no option, because I get to  many
false-positives du to my customers which are On-List too.

Thanks, Greetings and nice Day/Evening
Michelle Konzack

-- 
# Debian GNU/Linux Consultant ##
   Development of Intranet and Embedded Systems with Debian GNU/Linux

itsystems@tdnet France EURL   itsystems@tdnet UG (limited liability)
Owner Michelle KonzackOwner Michelle Konzack

Apt. 917 (homeoffice)
50, rue de Soultz Kinzigstraße 17
67100 Strasbourg/France   77694 Kehl/Germany
Tel: +33-6-61925193 mobil Tel: +49-177-9351947 mobil
Tel: +33-9-52705884 fix

http://www.itsystems.tamay-dogan.net/  http://www.flexray4linux.org/
http://www.debian.tamay-dogan.net/ http://www.can4linux.org/

Jabber linux4miche...@jabber.ccc.de
ICQ#328449886

Linux-User #280138 with the Linux Counter, http://counter.li.org/


signature.pgp
Description: Digital signature


Re: oops I sent a courtesy copy in violation of the code of conduct

2011-03-17 Thread Michelle Konzack
Hello Carsten Hey,

Am 2011-03-12 10:50:03, hacktest Du folgendes herunter:
 If a message I reply to contains a Mail-Followup-To: set, I use it.  If
 not, I guess if the person I reply to wants to receive a reply.  To
 prevent me to Cc: you, you need to explicitly set Mail-Followup-To: to
 the list.

Which is not supported by many MUAs expecialy on  Smartphones,  PDAs  or
MUAs Android which I use in my business.

Thanks, Greetings and nice Day/Evening
Michelle Konzack

-- 
# Debian GNU/Linux Consultant ##
   Development of Intranet and Embedded Systems with Debian GNU/Linux

itsystems@tdnet France EURL   itsystems@tdnet UG (limited liability)
Owner Michelle KonzackOwner Michelle Konzack

Apt. 917 (homeoffice)
50, rue de Soultz Kinzigstraße 17
67100 Strasbourg/France   77694 Kehl/Germany
Tel: +33-6-61925193 mobil Tel: +49-177-9351947 mobil
Tel: +33-9-52705884 fix

http://www.itsystems.tamay-dogan.net/  http://www.flexray4linux.org/
http://www.debian.tamay-dogan.net/ http://www.can4linux.org/

Jabber linux4miche...@jabber.ccc.de
ICQ#328449886

Linux-User #280138 with the Linux Counter, http://counter.li.org/


signature.pgp
Description: Digital signature


Re: Transitional packages with conffiles

2011-03-17 Thread Goswin von Brederlow
Ian Jackson ijack...@chiark.greenend.org.uk writes:

 Goswin von Brederlow writes (Transitional packages with conffiles):
 Looking into the cause we discovered that the problem is that
 dhcp3-client is now a transitional package that pulls in
 isc-dhcp-client. The new package expects its config files in /etc/dhcp
 while the old had /etc/dhcp3/. The changes made to the old config no
 longer affect the new client.

 Well surely the question is: why are the files moved to a different
 directory ?  Why is the package renamed, even ?  Do we need to be able
 to co-install the old and new ISC DHCP clients ?!

 Ian.

That is a question with a specific answere for every single transition
and irelevant to the question about what to do in general.

But if you must know I think in this case it is to correct the mistake
made with dhcp v3 where the major version was added to the dir
name. Using /etc/dhcp3 for a v4 dhcp seems wrong.

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



Re: Best practice for cleaning autotools-generated files?

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

 The design of autoconf is predicated on the idea that people who are
 building the package are given a portable configure as part of the
 source package, so there is no need to have good compatibility between
 configure.in and various versions of autoconf.

 I don't understand why the current autoconf maintainers have lost sight
 of this.  Perhaps it's because they're actually the automake maintainers
 who maybe never understood it.

They've drastically improved the compatibility between Autoconf releases
starting at around 2.59, so at this point unless you're using new features
you very rarely run into any trouble with being unable to rebuild
configure.  Automake and Libtool are similarly much more solid than they
used to be.

I used to have a lot of qualms about regenerating the files because so
many people used hacked versions or weird constructs that would be buggy
in some versions of the autotools, but this problem really has largely
gone away due to tons of hard work on the part of the Autoconf, Automake,
and Libtool maintainers.  I'm much more comfortable just regenerating the
files with the latest versions now.

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


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



Re: Bug#617999: Please include link to general info in each lists page

2011-03-17 Thread Michelle Konzack
Hello Andrei Popescu and Listmasters,

it would be nice, if lists.debian.org could implement an autoresponder
for peoles sending messages to lists without being subscribed.

This message should only send one time  per  year  and  contain  usefull
links based on the mailinglist, the FAQ and the CoC.

Thanks, Greetings and nice Day/Evening
Michelle Konzack

-- 
# Debian GNU/Linux Consultant ##
   Development of Intranet and Embedded Systems with Debian GNU/Linux

itsystems@tdnet France EURL   itsystems@tdnet UG (limited liability)
Owner Michelle KonzackOwner Michelle Konzack

Apt. 917 (homeoffice)
50, rue de Soultz Kinzigstraße 17
67100 Strasbourg/France   77694 Kehl/Germany
Tel: +33-6-61925193 mobil Tel: +49-177-9351947 mobil
Tel: +33-9-52705884 fix

http://www.itsystems.tamay-dogan.net/  http://www.flexray4linux.org/
http://www.debian.tamay-dogan.net/ http://www.can4linux.org/

Jabber linux4miche...@jabber.ccc.de
ICQ#328449886

Linux-User #280138 with the Linux Counter, http://counter.li.org/


signature.pgp
Description: Digital signature


Re: Best practice for cleaning autotools-generated files?

2011-03-17 Thread Marcin Owsiany
On Tue, Mar 15, 2011 at 10:29:57PM +, Marcin Owsiany wrote:
 How are others doing it?

Thanks for all the responses (I never expected to start such a big
discussion - it must have been a while since I last read debian-devel),
and especially for the pointer to dh-autoreconf. This looks like exactly
what I was looking for! I wish it was mentioned in the autotools-dev
README.

regards,
-- 
Marcin Owsiany porri...@debian.org http://marcin.owsiany.pl/
GnuPG: 1024D/60F41216  FE67 DA2D 0ACA FC5E 3F75  D6F6 3A0D 8AA0 60F4 1216


-- 
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/20110317213849.GJ9900@beczulka



Re: Bug#617999: Please include link to general info in each lists page

2011-03-17 Thread Lisandro Damián Nicanor Pérez Meyer
On Thursday 17 March 2011 18:32:43 Michelle Konzack wrote:
 Hello Andrei Popescu and Listmasters,
 
 it would be nice, if lists.debian.org could implement an autoresponder
 for peoles sending messages to lists without being subscribed.
 
 This message should only send one time  per  year  and  contain  usefull
 links based on the mailinglist, the FAQ and the CoC.
 
 Thanks, Greetings and nice Day/Evening
 Michelle Konzack

Just as a bit of extra information, we have done this (although manually) in a 
couple of very used lists with nice success (people getting subscribed and 
sometimes becoming real active).

Of course, not everyone will do it, but I think it has helped a lot.

Kinds regards, Lisandro.

-- 
9: Que es el Explorador de Windows
* El tipo que le roba las ideas a MacOs
Damian Nadales
http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html

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


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


Re: Bug#617999: Please include link to general info in each lists page

2011-03-17 Thread Michelle Konzack
Am 2011-03-17 19:15:45, schrieb Lisandro Damián Nicanor Pérez Meyer:
 Just as a bit of extra information, we have done this (although manually) in 
 a 
 couple of very used lists with nice success (people getting subscribed and 
 sometimes becoming real active).
 
 Of course, not everyone will do it, but I think it has helped a lot.

But I do not mean Auto-Subscribe.

I do not like to become auto-subscribed with  my  Business-E-Mail  which
send all messages (only Debian would send 1000 messages to my smartphone
per day) to my Smart-Phone.

 Kinds regards, Lisandro.

Thanks, Greetings and nice Day/Evening
Michelle Konzack

-- 
# Debian GNU/Linux Consultant ##
   Development of Intranet and Embedded Systems with Debian GNU/Linux

itsystems@tdnet France EURL   itsystems@tdnet UG (limited liability)
Owner Michelle KonzackOwner Michelle Konzack

Apt. 917 (homeoffice)
50, rue de Soultz Kinzigstraße 17
67100 Strasbourg/France   77694 Kehl/Germany
Tel: +33-6-61925193 mobil Tel: +49-177-9351947 mobil
Tel: +33-9-52705884 fix

http://www.itsystems.tamay-dogan.net/  http://www.flexray4linux.org/
http://www.debian.tamay-dogan.net/ http://www.can4linux.org/

Jabber linux4miche...@jabber.ccc.de

Linux-User #280138 with the Linux Counter, http://counter.li.org/


signature.pgp
Description: Digital signature


Re: Speeding up dpkg, a proposal

2011-03-17 Thread Russell Coker
On Fri, 18 Mar 2011, Goswin von Brederlow goswin-...@web.de wrote:
  On a machine with lots of RAM (== disk cache...) and high I/O load, you 
  don't want to do a (global!) sync().  This can totally kill the machine
  for  20min or more and is a big no go.
  
  -- vbi
 
 Then don't use the option. It should definetly be an option:

It's a pity that there is no kernel support for synching one filesystem (or 
maybe a few filesystems).

I recently had a situation where I was doing a backup to a USB flash device 
and I decided to install some Debian packages.  The sync() didn't complete 
until the backup completed because the write-back buffers were never empty!

If dpkg had only sync'd the filesystems used for Debian files (IE ones on the 
hard drive) then the package install would have taken a fraction of the time 
and I could have used the programs in question while the backup was running.

-- 
My Main Blog http://etbe.coker.com.au/
My Documents Bloghttp://doc.coker.com.au/


-- 
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/201103181011.08741.russ...@coker.com.au



Re: Bug#617999: Please include link to general info in each lists page

2011-03-17 Thread Lisandro Damián Nicanor Pérez Meyer
On Thursday 17 March 2011 20:02:31 Michelle Konzack wrote:
 Am 2011-03-17 19:15:45, schrieb Lisandro Damián Nicanor Pérez Meyer:
  Just as a bit of extra information, we have done this (although manually)
  in a couple of very used lists with nice success (people getting
  subscribed and sometimes becoming real active).
  
  Of course, not everyone will do it, but I think it has helped a lot.
 
 But I do not mean Auto-Subscribe.

Neither me, sorry for not being clear. I meant that people tend to subscribe 
on recibing such mails.

Kinds regards, Lisandro.

-- 
I am two fools, I know, for loving, and for saying so.
  John Donne

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


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


Re: Speeding up dpkg, a proposal

2011-03-17 Thread Olaf van der Spek
On Fri, Mar 18, 2011 at 12:11 AM, Russell Coker russ...@coker.com.au wrote:
 Then don't use the option. It should definetly be an option:

 It's a pity that there is no kernel support for synching one filesystem (or
 maybe a few filesystems).

That'd be only a partial work around. Even with a single fs one big
sync can be bad.

 I recently had a situation where I was doing a backup to a USB flash device
 and I decided to install some Debian packages.  The sync() didn't complete
 until the backup completed because the write-back buffers were never empty!

Didn't dpkg stop using sync?

Olaf


--
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/AANLkTi=sjgv2n_otcrgymw8zvqo0pgd9zz_1+dquu...@mail.gmail.com



Re: Bug#617999: Please include link to general info in each lists page

2011-03-17 Thread Michelle Konzack
Hello Lisandro Damián Nicanor Pérez Meyer,

Am 2011-03-17 20:27:57, hacktest Du folgendes herunter:
 On Thursday 17 March 2011 20:02:31 Michelle Konzack wrote:
  But I do not mean Auto-Subscribe.
 Neither me, sorry for not being clear. I meant that people tend to subscribe 
 on recibing such mails.

OK  ;-)

 Kinds regards, Lisandro.

Thanks, Greetings and nice Day/Evening
Michelle Konzack

-- 
# Debian GNU/Linux Consultant ##
   Development of Intranet and Embedded Systems with Debian GNU/Linux

itsystems@tdnet France EURL   itsystems@tdnet UG (limited liability)
Owner Michelle KonzackOwner Michelle Konzack

Apt. 917 (homeoffice)
50, rue de Soultz Kinzigstraße 17
67100 Strasbourg/France   77694 Kehl/Germany
Tel: +33-6-61925193 mobil Tel: +49-177-9351947 mobil
Tel: +33-9-52705884 fix

http://www.itsystems.tamay-dogan.net/  http://www.flexray4linux.org/
http://www.debian.tamay-dogan.net/ http://www.can4linux.org/

Jabber linux4miche...@jabber.ccc.de
ICQ#328449886

Linux-User #280138 with the Linux Counter, http://counter.li.org/


signature.pgp
Description: Digital signature


Bug#618737: ITP: libcrypt-nettle-perl -- Perl bindings for the Nettle cryptographic library

2011-03-17 Thread Daniel Kahn Gillmor
Package: wnpp
Severity: wishlist
Owner: Daniel Kahn Gillmor d...@fifthhorseman.net

* Package name: libcrypt-nettle-perl
  Version : 0.1
  Upstream Author : Daniel Kahn Gillmor d...@fifthhorseman.net
* URL : http://search.cpan.org/dist/Crypt-Nettle/
* License : GPL
  Programming Lang: C, Perl
  Description : Perl bindings for the Nettle cryptographic library

 Crypt::Nettle provides object-style bindings to libnettle and
 libhogweed for Perl.
 .
 It supports a wide range of message digests (Crypt::Nettle::Hash),
 symmetric encryption and decryption (Crypt::Nettle::Cipher), random
 number generation (Crypt::Nettle::Yarrow), and public-key crypto
 (Crypt::Nettle::RSA).



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



Re: Speeding up dpkg, a proposal

2011-03-17 Thread Henrique de Moraes Holschuh
On Fri, 18 Mar 2011, Russell Coker wrote:
 On Fri, 18 Mar 2011, Goswin von Brederlow goswin-...@web.de wrote:
   On a machine with lots of RAM (== disk cache...) and high I/O load, you 
   don't want to do a (global!) sync().  This can totally kill the machine
   for  20min or more and is a big no go.
   
   -- vbi
  
  Then don't use the option. It should definetly be an option:
 
 It's a pity that there is no kernel support for synching one filesystem (or 
 maybe a few filesystems).

It is being implemented right now, actually...  Maybe it will be in 2.6.39.

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


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



Accepted nvidia-graphics-drivers 260.19.44-1 (source i386)

2011-03-17 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 16 Mar 2011 23:13:13 -0700
Source: nvidia-graphics-drivers
Binary: nvidia-glx nvidia-glx-ia32 libgl1-nvidia-glx libgl1-nvidia-glx-ia32 
nvidia-kernel-dkms nvidia-kernel-source nvidia-vdpau-driver 
nvidia-vdpau-driver-ia32 nvidia-smi libcuda1 libcuda1-ia32 libnvidia-compiler 
libnvidia-compiler-ia32 libnvcuvid1 nvidia-opencl-common nvidia-opencl-icd 
nvidia-opencl-icd-ia32 nvidia-libopencl1 nvidia-libopencl1-ia32 
libgl1-nvidia-alternatives libgl1-nvidia-alternatives-ia32 
libglx-nvidia-alternatives
Architecture: source i386
Version: 260.19.44-1
Distribution: unstable
Urgency: low
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 libcuda1   - NVIDIA CUDA runtime library
 libcuda1-ia32 - NVIDIA CUDA runtime library (32-bit)
 libgl1-nvidia-alternatives - simplifies replacing MESA libGL with GPU vendor 
libraries
 libgl1-nvidia-alternatives-ia32 - simplifies replacing MESA libGL with GPU 
vendor libraries (32-bit
 libgl1-nvidia-glx - NVIDIA binary OpenGL libraries${nvidia:LegacyDesc}
 libgl1-nvidia-glx-ia32 - NVIDIA binary OpenGL 32-bit 
libraries${nvidia:LegacyDesc}
 libglx-nvidia-alternatives - simplifies replacing Xorg module libglx.so with 
GPU vendor librar
 libnvcuvid1 - NVIDIA CUDA nvcuvid runtime library
 libnvidia-compiler - NVIDIA runtime compiler library
 libnvidia-compiler-ia32 - NVIDIA runtime compiler library (32-bit)
 nvidia-glx - NVIDIA binary Xorg driver${nvidia:LegacyDesc}
 nvidia-glx-ia32 - NVIDIA binary driver 32-bit libs${nvidia:LegacyDesc}
 nvidia-kernel-dkms - NVIDIA binary kernel module DKMS 
source${nvidia:LegacyDesc}
 nvidia-kernel-source - NVIDIA binary kernel module source${nvidia:LegacyDesc}
 nvidia-libopencl1 - NVIDIA OpenCL library
 nvidia-libopencl1-ia32 - NVIDIA OpenCL 32-bit library
 nvidia-opencl-common - NVIDIA OpenCL driver
 nvidia-opencl-icd - NVIDIA OpenCL ICD
 nvidia-opencl-icd-ia32 - NVIDIA OpenCL ICD (32-bit)
 nvidia-smi - NVIDIA System Management Interface
 nvidia-vdpau-driver - NVIDIA vdpau driver
 nvidia-vdpau-driver-ia32 - NVIDIA vdpau 32-bit driver
Closes: 605337 606175 607430 608625 609338 610755 611705 612136 612956 612998 
613798 614040
Changes: 
 nvidia-graphics-drivers (260.19.44-1) unstable; urgency=low
 .
   [ Andreas Beckmann ]
   * New upstream release 260.19.44 (2011-03-07).
 (Closes: #607430, #610755, #612136)
 - Updated the NVIDIA X driver to not update mode timings for G-Sync
   compatibility when NVIDIA 3D Vision or NVIDIA 3D VisionPro is
   enabled along with a G-Sync device.
 - Added support for the following GPUs: Quadro 2000 D, Quadro 400.
   * New upstream release 260.19.36 (2011-01-21).
 - Updated the NVIDIA kernel module to ensure that all system memory
   allocated by it for use with GPUs or within user-space components of the
   NVIDIA driver stack is initialized to zero.  (Closes: #609338)
   A new NVIDIA kernel module option, InitializeSystemMemoryAllocations,
   allows administrators to revert to the previous behavior.
 - Fixed a bug that caused X servers version 1.9 and higher to crash when
   color index overlays were enabled.
 - Fixed a bug that caused pixel value 255 to be treated as transparent in
   color index overlays.
 * Fix deadlock in some applications that fork.  (Closes: #612998)
   * New upstream release 260.19.29 (2010-12-13).
 - Added support for the following GPUs: GeForce GTX 460 SE,
   GeForce GTX 570, Quadro 5000M, NVS 300.
 - Fixed a bug that caused some OpenGL applications to become
   unresponsive for up to a minute on some GPUs when changing
   the resolution or refresh rate.
 - Added support for NVIDIA 3D Vision Pro.
   See the Stereo X configuration documentation in the README
   for further details.
 - Added a new X configuration option 3DVisionProConfigFile
   to allow user provide a filename which NVIDIA X driver uses
   to store 3D Vision Pro configuration settings.
   See Appendix B. X Config Options in the README for
   more information.
   * Merge 195.36.31-7 (UNRELEASED).
   * Remove NVIDIA_kernel-260.19.34-778465.diff, applied upstream.
   * Update nv-kernel.ids.
   * Detect license changes by comparing debian/copyright with the shipped
 LICENSE during build.
   * Pre-Depend on nvidia-common for interactive (using debconf)
 nvidia-installer cleanup.  There is a mutual exclusion between using the
 nvidia-installer and the driver packages.
 - Checks for /usr/bin/nvidia-installer and asks the user whether to run
   'nvidia-installer --uninstall'.  If that fails, offers to just delete
   the remaining files.  If the user chooses to do the cleanup himself,
   installation is blocked as long as nvidia-installer is still found on
   the system.  (Closes: #605337, #611705)
 - Adds a pre-install hook for the 

Accepted mozc 1.1.626.102-1 (source amd64)

2011-03-17 Thread Nobuhiro Iwamatsu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Mar 2011 01:06:41 +0900
Source: mozc
Binary: ibus-mozc scim-mozc uim-mozc emacs-mozc emacs-mozc-bin mozc-server 
mozc-utils-gui
Architecture: source amd64
Version: 1.1.626.102-1
Distribution: unstable
Urgency: low
Maintainer: Nobuhiro Iwamatsu iwama...@debian.org
Changed-By: Nobuhiro Iwamatsu iwama...@debian.org
Description: 
 emacs-mozc - Mozc for Emacs
 emacs-mozc-bin - Helper module for emacs-mozc
 ibus-mozc  - Mozc engine for IBus - Client of the Mozc input method
 mozc-server - Server of the Mozc input method
 mozc-utils-gui - GUI uitilities of the Mozc input method
 scim-mozc  - Mozc engine for SCIM - Client of the Mozc input method
 uim-mozc   - Mozc engine for uim - Client of the Mozc input method
Changes: 
 mozc (1.1.626.102-1) unstable; urgency=low
 .
   * New upstream release (r52).
   * Update and add some patches.
 - Update patch of uim-mozc (r222).
 - Update patch of kfreebsd.
 - Drop mozc-el-pseudo-cursor.patch.
 - Add mozc-el-issue76.patch.
   pick from issue 76.
Checksums-Sha1: 
 6db0c31f3a810896af41d189c75e938fe84087ca 2018 mozc_1.1.626.102-1.dsc
 de73513483513f3d71809743173b2e05b6302542 58110585 mozc_1.1.626.102.orig.tar.gz
 515e3408d907ee4bbc1c9e9d8173813d7f3d4541 39138 mozc_1.1.626.102-1.debian.tar.gz
 8f115a9e6d057199d039f6fe5600e940a08ea768 216626 
ibus-mozc_1.1.626.102-1_amd64.deb
 984ce7876b6f152282c22d6ed939f9da74183fb3 349242 
scim-mozc_1.1.626.102-1_amd64.deb
 fd6a70e7b353610661b154bdc8fce52e74a38e9e 242624 
uim-mozc_1.1.626.102-1_amd64.deb
 1f43a0baacce4f033c1edaf15531ee7481de3475 20432 
emacs-mozc_1.1.626.102-1_amd64.deb
 bf9f52c2466c8ba743b847c1fda5def1bd140852 190578 
emacs-mozc-bin_1.1.626.102-1_amd64.deb
 e6b58514fa5d1f6e032602deb16d20c049e48f95 15117130 
mozc-server_1.1.626.102-1_amd64.deb
 800d9c6d59dd5b6fb5e30e615aeb67ae799661ee 336526 
mozc-utils-gui_1.1.626.102-1_amd64.deb
Checksums-Sha256: 
 36664edd215fb6de5bbb1061a57678145b6de0f4d54fe6dd37476c68fcda5503 2018 
mozc_1.1.626.102-1.dsc
 6b4fff9117110c264584f4ef1a9389d88b1246f583a9672c1bbfad6365554071 58110585 
mozc_1.1.626.102.orig.tar.gz
 a66eeb29725b86a443d6e3d4ec724d3b630da9871c835fd65436458d71935b1a 39138 
mozc_1.1.626.102-1.debian.tar.gz
 d1f1d93cde060e0d6c1e8d06d2813abd32cb714c14c4ea12bfdd783f7dab5f0c 216626 
ibus-mozc_1.1.626.102-1_amd64.deb
 53794548da90e1a8d46c1f7fbec14ea3bed843fc05357965023694558a4caf3e 349242 
scim-mozc_1.1.626.102-1_amd64.deb
 429a57ad1fc54345076969e09599ba2fdffaec7263dfcc2dbf8a33a40bc9995a 242624 
uim-mozc_1.1.626.102-1_amd64.deb
 5ae4fa3ab834f265a3961421d700ed7a6df0f4ef923fdd637891496fd791d076 20432 
emacs-mozc_1.1.626.102-1_amd64.deb
 b8aa91d8a6090edeb0710207305fa804cec8691efd551dc2e9ce7aaa1e415c2b 190578 
emacs-mozc-bin_1.1.626.102-1_amd64.deb
 1e7fbb81bebc1a135202a173e879f87ba4eb953c9b8e8a55139e09fc381e087d 15117130 
mozc-server_1.1.626.102-1_amd64.deb
 080b8efa5704bc4f1a5b097ac6d1b02adef67ea2ece1150042b2468311fbf888 336526 
mozc-utils-gui_1.1.626.102-1_amd64.deb
Files: 
 831d9543e6dae068d59ff609ae4c2bc7 2018 non-free/utils optional 
mozc_1.1.626.102-1.dsc
 897f6497163b275e31e693c96a6095f7 58110585 non-free/utils optional 
mozc_1.1.626.102.orig.tar.gz
 7461b46aaa3f99a517802353a568388e 39138 non-free/utils optional 
mozc_1.1.626.102-1.debian.tar.gz
 6f0854e33dec6627b345272d0c0eb18c 216626 non-free/utils optional 
ibus-mozc_1.1.626.102-1_amd64.deb
 35872f3e4a4104d0d740e52e3452b37b 349242 non-free/utils optional 
scim-mozc_1.1.626.102-1_amd64.deb
 119dc168e734da4d0e20d596f5bd1fd2 242624 non-free/utils optional 
uim-mozc_1.1.626.102-1_amd64.deb
 694f127cb0c7acd8f141e995b843d76c 20432 non-free/utils optional 
emacs-mozc_1.1.626.102-1_amd64.deb
 7ecaf82c9ea7f854b13f7a5d9463cf1c 190578 non-free/utils optional 
emacs-mozc-bin_1.1.626.102-1_amd64.deb
 d05b9b58842c9154b78338482ab159f2 15117130 non-free/utils optional 
mozc-server_1.1.626.102-1_amd64.deb
 d50812a470b68b78d17cf715722c7099 336526 non-free/utils optional 
mozc-utils-gui_1.1.626.102-1_amd64.deb

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

iQIcBAEBCAAGBQJNgayzAAoJEDIkf7tArR+mKvoP/RJL3XIor0hbBN3Exa6I3Zmg
x/v9LK/hmgj6N5TRKFgj3QRjrkfTITe9K9Aadnj0PAolibTqsZWbEK2JY+Gj0kEg
pyCu+oeFaWq+riA8vS87fXe0VG8QeLt+kBj1pH1Fzrk+MToirmf5h3R0s0CbDKc9
1Jo231vNjam3C/ZU+8ZN7baeSyRKSLOWIR9nOif4exwsI+4qEgliGcGjAZYw6GBi
6F1Bj8YvHQoRMRe7rLR9wJFRquhS8t5iEUtpxbDMQCSDDYbSuZUyeMnez93dcroW
W4fE0kwUCwyGxYisAgkiFPScWNzm9CA1oolaoxSBPMPgwpH5qkwFuApKn2+1uXcJ
/B+dDGiGf6sLixwJFk8qk+EwhVh2lYvQJBLDysxa3Q6Rc2Kcpad9sDrtqOf7XiVy
IM48qjc7CMdf0464aVpHHB8CIKFnCyPUhSCQPZFGGLd53rltJeNu4yAPakiRN56t
SP+C+3B10DiBQtZjw09ns0oVgn0t6cZX+5C1RNFMBcJnoIu1opkgZm4/AOYnLfJl
8gBPk7UgSYSPk6AGjVclWR2Usq4TwCe49d10Y7icN6f3C8/lTmE/Ubc1cP1cvYwu
JRRdg56tgis8glVPxpeMSEE0sXZOPsHZHcv+t9J3vz3zGu7vvNCI/8QaaBwziIqF
CHQfit8UsJ6oChlnH5mN
=7IcM
-END PGP SIGNATURE-


Accepted:
emacs-mozc-bin_1.1.626.102-1_amd64.deb
  to non-free/m/mozc/emacs-mozc-bin_1.1.626.102-1_amd64.deb

Accepted portmap 6.0.0-5 (source i386)

2011-03-17 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 07:30:46 +0100
Source: portmap
Binary: portmap
Architecture: source i386
Version: 6.0.0-5
Distribution: experimental
Urgency: low
Maintainer: Anibal Monsalve Salazar ani...@debian.org
Changed-By: Luk Claes l...@debian.org
Description: 
 portmap- RPC port mapper
Closes: 615642
Changes: 
 portmap (6.0.0-5) experimental; urgency=low
 .
   * Do it also for TCP (Closes: #615642).
Checksums-Sha1: 
 06aba8746aec5c55ad0a470ed33dd5f3bccfac08 1092 portmap_6.0.0-5.dsc
 38708d18a53c2df9cec34bf10a80414b0dd1d7e6 28196 portmap_6.0.0-5.diff.gz
 37151a59e896794480fc7901e598c25c7e7ac660 37564 portmap_6.0.0-5_i386.deb
Checksums-Sha256: 
 c585d8f2dbf7632d31f482234ba7bbe5370d131a5bc9bc8ec540b366f335c3da 1092 
portmap_6.0.0-5.dsc
 02e30b6bf2226a8a558ff96550d671c0aeb888c136601168be1c95e0ed4b2546 28196 
portmap_6.0.0-5.diff.gz
 7b1b0309c654baa884c83fe00279db3aaa27736a88d2235e132af2fe3a725a69 37564 
portmap_6.0.0-5_i386.deb
Files: 
 4abcc1230eb5a13484018f9501bfe63d 1092 net standard portmap_6.0.0-5.dsc
 3ceb813b2022f40eae13d3c6fa91a6a3 28196 net standard portmap_6.0.0-5.diff.gz
 815f66563088a5b7c4a5e83f21adbf26 37564 net standard portmap_6.0.0-5_i386.deb

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

iEYEARECAAYFAk2BquYACgkQ5UTeB5t8Mo1pZACaArrPlCVT1S5Y77+JLsqSYIX5
nLgAn2oHRXZYPGI9rJfzRSkN6eS83si6
=eot/
-END PGP SIGNATURE-


Accepted:
portmap_6.0.0-5.diff.gz
  to main/p/portmap/portmap_6.0.0-5.diff.gz
portmap_6.0.0-5.dsc
  to main/p/portmap/portmap_6.0.0-5.dsc
portmap_6.0.0-5_i386.deb
  to main/p/portmap/portmap_6.0.0-5_i386.deb


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



Accepted xmltooling 1.4.1-2 (source i386 all)

2011-03-17 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 16 Mar 2011 23:45:11 -0700
Source: xmltooling
Binary: libxmltooling5 libxmltooling-dev xmltooling-schemas libxmltooling-doc
Architecture: source i386 all
Version: 1.4.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Shib Team pkg-shibboleth-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 libxmltooling-dev - C++ XML parsing library with encryption support 
(development)
 libxmltooling-doc - C++ XML parsing library with encryption support (API docs)
 libxmltooling5 - C++ XML parsing library with encryption support (runtime)
 xmltooling-schemas - XML schemas for XMLTooling
Closes: 618615
Changes: 
 xmltooling (1.4.1-2) unstable; urgency=low
 .
   * Fix FTBFS with arch-only builds, such as those on the buildds.
 Thanks, Aaron M. Ucko.  (Closes: #618615)
Checksums-Sha1: 
 5b0cc7a2111b7936eadffcd098746c7f2e13d1b4 1802 xmltooling_1.4.1-2.dsc
 f93e8ff1d66805192317bd7f4efa707ab16d67a7 7985 xmltooling_1.4.1-2.debian.tar.gz
 f4928490fa9b59f96087ce8db24c87282a73248c 853860 libxmltooling5_1.4.1-2_i386.deb
 67aac38f915ee5ae908c110092b50db2f3015859 80028 
libxmltooling-dev_1.4.1-2_i386.deb
 fbc4fb517d34090e761df923c220054dff117e25 14720 
xmltooling-schemas_1.4.1-2_all.deb
 f33f075e7ab0e4a78302263c6f7d8d2ff4d2ac7c 3778462 
libxmltooling-doc_1.4.1-2_all.deb
Checksums-Sha256: 
 d8a2c45ddb6bb26fad636fec847aaa8976ed37748bbb4d828e710088f5200a30 1802 
xmltooling_1.4.1-2.dsc
 2a0337a80b74fde3456487d7de45713835a1a41ec7631ecf6c630b8c48fa7cef 7985 
xmltooling_1.4.1-2.debian.tar.gz
 2f644ba74dbe1ba0a82e7f28a849d487352e9a4d1ae5706dc2565072b7ee67ab 853860 
libxmltooling5_1.4.1-2_i386.deb
 adb15b0cc2f1ce6669e3501edede2acfd31fe39efd485cb3334d4c7f7300397e 80028 
libxmltooling-dev_1.4.1-2_i386.deb
 5d8cf8b04d842296ee36cfc63ecbef30eb39773186bab7367253f5a596b68e7b 14720 
xmltooling-schemas_1.4.1-2_all.deb
 4f9a9f56865134f78bd20d43e126499a6b2c7e88476288f4b68bf5a51c9e8a7f 3778462 
libxmltooling-doc_1.4.1-2_all.deb
Files: 
 68fb9549a43a6889a52e516c193eaa45 1802 libs extra xmltooling_1.4.1-2.dsc
 96cdc0b0c80e78a8e937135f359ff66e 7985 libs extra 
xmltooling_1.4.1-2.debian.tar.gz
 2226f23bc12d17d3650b8743478c03de 853860 libs extra 
libxmltooling5_1.4.1-2_i386.deb
 db1e6b62a3aab2742b341482e82340b0 80028 libdevel extra 
libxmltooling-dev_1.4.1-2_i386.deb
 1adf9e987cae0aa6b239a167a84bab60 14720 text extra 
xmltooling-schemas_1.4.1-2_all.deb
 d62a8c00f3a039a85a93a9978151043e 3778462 doc extra 
libxmltooling-doc_1.4.1-2_all.deb

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

iQEcBAEBCAAGBQJNgbEqAAoJEH2AMVxXNt51wJEIAKz7YllL134ZSV4KKaXOngCl
6adQwxrMI+A5AM7Y1wkNfkbirF2vHE0mHWECiy1wh1lNd5SbkfhPypEVFqPtiFMA
zSI30IlR4/uGbtXDGaF/QLTDjOB2l8wDYqDSaZ7uVQdIlRBroKi+fqQtArAgYaSz
Cz0DFiPq3fhA5KtC1RWATrhTY+VoH9sycfjLafiEt41FSI9PET+X5Aibn3RucwE6
e1nUjkhtJxd9DPHhZ5sYt8absVJL8ZlJ8LS2tM3cQFbKQbmvpb8Wkx0bpwtzMuf4
rJUOW62Qgfq3MsYt3lQFOVWTAyF8SXPmswxGQT0+Bo5+82RWRtib5FElzdDbHoE=
=Eeph
-END PGP SIGNATURE-


Accepted:
libxmltooling-dev_1.4.1-2_i386.deb
  to main/x/xmltooling/libxmltooling-dev_1.4.1-2_i386.deb
libxmltooling-doc_1.4.1-2_all.deb
  to main/x/xmltooling/libxmltooling-doc_1.4.1-2_all.deb
libxmltooling5_1.4.1-2_i386.deb
  to main/x/xmltooling/libxmltooling5_1.4.1-2_i386.deb
xmltooling-schemas_1.4.1-2_all.deb
  to main/x/xmltooling/xmltooling-schemas_1.4.1-2_all.deb
xmltooling_1.4.1-2.debian.tar.gz
  to main/x/xmltooling/xmltooling_1.4.1-2.debian.tar.gz
xmltooling_1.4.1-2.dsc
  to main/x/xmltooling/xmltooling_1.4.1-2.dsc


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



Accepted libcpan-changes-perl 0.08-1 (source all)

2011-03-17 Thread Jonathan Yu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 16 Mar 2011 19:31:15 -0400
Source: libcpan-changes-perl
Binary: libcpan-changes-perl
Architecture: source all
Version: 0.08-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jonathan Yu jaw...@cpan.org
Description: 
 libcpan-changes-perl - module for reading and writing CPAN Changes files
Changes: 
 libcpan-changes-perl (0.08-1) unstable; urgency=low
 .
   * New upstream release
   * Bump to debhelper compat 8
   * Add myself to Uploaders and Copyright
   * Rewrite control description
Checksums-Sha1: 
 15956b7e53bbadd07c8378078daced5dea32c728 2036 libcpan-changes-perl_0.08-1.dsc
 635d1624ee8e218122be58b46c062fbcdc38f3fa 27560 
libcpan-changes-perl_0.08.orig.tar.gz
 9911cd36c7de0eb04953480f581ecde0fabc5ff6 1744 
libcpan-changes-perl_0.08-1.debian.tar.gz
 9608470a9aa50c27ada44707e1ca5b44062466e0 21854 
libcpan-changes-perl_0.08-1_all.deb
Checksums-Sha256: 
 4286b156e3f9a16622c926d878fcc567cffd427b0158e3483c63d93c23ab665c 2036 
libcpan-changes-perl_0.08-1.dsc
 c2f297feef4c162b4f8c94ed6bb0d7c29de393d7904327ff53351bcc8eaba4fa 27560 
libcpan-changes-perl_0.08.orig.tar.gz
 4086c50563988a460ac59fd5ab88448832e16fe36d2a6772fe2a0c3a90fad73a 1744 
libcpan-changes-perl_0.08-1.debian.tar.gz
 6186d06b15bcd8f5908d39148f5fc049db271d7f578370a37defb7139bf8361f 21854 
libcpan-changes-perl_0.08-1_all.deb
Files: 
 bb694091c33e04a10c45e840fb3e75f0 2036 perl optional 
libcpan-changes-perl_0.08-1.dsc
 6c3e90a6905f5984e275b5ecca04f3ed 27560 perl optional 
libcpan-changes-perl_0.08.orig.tar.gz
 fc575597c2196da1bbfaef41af801b92 1744 perl optional 
libcpan-changes-perl_0.08-1.debian.tar.gz
 6e3e0b05417a4b63605f8cc289476048 21854 perl optional 
libcpan-changes-perl_0.08-1_all.deb

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

iQIcBAEBCAAGBQJNgcQcAAoJEHidbwV/2GP+p6IQAKvc3iSbm+CWPnpoSNArjGDs
1Sh9Ym5oxf1Cm1OFzDvsZpW2LdWh26fL3XjcsB4zpMP2X9/wmHFA7q1OY5z1Ljpi
+0UY/aCijgSApeQMulBZvNl8C0V3m+I3l6MpjvVlDAfeDlLYmLeqp5PrFj6gxLDh
2h3pG/psNOKZ+mZa3wx4/d79ijPwncpSfGIOFjtNl9IZHUJF/x0+D+b1U0wD2vj0
j3fUK/TvTlgqn27uv32OgPO2qqgKAaYNyjJOUYR1qeLiqznXMPG1vg4hCXhcBixe
8Xzwxl7Wq2GKLZbRRJamm2k9GBfRLNhmTg2ML//GylikYxmue8uQ7ZDvRGtnGATc
ylpSOyTh7HVB08Fr0+GTSdzWf0JnTPZrIzfW3JyOZ1CexiUwVQI7pC9VlpGzVfIw
HLR1tjLNERtsqIi4hvmQYT4pbfhZZ69ft9PDqTJAtmWEDAEeZLSBI3PCAh6O+gxc
AJ6+aubp0JnGi42KKZpPRQui9ClWqgZ84jrfAtW5/TpXQlDdThpHw0bkm2D6SeTL
0cCNp/Awe9acZ+YzGkSQqSQC4gN6EAJk20NnBlKOdyIX/tc7p4pzY3UBmVWZT68n
qtnxRhpIOgUnAGqrSEuO4FpQcISeZ5Hzeqgi6mtt0UH3bSsIbt0Jb6SElYD3JPQY
vydytoN1qljJB/7bGDXq
=JVb+
-END PGP SIGNATURE-


Accepted:
libcpan-changes-perl_0.08-1.debian.tar.gz
  to main/libc/libcpan-changes-perl/libcpan-changes-perl_0.08-1.debian.tar.gz
libcpan-changes-perl_0.08-1.dsc
  to main/libc/libcpan-changes-perl/libcpan-changes-perl_0.08-1.dsc
libcpan-changes-perl_0.08-1_all.deb
  to main/libc/libcpan-changes-perl/libcpan-changes-perl_0.08-1_all.deb
libcpan-changes-perl_0.08.orig.tar.gz
  to main/libc/libcpan-changes-perl/libcpan-changes-perl_0.08.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/e1q09ur-0004n3...@franck.debian.org



Accepted cups 1.4.6-3 (source all amd64)

2011-03-17 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 10:49:04 +0100
Source: cups
Binary: libcups2 libcupsimage2 libcupscgi1 libcupsdriver1 libcupsmime1 
libcupsppdc1 cups cups-client libcups2-dev libcupsimage2-dev libcupscgi1-dev 
libcupsdriver1-dev libcupsmime1-dev libcupsppdc1-dev cups-bsd cups-common 
cups-ppdc cups-dbg cupsddk
Architecture: source all amd64
Version: 1.4.6-3
Distribution: unstable
Urgency: low
Maintainer: Debian CUPS Maintainers pkg-cups-de...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 cups   - Common UNIX Printing System(tm) - server
 cups-bsd   - Common UNIX Printing System(tm) - BSD commands
 cups-client - Common UNIX Printing System(tm) - client programs (SysV)
 cups-common - Common UNIX Printing System(tm) - common files
 cups-dbg   - Common UNIX Printing System(tm) - debugging symbols
 cups-ppdc  - Common UNIX Printing System(tm) - PPD manipulation utilities
 cupsddk- Common UNIX Printing System (transitional package)
 libcups2   - Common UNIX Printing System(tm) - Core library
 libcups2-dev - Common UNIX Printing System(tm) - Development files CUPS library
 libcupscgi1 - Common UNIX Printing System(tm) - CGI library
 libcupscgi1-dev - Common UNIX Printing System(tm) - Development files for CGI 
libra
 libcupsdriver1 - Common UNIX Printing System(tm) - Driver library
 libcupsdriver1-dev - Common UNIX Printing System(tm) - Development files 
driver librar
 libcupsimage2 - Common UNIX Printing System(tm) - Raster image library
 libcupsimage2-dev - Common UNIX Printing System(tm) - Development files CUPS 
image li
 libcupsmime1 - Common UNIX Printing System(tm) - MIME library
 libcupsmime1-dev - Common UNIX Printing System(tm) - Development files MIME 
library
 libcupsppdc1 - Common UNIX Printing System(tm) - PPD manipulation library
 libcupsppdc1-dev - Common UNIX Printing System(tm) - Development files PPD 
library
Closes: 618545
Changes: 
 cups (1.4.6-3) unstable; urgency=low
 .
   [ Till Kamppeter ]
   * debian/local/filters/pdf-filters/filter/pdftoraster.cxx: Latest bug fixes
 from upstream:
  o Respect the *RequiresPageRegion attribute of the PPD files in the
same way as pstops does (LP: #405116).
  o Change default rendering intent to PERCEPTUAL.
  o Use external ICC color profile also with CMYK color space.
   * debian/local/filters/pdf-filters/pdftopdf/pdftopdf.cxx: Latest bug fixes
 from upstream:
  o Support ipp-attribute-fidelity option and MirrorPrint choice. This is
needed that appropriate options in printing dialogs and printer setup
tools are respected.
 .
   [ Martin Pitt ]
   * debian/control: Downgrade smbclient to Recommends. (Closes: #618545)
Checksums-Sha1: 
 7d5bce68fdcfb088d359e03c6c5f701ce2da3368 2730 cups_1.4.6-3.dsc
 847e465e97f21a34d988614e8af12b3760700617 522834 cups_1.4.6-3.diff.gz
 694987da7a2dc905cefb1a2378ffb6d0e235ac0e 1349314 cups-common_1.4.6-3_all.deb
 e66db2449b34af44c795e2b5852a9e76f3b12e26 83136 cupsddk_1.4.6-3_all.deb
 3f9dd04f0c83dd4d39806137b011dbc47af807df 245568 libcups2_1.4.6-3_amd64.deb
 a78efc948942f76b66c6b3a61ad444e8f5291229 131940 libcupsimage2_1.4.6-3_amd64.deb
 59df516aeda9d0f0c23d5c8da6d16e91900a5c48 111746 libcupscgi1_1.4.6-3_amd64.deb
 e5dc5739415cefbd1a9d2f287cf1004f6503ae2a 0 libcupsdriver1_1.4.6-3_amd64.deb
 2d2e1d9a2cfa9baec1aa9f3d2343010166b83667 94116 libcupsmime1_1.4.6-3_amd64.deb
 010d10f33eb788860093dfb526bd527b5a5285e0 135728 libcupsppdc1_1.4.6-3_amd64.deb
 4849d02ba2d776d8af4a61fdfa1a5725d56007b3 2109952 cups_1.4.6-3_amd64.deb
 54aa28e6f4a8e833298653233f1bbe99fb370687 132940 cups-client_1.4.6-3_amd64.deb
 99192176c7ae0b853a958815f4dba7a85ea3e2ee 309630 libcups2-dev_1.4.6-3_amd64.deb
 91f98647bbbf64502ace3cf0d4d99b12f1bebae0 62450 
libcupsimage2-dev_1.4.6-3_amd64.deb
 86e5231b9e247ccb0611b449e845adcbb13059f3 117916 
libcupscgi1-dev_1.4.6-3_amd64.deb
 89337d339e46298e5f3ac64f2b1b079fa220f72c 103380 
libcupsdriver1-dev_1.4.6-3_amd64.deb
 3918eab1bda1a2f90f5559125051705e65ecf114 95156 
libcupsmime1-dev_1.4.6-3_amd64.deb
 f2cd36383873ce854f1005eb32c7c904bb1e3df2 153446 
libcupsppdc1-dev_1.4.6-3_amd64.deb
 fd56491526e5d2ac1eea2b8ab1c6636a32895f09 44788 cups-bsd_1.4.6-3_amd64.deb
 98fdb7873aaacc504958b1d17adbb7e5a3f62d1d 112034 cups-ppdc_1.4.6-3_amd64.deb
 52581e90c3400f24cc5b0d24a2ab9baa72566fc2 103418 cups-dbg_1.4.6-3_amd64.deb
Checksums-Sha256: 
 c21814d4864e6b74e00148bb3fd2f6375adc34b99433a76d9e421c245ec9d21d 2730 
cups_1.4.6-3.dsc
 7ee530835eb1379a92deed3bbc0384147cca328d75a3ee3f4b90bedab4d45cc5 522834 
cups_1.4.6-3.diff.gz
 ddf3f912779e759123fae49acb9f0769888e8db1eb0d73a11b228706f09d6c02 1349314 
cups-common_1.4.6-3_all.deb
 da9c17b67c51d35b3f2e27221c3bde125296b75bef1116d833538eb0a1136fa2 83136 
cupsddk_1.4.6-3_all.deb
 9048f4e9f67f9ed62a8136a81684c488d952e741b31c4f0c742374497cfe16e8 245568 
libcups2_1.4.6-3_amd64.deb
 95351dc2cb27bbf83c45f2dee70b492a514dbf4c06b9dbdf67c918877aa3fb30 131940 

Accepted usb-modeswitch-data 20110227-2 (source all)

2011-03-17 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 09:40:36 +0100
Source: usb-modeswitch-data
Binary: usb-modeswitch-data
Architecture: source all
Version: 20110227-2
Distribution: unstable
Urgency: low
Maintainer: Didier Raboud o...@debian.org
Changed-By: Didier Raboud o...@debian.org
Description: 
 usb-modeswitch-data - mode switching data for usb-modeswitch
Closes: 618638
Changes: 
 usb-modeswitch-data (20110227-2) unstable; urgency=low
 .
   * Remove leftover 1a8d:1000:uPr=5G conffile (Closes: #618638).
   * debian/*.postinst: In the handling of modified configuration files,
 replace the 'rename' call (producing errors) by a 'find -exec rename'
 (cleaner).
Checksums-Sha1: 
 a1cf06d266505f2532208552d4c7edb6e8cad34d 1402 
usb-modeswitch-data_20110227-2.dsc
 169c7faeccb6dd15d07c581cbb67e23952d9c819 8875 
usb-modeswitch-data_20110227-2.debian.tar.gz
 908f3c1909c67be58aa531c0f7e37d0ea5ea33f7 26272 
usb-modeswitch-data_20110227-2_all.deb
Checksums-Sha256: 
 6b5150296ca0f57312fa13245fc070ba83f031ab4cf6727a098c33b5f4de3d63 1402 
usb-modeswitch-data_20110227-2.dsc
 85828711131b655d57bbf78fd4767e5da5e522b8246ba3c268c52264904cabec 8875 
usb-modeswitch-data_20110227-2.debian.tar.gz
 b27c59a66bd2bde0743fb311de7d7cf66b7093962e216c51eca0475393d886e5 26272 
usb-modeswitch-data_20110227-2_all.deb
Files: 
 2f19f8040dd031d5b78628b23f794e3d 1402 comm extra 
usb-modeswitch-data_20110227-2.dsc
 b9025018385bd77302aaf229f686f09c 8875 comm extra 
usb-modeswitch-data_20110227-2.debian.tar.gz
 d28d301be499debb0ba666a6115ba57b 26272 comm extra 
usb-modeswitch-data_20110227-2_all.deb

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

iJwEAQECAAYFAk2B3h0ACgkQKA1Vt+jBwDgWgwP/VJ89r4xxKNPwK7KKbdIT14jR
yHDnsINGcASdxxggrkR2CEvlsx/kuNibDo0nzLL6K5ravSohcTkIUFl0iTkmq0+n
CQz6GRppR/L6CO3GiAbPFRaN12sPZBYfxPL3urvkxtFIKmPmQ4FzAICyQyhAQLbe
RmaytA26ICUxUmkf0d4=
=3nwF
-END PGP SIGNATURE-


Accepted:
usb-modeswitch-data_20110227-2.debian.tar.gz
  to main/u/usb-modeswitch-data/usb-modeswitch-data_20110227-2.debian.tar.gz
usb-modeswitch-data_20110227-2.dsc
  to main/u/usb-modeswitch-data/usb-modeswitch-data_20110227-2.dsc
usb-modeswitch-data_20110227-2_all.deb
  to main/u/usb-modeswitch-data/usb-modeswitch-data_20110227-2_all.deb


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



Accepted wxsqlite3 2.1.0-1 (source all amd64)

2011-03-17 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 10:44:01 +0100
Source: wxsqlite3
Binary: libwxsqlite3-2.8-0 libwxsqlite3-2.8-dev wxsqlite3-doc wxsqlite3-2.8-dbg
Architecture: source amd64 all
Version: 2.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 libwxsqlite3-2.8-0 - SQLite3 C++ wrapper for use in programs based on the 
wxWidgets
 libwxsqlite3-2.8-dev - Development files for wxSQLite3
 wxsqlite3-2.8-dbg - Debugging symbols for wxSQLite3 2.8
 wxsqlite3-doc - Documentation files for wxSQLite3
Closes: 618625
Changes: 
 wxsqlite3 (2.1.0-1) unstable; urgency=low
 .
   * New upstream release:
 - Upgrade to SQLite version 3.7.5.
   * Don't fail when the doc is not built (Closes: #618625).
   * debian/patches/1003-disable_dbadmin.patch:
 - Don't build dbadmin since we don't have wxScintilla.
   * Refresh debian/patches/1001-soname.patch.
   * Refresh debian/copyright.
   * Update symbols file.
Checksums-Sha1: 
 436e7a9b2319dce8668cc0090f960de0b74a10cb 1325 wxsqlite3_2.1.0-1.dsc
 49965f95554e1940da11f512a9bd9310b09c5c5f 796141 wxsqlite3_2.1.0.orig.tar.gz
 d06e1ff4b2ee3b8fdb98d884db9b03f622b9acf5 9725 wxsqlite3_2.1.0-1.debian.tar.gz
 9d83719e0c2c08337d6c72f5efb7dd90d785644b 64990 
libwxsqlite3-2.8-0_2.1.0-1_amd64.deb
 a40d25d776616fd2d939ebca9cf6bf2fef9d05be 36136 
libwxsqlite3-2.8-dev_2.1.0-1_all.deb
 bd774cd9c64c7c1133a290457f1e2cba7db0919a 162900 wxsqlite3-doc_2.1.0-1_all.deb
 4cb0eb19512332720418edc427cf541626f211b6 163808 
wxsqlite3-2.8-dbg_2.1.0-1_amd64.deb
Checksums-Sha256: 
 2639853baae05f3ef5e1184d2d1aa950428723797d5dc14097313fb4cd7a01d3 1325 
wxsqlite3_2.1.0-1.dsc
 72ec089be7f7a3b1f5fc22907072ec381b6daa55d9f37333b45aacec20085649 796141 
wxsqlite3_2.1.0.orig.tar.gz
 bd7e949ef9ed7cb06c34540a3c3ab90b71031c703f5aa7b0cb57be6b064bab67 9725 
wxsqlite3_2.1.0-1.debian.tar.gz
 5bf9648d2a4bcecec5eae8faac6132a6fafc9e492e09b67439d985e6c7519f62 64990 
libwxsqlite3-2.8-0_2.1.0-1_amd64.deb
 e9ec60b578d4aedcb1ba117dfcbaf564bf212311f414220bf6b7aebb911df588 36136 
libwxsqlite3-2.8-dev_2.1.0-1_all.deb
 c69a1c93ddef5a7d545ea011fbb11a506e3575abfab7db85dfa0d0bfa9cd7f5f 162900 
wxsqlite3-doc_2.1.0-1_all.deb
 ddb2d99888b7759327d6e659566ed8cfeb4e87ed82412126eb5810c46daaca3e 163808 
wxsqlite3-2.8-dbg_2.1.0-1_amd64.deb
Files: 
 2a182654ab9514ecef4ddb24c01871ff 1325 libs optional wxsqlite3_2.1.0-1.dsc
 a54f9dea2541089899943eb64c6b19b7 796141 libs optional 
wxsqlite3_2.1.0.orig.tar.gz
 4922bc8acba3f3f9aacb36daf385167b 9725 libs optional 
wxsqlite3_2.1.0-1.debian.tar.gz
 5b66f715f06b506dc0620505781b2b54 64990 libs optional 
libwxsqlite3-2.8-0_2.1.0-1_amd64.deb
 da1b8171ffcb58791c41e74d743b80df 36136 libdevel optional 
libwxsqlite3-2.8-dev_2.1.0-1_all.deb
 ddd8c5988524d2fc65f4cb4709cea0c2 162900 doc optional 
wxsqlite3-doc_2.1.0-1_all.deb
 01e9b0e82fbadab2f4211f80e52e25b6 163808 debug extra 
wxsqlite3-2.8-dbg_2.1.0-1_amd64.deb

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

iEYEARECAAYFAk2B2RIACgkQRdSMfNz8P9A8JgCfbVXwXNBqJB0xvuT8DwIvbMqN
QrAAnREURKjFHzTQV1gXjuOCuEUkjQTq
=ge01
-END PGP SIGNATURE-


Accepted:
libwxsqlite3-2.8-0_2.1.0-1_amd64.deb
  to main/w/wxsqlite3/libwxsqlite3-2.8-0_2.1.0-1_amd64.deb
libwxsqlite3-2.8-dev_2.1.0-1_all.deb
  to main/w/wxsqlite3/libwxsqlite3-2.8-dev_2.1.0-1_all.deb
wxsqlite3-2.8-dbg_2.1.0-1_amd64.deb
  to main/w/wxsqlite3/wxsqlite3-2.8-dbg_2.1.0-1_amd64.deb
wxsqlite3-doc_2.1.0-1_all.deb
  to main/w/wxsqlite3/wxsqlite3-doc_2.1.0-1_all.deb
wxsqlite3_2.1.0-1.debian.tar.gz
  to main/w/wxsqlite3/wxsqlite3_2.1.0-1.debian.tar.gz
wxsqlite3_2.1.0-1.dsc
  to main/w/wxsqlite3/wxsqlite3_2.1.0-1.dsc
wxsqlite3_2.1.0.orig.tar.gz
  to main/w/wxsqlite3/wxsqlite3_2.1.0.orig.tar.gz


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



Accepted accountsservice 0.6.5-2 (source amd64)

2011-03-17 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 11:20:19 +0100
Source: accountsservice
Binary: accountsservice libaccountsservice0 libaccountsservice-dev 
gir1.2-accountservice-1.0
Architecture: source amd64
Version: 0.6.5-2
Distribution: experimental
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 accountsservice - query and manipulate user account information
 gir1.2-accountservice-1.0 - GObject introspection data for AccountService
 libaccountsservice-dev - query and manipulate user account information - 
header files
 libaccountsservice0 - query and manipulate user account information - shared 
libraries
Closes: 618643
Changes: 
 accountsservice (0.6.5-2) experimental; urgency=low
 .
   * Switch libaccountsservice-dev to architecture 'any';
 also closes: #618643.
Checksums-Sha1: 
 b18fae970d620cd2e509721b56ac46ee1670c2f5 1536 accountsservice_0.6.5-2.dsc
 d177ccf68a4dc684833d284cabe63236d3f593cb 5455 
accountsservice_0.6.5-2.debian.tar.gz
 d18f1ec6901889533f9d124ce63848479f89bd3c 33982 
accountsservice_0.6.5-2_amd64.deb
 944d6cda1308e0bc61fbb848957cd860fdb37d49 26098 
libaccountsservice0_0.6.5-2_amd64.deb
 9740f21fba3ea4eed67003a18573195eee50ab22 8970 
libaccountsservice-dev_0.6.5-2_amd64.deb
 4f6f072be22c5e28640bc0b117c3a315b8a22726 5600 
gir1.2-accountservice-1.0_0.6.5-2_amd64.deb
Checksums-Sha256: 
 28e0761c86f3f93791cb5de85be5608227148b77de90b1561cc6f0fd8600bcc8 1536 
accountsservice_0.6.5-2.dsc
 6cb9cd5c15d4f7ba3b6b72059d49447dac6d11eb938eea33400bffdbf8d6ce91 5455 
accountsservice_0.6.5-2.debian.tar.gz
 6ec42b071dd03b5ccd9ad3d4c13e42f8cb51f2c9d3319811732527506952493c 33982 
accountsservice_0.6.5-2_amd64.deb
 2c8772b2e7a79e3ba1328a9a278e494c099952c406a1d7f86960760a930cc1c7 26098 
libaccountsservice0_0.6.5-2_amd64.deb
 dc0fe95df1aace6479eb8175be497beeac0fcc15e95c76449ccb3922251d1b5f 8970 
libaccountsservice-dev_0.6.5-2_amd64.deb
 25f349e1cfce4827062ee1fb76c4be82f7d945b22b8d35e83e928092baaeb776 5600 
gir1.2-accountservice-1.0_0.6.5-2_amd64.deb
Files: 
 a2876c35bb5273deaabccc5c7e8ea519 1536 admin optional 
accountsservice_0.6.5-2.dsc
 785f90155106daac5a12fe87ca51592d 5455 admin optional 
accountsservice_0.6.5-2.debian.tar.gz
 119c0cd7cc0cae5db2fcb9f5f77d3bc3 33982 admin optional 
accountsservice_0.6.5-2_amd64.deb
 fa41042558b56225ffee534b05422523 26098 libs optional 
libaccountsservice0_0.6.5-2_amd64.deb
 3e0ae84c34e239497358a4b1e75823b6 8970 libdevel optional 
libaccountsservice-dev_0.6.5-2_amd64.deb
 dc4fbff3ab3a60c3808fd8fa496097c3 5600 libs optional 
gir1.2-accountservice-1.0_0.6.5-2_amd64.deb

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

iEYEARECAAYFAk2B4ewACgkQRdSMfNz8P9A6FwCgg9wrbWupCzcVTE/+lVkS09yY
n3kAni0b+B45MTwooc2nCAWUjqZasSps
=vs/j
-END PGP SIGNATURE-


Accepted:
accountsservice_0.6.5-2.debian.tar.gz
  to main/a/accountsservice/accountsservice_0.6.5-2.debian.tar.gz
accountsservice_0.6.5-2.dsc
  to main/a/accountsservice/accountsservice_0.6.5-2.dsc
accountsservice_0.6.5-2_amd64.deb
  to main/a/accountsservice/accountsservice_0.6.5-2_amd64.deb
gir1.2-accountservice-1.0_0.6.5-2_amd64.deb
  to main/a/accountsservice/gir1.2-accountservice-1.0_0.6.5-2_amd64.deb
libaccountsservice-dev_0.6.5-2_amd64.deb
  to main/a/accountsservice/libaccountsservice-dev_0.6.5-2_amd64.deb
libaccountsservice0_0.6.5-2_amd64.deb
  to main/a/accountsservice/libaccountsservice0_0.6.5-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/e1q0av0-iw...@franck.debian.org



Accepted enca 1.13-4 (source amd64)

2011-03-17 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 11:45:18 +0100
Source: enca
Binary: enca libenca0 libenca-dev libenca-dbg
Architecture: source amd64
Version: 1.13-4
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 enca   - Extremely Naive Charset Analyser - binaries
 libenca-dbg - Extremely Naive Charset Analyser - debug files
 libenca-dev - Extremely Naive Charset Analyser - development files
 libenca0   - Extremely Naive Charset Analyser - shared library files
Changes: 
 enca (1.13-4) unstable; urgency=low
 .
   * Bump standards to 3.9.1.
   * Move packaging to collab-maint.
   * Update upstream homepage.
Checksums-Sha1: 
 efa74c11fc149e8363bbe3fd89254f4150f631df 1833 enca_1.13-4.dsc
 6ead74c81c513d09a96145ed39d95b189fa15a60 4767 enca_1.13-4.debian.tar.gz
 c6ded8ffca1713547281c2463731075f6a107649 90290 enca_1.13-4_amd64.deb
 a7d7b7a2d6fe1bf9b32613babe25a1941bc5fc62 76064 libenca0_1.13-4_amd64.deb
 99bbf3992016150df1905e1e09400d92cd36ba44 29138 libenca-dev_1.13-4_amd64.deb
 8f3b2f22137c3ce0e547ac28299be246214e9be0 100948 libenca-dbg_1.13-4_amd64.deb
Checksums-Sha256: 
 6836509bf40a9a80f2bc90864c4affe2f8695f475b81b63e9ba715981c66ae52 1833 
enca_1.13-4.dsc
 aeb8a13fb50a2eca20528389698e671dc8e8d0059c6f04fa08bc38c769eb3582 4767 
enca_1.13-4.debian.tar.gz
 61c7b853aea697af88f0c9b55cfad0e83fde0ae6e1e60c42ec17465244f7d7fa 90290 
enca_1.13-4_amd64.deb
 91a25d8c0d7ed303e35afa6b9c9e02350f1d2d65c13fea950f5057f211c0b7fd 76064 
libenca0_1.13-4_amd64.deb
 46224b64efddf88a997fc034ab2acd168e61acb79fa24e8f71ad7223056de6f8 29138 
libenca-dev_1.13-4_amd64.deb
 0619c28d0ec8dfcd0066f422dc1bf085ee0572e0074e159a5515efc7c4a88f4f 100948 
libenca-dbg_1.13-4_amd64.deb
Files: 
 65662efb422c25c323c2c5122a51b40a 1833 text optional enca_1.13-4.dsc
 f396fdecb18ef7e417294cbd6ca3c0ce 4767 text optional enca_1.13-4.debian.tar.gz
 a6fe43d2dde078304b6b7da530e9d719 90290 text optional enca_1.13-4_amd64.deb
 bdce64827a264c2b4ac2d0861dbfb371 76064 libs optional libenca0_1.13-4_amd64.deb
 b36f931e4b20cc13670c6ccfe8785ca2 29138 libdevel optional 
libenca-dev_1.13-4_amd64.deb
 6cccd3218cb518bd6aa01953c77316fc 100948 debug extra 
libenca-dbg_1.13-4_amd64.deb

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

iQIcBAEBCAAGBQJNgeawAAoJEGo39bHX+xdNB9wQAMhexCfe08DsfJ9eUv9bBmI4
JIn3tFFUDz6ZzIboeVF7r2YATGhwZY5WsDma7rVWP0QHFETxRlYeUO3g+OIPoUOj
kgAz17Lp6OeBQd1CKfIuTPbiuuXQxUU1qLgAooM9jjK+3bECSw03n0jqMgHLrUTh
dVhvPgGxEeZWy6UlK4TD4cBqzEwo/iG43MsU1a7eEZRkJc0/+AGEfBbXsL8OPTql
aYjU1b9hW5euR8LJixw99nVEgWBDcg5tbDnk/wm/pTSt4JoFgYcrQLM1A5rL0qn6
5MIDGZZVJcchvOwujP619W79PycrvDBJ5HIiWZ1AqGnscrNFhO6pdqhE7BpumsbW
219envLks6mwpcSuF3YhWltjvJW9OVYTV4q8nio4S1AuRJfINGqad95c0F0sN6Nr
NRMR9mNz+TP7tAWGYqVfjCA0+FUXUZa3grrUANh1PpuHzXa+9eHfwezkbeCfJJ/k
/03HOUEZQNKR8v+9mUeiSRQR3hs3IHWHIQDFdJfDVU3B45DQ2wkOg7iXR+/++yyO
4ZYTr3bFliuOu3scEuvBEcw1auQLNf/556B5qcBzLiFraEDWP3CbxZlZid+wqWbT
ebpaTjMpuVpndXXs+zyBytjJ6KUf5pAtmOTCehWzA4h3WEIIHd4Mefg7uo7z7WK/
WigIWLRt+DoWBWzPR03c
=B0t4
-END PGP SIGNATURE-


Accepted:
enca_1.13-4.debian.tar.gz
  to main/e/enca/enca_1.13-4.debian.tar.gz
enca_1.13-4.dsc
  to main/e/enca/enca_1.13-4.dsc
enca_1.13-4_amd64.deb
  to main/e/enca/enca_1.13-4_amd64.deb
libenca-dbg_1.13-4_amd64.deb
  to main/e/enca/libenca-dbg_1.13-4_amd64.deb
libenca-dev_1.13-4_amd64.deb
  to main/e/enca/libenca-dev_1.13-4_amd64.deb
libenca0_1.13-4_amd64.deb
  to main/e/enca/libenca0_1.13-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/e1q0ay2-0002ir...@franck.debian.org



Accepted gmobilemedia 0.4+dfsg-11 (source all)

2011-03-17 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 11:52:30 +0100
Source: gmobilemedia
Binary: gmobilemedia
Architecture: source all
Version: 0.4+dfsg-11
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 gmobilemedia - GTK+ application used to browse a mobile phone filesystem
Changes: 
 gmobilemedia (0.4+dfsg-11) unstable; urgency=low
 .
   * Bump standards to 3.9.1.
   * Convert to dh_python2.
Checksums-Sha1: 
 523ce440874fea99cf03e6775aa66b10f5002efb 2015 gmobilemedia_0.4+dfsg-11.dsc
 c92190db62bbdbf45202cfc84ac42e9ce945eaa6 7060 
gmobilemedia_0.4+dfsg-11.debian.tar.gz
 0cac01d5b8f797a562078fff82003f4c64332872 115964 
gmobilemedia_0.4+dfsg-11_all.deb
Checksums-Sha256: 
 07ffe37ed4293d65899697391c5405d73e59f64636e917257af1e47d3dc19ae9 2015 
gmobilemedia_0.4+dfsg-11.dsc
 9bcda77bc4c2a08cd6b366ba9d701236cfd95a9dfd3d4403d9a7744a050b7124 7060 
gmobilemedia_0.4+dfsg-11.debian.tar.gz
 eb9041c199e9175b677ac63d0cf93919123b24271485d9c835ea2616a0375c82 115964 
gmobilemedia_0.4+dfsg-11_all.deb
Files: 
 2040811559ccca1927d36ecc0aa0c2ff 2015 comm optional 
gmobilemedia_0.4+dfsg-11.dsc
 d9aa0cbd5f100588640045d336ae744f 7060 comm optional 
gmobilemedia_0.4+dfsg-11.debian.tar.gz
 9dacb858740cb463bf0ad5edacc833e1 115964 comm optional 
gmobilemedia_0.4+dfsg-11_all.deb

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

iQIcBAEBCAAGBQJNgehSAAoJEGo39bHX+xdNXvwP/ifFc6GPugfSoSgvIHvvjfTM
3FuG7csG/O2xIms6TGlz7VfhkxSTp8swgAydTdYLIM7yvNi4iE3OjDUuPQ0MEPXn
4nyvt9F5bx/Li51RdYiYKf4m1UvD73jU6JF4EIOwX4pvE6IY0Hw7JMxZUj01iE37
Tz6iA8WhPYqg+NGFP7sS8kDkh5PJq/g2xWWDNg13xqaBb25j1MBoiC40g9vX6CpR
18y7XNwiezA4jQoKunOJJWc7Gol5wIdAJehQN0PbkJZscigJNYoofekaBq8GkXON
qoJd5T/u1KoetVJVUS8laASYSWiJtjVVqZuYEpiOywyrBxpjalYpgZ4q+n5F+1pt
dpMP9RsEzYdnDVAlExra7zW0eleBRjGyDgvoRgtqXHUgvOaA/WPdCyvL75Vrl3/u
fRXFHg8NMJ4HTTEzDgXhydM98GOsSxpC0SzHCEH0Sbk0iNtNbuJIXKywmIj2Ward
+eQzuDNbyPqqScJ6H6RwMqymSdStGR7I2BICFQBeMTAU3HAEmsddzftRgwMXmbug
mYXJU1+0+0EfuTYg87DSEcOurEwjUkIEbPF/tqoDboGN5iJZbxJVCN8keDH+zg6z
gP4heLVNHKFwSPkqPsImYWjq3/hxk0SpdL9FqB81oObRnuaohKf0X+Yzzf/nXdsq
mVeJWAE1MmwVffu4NkPA
=KOaH
-END PGP SIGNATURE-


Accepted:
gmobilemedia_0.4+dfsg-11.debian.tar.gz
  to main/g/gmobilemedia/gmobilemedia_0.4+dfsg-11.debian.tar.gz
gmobilemedia_0.4+dfsg-11.dsc
  to main/g/gmobilemedia/gmobilemedia_0.4+dfsg-11.dsc
gmobilemedia_0.4+dfsg-11_all.deb
  to main/g/gmobilemedia/gmobilemedia_0.4+dfsg-11_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/e1q0ayh-0002le...@franck.debian.org



Accepted haproxy 1.4.13-1 (source amd64)

2011-03-17 Thread Christo Buschek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 11 Mar 2011 12:41:59 +
Source: haproxy
Binary: haproxy
Architecture: source amd64
Version: 1.4.13-1
Distribution: unstable
Urgency: low
Maintainer: Christo Buschek cr...@30loops.net
Changed-By: Christo Buschek cr...@30loops.net
Description: 
 haproxy- fast and reliable load balancing reverse proxy
Closes: 581109 615246
Changes: 
 haproxy (1.4.13-1) unstable; urgency=low
 .
   * New maintainer upload (Closes: #615246)
   * New upstream release
   * Standards-version goes 3.9.1 (no change)
   * Added patch bashism (Closes: #581109)
   * Added a README.source file.
Checksums-Sha1: 
 f405c529a6c1448a866e58005198a135660c0ce0 1096 haproxy_1.4.13-1.dsc
 e89316f5e5190301969fe1d4f4c2aca1c6b71377 811771 haproxy_1.4.13.orig.tar.gz
 0f7d2e37d59124e39c601f0388a017822107c3f5 7319 haproxy_1.4.13-1.debian.tar.gz
 af55086d4d08ee943bdbdb292c3d4826cadf58c1 550596 haproxy_1.4.13-1_amd64.deb
Checksums-Sha256: 
 4b25753dbf40cf76882c6ccb5d6c328a455e761ed5612a9c1808bbfc7ffe585d 1096 
haproxy_1.4.13-1.dsc
 b78bbf2fb204321e3956edf46f8503843d550e2528f9bc73b71f3b0f3f37987d 811771 
haproxy_1.4.13.orig.tar.gz
 01549db7191f1c59e49e7754f8121b4183f2ef58134f3e962d371ac381cec1f3 7319 
haproxy_1.4.13-1.debian.tar.gz
 5efbaf8d7694cb5da9c5ae459e3f16f97a97f6353b3f5790aa8f8cb575a80edf 550596 
haproxy_1.4.13-1_amd64.deb
Files: 
 fcb022267c7e5b765c8fdf5ca64555e3 1096 net optional haproxy_1.4.13-1.dsc
 9cc607f914215b5a781a17f8524ffb6a 811771 net optional haproxy_1.4.13.orig.tar.gz
 c76fc968df81847c0bf5a59eb9592d21 7319 net optional 
haproxy_1.4.13-1.debian.tar.gz
 4ad1ad48f98cdddfd56531f21b38c7a3 550596 net optional haproxy_1.4.13-1_amd64.deb

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

iEYEARECAAYFAk2B7vkACgkQsk+dgCIlhI4VdgCgjLtRgEQ/aIKkO9xwxDN6LU2K
HFUAnR5C+ptmWd68u6CAR/Ftp+djYWGJ
=UDyl
-END PGP SIGNATURE-


Accepted:
haproxy_1.4.13-1.debian.tar.gz
  to main/h/haproxy/haproxy_1.4.13-1.debian.tar.gz
haproxy_1.4.13-1.dsc
  to main/h/haproxy/haproxy_1.4.13-1.dsc
haproxy_1.4.13-1_amd64.deb
  to main/h/haproxy/haproxy_1.4.13-1_amd64.deb
haproxy_1.4.13.orig.tar.gz
  to main/h/haproxy/haproxy_1.4.13.orig.tar.gz


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



Accepted ffmpegthumbnailer 2.0.6-2 (source amd64)

2011-03-17 Thread Lionel Le Folgoc
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 12:40:44 +0100
Source: ffmpegthumbnailer
Binary: ffmpegthumbnailer libffmpegthumbnailer4 libffmpegthumbnailer-dev 
ffmpegthumbnailer-dbg
Architecture: source amd64
Version: 2.0.6-2
Distribution: unstable
Urgency: low
Maintainer: Lionel Le Folgoc mrpo...@gmail.com
Changed-By: Lionel Le Folgoc mrpo...@gmail.com
Description: 
 ffmpegthumbnailer - fast and lightweight video thumbnailer
 ffmpegthumbnailer-dbg - debugging informations for ffmpegthumbnailer
 libffmpegthumbnailer-dev - development files for ffmpegthumbnailer
 libffmpegthumbnailer4 - the ffmpegthumbnailer library
Closes: 618030
Changes: 
 ffmpegthumbnailer (2.0.6-2) unstable; urgency=low
 .
   * debian/patches:
 - 01_fix-ftbfs-as-needed.patch: move -ldl to the correct position, fixes
   FTBFS with recent binutils version (Closes: #618030).
 - series: added.
Checksums-Sha1: 
 0de22bc2233a34af2d5369d1363f24a42b589129 2167 ffmpegthumbnailer_2.0.6-2.dsc
 c9d6f187a80b2937bb3553f29dc33ac7ffd70869 4632 
ffmpegthumbnailer_2.0.6-2.debian.tar.gz
 23582a368af0c1db1e6d131375a9d6380d6887f0 13192 
ffmpegthumbnailer_2.0.6-2_amd64.deb
 b1ae4964fea99e8a8a2a2693d38e7cdcd4226d67 54356 
libffmpegthumbnailer4_2.0.6-2_amd64.deb
 0e0e99559cb805bb645f26fa12147d107af2a10a 83502 
libffmpegthumbnailer-dev_2.0.6-2_amd64.deb
 9ee02ac8d2fb3fdee97b91ebdd6ce2560ae6bdf8 20028 
ffmpegthumbnailer-dbg_2.0.6-2_amd64.deb
Checksums-Sha256: 
 756759b912372d391205caf57810083fb0195d8cb11c63a157de04815476610f 2167 
ffmpegthumbnailer_2.0.6-2.dsc
 b5ef538975c42a85318404eb08c283e79e97602f30a343b4877209fa34c1cda4 4632 
ffmpegthumbnailer_2.0.6-2.debian.tar.gz
 1184005512f7c9055c18073d77b500f0a19ec6c2e812ac29c71a3246de8e976d 13192 
ffmpegthumbnailer_2.0.6-2_amd64.deb
 e7eab5bb6884ee62793e40f1af5840d81cd1849c31ddec97efb7b6c6f8e8f6fc 54356 
libffmpegthumbnailer4_2.0.6-2_amd64.deb
 65e3954a5a0db16bc8e2be5444a02d6b81636abd1a116ba641da67322743541c 83502 
libffmpegthumbnailer-dev_2.0.6-2_amd64.deb
 27123a8cea3d355c14accb279f19d9532976046fe033d241c28cddc0f22ed836 20028 
ffmpegthumbnailer-dbg_2.0.6-2_amd64.deb
Files: 
 c6f106f5dfd6a0440e3f37d2d7c30f48 2167 video optional 
ffmpegthumbnailer_2.0.6-2.dsc
 870fe4bedf98ca95a1bd0628647f3195 4632 video optional 
ffmpegthumbnailer_2.0.6-2.debian.tar.gz
 c28ad66b73a80d936e358d4a326db994 13192 video optional 
ffmpegthumbnailer_2.0.6-2_amd64.deb
 603be0bb494cecab2b41fa5eee189793 54356 video optional 
libffmpegthumbnailer4_2.0.6-2_amd64.deb
 aaf894220ba066fcf486e4bdbb50b3a1 83502 libdevel optional 
libffmpegthumbnailer-dev_2.0.6-2_amd64.deb
 49cac619fe1f1026bbc46e828fccf194 20028 debug extra 
ffmpegthumbnailer-dbg_2.0.6-2_amd64.deb

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

iQIcBAEBCAAGBQJNgfW2AAoJEH82z1Wqh6p3N4gP/ifF7GH3pivz22hVzNtrm6+/
TlaBEsKdKHWsbL67oSSOLY6ngdYdev8Zsz7MW/oUvt8tDF0grWjEJ0lpXhFRFa4d
+BN9CwaqI29BEaE7E8KuOT7wjGMskUAzbWxs/orzowk+QAxdWuMf7a/YTBUjbkrB
usSucTUyd0z6BVNEA3CG9Px148g8FD9yA/lviuSvuuBqdXZr42lAbE1Adz275wIu
k5zY+sV/dQW0Ed5I/5pKMjAbtNAL1FhZZKUeOAP8rWHILtbXQqwHnZHd8uWNavsC
SVRGjylV34WuzFOpIIs/sy2FMNy2OyLtKXDStb0Kr53jpgr3+vF3X8VSm6A5ES7Y
rMG8pelhYJd8XjBSO3nE0WdStUZkPvKuuiB3fIY/RY1VCDSSQGYqiCagGzbF6plR
H/mYsvwy+o0v9+3kDWLMfo9gJUtLPAhN/KOXNEyawXiEzGuOqc/LPnJj+WWITFuC
nkN+RYkB5ZUbteEi6heHsLJiEIzXVczjBp+D7E+k8EUBxKMyoTqNw0Rh2UTfuR9e
p1RdDxGod5f6yluw+q2kMmh/x+lJpuQYiChNpfrvIGOKRwVx/zudLtE+8dG6BBTT
dry16BCsWTKMs6VKI/RQMloQWZpmjSv66U9CXPng/hzzUQ684lWgcvDYp0TcIbsR
XGzqQRaYQ7pDZwqLudY1
=ygg7
-END PGP SIGNATURE-


Accepted:
ffmpegthumbnailer-dbg_2.0.6-2_amd64.deb
  to main/f/ffmpegthumbnailer/ffmpegthumbnailer-dbg_2.0.6-2_amd64.deb
ffmpegthumbnailer_2.0.6-2.debian.tar.gz
  to main/f/ffmpegthumbnailer/ffmpegthumbnailer_2.0.6-2.debian.tar.gz
ffmpegthumbnailer_2.0.6-2.dsc
  to main/f/ffmpegthumbnailer/ffmpegthumbnailer_2.0.6-2.dsc
ffmpegthumbnailer_2.0.6-2_amd64.deb
  to main/f/ffmpegthumbnailer/ffmpegthumbnailer_2.0.6-2_amd64.deb
libffmpegthumbnailer-dev_2.0.6-2_amd64.deb
  to main/f/ffmpegthumbnailer/libffmpegthumbnailer-dev_2.0.6-2_amd64.deb
libffmpegthumbnailer4_2.0.6-2_amd64.deb
  to main/f/ffmpegthumbnailer/libffmpegthumbnailer4_2.0.6-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/e1q0bu5-0007ij...@franck.debian.org



Accepted lustre 1.8.5+dfsg-2 (source all amd64)

2011-03-17 Thread Patrick Winnertz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 11:56:54 +0100
Source: lustre
Binary: linux-patch-lustre lustre-source lustre-utils lustre-tests liblustre 
lustre-dev
Architecture: source all amd64
Version: 1.8.5+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Debian Lustre Packaging team 
pkg-lustre-maintain...@lists.alioth.debian.org
Changed-By: Patrick Winnertz win...@debian.org
Description: 
 liblustre  - Runtime library for Lustre filesystem utilities
 linux-patch-lustre - Linux kernel patch for the Lustre Filesystem
 lustre-dev - Development files for the Lustre filesystem
 lustre-source - source for Lustre filesystem client kernel modules
 lustre-tests - Test suite for the Lustre filesystem
 lustre-utils - Userspace utilities for the Lustre filesystem
Closes: 615749
Changes: 
 lustre (1.8.5+dfsg-2) unstable; urgency=low
 .
   * [2362539] the lib should be installed in /usr/lib/lustre-1.8
 and not in lustre-1.6
   * [d7b87bd] Add -Wl,--no-add-needed as linkerflags to debian/rules
   * [0517031] Add a patch for building with
 -Wl,--no-add-needed (Closes: #615749)
   * [14e5cc4] lustre is since a long time maintained in a git vcs...
   * [a66324e] Bump standards version to 3.9.1 - no further changes needed
Checksums-Sha1: 
 37ff7ebd9d26ff128e7c10abdd0cf524b97dda9f 1446 lustre_1.8.5+dfsg-2.dsc
 944659cbabacbcd5339b3ddec7e25644ca92594f 67164 
lustre_1.8.5+dfsg-2.debian.tar.gz
 75f2b83d482c7ec35ff584f1d07bfa84da19ad76 621170 
linux-patch-lustre_1.8.5+dfsg-2_all.deb
 12158f4b586d25015ea2545d8cf668719b9d958f 4055894 
lustre-source_1.8.5+dfsg-2_all.deb
 35f1b6769b99ce82b5dda25a9275afd8a686d306 808300 
lustre-utils_1.8.5+dfsg-2_amd64.deb
 db4e5560b78a0fc78291f9f79dd67fb702358257 495116 
lustre-tests_1.8.5+dfsg-2_amd64.deb
 c5be9babaf9fbefad84ea240674993aa286564b6 5906764 
lustre-dev_1.8.5+dfsg-2_amd64.deb
 513a4b6a9fb7d638c70bbcf3c0d80f177bba250a 880108 
liblustre_1.8.5+dfsg-2_amd64.deb
Checksums-Sha256: 
 a27a7ad0a80fc76b5560a5b1a2ac77142443e5f70ae4cda77616a570f81ac097 1446 
lustre_1.8.5+dfsg-2.dsc
 15c8e7ef3b9f97b151105f94db1b91120524a8364a5cdcd8030bbf2195d4b386 67164 
lustre_1.8.5+dfsg-2.debian.tar.gz
 3c1f49eba780ff75250fc7f0ce738291067cfbbb255f0b8c0c7206c9c4311d8d 621170 
linux-patch-lustre_1.8.5+dfsg-2_all.deb
 19b4ece88b4a32e4c085859667f03f2bfaccc29cf01852c4a57dd772819cda35 4055894 
lustre-source_1.8.5+dfsg-2_all.deb
 db84ce61bb48aaf02bf45350376bc30b76e4009809045509cd8ecb490b093dd7 808300 
lustre-utils_1.8.5+dfsg-2_amd64.deb
 624c4d435370a117c2f7e8cfb0a5c11c2e6040bf5409bdc7a3fc675cff7a6b36 495116 
lustre-tests_1.8.5+dfsg-2_amd64.deb
 f150661462e6bdcaae931ae8aefcfbdf5ef19b1d1f2839231967107d5e7f2950 5906764 
lustre-dev_1.8.5+dfsg-2_amd64.deb
 99dfcbb4beac0856373fedfe34c1c3e60501dc73ce5ec53658d16fb3d94c5632 880108 
liblustre_1.8.5+dfsg-2_amd64.deb
Files: 
 154e139f505f4430181cb3b3cfd25969 1446 admin optional lustre_1.8.5+dfsg-2.dsc
 d879a5172696f647899e487fe89d5860 67164 admin optional 
lustre_1.8.5+dfsg-2.debian.tar.gz
 de2697b3914e23b5dd9c8392334a19a3 621170 kernel optional 
linux-patch-lustre_1.8.5+dfsg-2_all.deb
 009b9561736a490e59262ff09499ebea 4055894 kernel optional 
lustre-source_1.8.5+dfsg-2_all.deb
 ce5c3049a12282b9e06a7c7aca59b5f8 808300 utils optional 
lustre-utils_1.8.5+dfsg-2_amd64.deb
 09aec1032637fae55f64a07b7c88b6be 495116 admin optional 
lustre-tests_1.8.5+dfsg-2_amd64.deb
 c1a8163330c5a1f28b7ffcd9eec72c4a 5906764 libdevel optional 
lustre-dev_1.8.5+dfsg-2_amd64.deb
 6a60590d49b19f4711e9d174073e6915 880108 otherosfs optional 
liblustre_1.8.5+dfsg-2_amd64.deb

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

iEYEARECAAYFAk2B9fcACgkQzgm26bkTFDrPqQCfewXHxOvYjvf3yQUhj1765PdW
5SgAn05910h4KCbgvp3tfCb2cSt4JlZB
=p36A
-END PGP SIGNATURE-


Accepted:
liblustre_1.8.5+dfsg-2_amd64.deb
  to main/l/lustre/liblustre_1.8.5+dfsg-2_amd64.deb
linux-patch-lustre_1.8.5+dfsg-2_all.deb
  to main/l/lustre/linux-patch-lustre_1.8.5+dfsg-2_all.deb
lustre-dev_1.8.5+dfsg-2_amd64.deb
  to main/l/lustre/lustre-dev_1.8.5+dfsg-2_amd64.deb
lustre-source_1.8.5+dfsg-2_all.deb
  to main/l/lustre/lustre-source_1.8.5+dfsg-2_all.deb
lustre-tests_1.8.5+dfsg-2_amd64.deb
  to main/l/lustre/lustre-tests_1.8.5+dfsg-2_amd64.deb
lustre-utils_1.8.5+dfsg-2_amd64.deb
  to main/l/lustre/lustre-utils_1.8.5+dfsg-2_amd64.deb
lustre_1.8.5+dfsg-2.debian.tar.gz
  to main/l/lustre/lustre_1.8.5+dfsg-2.debian.tar.gz
lustre_1.8.5+dfsg-2.dsc
  to main/l/lustre/lustre_1.8.5+dfsg-2.dsc


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



Accepted libhtml-tableextract-perl 2.10-4 (source all)

2011-03-17 Thread Nicholas Bamber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 16 Mar 2011 21:24:27 +
Source: libhtml-tableextract-perl
Binary: libhtml-tableextract-perl
Architecture: all source
Version: 2.10-4
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Nicholas Bamber nicho...@periapt.co.uk
Closes: 68372
Description: 
 libhtml-tableextract-perl - module for extracting the content contained in 
HTML tables
Changes: 
 libhtml-tableextract-perl (2.10-4) unstable; urgency=low
 .
   * New maintainer (Closes: #68372)
   * Upped standards version to 3.9.1
   * Refreshed home page, svn and description fields
   * Refreshed copyright, rules and added debian/source/format
   * Standardized watch file
   * Refreshed patch
Checksums-Sha1: 
 91cc0f6d9a36ab9045a18879bc6b95ac5ad5af3d 2162 
libhtml-tableextract-perl_2.10-4.dsc
 ed74dce68ad6a35d10872e283df381c890388690 3173 
libhtml-tableextract-perl_2.10-4.debian.tar.gz
 2a815ef3b82832fa28e98ba25178b924d6489b74 32750 
libhtml-tableextract-perl_2.10-4_all.deb
Checksums-Sha256: 
 6d14e7d9c0bdea279b8da5f519f5f88d499b940f4a9d1e939ec3aeeb050e7b19 2162 
libhtml-tableextract-perl_2.10-4.dsc
 1a237995adfae660c9da4d324b9ab9243584cb29f61c7b848b7a874a2464b27b 3173 
libhtml-tableextract-perl_2.10-4.debian.tar.gz
 61a608a56b7e7d54bacc47d1bbeb5b8f423702abc0cad9da1a7bfbe83e2914d6 32750 
libhtml-tableextract-perl_2.10-4_all.deb
Files: 
 b99b3e0c9638952ba1f4e8722e8d2aa3 2162 perl optional 
libhtml-tableextract-perl_2.10-4.dsc
 f6194f617ceb28574e41926e5c602e72 3173 perl optional 
libhtml-tableextract-perl_2.10-4.debian.tar.gz
 6547594d0dc5ae3a9aab2b9cb59f3675 32750 perl optional 
libhtml-tableextract-perl_2.10-4_all.deb

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

iQIcBAEBCgAGBQJNgfg2AAoJEIATJTTdNH3IYr0P/2IOLXQeaierIvNgcCJI2stb
CoEwyrMEANRbMfSotm+7rUMckG3KlJ9SsTSU8UtuK4pCbYlB0xLIf+noG5uccrFM
QMZYBfaYn12GV90J57yKpOrNdTypaXmg/ZvnC2Eg0VrxYvLYGc/MjWKABfGYfaQr
081nx5tRQP86sIVn1rVlVFcucC6LPO30b6sx6Ey6K/ztVZkmwPuCeewiC2YGbP/Y
8wBBBW306hrDVVIB6TprOtwMNFNc+A1k/yKQ9bpmKBORFDqNrzpENkBUhPT+dSmh
FNW4o4iEIBgc4vc4RUx+bebes0G/TCvGvOGz8eyRPN4WZ+iKW+oMI7r5cVuOPYHP
HsenMz6BwcDs1aGwmcuWZ/9DyvFWXg5P+mgTZapjx8kxs77HXa4iuJ3ATyH55zHa
bQU8nbtQP8BTsx4U2TqQ2SJerR6/DErPPHz4Z5DxatUrnWWsOM8R1teizK/1TR3W
KuBwcpIUp8HP/tQ3YjBxtFOXIkmzy9Ij9dbd8IGFV6HAJHfAU4geoqrA3uXVPAHA
wI3JDQPC56aY2pYrVH+hrp1i/ZIMi1u207fjsHJhkMMn5/NpgFKiRmkp9PVTNCFi
Yp7Dh4Aw3hyGNS+wzJzk/2GRrfo+tj1swgZKWIIrcUG7Gzg+bGHcLgnmXWCJbhzu
E9GDtfa8ws+M91lPlLtz
=K49O
-END PGP SIGNATURE-


Accepted:
libhtml-tableextract-perl_2.10-4.debian.tar.gz
  to 
main/libh/libhtml-tableextract-perl/libhtml-tableextract-perl_2.10-4.debian.tar.gz
libhtml-tableextract-perl_2.10-4.dsc
  to main/libh/libhtml-tableextract-perl/libhtml-tableextract-perl_2.10-4.dsc
libhtml-tableextract-perl_2.10-4_all.deb
  to 
main/libh/libhtml-tableextract-perl/libhtml-tableextract-perl_2.10-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/e1q0c8z-0008sy...@franck.debian.org



Accepted libhtml-template-perl 2.9-3 (source all)

2011-03-17 Thread Nicholas Bamber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 16 Mar 2011 22:13:45 +
Source: libhtml-template-perl
Binary: libhtml-template-perl
Architecture: all source
Version: 2.9-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Nicholas Bamber nicho...@periapt.co.uk
Closes: 618373
Description: 
 libhtml-template-perl - module for using HTML Templates with Perl
Changes: 
 libhtml-template-perl (2.9-3) unstable; urgency=low
 .
   * New maintainer (Closes: #618373)
   * Upped compatibility level and debhelper version
   * Updated home page and svn fields in debian/control
   * Refreshed debian/rules
   * Refreshed patches
   * Refreshed copyright
   * Removed the FAQ and README as they duplicate the man page
   * Standardized the watch file
Checksums-Sha1: 
 dc3215e5303bff605f0b6e7612600a6fff87a52d 2039 libhtml-template-perl_2.9-3.dsc
 d437782eb0d2b24543cfb979e1695b8597de2a51 4584 
libhtml-template-perl_2.9-3.debian.tar.gz
 b87df6661276adcb36de140149ab4be69d1fbbd5 61658 
libhtml-template-perl_2.9-3_all.deb
Checksums-Sha256: 
 2e92e02912d6cd316f98c870ccac8b5862486cd52769fd59ca327d6cb313dbf5 2039 
libhtml-template-perl_2.9-3.dsc
 e0beaee815eafb8eef70eb9874c9b8eef6afc1be43bbb3d245f3d3026760a6a2 4584 
libhtml-template-perl_2.9-3.debian.tar.gz
 ccdd2910257af32ee7c8486ed5a7cacc56432397ed81b657ea62fa641a383dd2 61658 
libhtml-template-perl_2.9-3_all.deb
Files: 
 073d8fbd8ee602c83c1f521f224d3a6b 2039 perl optional 
libhtml-template-perl_2.9-3.dsc
 a5bdd1ac8ce8aa3efd34ca4246233d79 4584 perl optional 
libhtml-template-perl_2.9-3.debian.tar.gz
 a806bcedbbab66dccbf22c922418a6a9 61658 perl optional 
libhtml-template-perl_2.9-3_all.deb

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

iQIcBAEBCgAGBQJNgfg2AAoJEIATJTTdNH3IGkIP/128RbGZ+Ca7y0RWNG9vjdg2
+rXv23Fj3TRXm2iXvPX1+OTXLSZvq/Q+tqqzooJ0wKF7TtRRNp1FtAxz+hHTpp/N
Yr6LX71jFWC4XlCnzQLgzAVHDU7xlOYVs65Cl69THXPbtGZ06hTlhY9iuoTtst+e
HgeaWLElqBk4AAUCMXmxDAtZaXNOuMYh7XDZL6baLyJSNHgUudMpzVQMnWtWQ5ul
mzusRVdKNdRM/OvgPHizTYo5eXBxkz0XOOPOCS2gCUqFYm0nKmN7YkCQfhYs8cP1
EdPOeF20bx2ikV1F2D236Wo9hxRJ4l1X9oYAJv5lmTcXi1XJPI5L8INraXKwa67h
s1kkJYQsfVCzA5MlstVK9S7yHD84iQnpDsvN3rnF71ZlmKynxNowe2Yhcguz0q4R
2uAlGXd0/BvLCSx7Tkh+myKGr8IUfNxBBqf3nIM+BBgdlIPFmN6UgCzrw0u8mq+s
OiwLj2vKlyB3o+NsXvsB5qYJofepUUOPkGa55mCQbxJykeOTHyl8+gu6219VxLHT
O4qIogMaUcsQ8jeglSpA9wne0n3X9GVmPMnh4mxrT34S7+F3BUUSgH5jvsOye+uU
ifQzBNk14SgI//vwDhLmJYjvEZh1D9Tsd5+iXNtARbLgbzh+YcCrLmJOlDzKaNqv
yFHlRrWj8D3EtfR8/x+V
=t2KD
-END PGP SIGNATURE-


Accepted:
libhtml-template-perl_2.9-3.debian.tar.gz
  to main/libh/libhtml-template-perl/libhtml-template-perl_2.9-3.debian.tar.gz
libhtml-template-perl_2.9-3.dsc
  to main/libh/libhtml-template-perl/libhtml-template-perl_2.9-3.dsc
libhtml-template-perl_2.9-3_all.deb
  to main/libh/libhtml-template-perl/libhtml-template-perl_2.9-3_all.deb


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



Accepted libpod-simple-perl 3.16-1 (source all)

2011-03-17 Thread Jonathan Yu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 16 Mar 2011 20:13:03 -0400
Source: libpod-simple-perl
Binary: libpod-simple-perl
Architecture: all source
Version: 3.16-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Jonathan Yu jaw...@cpan.org
Description: 
 libpod-simple-perl - framework for parsing files in the Pod markup language
Changes: 
 libpod-simple-perl (3.16-1) unstable; urgency=low
 .
   * New upstream release
   * Rewrite control description
   * Bump to debhelper compat 8
   * Refresh and remove unneeded patches
Checksums-Sha1: 
 c20e0d750bb57b4a2396df33b83bd35dac009419 2152 libpod-simple-perl_3.16-1.dsc
 9072e8e540f7496e1a6ce7edfeb36d4c3cc08e62 227125 
libpod-simple-perl_3.16.orig.tar.gz
 d9e841c993f502f6c1c7a3ae353b0a1fcf975577 4000 
libpod-simple-perl_3.16-1.debian.tar.gz
 b6cae3d4b4b1f399eeccd778a28488264146afba 215342 
libpod-simple-perl_3.16-1_all.deb
Checksums-Sha256: 
 06adf8c6f1a4a863f37e10bc76a94f2923200817d3b78be689e329b6e8d6e334 2152 
libpod-simple-perl_3.16-1.dsc
 f252b6929f97c5e74a1474fbe2157bed402417c0c5d208439ac21a5a1f4bcc14 227125 
libpod-simple-perl_3.16.orig.tar.gz
 f2dc9b6da8c42807b6531a748b99db283d1c9cdc6dd9189d47a3157967f0dbd1 4000 
libpod-simple-perl_3.16-1.debian.tar.gz
 f5894dbe30ca1a0718475340a885fce5a9d9f031316e6215b98f20e859b1d2f6 215342 
libpod-simple-perl_3.16-1_all.deb
Files: 
 92a0fa32674e94b0554056f5b7b796ae 2152 perl optional 
libpod-simple-perl_3.16-1.dsc
 7bd96bde8c39443478d308bcd0a772d2 227125 perl optional 
libpod-simple-perl_3.16.orig.tar.gz
 35b33e3d523e19edee9fcb7582be100a 4000 perl optional 
libpod-simple-perl_3.16-1.debian.tar.gz
 6c87e8a19f69058a255c438efca6351d 215342 perl optional 
libpod-simple-perl_3.16-1_all.deb

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

iQIcBAEBCgAGBQJNgfg2AAoJEIATJTTdNH3IjJYP/2cv/sZE2nJBroPWUQu4dmoI
HRZ/GF/3pboWEHmXh18ufZGLgdVMMm8NzP3xhD43UAOHzfLMtuInjqal7bYiq9yP
1p5oEeYNg0+Gmhc8L7cOsfxUpoVspKgta9TlMUY2QmrIbaS1sbEuCL+Vtjn+jaUb
OjGPHPAOwH+GtLlrruJlw1w7XSj2U8aTSabgqBrGLx2bF1lNnqfidapcSlLUEQsb
LqoQQueOl0mxrxUS6LVWDIEstfgRPkGqen8dXr6lWLSLcKcrRXNiDZ3abCrqPGeR
VT+HctBy19T9tF6mpEkcNnC4OqS99Xvf3+pUfV14Pq0zbU5RCa0qfFTq0dUxcd/i
VXhgMbb3B4T1eN9gj5s7vJAOFTKFfr4Es6VyWiVq6rYFcDQ84kmcJJ8JHiRDhT5v
w64ElHxh4sxcE7LGljQR4uEdaK67FmwB/sZ2wHTXrsW2Bn5UuEgYL3eRIaCsOO58
ZdPjHTkw1glJCC9vqSxPOSshQyC/J0+1Lns/mBpfdMzuUtPycxlvf7nzVWVMGdyB
ANHWxes2vpqcRZPwEU0iRr5vvSUBw7zsiBEEAF/Sbmpe9UtTlFG5s89iGnC5T6he
7zosWTDmEqJAi65XqFTQjTm34PHCr4TT6YlkLjkCckxgu7FH3zipK4kHRMgmiPJi
QWMUQOHrvDc1DONeVYPh
=nmZV
-END PGP SIGNATURE-


Accepted:
libpod-simple-perl_3.16-1.debian.tar.gz
  to main/libp/libpod-simple-perl/libpod-simple-perl_3.16-1.debian.tar.gz
libpod-simple-perl_3.16-1.dsc
  to main/libp/libpod-simple-perl/libpod-simple-perl_3.16-1.dsc
libpod-simple-perl_3.16-1_all.deb
  to main/libp/libpod-simple-perl/libpod-simple-perl_3.16-1_all.deb
libpod-simple-perl_3.16.orig.tar.gz
  to main/libp/libpod-simple-perl/libpod-simple-perl_3.16.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/e1q0c8v-5s...@franck.debian.org



Accepted dictionaries-common 1.10.4 (source all)

2011-03-17 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 12:59:51 +0100
Source: dictionaries-common
Binary: dictionaries-common dictionaries-common-dev
Architecture: source all
Version: 1.10.4
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo agmar...@debian.org
Changed-By: Agustin Martin Domingo agmar...@debian.org
Description: 
 dictionaries-common - Common utilities for spelling dictionary tools
 dictionaries-common-dev - Developer tools and Policy for spelling dictionary 
tools
Closes: 618398
Changes: 
 dictionaries-common (1.10.4) unstable; urgency=low
 .
   * Triggerize update-default-ispell to have default symlink
 created after ispell-autobuildhash real run (Closes: #618398).
 Do the same for update-default-wordlist.
Checksums-Sha1: 
 9e1b07b8a8c65665167a00c24eb3727feb1f62e5 1132 dictionaries-common_1.10.4.dsc
 1965f8b028d316dd9930ddc55bf0972b64129569 321719 
dictionaries-common_1.10.4.tar.gz
 ef03737b2015cc87e29619430edf08f9a18c6257 299606 
dictionaries-common_1.10.4_all.deb
 4f95b6cc3cf230f75708729779c1fe6e5ed9f71b 129076 
dictionaries-common-dev_1.10.4_all.deb
Checksums-Sha256: 
 7c1ce330388ad7cc966405491a3cdee1fec920a9c443bc97ba97781b7273cb0c 1132 
dictionaries-common_1.10.4.dsc
 fd534c0e77215c71544f58b93b7724f6511602b2294c94bbfc846d9838531c13 321719 
dictionaries-common_1.10.4.tar.gz
 71619d9d2778cd5b43e700796f654d012bcd5172fd1459a22bb07a9d7a48aa0e 299606 
dictionaries-common_1.10.4_all.deb
 b72b086a29bd31aec5d5dca72250a57a0e5d4d45ca18ecb151ffe3c1f63ffed4 129076 
dictionaries-common-dev_1.10.4_all.deb
Files: 
 c3ef5b3fd94dfcffa9ee7fe57c46f519 1132 text optional 
dictionaries-common_1.10.4.dsc
 9c129fb589e6df6325d5e6259c36118e 321719 text optional 
dictionaries-common_1.10.4.tar.gz
 ebcc1b26c5ea8f1c10598018503661d5 299606 text optional 
dictionaries-common_1.10.4_all.deb
 e142a62914a9ca85f41043e7b4de0d28 129076 devel extra 
dictionaries-common-dev_1.10.4_all.deb

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

iD8DBQFNgfj/TShHqj72DpwRAn5jAJ0afA/HFYrzG3jQC7UmlP8S0KVDTACgjpWG
90jGsBSavj0UNmSXg1u7Vbg=
=YAp6
-END PGP SIGNATURE-


Accepted:
dictionaries-common-dev_1.10.4_all.deb
  to main/d/dictionaries-common/dictionaries-common-dev_1.10.4_all.deb
dictionaries-common_1.10.4.dsc
  to main/d/dictionaries-common/dictionaries-common_1.10.4.dsc
dictionaries-common_1.10.4.tar.gz
  to main/d/dictionaries-common/dictionaries-common_1.10.4.tar.gz
dictionaries-common_1.10.4_all.deb
  to main/d/dictionaries-common/dictionaries-common_1.10.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/e1q0cn6-00028z...@franck.debian.org



Accepted ispell.pt 20110314-1 (source all)

2011-03-17 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 13:02:45 +0100
Source: ispell.pt
Binary: iportuguese wportuguese
Architecture: source all
Version: 20110314-1
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo agmar...@debian.org
Changed-By: Agustin Martin Domingo agmar...@debian.org
Description: 
 iportuguese - European Portuguese dictionary for ispell
 wportuguese - European Portuguese wordlist
Changes: 
 ispell.pt (20110314-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 29aaae0a1258b96d8b7104ae14fe46d34db1e607 1283 ispell.pt_20110314-1.dsc
 d74a23d53ea8a3bbcad33aa0d68370aa9e16e5d1 180723 ispell.pt_20110314.orig.tar.gz
 faffd92b9dfe2f5dc2d37c42c618269ec39fe7c9 6660 ispell.pt_20110314-1.diff.gz
 89d9d315c04f67314ece3a912ba0cc872e63b03b 171282 iportuguese_20110314-1_all.deb
 dd02739f77cf2b68189bafaee799a049e82fa8ae 1056906 wportuguese_20110314-1_all.deb
Checksums-Sha256: 
 00cc2ae16d0d031919bec281347000109b5910c2c558b488827e1cfde5cb9bd0 1283 
ispell.pt_20110314-1.dsc
 7010c7f8bd3d77a0fa40b50ee32eb99aca065a4ccbb10e3db4c22a09c03a8c5c 180723 
ispell.pt_20110314.orig.tar.gz
 d218d0d7ee10f990ac3249b1e6f790455b850a6ffe23808dad6e202d191712f7 6660 
ispell.pt_20110314-1.diff.gz
 a25e9180e060363ae27a1c2e3d5914d28b1f77d2687adf537a9dacc43ea5e83d 171282 
iportuguese_20110314-1_all.deb
 bdfc2de9b4defaaa48a62d45206e05bcc3e50024d6cb4b9c598350061671b171 1056906 
wportuguese_20110314-1_all.deb
Files: 
 b645c4ccd2bf5905ccd1a36e1cec5ab7 1283 text optional ispell.pt_20110314-1.dsc
 d0fa893049491b4c46b79715d6392511 180723 text optional 
ispell.pt_20110314.orig.tar.gz
 b6396c127336d9b73849b78b5cde0870 6660 text optional 
ispell.pt_20110314-1.diff.gz
 7abde5536bff92fda2140d1ab3ca83a2 171282 text optional 
iportuguese_20110314-1_all.deb
 da904072aae57691d836a141af8a656e 1056906 text optional 
wportuguese_20110314-1_all.deb

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

iD8DBQFNgfk1TShHqj72DpwRApEvAJ9Erx7l/3yk8G30uV8scD7zzblaGACfcbiL
3A95D3UgpZeKbduf1vjsbgM=
=53RN
-END PGP SIGNATURE-


Accepted:
iportuguese_20110314-1_all.deb
  to main/i/ispell.pt/iportuguese_20110314-1_all.deb
ispell.pt_20110314-1.diff.gz
  to main/i/ispell.pt/ispell.pt_20110314-1.diff.gz
ispell.pt_20110314-1.dsc
  to main/i/ispell.pt/ispell.pt_20110314-1.dsc
ispell.pt_20110314.orig.tar.gz
  to main/i/ispell.pt/ispell.pt_20110314.orig.tar.gz
wportuguese_20110314-1_all.deb
  to main/i/ispell.pt/wportuguese_20110314-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/e1q0cnr-0002br...@franck.debian.org



Accepted cairo-dock 2.3.0~0rc1-1 (source amd64)

2011-03-17 Thread Youhei SASAKI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 01 Mar 2011 17:08:34 +0900
Source: cairo-dock
Binary: cairo-dock cairo-dock-core cairo-dock-dev
Architecture: source amd64
Version: 2.3.0~0rc1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Cairo-dock Maintainers 
pkg-cairo-dock-de...@lists.alioth.debian.org
Changed-By: Youhei SASAKI uwab...@gfd-dennou.org
Description: 
 cairo-dock - Light eye-candy fully themable animated dock for Linux desktop
 cairo-dock-core - Light eye-candy fully themable animated dock for Linux 
desktop
 cairo-dock-dev - Cairo-dock develpment file
Changes: 
 cairo-dock (2.3.0~0rc1-1) unstable; urgency=low
 .
   [ Nobuhiro Iwamatsu ]
   * Fix install path of example and update install file.
   * Update debian/patches
   * Update debian/cairo-dock-dev.install and debian/cairo-dock-core.install
 - Add usr/lib/libgldi.so.*
   * Update debian/rules and debian/control
 - Build system of upstream became cmake.
 - Add cmake to Build-Depends.
 - Add libcurl4-gnutls-dev to Build-Depends.
 - Update version of cairo-dock-plugins.
   * Add cairo-dock-core.lintian-overrides.
 .
   [ Youhei SASAKI ]
   * New Upstream version 2.3.0~0rc1
   * Update debian/changelog
   * Add DM-Upload-Allowed: yes
   * add clean target: rm src/config.h
   * fix doc/example install target
   * Add fix soname patch
   * Update debian/control
 - Add gimp, inkscape, gcalctool, f-spot to Suggests for default-theme
Checksums-Sha1: 
 82e54c75a4a953e89f55c781fbcf455d65b64255 2251 cairo-dock_2.3.0~0rc1-1.dsc
 59f588b6f0dfe2393716cb9496c069adab93a8cb 2771217 
cairo-dock_2.3.0~0rc1.orig.tar.gz
 87c723d75f7b5e78c02234abb274250f5c723c21 9978 
cairo-dock_2.3.0~0rc1-1.debian.tar.gz
 8c140a9fe4f5957136711539b9fdfb5465ca3238 6968 cairo-dock_2.3.0~0rc1-1_amd64.deb
 1a909d05b7c93a1419f99596cd12a32cee876a31 1873896 
cairo-dock-core_2.3.0~0rc1-1_amd64.deb
 b73af036d64ed102de5c1a2f704017bb85de562c 120854 
cairo-dock-dev_2.3.0~0rc1-1_amd64.deb
Checksums-Sha256: 
 878475527a24b13add7dae5baa8093749a24293c9f9a37e101cf5a4404194e14 2251 
cairo-dock_2.3.0~0rc1-1.dsc
 1971334554a6a7bd5feda1a070805026df11cc8bb65beb8c6d4b6260cf9540e0 2771217 
cairo-dock_2.3.0~0rc1.orig.tar.gz
 662ffd0eea397fdfe7964045845514bc49a388a2ebbcd6c41b0b07d95dd12d38 9978 
cairo-dock_2.3.0~0rc1-1.debian.tar.gz
 83cea4aac68744a99357305305f5118da6028a6ca388e3986a4f09e581c088da 6968 
cairo-dock_2.3.0~0rc1-1_amd64.deb
 b26f4f625630edb569f9c12124f54ae0eb457b7ec2f2773d0085302236540f4c 1873896 
cairo-dock-core_2.3.0~0rc1-1_amd64.deb
 0597fce2725dd831db56a8f5d267a98218187789f54ca3eb5f7c93f00b98917c 120854 
cairo-dock-dev_2.3.0~0rc1-1_amd64.deb
Files: 
 7edb117dbd9cc89e8525a3f2433bbbc7 2251 x11 extra cairo-dock_2.3.0~0rc1-1.dsc
 a4e9d0cbf61853526d01ba41d8c3c107 2771217 x11 extra 
cairo-dock_2.3.0~0rc1.orig.tar.gz
 5c36edeb88561780accb2b7b51ed5f62 9978 x11 extra 
cairo-dock_2.3.0~0rc1-1.debian.tar.gz
 0705843c8f26dc17d29b9858ecccfe28 6968 x11 extra 
cairo-dock_2.3.0~0rc1-1_amd64.deb
 a2a7e4fe35b08c1f293e415f5f7d57aa 1873896 x11 extra 
cairo-dock-core_2.3.0~0rc1-1_amd64.deb
 eef5c6f143695a02e93495f3fd51af0b 120854 devel extra 
cairo-dock-dev_2.3.0~0rc1-1_amd64.deb

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

iQIcBAEBCAAGBQJNgf9SAAoJEDIkf7tArR+m5W8P/3ku7+RBY03rM3b4i0jxNhlr
hSPQYcetZSSNVH7VlcpNcKt5lueVe/FeyOLkji+UcNDD+WKDO43htw96ARekyMfT
owhxtLe57iJJ/+ZCVKphIbaUnpM4+0JbyRCQHYRYAbNxpmjttC3pKTqxigxClkV6
XW0CCALF5qx2r+RqPYzl8uKYd2DoELYNu88oxatVlNThbEyj6e8xyPbuPTa/R/ux
aOojAhXXF7TOMFM5P3lNKgamc/DAwuuCzytsCCgQDxpqSWsq8UIppiltKbKgF0QC
bPIH7skfI699B8uP8bppVqxaxBz/ufO9MLFfYZZqS5biz0j7zpStXCIG7UibaGH2
vAep0ON7HprBNyJ4LkdZsIFBqdSgKCdQqigTQfnTUZ5ik9UKS72tmG8Av+pO/GBa
RkdkQjLT3peF6w6fkkBDgTfS+kZYS6eFr4lQxlYBqgaBlFWqD6pn/CjmKOoK7y2y
jWQ4oP7B19NhGEz9xothAuwmXNidJbeVJq3/J2jsBJmuGtCSG0CClw9vv7MX4HDF
1ftRlNyTRVm8HC2cvXjAaUtpmgCPpeK6OKqvvvTkZYyayo8El8bk1hyEeMSMEv5D
hGdLIIP6wHaXAiblQxAQLrckVg1xpaVw9TkJfcfNXGjakm0ho14QimvV6mgYOkus
eawprnQMRsBcEOjO/1UL
=pVJ/
-END PGP SIGNATURE-


Accepted:
cairo-dock-core_2.3.0~0rc1-1_amd64.deb
  to main/c/cairo-dock/cairo-dock-core_2.3.0~0rc1-1_amd64.deb
cairo-dock-dev_2.3.0~0rc1-1_amd64.deb
  to main/c/cairo-dock/cairo-dock-dev_2.3.0~0rc1-1_amd64.deb
cairo-dock_2.3.0~0rc1-1.debian.tar.gz
  to main/c/cairo-dock/cairo-dock_2.3.0~0rc1-1.debian.tar.gz
cairo-dock_2.3.0~0rc1-1.dsc
  to main/c/cairo-dock/cairo-dock_2.3.0~0rc1-1.dsc
cairo-dock_2.3.0~0rc1-1_amd64.deb
  to main/c/cairo-dock/cairo-dock_2.3.0~0rc1-1_amd64.deb
cairo-dock_2.3.0~0rc1.orig.tar.gz
  to main/c/cairo-dock/cairo-dock_2.3.0~0rc1.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/e1q0cbf-00035p...@franck.debian.org



Accepted grub 0.97-65 (source i386 all)

2011-03-17 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 13:34:14 +
Source: grub
Binary: grub-legacy grub grub-disk grub-doc grub-legacy-doc multiboot-doc
Architecture: source i386 all
Version: 0.97-65
Distribution: unstable
Urgency: low
Maintainer: GRUB Maintainers pkg-grub-de...@lists.alioth.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 grub   - GRand Unified Bootloader (dummy package)
 grub-disk  - GRUB bootable disk image (dummy package)
 grub-doc   - Documentation for GRand Unified Bootloader (dummy package)
 grub-legacy - GRand Unified Bootloader (Legacy version)
 grub-legacy-doc - Documentation for GRUB Legacy
 multiboot-doc - The Multiboot specification (dummy package)
Closes: 570318
Changes: 
 grub (0.97-65) unstable; urgency=low
 .
   * Fix grub/migrate_from_legacy title to not end with a full stop.
   * Fix update-grub(8) groff typo (.bar instead of .br).
   * Adjust doc-base file to account for renaming of grub.info to
 grub-legacy.info.
   * Compare -trunk kernels earlier than numeric ABIs (thanks, Aaron M. Ucko
 and Andreas Beckmann; closes: #570318).
   * Convert from home-grown patch system to quilt.
Checksums-Sha1: 
 d6c88f3169e30bf70063f5011e9a7b27e650f392 2110 grub_0.97-65.dsc
 373b677609b59776f629f2849a66dc903fd17e7e 96813 grub_0.97-65.diff.gz
 abe352039fa32a6f760126173d711d7fe9ee95af 388152 grub-legacy_0.97-65_i386.deb
 f440025652ef18728419bb44d9924656a87eca94 117882 grub_0.97-65_i386.deb
 8b699f678a19f85330a0da0104f5ff5e4769a389 117232 grub-disk_0.97-65_all.deb
 3363fb7cfa13df9b39f5dab04ea252ca00145687 117252 grub-doc_0.97-65_all.deb
 820a8b1613f2b6ae63287ab272008d942bda9d0f 258504 grub-legacy-doc_0.97-65_all.deb
 a6591f43878e292622ed2688533a6fb2169d 117258 multiboot-doc_0.97-65_all.deb
Checksums-Sha256: 
 bbfd44a631f89dac6c725e65d1aa671c26c282669a750374d31d255e95557c4a 2110 
grub_0.97-65.dsc
 e12dc9ae2fb1994f28dc9276bddb3efe2bffcd83a8d220566780768f78f32217 96813 
grub_0.97-65.diff.gz
 e0cb7c3af7e7d321338165230b7a67caea2226b0e7b4b833263ad9b58bb78b6f 388152 
grub-legacy_0.97-65_i386.deb
 d7b88f8e5d407075c27622a58c08f78d8fa07d7d08c1c0c9d44460828bc25c90 117882 
grub_0.97-65_i386.deb
 391a615bf25739e0f170601da56e084752ab4d7a577eeea071137f2241f309fa 117232 
grub-disk_0.97-65_all.deb
 38b36048b4db42682f60e319f0401533b05f11593fb699e6b6b30253730c3502 117252 
grub-doc_0.97-65_all.deb
 834fa33e90f82e475c1f0a00013737b16d397e5c4b2238a65f457d2f4e91b226 258504 
grub-legacy-doc_0.97-65_all.deb
 43f4e2193829c18e0cc2b086d9e3de5e082857757f531a6846741a3894899c1f 117258 
multiboot-doc_0.97-65_all.deb
Files: 
 801b4441c7f9c22e4c5f8b712a53522b 2110 admin extra grub_0.97-65.dsc
 3bfd842a557d5e5defa50b4d59e8da3c 96813 admin extra grub_0.97-65.diff.gz
 5fa57707615690951d166be06bd66a89 388152 admin extra 
grub-legacy_0.97-65_i386.deb
 7c7594d6bd6798d5585e948ab0ff166c 117882 admin extra grub_0.97-65_i386.deb
 06980a686f85513bf45d7ec8342ee45c 117232 admin extra grub-disk_0.97-65_all.deb
 f2e900f6b29e11228d6fc1882e912d84 117252 doc extra grub-doc_0.97-65_all.deb
 3e99f4afc3765974ac062ccb1ec030ba 258504 doc extra 
grub-legacy-doc_0.97-65_all.deb
 c7407bf32c396fcdb7fedc39d4f9466d 117258 doc extra multiboot-doc_0.97-65_all.deb

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

iQIVAwUBTYIPLzk1h9l9hlALAQhErw/+Kzv7VTaPFh9i4xN0tN+6Rn4hEJm9J1og
w9x2JkDB4WruPDUtGzIq7nK4ff/zLg+qmFXX47yXAaPcRI2vl1eGKSCsjfWgsHRY
FHC/IXrry+UEZ80nny1/FzXqFUyfXZlHYm/SiOUcsTLBf33zP3dkqP/epbjOfxZG
A3R8YbrWtAtVM3hoFsWm1plGeps5EcfMYSgTQ8OzVfdqsMBBZlCn0/yCXc7l7Bf0
iAlVyVeu/6IdtahPIFV1STF9LcM09PCrTjolRmT5Xs40bidDVNDZcGb2TjKKoam+
pv31/QmrnYJFR79Iv2/hSwdw5tuV6x4gyJmvmTTYEXfO3seysdWvMpgCl6k8Ly/J
RujLDTX61TkGOuFCunsbFLYhWgcYjqNBxpg3saiMOHE7a2JpqIByT5Pt+wr9ya7s
cD/Ldu+9jhHDeQQ3OrM/2f4PxFQ64luRSOFQjxXu4y1qOmPwAHPZBv90LkMK2Lj2
8AelTBxYQ91pHt6j484qRzZwS9r5bK76405CloNZcKdB9cl6RYDmzlXG0QHY8eAc
8tvOjEfnG8bXJB5HtSfTVDaS1dqCefn0+a1em83/0dEAxIOyktDu1GxcjEIF+IE5
sHsheMTHPNiCFTI58jcAMgHrEZOpffG0ZdVNy6hyQ/dsC/J8TLdEF+JUOy6Ge6e4
PUo4nXyJVew=
=+gC2
-END PGP SIGNATURE-


Accepted:
grub-disk_0.97-65_all.deb
  to main/g/grub/grub-disk_0.97-65_all.deb
grub-doc_0.97-65_all.deb
  to main/g/grub/grub-doc_0.97-65_all.deb
grub-legacy-doc_0.97-65_all.deb
  to main/g/grub/grub-legacy-doc_0.97-65_all.deb
grub-legacy_0.97-65_i386.deb
  to main/g/grub/grub-legacy_0.97-65_i386.deb
grub_0.97-65.diff.gz
  to main/g/grub/grub_0.97-65.diff.gz
grub_0.97-65.dsc
  to main/g/grub/grub_0.97-65.dsc
grub_0.97-65_i386.deb
  to main/g/grub/grub_0.97-65_i386.deb
multiboot-doc_0.97-65_all.deb
  to main/g/grub/multiboot-doc_0.97-65_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/e1q0dxj-0007fc...@franck.debian.org



Accepted libindicate-qt 0.2.5-2 (source amd64)

2011-03-17 Thread Felix Geyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 16 Mar 2011 11:03:08 +0100
Source: libindicate-qt
Binary: libindicate-qt-dev libindicate-qt1
Architecture: source amd64
Version: 0.2.5-2
Distribution: unstable
Urgency: low
Maintainer: The Ayatana Packagers pkg-ayatana-de...@lists.alioth.debian.org
Changed-By: Felix Geyer debfx-...@fobos.de
Description: 
 libindicate-qt-dev - Qt bindings for libindicate - development files
 libindicate-qt1 - Qt bindings for libindicate
Closes: 618623
Changes: 
 libindicate-qt (0.2.5-2) unstable; urgency=low
 .
   * Switch to debhelper compat level 8.
   * Build with -fvisiblity=hidden.
 - Add 01_visibility_hidden.diff.
 - Update symbols file.
 Closes: #618623
   * Drop dependency from libindicate-qt-dev on libindicate-dev.
Checksums-Sha1: 
 44c86d8dc1888c314904acec86a59407e875dc85 1391 libindicate-qt_0.2.5-2.dsc
 8f57338fa9c451da46c9bb72ff227b2d64a6c5a0 4832 
libindicate-qt_0.2.5-2.debian.tar.gz
 26f561b1dc76c345385c1a28f3993ab202062dd8 6000 
libindicate-qt-dev_0.2.5-2_amd64.deb
 a901d438fbb6b01fc74f37fd852ee57b3570b30c 32044 
libindicate-qt1_0.2.5-2_amd64.deb
Checksums-Sha256: 
 c58fa5a50a075080b0525c40beb9cfbbbff5a7950832bd24ce053d24d82b59a8 1391 
libindicate-qt_0.2.5-2.dsc
 76e2502438d0125742b5e14912e15c3ad45b206a765f58277e0f39d41bed3e85 4832 
libindicate-qt_0.2.5-2.debian.tar.gz
 83e95181408a9b9bd2c0129ebe7111e7f69193fbb16fe173c508800f7b919fdf 6000 
libindicate-qt-dev_0.2.5-2_amd64.deb
 8225d824133e520c950d6683cef3d50ab69b1257da736c6497cf03cd22194d9c 32044 
libindicate-qt1_0.2.5-2_amd64.deb
Files: 
 6f7144efa658a6622391c14473daffb9 1391 libs optional libindicate-qt_0.2.5-2.dsc
 277139238afe6ed5149e535e0345cc16 4832 libs optional 
libindicate-qt_0.2.5-2.debian.tar.gz
 746871db21374a0cfdab79f1bf38a27c 6000 libdevel optional 
libindicate-qt-dev_0.2.5-2_amd64.deb
 9a0c3de991dbe406a83035297a07a8ce 32044 libs optional 
libindicate-qt1_0.2.5-2_amd64.deb

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

iEYEARECAAYFAk2CDisACgkQJKAUGKwVtQzaKwCgpJursD1pu7/ZWRu9dNXJOcM5
7yQAn0FFKbL9uwIzEoZI6J3T89ZPrO+U
=BOEO
-END PGP SIGNATURE-


Accepted:
libindicate-qt-dev_0.2.5-2_amd64.deb
  to main/libi/libindicate-qt/libindicate-qt-dev_0.2.5-2_amd64.deb
libindicate-qt1_0.2.5-2_amd64.deb
  to main/libi/libindicate-qt/libindicate-qt1_0.2.5-2_amd64.deb
libindicate-qt_0.2.5-2.debian.tar.gz
  to main/libi/libindicate-qt/libindicate-qt_0.2.5-2.debian.tar.gz
libindicate-qt_0.2.5-2.dsc
  to main/libi/libindicate-qt/libindicate-qt_0.2.5-2.dsc


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



Accepted r-base 2.13.0~20110316-1 (source i386 all)

2011-03-17 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 08:05:43 -0500
Source: r-base
Binary: r-base r-base-core r-base-dev r-mathlib r-base-html r-doc-pdf 
r-doc-html r-doc-info r-recommended r-base-core-dbg
Architecture: source i386 all
Version: 2.13.0~20110316-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-base - GNU R statistical computation and graphics system
 r-base-core - GNU R core of statistical computation and graphics system
 r-base-core-dbg - GNU R debug symbols for statistical comp. language and 
environmen
 r-base-dev - GNU R installation of auxiliary GNU R packages
 r-base-html - GNU R html docs for statistical computing system functions
 r-doc-html - GNU R html manuals for statistical computing system
 r-doc-info - GNU R info manuals statistical computing system
 r-doc-pdf  - GNU R pdf manuals for statistical computing system
 r-mathlib  - GNU R standalone mathematics library
 r-recommended - GNU R collection of recommended packages [metapackage]
Changes: 
 r-base (2.13.0~20110316-1) unstable; urgency=low
 .
   * Initial alpha release (r54827) of R 2.13.0 expected for Apr 13
 .
   * R/m4, configure: Override bzip2 test for 1.0.6 to let our patched
 1.0.5 version pass as lintian does not like the embedded library
Checksums-Sha1: 
 2bf7428bdff8adb7f07de5deb7c7eec81270e3a4 1807 r-base_2.13.0~20110316-1.dsc
 fef84f70bc201e8097616b52af0efe2114c61e98 21357998 
r-base_2.13.0~20110316.orig.tar.gz
 fd056d131542e894dbe41599041aba606d06a988 71933 r-base_2.13.0~20110316-1.diff.gz
 5ec8d184eae87420a75871695de6fdea0d81ef28 14369068 
r-base-core_2.13.0~20110316-1_i386.deb
 d4f3b8d9d7f6ec98de84b63a09bfdd7fd52be5f0 583388 
r-mathlib_2.13.0~20110316-1_i386.deb
 c6d08a1331d5aa003756c854cd4037bc180808b9 2751800 
r-base-core-dbg_2.13.0~20110316-1_i386.deb
 17fd854795de7cebdce78ccdb7cf5e91c9b0dbe7 34804 r-base_2.13.0~20110316-1_all.deb
 c41e2fcba78cf9006df6ba8196ed639d06ef43fa 3494 
r-base-dev_2.13.0~20110316-1_all.deb
 918976a7d86fbf88fedd3678be35995d092fbd21 86558 
r-base-html_2.13.0~20110316-1_all.deb
 e419d24446bd0bf88f3c372ea9aa53f91c0da7cd 8124242 
r-doc-pdf_2.13.0~20110316-1_all.deb
 537c06951cf3ee0d3ae6ccbfeac3205158251fab 609592 
r-doc-html_2.13.0~20110316-1_all.deb
 c7cc9909f0c8f9413606e554d2a08fbc9abcda00 521548 
r-doc-info_2.13.0~20110316-1_all.deb
 a0e95f9feca65838e981e3565e55242627c001b7 2686 
r-recommended_2.13.0~20110316-1_all.deb
Checksums-Sha256: 
 2f4c86484865bdbd92bd9fbfe2c46d062e30b2caac5595e3f7dae3e7f886231f 1807 
r-base_2.13.0~20110316-1.dsc
 d10a03bc063e6dec0b3727d4c9bbb6c78b28c007c65d7250bec4dbc78b8189ba 21357998 
r-base_2.13.0~20110316.orig.tar.gz
 867a0069cf7847d1628747644f2b9e5aee4c43990d29cf15e39f7ab5ab481c40 71933 
r-base_2.13.0~20110316-1.diff.gz
 0ac8df76628968cdcf9024b1c9f9718c97927ac7a0f56d4150d9ad3813c7f419 14369068 
r-base-core_2.13.0~20110316-1_i386.deb
 d8f5701717a3b32a1d77a8ae52682a350539f446a51d67100e7f1fe359508179 583388 
r-mathlib_2.13.0~20110316-1_i386.deb
 921a8d8c6f63fc7de995a4bf1218b25940c215e28cd6be6888a91b37f9d6ed46 2751800 
r-base-core-dbg_2.13.0~20110316-1_i386.deb
 231d7a651b104b2424d3abcea908a461d5e38962412b07b1af0e6ff1f80c9501 34804 
r-base_2.13.0~20110316-1_all.deb
 a1db72ccb1c93ddb823a2d3f65443fa483ba46117870f95dbd4a28e9895e6683 3494 
r-base-dev_2.13.0~20110316-1_all.deb
 00140e503fee04f637c0bc7afb18c18806ab50ce2908caa3178369592b6db8b1 86558 
r-base-html_2.13.0~20110316-1_all.deb
 89db444dd991b173e8f36795e2824f4506f0d0e8ddd661543a3c86db60e9bdc5 8124242 
r-doc-pdf_2.13.0~20110316-1_all.deb
 1346210fac91d32c85a7e6f2b10703f9d7712980f7061c77f840f1faf7c47e96 609592 
r-doc-html_2.13.0~20110316-1_all.deb
 37bd8283cdf5c4f18c9ef487379c7a5e8a00f3b3acfe054937946c37cea04823 521548 
r-doc-info_2.13.0~20110316-1_all.deb
 f3119b0694525669acdd2b5fd13644051d00519337c44a1e9ad1c630305d20d1 2686 
r-recommended_2.13.0~20110316-1_all.deb
Files: 
 a000b9bc3aeea80982422db0b3d7b9f9 1807 gnu-r optional 
r-base_2.13.0~20110316-1.dsc
 77226bccf2d045c154f266edcae0 21357998 gnu-r optional 
r-base_2.13.0~20110316.orig.tar.gz
 ccbc7d1b73c8c87f74d2335843d4f2e5 71933 gnu-r optional 
r-base_2.13.0~20110316-1.diff.gz
 cd5148e600c7b088700e7e894fd7f653 14369068 gnu-r optional 
r-base-core_2.13.0~20110316-1_i386.deb
 51e077c65c89d6432942515759bb9c78 583388 gnu-r optional 
r-mathlib_2.13.0~20110316-1_i386.deb
 a689b93a439b2a295798143a4277a855 2751800 debug extra 
r-base-core-dbg_2.13.0~20110316-1_i386.deb
 88832536d56f2e4ea73e4f83afbb3ea4 34804 gnu-r optional 
r-base_2.13.0~20110316-1_all.deb
 9c956034c7211838ae84031469efbc8d 3494 gnu-r optional 
r-base-dev_2.13.0~20110316-1_all.deb
 db82ccdf4190276ff7bcaa1bbed9a80c 86558 doc extra 
r-base-html_2.13.0~20110316-1_all.deb
 4f0514856b212066cdc09f680481e938 8124242 doc optional 
r-doc-pdf_2.13.0~20110316-1_all.deb
 7ecb8ef799b490078b607003d990b5fe 609592 doc optional 
r-doc-html_2.13.0~20110316-1_all.deb
 

Accepted sg3-utils 1.31-1 (source amd64)

2011-03-17 Thread Ritesh Raj Sarraf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 17 Mar 2011 19:46:32 +0530
Source: sg3-utils
Binary: sg3-utils libsgutils2-2 libsgutils2-dev
Architecture: source amd64
Version: 1.31-1
Distribution: unstable
Urgency: low
Maintainer: Ritesh Raj Sarraf r...@debian.org
Changed-By: Ritesh Raj Sarraf r...@debian.org
Description: 
 libsgutils2-2 - utilities for devices using the SCSI command set (shared 
librarie
 libsgutils2-dev - utilities for devices using the SCSI command set (developer 
files
 sg3-utils  - utilities for devices using the SCSI command set
Changes: 
 sg3-utils (1.31-1) unstable; urgency=low
 .
   * New Upstream Release
   * [0d9bfc1] update symbols file
Checksums-Sha1: 
 c56099fb35453b29aa7677fee35f036f1b06ba61 1905 sg3-utils_1.31-1.dsc
 c381407d9db3aad58a9856f2f2e38c13ab4d62c1 898994 sg3-utils_1.31.orig.tar.gz
 f85283dcc8ce2b47d701430af3bdfd6b077a8349 9439 sg3-utils_1.31-1.debian.tar.gz
 0ed827aee114cc0d1ef464a84baeb289e6c0d7af 630146 sg3-utils_1.31-1_amd64.deb
 e20cefa61276a6b42ca5e35746c0e98b27eca095 81594 libsgutils2-2_1.31-1_amd64.deb
 f1e730701d91b417090c75ea392a38e777b4cfff 100892 
libsgutils2-dev_1.31-1_amd64.deb
Checksums-Sha256: 
 efbd7b633316fe2ea5492fa0a019b54c5cf1366249b66991b794bcae9d3f6918 1905 
sg3-utils_1.31-1.dsc
 d84b38b61f0ca3941eb1c48a5858f93d1d1b70a623e579f5ecce2440e18410a4 898994 
sg3-utils_1.31.orig.tar.gz
 0cea09ee0d4d5cefaa1020486c4c9f0ebd7716a821dbe0c423393496e7fb6870 9439 
sg3-utils_1.31-1.debian.tar.gz
 8b9d832fd4d5a5bfc3bf86662d93372dfb9f7620d2061bc8e85cf7619b735b56 630146 
sg3-utils_1.31-1_amd64.deb
 84bc4fa855e2d1cdeadf160bb3f947e34d044356d8f21b857830304583d4ef6b 81594 
libsgutils2-2_1.31-1_amd64.deb
 96ef4b19788de65c3b8ae2f3cd0ab431d74e51301f96efb843b354798a9d8439 100892 
libsgutils2-dev_1.31-1_amd64.deb
Files: 
 c64587fd9a0325dfcf7d7f774809b113 1905 admin optional sg3-utils_1.31-1.dsc
 9431e1944cde829a24dedf027e1364b5 898994 admin optional 
sg3-utils_1.31.orig.tar.gz
 cfd608de7a9db70740a1388cde2e2936 9439 admin optional 
sg3-utils_1.31-1.debian.tar.gz
 e971bf4bf859bc1469aca1a0c2bb91a9 630146 admin optional 
sg3-utils_1.31-1_amd64.deb
 10d5fdca42871c201f18590c316ec926 81594 libs optional 
libsgutils2-2_1.31-1_amd64.deb
 141b794758717200bb2d774758bcb969 100892 libdevel optional 
libsgutils2-dev_1.31-1_amd64.deb

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

iQIcBAEBCgAGBQJNghjDAAoJEKY6WKPy4XVp96wP/3AUV1GGiWxh2o8jCGnPU3a6
8p3DD65YAvEUiWKP6peK6O4sl2C9g8qCQG29uI6SaV3IUmyhbQL0XvmuuB5KkQya
07eAY3ex6+WVErXQJF8ETty9bJ9aY37xRBX7HoQ5w5qFvJl0oVvLqxeCZurabu5Y
FoS5CmpSL7NawVMzmet7piRu28Onj0GrQQfUZmKIn/oKh4SRPlw2+JUqqd/jMAGN
y3JKxZTbiefDiOhHzOvwi4bxcjpPNHaFJxfDITOWr4WsMzA7kN6gc7BGk963Cmrm
N10vMRpekxTu/HFn6dmd9ZXwc4yc3mTRBl7eouYYgNpMYt8UHsM6mYTAARNp4mtH
LErwcD0uT8gUtH6jXWOgthM4FG/cpgnmTXQ9SoJ0jg9eRbhTAXYNDb2if/G7fFdf
0U0izrpCtzaxYyl+fZGL3V7NWK8z6I33+B3oQPWdvL/0VEAazqlLXNcupjqtI0My
h9DFVWQxjDF0bZnSqFQFmkpWPQX5ImQLgFmG2X87SU94ugNBy3eNNmlb5l4lEkYo
iYUqfQ7bDIgctBYoGMnbALENFHbT1rB6ogYHRByQcqtjtke0wLROu2MeU0MyQc8t
W2Ig0ea7TnbUxtXtrVBNUoPQuGGV7AstQuhAoZlf0PCRMkoUj/wFpolnIoNSHvx7
+O4UnW76jGJ9Hth0A/w2
=YWbD
-END PGP SIGNATURE-


Accepted:
libsgutils2-2_1.31-1_amd64.deb
  to main/s/sg3-utils/libsgutils2-2_1.31-1_amd64.deb
libsgutils2-dev_1.31-1_amd64.deb
  to main/s/sg3-utils/libsgutils2-dev_1.31-1_amd64.deb
sg3-utils_1.31-1.debian.tar.gz
  to main/s/sg3-utils/sg3-utils_1.31-1.debian.tar.gz
sg3-utils_1.31-1.dsc
  to main/s/sg3-utils/sg3-utils_1.31-1.dsc
sg3-utils_1.31-1_amd64.deb
  to main/s/sg3-utils/sg3-utils_1.31-1_amd64.deb
sg3-utils_1.31.orig.tar.gz
  to main/s/sg3-utils/sg3-utils_1.31.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/e1q0ed8-0005bk...@franck.debian.org



Accepted squashfs-tools 1:4.2-1 (source i386)

2011-03-17 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 15:04:48 +0100
Source: squashfs-tools
Binary: squashfs-tools squashfs-tools-dbg
Architecture: source i386
Version: 1:4.2-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net
Changed-By: Daniel Baumann daniel.baum...@progress-technologies.net
Description: 
 squashfs-tools - Tool to create and append to squashfs filesystems
 squashfs-tools-dbg - Tool to create and append to squashfs filesystems (debug)
Changes: 
 squashfs-tools (1:4.2-1) unstable; urgency=low
 .
   * Merging upstream version 4.2.
   * Updating debhelper docs file for new upstream.
   * Updating year in copyright file.
Checksums-Sha1: 
 51bedd59a00db1601bb0ff43948dd8246eb84f40 1201 squashfs-tools_4.2-1.dsc
 e0944471ff68e215d3fecd464f30ea6ceb635fd7 133173 squashfs-tools_4.2.orig.tar.gz
 90a2e39f66ba1943e2c2549e34c35dec1c2b7a4f 10096 
squashfs-tools_4.2-1.debian.tar.gz
 f9cbc7268fca0372b2169e336a363401c0f4840b 138368 squashfs-tools_4.2-1_i386.deb
 5b9f2a3f48e130fb16150015a9660ddb91bd2c4c 159324 
squashfs-tools-dbg_4.2-1_i386.deb
Checksums-Sha256: 
 578660928bd1451f2b70c5410d1793fc63d46a669e4e5e0f819ce2cf26d9f501 1201 
squashfs-tools_4.2-1.dsc
 d9e0195aa922dbb665ed322b9aaa96e04a476ee650f39bbeadb0d00b24022e96 133173 
squashfs-tools_4.2.orig.tar.gz
 0717c4c00ead70b9d69a37d4866d1e309b7732b40f44ff37beb5264c551e967b 10096 
squashfs-tools_4.2-1.debian.tar.gz
 50090b82aac73a3efbd285af8d1a4e2fb9208f46dad408f0becbe8a2cfc9457d 138368 
squashfs-tools_4.2-1_i386.deb
 9072692caa55b2d4939d65ee10be1974c23f2c63caba0f4a18e7511d9f44a5ef 159324 
squashfs-tools-dbg_4.2-1_i386.deb
Files: 
 683bd7b20e76d32ca521c879d6ac0a2b 1201 kernel optional squashfs-tools_4.2-1.dsc
 1b7a781fb4cf8938842279bd3e8ee852 133173 kernel optional 
squashfs-tools_4.2.orig.tar.gz
 c33c80d47bb715dcf2568f7de2232e15 10096 kernel optional 
squashfs-tools_4.2-1.debian.tar.gz
 c31e105349eee9696cd97ed6defb67ae 138368 kernel optional 
squashfs-tools_4.2-1_i386.deb
 7ade2c73e87e496719a288c0cfe59d25 159324 debug extra 
squashfs-tools-dbg_4.2-1_i386.deb

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

iEYEARECAAYFAk2CFn0ACgkQ+C5cwEsrK54fGQCgoNQ7Kwn9jKCSqkTh+tfhQJ0M
bEEAnRhduIC7K/zE6PGSq0YfgSu8SIa0
=qlfj
-END PGP SIGNATURE-


Accepted:
squashfs-tools-dbg_4.2-1_i386.deb
  to main/s/squashfs-tools/squashfs-tools-dbg_4.2-1_i386.deb
squashfs-tools_4.2-1.debian.tar.gz
  to main/s/squashfs-tools/squashfs-tools_4.2-1.debian.tar.gz
squashfs-tools_4.2-1.dsc
  to main/s/squashfs-tools/squashfs-tools_4.2-1.dsc
squashfs-tools_4.2-1_i386.deb
  to main/s/squashfs-tools/squashfs-tools_4.2-1_i386.deb
squashfs-tools_4.2.orig.tar.gz
  to main/s/squashfs-tools/squashfs-tools_4.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/e1q0eel-0005jl...@franck.debian.org



Accepted reminiscence 0.2.1-1 (source amd64)

2011-03-17 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 17:03:57 +0200
Source: reminiscence
Binary: reminiscence
Architecture: source amd64
Version: 0.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 reminiscence - free implementation of Flashback game engine
Closes: 613602
Changes: 
 reminiscence (0.2.1-1) unstable; urgency=low
 .
   * New upstream release
+ uses correct fixed-size integer types
  closes: #613602 -- Crash at menu start with the message Bad CRC for
  collision data
 .
   * copyright: upstream switched to GPL-3+, update years
   * reminiscence.pl: add support for --levelnum option (new in this release)
   * patch Makefile so that CXXFLAGS from the environment is honoured
Checksums-Sha1: 
 f6cdcff52501b8504d77d54e84ea0c9a4278d2b6 1822 reminiscence_0.2.1-1.dsc
 656714cf0d5e5d587acd7b721f83fdb7f294d1d0 101621 reminiscence_0.2.1.orig.tar.bz2
 f9ce32ff3f51c6e604124fd33eedf6c8b22abc0c 4423 
reminiscence_0.2.1-1.debian.tar.gz
 0b9eb8d218f7338564c304e4f32d38c822ba4a58 127062 reminiscence_0.2.1-1_amd64.deb
Checksums-Sha256: 
 03ebf794d58d424c467181a27c4f22c7e1819751cc79aae88fb2dbcc32737425 1822 
reminiscence_0.2.1-1.dsc
 3168ffb7cd29e72a150e22edc6f0891001288f4c89d7900cbac8864ce763c2bd 101621 
reminiscence_0.2.1.orig.tar.bz2
 0fa8332bfe6fb9f539ad0494f57ff864dc70a166e64867a8026709a586efcd6f 4423 
reminiscence_0.2.1-1.debian.tar.gz
 a6e0321446097877a349ada59369532bb23a551d9c2f477252d30f79d5e25fad 127062 
reminiscence_0.2.1-1_amd64.deb
Files: 
 d82e8b1adbc9bc23ba48954940d119ed 1822 contrib/games optional 
reminiscence_0.2.1-1.dsc
 59e7c5b3848c65f8eddb0e8c0e588221 101621 contrib/games optional 
reminiscence_0.2.1.orig.tar.bz2
 fcbd3b39f81bb257f058fa38fc3af653 4423 contrib/games optional 
reminiscence_0.2.1-1.debian.tar.gz
 0d6d622eb8a75e6e555057dc88afccaf 127062 contrib/games optional 
reminiscence_0.2.1-1_amd64.deb

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

iQIcBAEBCAAGBQJNgiU/AAoJEOQbTFV/DYC+UyIP/2sIfW20I816xQl4nR+QZbk8
4+yOr3CN+f4LduJnxgsZwWyybiuOjPA0na2jbo3q1FmN7uUytf1uA+tpvJ4/q7xE
fHQy1wD3q47CTdOld7El+LZA2XeWfeUjEOHtjifdHGwFefcObc+um5cI9Y3DrUGH
x1utS30Y8dXRTFtUOFPOALyuVo0YfxaQpzZLOTm6wvv9v4Vvz2/iNGGm8c33BL20
VyXAlQfue/7SoIMl1H6jf5OIqVPktSFWj4MBu3CktqUq98NcxHQT3p7uSlFR95oJ
dfD9E7828oTlLspdP4sDmzKUm/IX+XXfmAT52a506yIQ9xO6Vm4qxq8D28U67yu8
zlX6FJuX+Rgorx+aCrwOz8NOgxFJxIZOrxbDXCaf73AjtLx3t+Jn8BuW3125hEoe
YnGXF2wopVSXD0wGVOACZ+Dl3+eG5cZXi9n0a4EjohjKLT0V6ocQ8MEaZIFPbbYn
UUs+wRD7lCQcvoCksBGmFn2mL4Z6/ZQD268lOOBuCWmvOPCw8ADAYsawxBlPFvR9
zMW1rja2isUFRH+13uMNbbdHe76RLGkaoknqR8sWNRVt8W0YRuKX2FdYvGe4lBsj
hswhAPlmYJt9NHGin1QcD3rTwn5b9uhM14klGfnPb9iG4iUW/B0URFiQvf0jUMbG
dzvpD7eN6dJz22EBIP8Q
=M1kt
-END PGP SIGNATURE-


Accepted:
reminiscence_0.2.1-1.debian.tar.gz
  to contrib/r/reminiscence/reminiscence_0.2.1-1.debian.tar.gz
reminiscence_0.2.1-1.dsc
  to contrib/r/reminiscence/reminiscence_0.2.1-1.dsc
reminiscence_0.2.1-1_amd64.deb
  to contrib/r/reminiscence/reminiscence_0.2.1-1_amd64.deb
reminiscence_0.2.1.orig.tar.bz2
  to contrib/r/reminiscence/reminiscence_0.2.1.orig.tar.bz2


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



Accepted mod-vhost-ldap 2.0.6-1 (source amd64)

2011-03-17 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 16:17:11 +0100
Source: mod-vhost-ldap
Binary: libapache2-mod-vhost-ldap
Architecture: source amd64
Version: 2.0.6-1
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 libapache2-mod-vhost-ldap - Apache 2 module for Virtual Hosting from LDAP
Closes: 589461
Changes: 
 mod-vhost-ldap (2.0.6-1) unstable; urgency=low
 .
   * New upstream release
 + Fix wildcard search (properly escape * - \\*)
 + Create new configuration option to disable wildcard search
 + Fix cgi-bin processing (Courtesy of Anders Kaseorg) (Closes: #589461)
Checksums-Sha1: 
 6f89f8185b4e60b79cef7d40185538e3ebe6d02c 1093 mod-vhost-ldap_2.0.6-1.dsc
 095e8007f72d48d433c45352a24a33e942a2ba6a 10325 mod-vhost-ldap_2.0.6.orig.tar.gz
 8cbdb15d6d123105bac071a29ba30a4cf7b6f23d 5112 
mod-vhost-ldap_2.0.6-1.debian.tar.gz
 ae1186bfbc55aa28389b43df7c46cb821de7e2c3 14138 
libapache2-mod-vhost-ldap_2.0.6-1_amd64.deb
Checksums-Sha256: 
 f4090f0f6057b3516d65b4d6dd56972558042382294d3f7197219a785735e389 1093 
mod-vhost-ldap_2.0.6-1.dsc
 9bb0582586323c62b32abc2ad735387b0f4e1362848780b45b195dca9c05daef 10325 
mod-vhost-ldap_2.0.6.orig.tar.gz
 ee7883c06976c4b85b392f16ad43b7d7927703f21e699088576d9e3a0e0e644f 5112 
mod-vhost-ldap_2.0.6-1.debian.tar.gz
 0f95bacd2f00c986afd5c632106d26fa1f2fbf23c9b70bc57de246a00ecbf8ff 14138 
libapache2-mod-vhost-ldap_2.0.6-1_amd64.deb
Files: 
 2c7554a7883f0e1e0c0a472f5f2b0e1b 1093 web optional mod-vhost-ldap_2.0.6-1.dsc
 33e496060f7ce5f4b3d5aae090ae738f 10325 web optional 
mod-vhost-ldap_2.0.6.orig.tar.gz
 a23b155cbbdbe65a721730d7532b14f2 5112 web optional 
mod-vhost-ldap_2.0.6-1.debian.tar.gz
 e0a66e3b8b9b0a0a16e1583046ca84cc 14138 web optional 
libapache2-mod-vhost-ldap_2.0.6-1_amd64.deb

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

iEYEARECAAYFAk2CLE4ACgkQ9OZqfMIN8nPwawCgnJQu211hCLZIlykioVM+DRpO
33cAn0R+ZEQrHbB3iAt1Wttk59JJAbXR
=6I5X
-END PGP SIGNATURE-


Accepted:
libapache2-mod-vhost-ldap_2.0.6-1_amd64.deb
  to main/m/mod-vhost-ldap/libapache2-mod-vhost-ldap_2.0.6-1_amd64.deb
mod-vhost-ldap_2.0.6-1.debian.tar.gz
  to main/m/mod-vhost-ldap/mod-vhost-ldap_2.0.6-1.debian.tar.gz
mod-vhost-ldap_2.0.6-1.dsc
  to main/m/mod-vhost-ldap/mod-vhost-ldap_2.0.6-1.dsc
mod-vhost-ldap_2.0.6.orig.tar.gz
  to main/m/mod-vhost-ldap/mod-vhost-ldap_2.0.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/e1q0fhz-0002cn...@franck.debian.org



Accepted powertop 1.97-2 (source amd64)

2011-03-17 Thread Patrick Winnertz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 16:24:40 +0100
Source: powertop
Binary: powertop
Architecture: source amd64
Version: 1.97-2
Distribution: unstable
Urgency: low
Maintainer: Patrick Winnertz win...@debian.org
Changed-By: Patrick Winnertz win...@debian.org
Description: 
 powertop   - Linux tool to find out what is using power on a laptop
Changes: 
 powertop (1.97-2) unstable; urgency=low
 .
   * Fix a build failure on ia64
   * Add a return(0) at the end of csstoh.c to
 as sparc seems to defaults to exit code 3
Checksums-Sha1: 
 7732ad1a1dad551b9a9df69ff50ae14932637975 1138 powertop_1.97-2.dsc
 64b2812f81343375ad8fd0c7f8956a6dd7e3b962 5565 powertop_1.97-2.debian.tar.gz
 c27870b15a1aa4b765e43a84ab5ef40a85fa289e 129384 powertop_1.97-2_amd64.deb
Checksums-Sha256: 
 a425ff69428bc6d9d182996290a1161d9e1feb63d4384a1c9457f7d60b5e298e 1138 
powertop_1.97-2.dsc
 75484dedea6291dd0d03b2c06d20a3ca4f9d4df37ca3089b89c19a843d60cd51 5565 
powertop_1.97-2.debian.tar.gz
 b45bb9edc936c658bdb72303d0d49397c859d15aa6bcca9297d1c04abd4581a1 129384 
powertop_1.97-2_amd64.deb
Files: 
 2ae8af68cebfe17c150b5f6210c34305 1138 utils optional powertop_1.97-2.dsc
 3b65480a5671b3664f66b9210cc8b25f 5565 utils optional 
powertop_1.97-2.debian.tar.gz
 0b1d6d570696a908c46244567b685436 129384 utils optional 
powertop_1.97-2_amd64.deb

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

iEYEARECAAYFAk2CKZUACgkQzgm26bkTFDoK7wCfZFglrOGM0lL6/k2X+0lgl1MN
f9wAn3UElylCkjrkOTBBag1Nny/mCYaK
=YCu4
-END PGP SIGNATURE-


Accepted:
powertop_1.97-2.debian.tar.gz
  to main/p/powertop/powertop_1.97-2.debian.tar.gz
powertop_1.97-2.dsc
  to main/p/powertop/powertop_1.97-2.dsc
powertop_1.97-2_amd64.deb
  to main/p/powertop/powertop_1.97-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/e1q0fj1-0002mq...@franck.debian.org



Accepted wxsqlite3 2.1.0-2 (source i386 all)

2011-03-17 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 15:33:34 +0100
Source: wxsqlite3
Binary: libwxsqlite3-2.8-0 libwxsqlite3-2.8-dev wxsqlite3-doc wxsqlite3-2.8-dbg
Architecture: source i386 all
Version: 2.1.0-2
Distribution: unstable
Urgency: low
Maintainer: Alessio Treglia ales...@debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 libwxsqlite3-2.8-0 - SQLite3 C++ wrapper for use in programs based on the 
wxWidgets
 libwxsqlite3-2.8-dev - Development files for wxSQLite3
 wxsqlite3-2.8-dbg - Debugging symbols for wxSQLite3 2.8
 wxsqlite3-doc - Documentation files for wxSQLite3
Changes: 
 wxsqlite3 (2.1.0-2) unstable; urgency=low
 .
   * Fix FTBFS on most architectures.
Checksums-Sha1: 
 c7887079e1ba247b0397baaa9c9b8a6770b9df75 1325 wxsqlite3_2.1.0-2.dsc
 3f0edcd4a594cf434dc9afaa7bc2344a517167a5 6392 wxsqlite3_2.1.0-2.debian.tar.gz
 524a8de1483cf339f986a52cf5b5b8c97194110a 61040 
libwxsqlite3-2.8-0_2.1.0-2_i386.deb
 0b8e65c2591e9d5b312bfea084e6c19278e749f8 35794 
libwxsqlite3-2.8-dev_2.1.0-2_all.deb
 012afe3c1704437da4d7cac1484f63499f4cef44 158210 wxsqlite3-doc_2.1.0-2_all.deb
 ea22d40c9b49547d23c23ab870f2baa9d604a72b 155256 
wxsqlite3-2.8-dbg_2.1.0-2_i386.deb
Checksums-Sha256: 
 5eb4ddb7dba6b92c33b50c6eee3a1f862c6b7768b114dc903a53a7368e884c0a 1325 
wxsqlite3_2.1.0-2.dsc
 af25f7a7709b317ec0c531cee6d4937157d4de298cd494fd9c8efcf746aab6de 6392 
wxsqlite3_2.1.0-2.debian.tar.gz
 b752fca428e6de35e1d32b714f488ce0d1d0b732cd2e66864c28838424055ac8 61040 
libwxsqlite3-2.8-0_2.1.0-2_i386.deb
 7dffc02f78ec4cf41dd0a44c28ff170f1cbddbcfc829c5f48fda5eb8259fef0d 35794 
libwxsqlite3-2.8-dev_2.1.0-2_all.deb
 66b3cd66c693c5583d17393439c0dff22414654315270c9ce708d844ae6d855c 158210 
wxsqlite3-doc_2.1.0-2_all.deb
 309c8b908ecd1c7f7dc394fd27a603f165ce5a7aa8553fd990b8b41786c3aa3b 155256 
wxsqlite3-2.8-dbg_2.1.0-2_i386.deb
Files: 
 4c6ff53de7cffad7833a6db2f44a9456 1325 libs optional wxsqlite3_2.1.0-2.dsc
 6e4036975682c47e0b5228ba6f1bc1f3 6392 libs optional 
wxsqlite3_2.1.0-2.debian.tar.gz
 b9ccb6dda84431f6e42fc7905b915a29 61040 libs optional 
libwxsqlite3-2.8-0_2.1.0-2_i386.deb
 d2ef3ba787926603447b92d0ae93220b 35794 libdevel optional 
libwxsqlite3-2.8-dev_2.1.0-2_all.deb
 9b5809e18c3a8e0cfd96f74391197532 158210 doc optional 
wxsqlite3-doc_2.1.0-2_all.deb
 03f50d172f5eb6749b358ac49a7259ee 155256 debug extra 
wxsqlite3-2.8-dbg_2.1.0-2_i386.deb

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

iEYEARECAAYFAk2CLVIACgkQRdSMfNz8P9AamwCffGI7tHI/30rlYkF9fSl/ipoR
rmAAnRgBbABRa3rrW9pAEsOtMv94onuT
=rqiE
-END PGP SIGNATURE-


Accepted:
libwxsqlite3-2.8-0_2.1.0-2_i386.deb
  to main/w/wxsqlite3/libwxsqlite3-2.8-0_2.1.0-2_i386.deb
libwxsqlite3-2.8-dev_2.1.0-2_all.deb
  to main/w/wxsqlite3/libwxsqlite3-2.8-dev_2.1.0-2_all.deb
wxsqlite3-2.8-dbg_2.1.0-2_i386.deb
  to main/w/wxsqlite3/wxsqlite3-2.8-dbg_2.1.0-2_i386.deb
wxsqlite3-doc_2.1.0-2_all.deb
  to main/w/wxsqlite3/wxsqlite3-doc_2.1.0-2_all.deb
wxsqlite3_2.1.0-2.debian.tar.gz
  to main/w/wxsqlite3/wxsqlite3_2.1.0-2.debian.tar.gz
wxsqlite3_2.1.0-2.dsc
  to main/w/wxsqlite3/wxsqlite3_2.1.0-2.dsc


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



Accepted pyexiv2 0.3.0-4 (source all amd64)

2011-03-17 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 17:01:37 +0100
Source: pyexiv2
Binary: python-pyexiv2 python-pyexiv2-doc
Architecture: source all amd64
Version: 0.3.0-4
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 python-pyexiv2 - Python binding to Exiv2
 python-pyexiv2-doc - Documentation for Python binding to Exiv2
Closes: 618683
Changes: 
 pyexiv2 (0.3.0-4) unstable; urgency=low
 .
   * Relax Breaks for phatch as support for current pyexiv2 has been backported
 (Closes: #618683).
Checksums-Sha1: 
 a798c1ccbbc3b3cd903afadfaa6539ac3cd8ef4c 2034 pyexiv2_0.3.0-4.dsc
 f4fbdae2a588b6518568484c13c983c2a2240340 5075 pyexiv2_0.3.0-4.debian.tar.gz
 7092cc4d75bc12c7cf8c43c5cee06050aef6559b 93498 
python-pyexiv2-doc_0.3.0-4_all.deb
 dd30d6250e33c06c4e036b920bf524f7e3ce77a4 108688 
python-pyexiv2_0.3.0-4_amd64.deb
Checksums-Sha256: 
 48a43389a00e9a0602aedbf19b54a5a8016ace4c4de6e657a333ceef314e0b4e 2034 
pyexiv2_0.3.0-4.dsc
 7032f6b8a99727580596da62612782fe3db9191c20be3ba97214539f6434e5ef 5075 
pyexiv2_0.3.0-4.debian.tar.gz
 7b67f7e51fe05a004b1d7f1821eebfb5fa07dc568fd8caf6c059462cbf2af8f4 93498 
python-pyexiv2-doc_0.3.0-4_all.deb
 d1972a9d15722f007d2a8f8bdef9fff822dfed4260893a2fd128d31975121270 108688 
python-pyexiv2_0.3.0-4_amd64.deb
Files: 
 b36a6967fc80d66bd800b01579bda2a1 2034 python optional pyexiv2_0.3.0-4.dsc
 eee975ffe4125435732bb77560f54525 5075 python optional 
pyexiv2_0.3.0-4.debian.tar.gz
 350ad2cd64fa58b645b975bd0d669847 93498 doc optional 
python-pyexiv2-doc_0.3.0-4_all.deb
 48d836bbb2596ce1984bca60f1af48dc 108688 python optional 
python-pyexiv2_0.3.0-4_amd64.deb

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

iQIcBAEBCAAGBQJNgjFbAAoJEGo39bHX+xdNYf8P/jHnaZU+A+EiEuUyf+HPfHMM
3oN0WWxQdKioL1C56VuQ8ny+MtY0YuVcb1NT3wSV9MyB//Kg5qxdmm8frbK19Ft2
KfrmOse344JAxN46bo7kyDVDUObtvVo+PQorZp4LP5J/PGLfFg6I4MbfWz1f+lWR
BJP8B+u4Oib8/I5F8j160A9SVRPj+ZInmqHfT1LNfxrvJHQBUTNEJGDKzU9oO+XN
hVuNg405duagXSKMc543UWx5A8FN/gOKnXSEikZsTfc/qWNsWBGya7MLxY8ZeN8V
8KdkrOSBnDoibLpC3nJaoMiJJomIrEtfzMNjpigDFsRplhphnYdsy83L5272Y4DT
TSvs+visAk8eutQQkjYrcNR4FgUkSq5mf8pr9ZzzNMr+N9aMhQY9FIToa0x8kNWM
8UrG8sDoN7WoU3xGNlcxk8404rhNMgC5yipTIGQfUWPQaPA4FWiBRqvyqOxQSbSt
ITHIYYpIE6BrGMjivJdaUcAdC2dwC6FNcn4h+qt3rCOVFlNdPwLr31/YqCSXdWDc
aVCjA5jZ+NngEdmjlwXdOs+wVAda4TugqCRr50IM5aJiLZ6bTfUYAEExG5SivtNb
llE3/LRDXqaCqNe+XLV9/ZkCB4sUmxBDPKG4te5l2XRZaH9GHqeyqdG7Efqk8G1s
5sVHeTLoHWbxuCmVKGBo
=ZUfs
-END PGP SIGNATURE-


Accepted:
pyexiv2_0.3.0-4.debian.tar.gz
  to main/p/pyexiv2/pyexiv2_0.3.0-4.debian.tar.gz
pyexiv2_0.3.0-4.dsc
  to main/p/pyexiv2/pyexiv2_0.3.0-4.dsc
python-pyexiv2-doc_0.3.0-4_all.deb
  to main/p/pyexiv2/python-pyexiv2-doc_0.3.0-4_all.deb
python-pyexiv2_0.3.0-4_amd64.deb
  to main/p/pyexiv2/python-pyexiv2_0.3.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/e1q0ftr-0003sy...@franck.debian.org



Accepted exuberant-ctags 1:5.9~svn20110310-1 (source i386)

2011-03-17 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 16:47:08 +
Source: exuberant-ctags
Binary: exuberant-ctags
Architecture: source i386
Version: 1:5.9~svn20110310-1
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 exuberant-ctags - build tag file indexes of source code definitions
Changes: 
 exuberant-ctags (1:5.9~svn20110310-1) unstable; urgency=low
 .
   * New upstream release snapshot (thanks, Daniel Hahler; LP: #732860).
 - Fix crash with comments inside strings in OCaml (LP: #554898).
   * Drop accepted patches:
 - debian/patches/make-match-loop.patch
 - debian/patches/php-ignore-keywords-in-comments.patch
   * For Python, disable -i so imports are not tagged by default (thanks,
 Barry Warsaw; LP: #618979).
   * Upstream uses AC_SYS_LARGEFILE now, so drop explicit
 -D_FILE_OFFSET_BITS=64 in debian/rules.
   * Fix infinite loop parsing vim commands, when a non-alphanumeric
 character other than whitespace or '-' is found before the first
 alphanumeric character after 'command' (LP: #736367).
Checksums-Sha1: 
 23261d2069adb82d1f29be47e8acb4acad55deca 1806 
exuberant-ctags_5.9~svn20110310-1.dsc
 8d2a9214b26e2b9046f9264ade2f2a528eaf6e23 497076 
exuberant-ctags_5.9~svn20110310.orig.tar.gz
 19add7278a1529a65c80d3810d0f38a232804bc3 6881 
exuberant-ctags_5.9~svn20110310-1.debian.tar.gz
 c6e7117d656725748432b8a07434f8f6ac8a2a33 137136 
exuberant-ctags_5.9~svn20110310-1_i386.deb
Checksums-Sha256: 
 66e630b772cafef290b00874396d8fd26f01360f3ffaa562dac7a0a0e7422158 1806 
exuberant-ctags_5.9~svn20110310-1.dsc
 7348e21502454a1331c58d5eec5c18a546395acd5628599a7a55dc77b48ffd2f 497076 
exuberant-ctags_5.9~svn20110310.orig.tar.gz
 1d1ad1a8d612f45efef4b01ce1dc3b59302ffd7fcb6e982e328e64285bf38645 6881 
exuberant-ctags_5.9~svn20110310-1.debian.tar.gz
 86f63949988fb63bb7fc77104b107364d39e9397ec107dda4c5cd0768bd05cd5 137136 
exuberant-ctags_5.9~svn20110310-1_i386.deb
Files: 
 b51d6a6ebbcb91772de1f10ba32c42cb 1806 editors optional 
exuberant-ctags_5.9~svn20110310-1.dsc
 d029eb7f61bf18e70fee603019ae829e 497076 editors optional 
exuberant-ctags_5.9~svn20110310.orig.tar.gz
 b46a418faae8c86b9f2cac4aa795fa1b 6881 editors optional 
exuberant-ctags_5.9~svn20110310-1.debian.tar.gz
 c78f8e282e636626cc73e2f1e0e22b6f 137136 editors optional 
exuberant-ctags_5.9~svn20110310-1_i386.deb

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

iQIVAwUBTYI7kzk1h9l9hlALAQhnHxAAp0d2nnfbtU/I+xN54tNVX8UbnH66rGQs
kqsNajTVP+yfQYRIk/PcdEASq6hj3zjeRHKJwXtwVu2OrEZ0bmpplFoOCmfnqFAp
Uf/WM+DSp5DK95j0OcqSg7lx/l4GG7ZMWRrbYwcbMsKNmtXNt9ptPadWmQKqXxeB
SEq2tnv7NJ58QwTnCQbZwGrOboK0wzlHqyBXrfGlv/w5CYV4UG28RkKzzky/307B
QQfsuR35ydEZ8vEmRN8LF+jbxRSbEJwZHwDePxJBv7rITcUu3fkN7tKmwAoYeH9I
8xpucwjQIXWyyfgWcRh8jYhacd05pqIRGyzboB00TLLgPvFmG5Uq/e7INrYZYDMc
Zm8+aQBZbzi/rFs7RHLGFb7c+mQvRa5xaRdAEZMPkMtrSbCm/p3G6WRR1Kjg0Z08
7o0rD1XpwQUIPZQ3uPWlDjJdDLzgwpSWlC2HGFJ6uMVSK0zmulU+K6XDZqJCkqcm
+gWEkxy1THJEyRMRK0mZIsF45ydXIMvgaj6nVREntV5/wQjNgV++J/nxT3unrxKI
2OKY0qqC/8vecpQ33M2TLWSATgn2QBAI2kaOu2jx7uuYQfzwPgHHiAGUIXGHmmbS
0auWSOk/PD6/2SIWLV4yi9nb4dBlsayOCTeN6JR+IQOqIWeg4tmYGvvYilcVD+Bs
9I4VVDbl5sQ=
=Qwp4
-END PGP SIGNATURE-


Accepted:
exuberant-ctags_5.9~svn20110310-1.debian.tar.gz
  to main/e/exuberant-ctags/exuberant-ctags_5.9~svn20110310-1.debian.tar.gz
exuberant-ctags_5.9~svn20110310-1.dsc
  to main/e/exuberant-ctags/exuberant-ctags_5.9~svn20110310-1.dsc
exuberant-ctags_5.9~svn20110310-1_i386.deb
  to main/e/exuberant-ctags/exuberant-ctags_5.9~svn20110310-1_i386.deb
exuberant-ctags_5.9~svn20110310.orig.tar.gz
  to main/e/exuberant-ctags/exuberant-ctags_5.9~svn20110310.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/e1q0gan-cf...@franck.debian.org



Accepted ekg2 1:0.4~pre+20110317.1-1 (source all amd64)

2011-03-17 Thread Marcin Owsiany
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 16:36:45 +
Source: ekg2
Binary: ekg2-core ekg2 ekg2-api-docs ekg2-dbg ekg2-gnupg ekg2-jabber 
ekg2-scripting-python ekg2-scripting-perl ekg2-ui-gtk ekg2-ui-ncurses
Architecture: source amd64 all
Version: 1:0.4~pre+20110317.1-1
Distribution: experimental
Urgency: low
Maintainer: Marcin Owsiany porri...@debian.org
Changed-By: Marcin Owsiany porri...@debian.org
Description: 
 ekg2   - instant messenger and IRC client for UNIX systems
 ekg2-api-docs - instant messenger and IRC client for UNIX systems - API 
documenta
 ekg2-core  - instant messenger and IRC client for UNIX systems - main program
 ekg2-dbg   - instant messenger and IRC client for UNIX systems - debugging sym
 ekg2-gnupg - instant messenger and IRC client for UNIX systems - GnuPG
 ekg2-jabber - instant messenger and IRC client for UNIX systems - Jabber/XMPP
 ekg2-scripting-perl - instant messenger and IRC client for UNIX systems - Perl 
scriptin
 ekg2-scripting-python - instant messenger and IRC client for UNIX systems - 
Python script
 ekg2-ui-gtk - instant messenger and IRC client for UNIX systems - GTK+ interfac
 ekg2-ui-ncurses - instant messenger and IRC client for UNIX systems - ncurses 
inter
Closes: 618321
Changes: 
 ekg2 (1:0.4~pre+20110317.1-1) experimental; urgency=low
 .
   * Merge a new upstream snapshot.
 - includes complete rewrite of the build system as well as significant
   refactoring of internal infrastructure code. As a result a few plugins
   are not being built, at least for now. See debian/NEWS for details.
   * [d64fd80] Ignore debian/patches.
   * [2e21b07] Change the build to work according to current Debian best
 practice, i.e. full autoreconf and clean on every build.
   * [ec2938d] Do not include auto-refreshed po files in debian patch.
   * [32d2beb] Adjust configure arguments to current availability.
   * [c374e0d] Disabled httprc_xajax, following upstream.
   * [7f2228f] Disabled ioctld, following upstream.
   * [eabdf3b] Disabled pcm, following upstream.
   * [b110cf8] Disabled remote, following upstream. This also happens to fix a
 circular dependency. (Closes: #618321)
   * [de55d81] Disabled rc, following upstream.
   * [00d454e] Disabled rot13, following upstream.
   * [b50f35b] Disabled xmsg, following upstream.
   * [a778d58] Disabled xosd, following upstream.
   * [1097b7a] Install nntp and rss, not feed.
   * [e97aee7] Call dh with target as first arg.
   * [9a3b684] Trimmed the TODO list.
   * [97cc88f] Documented plugin split/removal.
   * [df853be] Updated developer information.
   * [062076c] Added Vcs-* headers.
   * [1b516de] Added libglib2.0-dev to build-deps.
   * [7f5b84a] Do install the .la files.
   * [be2ad99] Fixed version in NEWS file.
   * [4f6bdbc] Build depend on autopoint or old gettext package.
   * [f74ae68] Removed build-dependency and references to quilt.
   * [f69076c] Fixed a spelling error.
   * [de5c5d3] Use recommended NEWS format, no asterisks.
Checksums-Sha1: 
 af97396fc0748a6e16646276564d90b91c86de6d 2022 ekg2_0.4~pre+20110317.1-1.dsc
 b785ee07e99b8536e7f76019df275e63def1e9b1 1165789 
ekg2_0.4~pre+20110317.1.orig.tar.gz
 1e691b658625801061172ed2aabf13dbd72648b3 20574 
ekg2_0.4~pre+20110317.1-1.debian.tar.gz
 160fcd141373e44d18d9bdabbbd8753abb1b57d7 621386 
ekg2-core_0.4~pre+20110317.1-1_amd64.deb
 db5c64aae9573be35846821bc7fc422291600e00 1274 
ekg2_0.4~pre+20110317.1-1_amd64.deb
 9327b4df6aa0dbf8648b9ab6198d46ffc40eb5c6 2956310 
ekg2-api-docs_0.4~pre+20110317.1-1_all.deb
 e82369bfd23803eaae4c0f35bcbf14eb89bc3fe8 1466408 
ekg2-dbg_0.4~pre+20110317.1-1_amd64.deb
 49b2cd04e1e91d60495cdd6b4af0a45954a64800 11330 
ekg2-gnupg_0.4~pre+20110317.1-1_amd64.deb
 90eb4e20ddb98fa392fe18349563437bb70a766a 93668 
ekg2-jabber_0.4~pre+20110317.1-1_amd64.deb
 8baa04a8cdd01386122693cecfad3e9db7768b0f 24404 
ekg2-scripting-python_0.4~pre+20110317.1-1_amd64.deb
 c5b997bb5468afed0c930c8adad92b67092d 77484 
ekg2-scripting-perl_0.4~pre+20110317.1-1_amd64.deb
 af8a0812e02087fdc0fd6aedeb535a99aa2ae16e 86766 
ekg2-ui-gtk_0.4~pre+20110317.1-1_amd64.deb
 6eb10e3304cd49ff21d044365c82d79ed2d7f8a7 91154 
ekg2-ui-ncurses_0.4~pre+20110317.1-1_amd64.deb
Checksums-Sha256: 
 8f232c86e258d43d1e4b32318f973f653701a2b8e8d42e029919a465bbda6454 2022 
ekg2_0.4~pre+20110317.1-1.dsc
 23e1b2f7fc91a3bb2a9f24cdce2d633142d2e874389dc646437324c85b759b68 1165789 
ekg2_0.4~pre+20110317.1.orig.tar.gz
 71adb1c261ba9f767eba9e7eae7b8ed2f1ee5ebceb5b25477b8380c3c6b7b54d 20574 
ekg2_0.4~pre+20110317.1-1.debian.tar.gz
 51a168c2e3bef2a111bd0075deb1f03da1e6d9bba2df03874e76d988522e9ceb 621386 
ekg2-core_0.4~pre+20110317.1-1_amd64.deb
 7abb1358ac8851dfb1078000ec494b3fb3f9bb525615e012f71066f93384cd95 1274 
ekg2_0.4~pre+20110317.1-1_amd64.deb
 57721af292afcd26dccdad01117e8beeecf0a5bdcfc1c37b3625b7310196be8b 2956310 
ekg2-api-docs_0.4~pre+20110317.1-1_all.deb
 5b96dc14c1f9481881bd8d78894e1168a1fe6f8d89d720bd050397c734b368e8 

Accepted config-package-dev 4.12 (source all)

2011-03-17 Thread Anders Kaseorg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 05 Feb 2011 21:37:05 -0500
Source: config-package-dev
Binary: config-package-dev
Architecture: source all
Version: 4.12
Distribution: unstable
Urgency: low
Maintainer: Tim Abbott tabb...@mit.edu
Changed-By: Anders Kaseorg ande...@mit.edu
Description: 
 config-package-dev - CDBS modules for building configuration packages
Changes: 
 config-package-dev (4.12) unstable; urgency=low
 .
   [ Tim Abbott ]
   * Allow specifying DEB_TRANSFORM_SCRIPT_$package_$file in case you want
 multiple binary packages transforming the same file differently.
 (Thanks to Evan Broder for this patch).
   * Add a decode script for undoing the file to virtual package name
 transformation. (Thanks to Patrick Hurst for writing decode).
 .
   [ Anders Kaseorg ]
   * Fix a quoting bug that failed to disallow transformation of generated
 conffiles.  (Patch from Evan Broder.)
   * Remove DEB_UNDIVERT_VERSION_file and DEB_UNREMOVE_VERSION_file, and
 instead test for the undiverted file in the postinst.  (Patch from
 Evan Broder.)
   * Write the prerm and postrm maintainer script fragments in reverse
 order when DH_COMPAT ≥ 5, to match debhelper’s behavior.
   * Bump debhelper compatibility level to 6.
   * Bump Standards-Version to 3.9.1 (no changes required).
Checksums-Sha1: 
 848d24ea4f4ac23c7c80d0c6c4edb90c62c2a390 1497 config-package-dev_4.12.dsc
 4701329de34e3ff87cfc7c51193a0a887b0f310e 15384 config-package-dev_4.12.tar.gz
 7c3436eeecd54770f6de2d9a525cc4d877404904 19784 config-package-dev_4.12_all.deb
Checksums-Sha256: 
 472c991d0166e3dbc3ff940ff51e8d765c4ac61d35ab9f35a25b383658c5b805 1497 
config-package-dev_4.12.dsc
 2f206c7123cf9aa6aeefab426c2ed11de2b44d796f54e012a7f389b84226617f 15384 
config-package-dev_4.12.tar.gz
 42338298022cd1ff6bbe06809f7622f02d1839c13c8349b1b3d6f71137c6dfe5 19784 
config-package-dev_4.12_all.deb
Files: 
 ecae741aa8aa6c05bc147467278acdbe 1497 devel extra config-package-dev_4.12.dsc
 13cc9218f6d6a6b40fbb9b2316395156 15384 devel extra 
config-package-dev_4.12.tar.gz
 63fe4ecdee336966c6a9217704e76db0 19784 devel extra 
config-package-dev_4.12_all.deb

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

iQIcBAEBCAAGBQJNgklOAAoJEGSVn+mDjfGcH5cP/1MtbtglkYVfcvGkaT6u8QEy
HmuRp8BzjuecYHCN5READCYSci4Hx/4a0bryKXt2kGZNl/00BXgWooI+oItyoY4+
MiCRC2KQReJOUGSTH8pmX6Zaxt45fnp+R9JmhBOLxUdx3/aCX47E9z7YTsbxLVpy
AIXsJsOkHbOkJw5KBK/xPBChrg7ZgVUcNAfqVAov5EQlOb/PVKFyfAdEtH2i4lIX
gEsNcNPtKFvYecmFCeb6eEilIy1TuvNL3jBaarNvzHzNukHRWZMVneA4iz4+Sycp
EYjTI0xblnR3BE12csTuTqDJZ6K2AQ/Dsv68s1E/LhG0kEjEMO8EdWHBMWxwHjVm
CYDS3vxlrhEYxSaiZkrQJvhXOm/yQEDH+ZSMc+rrECnSs0H6PWVQ7rnnChJcee1E
dldZFUhHGeg9LQvprLJYL53jvrl9cgLZUEecY3jzwFsIUyV1LhtTwA/z4z68eczO
i7sl2ZyaWAEUwHbezsfNHColmdqAAyJB249MprY8ItqL6Quhc8r3iqnxyDaI6LjT
LmHbslj5fR1DmXUPI1lNZ+s5DDZWqy7CHxB2yM+l1SaM8UENQg0NonNzZvb2Flqk
3kv9xnRsYv+w/CBrCZJd2Jq+DJ6u8fYtSub65efH8QD5pV5yUtjibnTdAl3BhVA+
9sdOGV4rzoLDx8DG49I2
=DwgA
-END PGP SIGNATURE-


Accepted:
config-package-dev_4.12.dsc
  to main/c/config-package-dev/config-package-dev_4.12.dsc
config-package-dev_4.12.tar.gz
  to main/c/config-package-dev/config-package-dev_4.12.tar.gz
config-package-dev_4.12_all.deb
  to main/c/config-package-dev/config-package-dev_4.12_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/e1q0hxb-0006ug...@franck.debian.org



Accepted liborlite-perl 1.48-2 (source all)

2011-03-17 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 17 Mar 2011 18:40:09 +0100
Source: liborlite-perl
Binary: liborlite-perl
Architecture: all source
Version: 1.48-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Description: 
 liborlite-perl - lightweight SQLite-specific ORM
Changes: 
 liborlite-perl (1.48-2) unstable; urgency=low
 .
   * Make dependency on libfile-path-perl versioned again. Otherwise we get the
 version provided by perl which is too old.
Checksums-Sha1: 
 c6a8026f3c78b9b125704af1b890fd4199dd5b39 2505 liborlite-perl_1.48-2.dsc
 92b75bfef5bfbfad594384c034305ed88f3aabcb 4355 
liborlite-perl_1.48-2.debian.tar.gz
 db6155c201e19f8da161af43fa96b41449bbe35f 36354 liborlite-perl_1.48-2_all.deb
Checksums-Sha256: 
 81e3a908a257ee02d7b970e4fa1cf51301f713711da9cfc4b963f48c36c40f9f 2505 
liborlite-perl_1.48-2.dsc
 a79e57596a5858ee312835b54e0b1c0a10a9cc0eadea5bc8b4b8e52b21ed3646 4355 
liborlite-perl_1.48-2.debian.tar.gz
 c1ac5bb8734d32383ee3d12887856a5d94c1593f9fd24656195481d745be74a6 36354 
liborlite-perl_1.48-2_all.deb
Files: 
 09ff7f13d90632f70733138a7a1be6cc 2505 perl optional liborlite-perl_1.48-2.dsc
 d04ef0a28adb61fa730f84f87d93e742 4355 perl optional 
liborlite-perl_1.48-2.debian.tar.gz
 10468c378749386c464a9bdab836d08a 36354 perl optional 
liborlite-perl_1.48-2_all.deb

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

iQIcBAEBCgAGBQJNgkl1AAoJEIATJTTdNH3IxSgP/2GsTsdXpRw/m/pOHduEVFns
gG14NhewjAp1laK9NhBntUaKL3ExBt1+LqyfDQ69xVFexFVkHumuQF8YMGpWtknv
uIhnrHqIR89ZpBjGCpbseUndvRy6u9KfJcWbLWMgLHz+r2vJnHK7y12gjKGnEV5z
uCrIjfmiYdNsO4oLcpKmyNAjZZh3jA0k9RZpjRScHyNe697fsLLWSlvOsv//KtgA
Bfl2dA6LfThIIIpcD1eehuUFexVXrARcuM/2wDgqDn744vGqpLVLPFKK1zWsC1oA
Huz5BZdCRweGg7AOJj1D6Eph/j8pG0EiowHbXwwhBWYQJzPARcGJvWt5kt+rrxae
d4dyTef+F5zsrviYAHC4rxbrgb7BariHtx/TIsT0S0Po6C2QheefpfsYQqWfgC7e
0S12Q4XQpXysvYAnANkQKZXKht+4xb2D2k1jvjhLuMhhrA1qK2tpeGyYtMdpKuN/
4mAVUv24gmFtJ8SuCLzKu7rM3RG6b3EbOoUxUFS52T63dzCCHZKJ47RDGhlwg2qJ
K5PU/dfQfio5io5PvVl7C41USJGaHdFGWlG1cdthTtGJH+D96FVrUvD25kBrz78H
xQ4luug0v3a0CZ5PI6fvJkQyDPJVgvZb02UvfwKmXRFRrXtYlK4aLdRQnK5wZdT4
tOlW2U9e+MCKTjD50nOZ
=AMDF
-END PGP SIGNATURE-


Accepted:
liborlite-perl_1.48-2.debian.tar.gz
  to main/libo/liborlite-perl/liborlite-perl_1.48-2.debian.tar.gz
liborlite-perl_1.48-2.dsc
  to main/libo/liborlite-perl/liborlite-perl_1.48-2.dsc
liborlite-perl_1.48-2_all.deb
  to main/libo/liborlite-perl/liborlite-perl_1.48-2_all.deb


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



Accepted libpadre-plugin-css-perl 0.14-2 (source all)

2011-03-17 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 17 Mar 2011 18:31:53 +0100
Source: libpadre-plugin-css-perl
Binary: libpadre-plugin-css-perl
Architecture: all source
Version: 0.14-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Closes: 609232
Description: 
 libpadre-plugin-css-perl - Padre plugin for CSS Validation and minifying
Changes: 
 libpadre-plugin-css-perl (0.14-2) unstable; urgency=low
 .
   * Team upload.
   * debian/rules: Set $HOME to a temporary directory when running tests.
 Closes: #609232
   * Use source format 3.0 (quilt).
Checksums-Sha1: 
 dd729deb52d3b1b5d6459de9abb343dbeaae2378 2266 
libpadre-plugin-css-perl_0.14-2.dsc
 701959998b3e286e0d46c9f4964e0ec8b5521c95 2395 
libpadre-plugin-css-perl_0.14-2.debian.tar.gz
 43a610314b76c3509c3bff5e94affa4e4ad07a57 19018 
libpadre-plugin-css-perl_0.14-2_all.deb
Checksums-Sha256: 
 c3654b5bb045e580b3b40373d2164aa03948f6a90013424c0b4478ccd127eed6 2266 
libpadre-plugin-css-perl_0.14-2.dsc
 f32d622e4db5a7dc06cfd9e9873637bc96dd1a89606d33a6eb8b5de3c5a071b7 2395 
libpadre-plugin-css-perl_0.14-2.debian.tar.gz
 67f657d6bea33dbf9fe622909bb4f3b19e17ad7e22b52db6c158143ca849f27c 19018 
libpadre-plugin-css-perl_0.14-2_all.deb
Files: 
 43c8841bf9c03168aaf250280cb45fe5 2266 perl optional 
libpadre-plugin-css-perl_0.14-2.dsc
 6c420f1f136ab23244a541867adfd736 2395 perl optional 
libpadre-plugin-css-perl_0.14-2.debian.tar.gz
 25449ecda00a73dfebc74c4022c8ea27 19018 perl optional 
libpadre-plugin-css-perl_0.14-2_all.deb

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

iQIcBAEBCgAGBQJNgkx8AAoJEIATJTTdNH3INdkQAIhx1Z7IKtBgnO6Z8fwNugdM
5lpLxV6hMHF1p3JrrmRPVty0pdGsrwpZe5TUbljce5sLvg1ByhVHqUsv8ukd2mV2
VxUztHn/8RMu6CRwgqUT+djGAcAGdicU+mQE6aUyMzsIHLGAJcSNrMzWM1d+ORlr
rnMsFT1w3PL63F21ADEzTQymm8OiXVXbETxVem779XIg3w+012Q2BjxhpKUsTHV2
zrCRq8YeRv3SMDRNw5UB2FY5cRQdt7/5pc4dZDDU+po44aPTYULFfG5A8SWD2va9
xoTGV1cpDKPyKW7AhVcUhe6Ya0tmei++ZJHbU+6czi1t3HAAQyHZPgRDHEA6bI1b
q34SHpyU2sX/Zk7HQyZe3Qo5AYPF1RCQ88WlWi/QX4jYm8hBKMi+PZ92QNnX0jXL
mLDHIqCqVaiSmhULCWCwV2K6D8sLuT3ppZ/h+SDulGdKCGL1QKOndYYV3y9Gikkw
QlQV+A2c1hNss6yPpDkBw2WCttcb5Qwv54zA/obCUlZ6JjGEhXTrWpcmcnons9CF
6z7iQTGbm6OabGeb5SllXlnW1eKTeDhdPgfA5xfJG6ZJNV6u8lB7/CF1MxQ60ZkS
FIojpddy09YKabs+IrnneX+3MMwDLcf32dW4y7eU3uMnHa4bWh0J1oJvRryv+Fru
7WoDA8kJcRXO1dfw2l1Z
=drdI
-END PGP SIGNATURE-


Accepted:
libpadre-plugin-css-perl_0.14-2.debian.tar.gz
  to 
main/libp/libpadre-plugin-css-perl/libpadre-plugin-css-perl_0.14-2.debian.tar.gz
libpadre-plugin-css-perl_0.14-2.dsc
  to main/libp/libpadre-plugin-css-perl/libpadre-plugin-css-perl_0.14-2.dsc
libpadre-plugin-css-perl_0.14-2_all.deb
  to main/libp/libpadre-plugin-css-perl/libpadre-plugin-css-perl_0.14-2_all.deb


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



Accepted xosview 1.8.3+debian-22 (source amd64)

2011-03-17 Thread Kartik Mistry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 22:25:36 +0530
Source: xosview
Binary: xosview
Architecture: source amd64
Version: 1.8.3+debian-22
Distribution: unstable
Urgency: low
Maintainer: Kartik Mistry kar...@debian.org
Changed-By: Kartik Mistry kar...@debian.org
Description: 
 xosview- X based system monitor
Closes: 617696
Changes: 
 xosview (1.8.3+debian-22) unstable; urgency=low
 .
   * debian/patches/29_syspower_battery_support.diff:
 + Updated patch to include a fallback from energy-reporting batteries to
   charge-reporting ones, Thanks to Alexander Zangerl a...@debian.org for
   patch (Closes: #617696)
   * debian/control:
 + Updated Standards-Version to 3.9.1 (no changes needed)
   * debian/copyright:
 + Do not mention link to BSD in common-license
 + Updated for DEP-5 r173 format
Checksums-Sha1: 
 6c3ef85926db1558e791447a1f7ced3366fe9c7d 1135 xosview_1.8.3+debian-22.dsc
 750daad84e9283521015f854e6e4e9cd78d6d4b2 39379 
xosview_1.8.3+debian-22.debian.tar.gz
 aafe9f968516cbc27ec85ccbef2168c6135cad18 113316 
xosview_1.8.3+debian-22_amd64.deb
Checksums-Sha256: 
 f550d3c4e526c8e529d680de7576e4e88b3670609051a17c047c8f797f10cb53 1135 
xosview_1.8.3+debian-22.dsc
 ab79de74bc919123ce1e734671a580dd9cef32b04e041b2f30ac6a912e5c62b1 39379 
xosview_1.8.3+debian-22.debian.tar.gz
 38233f372c32cb5d810aeb3e1c4682db491fa7bb9ae7e11544b5ce0e6e824a5c 113316 
xosview_1.8.3+debian-22_amd64.deb
Files: 
 200b75a4f15b317bf440b32fd1d208e8 1135 utils optional 
xosview_1.8.3+debian-22.dsc
 73944b94eccc2ece9ef10bdd52578ff7 39379 utils optional 
xosview_1.8.3+debian-22.debian.tar.gz
 62eecafcd93a5086190e8e7326f5f340 113316 utils optional 
xosview_1.8.3+debian-22_amd64.deb

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

iEYEARECAAYFAk2CTawACgkQoRg/jtECjI3aXwCcCR8Tt24ItHKogaIvo4Z7RI8R
iJ0AnjrbRgKvjmuj1ncM/uFlLOASy2/2
=GPQ1
-END PGP SIGNATURE-


Accepted:
xosview_1.8.3+debian-22.debian.tar.gz
  to main/x/xosview/xosview_1.8.3+debian-22.debian.tar.gz
xosview_1.8.3+debian-22.dsc
  to main/x/xosview/xosview_1.8.3+debian-22.dsc
xosview_1.8.3+debian-22_amd64.deb
  to main/x/xosview/xosview_1.8.3+debian-22_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/e1q0hr4-ai...@franck.debian.org



Accepted libpadre-plugin-html-perl 0.13-3 (source all)

2011-03-17 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 17 Mar 2011 19:03:46 +0100
Source: libpadre-plugin-html-perl
Binary: libpadre-plugin-html-perl
Architecture: all source
Version: 0.13-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Closes: 609461
Description: 
 libpadre-plugin-html-perl - Padre plugin for HTML support
Changes: 
 libpadre-plugin-html-perl (0.13-3) unstable; urgency=low
 .
   * Team upload.
   * debian/rules: Set $HOME to a temporary directory when running tests.
 Closes: #609461
Checksums-Sha1: 
 44b31746189571fd6c3bcde40a4e174acab69c2f 2291 
libpadre-plugin-html-perl_0.13-3.dsc
 6567eefc25ca924352d19066bf65d06f7fb355a2 2184 
libpadre-plugin-html-perl_0.13-3.debian.tar.gz
 ec48f32ac96d376896f73b582d47fb0a7587af07 7378 
libpadre-plugin-html-perl_0.13-3_all.deb
Checksums-Sha256: 
 030f6fc07500202861be92573d88253f2ed6eee61ab6cb4eec44a40e37cee7a1 2291 
libpadre-plugin-html-perl_0.13-3.dsc
 b108bb2faed560b1586267353dbcfb52478e6ebb5c13712b8d540bc52bd283c2 2184 
libpadre-plugin-html-perl_0.13-3.debian.tar.gz
 4d271b54f29e4d5e8bab970731bb78a199b833bc351134671f1dca47044df49a 7378 
libpadre-plugin-html-perl_0.13-3_all.deb
Files: 
 f6f90620a1e82501da41ddd8ee74498c 2291 perl optional 
libpadre-plugin-html-perl_0.13-3.dsc
 c58341ed51c93fc0291983d071265b18 2184 perl optional 
libpadre-plugin-html-perl_0.13-3.debian.tar.gz
 b5b9addd249166ac92892a4d85431e74 7378 perl optional 
libpadre-plugin-html-perl_0.13-3_all.deb

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

iQIcBAEBCgAGBQJNglAkAAoJEIATJTTdNH3Ijw4QAKYEDZfHivUO90FPbLh4OkC7
F4snBSFhdZpq28WP1VhqjnICBdE4Sd36RTClBYmDTsPpz+Pgrqgg27qArit0WSaF
Q+jPXGYLMnBDOGmA6bfgAC7NRmlQgWwQLdV14jcjo8fYHRDHfc+wqp3iybu9ssYU
hTefcXVN/XMfHJvibggHG+qWtjAICE+9JklJiz8WaoDP5mKsdU5vfnmzbAwByAP3
kL6bt9ofzHue2cyN3ZyrFSOtdPCJz+iE+PpB96EfCkVRyf1HEVgt3fIHiDqHv6Vy
5f3f608ll3wUBav+u1+S4SFJhc1RK88ENrqwiBHC4MgEpu2NboPh/jd6tLsjyR1u
FeH+foDnTKZhqbrbbuo6l/aao8deWFuorNo7QAuYvsMFmCbcUBKFz8H9uj1twHzt
OpfwBBcE/N+JZInW8XzaoGs5kSA785bJXxxthCBfZsSyhUSmuTSeOyL5Q2mWfisW
cPl6BSxt7s543Pnd52NUF9acnR/OSkR/zxQ3cY60nFF27IGPYqfAnA+fcQry4a4+
K2ogFbHJlZ93icjlbEPqF68qnUZtESnv1x90k/sxlD4qDrLvzbCc9H/7DXUEYv5F
Llupc9lcLmNUU876heKHPoWaea7GWiMEf0UXaDmeKDQ76tqXSgmDSLR6ooyJIYxx
Ib7zocBL3QgOQMkmvboC
=jR+i
-END PGP SIGNATURE-


Accepted:
libpadre-plugin-html-perl_0.13-3.debian.tar.gz
  to 
main/libp/libpadre-plugin-html-perl/libpadre-plugin-html-perl_0.13-3.debian.tar.gz
libpadre-plugin-html-perl_0.13-3.dsc
  to main/libp/libpadre-plugin-html-perl/libpadre-plugin-html-perl_0.13-3.dsc
libpadre-plugin-html-perl_0.13-3_all.deb
  to 
main/libp/libpadre-plugin-html-perl/libpadre-plugin-html-perl_0.13-3_all.deb


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



Accepted libpadre-plugin-xml-perl 0.10-3 (source all)

2011-03-17 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 17 Mar 2011 19:10:16 +0100
Source: libpadre-plugin-xml-perl
Binary: libpadre-plugin-xml-perl
Architecture: all source
Version: 0.10-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@debian.org
Closes: 609401
Description: 
 libpadre-plugin-xml-perl - Padre plugin for XML
Changes: 
 libpadre-plugin-xml-perl (0.10-3) unstable; urgency=low
 .
   * Team upload.
   * debian/rules: Set $HOME to a temporary directory when running tests.
 Closes: #609401
Checksums-Sha1: 
 3eb66d6262eb8a02b363f71736dc6f23ed01a514 2271 
libpadre-plugin-xml-perl_0.10-3.dsc
 fbd6a7d09e2be304a8b88cf003c9b23d24bc2483 2269 
libpadre-plugin-xml-perl_0.10-3.debian.tar.gz
 e01b1af4c421e998c46810265e7668c68a5a6198 10424 
libpadre-plugin-xml-perl_0.10-3_all.deb
Checksums-Sha256: 
 a51c2432f8f42636013a7c7fb23a3cd86294e6e634adb1cded8d62e6a8faa4e3 2271 
libpadre-plugin-xml-perl_0.10-3.dsc
 4c56ce5b905acb9341466b92b370959ba9d425bbe9efe49a343f831bc15c08fa 2269 
libpadre-plugin-xml-perl_0.10-3.debian.tar.gz
 e6d5ffc642483a901bc80e8c89e192128d61032b357dd3eae12c16a523b1a259 10424 
libpadre-plugin-xml-perl_0.10-3_all.deb
Files: 
 f75ef69c28f6969c0f5894df8767a93e 2271 perl optional 
libpadre-plugin-xml-perl_0.10-3.dsc
 451ee67ec18fa9d8ac1b92aad373e3b1 2269 perl optional 
libpadre-plugin-xml-perl_0.10-3.debian.tar.gz
 715892be3970af955003ed17337eae2a 10424 perl optional 
libpadre-plugin-xml-perl_0.10-3_all.deb

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

iQIcBAEBCgAGBQJNglASAAoJEIATJTTdNH3ItikP/2v1ldHHU5MK4sfWZJsNExsl
702q7gbHxWgx6XUXbeRsi7rebtFLHb2t4p5iAW76rNIRC4qj7FtIlKTCecAsaytz
rkdLhkn6x6k6D8MUPXvxcI82bIXADVpoGUEe6LBJDTu4zf3YGali7HeH0AojxZC9
KaoCaJnceiHttGVSYw1WxPsVZ2S0qBhQe5r0J4wzPupi5TyrgZcAUL0Ks4SO/qzA
b5aA8a58aIbVhakZ2tUlNr6YrXNbYYnGRkCawwbKAMUqLKXdEvelAFqfbV6JAgrk
2+QdFWfgkiORngpCaeMTsfR2dFVkBCnGv5lnjB9w27fgzHb2KYp1rm66WO80LYFc
Un9RydY9J9AWLXlm4bXSRBb6YCYnArVODMNKZDY0VGu9iclsTLrp+CeSCjxtSMoV
gFtI0eZ0uXUHyUIE7k410BAo47hnczWmrF9UCEtzE46qhwFQmuJjcGoC7KBfjX0f
jgz2ZvYUhp5X0a8pN3OXdCN/V5m1S6N+TRjMjYADd3iAalHHagPPl6I86M8HusqA
07N37eqEJohduivA5UJ8mCUy9yGAcOLYDjVaopD1PHLanX9TVap0InsYryg0nO3T
mJTTc0GZSzqoxuTr6wACKrYJk4zN99anyAa2faRtb44SdtJxKkuj3mrZp9sY4fge
8Iv2G/Ck9ARymRAFgCiT
=6ul3
-END PGP SIGNATURE-


Accepted:
libpadre-plugin-xml-perl_0.10-3.debian.tar.gz
  to 
main/libp/libpadre-plugin-xml-perl/libpadre-plugin-xml-perl_0.10-3.debian.tar.gz
libpadre-plugin-xml-perl_0.10-3.dsc
  to main/libp/libpadre-plugin-xml-perl/libpadre-plugin-xml-perl_0.10-3.dsc
libpadre-plugin-xml-perl_0.10-3_all.deb
  to main/libp/libpadre-plugin-xml-perl/libpadre-plugin-xml-perl_0.10-3_all.deb


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



Accepted mixal 1.08-11 (source amd64)

2011-03-17 Thread Vince Mulhollon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 13:01:37 -0500
Source: mixal
Binary: mixal
Architecture: source amd64
Version: 1.08-11
Distribution: unstable
Urgency: low
Maintainer: Vince Mulhollon v...@debian.org
Changed-By: Vince Mulhollon v...@debian.org
Description: 
 mixal  - A MIX emulator and MIXAL interpreter
Changes: 
 mixal (1.08-11) unstable; urgency=low
 .
   * Added ${misc:Depends} to control
 This fixes lintian debhelper-but-no-misc-depends
   * Upgraded dh compat from 4 to 8.  Updated control and added compat file.
 This fixes lintian package-uses-deprecated-debhelper-compat-version
 This also cleans up package-lacks-versioned-build-depends-on-debhelper
   * Removed DH_COMPAT from rules file.
 This fixes lintian debian-rules-sets-DH_COMPAT
   * Removed - from $(MAKE) clean line in rules
 This fixes lintian debian-rules-ignores-make-clean-error
   * Bump standards version from 3.6.2.0 to 3.9.1.0
   * Removed SC macro in manpage
 This fixes manpage-has-errors-from-man
   * Changed from dh_clean -k to dh_prep
 This fixes lintian dh-clean-k-is-deprecated
Checksums-Sha1: 
 5e25b5a1473f199754a957d2caa3042448f7902b 913 mixal_1.08-11.dsc
 9d0c06309d040fedc3e15f795410f029621ebadf 5643 mixal_1.08-11.diff.gz
 665923bbe7ad54aadc1abc7d00f8be706fe3e4d8 24228 mixal_1.08-11_amd64.deb
Checksums-Sha256: 
 fbe21e6f3b873dad1ff7955fdaaa8402207b9e09506603ddcf86b8f356656c5c 913 
mixal_1.08-11.dsc
 ca60eb9306781859b1c41127af57f797b7a6339169aae76be82492cdd13817f7 5643 
mixal_1.08-11.diff.gz
 7702c8ac2ff7c2736321da6913f38fc5ca2f72be15915be090aa7ff66ba7ef85 24228 
mixal_1.08-11_amd64.deb
Files: 
 e8ee605b6de90fa6408beb76bbd4f960 913 otherosfs extra mixal_1.08-11.dsc
 4bb72325cf57a036ae27fecfdf5c660b 5643 otherosfs extra mixal_1.08-11.diff.gz
 d3d7dd977fde210729e59ed507c84255 24228 otherosfs extra mixal_1.08-11_amd64.deb

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

iD8DBQFNglCh4oRQ9gHTq5MRAmt1AKCuOYFiLvCE/7z5ax4dOlpKu8QmwQCdEoox
xfCF5Yjpk/jarqhfQ2GUlFo=
=1H9X
-END PGP SIGNATURE-


Accepted:
mixal_1.08-11.diff.gz
  to main/m/mixal/mixal_1.08-11.diff.gz
mixal_1.08-11.dsc
  to main/m/mixal/mixal_1.08-11.dsc
mixal_1.08-11_amd64.deb
  to main/m/mixal/mixal_1.08-11_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/e1q0hzw-0002gz...@franck.debian.org



Accepted feel++ 0.90.0-1 (source all amd64)

2011-03-17 Thread Christophe Prud'homme
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 11:52:26 +0100
Source: feel++
Binary: libfeel++1 libfeel++-dev libfeel++-dbg feel++-apps feel++-doc
Architecture: source all amd64
Version: 0.90.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Christophe Prud'homme prudh...@debian.org
Description: 
 feel++-apps - A library for the finite element method
 feel++-doc - A library for the finite element method
 libfeel++-dbg - A library for the finite element method
 libfeel++-dev - A library for the finite element method
 libfeel++1 - A library for the finite element method
Changes: 
 feel++ (0.90.0-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 e09d9f8d9059e65bf1210a37a881138ed8cc9497 1935 feel++_0.90.0-1.dsc
 8e27e4eb1b271202fd2167a4681c3430a01a9847 3893258 feel++_0.90.0.orig.tar.gz
 99d31d96908076de54f7aef831f0695625918b4f 10250 feel++_0.90.0-1.diff.gz
 b9b627db9cb22467fc7a902e03ff87e128659922 3340030 feel++-doc_0.90.0-1_all.deb
 80adae6a075b4210b7c3ae40276bb844a717d097 898852 libfeel++1_0.90.0-1_amd64.deb
 c3bba94dc404e5e5300df5353d4d64cabe640569 1384160 
libfeel++-dev_0.90.0-1_amd64.deb
 4e9f7159a5c98da36ae1f893ab13272e2721ff8c 171752 
libfeel++-dbg_0.90.0-1_amd64.deb
 e7d3f3171a0a4839cb7a4e032dd7553d3894521c 4925578 feel++-apps_0.90.0-1_amd64.deb
Checksums-Sha256: 
 4fee8542566b1a5d0e676338d01f740e4db02ce220bf4fbc031c0697a1cb5c2d 1935 
feel++_0.90.0-1.dsc
 5a38156d84efeb531289acb6b9fa22864beb14c82c1dfcbba8620890c23238c4 3893258 
feel++_0.90.0.orig.tar.gz
 3c86b5786df46498c4440747031cf6a1ad4a86855e7edf32f47d8c4450de6ec4 10250 
feel++_0.90.0-1.diff.gz
 080138f6268647bed096149653e546465c0341f39d441a4b4e8dc83404438688 3340030 
feel++-doc_0.90.0-1_all.deb
 5a70fea015f9fb9f91954aaca7fa6c7cd05ed5b6706c2ff217464fe152775a83 898852 
libfeel++1_0.90.0-1_amd64.deb
 b65d4c7be5348a278c0248225d96ce4e91e81e24606bfc7b063dcde02b968ce9 1384160 
libfeel++-dev_0.90.0-1_amd64.deb
 dc53e32fabf534bb0093adcf64755dd1442c310059c8e535b7c87f8fdf195877 171752 
libfeel++-dbg_0.90.0-1_amd64.deb
 dde3c9fd7a2fc2a831fa39abe2929d186db0478e17c7e6fd55cb126b2d8a5ad0 4925578 
feel++-apps_0.90.0-1_amd64.deb
Files: 
 1e712f08e0f382532af391924bedb423 1935 science extra feel++_0.90.0-1.dsc
 dbbeea5444b9954dd9e6df30596da353 3893258 science extra 
feel++_0.90.0.orig.tar.gz
 c07d344c817177d173ded2723bcca383 10250 science extra feel++_0.90.0-1.diff.gz
 b4053f61a9f84c2c75327612eacfa799 3340030 doc extra feel++-doc_0.90.0-1_all.deb
 b30e3555c12541b26f6db9db220ec9eb 898852 libs extra 
libfeel++1_0.90.0-1_amd64.deb
 b1ade5b0afdac7954aacd3748ce5fc24 1384160 libdevel extra 
libfeel++-dev_0.90.0-1_amd64.deb
 68ebc88f58c1c94f5a6688b442d02eb2 171752 debug extra 
libfeel++-dbg_0.90.0-1_amd64.deb
 4b7878143995be62fb05d8396f1a7ca9 4925578 science extra 
feel++-apps_0.90.0-1_amd64.deb

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

iD8DBQFNglJdoY+0C9S+FFARAgMbAJ4ghKSthVArHRrXtLosfJgvsKrwgQCfQQQd
Mvw0WMlpC0Hria8JCISwc1U=
=WmaC
-END PGP SIGNATURE-


Accepted:
feel++-apps_0.90.0-1_amd64.deb
  to main/f/feel++/feel++-apps_0.90.0-1_amd64.deb
feel++-doc_0.90.0-1_all.deb
  to main/f/feel++/feel++-doc_0.90.0-1_all.deb
feel++_0.90.0-1.diff.gz
  to main/f/feel++/feel++_0.90.0-1.diff.gz
feel++_0.90.0-1.dsc
  to main/f/feel++/feel++_0.90.0-1.dsc
feel++_0.90.0.orig.tar.gz
  to main/f/feel++/feel++_0.90.0.orig.tar.gz
libfeel++-dbg_0.90.0-1_amd64.deb
  to main/f/feel++/libfeel++-dbg_0.90.0-1_amd64.deb
libfeel++-dev_0.90.0-1_amd64.deb
  to main/f/feel++/libfeel++-dev_0.90.0-1_amd64.deb
libfeel++1_0.90.0-1_amd64.deb
  to main/f/feel++/libfeel++1_0.90.0-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/e1q0iec-0003fq...@franck.debian.org



Accepted proftpd-dfsg 1.3.3d-5 (source i386 all)

2011-03-17 Thread Francesco Paolo Lovergine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 13:16:12 +0100
Source: proftpd-dfsg
Binary: proftpd-basic proftpd-dev proftpd-doc proftpd-mod-mysql 
proftpd-mod-pgsql proftpd-mod-ldap proftpd-mod-odbc proftpd-mod-sqlite
Architecture: source i386 all
Version: 1.3.3d-5
Distribution: unstable
Urgency: low
Maintainer: ProFTPD Maintainance Team 
pkg-proftpd-maintain...@lists.alioth.debian.org
Changed-By: Francesco Paolo Lovergine fran...@debian.org
Description: 
 proftpd-basic - Versatile, virtual-hosting FTP daemon - binaries
 proftpd-dev - Versatile, virtual-hosting FTP daemon - development files
 proftpd-doc - Versatile, virtual-hosting FTP daemon - documentation
 proftpd-mod-ldap - Versatile, virtual-hosting FTP daemon - LDAP module
 proftpd-mod-mysql - Versatile, virtual-hosting FTP daemon - MySQL module
 proftpd-mod-odbc - Versatile, virtual-hosting FTP daemon - ODBC module
 proftpd-mod-pgsql - Versatile, virtual-hosting FTP daemon - PostgreSQL module
 proftpd-mod-sqlite - Versatile, virtual-hosting FTP daemon - SQLite3 module
Changes: 
 proftpd-dfsg (1.3.3d-5) unstable; urgency=low
 .
   [ Francesco Paolo Lovergine fran...@debian.org ]
   * Annotated CVE IDs in debian/changelog for recent vulnerabilities fixed.
 .
   [ Mahyuddin Susanto udi...@ubuntu.com ]
   * Add DEP-3 header in patches:
 - debian/patches/mod_cap
 - debian/patches/ftpstats
 - debian/patches/series
 - debian/patches/xferstats.holger-preiss
 - debian/patches/CVE-2011-1137
 - debian/patches/odbc
 - debian/patches/silent
 - debian/patches/mod_sql_mysql.c
 - debian/patches/ftpasswd.cracklib.location
 - debian/patches/autotools
 - debian/patches/prxs
 - debian/patches/mod_vroot
 - debian/patches/quotatab_modules
 - debian/patches/mod_wrap_noparanoid
 - debian/patches/change_pam_name
   * debian/copyright: Rewriting as per DEP-5 machine readable.
   * Fix typo in 1.3.3d-4 changelog.
   * debian/ftpasswd.8
 - Remove white space
 - Using hypen instead of minus sign in manual page.
   * debian/patches/use_hypen_in_manpage.patch: Do not use minus sign in manual
 page.
   * Use set -e instead of passed -e to the shell on the #! line in the body of
 script
  - proftpd-basic.config
  - proftpd-basic.postrm
  - proftpd-basic.preinst
   * Override lintian to trivial error checking
 - debian/proftpd-basic.lintian-overrides
 - debian/proftpd-dev.lintian-overrides
 .
   [ Francesco Paolo Lovergine ]
   * Fixed a typo in debian/proftpd-substvars.in and regenerated the template.
   * Fixed a typo in proftpd-dev.README.Debian
Checksums-Sha1: 
 616e7e3f0789292994ebebd0c90598142d08e6ce 1625 proftpd-dfsg_1.3.3d-5.dsc
 0aa04ef1a5d7ce0ab58a2543c4ff0d70377908e9 105029 
proftpd-dfsg_1.3.3d-5.debian.tar.gz
 5e7a30252a0b77823e50687ec0519268209f3850 2349406 
proftpd-basic_1.3.3d-5_i386.deb
 bc171e00a348eb7726e0a8f9ee70da7ea043 847502 proftpd-dev_1.3.3d-5_i386.deb
 489df73f64ab4b44a183d4a98017a9ab862c9be7 361926 
proftpd-mod-mysql_1.3.3d-5_i386.deb
 48fdbc2fd426aa0e563c6d5ceb4724c69e5f37c7 361734 
proftpd-mod-pgsql_1.3.3d-5_i386.deb
 8c24adb4dd1105129abf5e315833ce814ae344d8 370418 
proftpd-mod-ldap_1.3.3d-5_i386.deb
 d8a76100ecec20d7c8a7952494740f702a443a57 363306 
proftpd-mod-odbc_1.3.3d-5_i386.deb
 b9e93a0b5aaac962ca67911dd338514595605467 361098 
proftpd-mod-sqlite_1.3.3d-5_i386.deb
 8d03dc18f6b90e8f232890fd109e45708591d550 1525786 proftpd-doc_1.3.3d-5_all.deb
Checksums-Sha256: 
 6cc552c52c6f614e7c3a7d026bacc0f4071fbf2b136fef48e7002f8aef4a6a2f 1625 
proftpd-dfsg_1.3.3d-5.dsc
 2571cfeb7bd931b97f44821e3288d8442665ebbf225490c1e2ba2fa0b51c9ebc 105029 
proftpd-dfsg_1.3.3d-5.debian.tar.gz
 f04797072fa6e9abc9b77d11fe0353259b7cb17f28869e7205df882252a51e4d 2349406 
proftpd-basic_1.3.3d-5_i386.deb
 fedbc99c076e4fb5fbf35926bf01cd5dd67057a4295bf459ae73757faabf38ff 847502 
proftpd-dev_1.3.3d-5_i386.deb
 b43620acfa62d6d77a35fbc7cc6c568d868535314b1a0b6c02055132dc7c4399 361926 
proftpd-mod-mysql_1.3.3d-5_i386.deb
 9a9b98d5aead65206cb8e573360f0f9ff4e59ed96920bc32f576af62b20d982b 361734 
proftpd-mod-pgsql_1.3.3d-5_i386.deb
 be7b078970310837ee69e2a7405cd044b167e1fa6f927506b30fab9ce3179bdd 370418 
proftpd-mod-ldap_1.3.3d-5_i386.deb
 3032da1621e2156dc8a4bb92b8f2c759e17495302cd730fb72eff84604b8ceaf 363306 
proftpd-mod-odbc_1.3.3d-5_i386.deb
 32dc7a361bd52d48757cf47a6cbeffa79aa45309071194f086d3bdbe942a43a6 361098 
proftpd-mod-sqlite_1.3.3d-5_i386.deb
 7c17fef6613c8dd7a3544e987ae6d1747a41b35288253b131095f85f166ed463 1525786 
proftpd-doc_1.3.3d-5_all.deb
Files: 
 0e48e81536124321ba9348e715adffeb 1625 net optional proftpd-dfsg_1.3.3d-5.dsc
 8f50b42050c504f558eb87b967c2720d 105029 net optional 
proftpd-dfsg_1.3.3d-5.debian.tar.gz
 7f1f5cf4d129b91ff696408a56e75d9e 2349406 net optional 
proftpd-basic_1.3.3d-5_i386.deb
 0e254fc6caa6cc974fa2c6b59a95a186 847502 net optional 
proftpd-dev_1.3.3d-5_i386.deb
 4992d7c78b9f9af9000b3001fcf10c0f 361926 net optional 

Accepted libconvert-ber-perl 1.3200-1 (source all)

2011-03-17 Thread Nacho Barrientos Arias
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Mar 2011 09:35:15 +
Source: libconvert-ber-perl
Binary: libconvert-ber-perl
Architecture: source all
Version: 1.3200-1
Distribution: unstable
Urgency: low
Maintainer: Nacho Barrientos Arias na...@debian.org
Changed-By: Nacho Barrientos Arias na...@debian.org
Description: 
 libconvert-ber-perl - Perl implementation of Basic Encoding Rules (BER)
Closes: 615338
Changes: 
 libconvert-ber-perl (1.3200-1) unstable; urgency=low
 .
   * New upstream release
   * Switch to dpkg-source 3.0 (quilt) format.
   * Version number rewritten as 1.3200 because upstream
 uses real numbers for versioning the module.
   * debian/control
- New maintainer's email address
- Move homepage to the appropriate field (closes: #615338)
- Bump debhelper compatibility level to 8.
- Set Standards-Version to 3.9.1 (no changes).
- B-D: Move perl to B-D-I.
   * debian/watch
- Mangle upstream version before comparing it to the
  Debian version.
   * debian/patches
- 01_add_missing_back_to_pod.patch: Add a missing =back
  to BER.po in order to avoid errors in the manpage.
Checksums-Sha1: 
 443dc8411037b3189d9ab3d6d870f688cf256cbb 1153 libconvert-ber-perl_1.3200-1.dsc
 5fc95ab7cc5a8cbf41f5904210fa03244b46c52e 27374 
libconvert-ber-perl_1.3200.orig.tar.gz
 37605bfb1595314a72c8f87ddfe9b760f6d9c3c6 2912 
libconvert-ber-perl_1.3200-1.debian.tar.gz
 3deba1bfcd903c4ddbeb40f8fdc6858d3bef8610 33362 
libconvert-ber-perl_1.3200-1_all.deb
Checksums-Sha256: 
 6a55d38753d843f936d0af5ab2afe4ad307c2a47362689361b954616477f9e14 1153 
libconvert-ber-perl_1.3200-1.dsc
 f855c7905b23b7eb4fb26e79ce903d91dd7e305e16e28a40f0d2c72793a4bc61 27374 
libconvert-ber-perl_1.3200.orig.tar.gz
 31ca640a3fa1a880cfd23c5837ef0820e26e3e959aff3a4b96bd5a09996c1bcc 2912 
libconvert-ber-perl_1.3200-1.debian.tar.gz
 6032ec80561eb1805b50307789787bf4bcc2bd53b7a9144af452290cd8e697cb 33362 
libconvert-ber-perl_1.3200-1_all.deb
Files: 
 d478af6d7a6257a5cf2d4cb36fb61561 1153 perl extra 
libconvert-ber-perl_1.3200-1.dsc
 662f643f9c2d4ec120e217ecbbf2305f 27374 perl extra 
libconvert-ber-perl_1.3200.orig.tar.gz
 1863bac18f2f1e4d92d478d85f896aff 2912 perl extra 
libconvert-ber-perl_1.3200-1.debian.tar.gz
 f981f7603fb7853e67dd12cae636b3c2 33362 perl extra 
libconvert-ber-perl_1.3200-1_all.deb

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

iEYEARECAAYFAk2Cc5QACgkQmbOM+OED/E0wtgCfWqzkmsz+PcfskU+lViit/egI
+NQAnR7KbQZn95vEzcukrfTxpawOoBic
=fuTa
-END PGP SIGNATURE-


Accepted:
libconvert-ber-perl_1.3200-1.debian.tar.gz
  to main/libc/libconvert-ber-perl/libconvert-ber-perl_1.3200-1.debian.tar.gz
libconvert-ber-perl_1.3200-1.dsc
  to main/libc/libconvert-ber-perl/libconvert-ber-perl_1.3200-1.dsc
libconvert-ber-perl_1.3200-1_all.deb
  to main/libc/libconvert-ber-perl/libconvert-ber-perl_1.3200-1_all.deb
libconvert-ber-perl_1.3200.orig.tar.gz
  to main/libc/libconvert-ber-perl/libconvert-ber-perl_1.3200.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/e1q0kbl-0007oo...@franck.debian.org



Accepted timblserver 1.1-4 (source amd64)

2011-03-17 Thread Joost van Baal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 19:56:15 +0100
Source: timblserver
Binary: timblserver
Architecture: source amd64
Version: 1.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Joost van Baal joos...@debian.org
Description: 
 timblserver - Server extensions for Timbl
Closes: 618697
Changes: 
 timblserver (1.1-4) unstable; urgency=low
 .
   * debian/control: add pkg-config to Build-Depends.  Thanks
 Aaron M.  Ucko.  (Closes: #618697)
   * debian/copyright: fix FSF address, tnx lintian.
Checksums-Sha1: 
 a8138eb881dc263ccc57f271f65ea44e4ff10a27 1978 timblserver_1.1-4.dsc
 ba4fd60601608c4cfb8e94107fd5f44a4471a276 3429 timblserver_1.1-4.diff.gz
 881f5c8829e2f3abbac4d81334ccdeac1f7bd9cd 167732 timblserver_1.1-4_amd64.deb
Checksums-Sha256: 
 b2606004adfa4f1fce53b43475429674934672a07866b53cdf9d6901ad7b537e 1978 
timblserver_1.1-4.dsc
 25348371ba4e89c79d669641b1e375810164bd228637e4f5c088ac029359a396 3429 
timblserver_1.1-4.diff.gz
 3a85cb69d7e728ad136eb2ac6c44ff354571e6a89e8b0e7267618b5f4b75a79a 167732 
timblserver_1.1-4_amd64.deb
Files: 
 e3701e5753b7148e70e0e6cdfad3a236 1978 science extra timblserver_1.1-4.dsc
 da10061a7f65c17b44861164b2c93bf9 3429 science extra timblserver_1.1-4.diff.gz
 dc51b064e90c82a6044e8bd8c6654543 167732 science extra 
timblserver_1.1-4_amd64.deb

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

iQIcBAEBCAAGBQJNgmeZAAoJEPmMuyPAvGmAec8QALjCVsQ0luCmNgcY/cky8yLT
tQfMhTpRVwvrudwOXdVBInxtOQTG9Wn7rLaX9V5MtXlp9iPolGWCzyO2aa3CmVlT
aHpJs6nHDNqD+ZnJNStYFUFIthIgePkze4K0Qjn01vE54GGj4FKkKsewR0GEIQ1y
QqbwQKfrRDYbrMeeGwa2na19B+kjY3KRYv9245yOrYqdeFTPPtF5KtdsK6Mg/CQE
2IqW7KegrDoMRKHiHDWi8Kb29Pk7XID9l2dBFI2hE0Qb9uvbBKTgK3GaW3cppJVp
5ge99BNkC8VWYZC9lEoiZ3x3eRYb+a2f4U0qNDOvq4yLWWUt38b9gT0CFBXlrbM7
wur7OTBBhGmAf+FyuIarO4/AUOsZQYQjBS3CHkNHAOyVkCNtbX/fRKalnpXTtBNM
VPZ0rAyAu0WlY3OFc9kGZY4J8L/aiRJe6iLFnFSQWjtnHk027W0LWAyR4UOwToiO
MLPu4FtOH8MJy3jSlKYuR70LtC+1+CDJ7hy2ndwHMNxWsBANI59vJT1kS7VIPRUZ
6rpypAQ0i+ZgqC3Zrzw7l0UMFA9UsG9p7nRTAgPZ+1KmnvI45M3dMwwVPXrxbuCw
8QoCevYFlyB8PTxH1JsrOU0uaqB82g8hPRdSTTXQUHf8NrnLwtmKSCls+msRa23C
IIuEigV9NyQkxpSMLIZE
=359J
-END PGP SIGNATURE-


Accepted:
timblserver_1.1-4.diff.gz
  to main/t/timblserver/timblserver_1.1-4.diff.gz
timblserver_1.1-4.dsc
  to main/t/timblserver/timblserver_1.1-4.dsc
timblserver_1.1-4_amd64.deb
  to main/t/timblserver/timblserver_1.1-4_amd64.deb


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



Accepted feel++ 0.90.0-2 (source all amd64)

2011-03-17 Thread Christophe Prud'homme
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 21:41:36 +0100
Source: feel++
Binary: libfeel++1 libfeel++-dev libfeel++-dbg feel++-apps feel++-doc
Architecture: source all amd64
Version: 0.90.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Christophe Prud'homme prudh...@debian.org
Description: 
 feel++-apps - A library for the finite element method
 feel++-doc - A library for the finite element method
 libfeel++-dbg - A library for the finite element method
 libfeel++-dev - A library for the finite element method
 libfeel++1 - A library for the finite element method
Changes: 
 feel++ (0.90.0-2) unstable; urgency=low
 .
   [Christophe Prud'homme]
   * debian/patches/feelgeo: fix compilation in buildd
Checksums-Sha1: 
 1d09cf23fad367f5b259109f981a99025680 1935 feel++_0.90.0-2.dsc
 d940f58ec628aeda5a9e32f9215e42776ad96981 10557 feel++_0.90.0-2.diff.gz
 8b9af0d8c5a9852b10bd3b1962a7a43447284698 3326446 feel++-doc_0.90.0-2_all.deb
 1d63b1df741c60361c31eb8d08013ca31e168198 1058702 libfeel++1_0.90.0-2_amd64.deb
 71451c1d5a0a7a1f1aca3f440798007bce8a3b96 1384210 
libfeel++-dev_0.90.0-2_amd64.deb
 8427911b0f131858428f27e32220491a889eb9c7 170852 
libfeel++-dbg_0.90.0-2_amd64.deb
 f61e17c84b982febdc42fe3a92bd5632650471c0 4944344 feel++-apps_0.90.0-2_amd64.deb
Checksums-Sha256: 
 2520a8cb854ba4b4bd5024870b93a58c83b052ca98058030feb9f379b8e9c07e 1935 
feel++_0.90.0-2.dsc
 3b26ca087b903c0ba63c52f19a47e8fb329c578b644e3fae61842d0d5fc869a2 10557 
feel++_0.90.0-2.diff.gz
 bef8a54cc46de583432c7fd5b3a1525b4a6b54eb85309bb9a9d5454241769c1d 3326446 
feel++-doc_0.90.0-2_all.deb
 414a9fea83704ea28fd851c2744556f136b18f2fde0572e0a3484dfd2f242bd1 1058702 
libfeel++1_0.90.0-2_amd64.deb
 0b8566fe068b3eaee7850b637f5219175ebd3e1a4c683e51d9639273e6bca41e 1384210 
libfeel++-dev_0.90.0-2_amd64.deb
 bb959f3636cc8757e271c7d39f9087bee3c55e0226d5b6b774d7229cc371 170852 
libfeel++-dbg_0.90.0-2_amd64.deb
 d7d14f2d56d3dcdaaf937f41a1e109e36eef13569715937313e002988436e0f5 4944344 
feel++-apps_0.90.0-2_amd64.deb
Files: 
 f7d8b0544a7450cb2124cda895225be2 1935 science extra feel++_0.90.0-2.dsc
 20b9d96c0b5b741b3edd08711473912d 10557 science extra feel++_0.90.0-2.diff.gz
 85ef279e098c79e130ba49018aab446c 3326446 doc extra feel++-doc_0.90.0-2_all.deb
 0c7305b634cd1d3b90a671122e03321b 1058702 libs extra 
libfeel++1_0.90.0-2_amd64.deb
 8b4d121d05cf8adabe8675f3ea030b65 1384210 libdevel extra 
libfeel++-dev_0.90.0-2_amd64.deb
 0dac128df69b691e4819b04ec92a26b0 170852 debug extra 
libfeel++-dbg_0.90.0-2_amd64.deb
 c0c422eed25e0e0b72afa28fbc7a7fbf 4944344 science extra 
feel++-apps_0.90.0-2_amd64.deb

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

iD8DBQFNgnjVoY+0C9S+FFARAq82AJ9ACcQdQGJeFBHGbUSALT90MDu4zQCeIqsW
XiVNF413JRe8YOuz5VxWtmk=
=BeDh
-END PGP SIGNATURE-


Accepted:
feel++-apps_0.90.0-2_amd64.deb
  to main/f/feel++/feel++-apps_0.90.0-2_amd64.deb
feel++-doc_0.90.0-2_all.deb
  to main/f/feel++/feel++-doc_0.90.0-2_all.deb
feel++_0.90.0-2.diff.gz
  to main/f/feel++/feel++_0.90.0-2.diff.gz
feel++_0.90.0-2.dsc
  to main/f/feel++/feel++_0.90.0-2.dsc
libfeel++-dbg_0.90.0-2_amd64.deb
  to main/f/feel++/libfeel++-dbg_0.90.0-2_amd64.deb
libfeel++-dev_0.90.0-2_amd64.deb
  to main/f/feel++/libfeel++-dev_0.90.0-2_amd64.deb
libfeel++1_0.90.0-2_amd64.deb
  to main/f/feel++/libfeel++1_0.90.0-2_amd64.deb


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



Accepted libaqbanking 5.0.5-1 (source i386 all)

2011-03-17 Thread Micha Lenk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Mar 2011 22:06:49 +0100
Source: libaqbanking
Binary: libaqbanking33-dev libaqbanking-doc aqbanking-tools 
libaqbanking33-plugins libaqbanking-plugins-libgwenhywfar60 libaqbanking-data 
libaqbanking33 libaqbanking33-dbg libaqhbci19 libaqofxconnect7
Architecture: source i386 all
Version: 5.0.5-1
Distribution: unstable
Urgency: low
Maintainer: Micha Lenk mi...@debian.org
Changed-By: Micha Lenk mi...@debian.org
Description: 
 aqbanking-tools - basic command line homebanking utilities
 libaqbanking-data - configuration files for libaqbanking
 libaqbanking-doc - library for online banking applications
 libaqbanking-plugins-libgwenhywfar60 - library for online banking applications 
plugins to libgwenhywfar
 libaqbanking33 - library for online banking applications
 libaqbanking33-dbg - library for online banking applications - debug symbols
 libaqbanking33-dev - library for online banking applications
 libaqbanking33-plugins - plugins needed by libaqbanking33
 libaqhbci19 - library for HBCI online banking
 libaqofxconnect7 - library for OFX online banking
Changes: 
 libaqbanking (5.0.5-1) unstable; urgency=low
 .
   * New upstream release (LP: #724393)
   * Updated symbols file for added AB_Value functions
   * Removed symlinks installed for compatibility with obsolete AqBanking 2
   * Removed obsolete configure flag '--with-frontends'
Checksums-Sha1: 
 093f0bf34eeb58aa8d1bfbe7916010f09ff68ee1 1495 libaqbanking_5.0.5-1.dsc
 c19ac04d58953bd151ce735c7ebad81e9b066ba4 3540552 libaqbanking_5.0.5.orig.tar.gz
 aaf02c3f1a0ea665a18a8379f336d4e7afaa03cf 30643 
libaqbanking_5.0.5-1.debian.tar.gz
 884424ae0ca3a9f70cbe8d6b85595b1413c8 97738 
libaqbanking33-dev_5.0.5-1_i386.deb
 b5c2cfe9e42ec2276092b352d3fedd15af363046 99728 aqbanking-tools_5.0.5-1_i386.deb
 56c4dd2e13fc84dd176f219a38cfbc16eebe4858 140108 
libaqbanking33-plugins_5.0.5-1_i386.deb
 264e0d1691ee98f84f7b274a9c98bb0a2aeda328 64950 
libaqbanking-plugins-libgwenhywfar60_5.0.5-1_i386.deb
 41c66cc6460bd6098fdfecc5c73b729accbf02db 232972 libaqbanking33_5.0.5-1_i386.deb
 ed7eb5a9ba646b0e6e57a1035890e780b3834f3d 1091194 
libaqbanking33-dbg_5.0.5-1_i386.deb
 2f4a5773c8191bc6182943c5710d7247e0f9be6e 274854 libaqhbci19_5.0.5-1_i386.deb
 8ba43511858a9c08ba805e7d59c62bc2cd152f9b 84940 
libaqofxconnect7_5.0.5-1_i386.deb
 9afcec40217e71858e75f8d15dd21e2124ce45db 781734 
libaqbanking-doc_5.0.5-1_all.deb
 ce139e72e8f155da1ad4cc5925dcb74243eac728 2512166 
libaqbanking-data_5.0.5-1_all.deb
Checksums-Sha256: 
 2c519618ce11c9cf4ee3c5493a6827d9b6c721052f15e019786ab4e9374237a2 1495 
libaqbanking_5.0.5-1.dsc
 0c575387ee7dffd89403c91ba90363a01bf9a78a1c8a999f1ab8b47ed0f0bd72 3540552 
libaqbanking_5.0.5.orig.tar.gz
 50e94d6664bea019b4ef123c0b7cadaa8069bdbed8ee44ab75ecdedc01c2c133 30643 
libaqbanking_5.0.5-1.debian.tar.gz
 2408cdcc96dd4c7fb0dd1192ea22cb0bd0ca6e27d04a1192de5bd876e1c89990 97738 
libaqbanking33-dev_5.0.5-1_i386.deb
 ee112565ef2046ebadd96e9b3fe18121fc3dd19e21dc7a745778cf3a18effe3d 99728 
aqbanking-tools_5.0.5-1_i386.deb
 2169b1968fdd09723daeb19221dadc2d8a6099649c4067f1d03e603d3523409b 140108 
libaqbanking33-plugins_5.0.5-1_i386.deb
 c73e34a662747b27ff8b359c7e4d3e924c6fb6eb1ade01546b600147f881e867 64950 
libaqbanking-plugins-libgwenhywfar60_5.0.5-1_i386.deb
 d4cfe4e00f7f4e54981887fc98775dbe5251830c4a7889b5cc91f700371aa5fe 232972 
libaqbanking33_5.0.5-1_i386.deb
 32d1572d58c5811181d0ddc4b21f30ac8be3d9e1e9ab275997ab44361fed87fc 1091194 
libaqbanking33-dbg_5.0.5-1_i386.deb
 3e0a1cce465f91b8f35f23b6ac6dab4d7ac0b1bc6a705460d77cdb3be4395707 274854 
libaqhbci19_5.0.5-1_i386.deb
 e4169e43b308ac92f964e7c074cdf85a00c2ba2ef06c0543ddd14a47fd86b2c3 84940 
libaqofxconnect7_5.0.5-1_i386.deb
 dbae095e5414a8e20eeb7d955c6e6ac4648235ff47af51ac2d6e9a3b5d1381b1 781734 
libaqbanking-doc_5.0.5-1_all.deb
 1240671c5fa5353a16dc523a89980193a4c34134b902efafb3db42e1a62afc97 2512166 
libaqbanking-data_5.0.5-1_all.deb
Files: 
 7c492f68f1bf2809bf2c91cf223223aa 1495 libs optional libaqbanking_5.0.5-1.dsc
 b50c28887fc9fd2fc9a4d9fc996497e6 3540552 libs optional 
libaqbanking_5.0.5.orig.tar.gz
 7668743f968ca45b6ef0e25c20c708a3 30643 libs optional 
libaqbanking_5.0.5-1.debian.tar.gz
 bb9b4ed757646e514a365f370df0cf6a 97738 libdevel optional 
libaqbanking33-dev_5.0.5-1_i386.deb
 a30b25260d73461b3250a64d60897f25 99728 utils optional 
aqbanking-tools_5.0.5-1_i386.deb
 9765aa22bff197d529a445444e98afa9 140108 libs optional 
libaqbanking33-plugins_5.0.5-1_i386.deb
 61a4bec1d26a6d6541ab194dcf0ce1f9 64950 libs optional 
libaqbanking-plugins-libgwenhywfar60_5.0.5-1_i386.deb
 4ad4882451eba26ac7c3def604a7c0ff 232972 libs optional 
libaqbanking33_5.0.5-1_i386.deb
 352a7741a7a57e3e4e28409acb67a9f4 1091194 debug extra 
libaqbanking33-dbg_5.0.5-1_i386.deb
 9ab71bc6b07473354c14df7ddcce2bff 274854 libs optional 
libaqhbci19_5.0.5-1_i386.deb
 46cc86492c52ae4144ba682252522dc2 84940 libs optional 
libaqofxconnect7_5.0.5-1_i386.deb
 

Accepted libcompress-raw-bzip2-perl 2.033-1 (source i386)

2011-03-17 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 17 Mar 2011 22:09:21 +0100
Source: libcompress-raw-bzip2-perl
Binary: libcompress-raw-bzip2-perl
Architecture: source i386
Version: 2.033-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libcompress-raw-bzip2-perl - low-Level interface to bzip2 compression library
Closes: 577989
Changes: 
 libcompress-raw-bzip2-perl (2.033-1) unstable; urgency=low
 .
   * Move under the umbrella of the Debian Perl Group with maintainer's
 permission (cf. http://bugs.debian.org/577989)
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
 field (source stanza). Changed: Maintainer set to Debian Perl Group
 pkg-perl-maintain...@lists.alioth.debian.org (was: Bas Zoetekouw
 b...@debian.org); Bas Zoetekouw b...@debian.org moved to
 Uploaders.
   * debian/watch: update to ignore development releases.
 .
   * New upstream release (closes: #577989).
   * Add /me to Uploaders.
   * Switch to debhelper 8.
   * Set Standards-Version to 3.9.1; remove version from perl build dependency.
   * Don't install README anymore.
   * Minimize debian/rules.
   * Update debian/copyright (formatting, years of copyright, third-party
 files).
Checksums-Sha1: 
 36074169a57241dd30aa9892d8185eca91dc5539 2123 
libcompress-raw-bzip2-perl_2.033-1.dsc
 72218c81736b15874248e85cbca1f4ff3aec59fd 124811 
libcompress-raw-bzip2-perl_2.033.orig.tar.gz
 43476898b2940fb922866ce9d5ac6b1c75acb1a1 3277 
libcompress-raw-bzip2-perl_2.033-1.debian.tar.gz
 5b13073ac2d3f632e65b52da474854d7e741 30194 
libcompress-raw-bzip2-perl_2.033-1_i386.deb
Checksums-Sha256: 
 2fb0bd2fe375cdc776861849b48bcb3bbdc41b8bdcc44e77b9c82067581c4084 2123 
libcompress-raw-bzip2-perl_2.033-1.dsc
 84cf7004eb39395ebc7628e421b96a4ec53ec821f4259cafb5cdc7ec5cc406ab 124811 
libcompress-raw-bzip2-perl_2.033.orig.tar.gz
 b1b0a95178d7c096a7f634d74a94c17e25a0defa7e60c2d5edc7e867c792e673 3277 
libcompress-raw-bzip2-perl_2.033-1.debian.tar.gz
 1009be8500255cb68f9ee5f23d3ad71b03cf85ce475065905b92f39f48cd015e 30194 
libcompress-raw-bzip2-perl_2.033-1_i386.deb
Files: 
 3ca871d8ae994806d8640e238db50847 2123 perl optional 
libcompress-raw-bzip2-perl_2.033-1.dsc
 7978a4dde2a9d8e9dd05ab23ee0d1278 124811 perl optional 
libcompress-raw-bzip2-perl_2.033.orig.tar.gz
 b2ecb1abc00343c4d7a3578b702ac44e 3277 perl optional 
libcompress-raw-bzip2-perl_2.033-1.debian.tar.gz
 3a43e5745b00d31614347d9b84d2e6e0 30194 perl optional 
libcompress-raw-bzip2-perl_2.033-1_i386.deb

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

iQIcBAEBCAAGBQJNgnjyAAoJELs6aAGGSaoGZf4QAK6SRRh9r1ug7iSkbvnvHQt0
9c8ZvBjujiJbiJagMpWuTOGYxli9KCOGWcMZ8lhOuh7lTwfrlCQTpRWQYpOSLVbQ
6b6YqCCOOYK9mY6cmshSjyLjH/QJ26cTNRhp+FBGwqOuFrdG63xUPlBW38rFT5iS
TKk4zG2x8542U4qNs2758mHJDuovItRXNEIGYKW+rze/Knqh9cogG9XtEBOT48FG
o21WVMZYJTzRQI9DYmbsNoEVK83PziQAEsxVll7MxWYlazbaCzUufpqzfuEdn7r/
bTJ0MIlXgt+GR/CozC9VVYJ9Su02vefpX8l9FUQ3NuJdJkADglh1qfNWv/Z4X+gJ
R6g16bK37cduQF5dDshs4lzEZWASMMI3ECE97mX8Qq+EGzK69b7CxWKgSyW6iBr3
rhT21UHflZap+TVthMOgVbJ6T8EyGXpsg4INB83XroZurMrv0Oh6PYA4qx+4/BsJ
iHqZFsfwidMymhKDjN4pquU6verUs1VpS1hggxLXnQpwt8WcB32lHQxxwOLbtYZO
/Zx/g4qlNQTXWkBaixz+PEUY/KLbK/IX7hyc8p6dtOVTERcxsTidD9WAtIBiZVp7
wlS3e0qspRcH1VVgpSEU5Mq3ChFzqokRk9VrItgBPWhHOjjVMxOlfbsyeqtchnYU
xqWSzTCuQhu4/h0qjNEz
=9oYa
-END PGP SIGNATURE-


Accepted:
libcompress-raw-bzip2-perl_2.033-1.debian.tar.gz
  to 
main/libc/libcompress-raw-bzip2-perl/libcompress-raw-bzip2-perl_2.033-1.debian.tar.gz
libcompress-raw-bzip2-perl_2.033-1.dsc
  to main/libc/libcompress-raw-bzip2-perl/libcompress-raw-bzip2-perl_2.033-1.dsc
libcompress-raw-bzip2-perl_2.033-1_i386.deb
  to 
main/libc/libcompress-raw-bzip2-perl/libcompress-raw-bzip2-perl_2.033-1_i386.deb
libcompress-raw-bzip2-perl_2.033.orig.tar.gz
  to 
main/libc/libcompress-raw-bzip2-perl/libcompress-raw-bzip2-perl_2.033.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/e1q0lj2-0002wv...@franck.debian.org



Accepted liblinear 1.7+dfsg-1 (source amd64)

2011-03-17 Thread Christian Kastner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 11 Mar 2011 19:30:51 +0100
Source: liblinear
Binary: liblinear-dev liblinear1 liblinear-dbg liblinear-tools python-liblinear
Architecture: source amd64
Version: 1.7+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Christian Kastner deb...@kvr.at
Changed-By: Christian Kastner deb...@kvr.at
Description: 
 liblinear-dbg - Debugging symbols for LIBLINEAR
 liblinear-dev - Development libraries and header files for LIBLINEAR
 liblinear-tools - Standalone applications for LIBLINEAR
 liblinear1 - Library for Large Linear Classification
 python-liblinear - Python bindings for LIBLINEAR
Closes: 609380
Changes: 
 liblinear (1.7+dfsg-1) unstable; urgency=low
 .
   * New upstream release. Closes: #609380
   * python-liblinear:
 - NAMESPACE CHANGE. In anticipation of upstream's namespace switch for the
   next release, our own namespace switch (which broke compatibility) was
   modified to conform to it.
 - Added NEWS file indicating namespace change
 - Updated README.Debian indicating namespace change
   * debian/control:
 - Bumped Standards-Version to 3.9.1 (no changes needed)
 - Modified Depends: of liblinear-dev to support alternative BLAS
   implementations
 - Fixed broken Vcs-Browser URL.
   * debian/copyright:
 - Refreshed DEP5-format to r166
 - Refreshed copyrights
 - Added Disclaimer for the modifications made during DFSG-cleaning
 - Relicense all of my contributions to BSD-3-clause to facilitate possible
   inclusions in upstream
   * debian/liblinear1.symbols:
 - Added new symbols
 - Removed the unnecessary dfsg suffix
   * debian/rules:
 - Added target get-orig-source
 - Don't hardcode CFLAGs; honor dpkg-buildflags
 - On systems with a dpkg-dev ( 1.15.6), the symbols file is removed prior
   before dh_makeshlibs runs. This is a convenience solution for backporters
   on platforms where the c++ tags would otherwise cause build failures.
   This is temporary solution.
   * debian/patches:
 - Added 0003-Add-missing-solver-to-Python-bindings
 - Dropped 0002-Move-Python-bindings-to-package-liblinear
 - Added 0004-Python-namespace-change.patch
   (i.e., the old namespace switch was dropped, and the new one implemented
   as a fresh patch)
Checksums-Sha1: 
 1743116e455f8a5111a74d88d46e77e142cbd078 1922 liblinear_1.7+dfsg-1.dsc
 d38bbaac92aee88dc94192ed32a02cb95a143443 43797 liblinear_1.7+dfsg.orig.tar.gz
 a8a18b2efe135accad66b593ba7499d8f558cba3 9725 
liblinear_1.7+dfsg-1.debian.tar.gz
 ae347b0a6d2aff7c9f91dba86e1968eb18a8a22d 28202 
liblinear-dev_1.7+dfsg-1_amd64.deb
 36f4f9620f24e5a527b6898f8a3fda8ba05793c7 33792 liblinear1_1.7+dfsg-1_amd64.deb
 db9c1ab0db0478bf3f25acf9745fbf6e3ef43eb6 50360 
liblinear-dbg_1.7+dfsg-1_amd64.deb
 2b65dcc69dc0ea9eeec6914b33cb1d79924f3ee6 19696 
liblinear-tools_1.7+dfsg-1_amd64.deb
 98d473febcbf631e8fbb37f8ba2fb153a3fc7aa6 13398 
python-liblinear_1.7+dfsg-1_amd64.deb
Checksums-Sha256: 
 c0eca6fe8b26aa4d378af4d960385997e7e3bafed5875059cfdb389e57d53b25 1922 
liblinear_1.7+dfsg-1.dsc
 2c8b794dac08d23fd43e79378a567876e390b5fec77c3f4b2edbb5df8bf2c13b 43797 
liblinear_1.7+dfsg.orig.tar.gz
 41ec646a13e4087726f9dbf13041d2ff5c19385c5d8869fc50493de0c336e080 9725 
liblinear_1.7+dfsg-1.debian.tar.gz
 2f349a7092500fa1051989119749283582c34bf404cfee098098413a769f3b6f 28202 
liblinear-dev_1.7+dfsg-1_amd64.deb
 7fd16f3b1b2ec7465972904ba96974a3a89cbe1bc03af6b66455dd2d444a3139 33792 
liblinear1_1.7+dfsg-1_amd64.deb
 0b483b2175624ac066690fd8f3c1bd59d2d41e2a2f60372d08bd380587f5d85c 50360 
liblinear-dbg_1.7+dfsg-1_amd64.deb
 8dddb882fba473b5c9dc25d7be5fabf89b16e407cbe3db9789964f79770e 19696 
liblinear-tools_1.7+dfsg-1_amd64.deb
 1be059b6aa0f81910d45c730c78462908c4d6fde46d6268e22932ce2dfc09c66 13398 
python-liblinear_1.7+dfsg-1_amd64.deb
Files: 
 836008cede06291a88fab23eabdf559c 1922 libs optional liblinear_1.7+dfsg-1.dsc
 792f93074a27b1ff424c55c875dc 43797 libs optional 
liblinear_1.7+dfsg.orig.tar.gz
 434fbfb6f6feb1df7c731d7685ed1fd6 9725 libs optional 
liblinear_1.7+dfsg-1.debian.tar.gz
 f99436becd6974f8d6a3e92c34a1303f 28202 libdevel optional 
liblinear-dev_1.7+dfsg-1_amd64.deb
 2d5b689613650cdd33622255774458be 33792 libs optional 
liblinear1_1.7+dfsg-1_amd64.deb
 7025ebd8c45319f76689ee2b8df92ba2 50360 debug extra 
liblinear-dbg_1.7+dfsg-1_amd64.deb
 bc4a2893b5387162fdf72dbf05b2e4fd 19696 science optional 
liblinear-tools_1.7+dfsg-1_amd64.deb
 df05589c49c4a27e9e8a4d1daeb2ecd2 13398 python optional 
python-liblinear_1.7+dfsg-1_amd64.deb

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

iQIcBAEBCAAGBQJNgnlAAAoJEH82z1Wqh6p38AIQAKj5jSjCJ0LQZA2jJjQcdctq
mbzK5tYlk5e1gilqwYfMj2WSeX0We0DGR3YoHAonL75Y0U3ESPJ4f6Dw6sQZb63I
K3FUOh0RPwJtmXPuOWvHdGFzNH9Vr/zHBIXmmTEsKDacmZriIN7lqpxpZyp3u8CK
dzmEdMZ9U9XE2ADA0cA8xtJrzW5EXyVTb+UozN6RIWvPevKWee6HZvX7zYm64HWs

  1   2   >