Re: Report from the Bug Squashing Party in Salzburg

2012-06-22 Thread Thomas Goirand
On 06/21/2012 10:53 AM, Paul Wise wrote:
 On Thu, Jun 21, 2012 at 6:50 AM, Philip Ashmore wrote:

   
 The thought of setting up personal (or even Debian-wide) Google+ servers
 never occurred to me.
 
 I think you might have missed the point. Google+ is a proprietary SaaS
 used for selling your eyeballs to advertisers. It is unlikely that
 Google will ever let it be installed on other servers, let alone
 release the source code under a free license. Debian should avoid
 using such SaaS offerings and promote the free alternatives that exist
 and the movements that support them, some links:

 http://autonomo.us/
 http://wiki.debian.org/FreedomBox
 http://mako.cc/writing/hill-free_tools.html
   
I of course agree. If I may, that one is cool too:
http://www.bigbluebutton.org/

Maybe it will reach Debian one day?

Thomas


-- 
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/4fe40bd0.4080...@debian.org



Re: Report from the Bug Squashing Party in Salzburg

2012-06-22 Thread Thomas Goirand
On 06/21/2012 10:39 PM, Jon Dowland wrote:
 Fair enough - but let's not lob hand grenades at people who might find it
 useful. Let them get on with it if they want to.
   
Sorry, but it's fair enough to lob hand grenades at people suggesting
non open source solutions, useful or not. Feel free to get on them if you
wish, but please do not suggest it inside Debian.

Thomas


-- 
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/4fe40cd3.6050...@debian.org



Re: Introducing http.debian.net, Debian's mirrors redirector

2012-06-22 Thread Philipp Kern
shirish,

am Fri, Jun 22, 2012 at 09:33:34AM +0530 hast du folgendes geschrieben:
 Another thing which is puzzling is that stable inRelease is ignored. I
 dunno if this was before  and I'm realizing it now or it's due to the
 use of mirror redirector or something else. I do recall stable
 inRelease doing well. Anyways, this is what I'm a bit concerned about
 as well.

there should be no InRelease for stable. It's not needed given that stable
basically doesn't change and didn't support two signatures at some point.

So that's ok and fine.

Kind regards
Philipp Kern


signature.asc
Description: Digital signature


Re: build-time testing of pure arch:all packages

2012-06-22 Thread Stefano Zacchiroli
On Fri, Jun 22, 2012 at 12:29:48AM -0400, Yaroslav Halchenko wrote:
 I was thinking about a bit more automated way... ideally (in the long
 run) even that FTBFS (e.g. due to failed tests or some other arch
 specific quirks) would forbid automatic migration  to wheezy etc --
 kinda full blown benefits from the Debian infrastructure  without
 much of work from my side ;)

Did you check if the QA rebuilds try to, or could be asked to, build
arch:all packages? If so, it'd be a good start to routinely do
archive-wide rebuilds of arch:all packages as we routinely do rebuilds
of arch:any packages.

(Cc:-ing Lucas, for his great work on QA rebuilds.)

Cheers.
-- 
Stefano Zacchiroli zack@{upsilon.cc,pps.jussieu.fr,debian.org} . o .
Maître de conférences   ..   http://upsilon.cc/zack   ..   . . o
Debian Project Leader...   @zack on identi.ca   ...o o o
« the first rule of tautology club is the first rule of tautology club »


signature.asc
Description: Digital signature


Re: Announce: script to automatically restart services after update of dependencies

2012-06-22 Thread Goswin von Brederlow
Ben Hutchings b...@decadent.org.uk writes:

 On Thu, Jun 21, 2012 at 11:16:51AM +0200, Goswin von Brederlow wrote:
 Ben Hutchings b...@decadent.org.uk writes:
 
  On Tue, 2012-06-19 at 15:29 +0300, Eugene V. Lyubimkin wrote:
  Hello,
  
  On 2012-06-19 13:59, Tomas Pospisek wrote:
   This implies that an apt-get install library needs to trigger that
   restart.
   Which means that apt-get needs to depend on restart-services. So either
   restart-services and checkrestart should go into the apt package, or apt
   needs
   to depend on/recommend debian-goodies, which would currently pull in
   python,
   perl, curl, dialog and their respective dependencies.
   
   The later may be a technically working solution, but from a conceptual 
   and
   a
   KISS point of view doesn't make sense to me.
   
   Is my conclusion correct so far?
   
   So if we want a clean solution, then checkrestart/restart-services 
   would
   need
   to move into apt and get rid of the non-essential dependencies (get
   rewritten in
   shell or C).
  
  I believe this is a wrong layer for proposed functionality -- apt-get
  (libapt) is not the only high-level package manager for Debian.
 
  If I were you, I'd look into dpkg file triggers instead. Triggers will
  by the way automatically solve the problem that you don't restart
  a service 5 times if 5 libraries were upgraded.
 
  But we still need one trigger per service?  I don't think that's a good
  idea.
 
  Ben.
 
 Do you? Why not a trigger that calls checkrestart?
  
 I was thinking we would need a file trigger per service, which is
 activated automatically (requires changing all service packages);
 or an explicit trigger, which is activated by each library postinst
 (requires changing all library packages).

 Are you suggesting a file trigger on /lib and /usr/lib?  It seems
 inefficient as I think the triggered postinst would have to check
 *all* libraries, but I suppose it would work.  And presumably this is
 no worse than what checkrestart does now.

 Ben.

Yes, a single file trigger for /lib and /usr/lib. Unfortunately dpkg
does not tell the trigger what files have changed so indeed it would have
to check all libraries if you go that way.

If we go with an opt-in model then I would have services drop a file in
/usr/share/checkrestart/ listing the binaries (or pidfiles) that need to
be checked, look up the pid of any running instance and then check if it
has any deleted libraries in use.

This could also be part of the LSB header of init scripts or a comment
in the upstart/systemd config instead of
/usr/share/checkrestart/service.


Another idea would be to extend start-stop-daemon (upsstart / systemd)
to have a new option --respawn. This would do two things: 1) monitor the
child and restart a service that dies unexpectadly. 2) register the
daemon for checkrestart.  In that case start-stop-daemon would come with
an dpkg trigger to check and do the restarts.

This would be an opt-in though. Using checkrestart + blacklist would be
opt-out and would give more imediate results.

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



Re: Is it possible to run autopkgtest without a virtual machine ?

2012-06-22 Thread Charles Plessy
Le Fri, Jun 22, 2012 at 01:24:43PM +0900, Charles Plessy a écrit :
 
 adt-run needs a virtual machine.  I know that some developers have
 some workarounds, but couldn't autopkgtest also support running tests on the 
 local
 system ?  This would be tremendously useful when the tests can be contained in
 the binary packages, as it would make it very easy for our users and ourselves
 to test the packages.

Thanks to Michael's hint, I found that the following command will work locally.

sudo adt-run --no-built-binaries foo.dsc --- adt-virt-null

(See https://lists.debian.org/debian-devel/2012/06/msg00501.html )

I guess that the next step is to let autopkgtest run as a user
(http://bugs.debian.org/648148), make it easier to invoke (adt-virt-null is not
mentionned in the manual page, and even with --no-built-binaries it still tries
to download some stuff or create a GPG key), and give it a more user-friendly
output.

For people with free time, that would probably be high-impact contribution.  I
will add more autopkgtest to my packages, and would love to be able to tell to
our users a simple command to test if the package is working on their system.

Have a nice week-end,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


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



Re: build-time testing of pure arch:all packages

2012-06-22 Thread Goswin von Brederlow
Stefano Zacchiroli z...@debian.org writes:

 On Fri, Jun 22, 2012 at 12:29:48AM -0400, Yaroslav Halchenko wrote:
 I was thinking about a bit more automated way... ideally (in the long
 run) even that FTBFS (e.g. due to failed tests or some other arch
 specific quirks) would forbid automatic migration  to wheezy etc --
 kinda full blown benefits from the Debian infrastructure  without
 much of work from my side ;)

You can do this in a not so nice way like this:

1) if you have no Architecture: any package then add a
package-test-logs package.
2) build-arch depends on build-indep (i.e. always compile the arch:all
   stuff)
3) in build-arch run the tests and include the log in the
   Architecture:any package

This adds a stupid dummy package to the archive that nobody but you need
or fattens up an existing one with a logfile nobody but you need. That
is the not so nice part. But it would do what you want now.

Note: Consider carefully if it wouldn't make more sense to help build a
real automatic testing infrastructure (which could reuse idle
buildd). How urgently do you need those tests to be run?

 Did you check if the QA rebuilds try to, or could be asked to, build
 arch:all packages? If so, it'd be a good start to routinely do
 archive-wide rebuilds of arch:all packages as we routinely do rebuilds
 of arch:any packages.

 (Cc:-ing Lucas, for his great work on QA rebuilds.)

Are archive wide rebuilds done on anythiong but i386/amd64?

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



Re: Is it possible to run autopkgtest without a virtual machine ?

2012-06-22 Thread Goswin von Brederlow
Charles Plessy ple...@debian.org writes:

 Dear all,

 I think that the idea behind autopkgtest (DEP 8) is very interesting, and 
 could
 eventually replace build-time regression tests.  To train myself, I tried to
 implement simple tests for the tabix package.

 However, adt-run needs a virtual machine.  I know that some developers have
 some workarounds, but couldn't autopkgtest also support running tests on the 
 local
 system ?  This would be tremendously useful when the tests can be contained in
 the binary packages, as it would make it very easy for our users and ourselves
 to test the packages.

 Have a nice day,

I think test should be run in a container (or VM) but never the local
system itself. The absolute minimum would be a chroot but a container
would give better control over things like networking.

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/877guzlnxv.fsf@frosties.localnet



The future (or non-future) of ia32-libs

2012-06-22 Thread Goswin von Brederlow
Hi,

two weeks ago we hit a huge milestone with multiarch and wine:i386
became installable on amd64. Last week we hit another milestone so that
ia32-libs became mostly installable (it might still want to remove some
amd64 packages in the process depending on what you have installed).

As a consequence I've already uploaded an ia32-libs transitional package
[1], currently in NEW, that will allow ia32-libs users to easily switch
to multiarch. The transitional package can be removed when nothing
depends on it anymore and ends the nightmare of ia32-libs for good.

But the work is not done yet. There are still some bugs left to fix for
the full multiarch experience:

#677741 ia32-libs: Multiarch issues
---
#677735 freeglut: Please add multiarch support
#675797 sane-utils: should be Multi-Arch: foreign
#651475 isdnutils: support Multi-Arch
#677733 xcb-util-renderutil: Please add multiarch support

And then there is also ia32-libs-gtk [2], which is not yet installable as
multiarch:

#677762 ia32-libs-gtk: Multiarch issues
---
#677787 gtk2-engines-xfce: Please add multiarch support
#677788 lesstif2: Please add multiarch support
#650777 libgnomecanvas: Please mark libgnomecanvas-common Multi-Arch: foreign
#676914 libsasl2-2: binNMU broke multi-arch installability
#650787 libglade2: Please transition libglade2 for multiarch
#676918 libsasl2-2:amd64: Package is MA-same, but changelog differs between 
architectures after binNMU
#641614 libidl: please convert to multiarch
#641615 orbit2: Please convert to multiarch
#677786 libwmf: Please add multiarch support
#68 libbonobo: Please add multiarch support
#69 at-spi: Please add multiarch support

Any help NMUing (if not already in delayed) those package would be
apreciated. If we can get those bugs fixed in the next week then 99% of
the multiarch needs for amd64 will be covered.

If you do test those packages and find other bugs then please report
them set them as blocking the respective meta bug (#677741 or #677762).
Those bugs should also be usertagged with:

  user: multiarch-de...@lists.alioth.debian.org
  usertags: multiarch

That way they count towards the multiarch release goal [3] and show up
on the QA page of the relevant package as blocking that goal.



Dear Release Team,

ia32-libs now builds 2 transitional packages: ia32-libs:amd64 and
ia32-libs-i386:i386. The former depends on the later and the later
depends on all the 32bit libraries that ia32-libs used to contain. This
means that the dependencies of ia32-libs:amd64 are not fullfillable in
amd64 and the package will need some big hammer to get it past britney
into testing, as previosuly discussed.

Upgrading from squeeze to wheezy also needs 3 steps and should be
documented in the release notes. This applies to ia32-libs,
ia32-libs-gtk, wine, any other 32bit stuff for amd64 that switches to
multiarch.

Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
Step 2: dpkg --add-architecture i386  apt-get update
Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)

Help from some native english speaker to write something for the release
notes would be welcome.

MfG
Goswin

[1] 
http://mentors.debian.net/debian/pool/main/i/ia32-libs/ia32-libs_20120616.dsc
[2] 
http://mentors.debian.net/debian/pool/main/i/ia32-libs-gtk/ia32-libs-gtk_20120616.dsc
[3] http://wiki.debian.org/ReleaseGoals/MultiArch


-- 
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/87395nlmgb.fsf@frosties.localnet



Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Marco d'Itri
On Jun 22, Goswin von Brederlow goswin-...@web.de wrote:

 Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
 Step 2: dpkg --add-architecture i386  apt-get update
 Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)
Maybe this is easier?

1: upgrade dpkg and apt
2: dpkg --add-architecture i386  apt-get update
3: dist-upgrade as usual

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: build-time testing of pure arch:all packages

2012-06-22 Thread Lucas Nussbaum
Hi,

On 22/06/12 at 09:37 +0200, Stefano Zacchiroli wrote:
 On Fri, Jun 22, 2012 at 12:29:48AM -0400, Yaroslav Halchenko wrote:
  I was thinking about a bit more automated way... ideally (in the long
  run) even that FTBFS (e.g. due to failed tests or some other arch
  specific quirks) would forbid automatic migration  to wheezy etc --
  kinda full blown benefits from the Debian infrastructure  without
  much of work from my side ;)
 
 Did you check if the QA rebuilds try to, or could be asked to, build
 arch:all packages? If so, it'd be a good start to routinely do
 archive-wide rebuilds of arch:all packages as we routinely do rebuilds
 of arch:any packages.
 
 (Cc:-ing Lucas, for his great work on QA rebuilds.)

In my archive rebuilds, I rebuild arch:all packages and file bugs when
they fail to build (see the large amount of bugs filed against perl
modules due to test suites failures).

Those rebuilds happen once or twice a month on average.

  Lucas


-- 
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/20120622111957.ga32...@xanadu.blop.info



Re: build-time testing of pure arch:all packages

2012-06-22 Thread Lucas Nussbaum
On 22/06/12 at 10:56 +0200, Goswin von Brederlow wrote:
 Are archive wide rebuilds done on anythiong but i386/amd64?

A long time ago, I played with archive rebuilds inside qemu for mips or
mipsel. It is probably doable, but needs someone to do the work.

Lucas


-- 
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/20120622112121.gb32...@xanadu.blop.info



Bug#678519: general: after about 1 month of uptime, routing of IPv6 packets is no longer possible, and IPv4 routing becomes slow and unpredictable. Rebooting brings all functionality back, and back to

2012-06-22 Thread Rudy Zijlstra
Package: general
Severity: important
Tags: ipv6

let system run with IPv4  IPv6 routing for about 1 month
 IPv6 routing will start to fail
 IPv4 routing becomes slow and unpredictable

no obvious causes visible in the system. top and friends do not show a cpu hog

a reboot will bring the system back to normal behaviour. 

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

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



-- 
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/20120622115937.1905.22529.report...@janus.office.romunt.nl



Bug#678519: general: after about 1 month of uptime, routing of IPv6 packets is no longer possible, and IPv4 routing becomes slow and unpredictable. Rebooting brings all functionality back, and back to

2012-06-22 Thread Roberto C . Sánchez
On Fri, Jun 22, 2012 at 01:59:37PM +0200, Rudy Zijlstra wrote:
 Package: general
 Severity: important
 Tags: ipv6
 
 let system run with IPv4  IPv6 routing for about 1 month
  IPv6 routing will start to fail
  IPv4 routing becomes slow and unpredictable
 
 no obvious causes visible in the system. top and friends do not show a cpu hog
 
 a reboot will bring the system back to normal behaviour. 
 
Could this be something to do with connection tracking?

Regards,

-Roberto
-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Thomas Goirand
On 06/22/2012 05:34 PM, Goswin von Brederlow wrote:
 Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
 Step 2: dpkg --add-architecture i386  apt-get update
 Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)
   
May I suggest that upon upgrade, we have a debconf message telling
about it? We could add this in base-files or any essential package,
probably one with some debconf messages already in would be a better
pick. Instructions would show, IF ia32-libs old version is currently
installed
AND the --add-architecture i386 hasn't bee done.

I know we have release notes, but some don't know about them or would
simply not read them. A debconf message seem really appropriate IMO.
Something along with:

 It appears that you have an old version of ia32-libs installed in your
 system. Debian now supports multi-arch, and the new version of
 ia32-libs (a transitional package) uses and needs this new feature.
 .
 In order to upgrade the version of ia32-libs in your system, you will
 need to do:
dpkg --add-architecture i386
apt-get update
apt-get dist-upgrade

 Until you do this, upgrades of ia32-libs and packages depending on
 it (wine, other examples, etc.) will not be possible. More information
 about this available at: https://wiki.debian.org/please-fill

I'm ok to contribute a small patch doing this.
Thoughts? Any English guy to propose a better wording?

Cheers,

Thomas


-- 
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/4fe473df.8000...@debian.org



Bug#678519: general: after about 1 month of uptime, routing of IPv6 packets is no longer possible, and IPv4 routing becomes slow and unpredictable. Rebooting brings all functionality back, and back to

2012-06-22 Thread Rudy Zijlstra

On 22-06-12 15:04, Roberto C. Sánchez wrote:

On Fri, Jun 22, 2012 at 01:59:37PM +0200, Rudy Zijlstra wrote:

Package: general
Severity: important
Tags: ipv6

let system run with IPv4  IPv6 routing for about 1 month

IPv6 routing will start to fail
IPv4 routing becomes slow and unpredictable

no obvious causes visible in the system. top and friends do not show a cpu hog

a reboot will bring the system back to normal behaviour.


Could this be something to do with connection tracking?

Regards,

-Roberto
Both IPv4 and IPv6 are impacted, which have separate iptables. IPv6 
routing gets fully blocked, IPv4 goes slow and unpredictable.


How could i check any relation to connection tracking?

cheers,


Rudy



--
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/4fe46f3c.9040...@grumpydevil.homelinux.org



Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Roger Leigh
On Fri, Jun 22, 2012 at 09:32:15PM +0800, Thomas Goirand wrote:
 On 06/22/2012 05:34 PM, Goswin von Brederlow wrote:
  Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
  Step 2: dpkg --add-architecture i386  apt-get update
  Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)

 May I suggest that upon upgrade, we have a debconf message telling
 about it? We could add this in base-files or any essential package,
 probably one with some debconf messages already in would be a better
 pick. Instructions would show, IF ia32-libs old version is currently
 installed
 AND the --add-architecture i386 hasn't bee done.
 
 I know we have release notes, but some don't know about them or would
 simply not read them. A debconf message seem really appropriate IMO.

Could we not introduce the concept of an upgrade script into
apt-get which could be downloaded when you run apt-get update and
then run during a dist-upgrade?  This could handle automation of
any housekeeping during the upgrade which would otherwise require
manual work detailed in the release notes.

For example, if the ia32-libs package is installed, this could
automatically update dpkg and apt-get, then automatically add the
architecture and update prior to continuing with the upgrade.  It
could also handle any additional work which needs doing before and
after the upgrade of the whole distribution, or any particular
package.  i.e. handling any work which the package maintainer
scripts can't safely or sensibly handle.

Doesn't the Ubuntu updater tool do something like this already when
it does a full upgrade between releases?


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linuxhttp://people.debian.org/~rleigh/
 `. `'   schroot and sbuild  http://alioth.debian.org/projects/buildd-tools
   `-GPG Public Key  F33D 281D 470A B443 6756 147C 07B3 C8BC 4083 E800


-- 
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/20120622143137.gf9...@codelibre.net



Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Adam D. Barratt

On 22.06.2012 15:31, Roger Leigh wrote:

On Fri, Jun 22, 2012 at 09:32:15PM +0800, Thomas Goirand wrote:

On 06/22/2012 05:34 PM, Goswin von Brederlow wrote:
 Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
 Step 2: dpkg --add-architecture i386  apt-get update
 Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)

[...]
I know we have release notes, but some don't know about them or 
would

simply not read them. A debconf message seem really appropriate IMO.


Could we not introduce the concept of an upgrade script into
apt-get which could be downloaded when you run apt-get update and
then run during a dist-upgrade?  This could handle automation of
any housekeeping during the upgrade which would otherwise require
manual work detailed in the release notes.


As a theoretical future enhancement, possibly.  That won't help for 
squeeze to wheezy upgrades though, as squeeze's apt would need to 
include support for it.


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/c0411bd3da03f0beef873e944da54...@mail.adsl.funky-badger.org



Re: build-time testing of pure arch:all packages

2012-06-22 Thread Yaroslav Halchenko

On Fri, 22 Jun 2012, Goswin von Brederlow wrote:
  I was thinking about a bit more automated way... ideally (in the long
  run) even that FTBFS (e.g. due to failed tests or some other arch
  specific quirks) would forbid automatic migration  to wheezy etc --
  kinda full blown benefits from the Debian infrastructure  without
  much of work from my side ;)

 You can do this in a not so nice way like this:

 1) if you have no Architecture: any package then add a
 package-test-logs package.
 2) build-arch depends on build-indep (i.e. always compile the arch:all
stuff)
 3) in build-arch run the tests and include the log in the
Architecture:any package

 This adds a stupid dummy package to the archive that nobody but you need
 or fattens up an existing one with a logfile nobody but you need. That
 is the not so nice part. But it would do what you want now.

Thank you Goswin for detailing my evil non-archive-friendly option ;-)

 Note: Consider carefully if it wouldn't make more sense to help build a
 real automatic testing infrastructure (which could reuse idle
 buildd). How urgently do you need those tests to be run?

Thanks for asking -- there is no urgency per se.  One of the issues in
nibabel was triggered by nipy build (failure is still there [1]) so we
exercised it and upstream has it already fixed (release/upload will
follow shortly).   But my email came out of wondering how many of other
arch:all packages we have in the archive without such a build-time
QA, thus possibly broken on exotic ports.

[1] https://buildd.debian.org/status/package.php?p=nipy

  archive-wide rebuilds of arch:all packages as we routinely do rebuilds
  of arch:any packages.
  (Cc:-ing Lucas, for his great work on QA rebuilds.)
 Are archive wide rebuilds done on anythiong but i386/amd64?

IMHO if archive-wide rebuild could be carried on at least one
representative big-endian architecture (e.g. sparc) -- it might already
be quite useful. 

Do we also have some time share on one of the top3 HPC boxes [2] +
Lucas#2 to take care about it?  ;-)

[2] http://en.wikipedia.org/wiki/TOP500

-- 
Yaroslav O. Halchenko
Postdoctoral Fellow,   Department of Psychological and Brain Sciences
Dartmouth College, 419 Moore Hall, Hinman Box 6207, Hanover, NH 03755
Phone: +1 (603) 646-9834   Fax: +1 (603) 646-1419
WWW:   http://www.linkedin.com/in/yarik


-- 
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/20120622151951.gf5...@onerussian.com



Re: Report from the Bug Squashing Party in Salzburg

2012-06-22 Thread Philip Ashmore

On 22/06/12 07:12, Thomas Goirand wrote:

On 06/21/2012 10:39 PM, Jon Dowland wrote:

Fair enough - but let's not lob hand grenades at people who might find it
useful. Let them get on with it if they want to.


Sorry, but it's fair enough to lob hand grenades at people suggesting
non open source solutions, useful or not. Feel free to get on them if you
wish, but please do not suggest it inside Debian.

Thomas

Huh.
So physically travelling to a potentially distant location for a bug 
squash is the Debian way?


Anyway, I'd like to see something like http://www.bigbluebutton.org/ but 
with multiple participants, be it Google+ or something else that can do 
that.


I know that one useful aspect of IRC is the ability to archive and 
review the session, so it should have that feature too.


I must admit I have something in mind for the future that will fit this 
requirement, so anything out there that comes close is of interest to me.


Regards,
Philip Ashmore


--
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/4fe4a49d.5040...@philipashmore.com



Re: Summary: Moving /tmp to tmpfs makes it useless

2012-06-22 Thread Andrei POPESCU
On Mi, 20 iun 12, 15:18:55, Stephan Seitz wrote:
 
 Fine let’s talk. Why can’t we find a compromise? Additional to our
 disk /tmp we create a /ramtmp (so the name suggests that this tmp is
 a ramdisk) with tmpfs. This should be doable in time for Wheezy. The
 release notes should mention it. And those who wish can patch their
 programs to use the ramdisk if they think their program uses only
 small temporary files. In this way, we get some data and experience.
 And we have both worlds. /tmp on disk for even large temporary files
 and /ramtmp as fast ramdisk.

Why not use /run instead?

Kind regards,
Andrei
-- 
Offtopic discussions among Debian users and developers:
http://lists.alioth.debian.org/mailman/listinfo/d-community-offtopic


signature.asc
Description: Digital signature


Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Luk Claes
On 06/22/2012 04:31 PM, Roger Leigh wrote:
 On Fri, Jun 22, 2012 at 09:32:15PM +0800, Thomas Goirand wrote:
 On 06/22/2012 05:34 PM, Goswin von Brederlow wrote:
 Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
 Step 2: dpkg --add-architecture i386  apt-get update
 Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)
   
 May I suggest that upon upgrade, we have a debconf message telling
 about it? We could add this in base-files or any essential package,
 probably one with some debconf messages already in would be a better
 pick. Instructions would show, IF ia32-libs old version is currently
 installed
 AND the --add-architecture i386 hasn't bee done.

 I know we have release notes, but some don't know about them or would
 simply not read them. A debconf message seem really appropriate IMO.
 
 Could we not introduce the concept of an upgrade script into
 apt-get which could be downloaded when you run apt-get update and
 then run during a dist-upgrade?  This could handle automation of
 any housekeeping during the upgrade which would otherwise require
 manual work detailed in the release notes.

Hmm, I'm not a fan of upgrade scripts at all. Either it's easy enough to
automate in maintainerscripts or it should get careful review for the
context in which it will be applied IMHO (which means the sysadmin can
run the shipped script manually).

 For example, if the ia32-libs package is installed, this could
 automatically update dpkg and apt-get, then automatically add the
 architecture and update prior to continuing with the upgrade.  It
 could also handle any additional work which needs doing before and
 after the upgrade of the whole distribution, or any particular
 package.  i.e. handling any work which the package maintainer
 scripts can't safely or sensibly handle.

Shipping scripts to do that would be a first step that makes much more
sense than having it automated at this stage IMHO.

 Doesn't the Ubuntu updater tool do something like this already when
 it does a full upgrade between releases?

There were quite some bugs with that tool AFAIR. Does it also cover
things that are not supported by Canonical? How does the development and
testing of the tool work?

Cheers

Luk


-- 
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/4fe4ad46.7000...@debian.org



Re: Introducing http.debian.net, Debian's mirrors redirector

2012-06-22 Thread Darren Baginski
On 21 Jun 2012 Raphael Geissert wrote:

 After several iterations to solve problems related to Debian's mirrors
 network, I am happy to announce a fully-functional solution that
 solves many
 of the shortcomings of previous iterations:
 http://http.debian.net

Is there other developer involved in development?
Mind to share data how many 'redirect' were served?
Why do you think redirects is a good idea at all?
Am I understand code properly and you spawn perl cgi script per each
file requested ?



-- 
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/1340387682.19149.2.camel@ph-01.local



Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Bernd Zeimetz
On 06/22/2012 07:37 PM, Luk Claes wrote:
 On 06/22/2012 04:31 PM, Roger Leigh wrote:
 On Fri, Jun 22, 2012 at 09:32:15PM +0800, Thomas Goirand wrote:
 Doesn't the Ubuntu updater tool do something like this already when
 it does a full upgrade between releases?
 
 There were quite some bugs with that tool AFAIR. Does it also cover
 things that are not supported by Canonical? How does the development and
 testing of the tool work?

I think we can do better than having to rely on a weird tool to fix the issues
we produced by not doing a proper QA.


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


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



Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Goswin von Brederlow
Thomas Goirand z...@debian.org writes:

 On 06/22/2012 05:34 PM, Goswin von Brederlow wrote:
 Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
 Step 2: dpkg --add-architecture i386  apt-get update
 Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)
   
 May I suggest that upon upgrade, we have a debconf message telling
 about it? We could add this in base-files or any essential package,
 probably one with some debconf messages already in would be a better
 pick. Instructions would show, IF ia32-libs old version is currently
 installed
 AND the --add-architecture i386 hasn't bee done.

 I know we have release notes, but some don't know about them or would
 simply not read them. A debconf message seem really appropriate IMO.
 Something along with:

Problem is that frontends will complain about ia32-libs being not
upgradable and might suggest removing it instead of keeping it back way
before that. At the time base-file is upgraded ia32-libs and all other
32bit stuff might already have been removed.

 It appears that you have an old version of ia32-libs installed in your
 system. Debian now supports multi-arch, and the new version of
 ia32-libs (a transitional package) uses and needs this new feature.
 .
 In order to upgrade the version of ia32-libs in your system, you will
 need to do:
dpkg --add-architecture i386
apt-get update
apt-get dist-upgrade

 Until you do this, upgrades of ia32-libs and packages depending on
 it (wine, other examples, etc.) will not be possible. More information
 about this available at: https://wiki.debian.org/please-fill

 I'm ok to contribute a small patch doing this.
 Thoughts? Any English guy to propose a better wording?

 Cheers,

 Thomas

I don't think that would be of much help but feel free to try it out
with some real squeeze - wheezy upgrades and see if you see the message
before ia32-libs get removed.

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



Re: build-time testing of pure arch:all packages

2012-06-22 Thread Goswin von Brederlow
Yaroslav Halchenko deb...@onerussian.com writes:

 On Fri, 22 Jun 2012, Goswin von Brederlow wrote:
  archive-wide rebuilds of arch:all packages as we routinely do rebuilds
  of arch:any packages.
  (Cc:-ing Lucas, for his great work on QA rebuilds.)
 Are archive wide rebuilds done on anythiong but i386/amd64?

 IMHO if archive-wide rebuild could be carried on at least one
 representative big-endian architecture (e.g. sparc) -- it might already
 be quite useful. 

 Do we also have some time share on one of the top3 HPC boxes [2] +
 Lucas#2 to take care about it?  ;-)

 [2] http://en.wikipedia.org/wiki/TOP500

My boss recently came back from a conference and he brought back a flyer
about 2U arm server with up to 192 cores and 192 GB ram (on 12 planes a
4 quad core cpus and 4x 4GB ram each) with 10 Gbit networking.

I wonder: How long would an archive wide build take with 192 armel
buildds?

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/877guzurwh.fsf@frosties.localnet



Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Goswin von Brederlow
m...@linux.it (Marco d'Itri) writes:

 On Jun 22, Goswin von Brederlow goswin-...@web.de wrote:

 Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
 Step 2: dpkg --add-architecture i386  apt-get update
 Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)
 Maybe this is easier?

 1: upgrade dpkg and apt
 2: dpkg --add-architecture i386  apt-get update
 3: dist-upgrade as usual

 -- 
 ciao,
 Marco

Sure, that would be enough for the 1. step.

There are a few more packages that need to be updated by hand for other
reasons. Anything between dpkg+apt and everything but ia32-libs will be
fine for me.

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/87395nurtn.fsf@frosties.localnet



Re: Report from the Bug Squashing Party in Salzburg

2012-06-22 Thread Neil Williams
On Fri, 22 Jun 2012 18:00:13 +0100
Philip Ashmore cont...@philipashmore.com wrote:

 On 22/06/12 07:12, Thomas Goirand wrote:
  On 06/21/2012 10:39 PM, Jon Dowland wrote:
  Fair enough - but let's not lob hand grenades at people who might find it
  useful. Let them get on with it if they want to.
 
  Sorry, but it's fair enough to lob hand grenades at people suggesting
  non open source solutions, useful or not. Feel free to get on them if you
  wish, but please do not suggest it inside Debian.
 
  Thomas

 So physically travelling to a potentially distant location for a bug 
 squash is the Debian way?

Yes, it's a lot more fun to work alongside others and you get to have
some beer with new friends, your patches benefit from direct
contributions of others around the same table and there is always room
for more social involvement between people in Debian. We all spend too
long alone with just a laptop for company.

Bug squashing parties are *social* events where bugs happen to get
fixed.

If everything was to be done only remotely there would be no bug
squashing parties at all. There might be lots of bugs fixed but that
isn't a party.

-- 


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



pgpL06EOk5LUj.pgp
Description: PGP signature


Re: Report from the Bug Squashing Party in Salzburg

2012-06-22 Thread Lars Wirzenius
On Fri, Jun 22, 2012 at 07:25:51PM +0100, Neil Williams wrote:
 Bug squashing parties are *social* events where bugs happen to get
 fixed.

http://wiki.debian.org/BSPMarathonWheezy should be useful for anyone
who thinks we're making people travel too long for these things. Host
a BSP! Even if it's just you and one other, it's a success if you make
any progress on any bug at all. Or even if you only have a good time.

-- 
I wrote a book: http://gtdfh.branchable.com/


signature.asc
Description: Digital signature


Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Goswin von Brederlow
Luk Claes l...@debian.org writes:

 On 06/22/2012 04:31 PM, Roger Leigh wrote:
 On Fri, Jun 22, 2012 at 09:32:15PM +0800, Thomas Goirand wrote:
 On 06/22/2012 05:34 PM, Goswin von Brederlow wrote:
 Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
 Step 2: dpkg --add-architecture i386  apt-get update
 Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)
   
 May I suggest that upon upgrade, we have a debconf message telling
 about it? We could add this in base-files or any essential package,
 probably one with some debconf messages already in would be a better
 pick. Instructions would show, IF ia32-libs old version is currently
 installed
 AND the --add-architecture i386 hasn't bee done.

 I know we have release notes, but some don't know about them or would
 simply not read them. A debconf message seem really appropriate IMO.
 
 Could we not introduce the concept of an upgrade script into
 apt-get which could be downloaded when you run apt-get update and
 then run during a dist-upgrade?  This could handle automation of
 any housekeeping during the upgrade which would otherwise require
 manual work detailed in the release notes.

 Hmm, I'm not a fan of upgrade scripts at all. Either it's easy enough to
 automate in maintainerscripts or it should get careful review for the
 context in which it will be applied IMHO (which means the sysadmin can
 run the shipped script manually).

Maybe you shouldn't think of this as a script. Rather think of it as
hints for apt/aptitude to do a dist-upgrade in multiple steps. As you
say the maintainer scripts should do the right thing already. So it is
just a matter of splitting up the package list into smaller chunks so the
upgrade process doesn't explode with a few extra actions inbetween
steps.

For ia32-libs the extra action would be dpkg --add-architecture
i386. For the kernel/udev the action might be reboot. Little things
like that. :)))

In general the upgrade script could consist of lists of white/black
lists of package to be processed in each step and debconf messages being
displayed between steps prompting the user to do certain things before
continuing.

Each time dist-upgrade-by-script is run apt-get would skip all the steps
that produce no change and continue from the first one that does (in
case it was aborted or reboot was needed).

Just an idea. Not that I think this could be done before the freeze.

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



Re: build-time testing of pure arch:all packages

2012-06-22 Thread Dmitrijs Ledkovs
On 22/06/12 19:23, Goswin von Brederlow wrote:
 Yaroslav Halchenko deb...@onerussian.com writes:
 
 On Fri, 22 Jun 2012, Goswin von Brederlow wrote:
 archive-wide rebuilds of arch:all packages as we routinely do rebuilds
 of arch:any packages.
 (Cc:-ing Lucas, for his great work on QA rebuilds.)
 Are archive wide rebuilds done on anythiong but i386/amd64?

 IMHO if archive-wide rebuild could be carried on at least one
 representative big-endian architecture (e.g. sparc) -- it might already
 be quite useful. 

 Do we also have some time share on one of the top3 HPC boxes [2] +
 Lucas#2 to take care about it?  ;-)

 [2] http://en.wikipedia.org/wiki/TOP500
 
 My boss recently came back from a conference and he brought back a flyer
 about 2U arm server with up to 192 cores and 192 GB ram (on 12 planes a
 4 quad core cpus and 4x 4GB ram each) with 10 Gbit networking.
 
 I wonder: How long would an archive wide build take with 192 armel
 buildds?
 

1 day, 5 hours, 48 minutes, 54.3 seconds

libreoffice build in ubuntu amrhf

https://launchpad.net/ubuntu/+source/libreoffice/1:3.5.3-0ubuntu1/+build/3458035

Regards,

Dmitrijs.

-- 
Regards,
Dmitrijs.


-- 
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/4fe4bbcf.2030...@debian.org



Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Yves-Alexis Perez
On ven., 2012-06-22 at 11:34 +0200, Goswin von Brederlow wrote:
 #677787 gtk2-engines-xfce: Please add multiarch support

Note that this one (as investigated in the bug report by Goswin and me)
is a bit spurious. For multi-arch Gtk+ apps, a multi-arch engine
matching the theme used by the end user is needed. So, in fact *each
engine* should be multi-archified (Gtk2 and Gtk3).

But, in fact, only the most used engines might really be candidate. I
didn't really had time to check gtk2-engines-xfce (so patches are
welcome) but I think it should not be too hard (not sure if I'll have
time before the freeze though). Same goes for gtk2-engines-murrine.

Regards,
-- 
Yves-Alexis


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


Re: Introducing http.debian.net, Debian's mirrors redirector

2012-06-22 Thread Dmitry E. Oboukhov
 Hi,

 After several iterations to solve problems related to Debian's mirrors
 network, I am happy to announce a fully-functional solution that solves many
 of the shortcomings of previous iterations: http://http.debian.net

 http.debian.net works as the key component of a content distribution
 network. For a given requested file, it uses several factors to choose one or
 multiple mirrors that can serve the request. Those factors include the
 freshness of the mirror, the network and geographic location, etc.

 How can you use it?
 An entry in /etc/apt/sources.list for stable would look like:

 deb http://http.debian.net/debian stable main

 It supports backports mirrors and others. Except CD image mirrors, they are
 *not* supported.

 More details, comparison to other approaches, and more information can be
 found at:
 http://http.debian.net/

 Oh, and, please help package and maintain mirrorbrain, which would allow a
 similar service to be provided for CD images.

 Thanks for reading.

 P.S. contrary to wheezy, http.debian.net's development will not freeze. It
 is under continuous development, and more users and developers are welcome!


I've tried to use the service. 2/3 requests - 501 error.
unusable.

:(
-- 

. ''`.   Dmitry E. Oboukhov
: :’  :   email: un...@debian.org jabber://un...@uvw.ru
`. `~’  GPGKey: 1024D / F8E26537 2006-11-21
  `- 1B23 D4F8 8EC0 D902 0555  E438 AB8C 00CF F8E2 6537


signature.asc
Description: Digital signature


Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Goswin von Brederlow
Adam D. Barratt a...@adam-barratt.org.uk writes:

 On 22.06.2012 15:31, Roger Leigh wrote:
 On Fri, Jun 22, 2012 at 09:32:15PM +0800, Thomas Goirand wrote:
 On 06/22/2012 05:34 PM, Goswin von Brederlow wrote:
  Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
  Step 2: dpkg --add-architecture i386  apt-get update
  Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)
 [...]
 I know we have release notes, but some don't know about them or
 would
 simply not read them. A debconf message seem really appropriate IMO.

 Could we not introduce the concept of an upgrade script into
 apt-get which could be downloaded when you run apt-get update and
 then run during a dist-upgrade?  This could handle automation of
 any housekeeping during the upgrade which would otherwise require
 manual work detailed in the release notes.

 As a theoretical future enhancement, possibly.  That won't help for
 squeeze to wheezy upgrades though, as squeeze's apt would need to
 include support for it.

 Regards,

 Adam

I actualy have an idea for this special case that should be quick to
implement and could help many users.

Packages with cross architecture dependencies set X-Needs-Architecture:
arch[, ...] in debian/control. Apt-get and aptitude (and maybe dpkg)
can then be patched to give a helpfull error message if the user tries
to install the package without multiarch. They can also hold back the
package until multiarch is enabled (as opposed to suggesting to remove
them as first choice) and even suggest enabling multiarch (wheezy
versions only).

The helpfull error messages and holding back packages would have to be
ported to stable apt/aptitude to be any use for upgrades. And only
people updating to the latest stable point release would benefit from
it.

In the long run though it would be helpfull for everyone. Trying to
install an armel cross compiler on amd64 could automatically detect that
this would require activating armel and suggest to do that now. And so
on. Post wheezy detecting this case could be extended to Depends:
libfoo:arch.

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



Bug#678572: ITP: foremancli -- commandline search interface to Foreman

2012-06-22 Thread Ulrich Dangel
Package: wnpp
Severity: wishlist
Owner: Ulrich Dangel m...@spamt.net

* Package name: foremancli
  Version : 1.0
  Upstream Author : Brian Gupta brian.gu...@brandorr.com
* URL : http://theforeman.org/projects/foreman/wiki/Foremancli
* License : GPL-2+
  Programming Lang: ruby
  Description : commandline search interface to Foreman

This is a commandline tool for searching node information stored in a
Foreman server.

foremancli can be used to search and access all the stored information n
a Foreman server and present the data in text, json or yaml formats.

Foreman is a server application that can be used to provision bare etal,
virtual and cloud servers, and integrates with the Puppet configuration
management system to provide full life cycle managements of one's
server infrastructure.



-- 
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/20120622192026.2217.10293.reportbug@shiny



Re: Summary: Moving /tmp to tmpfs makes it useless

2012-06-22 Thread Henrique de Moraes Holschuh
On Fri, 22 Jun 2012, Andrei POPESCU wrote:
 On Mi, 20 iun 12, 15:18:55, Stephan Seitz wrote:
  Fine let’s talk. Why can’t we find a compromise? Additional to our
  disk /tmp we create a /ramtmp (so the name suggests that this tmp is
  a ramdisk) with tmpfs. This should be doable in time for Wheezy. The
  release notes should mention it. And those who wish can patch their
  programs to use the ramdisk if they think their program uses only
  small temporary files. In this way, we get some data and experience.
  And we have both worlds. /tmp on disk for even large temporary files
  and /ramtmp as fast ramdisk.
 
 Why not use /run instead?

Feel free to add a *mountpoint* at /run/tmp and provide a second tmpfs
there[1].  But if you do that, we'd have /tmp, /run/tmp, and /var/tmp so to
me it just looks like a mess...

Well, /var/tmp is always disk-backed and it is supposed to last across
reboots, and files there should last for a while before any automated
cleaning.  It is written nowhere that you can leave large files in there,
though, but it is not supposed to be too space-constrained.

/run/tmp might be defined from the get go to be tmpfs, and not some place
you should expect to be able to abuse (i.e. can't be automatically used to
unpack large amounts of crap, host the tile cache of a pixel editor or the
browser's cache, etc).  What good would it do, I don't know: you'd need to
set TMPDIR=/run/tmp to use it anyway, so might as well just do it to /tmp...

[1] Should you fill /run or cause a filename colision, very bad things
can happen.  You don't use /var/lock and /var/run as a general dumping
ground for random crap, and the same rule applies to /run.

-- 
  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/20120622192819.gc32...@khazad-dum.debian.net



Re: proprietary solutions just work (Re: Report from the Bug Squashing Party in Salzburg

2012-06-22 Thread darkestkhan
On Thu, Jun 21, 2012 at 1:28 PM, Holger Levsen hol...@layer-acht.org wrote:
 On Donnerstag, 21. Juni 2012, Bernd Zeimetz wrote:
 It is *easy* to use. It works out of the box. I don't need to tell
 people how to use it and what to install. It works with various other
 devices. And so on. I do not believe that your question was serious
 anyway.

 Windows is *easy* to use. Windows works out of the box. I don't need to tell
 people how to use Windows and what to install. Windows works with various
 other devices. And so on. I do not believe that your question was serious
 anyway.

 SCNR.


Are you sure about this? On at least two occasions I had experienced how it
doesn't work out of the box - once when installing it (everything went
well up to
the point of copying files to hdd - Windows 7 couldn't detect drivers
for DVD and
as such installation couldn't proceed), and now when my brother is starting his
PC while I'm connected to net (it wrongly assumes that I'm router).
I really don't see how it is works out of the box.

-- 
darkestkhan
--
Feel free to CC me.
jid: darkestk...@gmail.com
May The Source be with You.


-- 
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/cacrpbmiotucamikrrc0r3puzktpwv7t0p47a-w-yci94kgn...@mail.gmail.com



Bug#678519: general: after about 1 month of uptime, routing of IPv6 packets is no longer possible, and IPv4 routing becomes slow and unpredictable. Rebooting brings all functionality back, and back to

2012-06-22 Thread Henrique de Moraes Holschuh
On Fri, 22 Jun 2012, Rudy Zijlstra wrote:
 let system run with IPv4  IPv6 routing for about 1 month
  IPv6 routing will start to fail
  IPv4 routing becomes slow and unpredictable
 
 no obvious causes visible in the system. top and friends do not show a cpu hog
 
 a reboot will bring the system back to normal behaviour. 

Please use (as root) ip neigh show, and ip route list cache to try to
track down any weird differences between the box when it is behaving
normally, and the box when wedged.  You may want to compare it to a healthy
box on the same network segment.

You can also try to see if ip route flush cache and ip neigh flush can
unwedge the system.  After a flush, ip neigh show and ip route list
cache should return very few, if any, entries.

-- 
  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/20120622193831.gd32...@khazad-dum.debian.net



Re: Report from the Bug Squashing Party in Salzburg

2012-06-22 Thread Holger Levsen
Hi,

On Freitag, 22. Juni 2012, Neil Williams wrote:
 Bug squashing parties are *social* events where bugs happen to get
 fixed.

soon there will be a 14 day BSP, in Central America, in Managua :-D
You'll be able to participate remotly, mostly via IRC ;)


cheers,
Holger


-- 
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/201206230004.11452.hol...@layer-acht.org



Re: Report from the Bug Squashing Party in Salzburg

2012-06-22 Thread Philip Ashmore

On 22/06/12 23:04, Holger Levsen wrote:

Hi,

On Freitag, 22. Juni 2012, Neil Williams wrote:

Bug squashing parties are *social* events where bugs happen to get
fixed.


soon there will be a 14 day BSP, in Central America, in Managua :-D
You'll be able to participate remotly, mostly via IRC ;)


cheers,
Holger

I never said I didn't enjoy a social event - don't get me wrong.
But for those who can't make it, what about 
http://www.bigbluebutton.org/ or http://plus.google.com/ too?


It could even hook up several such events around the globe!

Philip


--
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/4fe4f6ec.4000...@philipashmore.com



MIA ping Jürgen Rinas (sinfo)

2012-06-22 Thread Dmitrijs Ledkovs
Dear all,

sinfo package is not RC, but it hasn't been updated in a while.

Jürgen Rinas or Gaudenz Steinlin do you intend to continue maintaining it?

-- 
Regards,
Dmitrijs.


-- 
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/4fe52739.2090...@debian.org



[DEP 8] Re: Is it possible to run autopkgtest without a virtual machine ?

2012-06-22 Thread Charles Plessy
Le Fri, Jun 22, 2012 at 11:02:04AM +0200, Goswin von Brederlow a écrit :
 
 I think test should be run in a container (or VM) but never the local
 system itself. The absolute minimum would be a chroot but a container
 would give better control over things like networking.

Hello Goswin

For networking, how about a needs-networking restriction ?

For protecting the user from side effects of runnign the tests, there is the
Restrictions field where one can declare that tests can break the system.
Perhaps a milder restriction could be added, for tests that can disturb the
system (such as restarting services, etc.), so that other tests can be
considered safe for local execution.  A large number of regression tests that I
know are completely safe, like checking that 2 + 2 returns 4, with of course
the limitation that running them exposes to the same possible bugs as for using
the program in other contexts.

I think that it would be a great feature to be able to run such tests locally
with a simple command that can take advantage of autopkgtest.  This means also
shipping them in a binary package, but we have already such packages containing
exactly the test data that is needed.

Have a nice day

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


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



[DEP 8] About the Restrictions and Features field.

2012-06-22 Thread Charles Plessy
Dear Ian, Iustin and Stefano,

reading DEP 8's appendix, I wonder about the necessity to keep separate
Restrictions and Features fields.  For instance, the no-build-needed Feature
could also be a needs-build restriction.  Perhaps the specification can
be simplified by dropping the Features field ?

Have a nice week-end,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


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



Re: The future (or non-future) of ia32-libs

2012-06-22 Thread Ben Hutchings
On Fri, 2012-06-22 at 19:37 +0200, Luk Claes wrote:
 On 06/22/2012 04:31 PM, Roger Leigh wrote:
  On Fri, Jun 22, 2012 at 09:32:15PM +0800, Thomas Goirand wrote:
  On 06/22/2012 05:34 PM, Goswin von Brederlow wrote:
  Step 1: upgrade/dist-upgrade with ia32-libs (wine, ...) held back
  Step 2: dpkg --add-architecture i386  apt-get update
  Step 3: dist-upgrade (ia32-libs, wine, ... is now installable)

  May I suggest that upon upgrade, we have a debconf message telling
  about it? We could add this in base-files or any essential package,
  probably one with some debconf messages already in would be a better
  pick. Instructions would show, IF ia32-libs old version is currently
  installed
  AND the --add-architecture i386 hasn't bee done.
 
  I know we have release notes, but some don't know about them or would
  simply not read them. A debconf message seem really appropriate IMO.
  
  Could we not introduce the concept of an upgrade script into
  apt-get which could be downloaded when you run apt-get update and
  then run during a dist-upgrade?  This could handle automation of
  any housekeeping during the upgrade which would otherwise require
  manual work detailed in the release notes.
 
 Hmm, I'm not a fan of upgrade scripts at all. Either it's easy enough to
 automate in maintainerscripts or it should get careful review for the
 context in which it will be applied IMHO (which means the sysadmin can
 run the shipped script manually).
[...]

You can't use a maintainer script to automate, for example, installation
of another package dependent on hardware configuration.  All you can do
is show a note/error prompting the user to do that.  Which is rather
sad.

Ben.

-- 
Ben Hutchings
The program is absolutely right; therefore, the computer must be wrong.


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


Accepted nagircbot 0.0.33-2 (source amd64)

2012-06-22 Thread John Morrissey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 21 Jun 2012 11:26:51 -0400
Source: nagircbot
Binary: nagircbot
Architecture: source amd64
Version: 0.0.33-2
Distribution: unstable
Urgency: low
Maintainer: Debian Nagios Maintainer Group 
pkg-nagios-de...@lists.alioth.debian.org
Changed-By: John Morrissey j...@horde.net
Description: 
 nagircbot  - IRC bot that announces Nagios status
Changes: 
 nagircbot (0.0.33-2) unstable; urgency=low
 .
   * Bump Standards-Version to 3.9.3 (no changes necessary).
   * Really disable the debug build option this time.
   * Avoid hard coded PID file path in init script.
   * Use official/non-DEP URL for machine-readable debian/copyright.
Checksums-Sha1: 
 2c092ad275a330b2ae6b1fa1c6bbd1053f03d697 1169 nagircbot_0.0.33-2.dsc
 b009bf2a93c9d6c0832be1c2771ed8c14ac74320 6485 nagircbot_0.0.33-2.debian.tar.gz
 5d17f88285a8b65a41da31a55c63210cbabca103 27622 nagircbot_0.0.33-2_amd64.deb
Checksums-Sha256: 
 60be1987aae0830decb86438200e259b14221e26de4fb61061c385a96e8937f8 1169 
nagircbot_0.0.33-2.dsc
 174ce22bcfe19955cbeac9d81ee7d0d2a7cbe383acfd687a0dfbb231efa7a7aa 6485 
nagircbot_0.0.33-2.debian.tar.gz
 b19a3cd00254c4cd47095a612727b3a2cd3d11def38036b335ba6e525e2d777e 27622 
nagircbot_0.0.33-2_amd64.deb
Files: 
 deea565f133a407d74e45a6bd41c71cc 1169 net extra nagircbot_0.0.33-2.dsc
 a3f1bd365ae853ac44f432727cf3a83b 6485 net extra 
nagircbot_0.0.33-2.debian.tar.gz
 58514d29634d1cf2cef650c3c374d64b 27622 net extra nagircbot_0.0.33-2_amd64.deb

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

iEYEARECAAYFAk/kDZkACgkQ01u8mbx9AgojzwCfZKZRYDIYC21i2qI3blWDNADm
Ig0AniuKq7F3oKIWkuHl6c9Xlqp4uMwN
=EYfw
-END PGP SIGNATURE-


Accepted:
nagircbot_0.0.33-2.debian.tar.gz
  to main/n/nagircbot/nagircbot_0.0.33-2.debian.tar.gz
nagircbot_0.0.33-2.dsc
  to main/n/nagircbot/nagircbot_0.0.33-2.dsc
nagircbot_0.0.33-2_amd64.deb
  to main/n/nagircbot/nagircbot_0.0.33-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/e1shxe0-0001nz...@franck.debian.org



Accepted iceowl 1.5-1 (source i386)

2012-06-22 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 13 Jun 2012 00:04:09 +0200
Source: iceowl
Binary: iceowl iceowl-dbg
Architecture: source i386
Version: 1.5-1
Distribution: experimental
Urgency: low
Maintainer: Guido Günther a...@sigxcpu.org
Changed-By: Guido Günther a...@sigxcpu.org
Description: 
 iceowl - Standalone Calendar Application
 iceowl-dbg - Standalone Calendar Application
Changes: 
 iceowl (1.5-1) experimental; urgency=low
 .
   * [d522820] New upstream version 1.5
   * [c105f55] New upstream version 1.4
   * [9af8b73] Update patches for 1.5
   * [b09c82c] Udpate gbp.conf for experimental
   * [87db862] Make sure we only match the generated files and don't remove the
 idl-parser itself
   * [7cc94b5] Make system cairo work again.
 BZ: https://bugzilla.mozilla.org/show_bug.cgi?id=722975
Checksums-Sha1: 
 9286757ad581ba8b674177824095b19e085bd534 1769 iceowl_1.5-1.dsc
 6e6165b8abf9d216b0cb20af85dcafa4c86eea3a 116761511 iceowl_1.5.orig.tar.gz
 bfd8d2d9d3fe201f34baea7b4d7e982cf23b7164 169503 iceowl_1.5-1.debian.tar.gz
 2081714e4049470343b93a4efa7d2be8f88ff03f 13587374 iceowl_1.5-1_i386.deb
 99683284dab20f5e273100bc9b0443ffac6eba22 170395656 iceowl-dbg_1.5-1_i386.deb
Checksums-Sha256: 
 8b48995694335ee44cdc1fe6e3a79317b8234864c11b297cad79d4d21e34804c 1769 
iceowl_1.5-1.dsc
 63d43d0eed76cb410f35d68690a9a3bb18c1054a71b5a36161bf1d8bdad2ecae 116761511 
iceowl_1.5.orig.tar.gz
 fb4c2999293ad6944afcd34f44df75712159b9de136417834d4e160b7f23a999 169503 
iceowl_1.5-1.debian.tar.gz
 317db9e956dfb151cd33d4ee6f2143b6ba7c6af983b74192ed2881304e9bd902 13587374 
iceowl_1.5-1_i386.deb
 afd4f0f3929ac44fb790e713788a6a0a86187aafbc976287ea8035308593 170395656 
iceowl-dbg_1.5-1_i386.deb
Files: 
 668090fe90cd2142e1d34834adef8ddb 1769 web optional iceowl_1.5-1.dsc
 bb924335f1750291a01dd901bfc65923 116761511 web optional iceowl_1.5.orig.tar.gz
 4cc6dcf1d11e6c1e1d7c93e60dfef587 169503 web optional iceowl_1.5-1.debian.tar.gz
 51245119a4dc4b571afd7ac0411d3253 13587374 web optional iceowl_1.5-1_i386.deb
 7d429d6f497da61046ab6d50ec9d32d7 170395656 debug extra 
iceowl-dbg_1.5-1_i386.deb

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

iD8DBQFP2KR0n88szT8+ZCYRAjdfAJ9bmr8TKtT62iAFq7nqzNep18sWMwCggsGJ
ClzyQLxNXs9RAW6eAx81f6k=
=enWK
-END PGP SIGNATURE-


Accepted:
iceowl-dbg_1.5-1_i386.deb
  to main/i/iceowl/iceowl-dbg_1.5-1_i386.deb
iceowl_1.5-1.debian.tar.gz
  to main/i/iceowl/iceowl_1.5-1.debian.tar.gz
iceowl_1.5-1.dsc
  to main/i/iceowl/iceowl_1.5-1.dsc
iceowl_1.5-1_i386.deb
  to main/i/iceowl/iceowl_1.5-1_i386.deb
iceowl_1.5.orig.tar.gz
  to main/i/iceowl/iceowl_1.5.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/e1shxq7-0002uk...@franck.debian.org



Accepted lightdm-gtk-greeter 1.1.6-2 (source amd64)

2012-06-22 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 22 Jun 2012 08:40:58 +0200
Source: lightdm-gtk-greeter
Binary: lightdm-gtk-greeter
Architecture: source amd64
Version: 1.1.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers pkg-xfce-de...@lists.alioth.debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 lightdm-gtk-greeter - simple display manager (GTK+ greeter)
Changes: 
 lightdm-gtk-greeter (1.1.6-2) unstable; urgency=low
 .
   * debian/patches:
 - 04_default-gtk-greeter-config updated, use login-background from
   desktop-base.
Checksums-Sha1: 
 5ccbb93da7bc4eaf7ce2e30bfc6631d7624d84ab 2216 lightdm-gtk-greeter_1.1.6-2.dsc
 58ff7e7420e7d464af02cc530d3bd9e3c167068f 3051 
lightdm-gtk-greeter_1.1.6-2.debian.tar.gz
 ed715af749765aead70c709ba31a1e5ca09df9fe 55020 
lightdm-gtk-greeter_1.1.6-2_amd64.deb
Checksums-Sha256: 
 6200a112b45f1e25ac5ab87fae758a89ca6862adaf80732f8fffb3ffc9b532bd 2216 
lightdm-gtk-greeter_1.1.6-2.dsc
 2e35d288f2e4f66b90ee066e4bceb40f687cb3540c96c1ec183a950f3c15508d 3051 
lightdm-gtk-greeter_1.1.6-2.debian.tar.gz
 05e1f0af8b8fab6817c08891422b8ee8131dc732b0b6d41393591a944712ed94 55020 
lightdm-gtk-greeter_1.1.6-2_amd64.deb
Files: 
 6dffd26f1bfb76760960825dfd25c905 2216 x11 optional 
lightdm-gtk-greeter_1.1.6-2.dsc
 de125c63b9eaec1476c889d60401ca68 3051 x11 optional 
lightdm-gtk-greeter_1.1.6-2.debian.tar.gz
 57dff7121dbfbcec62bc84ba3ac850ff 55020 x11 optional 
lightdm-gtk-greeter_1.1.6-2_amd64.deb

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

iQIcBAEBCgAGBQJP5BQdAAoJEDBVD3hx7wuoNccP/A+wjovsAKtlFoVLaeL2aPrb
u/HyvutCmiVvjy6TYjulTYK9yAFT2dxqHtGjzZnPzPMIkri6PJC3A5DI15tZ33/b
y81b4ag46UHskX6eeLNte7GjtUb/cR4bePDvusEChbcGR9PPQ4EjOwfulsAY2w2i
4Gr+iWzVo0XuiDmCF9ju1EjWOoIST3yKY4BmLfh0ES/Us+MVbjuB33QSP9kWVn4S
mjaX8t8oKUdnZL+uDkPGRSsnFrFWXaoDQPaLqK14vsZDx+C5gE9jRusZ5yJdR7Ac
bum8tQprc3m5r3PduBGUXP5UQ7jzJtTF1QZEqniGVtacFm4LWFgQ4IGoCjtQYs/I
Y3jLCqLXHmQpkV52oNLTzNQ8Cgy4KUI2HU4YF2zvpOsuMi8nWXKSDtp9Y1P+vqYy
69SYKvPq3IGY8zzV3vrmvHwclOXs1nIYx7A76eU0nWRpW+u/wy2S2HznPd5PNfqR
YHzMIal5ahew3iWtc6SHAvqgdwD5N5QAocRJXTpImekdQe7GpgF34H6X5ILF2P5+
8nnj3UPUcmwRUQP9U5Qk9x+S8tv2Jxfdllh47LIVoTHpmbYIFcVBxIfFvOf8tvLa
YiPhaC5lZ8fQKxtYBePH4QATNN22Pi1DEnRm1vKGGHPUnBsM4lcSNOPITrBDAZ1R
Tm5TXE3VaDR74jvUBY0L
=LHlA
-END PGP SIGNATURE-


Accepted:
lightdm-gtk-greeter_1.1.6-2.debian.tar.gz
  to main/l/lightdm-gtk-greeter/lightdm-gtk-greeter_1.1.6-2.debian.tar.gz
lightdm-gtk-greeter_1.1.6-2.dsc
  to main/l/lightdm-gtk-greeter/lightdm-gtk-greeter_1.1.6-2.dsc
lightdm-gtk-greeter_1.1.6-2_amd64.deb
  to main/l/lightdm-gtk-greeter/lightdm-gtk-greeter_1.1.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/e1shxey-0004hq...@franck.debian.org



Accepted llvm-defaults 0.11 (source i386)

2012-06-22 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 09:19:22 +0200
Source: llvm-defaults
Binary: llvm llvm-runtime llvm-dev libllvm-ocaml-dev
Architecture: source i386
Version: 0.11
Distribution: unstable
Urgency: low
Maintainer: LLVM Packaging Team pkg-llvm-t...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libllvm-ocaml-dev - Low-Level Virtual Machine (LLVM), bindings for OCaml
 llvm   - Low-Level Virtual Machine (LLVM)
 llvm-dev   - Low-Level Virtual Machine (LLVM), libraries and headers
 llvm-runtime - Low-Level Virtual Machine (LLVM), bytecode interpreter
Changes: 
 llvm-defaults (0.11) unstable; urgency=low
 .
   * Actually, 0.10 is too risky for wheezy. Rollback to 3.0 for default
Checksums-Sha1: 
 fa00ceb35bc1808bc19434479a6fcc05c04e04f6 1280 llvm-defaults_0.11.dsc
 34ce1b8f1a910a45fa71e4c844375a55d63946cd 4924 llvm-defaults_0.11.tar.gz
 7fbcb2c1c468a0322865469286f4612ad2eeab6a 1558 llvm_3.0-11_i386.deb
 e662465c09c5bd851fcf5d0518efd81de0079fd3 2566 llvm-runtime_3.0-11_i386.deb
 6657cda652a7f2641d66c3e7802543fef7ae8a31 1172 llvm-dev_3.0-11_i386.deb
 3bc8d02e6e7d5130d941144b977edeb722603c00 996 libllvm-ocaml-dev_3.0-11_i386.deb
Checksums-Sha256: 
 fd3283ba14346f600037b1ee549de99059cc6ccfbf3a132a56ae7ede2c0434a3 1280 
llvm-defaults_0.11.dsc
 f93f50eca7c6f0b0951397b3a5eca29a94173a0381f850fa2c66b3f17c0900c2 4924 
llvm-defaults_0.11.tar.gz
 4ad0a8b82c9fe8c271440657b6e1371a5667ca786a262280cefc264efaa4dc3d 1558 
llvm_3.0-11_i386.deb
 798be311f3f0f361015ca335d2aedef5630e761fa19d5ea5549ef5bf8baeeaf8 2566 
llvm-runtime_3.0-11_i386.deb
 79c24ab709be106ab7a384066526353a204e5ff59d4cbd8a9e707be5c21f9f3c 1172 
llvm-dev_3.0-11_i386.deb
 fd8e06c228ef53596d74d525c91137a34c477ab65ada07cd4aa01fd9dfd42dc1 996 
libllvm-ocaml-dev_3.0-11_i386.deb
Files: 
 316e3282a261ce17c2b3f95ae8feb4ff 1280 devel optional llvm-defaults_0.11.dsc
 661d7f2b0321d6c1a1c15d8963162ea0 4924 devel optional llvm-defaults_0.11.tar.gz
 4ddac43d2237d2ab2311a6e73e9969fc 1558 devel optional llvm_3.0-11_i386.deb
 f507737c177854d844330cab2b566525 2566 devel optional 
llvm-runtime_3.0-11_i386.deb
 6100588b743dc42962a12413cbd72616 1172 devel optional llvm-dev_3.0-11_i386.deb
 b729af414d6e6c7ef489ec95e6af7e6d 996 ocaml optional 
libllvm-ocaml-dev_3.0-11_i386.deb

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

iEYEARECAAYFAk/kHtEACgkQiOXXM92JlhBbIQCdEdSPkCrckhqQouct20UTCJUo
UOgAnA3EKnUpnw8YBpkdpPoTYBGs5LkI
=eJYK
-END PGP SIGNATURE-


Accepted:
libllvm-ocaml-dev_3.0-11_i386.deb
  to main/l/llvm-defaults/libllvm-ocaml-dev_3.0-11_i386.deb
llvm-defaults_0.11.dsc
  to main/l/llvm-defaults/llvm-defaults_0.11.dsc
llvm-defaults_0.11.tar.gz
  to main/l/llvm-defaults/llvm-defaults_0.11.tar.gz
llvm-dev_3.0-11_i386.deb
  to main/l/llvm-defaults/llvm-dev_3.0-11_i386.deb
llvm-runtime_3.0-11_i386.deb
  to main/l/llvm-defaults/llvm-runtime_3.0-11_i386.deb
llvm_3.0-11_i386.deb
  to main/l/llvm-defaults/llvm_3.0-11_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/e1shymc-0007oc...@franck.debian.org



Accepted cantor 4:4.8.4-2 (source i386)

2012-06-22 Thread Sune Vuorela
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 09:04:26 +0200
Source: cantor
Binary: cantor cantor-backend-kalgebra cantor-backend-maxima 
cantor-backend-octave cantor-backend-qalculate cantor-backend-r 
cantor-backend-sage cantor-backend-scilab cantor-dbg
Architecture: source i386
Version: 4:4.8.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Sune Vuorela s...@debian.org
Description: 
 cantor - interface for mathematical applications
 cantor-backend-kalgebra - KAlgebra backend for Cantor
 cantor-backend-maxima - Maxima backend for Cantor
 cantor-backend-octave - Octave backend for Cantor
 cantor-backend-qalculate - Qalculate! backend for Cantor
 cantor-backend-r - R backend for Cantor
 cantor-backend-sage - Sage backend for Cantor
 cantor-backend-scilab - Scilab backend for Cantor
 cantor-dbg - debugging symbols for cantor
Changes: 
 cantor (4:4.8.4-2) unstable; urgency=low
 .
   [ José Manuel Santamaría Lema ]
   * Architecture for cantor-backend-scilab changed from 'any' to
 'i386 amd64'.
 .
   [ Sune Vuorela ]
   * Adapt some descriptions
Checksums-Sha1: 
 de30dca7059b08680a805a99d73f40a42e9a86b3 1947 cantor_4.8.4-2.dsc
 3e62a82846d92ba1539f63b92a068c3349e900a3 6830 cantor_4.8.4-2.debian.tar.gz
 c10e8859d4761446f23d17cb50ad6caba53b8da7 389562 cantor_4.8.4-2_i386.deb
 20324b4b5fb15af93497a400905de8bf20d766fb 21576 
cantor-backend-kalgebra_4.8.4-2_i386.deb
 5281650d807844f189b7d49f87f1d9dcb671b5ba 65152 
cantor-backend-maxima_4.8.4-2_i386.deb
 c9834cbd25366dd64cecfd357cbe03084295dced 42860 
cantor-backend-octave_4.8.4-2_i386.deb
 fd5dc2c9ef8c024d163a0597b9e760e515521788 141690 
cantor-backend-qalculate_4.8.4-2_i386.deb
 49c6bb8083ba4b0c49ba81168c205fccc2c5b2b4 76838 
cantor-backend-r_4.8.4-2_i386.deb
 a95895ab9992b9a8669605f8e2d2424bc0bf7736 46484 
cantor-backend-sage_4.8.4-2_i386.deb
 72c1bb7c91584c07a022b3ac50e90b6bba5e7314 49884 
cantor-backend-scilab_4.8.4-2_i386.deb
 5381206118ac986507e59fb6f11bd2452b6c6a08 10392928 cantor-dbg_4.8.4-2_i386.deb
Checksums-Sha256: 
 2d42cd01033b412e1671c844efb85575e002391876f068a004e24c850a9a229b 1947 
cantor_4.8.4-2.dsc
 25831fdd2c0dde9573b74b9563289683e83d4126f0b8e0c60020bc3c01eb11ba 6830 
cantor_4.8.4-2.debian.tar.gz
 38e5cdd64efb2d2524d7a5cd6693ef90a6c3b7f965a6380f81338011eb866da6 389562 
cantor_4.8.4-2_i386.deb
 e747870118af58af34a245fba6bee9eb080e8414fcff1b3a2b233170ee8dce6e 21576 
cantor-backend-kalgebra_4.8.4-2_i386.deb
 fe74c1a45cc38c857ce9858cbd8e4b40bd99ec8560b385b6b9fb7b402fa1a583 65152 
cantor-backend-maxima_4.8.4-2_i386.deb
 fa771040af39818b3d6e72089db17ddd63fceb37a6b67940431309b23e882116 42860 
cantor-backend-octave_4.8.4-2_i386.deb
 d51ffe7f38ce674a535a6d50ccfbb4572487654c28b83340dbfbc58d5890bb23 141690 
cantor-backend-qalculate_4.8.4-2_i386.deb
 80c4f66af0b34c4cde69b0a311fd9041458cf811306db2043a916a966ca49cce 76838 
cantor-backend-r_4.8.4-2_i386.deb
 be2d05be17afb4d4a6726b5cdb94b78c47ea7ed7b2f69a7f3de4bae1b6072de1 46484 
cantor-backend-sage_4.8.4-2_i386.deb
 98f1f31cc4e68cc2ddeb186e17b920f330c6c9290a40015f16652729178edcb2 49884 
cantor-backend-scilab_4.8.4-2_i386.deb
 8edb8bb5c8954ca1decb5e0480c61cc804cfb0bff81b9c3d7334ec29090fa4ca 10392928 
cantor-dbg_4.8.4-2_i386.deb
Files: 
 cc704abd193b00f5fca2e40b35795b2d 1947 kde optional cantor_4.8.4-2.dsc
 25db621d484c9647e31b6f77c9ff650a 6830 kde optional cantor_4.8.4-2.debian.tar.gz
 04fb0006bf75dc2e4e3dad022f194e66 389562 math optional cantor_4.8.4-2_i386.deb
 479c78d00a20a194286f7000989e071f 21576 math optional 
cantor-backend-kalgebra_4.8.4-2_i386.deb
 4bbd9afbcdbd44e6a557f06beb52c8bf 65152 math optional 
cantor-backend-maxima_4.8.4-2_i386.deb
 e57da1ce208da2f1d5691f0a4faf2c79 42860 math optional 
cantor-backend-octave_4.8.4-2_i386.deb
 eb2e4d19aa783d029e8a8b1b2d9be944 141690 math optional 
cantor-backend-qalculate_4.8.4-2_i386.deb
 c1822a5df2c45e978529357c68bc1b34 76838 math optional 
cantor-backend-r_4.8.4-2_i386.deb
 06643992a31397ad2a861b3cabffa661 46484 math optional 
cantor-backend-sage_4.8.4-2_i386.deb
 fc8b9f9be3b6c5e773f01d1b0ec0653f 49884 math optional 
cantor-backend-scilab_4.8.4-2_i386.deb
 831108b965b4e7c602c69bd1f3e2ceb6 10392928 debug extra 
cantor-dbg_4.8.4-2_i386.deb

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

iEYEARECAAYFAk/kINQACgkQnMvaFgH6i0rcEACdEU74kk3YALGGQxmDq9ZG+cje
T14An3+22rzUoayrW05fmfVjsYK62jNL
=j0md
-END PGP SIGNATURE-


Accepted:
cantor-backend-kalgebra_4.8.4-2_i386.deb
  to main/c/cantor/cantor-backend-kalgebra_4.8.4-2_i386.deb
cantor-backend-maxima_4.8.4-2_i386.deb
  to main/c/cantor/cantor-backend-maxima_4.8.4-2_i386.deb
cantor-backend-octave_4.8.4-2_i386.deb
  to main/c/cantor/cantor-backend-octave_4.8.4-2_i386.deb
cantor-backend-qalculate_4.8.4-2_i386.deb
  to main/c/cantor/cantor-backend-qalculate_4.8.4-2_i386.deb
cantor-backend-r_4.8.4-2_i386.deb
  to main/c/cantor/cantor-backend-r_4.8.4-2_i386.deb

Accepted biomaj 1.2.0-6 (source all)

2012-06-22 Thread Olivier Sallou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 08 May 2012 22:46:34 +0200
Source: biomaj
Binary: biomaj biomaj-properties
Architecture: source all
Version: 1.2.0-6
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Olivier Sallou osal...@debian.org
Description: 
 biomaj - biological data-bank updater
 biomaj-properties - biological data-bank updater - example properties files
Closes: 678490
Changes: 
 biomaj (1.2.0-6) unstable; urgency=low
 .
   [ Olivier Sallou ]
   * Clean files for purge (Closes: #678490).
 .
   [ Andreas Tille ]
   * debian/upstream: Enhance upstream information (authors format, missing
 fields)
 .
   [Debconf translation updates]
   * French (Olivier Sallou, proofread by the French l10n team).
Checksums-Sha1: 
 11459ec718d255d5ee71b718a8eb537d29f5020f 2522 biomaj_1.2.0-6.dsc
 ffe80293f49cdfa7551370bec83f13e6467d98ba 23901 biomaj_1.2.0-6.debian.tar.gz
 29ca1a8e44a66539845b0faf00379f7d6b8fe2a3 12469018 biomaj_1.2.0-6_all.deb
 71b47a7a8d83a24380846c0e2b5ad14557a3761f 33860 
biomaj-properties_1.2.0-6_all.deb
Checksums-Sha256: 
 451445d87c581138f2c8f1c856a13b79afd988734e5e147dd0b4a4069a9ef558 2522 
biomaj_1.2.0-6.dsc
 8754f832dd9fc6720d218a60c9b0f3851418dfae9e693d0d5e06faa2640df55c 23901 
biomaj_1.2.0-6.debian.tar.gz
 10d3725c8e24baf8c095e682be49761591d3e32e2485f247823ecef0b7ba0d7f 12469018 
biomaj_1.2.0-6_all.deb
 647f5a0c8a9f372dbeb15c0fbc210d31508543a004afb7b63566ad153f590974 33860 
biomaj-properties_1.2.0-6_all.deb
Files: 
 4f8f7053a95b3e2d9d8e6cf408f2849c 2522 science optional biomaj_1.2.0-6.dsc
 1df1296fd3c6bac16cd1f9952ea55009 23901 science optional 
biomaj_1.2.0-6.debian.tar.gz
 d935f14e3580867d89ed28a8231cd3ff 12469018 science optional 
biomaj_1.2.0-6_all.deb
 8b05238e537d27a43172bc3266d40107 33860 science optional 
biomaj-properties_1.2.0-6_all.deb

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

iQIcBAEBCAAGBQJP5CTmAAoJEHjcaNsybYQ43aQP/2L81qfeVlANXlk0juSLzIwb
95VtG2HtLn4DpsGqKlXkkcaakhJSu1XDnLEPKQfF6wjYhAEkZtj3XDt2VA6zWyQY
xGCUbfMtbXBRcRxHrGgLh7aBCfq80t5Fob/XG30ZHzY5Cfjnb0307+0CBQzZNjXJ
RwXo5cE3YWYkV7OLHe9+aNgV9U43Lw6O++Px/ItB9LLEQoZNRLT6qO2nq/QC9/TL
tyXA3I1PnZM6Kr85zmNtmMWynRwxpS91g9zXDPEzfMgXDWED7rsTtUuM61+qrq9d
4J2sKN4hfQEqvwpyyqpCQz1Hil6V3NksoI0oa432Lj56Emv0cSmX6hTL8nmQvaHi
c8ZoQ6L7eRrBlX30hJXz5sCs6elHBCsTFRf3AL5WEvBHka/RQ4T/muCT7PbwJzuo
rA/0l/4txbkQpK9JNxEKt8hUcgZ/fwIVZyUMf13SMwplNBbn+FABj+lPo0npEpxE
XAbPYB7A4o3Co1lmh2dX6m6DXAQCPRHroG8MovdaQcNwXV65Wo2uTcaFEkCn7kZy
6H8nb0RSkErA9cSCmxNAuxTV+YHai8KKGFAmiiYG9QFzSqAM5TI+lfLpJUPVIBvy
SZTgXd5Hi3d3B/Xgrwy85nsd0btaiUFh/OjRdSUZOTxhg//OyJU7IdWum/D959aA
vZKp9wM1Gdj/pMY8TIhY
=d9eT
-END PGP SIGNATURE-


Accepted:
biomaj-properties_1.2.0-6_all.deb
  to main/b/biomaj/biomaj-properties_1.2.0-6_all.deb
biomaj_1.2.0-6.debian.tar.gz
  to main/b/biomaj/biomaj_1.2.0-6.debian.tar.gz
biomaj_1.2.0-6.dsc
  to main/b/biomaj/biomaj_1.2.0-6.dsc
biomaj_1.2.0-6_all.deb
  to main/b/biomaj/biomaj_1.2.0-6_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/e1shzwd-0001sw...@franck.debian.org



Accepted kalgebra 4:4.8.4-1 (source i386)

2012-06-22 Thread Sune Vuorela
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 09:43:31 +0200
Source: kalgebra
Binary: kalgebra kalgebramobile kalgebra-common kalgebra-dbg
Architecture: source i386
Version: 4:4.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Sune Vuorela s...@debian.org
Description: 
 kalgebra   - algebraic graphing calculator
 kalgebra-common - contains files common for kalgebra and kalgebramobile
 kalgebra-dbg - debugging symbols for the KDE education module
 kalgebramobile - algebraic graphing calculator for small touch based interfaces
Changes: 
 kalgebra (4:4.8.4-1) unstable; urgency=low
 .
   * New upstream release.
 .
   [ José Manuel Santamaría Lema ]
   * Split analitza out of kalgebra:
 - drop enable_debianabimanager.diff, no longer needed since kalgebra 
doesn't
   provide any dynamic library now.
 - remove libanalitza4, libanalitzagui4 and kalgebra-dev binary packages.
 - build depend on libanalitza-dev.
 - don't pass -DINSTALL_ANALITZA_HEADERS=TRUE to cmake.
 - don't pass -c0 to dh_shlibdeps.
 - remove override_dh_shlibdeps, no longer needed.
 - remove calgebra from kalgebra-common, now provided by src:analitza.
 - drop libreadline-dev and libncurses-dev, only used by analitza.
   * Bump build dependencies for KDE SC 4.8.4:
 - kde-sc-dev-latest to 4:4.8.4.
 - kdelibs5-dev to 4:4.8.
 - libkdeedu-dev to 4:4.8.
   * Update installed files.
   * Bump Standards-Version to 3.9.3, no changes needed.
   * Add watch file.
   * Update copyright file.
 .
   [ Sune Vuorela ]
   * Update descriptions
Checksums-Sha1: 
 4cd4f89d086b65b29cf4d0d4e896f60602c421c0 1587 kalgebra_4.8.4-1.dsc
 be0bcd290c61713a0365e9eab2ddc8d58f447f34 424864 kalgebra_4.8.4.orig.tar.xz
 3ea803d5b42cb0d77178c9776abc586aa25e7897 3898 kalgebra_4.8.4-1.debian.tar.gz
 fdbffcb641490c6ff0f7b9e61ed3cf6dd53fdd7d 128130 kalgebra_4.8.4-1_i386.deb
 992c037bd344ff0894707b37313ecb427093bb1d 34636 kalgebramobile_4.8.4-1_i386.deb
 1f2909d94fc0d5118583b217156c653c3135447a 396658 
kalgebra-common_4.8.4-1_i386.deb
 6d00cc02ed45817700fd203a837f2d75ded74aa4 1694308 kalgebra-dbg_4.8.4-1_i386.deb
Checksums-Sha256: 
 d1f87f92a0ea1ba461fc8a8ad93c75001d92860612dfb49add9280fb4564bbc9 1587 
kalgebra_4.8.4-1.dsc
 022085fa63ae5efff2fef40b7f3e2845a9af2f802a208b9adb1341d37887b85c 424864 
kalgebra_4.8.4.orig.tar.xz
 73289e3243f90cf4564372f539739e82ef57346ae5e9d9154302c2477490e8fc 3898 
kalgebra_4.8.4-1.debian.tar.gz
 563bfcadbde2796a46fb4256ab77cd0645954f5a9d94ca2ec460da2d740bcdfc 128130 
kalgebra_4.8.4-1_i386.deb
 1083fab6a1488d56671b0557a21a838c032d72dae9a54cff383b1a9d7170 34636 
kalgebramobile_4.8.4-1_i386.deb
 29c21f9d86cacd983dd300ee64bb919d7cf0d13c0698f534a31f7a855aee1e23 396658 
kalgebra-common_4.8.4-1_i386.deb
 1cc2e3727cec8e15127598f646d6025f0611b48764caeddc0de4b856500b4a1b 1694308 
kalgebra-dbg_4.8.4-1_i386.deb
Files: 
 adfe164cb33df3da7e2f0f23941d4bce 1587 kde optional kalgebra_4.8.4-1.dsc
 fae44d887e4439793ae3fbe28c39190f 424864 kde optional kalgebra_4.8.4.orig.tar.xz
 2d2e08670e2b262f65781ea504ff431d 3898 kde optional 
kalgebra_4.8.4-1.debian.tar.gz
 357a65c785d82a93980ddb7ad1a33021 128130 math optional kalgebra_4.8.4-1_i386.deb
 62b348924526611cd0fd7cd566cd63e3 34636 math optional 
kalgebramobile_4.8.4-1_i386.deb
 d315466f392a65427933cab001d6875f 396658 math optional 
kalgebra-common_4.8.4-1_i386.deb
 62facb1a36afa624346713e4000fe2fe 1694308 debug extra 
kalgebra-dbg_4.8.4-1_i386.deb

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

iEYEARECAAYFAk/kJocACgkQnMvaFgH6i0oChgCfSS+qaF769B8WCDFbwi7BLvVi
zu0Aniiqx/SQqIbYzI0h3NoAnIpdL/y2
=f3b6
-END PGP SIGNATURE-


Accepted:
kalgebra-common_4.8.4-1_i386.deb
  to main/k/kalgebra/kalgebra-common_4.8.4-1_i386.deb
kalgebra-dbg_4.8.4-1_i386.deb
  to main/k/kalgebra/kalgebra-dbg_4.8.4-1_i386.deb
kalgebra_4.8.4-1.debian.tar.gz
  to main/k/kalgebra/kalgebra_4.8.4-1.debian.tar.gz
kalgebra_4.8.4-1.dsc
  to main/k/kalgebra/kalgebra_4.8.4-1.dsc
kalgebra_4.8.4-1_i386.deb
  to main/k/kalgebra/kalgebra_4.8.4-1_i386.deb
kalgebra_4.8.4.orig.tar.xz
  to main/k/kalgebra/kalgebra_4.8.4.orig.tar.xz
kalgebramobile_4.8.4-1_i386.deb
  to main/k/kalgebra/kalgebramobile_4.8.4-1_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/e1shzz6-0002cw...@franck.debian.org



Accepted mpg123 1.14.2+svn20120622-1 (source amd64)

2012-06-22 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 22 Jun 2012 09:48:18 +0200
Source: mpg123
Binary: mpg123 libmpg123-0 libmpg123-dev
Architecture: source amd64
Version: 1.14.2+svn20120622-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 libmpg123-0 - MPEG layer 1/2/3 audio decoder (shared library)
 libmpg123-dev - MPEG layer 1/2/3 audio decoder (development files)
 mpg123 - MPEG layer 1/2/3 audio player
Changes: 
 mpg123 (1.14.2+svn20120622-1) unstable; urgency=low
 .
   * Fresh snapshot from upstream.
Checksums-Sha1: 
 78550ecb61d6b333af3a340e2f904726da05d700 2318 mpg123_1.14.2+svn20120622-1.dsc
 1f7a0ff773297dd7d4c7c9e3dfacff29c4dd5ce5 849828 
mpg123_1.14.2+svn20120622.orig.tar.bz2
 6841537b1baf2e4622a96dce166ee02f4797 18312 
mpg123_1.14.2+svn20120622-1.debian.tar.gz
 9021633279572cb70afbb74967047af50349c073 160148 
mpg123_1.14.2+svn20120622-1_amd64.deb
 308ba0a1c497393b01dd371e76cbe33e191808ea 157092 
libmpg123-0_1.14.2+svn20120622-1_amd64.deb
 eaf4879fd5a346ec431b2304b3e7cd23c11f560f 44558 
libmpg123-dev_1.14.2+svn20120622-1_amd64.deb
Checksums-Sha256: 
 18612107ed5496702335de04c74db86e0f02b834b011c5b2c9352d0654a24631 2318 
mpg123_1.14.2+svn20120622-1.dsc
 aedae310b983e9960786855d6df52e03a93cacbb3ed778427b3d98732c12bfc8 849828 
mpg123_1.14.2+svn20120622.orig.tar.bz2
 ae2de60b2e214b698f35d0a110f8ef08ee1243ca05007d1741f2dd2cc5515034 18312 
mpg123_1.14.2+svn20120622-1.debian.tar.gz
 19f6b4dc1a9fcf7950fd47bef56e6027d4a5e174bb8cbc54048678e670a45b90 160148 
mpg123_1.14.2+svn20120622-1_amd64.deb
 5978297bbc3671093d85be5d3c81a1c59066792992b00d0509c91d8415691254 157092 
libmpg123-0_1.14.2+svn20120622-1_amd64.deb
 3432ff21e1f099a2ed84bae33403845ae1c20c53a975f571ed513cfbe6fc2a77 44558 
libmpg123-dev_1.14.2+svn20120622-1_amd64.deb
Files: 
 7c6fddebaceb79e5ad489a5a11151ed4 2318 sound optional 
mpg123_1.14.2+svn20120622-1.dsc
 4fa399ac0bf65b2d02b238e9da751b08 849828 sound optional 
mpg123_1.14.2+svn20120622.orig.tar.bz2
 ba9114cc8461187edbdc2d24c0a86d4a 18312 sound optional 
mpg123_1.14.2+svn20120622-1.debian.tar.gz
 f487f1e9c746b6fb299e9e6ff792fa97 160148 sound optional 
mpg123_1.14.2+svn20120622-1_amd64.deb
 3359bd872176a63f7d4fcdc26bce983b 157092 libs optional 
libmpg123-0_1.14.2+svn20120622-1_amd64.deb
 e6f873b9a9331eb4d224012313586617 44558 libdevel optional 
libmpg123-dev_1.14.2+svn20120622-1_amd64.deb

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

iQIcBAEBCgAGBQJP5CbmAAoJEOikiuUxHXZaE7kP/2O3mMZ89dLz8Q6m+X8jLqYu
E+fY5dxqv4W9QZHXxIiM+uqXcOGGM10B2Eg24msIlQHPEPJ6QUk9iSdAtUGcHidq
tjfi17bnc1r3jr4e4GY6I/KKFlNu9eXyMElN9fSyL3K/ObQzVAdjiho1psL8KHUJ
bvsZYuYqv8p1X1ADAh+Xhe7/I/9a9QCRzPuhF54pq/oj5Om2NKsdkY4DLzirOFa4
8RHC4Mw3XSwMfB1Ij9+O2BNP5v41EXK+iYd4ek+zt/Q5gci5O2zvdg8ctmiTw8Io
X+Jgfq9SDov4SgE8wH/sF1kZ212FV0d0GEzyYiMd/hO3np/6S0tTbzuOE+bsIKPH
nL4NKfB1NB02eh0sDlwC/HI8EqZpPCEXjFmuU3hWE2bABJF2qZ8eq19naheY7V5J
ol+S9J9IMw74T6bfcuZOniJGMXf4PPHxlJxYqtndMPHNzS0OrRUV8h+DOiCP8XnA
ZxKLxmeSfXd0Ev/RhjHl8CctHOUfQTzlQjF7lswT/TnsBssxZk0cHRpX0YBcHQiz
WSKKHH46CLvsdq7B5uadIInqvgE0tUQjpAHaH5GyDqO7ep2gw/DRHGcrqPFaSNi2
rSJAf+Z7M2xg/qutEk4fczknJMH58j8c7SRaWZ9Huwp2vYdd/eZWhu7O16VEZU2A
AP5pFEK8ioA9tmXSuRSn
=Mi6T
-END PGP SIGNATURE-


Accepted:
libmpg123-0_1.14.2+svn20120622-1_amd64.deb
  to main/m/mpg123/libmpg123-0_1.14.2+svn20120622-1_amd64.deb
libmpg123-dev_1.14.2+svn20120622-1_amd64.deb
  to main/m/mpg123/libmpg123-dev_1.14.2+svn20120622-1_amd64.deb
mpg123_1.14.2+svn20120622-1.debian.tar.gz
  to main/m/mpg123/mpg123_1.14.2+svn20120622-1.debian.tar.gz
mpg123_1.14.2+svn20120622-1.dsc
  to main/m/mpg123/mpg123_1.14.2+svn20120622-1.dsc
mpg123_1.14.2+svn20120622-1_amd64.deb
  to main/m/mpg123/mpg123_1.14.2+svn20120622-1_amd64.deb
mpg123_1.14.2+svn20120622.orig.tar.bz2
  to main/m/mpg123/mpg123_1.14.2+svn20120622.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/e1shzez-0002xq...@franck.debian.org



Accepted pure-ftpd 1.0.36-1 (source all amd64)

2012-06-22 Thread Racke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 08:44:54 +0200
Source: pure-ftpd
Binary: pure-ftpd-common pure-ftpd pure-ftpd-mysql pure-ftpd-postgresql 
pure-ftpd-ldap
Architecture: source all amd64
Version: 1.0.36-1
Distribution: unstable
Urgency: low
Maintainer: Stefan Hornburg (Racke) ra...@linuxia.de
Changed-By: Stefan Hornburg (Racke) ra...@linuxia.de
Description: 
 pure-ftpd  - Secure and efficient FTP server
 pure-ftpd-common - Pure-FTPd FTP server (Common Files)
 pure-ftpd-ldap - Secure and efficient FTP server with LDAP user authentication
 pure-ftpd-mysql - Secure and efficient FTP server with MySQL user 
authentication
 pure-ftpd-postgresql - Secure and efficient FTP server with PostgreSQL user 
authenticati
Closes: 652938
Changes: 
 pure-ftpd (1.0.36-1) unstable; urgency=low
 .
   * New upstream release, fixes external authentication (Closes: #652938,
 thanks to Jon Daley deb...@jon.limedaley.com for the report).
   * Add build-arch and build-indep targets to debian/rules.
Checksums-Sha1: 
 4ba42606de0d3bbfd2d9627d702bc6fce0744aad 1596 pure-ftpd_1.0.36-1.dsc
 ca932317fd9d1aba17457121bc71d881cf83b1c6 581718 pure-ftpd_1.0.36.orig.tar.gz
 cff276a4ce75c3c100a418f47749baed9312ef81 48981 pure-ftpd_1.0.36-1.diff.gz
 730c93ecca07e942a391c07be768c657e5ef12f8 184468 
pure-ftpd-common_1.0.36-1_all.deb
 db9f75b73da2a2c871270438b86316673ee90d5c 207188 pure-ftpd_1.0.36-1_amd64.deb
 0b932cb644048e379b976d3a205c450b75f5961a 226618 
pure-ftpd-mysql_1.0.36-1_amd64.deb
 ad2ec20af5cb5c953ca9e31c20ae48a8a18297f9 225898 
pure-ftpd-postgresql_1.0.36-1_amd64.deb
 01d38bd7a13257b393e234e5c94228c582a66d5a 224552 
pure-ftpd-ldap_1.0.36-1_amd64.deb
Checksums-Sha256: 
 f8667ae6a0f493d112d409cf2a34989f884f36fbcbeab7e844e1ab769139ba3d 1596 
pure-ftpd_1.0.36-1.dsc
 0fe580bdaa74b35bc3f58be5ad537f138e0101e4b3602cd8d4f3bbe134b39678 581718 
pure-ftpd_1.0.36.orig.tar.gz
 91905f0a0d14025c651cab90b442b1a55fa2fe4034cd1f05bccd70c8898f3a2d 48981 
pure-ftpd_1.0.36-1.diff.gz
 2aa28c4ac7cc2af62133615492afaa2ad1ce37a432e2199011979512d171c295 184468 
pure-ftpd-common_1.0.36-1_all.deb
 c3642724d50460c49e66fe560ac1c59fca53fa909734355b7feca92bdc5d3d91 207188 
pure-ftpd_1.0.36-1_amd64.deb
 b11d7d017fcd7973026136103977895940095a15e33c3b14a5a38db0c9cb 226618 
pure-ftpd-mysql_1.0.36-1_amd64.deb
 f1913cac253c875866d5063faac3160ad7445069985fdbd136a1d767c7e974e5 225898 
pure-ftpd-postgresql_1.0.36-1_amd64.deb
 b0881744e56af956160a5dc8f1a94c8b60a0aea73a3ebc344c69c58406255185 224552 
pure-ftpd-ldap_1.0.36-1_amd64.deb
Files: 
 cc8a265a7e03a12653c02fc1842b8309 1596 net optional pure-ftpd_1.0.36-1.dsc
 a8ccc8ed9d4c22471cec98943d4c4cfe 581718 net optional 
pure-ftpd_1.0.36.orig.tar.gz
 7ad1615e460821bfa468f3ac5d2abf08 48981 net optional pure-ftpd_1.0.36-1.diff.gz
 5e5caca71788cbb47b606e2ba8da6dbf 184468 net optional 
pure-ftpd-common_1.0.36-1_all.deb
 d300d8a4a67f0db59ec806bb29a65f74 207188 net optional 
pure-ftpd_1.0.36-1_amd64.deb
 e6023fa72fe34607946fd57f28e37d9e 226618 net optional 
pure-ftpd-mysql_1.0.36-1_amd64.deb
 0180b66a76a4c1e62f1bc2c4275b724c 225898 net optional 
pure-ftpd-postgresql_1.0.36-1_amd64.deb
 4b963da8f1ecfe034a2c3e0739b2d13d 224552 net optional 
pure-ftpd-ldap_1.0.36-1_amd64.deb

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

iEYEARECAAYFAk/kJSEACgkQjgVfE5tya3FAbwCbB76rBQpIbFs89r64mnXF3DZC
+JsAniHa27xevM75UhuId5sBupnjVX/L
=ZyCS
-END PGP SIGNATURE-


Accepted:
pure-ftpd-common_1.0.36-1_all.deb
  to main/p/pure-ftpd/pure-ftpd-common_1.0.36-1_all.deb
pure-ftpd-ldap_1.0.36-1_amd64.deb
  to main/p/pure-ftpd/pure-ftpd-ldap_1.0.36-1_amd64.deb
pure-ftpd-mysql_1.0.36-1_amd64.deb
  to main/p/pure-ftpd/pure-ftpd-mysql_1.0.36-1_amd64.deb
pure-ftpd-postgresql_1.0.36-1_amd64.deb
  to main/p/pure-ftpd/pure-ftpd-postgresql_1.0.36-1_amd64.deb
pure-ftpd_1.0.36-1.diff.gz
  to main/p/pure-ftpd/pure-ftpd_1.0.36-1.diff.gz
pure-ftpd_1.0.36-1.dsc
  to main/p/pure-ftpd/pure-ftpd_1.0.36-1.dsc
pure-ftpd_1.0.36-1_amd64.deb
  to main/p/pure-ftpd/pure-ftpd_1.0.36-1_amd64.deb
pure-ftpd_1.0.36.orig.tar.gz
  to main/p/pure-ftpd/pure-ftpd_1.0.36.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/e1shzgk-0002dp...@franck.debian.org



Accepted calligra 1:2.4.2-3 (source all i386)

2012-06-22 Thread Sune Vuorela
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 08:56:20 +0200
Source: calligra
Binary: calligra karbon kexi kexi-calligrasheets-driver kexi-mysql-driver 
kexi-postgresql-driver kexi-xbase-driver kexi-sybase-driver 
kexi-web-form-widget kexi-map-form-widget calligra-reports-web-element 
calligra-reports-map-element krita krita-data kthesaurus calligrasheets 
calligraplan calligrawords calligrawords-data calligrastage calligraflow 
calligraflow-data braindump calligramobile calligra-libs calligra-data 
okular-backend-odp calligra-dbg
Architecture: source all i386
Version: 1:2.4.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Sune Vuorela s...@debian.org
Description: 
 braindump  - ideas organizer application for the Calligra Suite
 calligra   - extensive productivity and creative suite
 calligra-data - common shared data for the Calligra Suite
 calligra-dbg - debugging symbols for Calligra
 calligra-libs - common libraries and binaries for the Calligra Suite
 calligra-reports-map-element - map element for Calligra Reports
 calligra-reports-web-element - web element for Calligra Reports
 calligraflow - flowcharting program for the Calligra Suite
 calligraflow-data - data files for Flow flowcharting program
 calligramobile - version of Calligra for mobile
 calligraplan - integrated project management and planning tool
 calligrasheets - spreadsheet for the Calligra Suite
 calligrastage - presentation program for the Calligra Suite
 calligrawords - word processor for the Calligra Suite
 calligrawords-data - data files for Words word processor
 karbon - vector graphics application for the Calligra Suite
 kexi   - integrated database environment for the Calligra Suite
 kexi-calligrasheets-driver - Tables plugin for kexi
 kexi-map-form-widget - map form widget for Kexi
 kexi-mysql-driver - MySQL support for kexi
 kexi-postgresql-driver - PostgreSQL support for kexi
 kexi-sybase-driver - Sybase support for kexi
 kexi-web-form-widget - web form widget for Kexi
 kexi-xbase-driver - XBase support for kexi
 krita  - pixel-based image manipulation program for the Calligra Suite
 krita-data - data files for Krita painting program
 kthesaurus - thesaurus for the Calligra Suite
 okular-backend-odp - Okular backend for ODP documents
Closes: 677085
Changes: 
 calligra (1:2.4.2-3) unstable; urgency=low
 .
   * Team upload
 .
   [ Pino Toscano ]
   * Fix conflict/replaces with old koffice names. (Closes: #677085)
   * Make okular-backend-odp enhance okular.
 .
   [ Sune Vuorela ]
   * Ensure we are using the new libmarble-dev (this can be relaxed later if
 needed)
Checksums-Sha1: 
 68df9c8aa70149b02ba40bb5b946bf833115e390 3572 calligra_2.4.2-3.dsc
 6f0ba8694e24d059927e61c3407b2c2ffef49a75 33528 calligra_2.4.2-3.debian.tar.gz
 3be69931710d64dc28a75116c592ddad2f5f91d4 10336 calligra_2.4.2-3_all.deb
 30793295377ea35a4c3e0038545e8cb4b157a3ab 700602 karbon_2.4.2-3_i386.deb
 e3d9040a2463acb969fbada7ff1550d70293e2ee 3594724 kexi_2.4.2-3_i386.deb
 5f0382d100dfd00a8d373bd563c874c3e0e69a67 22614 
kexi-calligrasheets-driver_2.4.2-3_i386.deb
 dda8ada33ce067a9c9e33bd7900cd31088ec4e76 56288 
kexi-mysql-driver_2.4.2-3_i386.deb
 35d3b114782c5dcc36b05791a88c7dce6812b70e 78896 
kexi-postgresql-driver_2.4.2-3_i386.deb
 c4dfb55a487742ed784e80cd7fcc2dd04890216d 56236 
kexi-xbase-driver_2.4.2-3_i386.deb
 64d888eddd7f58382e65bb5513186e2457cd9e8e 63574 
kexi-sybase-driver_2.4.2-3_i386.deb
 f2fd77d9bedc9324f02ca0867a1213ee89133d4d 27754 
kexi-web-form-widget_2.4.2-3_i386.deb
 4d530d4ff7ba0dc03afe65f23ed7bfe052b7ac13 27562 
kexi-map-form-widget_2.4.2-3_i386.deb
 b616fb20cb01ad47f327aa6aac5207e15ba252ea 28912 
calligra-reports-web-element_2.4.2-3_i386.deb
 5babbf2c5974b15cdffdbc18a42a9b834c8857a4 37126 
calligra-reports-map-element_2.4.2-3_i386.deb
 0ea27fd8e6be8b5c41395e70410196d0f1c4cc55 6022106 krita_2.4.2-3_i386.deb
 c93bc29089d2ae83500ef24e638a15043e0ee4de 19697512 krita-data_2.4.2-3_all.deb
 6316d96cfd25c0778580370293b325223752f148 26392 kthesaurus_2.4.2-3_i386.deb
 c8d48014720bb7099dd08782aa99fde929ed12c6 4564348 
calligrasheets_2.4.2-3_i386.deb
 8c18e9a71be77c01fb0c7d01122479d11195e294 2346336 calligraplan_2.4.2-3_i386.deb
 7d77f8b7582fcb316bf99b22c6a34885e683bd52 2664832 calligrawords_2.4.2-3_i386.deb
 e5d145478febfea7c827743f4096800744c15927 486086 
calligrawords-data_2.4.2-3_all.deb
 1aadc8bcdec9577332b2ddf816f638750324c41b 8103908 calligrastage_2.4.2-3_i386.deb
 4c8c4aaf5f10c72d990e7c528d731c807addc391 76484 calligraflow_2.4.2-3_i386.deb
 e12079ab49a185db011ce7263d0f99804a2e4c9b 6181216 
calligraflow-data_2.4.2-3_all.deb
 8ede96ae622c13db1255fcf951a2a670732bc1ee 287552 braindump_2.4.2-3_i386.deb
 3806b7ec5e302bf1ec98078dda2b0baaa417d6b6 381764 calligramobile_2.4.2-3_i386.deb
 7fbb06b0bd730dbe3733f86ef985c20d90cfebdb 6903656 calligra-libs_2.4.2-3_i386.deb
 2ec118b653f7b5bd33f509b387f2cff45ffc7b9d 1529332 

Accepted libpam-pwdfile 0.99-5 (source amd64)

2012-06-22 Thread Timo Weingärtner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 10:35:36 +0200
Source: libpam-pwdfile
Binary: libpam-pwdfile
Architecture: source amd64
Version: 0.99-5
Distribution: unstable
Urgency: low
Maintainer: Timo Weingärtner t...@tiwe.de
Changed-By: Timo Weingärtner t...@tiwe.de
Description: 
 libpam-pwdfile - PAM module allowing authentication via an /etc/passwd-like 
file
Closes: 588877
Changes: 
 libpam-pwdfile (0.99-5) unstable; urgency=low
 .
   * New Maintainer (Closes: #588877)
   * debian/patches/regular_crypt: Use libc's crypt in the regular way to
 support newer crypt types, esp. SHA2 based ones.
   * Bump Standards-Version to 3.9.3.
   * Bump dh compat level to 9.
   * Enable Multi-Arch.
   * Use source/format 3.0 (quilt).
   * Move Makefile.Debian to debian/Makefile
Checksums-Sha1: 
 253d92fe4a78c83a55e15e2b83cddbf87b95f35e 1142 libpam-pwdfile_0.99-5.dsc
 461a819174622abccd5a5a24025179397ceabc83 4699 
libpam-pwdfile_0.99-5.debian.tar.gz
 731bc33b3c845afb5d32677e0dffaeb8ff61c378 16190 libpam-pwdfile_0.99-5_amd64.deb
Checksums-Sha256: 
 686fc292378612349a4507dabd9e33ec065829bbedf82d79932da1521e148d23 1142 
libpam-pwdfile_0.99-5.dsc
 86b1425b4f78a0d1717164deef90c51cbca8adec11cfdb68f5aede1256950c97 4699 
libpam-pwdfile_0.99-5.debian.tar.gz
 8a66dff74168b68c7d754d80fb9b567dbffef17ce12528d30238f4ca9c6cc8ca 16190 
libpam-pwdfile_0.99-5_amd64.deb
Files: 
 be716aeeea3e0f599affa819b5a2dbb6 1142 admin extra libpam-pwdfile_0.99-5.dsc
 d4465fc304343f2f664680681d5d8760 4699 admin extra 
libpam-pwdfile_0.99-5.debian.tar.gz
 bf038cdc006e7923434604ee8d2a5f4b 16190 admin extra 
libpam-pwdfile_0.99-5_amd64.deb

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

iEYEAREIAAYFAk/kMS0ACgkQ7Ro5M7LPzdjWAgCg2uSfOvGq8iUyE7GNc5hPmG9r
IeIAniGxlQKpHm8mMl+AUkhmRQyGhpeg
=gXZp
-END PGP SIGNATURE-


Accepted:
libpam-pwdfile_0.99-5.debian.tar.gz
  to main/libp/libpam-pwdfile/libpam-pwdfile_0.99-5.debian.tar.gz
libpam-pwdfile_0.99-5.dsc
  to main/libp/libpam-pwdfile/libpam-pwdfile_0.99-5.dsc
libpam-pwdfile_0.99-5_amd64.deb
  to main/libp/libpam-pwdfile/libpam-pwdfile_0.99-5_amd64.deb


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



Accepted python-apt 0.8.5 (source all amd64)

2012-06-22 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 10:37:23 +0200
Source: python-apt
Binary: python-apt python-apt-doc python-apt-dbg python-apt-dev 
python-apt-common python3-apt python3-apt-dbg
Architecture: source amd64 all
Version: 0.8.5
Distribution: unstable
Urgency: low
Maintainer: APT Development Team de...@lists.debian.org
Changed-By: Julian Andres Klode j...@debian.org
Description: 
 python-apt - Python interface to libapt-pkg
 python-apt-common - Python interface to libapt-pkg (locales)
 python-apt-dbg - Python interface to libapt-pkg (debug extension)
 python-apt-dev - Python interface to libapt-pkg (development files)
 python-apt-doc - Python interface to libapt-pkg (API documentation)
 python3-apt - Python 3 interface to libapt-pkg
 python3-apt-dbg - Python 3 interface to libapt-pkg (debug extension)
Closes: 567765 629624 645970 652335 656288 661062 669458 676960 676973 677331 
677916 677934 678286
Changes: 
 python-apt (0.8.5) unstable; urgency=low
 .
   [ Michael Vogt ]
   * python/cache.cc:
 - ensure that pkgApplyStatus is called when the cache is opened
   (thanks to Sebastian Heinlein for finding this bug), LP: #659438
 .
   [ Stéphane Graber ]
   * data/templates/Ubuntu.info.in:
 - add quantal
 .
   [ Steve Langasek ]
   * utils/get_ubuntu_mirrors_from_lp.py: move this script to python3
   * pre-build.sh: call dpkg-checkbuilddeps with the list of our
 source-build-dependencies; this may save someone else an hour down the
 line scratching their head over gratuitous test-suite failures...
 .
   [ Sebastian Heinlein ]
   * lp:~glatzor/python-apt/auth:
 - this is a port of the software-properties AptAuth module to python-apt
   with some cleanups. It provides a wrapper API for the apt-key command
 .
   [ David Prévot ]
   * po/*.po: update PO files against current POT file
   * po/be.po: Belarusian translation by Viktar Siarheichyk (closes: #678286)
   * po/de.po: German translation updated by Holger Wansing (closes: #677916)
   * po/el.po: Greek translation updated by Thomas Vasileiou (closes: #677331)
   * po/en_GB.po: Remove useless file 20120610190618.GA1387@burratino
   * po/eo.po: Esperanto translation by Kristjan Schmidt and Michael Moroni
   * po/fi.po: Finnish translation updated by Timo Jyrinki
   * po/fr.po: French translation updated (closes: #567765)
   * po/hu.po: Hungarian translation updated by Gabor Kelemen
   * po/id.po: Indonesian translation by Andika Triwidada (closes: #676960)
   * po/nl.po: Dutch translation updated by Jeroen Schot (closes: #652335)
   * po/pt_BR.po: Brazilian translation updated by Sérgio Cipolla
   * po/ru.po: incomplete Russian translation updated by Andrey
   * po/sk.po: Slovak translation updated by Ivan Masár (closes: #676973)
   * po/sl.po: Slovenian translation updated by Matej Urbančič
   * po/sr.po: incomplete Serbian translation updated by Nikola Nenadic
   * po/tl.po: Tagalog translation updated by Ariel S. Betan
   * po/am.po po/br.po po/et.po po/eu.po po/fa.po po/fur.po po/hi.po
 po/mr.po po/ms.po po/nn.po po/pa.po po/ps.po po/qu.po po/rw.po po/ta.po
 po/ur.po po/xh.po: remove useless (empty) translations
 .
   [ Julian Andres Klode ]
   * Merge patch from Colin Watson to handle non-UTF8 tag files in
 Python 3, by using bytes instead of str when requested; and
 document this in the RST documentation (Closes: #656288)
   * debian/control:
 - Drop Recommends on python2.6 (Closes: #645970)
 - Replace xz-lzma Recommends by xz-utils (Closes: #677934)
   * python/configuration.cc:
 - Handle the use of del on configuration values. Those are represented
   by calling the setter with NULL, which we did not handle before, causing
   a segmentation fault (Closes: #661062)
   * python/tag.cc:
 - Correctly handle file descriptor 0 aka stdin (Closes: #669458)
   * python/acquire.cc:
 - Use pkgAcquire::Setup() to setup the acquire class and handle errors
   from this (Closes: #629624)
   * debian/control:
 - Set Standards-Version to 3.9.3
   * utils/get_ubuntu_mirrors_from_lp.py:
 - Revert move to Python 3, python3-feedparser is not in the archive yet
   * tests:
 - Fix new tests from Sebastian to work with Python 2.6
Checksums-Sha1: 
 ca7cbe75c3b05db803e765d89bc93a105a0c1d9d 1549 python-apt_0.8.5.dsc
 fe546221e8f5fdfa5fcb3d6092cf0b39c359ea96 395569 python-apt_0.8.5.tar.gz
 7077b9c279e0665dc321356e687c10cee72da845 317216 python-apt_0.8.5_amd64.deb
 6aeaacba22c2595adea123306bd77504ef7e8991 242552 python-apt-doc_0.8.5_all.deb
 2502104b0d84852b325ce4c6c4ab16156cdfe047 4359670 python-apt-dbg_0.8.5_amd64.deb
 4ddf725986375b228963119245cba52d79526a3d 7628 python-apt-dev_0.8.5_all.deb
 c3159c3dbe235a56b9ebf43db72a1d88854b2ca3 110736 python-apt-common_0.8.5_all.deb
 c112edb4ec6f380208f963b13230a516a706194d 194692 python3-apt_0.8.5_amd64.deb
 1ce048eef89926a9e93cc06afa0072f83f52f9ea 2173584 
python3-apt-dbg_0.8.5_amd64.deb
Checksums-Sha256: 
 

Accepted samba4 4.0.0~beta2+dfsg1-1 (source amd64)

2012-06-22 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 18 Jun 2012 00:49:12 +0200
Source: samba4
Binary: samba4 libsamdb0 libsamdb-dev libsamba-policy0 libsamba-policy-dev 
samba4-common-bin samba4-clients samba4-testsuite registry-tools 
libparse-pidl-perl samba4-dev libgensec0 libgensec-dev libndr0 libndr-dev 
libndr-standard0 libndr-standard-dev libdcerpc0 libdcerpc-dev libdcerpc-server0 
libdcerpc-server-dev libregistry0 libregistry-dev winbind4 libsamba-hostconfig0 
libsamba-hostconfig-dev libtorture0 libtorture-dev python-samba 
libsamba-util-dev libsamba-util0 samba-dsdb-modules libsmbclient-raw0 
libsmbclient-raw-dev libsamba-credentials0 libsamba-credentials-dev
Architecture: source amd64
Version: 4.0.0~beta2+dfsg1-1
Distribution: unstable
Urgency: low
Maintainer: Samba Debian Maintainers pkg-samba-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 libdcerpc-dev - DCE/RPC library
 libdcerpc-server-dev - DCE/RPC server library - development files
 libdcerpc-server0 - DCE/RPC server library
 libdcerpc0 - DCE/RPC client library
 libgensec-dev - Generic Security Library
 libgensec0 - Generic Security Library
 libndr-dev - NDR marshalling library - development files
 libndr-standard-dev - Standard NDR interfaces - development files
 libndr-standard0 - Standard NDR interfaces
 libndr0- NDR marshalling library
 libparse-pidl-perl - IDL compiler written in Perl
 libregistry-dev - Registry library - development files
 libregistry0 - Registry library
 libsamba-credentials-dev - Samba Credentials management - development files
 libsamba-credentials0 - Samba Credentials management library
 libsamba-hostconfig-dev - Samba host configuration library - development files
 libsamba-hostconfig0 - Samba host configuration library
 libsamba-policy-dev - Samba policy management - development files
 libsamba-policy0 - Samba policy management
 libsamba-util-dev - Samba utility function library - development files
 libsamba-util0 - Samba utility function library
 libsamdb-dev - SAM database - development files
 libsamdb0  - SAM database
 libsmbclient-raw-dev - SMB client library - development files
 libsmbclient-raw0 - SMB client library
 libtorture-dev - Library for running unit tests - development files
 libtorture0 - Library for running Samba 4 unit tests
 python-samba - Python bindings for Samba
 registry-tools - tools for viewing and manipulating the Windows registry
 samba-dsdb-modules - Samba Directory Services Database
 samba4 - SMB/CIFS file, NT domain and active directory server (version 4)
 samba4-clients - client utilities from Samba 4
 samba4-common-bin - Samba 4 common files used by both the server and the client
 samba4-dev - tools for extending Samba
 samba4-testsuite - test suite from Samba 4
 winbind4   - service to resolve user and group information from Windows NT ser
Closes: 677906
Changes: 
 samba4 (4.0.0~beta2+dfsg1-1) unstable; urgency=low
 .
   * New upstream release.
   * Update Slovak translation. Thanks Ivan Masár. Closes: #677906
   * Add build dependency on libacl1-dev.
Checksums-Sha1: 
 4b69a8230671d4c0afbd1f9e089507223fdb4b46 4084 samba4_4.0.0~beta2+dfsg1-1.dsc
 f70a8de07e4fe51d9686b87e721275fa8975d812 20566326 
samba4_4.0.0~beta2+dfsg1.orig.tar.gz
 05fb0e8eff9b458ef8eb6b09ca229e5ffe8a9fef 112352 
samba4_4.0.0~beta2+dfsg1-1.debian.tar.gz
 b58c57a05ebab30d94793563d5197b3ea605d25d 1719436 
samba4_4.0.0~beta2+dfsg1-1_amd64.deb
 64ff33cc4e65cb268b8cadaa5b9ae9ce9dd631db 157996 
libsamdb0_4.0.0~beta2+dfsg1-1_amd64.deb
 e5e22c29d231b9661e9b9749f2ea0cb969ce4d86 13962 
libsamdb-dev_4.0.0~beta2+dfsg1-1_amd64.deb
 9ae451bebae1ad055ec0acc410af186a67b2c407 35010 
libsamba-policy0_4.0.0~beta2+dfsg1-1_amd64.deb
 1f1e8aa5601824d41518bb7e72ad66e696f46841 15328 
libsamba-policy-dev_4.0.0~beta2+dfsg1-1_amd64.deb
 954d6ad49ca366873fe6be715261d21716fc1c2b 35846 
samba4-common-bin_4.0.0~beta2+dfsg1-1_amd64.deb
 01c88fc4daec3f7d5be2d979ef1aa632c09ae2b8 105790 
samba4-clients_4.0.0~beta2+dfsg1-1_amd64.deb
 ee32a7daacc695e20276f31888b55afa2300fb3c 1618880 
samba4-testsuite_4.0.0~beta2+dfsg1-1_amd64.deb
 c2c1e3271c5ce56e25e4d8bef7459e723f1b4490 47910 
registry-tools_4.0.0~beta2+dfsg1-1_amd64.deb
 be138f28c5659f27a68f666193672f7b04fc3af0 118054 
libparse-pidl-perl_4.0.0~beta2+dfsg1-1_amd64.deb
 aacd271f8f8e9a0ab8f2fd949b7a58cc377b8d9e 108530 
samba4-dev_4.0.0~beta2+dfsg1-1_amd64.deb
 fc2df0a54b5a8fd5c17eb56eb7fbf8cd37bfaeda 298442 
libgensec0_4.0.0~beta2+dfsg1-1_amd64.deb
 dcd7ca7ee19ba1fd13a343b610a3a69f569489ec 17236 
libgensec-dev_4.0.0~beta2+dfsg1-1_amd64.deb
 1c5605f540a2ab66470ccde46ecb5f20e827fe3c 48142 
libndr0_4.0.0~beta2+dfsg1-1_amd64.deb
 32eb763c9debd0cd7aef0e67b1854eb24133049e 20256 
libndr-dev_4.0.0~beta2+dfsg1-1_amd64.deb
 644e8b0c7b95af097079accdf886ccc6e62812fc 1668160 
libndr-standard0_4.0.0~beta2+dfsg1-1_amd64.deb
 a3ed69fe9798ba765dc8ee74e4e7dc542c41d516 19148 
libndr-standard-dev_4.0.0~beta2+dfsg1-1_amd64.deb
 

Accepted yafaray-exporter 0.1.2+really0.1.2~beta5-1 (source all)

2012-06-22 Thread Matteo F. Vescovi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 22 Jun 2012 10:31:04 +0200
Source: yafaray-exporter
Binary: yafaray-exporter yafaray-blender2.5-exporter
Architecture: source all
Version: 0.1.2+really0.1.2~beta5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Matteo F. Vescovi mfv.deb...@gmail.com
Description: 
 yafaray-blender2.5-exporter - transitional dummy package for yafaray-exporter
 yafaray-exporter - modern, xml-speaking raytracing-based rendering system
Changes: 
 yafaray-exporter (0.1.2+really0.1.2~beta5-1) unstable; urgency=low
 .
   * New upstream beta release.
 A misunderstanding with upstream brought to think that
 a snapshot release was the stable release, while it wasn't.
 Now trying to fix version numbering.
   * debian/watch: uscan path updated
   * debian/control: DMUA flag set
Checksums-Sha1: 
 34357be2c99f4aa4b403873a69770e3ea7f6b598 2287 
yafaray-exporter_0.1.2+really0.1.2~beta5-1.dsc
 80163ac0d91e1e10fa69a62ae66a90930235d8be 47189 
yafaray-exporter_0.1.2+really0.1.2~beta5.orig.tar.bz2
 55fa3d1c55f58efe5d9c8b594314b6590726d2c2 2619 
yafaray-exporter_0.1.2+really0.1.2~beta5-1.debian.tar.gz
 1e20abc170e3335ee9230f6fff92bf048c16bc86 52116 
yafaray-exporter_0.1.2+really0.1.2~beta5-1_all.deb
 0abfb71a5dc59374b6c4efe7911b4f0a94383687 2312 
yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all.deb
Checksums-Sha256: 
 93a0d11cc3d320dadc795ee52198edbb5a8745b96ee3518f119ec578dfaa881b 2287 
yafaray-exporter_0.1.2+really0.1.2~beta5-1.dsc
 0f1a694dcfb97b09e1427ba9dd8fef8c846a2e3920741a8fb21c2ca8191884b2 47189 
yafaray-exporter_0.1.2+really0.1.2~beta5.orig.tar.bz2
 eebef38ca16c8bd7a9c3a4f22d1c972b7d1cfa5f0f64a0da7feab2ae82aa4000 2619 
yafaray-exporter_0.1.2+really0.1.2~beta5-1.debian.tar.gz
 594a0758506b1cf524649244d010c2c921afa3cba08406c88538bc74fb25e042 52116 
yafaray-exporter_0.1.2+really0.1.2~beta5-1_all.deb
 f4dcf77f1b244bfdb096fd9528171fe9b159ef62bc2cc9aa006edf065f3a0cab 2312 
yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all.deb
Files: 
 bf83d5b25881de5a426567933e11e241 2287 graphics optional 
yafaray-exporter_0.1.2+really0.1.2~beta5-1.dsc
 8cda31151bfc8850d7a3a8cfad8a83e1 47189 graphics optional 
yafaray-exporter_0.1.2+really0.1.2~beta5.orig.tar.bz2
 6bb713ff75560ef80526ff9d17eb6274 2619 graphics optional 
yafaray-exporter_0.1.2+really0.1.2~beta5-1.debian.tar.gz
 9499b5a0320417d427e63c3529e405d2 52116 graphics optional 
yafaray-exporter_0.1.2+really0.1.2~beta5-1_all.deb
 6edd18794f43b43e04ab6e73abcf43b2 2312 oldlibs extra 
yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all.deb

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

iQIcBAEBCgAGBQJP5DEFAAoJEOikiuUxHXZaaBoP/jck5lPauubNvcDhX+Be5Iee
sQ0VAq1/cUR4ptZnuJfKU7LLN9WJsM04UJS3h+vzZuCl6w6NdcUpOfGQlTTL5FXZ
DRgp5ZSiVMP4Ct3Jwxy3YHxsBozKfHt2YaG+cbjhDQ7ZEl4l7yaEGpHl3UMXqsrz
DyPQMpoYNXRcDetF/5+Tq2hCCSiiF5nfD9Ys7Kl2XAGIHvAcZt543KCoxs8LSS8t
wTTP1hC8Ma5+B2pE5TBZVGrx5lQB7CidvdRq8B6YQ1ccAFQ8l663Q5XsynmpaDpA
gjrYHTaJ038O3HEra85dQM3dGR47tbluDlm4hVTL6jHC1qH3LmnjvbMR42RmzZXJ
BxB51MESmo3FwhIpMmQc9BytGxvHUBIflVz6ROgnqWVbC7v/ymLNxSgsf1h9Cxoc
yHQ3mztOSVTD/tpr8KXin3lP7zUYNanw7o6whghquxAgqbW1+o7jPOPeFke6PnOe
uCq5L52d2kNCHiTCQI8xuuPoBeZXOcSnwMhfyocEkKwtjVJXe1lMmKsBqs5Ej8Eb
riQv+eLd1o3Nd5jdG7CBjjhyzeTiOYLbqtdf/7o4NVIGJSJ+X7wCxMhSgyKoSP7R
j0rCG2lkefBPMpFqq3DzjYnMqDENkzLxF6Avvwci2BVuLSJ2ZxwQAqkADQpGnKOF
Ev2tMwFys8+BLm/L20Cr
=Ek9K
-END PGP SIGNATURE-


Accepted:
yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all.deb
  to 
main/y/yafaray-exporter/yafaray-blender2.5-exporter_0.1.2+really0.1.2~beta5-1_all.deb
yafaray-exporter_0.1.2+really0.1.2~beta5-1.debian.tar.gz
  to 
main/y/yafaray-exporter/yafaray-exporter_0.1.2+really0.1.2~beta5-1.debian.tar.gz
yafaray-exporter_0.1.2+really0.1.2~beta5-1.dsc
  to main/y/yafaray-exporter/yafaray-exporter_0.1.2+really0.1.2~beta5-1.dsc
yafaray-exporter_0.1.2+really0.1.2~beta5-1_all.deb
  to main/y/yafaray-exporter/yafaray-exporter_0.1.2+really0.1.2~beta5-1_all.deb
yafaray-exporter_0.1.2+really0.1.2~beta5.orig.tar.bz2
  to 
main/y/yafaray-exporter/yafaray-exporter_0.1.2+really0.1.2~beta5.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/e1si02j-0007fq...@franck.debian.org



Accepted fabric 1.4.2-1.1 (source all)

2012-06-22 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 10:23:10 +0100
Source: fabric
Binary: fabric
Architecture: source all
Version: 1.4.2-1.1
Distribution: unstable
Urgency: low
Maintainer: Chris Lamb la...@debian.org
Changed-By: Chris Lamb la...@debian.org
Description: 
 fabric - Simple Pythonic remote deployment tool
Closes: 677479
Changes: 
 fabric (1.4.2-1.1) unstable; urgency=low
 .
   * Fix paramiko incompatiblity with python-ssh. Thanks to Emmanuel Bouthenot
 (Closes: #677479)
Checksums-Sha1: 
 f62e6c82d643e3a0bb93a83d2abc672cb6d3fc93 1233 fabric_1.4.2-1.1.dsc
 12d6160dce3ab24cd4099fc8ba1b70d8e582daed 3981 fabric_1.4.2-1.1.debian.tar.gz
 a829af98f5597496462fce13788a45c7bf34b120 346332 fabric_1.4.2-1.1_all.deb
Checksums-Sha256: 
 3004396416dc3d45071309e360c850b6b6b24271777c2f9007416ff84b8e01c8 1233 
fabric_1.4.2-1.1.dsc
 9ea014d7e904f96dcce6cd1bbdf4ef03714e9ec61cc0b96889b41986d0bf26f5 3981 
fabric_1.4.2-1.1.debian.tar.gz
 85bee1b771055c0c0443fcfd0f4627b19bcbd4e6950a7485dd2db62843353260 346332 
fabric_1.4.2-1.1_all.deb
Files: 
 69517d3bb327df0eae412ae10ef508f1 1233 net optional fabric_1.4.2-1.1.dsc
 9353b6820ae026e2ecb7869152be0d23 3981 net optional 
fabric_1.4.2-1.1.debian.tar.gz
 64e81cb978abe314dadc062c72c260b5 346332 net optional fabric_1.4.2-1.1_all.deb

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

iEYEARECAAYFAk/kOaEACgkQ5/8uW2NPmiDV4gCgnVzkkJ0gUtVqR/Hz6MIwGcBC
rPkAnA+GooXZZczKUS8ZP1nKTFrs7hbD
=M4Ew
-END PGP SIGNATURE-


Accepted:
fabric_1.4.2-1.1.debian.tar.gz
  to main/f/fabric/fabric_1.4.2-1.1.debian.tar.gz
fabric_1.4.2-1.1.dsc
  to main/f/fabric/fabric_1.4.2-1.1.dsc
fabric_1.4.2-1.1_all.deb
  to main/f/fabric/fabric_1.4.2-1.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/e1si0dq-0001jp...@franck.debian.org



Accepted weborf 0.13-3 (source all amd64)

2012-06-22 Thread Salvo 'LtWorf' Tomaselli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 21 Jun 2012 17:35:43 +0200
Source: weborf
Binary: weborf weborf-daemon qweborf
Architecture: source amd64 all
Version: 0.13-3
Distribution: unstable
Urgency: low
Maintainer: Salvo 'LtWorf' Tomaselli tipos...@tiscali.it
Changed-By: Salvo 'LtWorf' Tomaselli tipos...@tiscali.it
Description: 
 qweborf- Shares files using the HTTP protocol
 weborf - Fast and small webserver meant to be run without root privileges
 weborf-daemon - init script for weborf
Closes: 601253 677083
Changes: 
 weborf (0.13-3) unstable; urgency=low
 .
   * Fixed typo in the description (Closes: #677083)
   * Correctly handles IPv4 clients in log files when started by
 xinetd (Closes: #601253)
   * Updated Standards-Version
   * Build-depends on hardening-wrapper
Checksums-Sha1: 
 77c1dbd5532707c617cfe2154dee9f2f9811b75c 1240 weborf_0.13-3.dsc
 b5f2ffde4819d22209092e2be6b9c7a0ff0750fe 4657 weborf_0.13-3.debian.tar.gz
 7623501311a36b4708c2f6861bd751e44d946fd4 38736 weborf_0.13-3_amd64.deb
 5999b6caf2b04a943e607436f1c91049badd31a8 11438 weborf-daemon_0.13-3_all.deb
 eb6be3e04b4096c1ff711c0597ca679c1cb38099 17404 qweborf_0.13-3_all.deb
Checksums-Sha256: 
 f77767528bb422a01ba768b6e314bfebabca69894714429f865472e436c83a3e 1240 
weborf_0.13-3.dsc
 c2d21f6be39ab2a4c59825f4f684122d8e73b51e45ad1a779f7acdf08919bf55 4657 
weborf_0.13-3.debian.tar.gz
 6f891d3a52490dac427f8df0f0ab234bd2884f92508ad17393b8fe9dfee247a8 38736 
weborf_0.13-3_amd64.deb
 64e7b26fafec763faa8cb3288daad007aa86401bdb6f1d0ac9b90ca12a1565d6 11438 
weborf-daemon_0.13-3_all.deb
 979f71ae1f6413402a2606ad842432607d276e11aa1f18bea2fad775ad4d4cfe 17404 
qweborf_0.13-3_all.deb
Files: 
 86fdcac4ed395b4f757af3ac19a31ccb 1240 httpd optional weborf_0.13-3.dsc
 f3351f83144d1771e1c83b55679a1d91 4657 httpd optional 
weborf_0.13-3.debian.tar.gz
 36000f80ce1f49605a5de3feaec146f3 38736 httpd optional weborf_0.13-3_amd64.deb
 f0ae562dd6ab2ae42acdf253425346e8 11438 httpd optional 
weborf-daemon_0.13-3_all.deb
 80c25ce1e81864a7790e221a2cf88574 17404 httpd optional qweborf_0.13-3_all.deb

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

iEYEARECAAYFAk/kOx4ACgkQ5/8uW2NPmiBwdACcDArggxI6SzOEHJnAabqvstn5
BncAoKtxTdPXu0L/9hAlvP4AUJguLcY3
=o6gw
-END PGP SIGNATURE-


Accepted:
qweborf_0.13-3_all.deb
  to main/w/weborf/qweborf_0.13-3_all.deb
weborf-daemon_0.13-3_all.deb
  to main/w/weborf/weborf-daemon_0.13-3_all.deb
weborf_0.13-3.debian.tar.gz
  to main/w/weborf/weborf_0.13-3.debian.tar.gz
weborf_0.13-3.dsc
  to main/w/weborf/weborf_0.13-3.dsc
weborf_0.13-3_amd64.deb
  to main/w/weborf/weborf_0.13-3_amd64.deb


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



Accepted postgresql-9.1 9.1.4-2 (source all amd64)

2012-06-22 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 10:35:38 +0200
Source: postgresql-9.1
Binary: libpq-dev libpq5 libecpg6 libecpg-dev libecpg-compat3 libpgtypes3 
postgresql-9.1 postgresql-9.1-dbg postgresql-client-9.1 
postgresql-server-dev-9.1 postgresql-doc-9.1 postgresql-contrib-9.1 
postgresql-plperl-9.1 postgresql-plpython-9.1 postgresql-plpython3-9.1 
postgresql-pltcl-9.1
Architecture: source amd64 all
Version: 9.1.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian PostgreSQL Maintainers 
pkg-postgresql-pub...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 libecpg-compat3 - older version of run-time library for ECPG programs
 libecpg-dev - development files for ECPG (Embedded PostgreSQL for C)
 libecpg6   - run-time library for ECPG programs
 libpgtypes3 - shared library libpgtypes for PostgreSQL 9.1
 libpq-dev  - header files for libpq5 (PostgreSQL library)
 libpq5 - PostgreSQL C client library
 postgresql-9.1 - object-relational SQL database, version 9.1 server
 postgresql-9.1-dbg - debug symbols for postgresql-9.1
 postgresql-client-9.1 - front-end programs for PostgreSQL 9.1
 postgresql-contrib-9.1 - additional facilities for PostgreSQL
 postgresql-doc-9.1 - documentation for the PostgreSQL database management 
system
 postgresql-plperl-9.1 - PL/Perl procedural language for PostgreSQL 9.1
 postgresql-plpython-9.1 - PL/Python procedural language for PostgreSQL 9.1
 postgresql-plpython3-9.1 - PL/Python 3 procedural language for PostgreSQL 9.1
 postgresql-pltcl-9.1 - PL/Tcl procedural language for PostgreSQL 9.1
 postgresql-server-dev-9.1 - development files for PostgreSQL 9.1 server-side 
programming
Closes: 668300 674421
Changes: 
 postgresql-9.1 (9.1.4-2) unstable; urgency=low
 .
   [ Christoph Berg ]
   * Some cosmetic changes to control and rules file.
   * Add myself to Uploaders.
 .
   [ Martin Pitt ]
   * Move pg_basebackup *.mo files and man page to -client-9.2. Thanks to Peter
 Eisentraut for spotting this. (Closes: #674421)
   * debian/postgresql-9.1.preinst: Remove postmaster.1.gz alternative on
 upgrades to this version, so that the postinst can rebuild it. This is
 necessary to drop pg_basebackup.1.gz from the server alternatives group,
 so that it can go into the client group.
   * debian/postgresql-9.1.preinst: Drop obsolete transition code.
   * debian/rules: Set -DLINUX_OOM_ADJ in CPPFLAGS, not in CFLAGS. Thanks Peter
 Eisentraut. (Closes: #668300)
Checksums-Sha1: 
 8a70c020bdb8deedb5846158c2002d161811719e 3287 postgresql-9.1_9.1.4-2.dsc
 61eafad065e302182e76ce6682504021543c368c 32789 
postgresql-9.1_9.1.4-2.debian.tar.gz
 b84d62b5866fde1a32c48578a185739dd8237141 612778 libpq-dev_9.1.4-2_amd64.deb
 16713d8f681281a523759b758ac82a281ff2e109 526560 libpq5_9.1.4-2_amd64.deb
 7ee64daa92bd4459dc3772881e699fcfe8d56168 472144 libecpg6_9.1.4-2_amd64.deb
 3b3b0f2dc64a789f78d0d773737e4c6eecce9c73 642746 libecpg-dev_9.1.4-2_amd64.deb
 1f19c8af341e04d4a46b2ea1d9d30acc1e92d187 389202 
libecpg-compat3_9.1.4-2_amd64.deb
 531aea7980b26aff797f252ebf51332b7b1886fc 413346 libpgtypes3_9.1.4-2_amd64.deb
 4c54af3744dd05a17d1dca15b1615eab76f3e814 6293566 
postgresql-9.1_9.1.4-2_amd64.deb
 9199e9f997eac0ce75e9a874198e7719773eb58f 11362096 
postgresql-9.1-dbg_9.1.4-2_amd64.deb
 bc63b2c37f5620b36810c7f05d61d4140413607d 2008290 
postgresql-client-9.1_9.1.4-2_amd64.deb
 b1f0a23a48afe5e6882519e7e53a9a1c32c74e70 1057652 
postgresql-server-dev-9.1_9.1.4-2_amd64.deb
 e9959141278570511df75c55e41b67d406bdf9a7 2929034 
postgresql-doc-9.1_9.1.4-2_all.deb
 a445a3fa984ef0cb802c55c6ae97deaeecc7815c 852344 
postgresql-contrib-9.1_9.1.4-2_amd64.deb
 c81a0d701efe6da32d9254a70409a80247236c3b 436916 
postgresql-plperl-9.1_9.1.4-2_amd64.deb
 c6bfafabfa4abb3a2dda6060c5d937dc89cfa213 419846 
postgresql-plpython-9.1_9.1.4-2_amd64.deb
 9a9eccf903642869653ec235c1372a2e7f4430c3 419610 
postgresql-plpython3-9.1_9.1.4-2_amd64.deb
 3a2cfd28c4c7ecd63923b676b0767dd16fb99aa7 406246 
postgresql-pltcl-9.1_9.1.4-2_amd64.deb
Checksums-Sha256: 
 3f5ec4cad48f3133ee9dfdc467b679cd1a7122de513d5c7c822f94fe5d9fb4fc 3287 
postgresql-9.1_9.1.4-2.dsc
 2438def609a913e8f07a7df342ba0f0311782e3cf3712175accfebc359ee3e52 32789 
postgresql-9.1_9.1.4-2.debian.tar.gz
 4a6fd67e140086b57e1a593dcfce00b6fea3fd8bcfcfed7b2e2104e105430def 612778 
libpq-dev_9.1.4-2_amd64.deb
 0d6806179150fafa37bd5c7deea4ef85e3f726bf14f5709da64ebc49b7ed7faa 526560 
libpq5_9.1.4-2_amd64.deb
 d83798da2cc82f079a2f6b9c311cea2234893691815407f56a926bd2d2ffd053 472144 
libecpg6_9.1.4-2_amd64.deb
 852f2e3873bda66849461e3457c4ecb145ac010fde5c99b74603331a8cf9bbc6 642746 
libecpg-dev_9.1.4-2_amd64.deb
 bd69788760a6792b93a332eb9850abca4af1d806cdb39479d26fbc7c95c9552d 389202 
libecpg-compat3_9.1.4-2_amd64.deb
 81ef4de05b2da86ad891773cc15f9c0e7b70c5ed01b06ff5b1c215d0078f8a56 413346 
libpgtypes3_9.1.4-2_amd64.deb
 54a646a453c8adcd2039a31600d5d7815b0588bc3a86c08b98afaf1d559a8ef5 6293566 

Accepted yafaray 0.1.2+really0.1.2~beta5-2 (source amd64)

2012-06-22 Thread Matteo F. Vescovi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 22 Jun 2012 11:32:51 +0200
Source: yafaray
Binary: yafaray
Architecture: source amd64
Version: 0.1.2+really0.1.2~beta5-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Matteo F. Vescovi mfv.deb...@gmail.com
Description: 
 yafaray- modern, xml-speaking raytracing-based rendering system
Changes: 
 yafaray (0.1.2+really0.1.2~beta5-2) unstable; urgency=low
 .
   [ Alessio Treglia ]
   * Set DMUA to yes.
 .
   [ Matteo F. Vescovi ]
   * debian/watch: uscan path updated
Checksums-Sha1: 
 2f4089ceebcc608bd36d3074e93225bacac5c246 2243 
yafaray_0.1.2+really0.1.2~beta5-2.dsc
 67c5fbeb4569fda81a61fda7979b8a3abaaafb5b 7068 
yafaray_0.1.2+really0.1.2~beta5-2.debian.tar.gz
 13a93a0d8bce5e8953a74af2badb511e7d3e47e5 1072998 
yafaray_0.1.2+really0.1.2~beta5-2_amd64.deb
Checksums-Sha256: 
 4a5bd2e1f2b1f300ff5050889ef55a12186207ef75a5ec920e209f2de9882b55 2243 
yafaray_0.1.2+really0.1.2~beta5-2.dsc
 a95fc4ded6b80b263c27675cf0a402b1e13e6171e61928b7557a41ce6914048b 7068 
yafaray_0.1.2+really0.1.2~beta5-2.debian.tar.gz
 e89e7872ebd69dda57ac4cbae8d0f2babc7730d40a877d08365e28694033bc43 1072998 
yafaray_0.1.2+really0.1.2~beta5-2_amd64.deb
Files: 
 73d746d71a39768377edb4be7dda1e0d 2243 graphics optional 
yafaray_0.1.2+really0.1.2~beta5-2.dsc
 3468625b9952c0ed3f6a3aedc9226be1 7068 graphics optional 
yafaray_0.1.2+really0.1.2~beta5-2.debian.tar.gz
 9636b9dffd207a17c0cb4fdd315d0d69 1072998 graphics optional 
yafaray_0.1.2+really0.1.2~beta5-2_amd64.deb

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

iQIcBAEBCgAGBQJP5D34AAoJEOikiuUxHXZaVIAP/i3JLPUFY55T66a38p8B4TVY
3J8oSO4nbkOdavgTUvTW9M8dIULIwIKcsmTBsYjgdZghKIam9abp9ijWTavzgLDJ
XVhdUVLb9QLn/kt2af+Wjw1ZLltKZX0f3+mFHjFLUL/EMnva7xqK2gz6x3yEf9XF
SoWYtFWLd+tTx4Tx1Vqlp27uHSnj6B6DaMDpuv7AZ8fy2Cw4bdmfo8oaGU6yxDo4
BH/9xNy9gqKmUUOtIW6KQazurgyeauJnDN1zawPZp6/bmsrEPnWt9LyDxcS3aM1i
VHfpYpRcwTppehD0TS3ym43qu1fVNyQdScuL+6W3wKzfk8dYmcxETHiISnEIY2no
IBs4Tj6U8epq9HUJLCGHbi5T2WLrjlgURSngqPPMBcwvv6M9E1eU24BuRzaVYyuQ
NzOn7sa9YXtjERDhVLXTmIaWYLDkSlqXe6FFoVvP/91JnYK6G9tSx5SmpkKjSkT7
Zo2/KXh5onVjtALrlEKXEj9rBpVN30jmgMo2/1BVjSgROQR8S4K2gmr+Nko8xjAN
taf5Bxv0ZAlaX82ChmXflOgUU6ccZ2ABgz0I170Oqh7thWPmxA48mo7fY87bhmRH
zJ3Fsh370bw3JxbnPp90KS88QfMT1oSYSvGvC+Hdm01Hx0Q3zffyL8S5MBRdmmCP
EUIkzzXDcfm2jFGbT8JM
=+bYh
-END PGP SIGNATURE-


Accepted:
yafaray_0.1.2+really0.1.2~beta5-2.debian.tar.gz
  to main/y/yafaray/yafaray_0.1.2+really0.1.2~beta5-2.debian.tar.gz
yafaray_0.1.2+really0.1.2~beta5-2.dsc
  to main/y/yafaray/yafaray_0.1.2+really0.1.2~beta5-2.dsc
yafaray_0.1.2+really0.1.2~beta5-2_amd64.deb
  to main/y/yafaray/yafaray_0.1.2+really0.1.2~beta5-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/e1si0j4-00010h...@franck.debian.org



Accepted console-setup 1.78 (source all)

2012-06-22 Thread Cyril Brulebois
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 12:07:04 +0200
Source: console-setup
Binary: keyboard-configuration console-setup console-setup-mini 
console-setup-linux console-setup-freebsd bdf2psf console-setup-udeb 
console-setup-amiga-ekmap console-setup-ataritt-ekmap 
console-setup-macintoshold-ekmap console-setup-pc-ekmap 
console-setup-sun4-ekmap console-setup-sun5-ekmap console-setup-pc-ekbd 
console-setup-linux-fonts-udeb console-setup-freebsd-fonts-udeb 
console-setup-linux-charmaps-udeb console-setup-freebsd-charmaps-udeb
Architecture: source all
Version: 1.78
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Cyril Brulebois k...@debian.org
Description: 
 bdf2psf- font converter to generate console fonts from BDF source fonts
 console-setup - console font and keymap setup program
 console-setup-amiga-ekmap - encoded Linux keyboard layouts for Amiga keyboards 
(udeb)
 console-setup-ataritt-ekmap - encoded Linux keyboard layouts for Atari TT 
keyboards (udeb)
 console-setup-freebsd - FreeBSD specific part of console-setup
 console-setup-freebsd-charmaps-udeb - FreeBSD 8-bit charmaps for 
console-setup-udeb (udeb)
 console-setup-freebsd-fonts-udeb - FreeBSD console fonts for Debian Installer 
(udeb)
 console-setup-linux - Linux specific part of console-setup
 console-setup-linux-charmaps-udeb - Linux 8-bit charmaps for 
console-setup-udeb (udeb)
 console-setup-linux-fonts-udeb - Linux console fonts for Debian Installer 
(udeb)
 console-setup-macintoshold-ekmap - encoded Linux keyboard layouts for 
old-style Macintosh keyboards (udeb)
 console-setup-mini - console font and keymap setup program - reduced version 
for Linux
 console-setup-pc-ekbd - encoded FreeBSD keyboard layouts for PC keyboards 
(udeb)
 console-setup-pc-ekmap - encoded Linux keyboard layouts for PC keyboards (udeb)
 console-setup-sun4-ekmap - encoded Linux keyboard layouts for Sun4 keyboards 
(udeb)
 console-setup-sun5-ekmap - encoded Linux keyboard layouts for Sun5 keyboards 
(udeb)
 console-setup-udeb - Configure the keyboard (udeb)
 keyboard-configuration - system-wide keyboard preferences
Changes: 
 console-setup (1.78) unstable; urgency=low
 .
   * Team upload.
   * Updated translations:
 - Amharic (am.po)
 - Croatian (hr.po)
   * Add support for parallel=n in DEB_BUILD_OPTIONS.
Checksums-Sha1: 
 4134564870e5ef5b90c7f065cf54ae0e2a5ace13 2455 console-setup_1.78.dsc
 66690ba187e55dcd3aea764360fa73a685db42cd 3260137 console-setup_1.78.tar.gz
 24821c9eacaa367e356408cc1f9a696c7b7ad72b 604758 
keyboard-configuration_1.78_all.deb
 650cd215ab85f0e43cc06da78c11c7daee15d7ee 120526 console-setup_1.78_all.deb
 b838e6c65fd47f03a4a03b3c45ed4952834b97fe 26044 console-setup-mini_1.78_all.deb
 76a0827d9d870367ec487e3b82a7deeeda8a9edc 994508 
console-setup-linux_1.78_all.deb
 32f539eca24fb9809b7e534c5464f3a5c80ba30c 169930 
console-setup-freebsd_1.78_all.deb
 bffbda14da7791a1866d09345d4e7e68b49d3ef8 56076 bdf2psf_1.78_all.deb
 08b61cfef8e20f11849531edf9f702cb9ca6acd6 204134 
console-setup-udeb_1.78_all.udeb
 13ca116ded4b0376a9bfd79c53d920f412bb2ea8 1328 
console-setup-amiga-ekmap_1.78_all.udeb
 dc3bbb2f4aa889ce437b9d5ca80466afc8f4c84a 1188 
console-setup-ataritt-ekmap_1.78_all.udeb
 7d22ae1afa9e64a117573900e6ec22fd9f0d277b 1534 
console-setup-macintoshold-ekmap_1.78_all.udeb
 0acbe475ce158580f9b5ec54fca5478734734e42 1512 
console-setup-pc-ekmap_1.78_all.udeb
 ba63b289d9ad4543cdaa6ed6a91a9c42ac833be3 1338 
console-setup-sun4-ekmap_1.78_all.udeb
 f3a6c552c54ca4b4d20fb9d4be80733be029528d 1338 
console-setup-sun5-ekmap_1.78_all.udeb
 185639821ceb535f142511d4f5ebb5724dcdc38e 780 
console-setup-pc-ekbd_1.78_all.udeb
 494f4484fea799859dc5b344b309d8b7f89ac344 57454 
console-setup-linux-fonts-udeb_1.78_all.udeb
 c30f9bf60c5cfaf3aba85883d90537e60a17ece4 15744 
console-setup-freebsd-fonts-udeb_1.78_all.udeb
 0a28e10d86c617f92fb3e0d2a745744b5e9ff8cc 22556 
console-setup-linux-charmaps-udeb_1.78_all.udeb
 aff8a8b6a09c21cd0aff0e7491c55fc91710301f 7058 
console-setup-freebsd-charmaps-udeb_1.78_all.udeb
Checksums-Sha256: 
 bd0a0276b62ccf6283d8ec88240fe5e38dda43d36f1d563e964c0cfa18b51387 2455 
console-setup_1.78.dsc
 615e02d611864e8c4c1fb420742a1d92ba5060836a167e0f9a5f02f3a688f6dd 3260137 
console-setup_1.78.tar.gz
 854268b46afbbca551e2152f610662f942d899a085de1fc8a7bba3c719776e3f 604758 
keyboard-configuration_1.78_all.deb
 e2b5c986fb3a6f2d5dc6673edf127ccc701f118f931202cf9a92b174e60a419b 120526 
console-setup_1.78_all.deb
 e04b97b11b7dffe308b814aaabf5637fa4e17319e751a24858ac289efedbb3af 26044 
console-setup-mini_1.78_all.deb
 e04d7c95d2452a1907633e63d95c2f945b6aa1706cd8348d6dcb7d3513880ef7 994508 
console-setup-linux_1.78_all.deb
 20e09dfe9eb8e4e03b3623aacd4afcad79a7c2e9a09d6b5f3c8b2767abdb91fb 169930 
console-setup-freebsd_1.78_all.deb
 b85384205132cc8941309b8059152d2aff864ead21b199a527ffc464d58f1503 56076 
bdf2psf_1.78_all.deb
 

Accepted base-passwd 3.5.25 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 11:40:25 +0100
Source: base-passwd
Binary: base-passwd
Architecture: source i386
Version: 3.5.25
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 base-passwd - Debian base system master password and group files
Closes: 650553 655501
Changes: 
 base-passwd (3.5.25) unstable; urgency=low
 .
   * users-and-groups: Document historical meaning of sys user/group (thanks
 to Mantas M. for the tip).
   * Use dpkg-buildflags to enable hardening options (based on a patch from
 Moritz Muehlenhoff; closes: #655501).
   * Update users-and-groups documentation of the sudo group to describe
 current behaviour and mention pkexec (thanks, Luca Capello; closes:
 #650553).
Checksums-Sha1: 
 abd36ffd81ab2d85e939cfde83c4b5b26161f334 1574 base-passwd_3.5.25.dsc
 92e78d57d827cfdb5147c4483979732e50cd63c6 77728 base-passwd_3.5.25.tar.gz
 c8fb82106d338cd6ab59ce292ccfe430b350a36b 46982 base-passwd_3.5.25_i386.deb
Checksums-Sha256: 
 6fb9649e1ecc86f2d09509da5444109422ac7aed71cc4cc95dd1001f859495ae 1574 
base-passwd_3.5.25.dsc
 fd7801cdf1fb22e5156ef333415a8564eb35f318ec13dd2ee21bc2dc27548ca6 77728 
base-passwd_3.5.25.tar.gz
 78f9f6ffa45128b5a2c7090e19908ba9078bac6846e421e891d4f0b3c0ad8893 46982 
base-passwd_3.5.25_i386.deb
Files: 
 db02cba9b9a43e7e1af971defa41f14e 1574 admin required base-passwd_3.5.25.dsc
 0c4fc54429a3d7feb5fb687535c5dc24 77728 admin required base-passwd_3.5.25.tar.gz
 93da55b31dfc57a7c6fedd2c0d48d9f8 46982 admin required 
base-passwd_3.5.25_i386.deb

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

iQIVAwUBT+RMLzk1h9l9hlALAQihcRAAjIISkwktwmnh5tyDScz5EE7HydUNbhoU
8HrdJEpi9tHcNmkJs8w0YUIATw3irit+D1DByJliK14lU1IGxSMYJvyyutY7UYKZ
7m8vjTFfoPcCsJ3cxDzDdKccC8QRtiT4p5HqkCSfrTHb/jlFYRU5QgOtaDe08k0V
YbCXLiK730cHF9mO1ll3cCcrLyweERM15WY8Bbeh+wdmDdS74uCDgcY4r8Nh4e4w
dnvh9AJnG2wHnzecVJrn6UckN63D9wKyX+eJt8jCsgxJFaAM10+ZoSnmDuxkGB/B
VnerHbu5EkD7mRK7anXHJfuWlUDwFN1cSYDhafZ2V38qy2tzYlTu/inxEqbZRN4Q
1Ox1ZWxBs+U7ad3mnUYmwbwB5/s8/HCPe7XGzeAKHTsMuwPZ5BkP5ydMWxDRSRI+
4//HD+wqUByEC2egKQLsf6sm4HMjpAGgjWUPa/MBJ5fg5+YcyAcSnN/l2jtvBsXK
I4it3lQHdJG0gJjMVjkqUS/6LYxkbjaDL2BBczJjCSRPIi4ZAnoZqTPDZOk+zxjA
ycDRYXjFtSRHUEkhfcLorK3Y/VkeYItrdVE6difEwlx8y5eNo09zk1LXqIhT9I2B
0fohEnRzltjD9uQHcJXDyIpo8QPAzBJgZk8omtOnR2FdjVSTENbMP0XYpTapNMXs
2MfMfeD7GBE=
=UPqD
-END PGP SIGNATURE-


Accepted:
base-passwd_3.5.25.dsc
  to main/b/base-passwd/base-passwd_3.5.25.dsc
base-passwd_3.5.25.tar.gz
  to main/b/base-passwd/base-passwd_3.5.25.tar.gz
base-passwd_3.5.25_i386.deb
  to main/b/base-passwd/base-passwd_3.5.25_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/e1si1cv-0003ii...@franck.debian.org



Accepted r-base 2.15.1-1 (source i386 all)

2012-06-22 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 06:04:05 -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.15.1-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.15.1-1) unstable; urgency=low
 .
   * New upstream version released this morning
 .
   * src/X11/*: Applied revised patch by Philip Johnson to to set the X11
 icon and window class for improved desktop experience; patch source
 and support files are in debian/icon-class-patch/.
   * debian/rules: Install icon png file and desktop file from Philip too
   * debian/r-base-core.dirs: Add two directories for icon and desktop
Checksums-Sha1: 
 5a1637605498d09e8418b8cbb83d062113ccc184 2087 r-base_2.15.1-1.dsc
 f0e6912be6dfc0d1fdc4be66048304d8befe8424 24592493 r-base_2.15.1.orig.tar.gz
 ae6333771a57bc74bb6b486a720cfa4f24890bf3 85979 r-base_2.15.1-1.diff.gz
 a3867276f0c39b2211bcc14f08913ee69305c96f 20431196 r-base-core_2.15.1-1_i386.deb
 8953fb274820c5ab4049840ebdb805342edf4071 619692 r-mathlib_2.15.1-1_i386.deb
 b1a6ebdba34fa3efe3b1fc0255f3e7195fad0045 3392146 
r-base-core-dbg_2.15.1-1_i386.deb
 2c942796f33793faea9106291bf19f6bc84d661b 36478 r-base_2.15.1-1_all.deb
 04611bcc844e841b288683c955ea3addb7862c2c 3888 r-base-dev_2.15.1-1_all.deb
 53da97e57215d86df7a43240fa2cd4aeb208c7c2 89990 r-base-html_2.15.1-1_all.deb
 3aebb097d45769afdd35e124bf79c4a54180cdf0 8428900 r-doc-pdf_2.15.1-1_all.deb
 b332d2bd4a147b2bf24d3bf13fd1abcfd48a8ade 633928 r-doc-html_2.15.1-1_all.deb
 d91fd72b8440f4939cccacdfb81bf8b52992340e 542806 r-doc-info_2.15.1-1_all.deb
 fb02578fbbf99752a4e9bb406cb8bd2d62c257d6 2676 r-recommended_2.15.1-1_all.deb
Checksums-Sha256: 
 e0e3a49df3da7ece84afae61cf0462e1bcf3703f06b052b2975f2f59ea54485d 2087 
r-base_2.15.1-1.dsc
 96e4baea9dc7653b9160d7f2e1d321d0f252fee37ceb4273d4c94f0d4d815485 24592493 
r-base_2.15.1.orig.tar.gz
 be4d64eab8b9036a691947625be199259f0cad31d2c4a8341f56b4b0bba95b96 85979 
r-base_2.15.1-1.diff.gz
 d565207512574ea7d53e32b6fd87c61fc35473fc0c8159cddfa642c8987ea7d8 20431196 
r-base-core_2.15.1-1_i386.deb
 5cd661fff920901d2d4855dbfe026b86a42699ec0c639e2c119c4c69416c9a83 619692 
r-mathlib_2.15.1-1_i386.deb
 2a37fd31f63538d0fc5b6abdf3eb4d5673a4f91eecc3ba649ffecdf1d7765422 3392146 
r-base-core-dbg_2.15.1-1_i386.deb
 f74f1b40d6a12502f30282d62b12ec1dc5873e869cfffd6cfd8d5eb32b970e4d 36478 
r-base_2.15.1-1_all.deb
 d86c0dcec6df616062454860c63cd5cfa955e21213aa899a84f891673762b270 3888 
r-base-dev_2.15.1-1_all.deb
 e6eff67ceb23c404c48d04059d68d942b6866e92c62bee081830ef1286a5e500 89990 
r-base-html_2.15.1-1_all.deb
 177cb927055e4cc404757e4b63a081303b9a781eceb864be96c987860c42b613 8428900 
r-doc-pdf_2.15.1-1_all.deb
 76d05e6f3ea542bdae7308a52a6edc34aff1fd3e4acd92d5479981e18b7d1866 633928 
r-doc-html_2.15.1-1_all.deb
 38fef7846b6a27b3db261df24ab26a18f138295b2ff00d91b2626680ada2a1d2 542806 
r-doc-info_2.15.1-1_all.deb
 e18d676d291d6560b83045812c70240b4c32f540b1e9c93dd8027d87dba6 2676 
r-recommended_2.15.1-1_all.deb
Files: 
 73f4d71fe458a5c002bba26ca1cce8f1 2087 gnu-r optional r-base_2.15.1-1.dsc
 fcdf247e707fdade82b78bcf911a54f1 24592493 gnu-r optional 
r-base_2.15.1.orig.tar.gz
 1fa1c14c9850d6a1fb954e50618a5c00 85979 gnu-r optional r-base_2.15.1-1.diff.gz
 d10f7addf9732d3854b05b26ee941488 20431196 gnu-r optional 
r-base-core_2.15.1-1_i386.deb
 81c889dbe64ce6b1c20738ef4b8f44ab 619692 gnu-r optional 
r-mathlib_2.15.1-1_i386.deb
 f8cb5a26220e4f1e69836f6177234f2d 3392146 debug extra 
r-base-core-dbg_2.15.1-1_i386.deb
 726630159cd14d576deab887393adb69 36478 gnu-r optional r-base_2.15.1-1_all.deb
 1b13eb93165c0e572595507f32204026 3888 gnu-r optional 
r-base-dev_2.15.1-1_all.deb
 b07e1f05f2dea1490bd71b7e7b8dae4e 89990 doc extra r-base-html_2.15.1-1_all.deb
 2c0fb3074b5ab1d10da5a4204f1441aa 8428900 doc optional 
r-doc-pdf_2.15.1-1_all.deb
 3faaeef3d7dadff7d142834fa71dced6 633928 doc optional 
r-doc-html_2.15.1-1_all.deb
 6a7c8ee468ede8cce3fe9cec8d36e370 542806 doc optional 
r-doc-info_2.15.1-1_all.deb
 434244788ea1183a0f88ae28ddc62c6b 2676 gnu-r optional 
r-recommended_2.15.1-1_all.deb

-BEGIN PGP 

Accepted db1-compat 2.1.3-16 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 12:33:49 +0100
Source: db1-compat
Binary: libdb1-compat
Architecture: source i386
Version: 2.1.3-16
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 libdb1-compat - Berkeley database routines [glibc 2.0/2.1 compatibility]
Changes: 
 db1-compat (2.1.3-16) unstable; urgency=low
 .
   * Use dpkg-buildflags to enable hardening options.
   * Remove article from start of package synopsis.
Checksums-Sha1: 
 7ae1a7135c0070b025367720bfd2d80f1a8b79db 1772 db1-compat_2.1.3-16.dsc
 773c7e2c9706bc1ca3125043a04ac599f1fc0d04 17518 
db1-compat_2.1.3-16.debian.tar.gz
 6b02ff8b7b90ea0e8f62ab3f4a10535e15eb348f 48768 libdb1-compat_2.1.3-16_i386.deb
Checksums-Sha256: 
 9394d04f1e40df4190b777c7af3a4ff417abd44b0703086c7cc34e0267c8497b 1772 
db1-compat_2.1.3-16.dsc
 569b75cf30f3d658247076f620e2422065c7ed9671efe54179173de9f401e827 17518 
db1-compat_2.1.3-16.debian.tar.gz
 337db62390367bccaae7635744086d86a276500d67852c0300eeb1a5405bcacc 48768 
libdb1-compat_2.1.3-16_i386.deb
Files: 
 e66ea5baf8a16b20d0e35da69267f945 1772 oldlibs extra db1-compat_2.1.3-16.dsc
 aa8c111d11f38d224d1f36031fd4c7ad 17518 oldlibs extra 
db1-compat_2.1.3-16.debian.tar.gz
 9d6d749d55247d5ce4816d8150e461d5 48768 oldlibs extra 
libdb1-compat_2.1.3-16_i386.deb

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

iQIVAwUBT+RY7jk1h9l9hlALAQjwBhAAnkkMfpAwX6ldi9hxI9/x2MYHAJqEpsGt
iR6JhkXU8drJE7/7/mAqWrVQhX4GNDe6wIbXQ8wIvoFLMgzGUh5zgBj6NbO08huT
p1VCzmDC2bLQQCBsZ3czIJCAilqNu2LLpmocmP11uZJx6g5LB0j1zPYMyRMH6ZJd
9EfW0gzm3DgBnMIhF0fUXXd2w2VSCXJTaRYawHQW5RhLkmP83t6qnqNEVrfge5Yj
MRS0fqoas10RQR1yUEqHLFcUtG1mSAbm0xjb/S1i68vQ23Jdcrq8Cds+hW7ML8gj
qvv+eyM8V8avqf2EUi9OJ5Ywo4rDBiec34D2NRTk6Sj4Em0a7mu8IbkFhklCoeFk
ev4g7uAw/fOpHjE+arBBgZLhm592pT1gEtMZrRdiYDeUFaYx/XDAn8EGKzEo7fam
9bsqyl1XufA9lZwpRRq8qj/yrnr6egwokdZ2qySuZdAidfNj7tpKf59Ox4Z2NfDu
HVONdDPeIgBZyCbeHqXxRp4hSP9FcCpHIz/TQLlw830khucP5u3O5Oj0StARr2T4
NSD9NUbGsis3YRn+ofO4pBZ3EQf82mxtbmMNrqW0kSwofx1wGQf2lYvmETQItEH5
mEyhfBkMnKMS6ydvCixYUR40DrFogCLtHmcJD2/n4hRnCkDbZ7JHKHYKL5YYGhIp
MiewpwQsqBY=
=QjwA
-END PGP SIGNATURE-


Accepted:
db1-compat_2.1.3-16.debian.tar.gz
  to main/d/db1-compat/db1-compat_2.1.3-16.debian.tar.gz
db1-compat_2.1.3-16.dsc
  to main/d/db1-compat/db1-compat_2.1.3-16.dsc
libdb1-compat_2.1.3-16_i386.deb
  to main/d/db1-compat/libdb1-compat_2.1.3-16_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/e1si2kh-00068c...@franck.debian.org



Accepted ubuntu-dev-tools 0.143 (source all)

2012-06-22 Thread Benjamin Drung
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 22 Jun 2012 13:34:43 +0200
Source: ubuntu-dev-tools
Binary: ubuntu-dev-tools
Architecture: source all
Version: 0.143
Distribution: unstable
Urgency: low
Maintainer: Ubuntu Developers ubuntu-dev-t...@lists.alioth.debian.org
Changed-By: Benjamin Drung bdr...@debian.org
Description: 
 ubuntu-dev-tools - useful tools for Ubuntu developers
Closes: 678245
Changes: 
 ubuntu-dev-tools (0.143) unstable; urgency=low
 .
   [ Iain Lane ]
   * backportpackage: Fix filenames searched when looking for existing
 .orig.tar.foo files (to determine if we need to upload it again or not).
 (LP: #1007908)
   * backportpackage: Unset DEBEMAIL when building source package. Fixes error
 when building backports for packages with no Ubuntu changes.
 (LP: #1007042)
 .
   [ Mathieu Trudel-Lapierre ]
   * mk-sbuild: use and update messages to suggest using the source:$chroot way
 of referring to source chroots instead of $chroot-source; since the latter
 does not work with btrfs snapshot-based chroots. (LP: #1014669)
 .
   [ Lars Düsing ]
   * Corrected brackets in man-page for sponsor-patch.
 .
   [ Stefano Rivera ]
   * pbuilder-dist: Don't try to enable -updates for the current codename
 referring to Debian testing, either (LP: #1011870)
   * Correct spelling mistakes in package description, thanks Logan Rosen for
 the patch (Closes: #678245)
   * Correct metavar for --mirror in backportpackage (LP: #999727)
   * submittodebian: Explitictly UTF-8 encode the bug body (LP: #1005834)
   * backportpackage.1: Document --key and --dont-sign (LP: #1007564)
   * seeded-in-ubuntu: Catch errors in parsing data, and don't keep unreadable
 data cached (LP: #1008783)
   * ubuntutools.archive: Improve error handling around rmadison calls
 (LP: #1010951)
   * submittodebian; Unset DEBEMAIL when building source package.
 (LP: #1015066)
 .
   [ Benjamin Drung ]
   * Add a man page for the reverse-build-depends wrapper script.
Checksums-Sha1: 
 2b625a8acb6b943dbd9340d1fdc105ab411f25ca 2052 ubuntu-dev-tools_0.143.dsc
 736ce6bd9f7d1f19f1d98dea53958ae990091662 191490 ubuntu-dev-tools_0.143.tar.gz
 ba298d768dd5eece5e9fad759e4bc13e2ca02259 192836 ubuntu-dev-tools_0.143_all.deb
Checksums-Sha256: 
 2ec979e31c4ab4708a0e607ac20b89be5b7168ee8b24ebcd2e360d2e3d596194 2052 
ubuntu-dev-tools_0.143.dsc
 1f84e68b6a383e36f01970092d0b9c4a88c859ea674155f86192566fbcaeef00 191490 
ubuntu-dev-tools_0.143.tar.gz
 eff57dba73441010167968e37526b03d283864cd3825c187bbeaf288cc8cc186 192836 
ubuntu-dev-tools_0.143_all.deb
Files: 
 5ef8bde21674fbeb784b8ae47f3bbef0 2052 devel optional ubuntu-dev-tools_0.143.dsc
 0d600e32496fa3737dbed40c9e2fb9f8 191490 devel optional 
ubuntu-dev-tools_0.143.tar.gz
 3e6c74b9e50df33744591c550f9558d4 192836 devel optional 
ubuntu-dev-tools_0.143_all.deb

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

iQIcBAEBCgAGBQJP5FjOAAoJEBWetcTvyHdMcUgP/1lhU6zF16A7wEnW3e0fWlBR
krRPyrpJED5foYFkNcV0TuNmuFLuV/8mcRMIurrIW/muLaInagphi6Rp+XlQDMCA
tFCCWQAxk3GlvfQulBAmgA3gJBnJ40pPcenMcgn6+kYqOCvh6o5QSrkMECfY2bpn
YlWlF0RZD3yWEA9j2lO0erKxeyd8zAwf2izlur5Qd2JXWV39mrWvyAtOaV8arkkF
75Ikb+z6YWC9B0qdBGIGtU4pPBFUNa382EJNdWKzc22686h0wvYoKgrSgXTRlGvM
6spDtS4wpJxd+EEGtR1h8qAa51t+0k2mVs65cLbPFsW2VKtzovNn5sepCrLdGD5x
os0pUkgXTlEw8u4+3QdAU6RQniugXDMx2xL+N/Ve45l0Xc2ZtMUfGAq1xFI5+2sd
quO0xL34p1sSHkVYd3CRv+yH4ZyITsyFCzauKucp2wb0WceP5PSU7AzI5WBKYPwm
bqP29b6KRX1mIp8konvFjdOOhJN9f2sHJCRt1RktcuejABfClPBKLk9VAy/l8bvT
Jb1TR0r3ABcoPXd1v8E8TXyQQq0Ge+a6phKF3GUzD3ye93T7Ujt/F/gkWAQ3lkWE
d11FS9IYolOC80oO1dVnSXoy6zcARXyBuZz/hqa+gehpiDi8ItzN6HtUpPtYfLal
Mmptk3CQzHrTdsjf15AQ
=EcBg
-END PGP SIGNATURE-


Accepted:
ubuntu-dev-tools_0.143.dsc
  to main/u/ubuntu-dev-tools/ubuntu-dev-tools_0.143.dsc
ubuntu-dev-tools_0.143.tar.gz
  to main/u/ubuntu-dev-tools/ubuntu-dev-tools_0.143.tar.gz
ubuntu-dev-tools_0.143_all.deb
  to main/u/ubuntu-dev-tools/ubuntu-dev-tools_0.143_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/e1si2lp-0006br...@franck.debian.org



Accepted ccid 1.4.7-1 (source amd64)

2012-06-22 Thread Ludovic Rousseau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 10:58:27 +0200
Source: ccid
Binary: libccid
Architecture: source amd64
Version: 1.4.7-1
Distribution: unstable
Urgency: low
Maintainer: Ludovic Rousseau rouss...@debian.org
Changed-By: Ludovic Rousseau rouss...@debian.org
Description: 
 libccid- PC/SC driver for USB CCID smart card readers
Changes: 
 ccid (1.4.7-1) unstable; urgency=low
 .
   * New upstream release
   * debian/control: remove autotools-dev from Build-Depends: It is no more
 needed since a long time now.
Checksums-Sha1: 
 b5c04c34d23e916c0aa80789fe6bdf1f6aa43352 1260 ccid_1.4.7-1.dsc
 bb4f5f4832f2f34f1b7513f22d15c2b00746067a 469953 ccid_1.4.7.orig.tar.bz2
 321a0687eaaff7fce95ff100ed1e79e7a1c9e10f 6389 ccid_1.4.7-1.debian.tar.gz
 a3fdbb107dcfbe7e25174e3427e3397878c53d7b 189662 libccid_1.4.7-1_amd64.deb
Checksums-Sha256: 
 a156d9c8386d5289dd6ca247076eb137d9c4cefc62555a519c6f5dd3f0e7ed35 1260 
ccid_1.4.7-1.dsc
 366d3e2e417f5a97dd795765ce23e3dd1a8c817ba2b780a30cf769d66a0e36c7 469953 
ccid_1.4.7.orig.tar.bz2
 74f0527d5e657b93564057cc016f95466c8b93ce54d348ac35c3aee7f0a5893e 6389 
ccid_1.4.7-1.debian.tar.gz
 72c2ee9d750825060dfeb82a122a6cf3252f3b1c5ee27ddfab662876f7c94c02 189662 
libccid_1.4.7-1_amd64.deb
Files: 
 87c1adf675a01a5fe7d4b3a0a2547e74 1260 libs extra ccid_1.4.7-1.dsc
 907037484e000504dad1ccfe6c36e1f1 469953 libs extra ccid_1.4.7.orig.tar.bz2
 887f18dbc58fe03742d51b5de8ffa539 6389 libs extra ccid_1.4.7-1.debian.tar.gz
 f8fc6d736480c1b822819dffc8515713 189662 libs extra libccid_1.4.7-1_amd64.deb

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

iEYEARECAAYFAk/kWiwACgkQP0qKj+B/HPmrrQCfVsZKwzX/dtBpy9/IDOaFOY0b
WCQAn1o3zjPz+o7Csc1YHcqEAxu9TaUn
=sMix
-END PGP SIGNATURE-


Accepted:
ccid_1.4.7-1.debian.tar.gz
  to main/c/ccid/ccid_1.4.7-1.debian.tar.gz
ccid_1.4.7-1.dsc
  to main/c/ccid/ccid_1.4.7-1.dsc
ccid_1.4.7.orig.tar.bz2
  to main/c/ccid/ccid_1.4.7.orig.tar.bz2
libccid_1.4.7-1_amd64.deb
  to main/c/ccid/libccid_1.4.7-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/e1si2zq-0007qa...@franck.debian.org



Accepted halibut 1.0+svn20090906-6 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 12:46:50 +0100
Source: halibut
Binary: halibut
Architecture: source i386
Version: 1.0+svn20090906-6
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 halibut- yet another free document preparation system
Changes: 
 halibut (1.0+svn20090906-6) unstable; urgency=low
 .
   * The upstream build system doesn't honour CPPFLAGS or LDFLAGS, but only
 CFLAGS and LFLAGS.  Adjust our use of dpkg-buildflags accordingly.
Checksums-Sha1: 
 ea7df2181ef2340cb27aa06be6e3d5240a77fe01 1873 halibut_1.0+svn20090906-6.dsc
 a7d8a006430a2463a04f882c625707a791de2547 4348 
halibut_1.0+svn20090906-6.debian.tar.gz
 7ed5809aaae0dc928001a2b6d758fb42db2a69a4 732542 
halibut_1.0+svn20090906-6_i386.deb
Checksums-Sha256: 
 e8a0e8752605ffa249fd701bc7e75e6e992d8ad2cebdda84f59581a89be7e5cb 1873 
halibut_1.0+svn20090906-6.dsc
 bec60b93d241c40bef6e349e3149280b9c8b0d0fda1ba859cd143454230357c1 4348 
halibut_1.0+svn20090906-6.debian.tar.gz
 14edb652fe82775f0687b4de18e3aa75b8f01d6532f731c8275decbe51888579 732542 
halibut_1.0+svn20090906-6_i386.deb
Files: 
 ba12e40ccbe93ce7c8f07c2edb284817 1873 text optional 
halibut_1.0+svn20090906-6.dsc
 d85fa76f1de4cb7d94b97bffeb56f7dc 4348 text optional 
halibut_1.0+svn20090906-6.debian.tar.gz
 7005557608ca03899b41f14266e19c4b 732542 text optional 
halibut_1.0+svn20090906-6_i386.deb

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

iQIVAwUBT+RbnTk1h9l9hlALAQjbqw/+KgpqW1cJ1Vs3SFTTyEFG4u+XZ65X7mzh
AJBiO/PGNCj4olier9bNo5bK4tmSrXW5100W7DUVQOrjyxg6Fme4/Ntrzi14lHON
2OUd/xlECB8vFxHQP891MFxkhs1281KTyoGbvd4TkxTUZMrYgwsktIvXpSUaoVcn
Kvuu3/JY90Ou/+8HBqm/L9ycMbetDtwsTLBnUx8Jt+ULkMFBpivlVIujl0NTDgi0
pikzN0oL6mv3hxwUu2PiurcwOlb6VuzenGgmpCSOv2xfMwSZM3LzpZj+Fjsf2iHj
6q2DSvTPbYG01avRKgm5YS868i6hlRQYoarcwG8yG22pYyt9FnDS3vteunGibKIs
zr0u9CGuZDDpIfECh6zJAvwl+9ec5djhjuO3rFMjmCWU4Vo0ScHsfmfeAUc7ZmA6
h0PvY+1GOEFha4vMX5YleQteIz9YQDd3tGpaAFf+iFXQokST5Kt86pQFe39uQ6p/
PXxBZoZI1McR6+TxGG4EJjDNV5inUENe8p5JDwjxbTeJSj/wpEDhd0g+bS6/rmqB
wb1cUfHbglqmQnqGVFIEwURFN+AHCqaKkFWhyRFdiXLcqgvUfZsSSM/Li6/5Owf0
SyMOOT3VXXpvAQGVRQ113dxSobQFf9Z6xqYxtWxN1fbEb5xh19Vz3uKIPI76IFwT
Fxlh3a/N8OU=
=poNV
-END PGP SIGNATURE-


Accepted:
halibut_1.0+svn20090906-6.debian.tar.gz
  to main/h/halibut/halibut_1.0+svn20090906-6.debian.tar.gz
halibut_1.0+svn20090906-6.dsc
  to main/h/halibut/halibut_1.0+svn20090906-6.dsc
halibut_1.0+svn20090906-6_i386.deb
  to main/h/halibut/halibut_1.0+svn20090906-6_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/e1si2zj-0007rm...@franck.debian.org



Accepted icoutils 0.29.1-5 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 12:55:18 +0100
Source: icoutils
Binary: icoutils
Architecture: source i386
Version: 0.29.1-5
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 icoutils   - Create and extract MS Windows icons and cursors
Changes: 
 icoutils (0.29.1-5) unstable; urgency=low
 .
   * Drop manual and not-very-useful 'debian/rules configure' target.
   * Upgrade to debhelper 9, mainly for hardening build flags support.
Checksums-Sha1: 
 6a8c629c1517921f833f7bc8d5b75ef7740de94b 1785 icoutils_0.29.1-5.dsc
 ff6b93e6b624f2ecfe26310f3f968c8e4230630d 6933 icoutils_0.29.1-5.debian.tar.gz
 0c28df6e072745f9d32b070551e7acdeaa9ca5ec 77844 icoutils_0.29.1-5_i386.deb
Checksums-Sha256: 
 50b7bcbb83485c7e35b23ef914b6f05271ee390ae791c5a498d6bb4c142c9528 1785 
icoutils_0.29.1-5.dsc
 f68a82ef121b8ef0322275e3585a663a0cfac50ebe5ab705d461252774563eaf 6933 
icoutils_0.29.1-5.debian.tar.gz
 34a3b19330b47e9eb36ab868028fce2df29a01278929f7d945b4c6bcdcb2f811 77844 
icoutils_0.29.1-5_i386.deb
Files: 
 c7cbca624933c9115e2cacbe2d31bdf8 1785 graphics optional icoutils_0.29.1-5.dsc
 3a7282751d9be1cbb26ae37daaef2990 6933 graphics optional 
icoutils_0.29.1-5.debian.tar.gz
 599989c7773c8cf24f4f69280ed64666 77844 graphics optional 
icoutils_0.29.1-5_i386.deb

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

iQIVAwUBT+RdgDk1h9l9hlALAQjQXBAAigTKyR0s2lcLIf8HFVDzqh2ehDsIaMDN
neEiIOBhxGZ6GVcBm3B4tx8At7S/2L1N1mckYeGy60WS6YTXgbyXRxEeav6+gm4s
GrO6hdvwYbFA19EYBX4PXbQeNy8T62tdOOvmAulxdlWw3SIyp4a4T56Z9TA+UaFq
2+8boC8e6sFzHu1T1UHqmgKTomFPVox3TCok4SbWywjylNlznso849dQeHFhzQRZ
AW9dSdv93mUsZhGINuF2oXkPJ1Ec0UQ7nv9mDLX0hKBhhP2+wDJyEyd2flUJ4Axq
gF7ZMymBUrMV0/y6QO2pGloGwtENcbX8QbsMYDmF7RbtpyX67t04u6lvX7rnty+v
z3LHBwPfFgI/r0Ew5QPi+ZcRQ4VcaYYBhktn7a9P81QDG+mysyNhAcYAHFw380iS
jXBQdFgVY0Z/1Q5Yx6MpGOHPudiZ2zzj8DPYM8bGPs6YwJ3wPOmNnJ/kV1Hi7sRG
jpA7Z2ay8TxsFyWGxPPuNuLxa+kquG6Mm+qfG1m9r1o6q+JyDVAnRbAwlE2/4RW0
1x39ck/xbfUKRRzPGoDKYTXzBTbD9LsK19YZfopR/jHej0hpPP1mtrfHVB3aUlMF
2PAd8WMhAEQivbh9x2T2Hm88ZIDMzBQcKcWR9EZpNwRAsK6J7IbXc0LzBdNmfUbL
Kfh/Xqo+6dA=
=2g6l
-END PGP SIGNATURE-


Accepted:
icoutils_0.29.1-5.debian.tar.gz
  to main/i/icoutils/icoutils_0.29.1-5.debian.tar.gz
icoutils_0.29.1-5.dsc
  to main/i/icoutils/icoutils_0.29.1-5.dsc
icoutils_0.29.1-5_i386.deb
  to main/i/icoutils/icoutils_0.29.1-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/e1si2zz-0007sm...@franck.debian.org



Accepted embassy-domsearch 1:0.1.0+20110714-1 (source amd64)

2012-06-22 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 10:03:24 +0200
Source: embassy-domsearch
Binary: embassy-domsearch
Architecture: source amd64
Version: 1:0.1.0+20110714-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 embassy-domsearch - Extra EMBOSS commands to search for protein domains
Changes: 
 embassy-domsearch (1:0.1.0+20110714-1) unstable; urgency=low
 .
   * New upstream version
   * debian/control:
  - Standards-Version: 3.9.3 (no changes needed)
  - debhelper version 9
  - Adapted versioned (build-)depends to latest emboss version
   * added debian/compat: 9
   * debian/source/format: 3.0 (quilt)
   * debian/rules: short dh
   * debian/copyright: DEP5 fixes
Checksums-Sha1: 
 c1468fce37fa39c79762113b429f784bb4280376 1669 
embassy-domsearch_0.1.0+20110714-1.dsc
 b772cfda0f72a49cecb0acc984e87cbdcd5d6dea 487462 
embassy-domsearch_0.1.0+20110714.orig.tar.gz
 0c0267b19e45a5c3267aa7dcd6fa2b60a1403989 7325 
embassy-domsearch_0.1.0+20110714-1.debian.tar.gz
 86140379544f28abc571526cb78b288e64b1a8b6 130362 
embassy-domsearch_0.1.0+20110714-1_amd64.deb
Checksums-Sha256: 
 18ac8ed8f01ff21cf05ca326f4c71730cc58723f9e1c73f014f0fcb4dcb0c150 1669 
embassy-domsearch_0.1.0+20110714-1.dsc
 feca6144b758fed54ae61b6a7f36522e6e04e23eab875b953757a43af67e6e99 487462 
embassy-domsearch_0.1.0+20110714.orig.tar.gz
 19c45675191d272fd2bbeec99bbee818c3e7500563c536d09cd9f110c887f9cb 7325 
embassy-domsearch_0.1.0+20110714-1.debian.tar.gz
 5c9dba40f84d0ae31b4fe1cc11e01aed4ccbb1b0c095dd6c92ebcf16f57f5281 130362 
embassy-domsearch_0.1.0+20110714-1_amd64.deb
Files: 
 7d691e4c30955d7ecdd914538aca402c 1669 science optional 
embassy-domsearch_0.1.0+20110714-1.dsc
 f3deb5b13a3290ce2ca662561e279ea1 487462 science optional 
embassy-domsearch_0.1.0+20110714.orig.tar.gz
 81b2de7ec82c58ba301ac2c351329365 7325 science optional 
embassy-domsearch_0.1.0+20110714-1.debian.tar.gz
 324431dd91867ceae512c73ab50dfd31 130362 science optional 
embassy-domsearch_0.1.0+20110714-1_amd64.deb

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

iEYEARECAAYFAk/kYlkACgkQYDBbMcCf01pkWQCcCUFrz1qgEDaczoub7KXkqSva
3L0AoKAEa54brVGhSNpA71TWaPha8qBx
=bd87
-END PGP SIGNATURE-


Accepted:
embassy-domsearch_0.1.0+20110714-1.debian.tar.gz
  to main/e/embassy-domsearch/embassy-domsearch_0.1.0+20110714-1.debian.tar.gz
embassy-domsearch_0.1.0+20110714-1.dsc
  to main/e/embassy-domsearch/embassy-domsearch_0.1.0+20110714-1.dsc
embassy-domsearch_0.1.0+20110714-1_amd64.deb
  to main/e/embassy-domsearch/embassy-domsearch_0.1.0+20110714-1_amd64.deb
embassy-domsearch_0.1.0+20110714.orig.tar.gz
  to main/e/embassy-domsearch/embassy-domsearch_0.1.0+20110714.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/e1si330-00016t...@franck.debian.org



Accepted groff 1.21-8 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 13:11:24 +0100
Source: groff
Binary: groff-base groff
Architecture: source i386
Version: 1.21-8
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 groff  - GNU troff text-formatting system
 groff-base - GNU troff text-formatting system (base system components)
Closes: 611904 653852
Changes: 
 groff (1.21-8) unstable; urgency=low
 .
   * Use dpkg-buildflags to enable hardening options (based on a patch from
 Moritz Muehlenhoff; closes: #653852).
   * Adjust paths in groff_mom(7) (closes: #611904).
Checksums-Sha1: 
 4f35dd300c3ef61c039d5d9cd0b0efb390cde600 2070 groff_1.21-8.dsc
 37d55064ab2bf50b76754a44284b3ec1b5c0284f 39183 groff_1.21-8.debian.tar.gz
 9b830a41aabe6037c179b2e153adc723ea437b25 1130928 groff-base_1.21-8_i386.deb
 e401f24136679f52678bb6cf059c1e61d57e1dde 3563290 groff_1.21-8_i386.deb
Checksums-Sha256: 
 1e9082837f7e4a62f53f334976df68e5e8c7e901bf99d9fe3186771d0979 2070 
groff_1.21-8.dsc
 4a07c0a60db4fd7971558ea613adb67546a448acafc7f6d8ce5e2cbb8dc50956 39183 
groff_1.21-8.debian.tar.gz
 45d81eeecdd6fd7665a0ee8eaa2439ee7f7dd23b8f6a4fd0296779c5912e406f 1130928 
groff-base_1.21-8_i386.deb
 0011ccd2850c6e95b2edf1101cc68c26b9a0ee3eee3c93fb4ba7d679cefaf11c 3563290 
groff_1.21-8_i386.deb
Files: 
 86c685e4896d6b5c679720200585bb8f 2070 text important groff_1.21-8.dsc
 e2177a0014d02dc6412b83f0c42dddfd 39183 text important 
groff_1.21-8.debian.tar.gz
 3c021b8c9d0be77edc33f621573445a8 1130928 text important 
groff-base_1.21-8_i386.deb
 cd73e866c043f02227be20ad3d226262 3563290 text optional groff_1.21-8_i386.deb

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

iQIVAwUBT+Riwjk1h9l9hlALAQijUw//QcaqoM785MACC/q3xeZYLciQy0BC3gZj
x736VSaokAAuaLyATKvuxUdCBCsxDTNWI3FCCw0H6o/SwLuKA7d1l7L44T+I8A1E
DJAZYBRvIijc/KgLqM+txzFL7sbt4ZGahwlvQnTd4yu+SVzHcVBfCqGsQLI+o5kv
x5D9SLDrQ51vKKKd/V5EXDiFSx9Te4q5KjaBKD+Gl/1skxitRSU7+XWiwR3caAuX
6kf0XR5t8ztSUfNrsk2BswgugSYLf//INmHVf3ZY3fpSBkYMOCm18mXMVj2/7bM6
76bHVJt6R+Xp7QS0uR7DCq7lUhMKN0XL66nyxLsfihC+YNaeaUu0OlycFdvAqXhp
T3lHoPCEBbtgPkrEJ6tL9NAc5iLkIqu1n/kwnj2YopaVbuKtrZ66E1EyXg2doaF7
7/S4J+Os+2phYAnarU7IB5YG423KI5rskKHPrEW5rbSIJzsCnK7sdHUP7cXvs90J
F+o29UPVqG8JmoW3Mwjol1LnHKkcavMNJc9Wo4lqnFmJeVvlKonoIWWw+kuZTfV5
qy4kCdwhuRugkNo9lpUctpuo3U5DcmQrLM7poPjaFEPU0FHGrt0dMbjV7O3BEQ1l
KASG+2p0wfBKpJLcLaK0VC8OdaBU8D1kt6NdaN7/hqylaBzAZaSUaqxF5i3aIfbe
8cir68tvYiQ=
=MdG3
-END PGP SIGNATURE-


Accepted:
groff-base_1.21-8_i386.deb
  to main/g/groff/groff-base_1.21-8_i386.deb
groff_1.21-8.debian.tar.gz
  to main/g/groff/groff_1.21-8.debian.tar.gz
groff_1.21-8.dsc
  to main/g/groff/groff_1.21-8.dsc
groff_1.21-8_i386.deb
  to main/g/groff/groff_1.21-8_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/e1si33f-00018h...@franck.debian.org



Accepted imaptool 0.9-12 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 13:06:11 +0100
Source: imaptool
Binary: imaptool
Architecture: source i386
Version: 0.9-12
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 imaptool   - tool for creating client-side image maps
Changes: 
 imaptool (0.9-12) unstable; urgency=low
 .
   * Adjust dpkg-dev and debhelper build-dependencies to allow for backports.
   * Fix upstream build system to honour CPPFLAGS and LDFLAGS.
   * Remove article from start of package synopsis.
Checksums-Sha1: 
 598c016a5df1b3be919694ade6cb05376344847d 1824 imaptool_0.9-12.dsc
 17f279bec90d1cf670a00c7754aa3e77d04068a3 4404 imaptool_0.9-12.debian.tar.gz
 c1eb6f381f90254ee85bf32a33e84b04f6d002b4 21024 imaptool_0.9-12_i386.deb
Checksums-Sha256: 
 40d6f746c1f5623fdb6eddba6709dbe8249f07776cabd6c67382aa50026bf0c1 1824 
imaptool_0.9-12.dsc
 0596b0541ec460398ce6c0ea5ac279215048651672ff0d8ff46f67be2d915a19 4404 
imaptool_0.9-12.debian.tar.gz
 6e1f4bc99b43ce653a5153208797356389acc9b4438f31c09b62224f43605de6 21024 
imaptool_0.9-12_i386.deb
Files: 
 7614f8e97c6e9ffb3c1657d47554def2 1824 web optional imaptool_0.9-12.dsc
 8d2d3eb8489f585b98395edccab2bec6 4404 web optional 
imaptool_0.9-12.debian.tar.gz
 79013131d4888dc4a8ae55b63dd8d894 21024 web optional imaptool_0.9-12_i386.deb

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

iQIVAwUBT+RhaDk1h9l9hlALAQh+TBAAmXpSYT+7nZlnlatcjU9QqC7IjNln1Utd
6o0HeVobTqTfQBCB7E8R598i0rA65PiOJ0/MsVklyH1zQV6/oHG9+XSI3pDbNuIW
CUAz/LwAq0E0ggEblSMD+nlvQKLT0GPix7+EJDCu0VSZ08wBcpRBQOquvo6T4x9H
vj11myntVN7l9/MKYajlNhSNlPr8So9FSoB1TNtM8VGzn2TIEc5XS+loOfL8MWV0
SMgtHUKtx1Z2wqrgiXBFFAo0GRGGBk5JMtpFq8cFwpsWogwp3eKAfCXrvewNGAmE
iogIi3l/y49c+gr2xPTQZs8cgwFhPc2wzahn3SOP1aCL0jMpKtqqFL64NWHdZPD9
j8+ca33KkzNsXFjcsysIFja/USeNBLqjk+mNEzMM6f/U6DtudylGCtsN7IGJAzeF
x4AjKsrZS4ThvPmtYnd7izOHzxk9VDQwpfseQ5HMGwG4fSvB/k3YgLZ8Nb2PIJGF
OR77Ovo7lEulqvz+rGipMmRFUd3qmAxZOe4E0wPy1wiJtmum7/0fmXas/rjZK61c
xxwomCixsk0zSjsDu9b5Ov8K32d17rPFLAVZhkNVd3gFLsdumNXxIotvKcOtMqYn
6qgOACiqKJvpvniP0soWfYC9lnlwaVT+QreHWKQ/64ZaaKgP82fcJGniBQPsEm2M
heF/R2JjVQs=
=6TzE
-END PGP SIGNATURE-


Accepted:
imaptool_0.9-12.debian.tar.gz
  to main/i/imaptool/imaptool_0.9-12.debian.tar.gz
imaptool_0.9-12.dsc
  to main/i/imaptool/imaptool_0.9-12.dsc
imaptool_0.9-12_i386.deb
  to main/i/imaptool/imaptool_0.9-12_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/e1si34d-0001ag...@franck.debian.org



Accepted libapache2-mod-auth-cas 1.0.9.1-1 (source amd64)

2012-06-22 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 21 Jun 2012 08:05:39 +0200
Source: libapache2-mod-auth-cas
Binary: libapache2-mod-auth-cas
Architecture: source amd64
Version: 1.0.9.1-1
Distribution: unstable
Urgency: low
Maintainer: CAS packaging team pkg-cas-maintain...@lists.alioth.debian.org
Changed-By: Thijs Kinkhorst th...@debian.org
Description: 
 libapache2-mod-auth-cas - CAS authentication module for Apache2
Closes: 659230 664436
Changes: 
 libapache2-mod-auth-cas (1.0.9.1-1) unstable; urgency=low
 .
   [ Michele Baldessari ]
   * New upstream 1.0.8.1 (fixes MAS-35)
   * Update to 3.8.4 policy (added ${misc:Depends})
   * Switch to dpkg-source 3.0 (quilt) format (closes: #664436)
   * Fix override disparity (new httpd section)
   * Add a note about CASCookiePath and apache with multiple UIDs
 (suggestion from Florent Daignière)
 .
   [ Thijs Kinkhorst ]
   * New upstream release 1.0.9.1 (closes: #659230). Now build-depends
 on libcurl.
   * Add patch by Wessel Dankers to fix memory leak upon curl error.
   * Remove postinst. We already ship the cache dir with the same
 permissions and setting them again in postinst prevents the
 local admin from overriding them.
   * Checked for policy 3.9.3, switch to debhelper 9 and enable
 hardening build flags.
Checksums-Sha1: 
 79aeb74fc8c24ae97a42a520b762753e67336974 1917 
libapache2-mod-auth-cas_1.0.9.1-1.dsc
 cd6de7b397e5732389a4a57e2d6d3b25612a2206 73178 
libapache2-mod-auth-cas_1.0.9.1.orig.tar.gz
 c49ee590cfcfbe75ec48d31b3fff159460fda8ad 5130 
libapache2-mod-auth-cas_1.0.9.1-1.debian.tar.gz
 c1d8356b0352f45116686586df23cec4a60fab97 34462 
libapache2-mod-auth-cas_1.0.9.1-1_amd64.deb
Checksums-Sha256: 
 42ce728d736939f32738449db172135bbb5c92b02dd3decfaf1f98c712047907 1917 
libapache2-mod-auth-cas_1.0.9.1-1.dsc
 db1d473628bf699c438450afcee4912f4f44db8a2c676f8f6de7f20bdba8de91 73178 
libapache2-mod-auth-cas_1.0.9.1.orig.tar.gz
 ad1c936e68f58553371bfa2ca388d098746418643ee937b227f19e160930979e 5130 
libapache2-mod-auth-cas_1.0.9.1-1.debian.tar.gz
 c06da3d5fc4a8779b094e85d736be7796ac1c2db2a8c4a9c1030469d8c3eb08c 34462 
libapache2-mod-auth-cas_1.0.9.1-1_amd64.deb
Files: 
 4369d2b10923c60e8e6a04459f97e003 1917 httpd extra 
libapache2-mod-auth-cas_1.0.9.1-1.dsc
 b274f87648746d4b088cb464e30bdcd2 73178 httpd extra 
libapache2-mod-auth-cas_1.0.9.1.orig.tar.gz
 d73ec46e4db1f48c7893396af4b3e653 5130 httpd extra 
libapache2-mod-auth-cas_1.0.9.1-1.debian.tar.gz
 dabe9f9fb8f7b3b3a531c93242173d60 34462 httpd extra 
libapache2-mod-auth-cas_1.0.9.1-1_amd64.deb

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

iQEcBAEBCAAGBQJP5F+eAAoJEDNRenKl5rDIZ5AIAIlJcDLbObodFRmk4eLeIhdU
ffG069A28f0JyqmQd7ZkQOJUaH4KRKB7+ZAF5LVDBKM0dEWwAQzfGP5q3xO2SW3y
BNpcNOigCrPL6NtDhJDizB3S1Lk9cjnWKWrA0UV/hhliVsGtTViPzz2t+bWqaVI0
2mxCoBveNYvZNd9v8broH/fV7zoVUT+TSFtCU3vi2QpJkqAwfpNByrVIMo2F4qK+
Wy7kHclRXlhu3L0HEEsa9hTdKF/FTie4M53yokLWdpqoHw6gRQfcIR6EdkSQKH87
yz9NQI6WKLZX0TE5CCD2jHF3u3QVg8jmuZH4KKQKGmzcA1EsEUo/6vTPFjhPMdM=
=aU7N
-END PGP SIGNATURE-


Accepted:
libapache2-mod-auth-cas_1.0.9.1-1.debian.tar.gz
  to 
main/liba/libapache2-mod-auth-cas/libapache2-mod-auth-cas_1.0.9.1-1.debian.tar.gz
libapache2-mod-auth-cas_1.0.9.1-1.dsc
  to main/liba/libapache2-mod-auth-cas/libapache2-mod-auth-cas_1.0.9.1-1.dsc
libapache2-mod-auth-cas_1.0.9.1-1_amd64.deb
  to 
main/liba/libapache2-mod-auth-cas/libapache2-mod-auth-cas_1.0.9.1-1_amd64.deb
libapache2-mod-auth-cas_1.0.9.1.orig.tar.gz
  to 
main/liba/libapache2-mod-auth-cas/libapache2-mod-auth-cas_1.0.9.1.orig.tar.gz


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



Accepted libfilter-perl 1.45-1 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 13:35:25 +0100
Source: libfilter-perl
Binary: libfilter-perl
Architecture: source i386
Version: 1.45-1
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 libfilter-perl - Perl source filters
Changes: 
 libfilter-perl (1.45-1) unstable; urgency=low
 .
   * New upstream release.
   * Upgrade to debhelper 9 to improve hardening flags support.
   * Add a Lintian override for hardening-no-fortify-functions in
 /usr/lib/perl5/auto/Filter/Util/Exec/Exec.so; -D_FORTIFY_SOURCE=2 is
 used, but its read() calls appear not to be verifiable at run-time.
Checksums-Sha1: 
 34fa4d9f9f79ca86438b36e18e8918c64950824d 1887 libfilter-perl_1.45-1.dsc
 1dc32b88f9881f63d4363be299c6c62e1cbb44f1 83810 libfilter-perl_1.45.orig.tar.gz
 11b976decf981d2ed4b9389b189be1a58d901a2d 4899 
libfilter-perl_1.45-1.debian.tar.gz
 cf21c366774bae5126aed822cf4ea2b359c89297 73688 libfilter-perl_1.45-1_i386.deb
Checksums-Sha256: 
 923912254672411df30e9adf8de222849df359e7a1ded37d889cd152d684fb34 1887 
libfilter-perl_1.45-1.dsc
 a551354bb11c3a96d20a14576bb11df27475e75aebe01f3c0ef1fa34aeec744c 83810 
libfilter-perl_1.45.orig.tar.gz
 ed0eae84fb731ec4e2aeec4eb8fbcb118f1cfaa9d31721f24b7d2a987539a213 4899 
libfilter-perl_1.45-1.debian.tar.gz
 d122d149d54c474d20f39aafb1a43cd7ce8e80be667b1643ab6483d1566675c5 73688 
libfilter-perl_1.45-1_i386.deb
Files: 
 1ca710566e665a72c139008b38c06a2f 1887 perl optional libfilter-perl_1.45-1.dsc
 8c00f87bc872754a691719fa655f0167 83810 perl optional 
libfilter-perl_1.45.orig.tar.gz
 24f4675efaae4981fba7587fb37f9a0a 4899 perl optional 
libfilter-perl_1.45-1.debian.tar.gz
 b8e4aca7a72563b34d851aef75392dd8 73688 perl optional 
libfilter-perl_1.45-1_i386.deb

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

iQIVAwUBT+RnHTk1h9l9hlALAQjWLRAAg8XaRBGNaJJtgj7zGIahL7UjbBip35Sp
wjyPSVYiWqigwsF1nWTso2Gbt9sgSmN3DHKgdDaN+sVsMuuPN/cVTUJ2LsslpqWk
JUSfUkUToZqQMvgjC9FJFpIDtpdSgIAPd5reV3PjAlNYGrlQguuz615Pfy6BmdV/
WMO/nVHUOsVnLudrCTKE1Qrx7hmx+CfTc99On2Q6EmgrWeHgd5ULmRMmsE28AGjd
oNFIyFqJ1YUGAn2R0V0GCIgZigqVO4w3rmKnIlDCXcBm83kCdyGQ8B2RcLn6s+L+
RYXSvGgeXJ4H5gquZcoBmde0D2uPVYf4h6loKAc93w5gpnmECsakvVTVTkTjkxsc
42Am4ikFCZJdvZcQ7TOCvwCaUNJxAoJydnOR21kCWznhzKK2u56/LS48X5lDf1kF
SCaQdUCa2CqA7eT9/+XK1Wf1O9OENtRCcIfzlYvSKaCIuObgzCkcEIZp5A0zfP48
gi3Tdr1GQuMPiXrlVDSxPj1j4P+wEMrAEGEYP+ao1e8sR8o1M7Kq9S24qfiOVM7E
vh8u5tfWUux17oZ4iKhl2zJJc9gA0MU9Xd8++BZA0E2LsKvIvPUjo5aQIzaF3rsM
iD40XDQBolgfpj8XxhIBo70xZ28OLeEURPgv3/8c7J51lEMj2COonfuFSs6dkqpq
k32Uwr2cJU0=
=YBAA
-END PGP SIGNATURE-


Accepted:
libfilter-perl_1.45-1.debian.tar.gz
  to main/libf/libfilter-perl/libfilter-perl_1.45-1.debian.tar.gz
libfilter-perl_1.45-1.dsc
  to main/libf/libfilter-perl/libfilter-perl_1.45-1.dsc
libfilter-perl_1.45-1_i386.deb
  to main/libf/libfilter-perl/libfilter-perl_1.45-1_i386.deb
libfilter-perl_1.45.orig.tar.gz
  to main/libf/libfilter-perl/libfilter-perl_1.45.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/e1si3jt-00038k...@franck.debian.org



Accepted libconfig-model-itself-perl 1.232-1 (source all)

2012-06-22 Thread Dominique Dumont
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 14:21:32 +0200
Source: libconfig-model-itself-perl
Binary: libconfig-model-itself-perl
Architecture: source all
Version: 1.232-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Dominique Dumont d...@debian.org
Description: 
 libconfig-model-itself-perl - graphical model editor for Config::Model
Changes: 
 libconfig-model-itself-perl (1.232-1) unstable; urgency=low
 .
   * Imported Upstream version 1.232:
 * model Itself::Class: added accept_after
 * config-model-edit: make sure that loading models are not
  recorded as changed data
   * control: depends on libconfig-model-perl = 2.020
Checksums-Sha1: 
 a265d2abffa4b2420d640a127f0320dac8ba327e 2541 
libconfig-model-itself-perl_1.232-1.dsc
 41502eae860d8f1c6f0088ace5a345e83c2fee9d 53524 
libconfig-model-itself-perl_1.232.orig.tar.gz
 bcc9c26739f886bfe7b0694b2dc2c40174c4958a 4612 
libconfig-model-itself-perl_1.232-1.debian.tar.gz
 3afd46f29c16a7e983f3bfc89a5997a6f8220eb2 75468 
libconfig-model-itself-perl_1.232-1_all.deb
Checksums-Sha256: 
 1659221f94d5f73d499eaf74d802ee9dc38aac5b8ddeff9356fa23536a997d03 2541 
libconfig-model-itself-perl_1.232-1.dsc
 2cfc43568f5e1e1a9909a199a0f59fbfc42e27d9d8e32d1c04fb6a44a78596bf 53524 
libconfig-model-itself-perl_1.232.orig.tar.gz
 818acf9dadc3bf8fe31db7418b7ade8cdd8255b01da31abe42eaa6d3b3f6490f 4612 
libconfig-model-itself-perl_1.232-1.debian.tar.gz
 6779a5395b0fb86b999b4b6ab8354b799539c4ed1c6dbd955c89492a0bfe4e36 75468 
libconfig-model-itself-perl_1.232-1_all.deb
Files: 
 55bb5721df6d7477dbc4cca5d7736845 2541 perl optional 
libconfig-model-itself-perl_1.232-1.dsc
 cf791793c637c9b55721a8619b59320b 53524 perl optional 
libconfig-model-itself-perl_1.232.orig.tar.gz
 630b79a8e93e2328314504372559b3da 4612 perl optional 
libconfig-model-itself-perl_1.232-1.debian.tar.gz
 1d1e830a1241a74a97837d8473304e2e 75468 perl optional 
libconfig-model-itself-perl_1.232-1_all.deb

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

iQIcBAEBAgAGBQJP5GQiAAoJEMMfT9lJqytsK1kP/ifqLP7nfNoIxNcfZYbsJPhh
6EyDpmXY13Kob979rw458vnJ5PfkVEgOQeCZcid1R7j46K2mMt6LDa30qewjxVsT
ZspnR3SEBFz1fsgPNfYza53avlLIpYdVldXZmSHEDODVL13nEExYnXagaQc+GQO5
G/GgoS93OHwypQwBDzLvi+cVoeWVTISN3m0L6A6HgunlSy1DDLjmdUFcwL+KvMr6
EX5gocriDTymPK8zknHJMdy9sW0ko4Fk/HMKIyEyxbYT9gky6dhFfHZzquXS1UjI
a0l0aOBApOGln1Mi8KbXOW4mQZxaFHeDIgrViy4Jnjwmz81UKGFLWpjAglhVeZyB
o+8xZMmF0IryYmQ9+hjaUemvmMboX/wm4t5DGKmJ7Nmq6wOWh/pNMtkhi1rqEp4I
ugRgQKQRM+GOAgGeGyWKWTOTfIcdk1gedRNRtnvDsiQMkhCeguubAca5vz9f7V5a
lpAXDbznSlrfneqQN7xc4msbWsZIpsfXPX8hpK+WwovciCDsaVd7vEe5gLQdiSvT
ASASL7D6hA47Ha1b5vafefyGTXuX/nedjwtaJrwB2AzDJUHQBeKKmfjxSe9yNeHU
YKHJW8pfm4zjNSYxkkk99D5IzAHWNcV3SZU8CYknT51bV+3V0yjQ3Mod7znW06RU
A1lYvVQtiHyf5TCWq1BR
=dUgT
-END PGP SIGNATURE-


Accepted:
libconfig-model-itself-perl_1.232-1.debian.tar.gz
  to 
main/libc/libconfig-model-itself-perl/libconfig-model-itself-perl_1.232-1.debian.tar.gz
libconfig-model-itself-perl_1.232-1.dsc
  to 
main/libc/libconfig-model-itself-perl/libconfig-model-itself-perl_1.232-1.dsc
libconfig-model-itself-perl_1.232-1_all.deb
  to 
main/libc/libconfig-model-itself-perl/libconfig-model-itself-perl_1.232-1_all.deb
libconfig-model-itself-perl_1.232.orig.tar.gz
  to 
main/libc/libconfig-model-itself-perl/libconfig-model-itself-perl_1.232.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/e1si3xp-0004in...@franck.debian.org



Accepted pcmciautils 018-7 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 13:55:20 +0100
Source: pcmciautils
Binary: pcmciautils pcmciautils-udeb
Architecture: source i386
Version: 018-7
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 pcmciautils - PCMCIA utilities for Linux 2.6
 pcmciautils-udeb - PCMCIA utilities for Linux 2.6 (udeb)
Changes: 
 pcmciautils (018-7) unstable; urgency=low
 .
   * Use dpkg-buildflags to enable hardening options.
Checksums-Sha1: 
 c3c3932186fcfec8113abe402b1a58a921a0cca7 2011 pcmciautils_018-7.dsc
 d9631e109081a0084117be5003df4be86658fed2 0 pcmciautils_018-7.debian.tar.gz
 b790f63d946eb2b337a26fb6d02de677b38c8414 31212 pcmciautils_018-7_i386.deb
 1449bb475490be1871cc86a2770f41224d4fc0ef 12712 pcmciautils-udeb_018-7_i386.udeb
Checksums-Sha256: 
 a5bd69ec253c223a519711e26f02cdb56cf7f54d65ab3e76ef8eb2b92e4a6eb1 2011 
pcmciautils_018-7.dsc
 f592fa24ed469685ef95dea1daf90e62bc1388e61895876b0edc87f2456de6f3 0 
pcmciautils_018-7.debian.tar.gz
 a95b8c2764369985e6cab8aa6229239352561f0377b654568677b577af7b3d2f 31212 
pcmciautils_018-7_i386.deb
 015882f04046757633e1822823bdda91d8d94293b785fc7f847194b62d26 12712 
pcmciautils-udeb_018-7_i386.udeb
Files: 
 b576d47748f04e0c24874b1a401ce58a 2011 admin extra pcmciautils_018-7.dsc
 e595da9dd670c189eac83b65ddad24d7 0 admin extra 
pcmciautils_018-7.debian.tar.gz
 bb9c1ab9b634a215c580b7c533044f7b 31212 admin extra pcmciautils_018-7_i386.deb
 6911444a48e1e9bc465fba3c962416ff 12712 debian-installer extra 
pcmciautils-udeb_018-7_i386.udeb
Package-Type: udeb

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

iQIVAwUBT+Rrijk1h9l9hlALAQij8w//cFcznte3CYoPbHvzowVdWF4qBGkt0O3w
NIratbx8XxpVFiMm1Lvq8NbZcCm3q1P7lG9S+Ql8IppqTW1EQgupl+JRpHuEAzll
em6+2UAVYnDkS4h9jryZvvC5b87y1Ct1LXID8zEWvz87akL6hQSB5fVekJh0YrUU
d5yEFymvvdIv1R6xhJ5THR0CPTdCBqskv55VBwm/nYclRm54UTAUru3bdWwHFCG8
JozQJr7U8RdsCnei/JZI2DOwhJqfS6PaFJnhknmd7Iz9jEX9Om5ll3bSKkxuxHZe
GJp96+EqBfuMEIclxRLinW1NBUgM1jF8CwrQadDeQ+yKxjoMTxcTnZ/73+MjvyZR
0L3whFCMFPpMEsW12UxEQyqJlcSi5xS7QyipYenxGiEvPHsEFrv9ydXSJg92grLt
ipqte+7lb/YX0TX4u/Wn3W3Mn2vS0Mm/CoEnaO5WjCAD0dX8nEzqC5Qkz7h2gHxL
07sRJYJWvrDaRiwQhjILlFexNtaahCsuQqqoHbAIGU34nHQCkhUaNAOCewsQTAwF
QG4fn+UZAvjQyDSdKaLs+lnCf0GrF5EVhJGC6I3hlROx5hJID1fjgRCgjbnAh/7a
dghcMCwWllLH1AtXRdjpdVmvoP/NgJpQMg4K5gBg+kFnjSIgC/MssxNbT39t1Qyh
tBV11nrMqJs=
=fGED
-END PGP SIGNATURE-


Accepted:
pcmciautils-udeb_018-7_i386.udeb
  to main/p/pcmciautils/pcmciautils-udeb_018-7_i386.udeb
pcmciautils_018-7.debian.tar.gz
  to main/p/pcmciautils/pcmciautils_018-7.debian.tar.gz
pcmciautils_018-7.dsc
  to main/p/pcmciautils/pcmciautils_018-7.dsc
pcmciautils_018-7_i386.deb
  to main/p/pcmciautils/pcmciautils_018-7_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/e1si3y3-0004k3...@franck.debian.org



Accepted gem2deb 0.3.0 (source all)

2012-06-22 Thread Antonio Terceiro
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 09:43:33 -0300
Source: gem2deb
Binary: gem2deb
Architecture: source all
Version: 0.3.0
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Antonio Terceiro terce...@debian.org
Description: 
 gem2deb- Debian Ruby packaging suite
Changes: 
 gem2deb (0.3.0) unstable; urgency=low
 .
   * Fix debug test mode
   * Install gemspec for use with rubygems-integration
Checksums-Sha1: 
 9569f756bf5c424753e0bf5cc4b9e9841b7924e6 1293 gem2deb_0.3.0.dsc
 506f787bd4c34bfeec5d9478de07efed918b87fc 53290 gem2deb_0.3.0.tar.gz
 1104fe88521c9ea038339717470c1483558fce98 43524 gem2deb_0.3.0_all.deb
Checksums-Sha256: 
 bab6a556de35c968ab7c00e8a396e1127d6c45eff7a7545175d68e3090858b5f 1293 
gem2deb_0.3.0.dsc
 80c9636dfd0341543f007dcf723650b00c5314e0c2a6dae0d697bf971d904d70 53290 
gem2deb_0.3.0.tar.gz
 797f4c85673198048ddc2e153004a3cb17ad10d6aa592ed14f3d874807de8912 43524 
gem2deb_0.3.0_all.deb
Files: 
 2ad2baeb675934d5a7666a83521b4a49 1293 ruby optional gem2deb_0.3.0.dsc
 71558254848969232924aba7a8e8e16a 53290 ruby optional gem2deb_0.3.0.tar.gz
 6ed4c4060602d6ced249bf8d3e365020 43524 ruby optional gem2deb_0.3.0_all.deb

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

iEYEARECAAYFAk/kaygACgkQDOM8kQ+cso8mNgCeLh8hg8VhxxlztCnbKXGRNdTh
AKYAoKjbhtH5ieZDGoQZjOpXakZUMeQ+
=a/ft
-END PGP SIGNATURE-


Accepted:
gem2deb_0.3.0.dsc
  to main/g/gem2deb/gem2deb_0.3.0.dsc
gem2deb_0.3.0.tar.gz
  to main/g/gem2deb/gem2deb_0.3.0.tar.gz
gem2deb_0.3.0_all.deb
  to main/g/gem2deb/gem2deb_0.3.0_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/e1si3kb-0005zf...@franck.debian.org



Accepted getmail4 4.30.1-1 (source all)

2012-06-22 Thread Osamu Aoki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 21:40:57 +0900
Source: getmail4
Binary: getmail4
Architecture: source all
Version: 4.30.1-1
Distribution: unstable
Urgency: low
Maintainer: Osamu Aoki os...@debian.org
Changed-By: Osamu Aoki os...@debian.org
Description: 
 getmail4   - mail retriever with support for POP3, IMAP4 and SDPS
Changes: 
 getmail4 (4.30.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 360eefe313a495e95c8d9199dec9c2816db89776 1266 getmail4_4.30.1-1.dsc
 436fd6791d0c9851423c073722511915be0e10fe 164508 getmail4_4.30.1.orig.tar.gz
 5612683bcee4a6fefa8bd7cf77bb7ec075461b30 6773 getmail4_4.30.1-1.debian.tar.gz
 c05288a62a4ef94ede81763d1a63ca168473e553 183386 getmail4_4.30.1-1_all.deb
Checksums-Sha256: 
 02491d019769246bfbdc8c699d3f4db5e801d4e1ae0ecfe6d16556018d866310 1266 
getmail4_4.30.1-1.dsc
 7ecab1d524fe8dbbc499df109854b0ffa4f031cf2c077ec42dec7d34d9fac04b 164508 
getmail4_4.30.1.orig.tar.gz
 a3017d7ea964377fa5109d427f6716ec271e632912cd32f86ac8987c3d017974 6773 
getmail4_4.30.1-1.debian.tar.gz
 7d81560b8b152d569b11de823c59d435aff4ec4e150e1b036b4d3e3462cc1152 183386 
getmail4_4.30.1-1_all.deb
Files: 
 35398da91c668011bfceae86c64b78ad 1266 mail optional getmail4_4.30.1-1.dsc
 10560688df53be97a5f2966acdd46a13 164508 mail optional 
getmail4_4.30.1.orig.tar.gz
 c58ad3c46f82d80369e1088f5c98d6a8 6773 mail optional 
getmail4_4.30.1-1.debian.tar.gz
 367c635319c29a6e4e305256c7c4b1a6 183386 mail optional getmail4_4.30.1-1_all.deb

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

iEYEARECAAYFAk/kaNoACgkQ6A/EwagGHzJRpQCbBKk64ekhlDHuvk0ZdHltqaBS
qNEAnAl1PDTkiW2AfH3IVxEL/Xzu25Dy
=A/MB
-END PGP SIGNATURE-


Accepted:
getmail4_4.30.1-1.debian.tar.gz
  to main/g/getmail4/getmail4_4.30.1-1.debian.tar.gz
getmail4_4.30.1-1.dsc
  to main/g/getmail4/getmail4_4.30.1-1.dsc
getmail4_4.30.1-1_all.deb
  to main/g/getmail4/getmail4_4.30.1-1_all.deb
getmail4_4.30.1.orig.tar.gz
  to main/g/getmail4/getmail4_4.30.1.orig.tar.gz


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



Accepted spectemu 0.94a-15 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 14:06:14 +0100
Source: spectemu
Binary: spectemu-common spectemu-x11 spectemu-svga
Architecture: source i386
Version: 0.94a-15
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 spectemu-common - Fast 48k ZX Spectrum Emulator (common files)
 spectemu-svga - Fast 48k ZX Spectrum Emulator for SVGAlib
 spectemu-x11 - Fast 48k ZX Spectrum Emulator for X11
Changes: 
 spectemu (0.94a-15) unstable; urgency=low
 .
   * Fix passing of build flags to utils/Makefile.
Checksums-Sha1: 
 5f502cfca4f277edf54b35c9c4a93b7a48a49097 2099 spectemu_0.94a-15.dsc
 f675149b745fb073366b62a207eca3a82ff9fc92 32771 spectemu_0.94a-15.debian.tar.gz
 711a154b45ad3df1d6cedfc913cc404da7773609 61966 
spectemu-common_0.94a-15_i386.deb
 9c41a6919e67e9b1d1d18de8bba6559d3e363f08 65778 spectemu-x11_0.94a-15_i386.deb
 ed93e6ccde2d537c5778fc1e6dfc9f8d7ac4d294 45384 spectemu-svga_0.94a-15_i386.deb
Checksums-Sha256: 
 41bb38689cf7e17fe8fb42472db942f509cfa927e2ba99bf67c6462d3dae55e2 2099 
spectemu_0.94a-15.dsc
 af0e12fb7c1a2f92f99af0c0351558d0046f463aa9156559de512eabb4057596 32771 
spectemu_0.94a-15.debian.tar.gz
 340c4604dee13fc3ba26a720eaa291580557e6b255ae410b8b86e1ef9e56b0db 61966 
spectemu-common_0.94a-15_i386.deb
 9ae9fe629b26cf11545c712b1193ca8628135cc7200f6a6cfe335ed378a66dd1 65778 
spectemu-x11_0.94a-15_i386.deb
 94102433cb04710c56bdddca96e6b2fcfe88cd8ae5007bfdd17c827ddd1ab663 45384 
spectemu-svga_0.94a-15_i386.deb
Files: 
 5001826a853e277d80262a215a851651 2099 contrib/otherosfs optional 
spectemu_0.94a-15.dsc
 2dcb9ad861634e3c4e2f81254a886192 32771 contrib/otherosfs optional 
spectemu_0.94a-15.debian.tar.gz
 776fbb68d5a5da8aade1222e22403853 61966 contrib/otherosfs optional 
spectemu-common_0.94a-15_i386.deb
 f27e3fec16e30560bd551526393cf29d 65778 contrib/otherosfs optional 
spectemu-x11_0.94a-15_i386.deb
 167d09b6d5224f45ccb98c778c8e43d6 45384 contrib/otherosfs optional 
spectemu-svga_0.94a-15_i386.deb

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

iQIVAwUBT+RuHzk1h9l9hlALAQiU3Q//amAYjRFo/BGrjRPqUyndAYnK6mTNhSwq
zcHqJjEWdpGmjmwRCfMaVBPDCoblgd+GCqWuZG9xruYMfD+jZHczWldjh7zancGL
HJ8rmeaDH1jf9GqKnXgVfsncvIHaiz22MJlDlVyDC3Xo0ce4RRkHsaKyDfsoMiOY
nLh59utUKI+B7fe6nH6bG9pEQoctVhIDpv7W1J9gT6SKKohjY6xBjuiMtvr2FkOK
K0puQtzAP1Uz/bCEec6C1GKmi20GgPbVgQt+nBC7djjdXGlgixV3rD1vptmMtJ1a
9vgN7flJRKi8ETdJt8C/fiQ7sYceBXfgsyaLnuwHgp84k/ULrafPfQn8iv6+3sSe
HVJmMuEO6DMfa+ZzZ8inss7ib2cWicomzM5tWCEoXvRMMOJEineE3ylVjjn8egYP
kykw14A8ziKVHPqErRTfPyqQBqz5FFNYKaldDHJ0LQdGlPY7nFb7UVoEZ7BsmN0w
3GqDuNCht7gM7NaTNoIZoVzSCckgvnFxP7yMOV8B1wwx0/xIe3eK1ZOHdN+cdaC+
htUwa+7bHIiTe9yDauW61oWWDe/e0B/oMmTO+Abj4dnK7ZltdmzPHjwysgA2HdU5
FPnYveMKke+3LuwqV2Vz7apV/E4Z5YQFJ0uOIAW7EPP2ojDeRO0fWSsLcb1awzqn
fJnahISirAo=
=b1xP
-END PGP SIGNATURE-


Accepted:
spectemu-common_0.94a-15_i386.deb
  to contrib/s/spectemu/spectemu-common_0.94a-15_i386.deb
spectemu-svga_0.94a-15_i386.deb
  to contrib/s/spectemu/spectemu-svga_0.94a-15_i386.deb
spectemu-x11_0.94a-15_i386.deb
  to contrib/s/spectemu/spectemu-x11_0.94a-15_i386.deb
spectemu_0.94a-15.debian.tar.gz
  to contrib/s/spectemu/spectemu_0.94a-15.debian.tar.gz
spectemu_0.94a-15.dsc
  to contrib/s/spectemu/spectemu_0.94a-15.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/e1si3nm-0005k2...@franck.debian.org



Accepted vidalia 0.2.19-1 (source amd64)

2012-06-22 Thread dererk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 07:18:44 -0300
Source: vidalia
Binary: vidalia
Architecture: source amd64
Version: 0.2.19-1
Distribution: unstable
Urgency: low
Maintainer: Ulises Vitulli der...@debian.org
Changed-By: der...@debian.org
Description: 
 vidalia- controller GUI for Tor
Changes: 
 vidalia (0.2.19-1) unstable; urgency=low
 .
   [ intrigeri ]
   * Imported Upstream version 0.2.19
   * Install AppArmor profile.
   * Enable hardening flags.
 .
   [ Ulises Vitulli ]
   * Added runtime dependency on apparmor.
   * Updated d/NEWS and d/README.Debian to reflect new features.
   * Move dirs from d/rules to d/vidalia.dir.
   * Updated Standard-version to 3.9.3 (no changes needed).
Checksums-Sha1: 
 803d14e333d9c23f68d30fd4c431024165457e40 2016 vidalia_0.2.19-1.dsc
 74d00aea8d44868c16c16a5204115bc848add46a 6332374 vidalia_0.2.19.orig.tar.gz
 16fae44c7a905fca5d9a18eb4718e69ca08042b3 28588 vidalia_0.2.19-1.debian.tar.gz
 bbedb14aa9433ea72d38e5eee0d5578e0b48764c 3073056 vidalia_0.2.19-1_amd64.deb
Checksums-Sha256: 
 4a152b37e2eea5de137af2e80bf4190fd680f2f95e28d14d9e06df36ce9950fe 2016 
vidalia_0.2.19-1.dsc
 34da5fbfed9a1455b527104f1a34a6d863b62e854a0aa6bcba5a1013743e8153 6332374 
vidalia_0.2.19.orig.tar.gz
 b4aa2bb845b05463360e17a1ced381abe11c105dbd1dd1182da5313266009d27 28588 
vidalia_0.2.19-1.debian.tar.gz
 691a9a1b3ad1734ad60b89d61209eb2bd202b1a7ffc2e527bdd840be8b19e7d6 3073056 
vidalia_0.2.19-1_amd64.deb
Files: 
 75fa1040b9ed93c4f5b478897e5c237a 2016 net extra vidalia_0.2.19-1.dsc
 caf92b44ad2932bbc1c40d6405951c39 6332374 net extra vidalia_0.2.19.orig.tar.gz
 5058c7fe26260988c45a0eac97e41a1f 28588 net extra vidalia_0.2.19-1.debian.tar.gz
 d6f8fd745961b20f2e3b0b385021c8d1 3073056 net extra vidalia_0.2.19-1_amd64.deb

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

iQIcBAEBCAAGBQJP5Gz2AAoJEGin9OG0lUUKHa8P/0YwEaZhE5kJz86qg2pTZCEq
x3YB6AfV+1b3z3ss1mqOr+DP7Sm+ywJId/s3WpomGH7chc4wq3TqxPLj1g4aILly
/A+YNgLsraxOSeXXd8RZoH4wTUJd34xd9IJY0nOh1Ga3z20wvjN6ja4Vf20cUrv8
my1zpuFiOuAQ1IcPj5UgwSynVSAOWKsPnhRMa5uU0V4cSK/5RGMTtI98g8yoiN7g
SOtobwiG8uiq9x5z3Eszit8mIdkablvaU9hcXcEKlkv6XBukLY3mMGNPYPEhdKnw
+KAnRlvtvMnbQjTDtp2/gZD1oR1tk6/weaHd8mBZ1qlhkTXipYZ+7z68BwOTnhwT
0c1kw8Kbysinicd4hF7v11vOxddxN/tQQsVkUDiqRC2jVVMGGgpPRgKJvWbJocoV
H+hlkq4rGTmyUYFbCxuU4fratA3SBDIZx9ZERxdRAry5Ipn7fn57vvVdKEL/Ke9e
66wWCh4L9DdD4lkne/r42A+Z9bFYDz+E+AMKUjisRXaXeR0NpiZ3DDGmPmRFiODh
hQp11B6wpqm++71ZX2xXw1SUiibmfASCTmnzbY5IAl6sYqV9hOZDX0Iz4o+PdSLV
nZwMAiJqm4NtYbEbbHOQECOJdraOau7V6Dq98kR6+KCPeIb6GYH/jsfBPMDfg7ut
/WbBo1pMICo5+u75Y52D
=wDYF
-END PGP SIGNATURE-


Accepted:
vidalia_0.2.19-1.debian.tar.gz
  to main/v/vidalia/vidalia_0.2.19-1.debian.tar.gz
vidalia_0.2.19-1.dsc
  to main/v/vidalia/vidalia_0.2.19-1.dsc
vidalia_0.2.19-1_amd64.deb
  to main/v/vidalia/vidalia_0.2.19-1_amd64.deb
vidalia_0.2.19.orig.tar.gz
  to main/v/vidalia/vidalia_0.2.19.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/e1si3o1-0005l2...@franck.debian.org



Accepted abcm2ps 6.6.17-1 (source amd64)

2012-06-22 Thread Anselm Lingnau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 14:24:24 +0200
Source: abcm2ps
Binary: abcm2ps
Architecture: source amd64
Version: 6.6.17-1
Distribution: unstable
Urgency: low
Maintainer: Anselm Lingnau ling...@debian.org
Changed-By: Anselm Lingnau ling...@debian.org
Description: 
 abcm2ps- Translates ABC music description files to PostScript (or SVG)
Changes: 
 abcm2ps (6.6.17-1) unstable; urgency=low
 .
   * mercurial-importorig imported new upstream version.
   * Converted debian/copyright to machine-readable format.
   * Bumped Standards-Version up to 3.9.3.
Checksums-Sha1: 
 d9a991df50144a4e7218782009547f5b395ef47e 1079 abcm2ps_6.6.17-1.dsc
 cb1c37e48d72f54bfdad6c54a39fb421751eca13 297197 abcm2ps_6.6.17.orig.tar.gz
 6572e6eb7d908fa4466caaeafac5d75927c99d88 24626 abcm2ps_6.6.17-1.debian.tar.gz
 dde30d578c67963c5609104b24d019789055a849 249598 abcm2ps_6.6.17-1_amd64.deb
Checksums-Sha256: 
 61f1762b550112a4020643c4a20ed9e2eaffa2470b37c408ff4a106e309236fd 1079 
abcm2ps_6.6.17-1.dsc
 0fa0b6689d0927238fdce17a9a5640f85702ec9347c5e6e783fcd302dab7346d 297197 
abcm2ps_6.6.17.orig.tar.gz
 e695777e951de12a1ba6b371a1bac17def847c701b833e828606a39e295f853f 24626 
abcm2ps_6.6.17-1.debian.tar.gz
 4babad653282e46d25b93cc1d775cb5c88c6746894ce955f3613ca01e9272e0b 249598 
abcm2ps_6.6.17-1_amd64.deb
Files: 
 feef7609b181bc756a352b6be04fb5ad 1079 text optional abcm2ps_6.6.17-1.dsc
 65ebdef206ecb40752831b0ca6121ef0 297197 text optional 
abcm2ps_6.6.17.orig.tar.gz
 5279c34bd8ce6bb455ac02c0c7370d7c 24626 text optional 
abcm2ps_6.6.17-1.debian.tar.gz
 04023281aecd40b370f403193468840c 249598 text optional 
abcm2ps_6.6.17-1_amd64.deb

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

iEYEARECAAYFAk/kcIMACgkQtQIutYLqZT4Y6ACfRYpRZt7wpHZHS0F546lAFM2w
iwkAoJ2stTwJ+N2xD9CHYOV5iNoCT37N
=FXPM
-END PGP SIGNATURE-


Accepted:
abcm2ps_6.6.17-1.debian.tar.gz
  to main/a/abcm2ps/abcm2ps_6.6.17-1.debian.tar.gz
abcm2ps_6.6.17-1.dsc
  to main/a/abcm2ps/abcm2ps_6.6.17-1.dsc
abcm2ps_6.6.17-1_amd64.deb
  to main/a/abcm2ps/abcm2ps_6.6.17-1_amd64.deb
abcm2ps_6.6.17.orig.tar.gz
  to main/a/abcm2ps/abcm2ps_6.6.17.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/e1si3y6-0006nf...@franck.debian.org



Accepted trn4 4.0-test77-5 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 14:15:10 +0100
Source: trn4
Binary: trn4
Architecture: source i386
Version: 4.0-test77-5
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 trn4   - Threaded USENET news reader, based on rn (4.0 beta test)
Changes: 
 trn4 (4.0-test77-5) unstable; urgency=low
 .
   * Use dpkg-buildflags to enable hardening options.
Checksums-Sha1: 
 b9af178b382f5225e1afb49a7bab4d381a1ddb76 1792 trn4_4.0-test77-5.dsc
 680d1617f9ea0b510af52ecaa023f7c0b6d93ba6 56545 trn4_4.0-test77-5.debian.tar.gz
 fa58a501c46c6d81ccb5d281693e0c6014111267 427302 trn4_4.0-test77-5_i386.deb
Checksums-Sha256: 
 06df448b1430fe7e6372d1d3b2e96efb08ddd091563b99b8bdc4fcbde41ed70c 1792 
trn4_4.0-test77-5.dsc
 13019c34c18996bb20a7494f7b65a00a42f3ff98cbe8fc4fe5a187166e0bbfe7 56545 
trn4_4.0-test77-5.debian.tar.gz
 b78b0da0e5b247a81da693be3937c4ddb03cc847655bd03f1643e80703750de9 427302 
trn4_4.0-test77-5_i386.deb
Files: 
 3acb506ce0577aea971fbb24ab18856b 1792 non-free/news optional 
trn4_4.0-test77-5.dsc
 731dfd9a1427db23d71507b0c0f13906 56545 non-free/news optional 
trn4_4.0-test77-5.debian.tar.gz
 4e1fc22df76159b3d6751da1f8204965 427302 non-free/news optional 
trn4_4.0-test77-5_i386.deb

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

iQIVAwUBT+RwZDk1h9l9hlALAQgevhAAm+QWf5kkK9jsp9qtV2Ie0OiLwE+DDZtc
FLCEjE2CGPtY0KubnbIThhS2ukG4k18L08U9KWS3Fe26RMsStbwV9R5bA/0OlZ5f
N3senXMFkqpdFArMbHr7OTB4yiEZ8AxDi4ZSXUPSIpw17wAY4yOv08h1C0DfrIub
bRgO8J2PbLAd7m7259AHM24PkBwSIaZlVuDly5j5+4e6/nX6yrCi9KxTzzqx+bTQ
AryPQrEZEzJN2qY7ETKUnVg01+3mupnFP5mNh0/3KR6v/KgMknHOnYcx59Jqb38W
PHGVcWp1vEGadE6pS0J+cN/+nCrTakWnrbFBqRtqPYQBMWi5M62AkwIyTVN31Mi/
qJB8jauCUX/A5RjjexgL+G0/rduzT1bhJnYgM0EvWafKO+InGKmVMk7XaSBTBkUf
d8mrsSfKh6ePh1+M1ifCNdXX+Gpo5wzNHJ1Bp1yIRfNMmUP4FNKMNNSTAqkmIJHq
sw6yLFl+U8KqjwU2hcmqyHx3tnCZ98BcUNSyuqJsv5fziBBG4K3sv1n+qtN89rvl
xWwoDi0qKuYYd/1Ml2SbPC7qtTt6zBWKUYGdcA/XgsASvuMNkpOIoe927rYyWTDp
SvNPsepEBhSQvM7pxPIW8QuZAo/5IKlEzrHELF0395TrgIHrSWDETKbpTr1DM7iD
HKDL34Mreis=
=eJ5p
-END PGP SIGNATURE-


Accepted:
trn4_4.0-test77-5.debian.tar.gz
  to non-free/t/trn4/trn4_4.0-test77-5.debian.tar.gz
trn4_4.0-test77-5.dsc
  to non-free/t/trn4/trn4_4.0-test77-5.dsc
trn4_4.0-test77-5_i386.deb
  to non-free/t/trn4/trn4_4.0-test77-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/e1si41s-0006yp...@franck.debian.org



Accepted troffcvt 1.04-21 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 14:34:34 +0100
Source: troffcvt
Binary: troffcvt
Architecture: source i386
Version: 1.04-21
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 troffcvt   - Converts troff source to HTML, RTF, and plain text
Changes: 
 troffcvt (1.04-21) unstable; urgency=low
 .
   * Use dpkg-buildflags to enable hardening options.
   * Build-depend on groff for the -ms macros.
Checksums-Sha1: 
 907afbc395d1517bb27101a86384ed5b5c58a02c 1802 troffcvt_1.04-21.dsc
 6d234bee0f47ebdf30a6d7d4defd9074abe9bf46 10174 troffcvt_1.04-21.diff.gz
 8aebdfd18f07f1085d5e139e8b73f49216c335ee 195118 troffcvt_1.04-21_i386.deb
Checksums-Sha256: 
 538f3565fdc57b132be971f3be468f5d647f9c06614bdf9f40cae06421c12f1b 1802 
troffcvt_1.04-21.dsc
 7e216ead077e02a022517a358f441133d80a81a8d1ef772346e7ef78f4035f4b 10174 
troffcvt_1.04-21.diff.gz
 beba1beb4810ca4360ea16a26930669aae10f600144d19b72388aa0ff5679b84 195118 
troffcvt_1.04-21_i386.deb
Files: 
 6448e79ad4d58c49bfd9d043165b03d8 1802 text extra troffcvt_1.04-21.dsc
 fe0b2d5640b0162d1824dbbba31b3578 10174 text extra troffcvt_1.04-21.diff.gz
 a16a0f280950cb023aed5f3467c6a855 195118 text extra troffcvt_1.04-21_i386.deb

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

iQIVAwUBT+R0rzk1h9l9hlALAQgigxAAjIfM47Gq/S8zbR9gK+YlyOvux3w198lg
dwd1V2MfFK7MX5hWDq6OCRGfB1EEhT5eev12iVRUJVLM3XhX9L1qH9rkYB+1VEou
IeZLt9Gj844L7N0+tgwQl7Fa8Rz17JI56JTXmp78nIUy9xnK9tWGGu+VUU3zViVN
CxV5kHONd+g8qSf0drCOdga4epmLTzCvfuiNjcJTpM3p/3cmoAj8ioEmxJeadNCO
9goRtOf+qcl9fHd9t/KrHLkbe/6fbylwgNiBvfEV/C9t+4Y8UWKYWtTIlmjRs78x
gsTnPRwHzoxIph+8NYtE6GNOQF6Ui4jbca3mKxBHAWvTw9SUKyY+EUY2nO0tfghY
XDB43qlHFDgFFqcXIP4i/hfDy6ZOY3Gbf3lhZzNXrafKeTB4Ib7GJq3GjPghEcGr
XrfzavQufxxD2QM1xSiyRyMOGCI1vua7EbtXLDOOorGJ1ypUuXa19kjLENXPeHwk
hBGe6rmIazIFcJ2jEh5210BYfSZKzZbakChWg0wu8wgpfIdw4S9rZfsE3XK2Xl3g
GEO3dnTEqA6/QXTMo5ZtVCRPjZ0z9s4zyG6bnOMLyMtJFoDS81sgFklqH0zmTQXZ
8JRb6Q3b2jyKLFaqbaYo9E7RRL+uZkpPbIYaikpaBEWdOOJqFHpaGJYGLQ1fV7mG
b96XqZO3kek=
=dBrr
-END PGP SIGNATURE-


Accepted:
troffcvt_1.04-21.diff.gz
  to main/t/troffcvt/troffcvt_1.04-21.diff.gz
troffcvt_1.04-21.dsc
  to main/t/troffcvt/troffcvt_1.04-21.dsc
troffcvt_1.04-21_i386.deb
  to main/t/troffcvt/troffcvt_1.04-21_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/e1si4fm-0007y0...@franck.debian.org



Accepted bzr 2.6.0~bzr6526-1 (source all amd64)

2012-06-22 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 01:28:50 +0200
Source: bzr
Binary: bzr python-bzrlib python-bzrlib-dbg python-bzrlib.tests bzr-doc
Architecture: source all amd64
Version: 2.6.0~bzr6526-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr- easy to use distributed version control system
 bzr-doc- easy to use distributed version control system (documentation)
 python-bzrlib - distributed version control system - python library
 python-bzrlib-dbg - distributed version control system - debug extension
 python-bzrlib.tests - distributed version control system - testsuite
Changes: 
 bzr (2.6.0~bzr6526-1) unstable; urgency=low
 .
   * New upstream snapshot.
Checksums-Sha1: 
 26d6cc4d62f89fe66573ecf738fb55dfea518bb2 1831 bzr_2.6.0~bzr6526-1.dsc
 ff7f1ef6be6cea9a07ba7d59d8374a017d871b99 9966974 bzr_2.6.0~bzr6526.orig.tar.gz
 c4ba984b3e27173b8960a37d4b21d164b8de85c8 41728 
bzr_2.6.0~bzr6526-1.debian.tar.gz
 b033faf3135e4b57ee424148c3efe199270a22bc 52706 bzr_2.6.0~bzr6526-1_all.deb
 2920a3e760c55958b2c6acb2b6a21aa0d581d3db 2360142 
python-bzrlib_2.6.0~bzr6526-1_amd64.deb
 5de893082b7e7c8eb7534cb290b138d1040eff7f 2713352 
python-bzrlib-dbg_2.6.0~bzr6526-1_amd64.deb
 3d04c5b049706f44d8c0d832d63a122517143283 1447380 
python-bzrlib.tests_2.6.0~bzr6526-1_all.deb
 cca4f1977f04b3a3f1c5553f65b52dd2eac5cec6 5534560 
bzr-doc_2.6.0~bzr6526-1_all.deb
Checksums-Sha256: 
 a72bb96f7eb51d0094d33862da83c042d0071597d50982a7ab40acb39afad1cb 1831 
bzr_2.6.0~bzr6526-1.dsc
 d7196bf838062aea7e1c215cef26dfe160c64f28b2092a22d4f6c1b96ecc046d 9966974 
bzr_2.6.0~bzr6526.orig.tar.gz
 48d590085e7f0578b135cf4855e6f0ab0432f40deb91199b0cd542ed5faff353 41728 
bzr_2.6.0~bzr6526-1.debian.tar.gz
 b3dcc0e1e76697d7a48e5f753830709f71fe178499276404766e15e2984ecffe 52706 
bzr_2.6.0~bzr6526-1_all.deb
 9b0b4b7134e43a3d17a3864e59b454803bd12f2c9587819b27374fd73d642cc0 2360142 
python-bzrlib_2.6.0~bzr6526-1_amd64.deb
 d1d99c4c2fd3c4d3f5de4bcc243ef92b6ac4944d33b695b4a056f9217e48e43c 2713352 
python-bzrlib-dbg_2.6.0~bzr6526-1_amd64.deb
 aa8fcc0a49b9fdade544faebecd6393bd5d046f9e23b488088894cabbcff027a 1447380 
python-bzrlib.tests_2.6.0~bzr6526-1_all.deb
 7ab7751031b92f588d74ef5bff40ab52ddc0f742fff5af215158a9a2f4dbf286 5534560 
bzr-doc_2.6.0~bzr6526-1_all.deb
Files: 
 2d83e7d4b3b97ed7ccef8c0e4ffc2221 1831 vcs optional bzr_2.6.0~bzr6526-1.dsc
 3f1075ab1d43929fe6c2a6ac20002e85 9966974 vcs optional 
bzr_2.6.0~bzr6526.orig.tar.gz
 bb0b34924bd8d527c8852f1377c23382 41728 vcs optional 
bzr_2.6.0~bzr6526-1.debian.tar.gz
 ef375459fb68612727aa85036a364c3a 52706 vcs optional bzr_2.6.0~bzr6526-1_all.deb
 29a4bb998740061f906ddfa1994cc329 2360142 python optional 
python-bzrlib_2.6.0~bzr6526-1_amd64.deb
 4f0802318373e37d499d7b9d542e52ff 2713352 debug extra 
python-bzrlib-dbg_2.6.0~bzr6526-1_amd64.deb
 9b77ae4a0ec43980e3e26f2730735544 1447380 python optional 
python-bzrlib.tests_2.6.0~bzr6526-1_all.deb
 ecf81f4708cab40596cc1e1bbc6d483d 5534560 doc optional 
bzr-doc_2.6.0~bzr6526-1_all.deb

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

iEYEARECAAYFAk/keI4ACgkQPa9Uoh7vUnbW8ACfYve9oOhj03vPN6v7nlUaXd8V
T+AAnRj7ac0ldtfMWK6ncA0FYebmraH0
=JjNl
-END PGP SIGNATURE-


Accepted:
bzr-doc_2.6.0~bzr6526-1_all.deb
  to main/b/bzr/bzr-doc_2.6.0~bzr6526-1_all.deb
bzr_2.6.0~bzr6526-1.debian.tar.gz
  to main/b/bzr/bzr_2.6.0~bzr6526-1.debian.tar.gz
bzr_2.6.0~bzr6526-1.dsc
  to main/b/bzr/bzr_2.6.0~bzr6526-1.dsc
bzr_2.6.0~bzr6526-1_all.deb
  to main/b/bzr/bzr_2.6.0~bzr6526-1_all.deb
bzr_2.6.0~bzr6526.orig.tar.gz
  to main/b/bzr/bzr_2.6.0~bzr6526.orig.tar.gz
python-bzrlib-dbg_2.6.0~bzr6526-1_amd64.deb
  to main/b/bzr/python-bzrlib-dbg_2.6.0~bzr6526-1_amd64.deb
python-bzrlib.tests_2.6.0~bzr6526-1_all.deb
  to main/b/bzr/python-bzrlib.tests_2.6.0~bzr6526-1_all.deb
python-bzrlib_2.6.0~bzr6526-1_amd64.deb
  to main/b/bzr/python-bzrlib_2.6.0~bzr6526-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/e1si5dx-0003p8...@franck.debian.org



Accepted freecell-solver 3.12.0-1 (source amd64)

2012-06-22 Thread Gergely Risko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 10:08:05 +0200
Source: freecell-solver
Binary: libfreecell-solver0 libfreecell-solver-dev freecell-solver-bin
Architecture: source amd64
Version: 3.12.0-1
Distribution: unstable
Urgency: low
Maintainer: Gergely Risko ri...@debian.org
Changed-By: Gergely Risko ri...@debian.org
Description: 
 freecell-solver-bin - Library for solving Freecell games
 libfreecell-solver-dev - Library for solving Freecell games (Development files)
 libfreecell-solver0 - Library for solving Freecell games
Closes: 675262
Changes: 
 freecell-solver (3.12.0-1) unstable; urgency=low
 .
   * New upstream version. (closes: #675262)
Checksums-Sha1: 
 817d0489b01f782662841ae5c5f873c4e2e041a9 1490 freecell-solver_3.12.0-1.dsc
 cceb9bf48bd0b4841196103db59fe3607e55ff25 511071 
freecell-solver_3.12.0.orig.tar.bz2
 6109148ccdf0939553f9928368f101f4f463cae4 4809 
freecell-solver_3.12.0-1.debian.tar.bz2
 96cff64383e89e669a8241b41fcd41eb7ea6ffc4 105522 
libfreecell-solver0_3.12.0-1_amd64.deb
 ff8c90e9fde3f3129c6a028ed0c4d5d4794f6e8f 119534 
libfreecell-solver-dev_3.12.0-1_amd64.deb
 2c94d29916708998f5c556c1d879405768d9edda 110924 
freecell-solver-bin_3.12.0-1_amd64.deb
Checksums-Sha256: 
 66f4cc6dee1173e7a4d866bd6dec2524b59790100b044f38d2ae527590ca74c4 1490 
freecell-solver_3.12.0-1.dsc
 6396d7549450d15b09fa892947d8bcc87285f2b8fe9d4fd3203099944ce92d08 511071 
freecell-solver_3.12.0.orig.tar.bz2
 3c48664360f5e16cf54106ba5e3ba06c96d76a0953cd300df2de1f39846e3168 4809 
freecell-solver_3.12.0-1.debian.tar.bz2
 e6d9948d5ab946626ea39bcfb668ca2fac097f21c5c3370bea3002819d222832 105522 
libfreecell-solver0_3.12.0-1_amd64.deb
 f9f3b6513095ce174c2fe1da50977afc76cbe558090f841b1f8f156d48fdb5ac 119534 
libfreecell-solver-dev_3.12.0-1_amd64.deb
 a032be8549b59c00a866673445f22e827806b1c65c479c15284ed91a8f637048 110924 
freecell-solver-bin_3.12.0-1_amd64.deb
Files: 
 cf7d3d8d69f9200305afc1049be260fb 1490 devel optional 
freecell-solver_3.12.0-1.dsc
 142b1b173dc1a8f452ec8813b8891fca 511071 devel optional 
freecell-solver_3.12.0.orig.tar.bz2
 730683981e3fd349c8c20072589a7edd 4809 devel optional 
freecell-solver_3.12.0-1.debian.tar.bz2
 fe4c2c75423d6fe82da88a7562cc3811 105522 libs optional 
libfreecell-solver0_3.12.0-1_amd64.deb
 39de814ec73327525884c1c11562f4dc 119534 libdevel optional 
libfreecell-solver-dev_3.12.0-1_amd64.deb
 614612753df83bcc9df98049dab9b415 110924 games optional 
freecell-solver-bin_3.12.0-1_amd64.deb

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

iEYEARECAAYFAk/khoEACgkQf41LQiDQqqwBPACggAvWuaO8cytAvmsq4nOO7+KJ
fUIAnjbexkaNy+NM8j7+jiI6wsevX638
=JmNW
-END PGP SIGNATURE-


Accepted:
freecell-solver-bin_3.12.0-1_amd64.deb
  to main/f/freecell-solver/freecell-solver-bin_3.12.0-1_amd64.deb
freecell-solver_3.12.0-1.debian.tar.bz2
  to main/f/freecell-solver/freecell-solver_3.12.0-1.debian.tar.bz2
freecell-solver_3.12.0-1.dsc
  to main/f/freecell-solver/freecell-solver_3.12.0-1.dsc
freecell-solver_3.12.0.orig.tar.bz2
  to main/f/freecell-solver/freecell-solver_3.12.0.orig.tar.bz2
libfreecell-solver-dev_3.12.0-1_amd64.deb
  to main/f/freecell-solver/libfreecell-solver-dev_3.12.0-1_amd64.deb
libfreecell-solver0_3.12.0-1_amd64.deb
  to main/f/freecell-solver/libfreecell-solver0_3.12.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/e1si5h4-0003zv...@franck.debian.org



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

2012-06-22 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 21 Jun 2012 20:40:20 +0200
Source: libio-socket-ssl-perl
Binary: libio-socket-ssl-perl
Architecture: source all
Version: 1.76-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libio-socket-ssl-perl - Perl module implementing object oriented interface to 
SSL sockets
Changes: 
 libio-socket-ssl-perl (1.76-1) unstable; urgency=low
 .
   * Imported Upstream version 1.75 and 1.76
   * Update dependencies for IPv6 support
 + Update Build-Depends-Indep for IPv6 support to an alternative dependency
   on  libsocket6-perl | perl (= 5.15.6) | libsocket-perl (= 1.95) and
   libio-socket-inet6-perl | libio-socket-ip-perl (= 0.11).
 + Update Recommends field to libio-socket-ip-perl (= 0.11) |
   libio-socket-inet6-perl and perl (= 5.15.6) | libsocket-perl (= 1.95)
   | libsocket6-perl
   * Update long description regarding IPv6 support.
 Add additional information that IO::Socket::SSL uses IPv6 if
 libio-socket-inet6-perl or libio-socket-ip-perl (= 0.11) is installed.
Checksums-Sha1: 
 e4bd70961e1873586e4ab75b93d97fac85a93ccc 2481 libio-socket-ssl-perl_1.76-1.dsc
 b27cfff3b5cf03f223431317abda03d44d1a902d 75442 
libio-socket-ssl-perl_1.76.orig.tar.gz
 688b84b011b79e903946ed137f518a63a0d0f1f7 5386 
libio-socket-ssl-perl_1.76-1.debian.tar.gz
 21d3835729d64c2acc80e41362a2f52e763740a4 67792 
libio-socket-ssl-perl_1.76-1_all.deb
Checksums-Sha256: 
 df85ca26698dbf9ed050ee23a4ec951849da7e71039a81e803385e53a42f835f 2481 
libio-socket-ssl-perl_1.76-1.dsc
 a14d07edf8a1839481564ba9f9e9a07ecc95f51914e62a9264b4e858268d1870 75442 
libio-socket-ssl-perl_1.76.orig.tar.gz
 dd6f02bc6313407b9f8085d0c2db29fa454eb8f1f5e415e768c78af3ea53 5386 
libio-socket-ssl-perl_1.76-1.debian.tar.gz
 63a4c4b38885eccc9e6d27c8a136382171b1d3932c623d79e496fc4fad3c3f20 67792 
libio-socket-ssl-perl_1.76-1_all.deb
Files: 
 968228615cef2ff11a5911a6709fb674 2481 perl optional 
libio-socket-ssl-perl_1.76-1.dsc
 27796a16df658aa3b3d2defd0fe3ac61 75442 perl optional 
libio-socket-ssl-perl_1.76.orig.tar.gz
 513aee58b92abcb6bbd83f99a219bce0 5386 perl optional 
libio-socket-ssl-perl_1.76-1.debian.tar.gz
 317325d3e6884ca64d71608e3af85ef0 67792 perl optional 
libio-socket-ssl-perl_1.76-1_all.deb

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

iQIcBAEBCAAGBQJP5HbkAAoJEHidbwV/2GP++JYP/2e8Ibz24CmeTs85hyr18RjK
UNywxKXs29lIts2wgwrWODxA0f84LInk/o+dqYorNAZAhl+BH8QJnbXteZnhzctV
s1W/6GF69a5XgzfSTY3hb8eTg+w8aHqKiO8wMzos+1YAKxotikMAz5euyAJ/mOnh
Rq6CYEfOQV/eJMMfeTO1a9NgS7GOtdk/xKTHm/XoogymCA6S7BXiGZoPjFSLt8SS
8RDMUNjtI1M2ZlIWrGX5YIOC51hRAdoOzXQ8qCW53RKzE5MkgcnhX8+BPZPhJuQX
+LNM4A2TU6y2uGwwI7L5QCITKs+bZKal8MX1CXhxpXmBm/Yf7pbQUy5OSDbEQy1c
Dd0nQvknKMwTs9FQPDAgKs1fXhdE/UwV/lcqhmw8k4iKnDhy6gZpXoNez6iLYzfv
+RLKfGz0Z6xAHQmdZ0SA8ZthkkK9L5I9qMCSLD67b1oiTk5hrb9TsG3564HdhwfH
FSsEoaj//QIDgAoXVI81S5Y4b73bqjdrFA45syCfp4Gyaw/4ZpaKuyK6Hoo/0g8L
KsrEj1bDnXx5kCmt/NR39an+IdqPkuCf+L/tPITIMSa+83O6geBaemSOgUBMyIfT
pEXeg3mOuoYoTHsoSARXZlvNSzbQ12abZzTY6Tybgpex+PGhVX6qecOO1T03nAUj
riTu+WNhZZf1ogKHiZzd
=7df1
-END PGP SIGNATURE-


Accepted:
libio-socket-ssl-perl_1.76-1.debian.tar.gz
  to main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_1.76-1.debian.tar.gz
libio-socket-ssl-perl_1.76-1.dsc
  to main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_1.76-1.dsc
libio-socket-ssl-perl_1.76-1_all.deb
  to main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_1.76-1_all.deb
libio-socket-ssl-perl_1.76.orig.tar.gz
  to main/libi/libio-socket-ssl-perl/libio-socket-ssl-perl_1.76.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/e1si5kz-0004dv...@franck.debian.org



Accepted libsvn-look-perl 0.38-1 (source all)

2012-06-22 Thread Angel Abad
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 15:52:10 +0200
Source: libsvn-look-perl
Binary: libsvn-look-perl
Architecture: source all
Version: 0.38-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Angel Abad an...@debian.org
Description: 
 libsvn-look-perl - module providing access to svnlook data
Changes: 
 libsvn-look-perl (0.38-1) unstable; urgency=low
 .
   * Imported Upstream version 0.38
   * debian/control: Build-Depends on liblist-moreutils-perl
Checksums-Sha1: 
 bdac9147afc2d69e74ca41d15c6cf90171d15af0 1499 libsvn-look-perl_0.38-1.dsc
 2f2886191f94742f174a8a4dbf1803bf128eab8f 15663 
libsvn-look-perl_0.38.orig.tar.gz
 b57d3daa3397690c39f549284c3f1d9882780224 2976 
libsvn-look-perl_0.38-1.debian.tar.gz
 52c6f618bc251171b1ff4c348287504feb41789c 13856 libsvn-look-perl_0.38-1_all.deb
Checksums-Sha256: 
 290dd61bc68e42558b9111e218e99c61a836f03dcff3b1fd7dad5e37e9bbf198 1499 
libsvn-look-perl_0.38-1.dsc
 59e489ab1cf629fdfb3c731360d44af18907d6afb1a3f1e34eb52377567270c3 15663 
libsvn-look-perl_0.38.orig.tar.gz
 c6fc1ade196475e3ac26319e5c4083f293050f3334c6c1f76ebe5ca086007040 2976 
libsvn-look-perl_0.38-1.debian.tar.gz
 eaabe92384ee0deb1679be832549625902f95b639fc74142b403102fd850f345 13856 
libsvn-look-perl_0.38-1_all.deb
Files: 
 d0ee043c45e99b001c151f6687d34a88 1499 perl optional libsvn-look-perl_0.38-1.dsc
 748746c3ea544f311370087dff9d9794 15663 perl optional 
libsvn-look-perl_0.38.orig.tar.gz
 2a6508354598fef15876502faf7297dc 2976 perl optional 
libsvn-look-perl_0.38-1.debian.tar.gz
 6bd10c968393f6f9d1173a354b92a86c 13856 perl optional 
libsvn-look-perl_0.38-1_all.deb

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

iEYEARECAAYFAk/keNoACgkQCY2uR+47wnkyLACfTAeFdedq6HC+zgBp2w0s6MFl
xHAAn3rUMJsMrLoXDpzbgTDjq4fJ+v0l
=uSO6
-END PGP SIGNATURE-


Accepted:
libsvn-look-perl_0.38-1.debian.tar.gz
  to main/libs/libsvn-look-perl/libsvn-look-perl_0.38-1.debian.tar.gz
libsvn-look-perl_0.38-1.dsc
  to main/libs/libsvn-look-perl/libsvn-look-perl_0.38-1.dsc
libsvn-look-perl_0.38-1_all.deb
  to main/libs/libsvn-look-perl/libsvn-look-perl_0.38-1_all.deb
libsvn-look-perl_0.38.orig.tar.gz
  to main/libs/libsvn-look-perl/libsvn-look-perl_0.38.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/e1si5lr-0004fw...@franck.debian.org



Accepted putty 0.62-8 (source i386 all)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 15:18:51 +0100
Source: putty
Binary: pterm putty putty-tools putty-doc
Architecture: source i386 all
Version: 0.62-8
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 pterm  - PuTTY terminal emulator
 putty  - Telnet/SSH client for X
 putty-doc  - PuTTY HTML documentation
 putty-tools - command-line tools for SSH, SCP, and SFTP
Closes: 221786 250464
Changes: 
 putty (0.62-8) unstable; urgency=low
 .
   * Backport from upstream (Simon Tatham):
 - Support dead keys and compose sequences (closes: #221786, #250464).
Checksums-Sha1: 
 f17418d989890669df5f6c485a86118b43193ddf 2040 putty_0.62-8.dsc
 543ba8e19465327e750c669e628c9e6f8584efab 18064 putty_0.62-8.debian.tar.gz
 00b2bd050f9c203114fb7d109aa5f88d6afb298b 200566 pterm_0.62-8_i386.deb
 b1cd768535ac558114f35cbae835a92317f242c8 341768 putty_0.62-8_i386.deb
 42cb902f594cae1fa2886861fe43cc8c006510df 700140 putty-tools_0.62-8_i386.deb
 cb068b1a31c5062ca4de13d1cc4be6c98d8111d5 173734 putty-doc_0.62-8_all.deb
Checksums-Sha256: 
 ad4b4b8506f0321502bfa2e4769fa4ed84c8a71f7128e3fecec58228f6a2fd73 2040 
putty_0.62-8.dsc
 3029849f3a3b73c76aef3965061026e088ef5fecd4fcfd0a77fa9cb2c19092e9 18064 
putty_0.62-8.debian.tar.gz
 4bf25108e9a663de78ad8a18e666eb2b1130616f65318940146f547b42ed7886 200566 
pterm_0.62-8_i386.deb
 f5f06beb607c9a558f8b4c41c8572fdd95f77332ae287cd9c57752bf591ec64b 341768 
putty_0.62-8_i386.deb
 977f79e8a350a9fd3f96e868d41f43648d4f2abe53be34756b6b028471ae1072 700140 
putty-tools_0.62-8_i386.deb
 4d17ae920fd69dd2ebd616a3b504a9079134b364fb137b406fe219326a0c0f2e 173734 
putty-doc_0.62-8_all.deb
Files: 
 710951629f38e70302ee6399b8fd1f2e 2040 net optional putty_0.62-8.dsc
 c44be8e39544a0ebd5fe8d5aeec82619 18064 net optional putty_0.62-8.debian.tar.gz
 e7c2fde2065302e2646440eaab77968c 200566 x11 optional pterm_0.62-8_i386.deb
 9ccf1675069bf50c279483383d74736f 341768 net optional putty_0.62-8_i386.deb
 375d776084132ccdf42b7e98bf74d4e0 700140 net optional 
putty-tools_0.62-8_i386.deb
 c0a8ea8f499518a3b048cd83d586ae16 173734 doc optional putty-doc_0.62-8_all.deb

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

iQIVAwUBT+SAGzk1h9l9hlALAQgIMBAAjXPJ/7Xd4AhNVTolVgRMET7PUsraq5Km
oiJW5q1La0tPZdHjSCEd9RJR4cYkJpz4/UH8hZTw1IZ9r0FlGzIQSbbNh+oXuwCN
RW/4AtRBzscrnFYNO+bGcu8rkShBqKpxI9s4YH72IOAIPuyrtcrkEqOmDOH0sA8u
VOLzVA1V6p9yBRAyxSFbd5W3SuJxyqdqSdqHuIVqdMsix8rSgHphzlFKeZhyvzSJ
HVFRI5r3/t3sLaJMwFUrP/Udeyj5iljUBccxo6Zbnz0OqmRxgsPX1X/HzOMHr2si
Ly00+yCNyVBmJLr7amV0FL/ywCOrankd2gWh2RVpQ09LdT34KVUBK3cHGx9Hxj6B
0Gt/Z5rHgNtxH7/SLofEgVyg4J9FXdwQ5PAIyzH+uDztMnP6qB2omP4uOPFaQPkR
exJR3L7HqiRb9xT0+USzNokpbeeLQ7ozYP5BoEJGZrjzKGzWWLki+t0dIYL/6hif
mMB/iJ8QgHu3GtDftv//YvxF3lEVT5h5n3EXY7/dUKKOVRRjrB98/iAsKw3PsXKD
5PswJnwmiTuOlv3W9wwZlp6R1IvY89rwHGz8hkvYMrHhnmLy2wQZQx0RL80mg61E
wriL4yRxFwYKwQmppIZL2tjWXG44kzJVuD0mr53xT2iOIEeIb3EzVWy330TSwIlN
W8LwgoYpO2o=
=GPvV
-END PGP SIGNATURE-


Accepted:
pterm_0.62-8_i386.deb
  to main/p/putty/pterm_0.62-8_i386.deb
putty-doc_0.62-8_all.deb
  to main/p/putty/putty-doc_0.62-8_all.deb
putty-tools_0.62-8_i386.deb
  to main/p/putty/putty-tools_0.62-8_i386.deb
putty_0.62-8.debian.tar.gz
  to main/p/putty/putty_0.62-8.debian.tar.gz
putty_0.62-8.dsc
  to main/p/putty/putty_0.62-8.dsc
putty_0.62-8_i386.deb
  to main/p/putty/putty_0.62-8_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/e1si5nz-0004nx...@franck.debian.org



Accepted sivp 0.5.3+svn287-1 (source amd64)

2012-06-22 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 15:18:51 +0200
Source: sivp
Binary: scilab-sivp
Architecture: source amd64
Version: 0.5.3+svn287-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 scilab-sivp - Scilab Image and Video Processing toolbox
Closes: 660355 674363
Changes: 
 sivp (0.5.3+svn287-1) unstable; urgency=low
 .
   * New upstream release from svn snapshoot
   (Closes: #660355, #674363) (LP: #610837, #879097)
   * Drop the patches (most of them are applied upstream)
   * Standards-Version = 3.9.3
Checksums-Sha1: 
 63bb084fef444f11c8cc6b880202812e1ee5de0c 1597 sivp_0.5.3+svn287-1.dsc
 96604940609ac7a1a7c8d47421559892cf9c989d 3898632 sivp_0.5.3+svn287.orig.tar.gz
 3ad46fe8851ba325068c8c0d34de12a29446e598 4222 sivp_0.5.3+svn287-1.debian.tar.gz
 f96a86d54d1f886af25e6549a6a6d1fb60210bf3 3980848 
scilab-sivp_0.5.3+svn287-1_amd64.deb
Checksums-Sha256: 
 ad09de72d1938275414239ee4040287328050406b33c523935610e12a3c700c2 1597 
sivp_0.5.3+svn287-1.dsc
 75df1b3eac900d8052bdfcd5ae03b2a808f637c6663b95edb856770081186ffc 3898632 
sivp_0.5.3+svn287.orig.tar.gz
 7c67486f70296aeb5a07f6b4bf1b46f59709e10d1ca6d280f11c1ad2f57d6923 4222 
sivp_0.5.3+svn287-1.debian.tar.gz
 feb5890e177371aa30892d1ffb13ea10c3dab1b83dea975b68ba9b7a6e1f9990 3980848 
scilab-sivp_0.5.3+svn287-1_amd64.deb
Files: 
 32d674ef8a5cf6455673c41fcec1177b 1597 math optional sivp_0.5.3+svn287-1.dsc
 55a1b555876dddc6e91e1590655adb03 3898632 math optional 
sivp_0.5.3+svn287.orig.tar.gz
 3019d0eda328ce3659cf084483c27e9d 4222 math optional 
sivp_0.5.3+svn287-1.debian.tar.gz
 7cd64fab1f2108c4fee69cae06ceb389 3980848 math optional 
scilab-sivp_0.5.3+svn287-1_amd64.deb

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

iEYEARECAAYFAk/kh7EACgkQiOXXM92JlhBsSQCgl2gcTsPDPXrijpUe649J9fqM
RsoAoOrIL7C7H7WWmId74qT0fv94RUgX
=4zEt
-END PGP SIGNATURE-


Accepted:
scilab-sivp_0.5.3+svn287-1_amd64.deb
  to main/s/sivp/scilab-sivp_0.5.3+svn287-1_amd64.deb
sivp_0.5.3+svn287-1.debian.tar.gz
  to main/s/sivp/sivp_0.5.3+svn287-1.debian.tar.gz
sivp_0.5.3+svn287-1.dsc
  to main/s/sivp/sivp_0.5.3+svn287-1.dsc
sivp_0.5.3+svn287.orig.tar.gz
  to main/s/sivp/sivp_0.5.3+svn287.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/e1si5q7-00051e...@franck.debian.org



Accepted vigor 0.016-19 (source i386)

2012-06-22 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 14:50:22 +0100
Source: vigor
Binary: vigor
Architecture: source i386
Version: 0.016-19
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 vigor  - nvi with the evil paperclip
Changes: 
 vigor (0.016-19) unstable; urgency=low
 .
   * Drop manual and not-very-useful 'debian/rules configure' target.
   * Upgrade to debhelper 9, mainly for hardening build flags support.
Checksums-Sha1: 
 912a7009df6c49711bb9f80b7ba8eb24e4037d0c 1852 vigor_0.016-19.dsc
 f5c0539c742b8282730d20a99cc1177be107444b 52493 vigor_0.016-19.debian.tar.gz
 be70475c8d917ab2c66de85400a2d6f203d7d057 289152 vigor_0.016-19_i386.deb
Checksums-Sha256: 
 0c67ca4be6f796fc23f0c1dc9f31af9266c0196bf50c7794f89694f233c14aa2 1852 
vigor_0.016-19.dsc
 59828b24f72a2bdd79962f8d1f6910bdf433a82c6245e976d305a14327b2af83 52493 
vigor_0.016-19.debian.tar.gz
 58b26da1bfd0060223fc871edb2c6619762006176a884125fbe60e0e2b0d93c8 289152 
vigor_0.016-19_i386.deb
Files: 
 4ece0a046a92b55a919a3d46b202d848 1852 editors extra vigor_0.016-19.dsc
 74d9b9d83781dc6ecc27853682c9f556 52493 editors extra 
vigor_0.016-19.debian.tar.gz
 4770f0f983756d0f44fd0de7b8af62e4 289152 editors extra vigor_0.016-19_i386.deb

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

iQIVAwUBT+R4jjk1h9l9hlALAQj7SQ//ZHrbYfBFDDCeX2dB4L0EiRcZ3q2vTSWN
LWbyjSMAkBha+Kh0ZAYPnhHef7UEpPHpvC2hWEzMjXOCQLsY4l8MtroqooxJqME4
GdiysxHsUjjujBaTplBlsu+d2Umxde00ABO6PzWNPS+1X6fjmcIvzhgrUawP31og
MwFwVcL1LJxLOCFY2fL7TsMx/sE+dBmpnRVkI+mov/ohPvVdZ+zvbkzc/97w11Ll
EkGbky0OGIaLwnADk/kL38cAqBGWChTHM42t285ASAk8d/ZQgJsyjp+9bXJlTtJy
ZnvU9Q899betkWldADhCxPQt5oGJUXme2SO4VrGGxloss2rqIfIrU4VUSZWkqWD5
qdSBgDknqP5oaWzW8y5FOKL0vEmljN9RYkQBOkzDzLOb2ITAx2Lr9ImyytmfA1Mr
+yKhrao/dPQuclViJbhP+wQTcwIqYCtsYuCk7+9+RjGnfl/v5Ksh7QKCv/4yqP0U
gs9J830SCN64Hi4PrWUzSid2iE1RPqkO0PGWnQIesD3opAuyFggyD7ec8ojMcQvS
ADYHkZNyYCZ5h+rH4tIrvjswJwSUrTTQt4ti3O7jkO+Q2Ci0x1aX00Vz4mt25CWb
nS0nwohPpXFuTL1EFWFzybsiJ6qua+9IOQfgCQFoYBfE9qy2OyIVkitk3dWv2DVc
XmlRdjeeAco=
=HOo9
-END PGP SIGNATURE-


Accepted:
vigor_0.016-19.debian.tar.gz
  to main/v/vigor/vigor_0.016-19.debian.tar.gz
vigor_0.016-19.dsc
  to main/v/vigor/vigor_0.016-19.dsc
vigor_0.016-19_i386.deb
  to main/v/vigor/vigor_0.016-19_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/e1si5ul-0005ta...@franck.debian.org



Accepted wordpress 3.4+dfsg-2 (source all)

2012-06-22 Thread Raphaël Hertzog
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 21 Jun 2012 20:44:53 +0200
Source: wordpress
Binary: wordpress wordpress-l10n
Architecture: source all
Version: 3.4+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Giuseppe Iuculano iucul...@debian.org
Changed-By: Raphaël Hertzog hert...@debian.org
Description: 
 wordpress  - weblog manager
 wordpress-l10n - weblog manager - language files
Closes: 677889
Changes: 
 wordpress (3.4+dfsg-2) unstable; urgency=low
 .
   * [2e63535] Merge unused debian/NEWS into debian/wordpress.NEWS so that
 users are correctly informed of the latest changes.
   * [e3b7b1c] Improve preinst to also move the
 /usr/share/wordpress/wp-content/uploads directory to its new location in
 /var/lib/wordpress/wp-content/. The package never created this directory
 but many users probably created it and we need to do this to let dpkg
 install the symlink that we put into place.
   * [5c0a29b] Add a trigger that watches /usr/share/wordpress/wp-content.
 When activated, it will execute wp-setup --sync-wp-content
 which updates /var/lib/wordpress/wp-content/ with symlinks
 to plugins/themes that have been added and it drops symlinks
 to plugins/themes which have disappeared. (Closes: #677889)
Checksums-Sha1: 
 bf91b7df5b4a85364e5a23684b0dfeff67b0a22d 2284 wordpress_3.4+dfsg-2.dsc
 d0e566885bf98e9081035d292843572e44fdbf7f 3894396 
wordpress_3.4+dfsg-2.debian.tar.xz
 2e94723abd44917a971688669a6f457a028863a3 4219992 wordpress_3.4+dfsg-2_all.deb
 40027341b487d512e4098c5c87e80cc98585a545 6437920 
wordpress-l10n_3.4+dfsg-2_all.deb
Checksums-Sha256: 
 2b5ea280e220ef50bd746aad135a818410f82b80ddfd491c137e6f4bdd19a360 2284 
wordpress_3.4+dfsg-2.dsc
 66a499872075c23e08f2f1aad7279776078ae2412e08735c5e38a0e2b457abe0 3894396 
wordpress_3.4+dfsg-2.debian.tar.xz
 c27d4394b95731fdfb803d2b2b7e607bc3294657ab61b5fecd3317ce09716bd2 4219992 
wordpress_3.4+dfsg-2_all.deb
 812cb81faadc4b3bd107097d27bbdd9ae53934393e4911bf52efa09df2a0a76a 6437920 
wordpress-l10n_3.4+dfsg-2_all.deb
Files: 
 4e39997408366142ec938141b30f6538 2284 web optional wordpress_3.4+dfsg-2.dsc
 0760c22b50a46b6e830af3ac2754ed7d 3894396 web optional 
wordpress_3.4+dfsg-2.debian.tar.xz
 38521825af5c2d9c528e4ed4744d7956 4219992 web optional 
wordpress_3.4+dfsg-2_all.deb
 92894f7ce3864eb34dba030a0eb410e4 6437920 localization optional 
wordpress-l10n_3.4+dfsg-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)
Comment: Signed by Raphael Hertzog

iQIcBAEBCAAGBQJP5IEFAAoJEOYZBF3yrHKa7w0P/0kAPpvWL0O6JIxrE+FIpFD9
1BiE/l08mVtCjD1IBBSX6nYLIFm7oI/SpuVD3zZBBo62if2w1fsdUOAJQk/E4Syh
Y7lg4SG9C/hXBmj7lqsv3bVFhrDsg5V+AdKkukcOE2WzdVmK6mW9+eyd6LZNRQqp
ctkqZ/8wqlcB3o9pNwj7RhrB53MPMM0gjnXsDa8bqyd+48gX8JToRv9fCFd5vUHA
56IPgJsUPfNyF1/HZRr5Hj5EZrv3zuX+rZzJlJGkuS71Rd6Je3HRNOnk6pETNveg
d2ilJlHA5gZNPHMW6EBzNyR3PV3EbrHmuk/hVA0r9C6RLUanulaGRN1PXc4XRR1y
AXhYck/P15me69eySCPKfSB1rqDyMIbJdrr9JcMRKF10CmEcyde34802zgSRFFku
S0UtYAWiJ3JSGndLadqfpNBYW+7kUmsjIlQAJ+YmImVOykcPyM1THS3tpv6P9PHL
HRhq13bBzPRsmE10Sqbe3CyX8PNpjSq8xgg6OpUto0oqudyCrQCP0P/kX3zk8VuC
n1A/9Y8fKdBSK3cEvylOnFMDd9x8JULsVhe+KzzyKkPdfLbaleUSaIBrt600PmDk
v9y+mNSI8i4NMoWTuIj6sOLqrkrI6ZBomqiuUQRmc+xfeh55LGZ0H2/pmazOXC6Z
ZZOMmbbKAcYId3AwXRrG
=p6Qj
-END PGP SIGNATURE-


Accepted:
wordpress-l10n_3.4+dfsg-2_all.deb
  to main/w/wordpress/wordpress-l10n_3.4+dfsg-2_all.deb
wordpress_3.4+dfsg-2.debian.tar.xz
  to main/w/wordpress/wordpress_3.4+dfsg-2.debian.tar.xz
wordpress_3.4+dfsg-2.dsc
  to main/w/wordpress/wordpress_3.4+dfsg-2.dsc
wordpress_3.4+dfsg-2_all.deb
  to main/w/wordpress/wordpress_3.4+dfsg-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/e1si5v1-0005uy...@franck.debian.org



Accepted cdbs 0.4.115 (source all)

2012-06-22 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 22 Jun 2012 17:21:02 +0200
Source: cdbs
Binary: cdbs
Architecture: source all
Version: 0.4.115
Distribution: unstable
Urgency: high
Maintainer: CDBS Hackers build-common-hack...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 cdbs   - common build system for Debian packages
Changes: 
 cdbs (0.4.115) unstable; urgency=high
 .
   * Fix resolve default CXXFLAGS.
   * Set urgency=high as above one-line fix affects ability of other
 packages to reach release goal of enabling security hardening.
Checksums-Sha1: 
 de38ba8a8bbb0fd57b50911588b3cc511b84561b 1834 cdbs_0.4.115.dsc
 145613568643032fab9a6cff02d8c985e41ac6dd 267497 cdbs_0.4.115.tar.gz
 4ddac934c113ee18897db0278848498d1f44d102 80242 cdbs_0.4.115_all.deb
Checksums-Sha256: 
 b6b74168cc0a9d5ff46324ae52c19884c9f71a0996e8b4591823a4a55e78176c 1834 
cdbs_0.4.115.dsc
 cd29d21554fc9a2185d56ba8f72e63ec1caa649442930cb6778a429cc015d9f8 267497 
cdbs_0.4.115.tar.gz
 51e1f3e46dc702e7df9a199ca4281ac8f003566ccb2d6bc2561c551668c8127e 80242 
cdbs_0.4.115_all.deb
Files: 
 1549b4ea126403f8cd15156651934907 1834 devel optional cdbs_0.4.115.dsc
 e60d2376590a286162decbd3675f04d6 267497 devel optional cdbs_0.4.115.tar.gz
 93d5e30c7638edc088b64cf3cad4c071 80242 devel optional cdbs_0.4.115_all.deb

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

iQIcBAEBCgAGBQJP5I9OAAoJECx8MUbBoAEhtcUP/3o/RWiAomUC2L9jgHzYXAl1
nLRfBSsQhfVs/dJSDQuRJq433Cnm139No68bodF/GPWrh5Gux9fUDqYTjOPjWdsk
xaaS0MrgBzFUWMn1jUbX7sVoTOLHkQbVqFqhPA8m8xldQHADYLELlnbN0wIdfaor
na4zV8QNFiwcH7JqCXzUkas68PatrQLtuFb2J8u8HElhYxWRuUQhKq2dhQGPerpo
wLjg33Jptkovmod4eawB0AGp1OFeRB3lqG68tGW24Zs67mhb8HbZAEBD6mvrNbW2
AJc58jxLF6f2hcy9K3ZJB7NYcIYvjgK8P6J0TEVsCQpAQCLy7qtgNuWi1ke4vca4
eIYsT8N7KQOG5UutR7Hr2gfxzC2KVGpwQhGWegPY3+OVHK+m06r0ct4ljcJ7Aqwv
YQUNy6JmMz9dzMQJRfF8L2sSlw46dqO0bX/uk17k1fqF3LvEOI8FKu8iYHDKnX2Y
mFtYn02QVRopL4kA/HKW3ONs/4PTiuYbLi/nhmd8hFqIs8KYummk82+mWe+N67B8
LYrKrNs6E0Hg9DOp5+9xASHUYb3Ui7oCgEG9ZT4b5BnOWEuCkygQMmHIav4wduW3
vGVxlE7JusXzZLV5rkbV2Fnn3JPeIM+sbdlDFwF6Jh689guLV7llm13BG38T2bZf
tplTLu9PmG2ocfiW+OgO
=6pQy
-END PGP SIGNATURE-


Accepted:
cdbs_0.4.115.dsc
  to main/c/cdbs/cdbs_0.4.115.dsc
cdbs_0.4.115.tar.gz
  to main/c/cdbs/cdbs_0.4.115.tar.gz
cdbs_0.4.115_all.deb
  to main/c/cdbs/cdbs_0.4.115_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/e1si650-00069z...@franck.debian.org



Accepted gmic 1.5.1.6+dfsg-1 (source amd64)

2012-06-22 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 17:03:21 +0200
Source: gmic
Binary: gmic gimp-gmic
Architecture: source amd64
Version: 1.5.1.6+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Bernd Zeimetz b...@debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 gimp-gmic  - GIMP plugin for GREYC's Magic Image Converter
 gmic   - GREYC's Magic Image Converter
Changes: 
 gmic (1.5.1.6+dfsg-1) unstable; urgency=low
 .
   * [cfe57a54] Merge tag 'upstream/1.5.1.6+dfsg'
 Upstream version 1.5.1.6+dfsg
   * [fbc1e4d2] Refreshing patches.
Checksums-Sha1: 
 28e195aa7cea8e04b3902eaea753c535c958b933 2106 gmic_1.5.1.6+dfsg-1.dsc
 89a879d6fb7c72fd02885b2b0124c5d9847e9b3b 1880301 gmic_1.5.1.6+dfsg.orig.tar.gz
 22bc0fcb45d25fba86ab10c0733871928ff1e989 14455 
gmic_1.5.1.6+dfsg-1.debian.tar.gz
 f3310b7663c412c6780ec18f5d3ff4430125033f 5250104 gmic_1.5.1.6+dfsg-1_amd64.deb
 c3ac7cf0e975eff8cd762de7eea10c1cc05d48e6 1037658 
gimp-gmic_1.5.1.6+dfsg-1_amd64.deb
Checksums-Sha256: 
 9010d348e138b9d5e706e395c681018ad23a485880081ef5d7d9ebb72d900cf6 2106 
gmic_1.5.1.6+dfsg-1.dsc
 ac8e0561f1707eef13412dfb8bdff088aa8c470529f5e4bb23d6a840a21b3998 1880301 
gmic_1.5.1.6+dfsg.orig.tar.gz
 ce2b43146f46eb429813a777c394fb300869086d69a03dc7aa19e1e9677d36ea 14455 
gmic_1.5.1.6+dfsg-1.debian.tar.gz
 23861d5ef5f8ab07e6e1b90f0c473050d49d470afd090fbb6ff4c59f19002e92 5250104 
gmic_1.5.1.6+dfsg-1_amd64.deb
 55afeb90794a6bcd2a6f4c55ae54062af444b9eee8694d4b5f5495d43ce8415e 1037658 
gimp-gmic_1.5.1.6+dfsg-1_amd64.deb
Files: 
 166951322aa60804feb9d3833c3394d5 2106 graphics optional gmic_1.5.1.6+dfsg-1.dsc
 f1ef2285f0619ef8eb2ae79371e1aa2a 1880301 graphics optional 
gmic_1.5.1.6+dfsg.orig.tar.gz
 4585b464d575be583ca8ffdbfea582e2 14455 graphics optional 
gmic_1.5.1.6+dfsg-1.debian.tar.gz
 d5da1297d832f76e2c255267817d3022 5250104 graphics optional 
gmic_1.5.1.6+dfsg-1_amd64.deb
 12d57b71a923e34f2fa3b79f86bbc42d 1037658 graphics optional 
gimp-gmic_1.5.1.6+dfsg-1_amd64.deb

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

iQIcBAEBCAAGBQJP5Iz6AAoJEOs2Fxpv+UNfsh0QAIdfgaF3XmeqAm6gz/ysiGvl
tvTPB2w5vVJLIwKnc0+h/jD1vPKxUqbqVsfOXWl8p33gMla4cpD+6oyjUpq/mx4Q
vEyfn6EJjPlEIpjr/jDIpGQ+290NWYBx3wqkVRSbC5dXN5qVDRW9zBopPGxCKyd+
Tue1aM03q2wX8iqSczD4bc0Xw9Grw4f5N1hkUTohwuEa3JwpfpxS+O/CXzrBCxsz
Zhurv03HSlLKA5+1sEMupcDeTKPaQWWioisp32rdnySxTQXeEOO/XV5wcs55QF43
nRQkLZgYwPy0st3a93mnkCLMYwzFWd2dccD+Z6yMCXZS6JZ7tENZpksPZY5X+OII
BhO0vaAEcBMe1aTHoY0hjSXVuJBWtogkDkFRVzx6PMp/IQRyISRdUHGI3isR0cJ0
I/XKVUL48gdCv8uUfGBV6jDQuCWEaih1jWjTzW581pMfRel/LmbqcLQ20QTnhijo
0mUx8mnSacis16EBAV0y/rAjbD+Z8157W20gCxHWJg+7YNvfwY4bJIeOjDfWn+w+
OlfxhC/l9zMMXtTFmWHvvExyd7mDCDwRbWLekntKo5Fxhx73HQ/WtuADuNTaCKf4
uP0A1Lf7cYerwKP3vMQ2cw8CWSmQukPQrJO5UfiRASAvmFP3mckpuzFzYFN7BN2O
UcMnaAZo35x1jFkfMa9e
=VkYd
-END PGP SIGNATURE-


Accepted:
gimp-gmic_1.5.1.6+dfsg-1_amd64.deb
  to main/g/gmic/gimp-gmic_1.5.1.6+dfsg-1_amd64.deb
gmic_1.5.1.6+dfsg-1.debian.tar.gz
  to main/g/gmic/gmic_1.5.1.6+dfsg-1.debian.tar.gz
gmic_1.5.1.6+dfsg-1.dsc
  to main/g/gmic/gmic_1.5.1.6+dfsg-1.dsc
gmic_1.5.1.6+dfsg-1_amd64.deb
  to main/g/gmic/gmic_1.5.1.6+dfsg-1_amd64.deb
gmic_1.5.1.6+dfsg.orig.tar.gz
  to main/g/gmic/gmic_1.5.1.6+dfsg.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/e1si65q-0006ba...@franck.debian.org



Accepted kanif 1.2.2-1 (source all)

2012-06-22 Thread Lucas Nussbaum
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 22 Jun 2012 17:03:52 +0200
Source: kanif
Binary: kanif
Architecture: source all
Version: 1.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Lucas Nussbaum lu...@debian.org
Changed-By: Lucas Nussbaum lu...@debian.org
Description: 
 kanif  - cluster management and administration swiss army knife
Changes: 
 kanif (1.2.2-1) unstable; urgency=low
 .
   * New upstream release.
   * Change email to lu...@debian.org.
   * Bump Standards-Version to 3.9.3. No changes needed.
   * Increase Taktuk dependency to = 3.7.4.
Checksums-Sha1: 
 009b8fbfee7c93dd806c36ea8e56420dd0ad2e27 1837 kanif_1.2.2-1.dsc
 7a10fe0e74159875f004b6c4a12a0202ff092ce9 89397 kanif_1.2.2.orig.tar.gz
 af2dbec132de359084434e10d4cd0e73a15899fd 2074 kanif_1.2.2-1.diff.gz
 375dc713ee392ee5f616223f9678eb02ff784ba1 27384 kanif_1.2.2-1_all.deb
Checksums-Sha256: 
 0b733fbf1025a1a6c5f60f4a42259adce3baee297affc1d3a260825b277f3239 1837 
kanif_1.2.2-1.dsc
 3f0c549428dfe88457c1db293cfac2a22b203f872904c3abf372651ac12e5879 89397 
kanif_1.2.2.orig.tar.gz
 cb1a98b1c64ac77ed371341c4cc569a2ab643bdb1518952cfac70d59bfef7217 2074 
kanif_1.2.2-1.diff.gz
 94e67b7a5b87d13381ee412805cc114416fe7896681c4d716c0d96207913aa47 27384 
kanif_1.2.2-1_all.deb
Files: 
 82d9ca19220549bd391a583af6de9272 1837 net optional kanif_1.2.2-1.dsc
 c5990a626cd0eb0e306c20ac0a6c448a 89397 net optional kanif_1.2.2.orig.tar.gz
 8d9efb18ee06a6448d00d80e9e13bd90 2074 net optional kanif_1.2.2-1.diff.gz
 339d94852d3ab977385c82b6ff308ff8 27384 net optional kanif_1.2.2-1_all.deb

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

iQIVAwUBT+SM8zkUtTL0376ZAQpReA//XuTzO4NEjotPbZET2YEXc2CDxoZKL7Bj
Mtqw1mZfnEdwzBZwB7OLx9tPoGRjxdx4Jr8zBMVci4VB14qQuCvaLzZ/kS/ge8g8
ImafiKuBShG6zJlY3oRci3kL4g2azjTUZ4Ialeu/f8x4qHfBeKX5gYkjva1UOjur
3tz6ltEgG7p+IMwU+R5CT6FGBuplkcEZi6EG49g6Xew+bgnsLY00cA3E0/vws81X
mdkC7lqTOUcU7/ir2vMNxGauhA1V5/Ue83xhaKwnvXeDKcWaV5iWOxi510aNPXhi
PBGNs5ztgQYQfOOXmRY8POy+DrDAkMBXbJhZpuz0zoUREaJpi+Tc6oisxquoGI4R
1DJ+fG90zNveYvmCO48iWdjYkN6ZTtkvPN05LrqnTQ3/h93aMeQpWJZ+mQYquqs5
x1uA9QwWrKKS/At9fd5nENjBgH7mvn8T/Is9mXnovoC4onS2dSJCLUN2mJ/ciZcC
cWtTQKXLctgFVxqxiFVWPN78t0xi/PVvarxtqcMHnFmmNASTJln2jWwJbnN5+Ax7
LAg+zbh9PuoeRVxgHvkBXumb2gHun6gbwPW7IRPrv7W366qWvLNWA/eNLMGG1YIK
vv+ZKCPtCxij7UmS4WVsa+1Is1kReg31FZhSdGMs98D0eD+Wy7kz0pEzsV6F+cpa
cwAOQOdr7jM=
=CSHV
-END PGP SIGNATURE-


Accepted:
kanif_1.2.2-1.diff.gz
  to main/k/kanif/kanif_1.2.2-1.diff.gz
kanif_1.2.2-1.dsc
  to main/k/kanif/kanif_1.2.2-1.dsc
kanif_1.2.2-1_all.deb
  to main/k/kanif/kanif_1.2.2-1_all.deb
kanif_1.2.2.orig.tar.gz
  to main/k/kanif/kanif_1.2.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/e1si66j-0006cr...@franck.debian.org



Accepted tomcat7 7.0.28-1 (source all)

2012-06-22 Thread tony mancill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 07:06:46 -0700
Source: tomcat7
Binary: tomcat7-common tomcat7 tomcat7-user libtomcat7-java libservlet3.0-java 
libservlet3.0-java-doc tomcat7-admin tomcat7-examples tomcat7-docs
Architecture: source all
Version: 7.0.28-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: tony mancill tmanc...@debian.org
Description: 
 libservlet3.0-java - Servlet 3.0 and JSP 2.2 Java API classes
 libservlet3.0-java-doc - Servlet 3.0 and JSP 2.2 Java API documentation
 libtomcat7-java - Servlet and JSP engine -- core libraries
 tomcat7- Servlet and JSP engine
 tomcat7-admin - Servlet and JSP engine -- admin web applications
 tomcat7-common - Servlet and JSP engine -- common files
 tomcat7-docs - Servlet and JSP engine -- documentation
 tomcat7-examples - Servlet and JSP engine -- example web applications
 tomcat7-user - Servlet and JSP engine -- tools to create user instances
Closes: 677913
Changes: 
 tomcat7 (7.0.28-1) unstable; urgency=low
 .
   [ Miguel Landaeta ]
   * Add Slovak debconf translation (Closes: #677913).
 - Thanks to Ivan Masár.
 .
   [ James Page ]
   * New upstream release.
   * Enable test suite during package build:
 - d/control: Add junit4, libjstl1.1-java and
   libjakarta-taglibs-standard-java to BDI's.
 - d/rules:
   + Add ant/junit4 jars files to build classpath.
   + Target java 1.6 to support test suite exection.
   + Specify location of junit jar file.
   + Install jstl jar files to example webapp during build.
   + Conditionally execute test target if required.
   + Purge jar files from example webapp during clean.
   * Fix JSTL examples in examples web application:
 - d/control: Add dependencies on libjstl1.1-java and
   libjakarta-taglibs-standard-java for tomcat7-examples.
 - d/tomcat7-examples.links: Add links to jstl and standard jar
   files for examples web application.
 - d/context/examples.xml: Allow linking to jar files in examples
   webapp.
   * Fix mapping to javax packages for API jar files:
 - d/maven.[rules,publishedRules]: Ensure all javax.[servlet|el] jar files
   are published to the correct locations in /usr/share/[maven-repo|java].
 - d/libservlet3.0-java.manifest: Update jar file locations for javax
   remapping.
 - d/libservlet3.0-java.links: Provide backwards compatible links for
   deprecated tomcat-*.jar files in /usr/share/java.
 .
   [ tony mancill ]
   * Set DMUA flag.
Checksums-Sha1: 
 8708b36dbf5c0fa899cbc85f05ca245c3c8e9501 2614 tomcat7_7.0.28-1.dsc
 1460bb04578684e4b7ec44a6fb68b1a65421783f 3924077 tomcat7_7.0.28.orig.tar.gz
 b22f19c94ce760d7acb8817f21b70e6ebc1ae65a 43406 tomcat7_7.0.28-1.debian.tar.gz
 e9c1fb6ca6e0a34b824edd222cc7ac00e89c4992 59136 tomcat7-common_7.0.28-1_all.deb
 b5505437ba5437af2218553aadeb93b869a91309 48782 tomcat7_7.0.28-1_all.deb
 54a837bbdf43c1968363c519e8a8e8da4c4de069 37108 tomcat7-user_7.0.28-1_all.deb
 9da376392e2f7cf5ec1c3099b875a1f9df07e071 3501032 
libtomcat7-java_7.0.28-1_all.deb
 655391ffa34ed62575d768dacb28db6d42543053 303366 
libservlet3.0-java_7.0.28-1_all.deb
 ea6b2172a056d34af83efc7831afc01061c04208 300914 
libservlet3.0-java-doc_7.0.28-1_all.deb
 db22bd14882bc697346e777f4153125c594d32ef 49730 tomcat7-admin_7.0.28-1_all.deb
 ac0c445d24cbd1a0a9b986757eb7ce2a55dc4e29 202584 
tomcat7-examples_7.0.28-1_all.deb
 d955446819a000dc17b22b287b11b775a5fc6ad6 645584 tomcat7-docs_7.0.28-1_all.deb
Checksums-Sha256: 
 fe9ae52ef4c531bc80e337b8731b475893b6b5eef213e0d278e79385d2d5dedd 2614 
tomcat7_7.0.28-1.dsc
 11ed46d3dbe1dd67c404788feac3d37aa06ed7e7262fa6010c1611898af80fce 3924077 
tomcat7_7.0.28.orig.tar.gz
 dffecca914c7fab17e92dad9c8eb95aec85878e4de6e2b3bb1e5084d6559db3f 43406 
tomcat7_7.0.28-1.debian.tar.gz
 0cc5ca40e503c6474fd0f839f8a0b766165c73b8b80fd7dcb200ee3d49bd5827 59136 
tomcat7-common_7.0.28-1_all.deb
 c9b4cf5351c82e9e4a1c9459cc290eefef561981dff4495adca7d852a3310581 48782 
tomcat7_7.0.28-1_all.deb
 5be6279fc380f45f21d5b48892ffc2a82f528f2f1d8c8d698c002476bcea54b4 37108 
tomcat7-user_7.0.28-1_all.deb
 37ed82a97a9b44857a74ce91bc03d0d641248531b219b5890c5f0ad9ab65 3501032 
libtomcat7-java_7.0.28-1_all.deb
 428aff5d4264f64edc733dac7c6414528853ac8817be0a3b42c0d2baab35166a 303366 
libservlet3.0-java_7.0.28-1_all.deb
 25c39ad5b2012556c7c56445050c9e36360e81d45f6cacf2006edae74bf20c7a 300914 
libservlet3.0-java-doc_7.0.28-1_all.deb
 25bc69eade4efdf5b2c56b8d017200e2cb83620be98cd7fa34fc5f1a5505 49730 
tomcat7-admin_7.0.28-1_all.deb
 b6ad2dbbcefa3389c08e1ce4ce974da2c49c3b28ff826c3c6a10769cdef09865 202584 
tomcat7-examples_7.0.28-1_all.deb
 0675131709a6e22252ba6a397353a12ab4dc20d20daceea4b16f96435e91e035 645584 
tomcat7-docs_7.0.28-1_all.deb
Files: 
 1ba05741e62d084f0b05c6bc1a55c833 2614 java optional tomcat7_7.0.28-1.dsc
 c33dcbc69a1877d41b4ca4ae7a7c621b 3924077 java optional 

Accepted chromium-browser 20.0.1132.41~r143299-1 (source all amd64)

2012-06-22 Thread Giuseppe Iuculano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 22 Jun 2012 16:41:48 +0200
Source: chromium-browser
Binary: chromium-browser chromium-browser-dbg chromium-browser-l10n 
chromium-browser-inspector chromium chromium-dbg chromium-l10n 
chromium-inspector
Architecture: source all amd64
Version: 20.0.1132.41~r143299-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Chromium Maintainers 
pkg-chromium-ma...@lists.alioth.debian.org
Changed-By: Giuseppe Iuculano iucul...@debian.org
Description: 
 chromium   - Google's open source chromium web browser
 chromium-browser - Chromium browser - transitional dummy package
 chromium-browser-dbg - chromium-browser debug symbols transitional dummy 
package
 chromium-browser-inspector - page inspector for the chromium-browser - 
transitional dummy pack
 chromium-browser-l10n - chromium-browser language packages - transitional 
dummy package
 chromium-dbg - Debugging symbols for the chromium web browser
 chromium-inspector - page inspector for the chromium browser
 chromium-l10n - chromium-browser language packages
Changes: 
 chromium-browser (20.0.1132.41~r143299-1) unstable; urgency=medium
 .
   * [98cf55e] Do not use binutils-gold in armel and armhf
   * New beta release
Checksums-Sha1: 
 ac572afcdf354151d9ab378e1ac3f482247b8985 3075 
chromium-browser_20.0.1132.41~r143299-1.dsc
 3757fe8a7569652ab31db309cc2bde7e65ad24fd 520608982 
chromium-browser_20.0.1132.41~r143299.orig.tar.bz2
 758c64554ceb72389e1d4f7dee7cd76576718cc6 251909 
chromium-browser_20.0.1132.41~r143299-1.debian.tar.gz
 f7d24340e020349181244c79115dc1e4087a0226 181218 
chromium-browser_20.0.1132.41~r143299-1_all.deb
 62af6710fcfec07ec05981dd69932bcae94aa1d2 180594 
chromium-browser-dbg_20.0.1132.41~r143299-1_all.deb
 bf2cc0309e99be9b0f60b20be78b3a78ce758c4e 180744 
chromium-browser-l10n_20.0.1132.41~r143299-1_all.deb
 6e55ceb1d3052d12bdff364fdc3d11ba15f842d7 180608 
chromium-browser-inspector_20.0.1132.41~r143299-1_all.deb
 d798627f11746fd90dd9a16f6da6ea813bd08926 3227872 
chromium-l10n_20.0.1132.41~r143299-1_all.deb
 9694c6fe9520c0c6614abec62cdc1a864f675480 900166 
chromium-inspector_20.0.1132.41~r143299-1_all.deb
 50a29aec33196d701c76acc1a38eacca89e23828 33253102 
chromium_20.0.1132.41~r143299-1_amd64.deb
 90bdc943418927703f2e8d538f77243021c1c3f3 10599932 
chromium-dbg_20.0.1132.41~r143299-1_amd64.deb
Checksums-Sha256: 
 d7416181d7acd99a8ac59826caaf1382b84cf43d8d6c3a4442d7b645ba3f20e3 3075 
chromium-browser_20.0.1132.41~r143299-1.dsc
 3c36751aab6cdfc33abd40534f4fbd18f452ade4483991308cefc49ab65cd807 520608982 
chromium-browser_20.0.1132.41~r143299.orig.tar.bz2
 100152263db0f6b271d9a1df087a9f586f6301734885e639c2131876eea77a43 251909 
chromium-browser_20.0.1132.41~r143299-1.debian.tar.gz
 634a049264a54c2eee1af5625717914f363ff066e8abecc628d2bde0d2940f00 181218 
chromium-browser_20.0.1132.41~r143299-1_all.deb
 2aea638d77bf4537678f1132d14ffdbb26757756daa0948d7e823acf45771ec9 180594 
chromium-browser-dbg_20.0.1132.41~r143299-1_all.deb
 d401409108cb44524ba324e98ebdafddc32a79c1aa89b404c53dedda977ab5d1 180744 
chromium-browser-l10n_20.0.1132.41~r143299-1_all.deb
 0121bf8201667121dd97eaf9d51d860bb58003f26e52053e3d32a605fa6fdb2e 180608 
chromium-browser-inspector_20.0.1132.41~r143299-1_all.deb
 bc0acc1d8e85bd419062f6e70d11d8dbe5948cf33ab07dfd3466bccf645c993d 3227872 
chromium-l10n_20.0.1132.41~r143299-1_all.deb
 aecd9f327fb6d29507aef3ccc1af7971822400c4154111a95fe7b48d40cb806b 900166 
chromium-inspector_20.0.1132.41~r143299-1_all.deb
 1f60334b7d4fb4fdf9a028ef65cde3eee5de1176efb34be750c2ac699fd651b6 33253102 
chromium_20.0.1132.41~r143299-1_amd64.deb
 4021577957a894fb01d786ab320b1fb4bcd898bbd67ca7388a57b8602a8a2dd7 10599932 
chromium-dbg_20.0.1132.41~r143299-1_amd64.deb
Files: 
 d89bf82c64fa50e7211907b60edd3348 3075 web optional 
chromium-browser_20.0.1132.41~r143299-1.dsc
 b95269d776d177d00e14b88585557882 520608982 web optional 
chromium-browser_20.0.1132.41~r143299.orig.tar.bz2
 91767e593a2ff9ecaedddcaa1f958989 251909 web optional 
chromium-browser_20.0.1132.41~r143299-1.debian.tar.gz
 344b98855dc449d46de76684968f6741 181218 oldlibs optional 
chromium-browser_20.0.1132.41~r143299-1_all.deb
 7aa2941ff1f805415bd3da9f061ffe85 180594 oldlibs extra 
chromium-browser-dbg_20.0.1132.41~r143299-1_all.deb
 fa22fe82cdda14772df19ca439f20149 180744 oldlibs optional 
chromium-browser-l10n_20.0.1132.41~r143299-1_all.deb
 39efcda5ec5eb9dc7c9e63998080f3e9 180608 oldlibs optional 
chromium-browser-inspector_20.0.1132.41~r143299-1_all.deb
 d2a2f54ee633d7979fa87d967cbdd36e 3227872 web optional 
chromium-l10n_20.0.1132.41~r143299-1_all.deb
 a62c023fae39f0cd3ce791f6dc256730 900166 web optional 
chromium-inspector_20.0.1132.41~r143299-1_all.deb
 53704c180cca5854579245358aa68184 33253102 web optional 
chromium_20.0.1132.41~r143299-1_amd64.deb
 f454ab25ac93e1466dabce87ce19d469 10599932 debug extra 
chromium-dbg_20.0.1132.41~r143299-1_amd64.deb

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


Accepted plucker 1.8-34 (source amd64)

2012-06-22 Thread Ludovic Rousseau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Mar 2011 21:32:52 +0100
Source: plucker
Binary: plucker
Architecture: source amd64
Version: 1.8-34
Distribution: unstable
Urgency: low
Maintainer: Ludovic Rousseau rouss...@debian.org
Changed-By: Ludovic Rousseau rouss...@debian.org
Description: 
 plucker- Pluck stuff from the web and read it on your PalmOS device
Closes: 678080
Changes: 
 plucker (1.8-34) unstable; urgency=low
 .
   * Fix AttributeError: 'module' object has no attribute
 'uses_fragment' debian/patches/88_plucker-build (Closes: #678080)
   * debian/compat: 8 - 9
   * debian/rules: add hardening support
   * debian/watch: remove template in comments to fix lintian warning
 I: plucker source: debian-watch-contains-dh_make-template
   * debian/rules: add build-indep rule. lintian warning:
 W: plucker source: debian-rules-missing-recommended-target build-indep
Checksums-Sha1: 
 6eab80a09af49d82c33f56f2bc5f7e24d77a924a 1270 plucker_1.8-34.dsc
 1e482e9cd382f4b98965f765f4a9b2315ccd04c7 30557 plucker_1.8-34.debian.tar.gz
 7c271d94dc87adf0368fe9379e4582522ec5734d 469400 plucker_1.8-34_amd64.deb
Checksums-Sha256: 
 a67b9b459cd2ea89deaa0fdbdbf62f72eeadf0ced77e62c2ef0ef10954d61ea8 1270 
plucker_1.8-34.dsc
 4d62d9d60b1a902d1c738a8e22bfa04296147238df7c65d7edfdcac820974499 30557 
plucker_1.8-34.debian.tar.gz
 0b0e112f2f30fb6b4bca04cbceb4692c73552df75034867621a699ce3061 469400 
plucker_1.8-34_amd64.deb
Files: 
 9f34c52ee807efa5dd506ae847346c39 1270 otherosfs optional plucker_1.8-34.dsc
 de7471d7e112adca076a02c74835b977 30557 otherosfs optional 
plucker_1.8-34.debian.tar.gz
 9a176ed43a8945c5e37030f64794a288 469400 otherosfs optional 
plucker_1.8-34_amd64.deb

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

iEYEARECAAYFAk/kmQoACgkQP0qKj+B/HPmgXACggFTShYiPMXebp+v5vaWvVF0k
xBIAnjR0t/UcyebvHjBPgrUb2jwgUc7T
=oXW/
-END PGP SIGNATURE-


Accepted:
plucker_1.8-34.debian.tar.gz
  to main/p/plucker/plucker_1.8-34.debian.tar.gz
plucker_1.8-34.dsc
  to main/p/plucker/plucker_1.8-34.dsc
plucker_1.8-34_amd64.deb
  to main/p/plucker/plucker_1.8-34_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/e1si6br-rw...@franck.debian.org



Accepted lightproof 1.5~b3-3 (source all)

2012-06-22 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 22 Jun 2012 18:25:45 +0200
Source: lightproof
Binary: libreoffice-lightproof-en libreoffice-lightproof-hu 
libreoffice-lightproof-ru-ru
Architecture: source all
Version: 1.5~b3-3
Distribution: unstable
Urgency: medium
Maintainer: Debian LibreOffice Maintainers debian-openoff...@lists.debian.org
Changed-By: Rene Engelhard r...@debian.org
Description: 
 libreoffice-lightproof-en - Lightproof grammar checker for LibreOffice 
(English)
 libreoffice-lightproof-hu - Lightproof grammar checker for LibreOffice 
(Hungarian)
 libreoffice-lightproof-ru-ru - Lightproof grammar checker for LibreOffice 
(Russian)
Closes: 678434
Changes: 
 lightproof (1.5~b3-3) unstable; urgency=medium
 .
   * remove python3-uno alternative as Lightproof isn't yet python3
 compatible (closes: #678434)
Checksums-Sha1: 
 94130ab12a20b48eac75600550648ccde4d07665 1985 lightproof_1.5~b3-3.dsc
 6b049e67e8a70e616daada0ad290bc171c592d75 2726 lightproof_1.5~b3-3.debian.tar.gz
 ea8e1d4fd0d3d31d13102d5daaf93daff348dfe7 20350 
libreoffice-lightproof-en_0.4.2+1.5~b3-3_all.deb
 46b434fd8a84a73c35bd9586feed8773eacc7406 30856 
libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all.deb
 b291eb35bd7b0fb06ac9df42e7cf180e5527967f 16410 
libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all.deb
Checksums-Sha256: 
 76529acec4d21813642c79f7d1c64cf7ba54b7690661246e680a329eb8cdfff8 1985 
lightproof_1.5~b3-3.dsc
 cb8028d2fc0518d063c967257daa32d16e9075f40110cf28088680ac3a880d09 2726 
lightproof_1.5~b3-3.debian.tar.gz
 857c947febd8a61e33615d9d27c996c06251984e0715179fc82bcadc3d16df0c 20350 
libreoffice-lightproof-en_0.4.2+1.5~b3-3_all.deb
 55c490ffebac6031eef1f2a6d42e3c421ca2bf12aa1fb498187160f3e5f537ef 30856 
libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all.deb
 70e45d7e7e7394c576af063ed72ab892eea718cc893d8864ebfcdcb985e3dd50 16410 
libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all.deb
Files: 
 11e09a0fe65596ae64deb29cf28acaec 1985 text optional lightproof_1.5~b3-3.dsc
 5e9a7a34d250746bc6cbff955c391c86 2726 text optional 
lightproof_1.5~b3-3.debian.tar.gz
 62ff3dcbf774375e27f3943c85faae7e 20350 text optional 
libreoffice-lightproof-en_0.4.2+1.5~b3-3_all.deb
 4eeebb77074191b6187f82d1b031f246 30856 text optional 
libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all.deb
 7fd24bfa202a8159fc616bf200f223b5 16410 text optional 
libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all.deb

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

iQIcBAEBCAAGBQJP5J0kAAoJEAqgRXHQPj5wTTIP/id3K40EenoHWmqhQJxv8bIM
76vvukV72sj2QuuL+wZ1N5FeY9Poq94WvSB+mLKvK9Yiz+QJzdlNLcAPIEY56Ru4
6txddXa3zk6/UzDAuruqsjMOA2nBwBZ/NtG5QkZsU5qEEgn2dpjnKY5mTsvxSAlU
f7YDotRCvrN8/MVPrZ+7gxhkl2weJ+qluMdORMgsAryIb+xaJew3Sq6s1CdFoIDv
w+D2vtNts27F8HvWhEMcK8+ZxgM2esX6F31qGpjwiTtsJB99cUuDO1kWlbHwCdJ9
OPpOWrrl9Ff8ywl5PbJ052fcJH/IuAqMWEOvLdRCYzvIRQxXwL+5qdSdYY4VFJJj
vIftSWtA6ajjLlYre63wlYpE597Q5Gs+2rCHFIKEBFLlxDVz6kq8/Nq1apiPwZTg
tepqyq+EVi6+jMV8PddlRLI3ySsr9BEY73WzEx1bJ84Lmz740Z6D1ufHnVOET/s8
ycmNnQ9gvR60ts0ApDzWT9KAeHo/J2uD3BWvlYbQoDtaCu9x6PC6QovaEGjjbN0r
WTTuclLvgqrDYUT9HuN5ETC7oTdGCHJuNDCY9Powy2rAKwipAPQqqi1kZxX7SR2q
np4XxdHWNUdpqt9L2xGiUGhZLUKHfkQUlSO77y+jLN26IT9HtS3zRQDNhdr6W6sO
h5ZE3cb8qeiK2cqDpuis
=gj5m
-END PGP SIGNATURE-


Accepted:
libreoffice-lightproof-en_0.4.2+1.5~b3-3_all.deb
  to main/l/lightproof/libreoffice-lightproof-en_0.4.2+1.5~b3-3_all.deb
libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all.deb
  to main/l/lightproof/libreoffice-lightproof-hu_1.4.3+1.5~b3-3_all.deb
libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all.deb
  to main/l/lightproof/libreoffice-lightproof-ru-ru_0.3.1+1.5~b3-3_all.deb
lightproof_1.5~b3-3.debian.tar.gz
  to main/l/lightproof/lightproof_1.5~b3-3.debian.tar.gz
lightproof_1.5~b3-3.dsc
  to main/l/lightproof/lightproof_1.5~b3-3.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/e1si6n2-00028s...@franck.debian.org



Accepted nn 6.7.3-4 (source i386)

2012-06-22 Thread Cord Beermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 21 Jun 2012 23:18:07 +0200
Source: nn
Binary: nn
Architecture: source i386
Version: 6.7.3-4
Distribution: unstable
Urgency: low
Maintainer: Cord Beermann c...@debian.org
Changed-By: Cord Beermann c...@debian.org
Description: 
 nn - Heavy-duty USENET news reader (curses-based client)
Closes: 628348
Changes: 
 nn (6.7.3-4) unstable; urgency=low
 .
   * Acknowledge NMUs (closes: #628348)
   * Add Hardening
   * Remove Template from watch-File
   * Fixed duplicate changelog
   * Bump Standard to 3.9.3 (no changes)
Checksums-Sha1: 
 5344d52c9e01e877fdf2a751c1f285745ef7b2e6 981 nn_6.7.3-4.dsc
 617f63bbfb5ac2fd1fd8a555a9c10cf94f7ac75d 27670 nn_6.7.3-4.diff.gz
 ad88f35d09d629cae5f9c710aa8f970af24ef343 388522 nn_6.7.3-4_i386.deb
Checksums-Sha256: 
 3106473840e3a95c943ed9475ff411182edcfc8de4e9ac47a76844e95972 981 
nn_6.7.3-4.dsc
 2dc50207ff5b2e32b1934612237cc3fbdda6f323cce63fdd5dab64ea5b172095 27670 
nn_6.7.3-4.diff.gz
 43fdafa1ad21b7f5e3df0ae94af032e468ff2505b8d958019c906d4fcdc71120 388522 
nn_6.7.3-4_i386.deb
Files: 
 540d1084b37e6701591222dd19c96ece 981 news optional nn_6.7.3-4.dsc
 88669e05e71f2893970ac7128de2edbc 27670 news optional nn_6.7.3-4.diff.gz
 7e8047934da528e44ea36003f614b4ae 388522 news optional nn_6.7.3-4_i386.deb

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

iEYEARECAAYFAk/knk8ACgkQ72U+jVr0xGKGcgCgqYG+nFQLEy9751RTn+UoRddJ
EoAAmQHEZOGGN4UfAy3uom4CXWZbxgzS
=et4+
-END PGP SIGNATURE-


Accepted:
nn_6.7.3-4.diff.gz
  to main/n/nn/nn_6.7.3-4.diff.gz
nn_6.7.3-4.dsc
  to main/n/nn/nn_6.7.3-4.dsc
nn_6.7.3-4_i386.deb
  to main/n/nn/nn_6.7.3-4_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/e1si71d-0004d4...@franck.debian.org



  1   2   >