Packaging de freelan sur Debian

2012-05-10 Thread julien.kauffmann

Bonjour,

Je me permets de vous écrire suite aux conseils d'un mainteneur Debian 
qui m'a recommandé de m'adresser à cette liste de diffusion pour ma 
demande.


Je m'appelle Julien Kauffmann, et je suis à l'origine de différents 
projets libres:


- freelan (www.freelan.org) - Un VPN peer-to-peer basé sur UDP et 
pensé avant tout pour la sécurité et les performances.
- libfreelan - Une bibliothèque C++ permettant à chacun d'intégrer le 
protocole freelan au sein d'autres applications ou bibliothèques.
- libfscp - Une bibliothèque C++ qui implémente FSCP (Freelan Secure 
Channel Protocol), la couche basse utilisée par libfreelan.
- libasiotap - Une bibliothèque C++ qui permet d'utiliser une 
interface virtuelle (tun/tap) au sein de Boost Asio.
- libcryptoplus - Une bibliothèque/wrapper en C++ autour de OpenSSL 
qui uniformise son interface et permet de tirer profit de la puissance 
d'OpenSSL tout en bénéficiant des mécanismes de RAII du C++.


Voici par ailleurs un article sur www.linuxfr.org qui donne davantage 
de précisions 
(http://linuxfr.org/news/freelan-un-nouveau-venu-dans-le-monde-des-vpn-peer-to-peer).


Je crois que ces projets peuvent intéresser la communauté et leur 
entrée au sein des dépôts officiels Debian serait, je pense, un très 
bon moyen d'en faire profiter cette communauté.


J'ai conscience que le maintien de paquets Debian est chronophage (et 
que j'écris à la liste de diffusion des développeurs ;)), mais 
j'aimerais réellement m'investir pour devenir, à terme, mainteneur 
Debian si quelqu'un voulait bien devenir mon mentor.


J'ai déjà créé différents paquets Debian pour ces projets:

https://github.com/freelan-developers/freelan.debian
https://github.com/freelan-developers/libfreelan.debian
https://github.com/freelan-developers/libfscp.debian
https://github.com/freelan-developers/libasiotap.debian
https://github.com/freelan-developers/libcryptoplus.debian
https://github.com/freelan-developers/freelan-buildtools.debian

Si vous avez des questions sur moi ou ces projets, n'hésitez 
évidemment pas à m'en faire part.


Bonne journée à tous.

Julien Kauffmann.


--
To UNSUBSCRIBE, email to debian-devel-french-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/1feb94bd41d04bb88a167d3c692db790@localhost



Re: upstream shared library major versions

2012-05-10 Thread Simon McVittie
On 10/05/12 01:04, Brian May wrote:
 Should I be changing
 the library name from libdar64-5 to libdar64-5000? Or does this change
 reflect some sort of misunderstanding in how library versions work?

Given that he doesn't understand why libtool sets the first digit to
current-age (5000 instead of 5002) he might well not be understanding
how libtool versioning works. Feel free to forward this email if you
find it helpful.

The thing to understand is that libtool versioning is not the same
conceptual model as Linux library versioning. This is rather
unfortunate, since Linux-style library versioning is fairly ubiquitous,
and considerably easier to understand than Libtool's...

He's using a three-level versioning scheme corresponding to the library
versioning you'd get in Linux if you managed the versions by hand, which
he calls major/medium/minor, in which incompatible ABI changes increment
$major, ABI additions increment $medium, bugfixes increment $minor, and
incrementing anything zeroes the smaller parts. (It's more common to
call this major/minor/micro, but I'll use his terminology here.)

Libtool uses three numbers (current/revision/age), but they're not a
hierarchy. The idea is that you're saying this is ABI version $current,
and it's backwards-compatible with all versions from $current down to
$current-$age - so that's where the current - age in the SONAME comes
from. Incompatible ABI changes increment $current and zero $age, ABI
additions increment $current *and* $age, bugfixes increment $revision,
and incrementing anything except $revision zeroes it.

On platforms where the on-disk library name has a
major.medium.micro-style version (including Linux, anything else GNU,
and Darwin) or just a major version (including Windows), Libtool derives
a major.medium.micro-style version from the current/revision/age:

major = current - age
medium = age
micro = revision

It is in fact possible to use -version-number $major:$medium:$micro
instead of -version-info $current:$revision:$age if that fits your
mental model better, as long as the major number always goes up when an
incompatible change occurs. What that option effectively does is:

current = major + medium
revision = micro
age = medium

If you're using Libtool correctly, adding ABI frequently, and not
breaking ABI very often, you tend to end up with large numbers:
telepathy-glib has just reached current = 70. If we broke ABI in our
next release, libtool would have us jump from libtelepathy-glib.so.0 to
libtelepathy-glib.so.71 without any intermediate major versions.

Regards,
S


-- 
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/4fab7a91.7040...@debian.org



Bug#672344: ITP: python-lua -- library for using lua scripts from python

2012-05-10 Thread Bas Wijnen
Package: wnpp
Severity: wishlist
Owner: Bas Wijnen wij...@debian.org

* Package name: python-lua
  Version : 0.1
  Upstream Author : Bas Wijnen wij...@debian.org
* URL : None, first publication will be in Debian
* License : GPL-3+
  Programming Lang: Python
  Description : library for using lua scripts from python

This library provides an interface for using lua scripts from python.
It can call lua functions, pass any type of objects, including python
functions, which can be called from lua.



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



Bug#672346: ITP: lua-penlight -- general purpose library for the Lua language

2012-05-10 Thread Enrico Tassi
Package: wnpp
Severity: wishlist
Owner: Enrico Tassi gareuselesi...@debian.org

* Package name: lua-penlight
  Version : 1.0.2
  Upstream Author : Steve Donovan
* URL : http://stevedonovan.github.com/Penlight/api/index.html
* License : MIT
  Programming Lang: Lua
  Description : Collection of general purpose libraries for the Lua
language
A set of pure Lua libraries focusing on input data handling (such as reading
configuration files), functional programming (such as map, reduce, placeholder
expressions,etc), and OS path management. Much of the functionality is inspired
by the Python standard libraries.



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



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Jon Dowland
On Wed, May 09, 2012 at 12:46:40PM -0700, Josh Triplett wrote:
 It also means that I don't get a pile of noise in etckeeper from all the
 upgrades of default configurations, so that my commits to etckeeper primarily
 consist of my own local changes.

I don't personally use etckeeper but it strikes me that one advantage of
storing your /etc in a VCS would surely be being able to distinguish local and
system changes, perhaps storing each in a separate branch (with the merged
result matching the live /etc).  If etckeeper doesn't do this now, perhaps it
could do in future.


-- 
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/20120510093304.GK8272@debian



Bug#672360: ITP: glue -- Simple command line tool to generate CSS sprites.

2012-05-10 Thread Angel Abad
Package: wnpp
Severity: wishlist
Owner: Angel Abad an...@debian.org

* Package name: glue
  Version : 0.2.5
  Upstream Author : Jorge Bastida m...@jorgebastida.com
* URL : https://github.com/jorgebastida/glue
* License : BSD
  Programming Lang: Python
  Description : Simple command line tool to generate CSS sprites.

Glue is a simple command line tool to generate CSS sprites using any
kind of source images like PNG, JPEG or GIF. Glue will generate a
unique PNG file containing every source image and a CSS file including
the necessary CSS classes to use the sprite.



-- 
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/20120510111712.8930.38671.reportbug@bangalore



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Bjørn Mork
Uoti Urpala uoti.urp...@pp1.inet.fi writes:

 Machine-specific configuration belongs in /etc. The default behavior of
 the tools doesn't.

Agree.  Copying a large set of default policies into /etc just because
they *can* be overridden is not user friendly.  And it does not make the
defaults any more configuration either. It just hides important local
changes and makes it difficult both for the user and the application
itself to distinguish between defaults and configuration overrides.

A default setting does not count as configuration until it is changed,
IMHO. 


Bjørn


--
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/87397844h3@nemi.mork.no



Bug#672375: ITP: cloud-init

2012-05-10 Thread Charles Plessy
Package: wnpp

Hello everybody,

I was reminded to send an ITP for cloud-init, so that the progress in packaging
can be followed.  Here are prospective control and copyright files.

I tried to rework the description using 
https://help.ubuntu.com/community/CloudInit.

Your comments, proofreading, etc. are very welcome.

Cheers,

-- Charles

Source: cloud-init
Section: admin
Priority: optional
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Uploaders: Charles Plessy ple...@debian.org
Build-Depends: cdbs (= 0.4.90~),
   debhelper (= 9),
   po-debconf,
   pyflakes,
   pylint,
   python (= 2.6.6-3~),
   python-nose,
   python-mocker,
Standards-Version: 3.9.3
Homepage: https://launchpad.net/cloud-init
Vcs-Svn: svn://svn.debian.org/python-apps/packages/cloud-init/trunk/
Vcs-Browser: http://svn.debian.org/websvn/python-apps/packages/cloud-init/trunk/

Package: cloud-init
Architecture: all
Depends: cloud-utils,
 ifupdown (= 0.6.10ubuntu5),
 procps,
 python,
 python-cheetah,
 python-configobj,
 python-oauth,
 python-software-properties,
 python-yaml,
 ${misc:Depends},
 ${python:Depends}
Description: configuration and customization of cloud instances
 System to handle early initialization of a cloud instance. Cloud-init can for
 example set a default locale and a host name, generate SSH private host keys,
 add SSH keys to a user's .ssh/authorized_keys so they can log in, and set up
 ephemeral mount points.
 .
 Cloud-init's behavior can be configured via user-data, given by the user at
 instance launch time.


Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: 
https://launchpad.net/cloud-init/trunk/0.6.3/+download/cloud-init-0.6.3.tar.gz

Files: *
Copyright: © 2009-2012, Canonical Ltd.
   © 2012 Hewlett-Packard Development Company, L.P.
   © 2012 Cosmin Luta
License: GPL-3
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License version 3, as
 published by the Free Software Foundation.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see http://www.gnu.org/licenses/.
 .
 The complete text of the GPL version 3 can be seen in
 /usr/share/common-licenses/GPL-3.

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan



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



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Kris Deugau
Steve McIntyre wrote:
 No, really - please *do* do this. The fact that a lot of the software
 coming out of RedHat development seems to be designed solely for their
 use, including working around the missing/broken features of RPM,

I'm curious exactly what you mean by this, since my own experience has
been that rpm is more flexible than dpkg.

-kgd, longtime RedHat-er torn between a distro that I get along with and
a distro with at least three kitchen sinks included


-- 
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/4fabcd92.4060...@vianet.ca



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread George Danchev
On Thursday 10 May 2012 00:22:11 Uoti Urpala wrote:
 Steve McIntyre wrote:
  Josh Triplett wrote:
  Marco d'Itri wrote:
   The more I think about it, the more I suspect that the correct
   solution would be to just symlink /lib/udev/rules.d/ to
   /etc/udev/rules.d/ and so on.
  
  Please don't.  As a user, I find it highly preferable for packages to
  install their default configuration in /lib and just have overrides in
  /etc, and I'd love to see that trend continue.  That setup lets me
  trivially construct personal configuration packages that ship the
  overriding files in /etc, without having to play ugly games with
  dpkg-divert of conffiles.  It also means that I don't get a pile of
  noise in etckeeper from all the upgrades of default configurations, so
  that my commits to etckeeper primarily consist of my own local changes.
  
  No, really - please *do* do this. The fact that a lot of the software
  coming out of RedHat development seems to be designed solely for their
  use, including working around the missing/broken features of RPM, is
  seriously annoying. Configuration belongs in /etc, we know this. We
  have a well-designed and implemented set of tools in Debian based on
  that standard.
 
 Machine-specific configuration belongs in /etc. The default behavior of
 the tools doesn't.

For some reason or another the vast majority of applications have not been 
following this approach. I'm not going to argue whether is makes sense or not.

 Josh Triplett provided multiple technical reasons why etc-overrides-lib
 is preferable. The ONLY technical reason you gave to prefer traditional
 conffiles was that there already is a set of tools for that in Debian.

Your comparison is misguided.

The vast majority of applications do not follow etc-overrides-lib (some will 
never follow) so their configuration files should be properly managed as well, 
and dpkg's conffiles facility, dpkg's maintainer scripts in conjunction with 
things like ucf and debconf are quite powerful mechanisms to employ which have 
been proven for the last decade. Contrast this to the rpm systems trashing 
locally modified configuration files in /etc/ for the last decade. It is also 
trivial for the debian packages to contain default configuration files so users 
and tools could refer to them on demand, and this has nothing to do with the 
packaging system itself.

OTOH, applications following etc-overrides-lib happily run on Debian systems 
in the way they run on others. It is not like the semantics of separating the 
default and locally modified configuration files in two directories is some 
sort 
of giant invention, never heard of before. It is also trivial to guess that 
their configuration files could also be managed by calling tools from dpkg's 
maintainer scripts in order to communicate with the user or provide assistance 

 Who's the one choosing his preferred configuration format based on the
 limitations of his preferred packaging system here? Hint: it's not Red
 Hat.

You're good, but I'd better watch Peter Sellers, honestly.

-- 
pub 4096R/0E4BD0AB people.fccf.net/danchev/key pgp.mit.edu


-- 
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/201205101802.37898.danc...@spnet.net



ITP: libzeromq-perl -- A ZeroMQ2 wrapper for Perl

2012-05-10 Thread Harlan Lieberman-Berg
Package: wnpp
Severity: wishlist
Owner: Harlan Lieberman-Berg h.liebermanb...@gmail.com

Package name:   libzeromq-perl
Version:0.21
Upstream Author:Daisuke Maki dais...@endeworks.jp
URL:http://search.cpan.org/dist/ZeroMQ/
License:GPL-1+ or Artistic
Programming Lang:   Perl
Description:A ZeroMQ2 wrapper for Perl

The ZeroMQ module is a wrapper of the 0MQ message passing library for Perl.
It is a thin wrapper around the C API.

ZeroMQ is an intelligence socket library that acts like a concurrency
framework.  It is faster than TCP for clustered products and supercomputing,
carrying messages across inproc, IPC, TCP and multicast.  It can connect
N-N via fanout, pubsub, pipeline, request-reply, and several other models.


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



ITP: libzeromq-perl -- A ZeroMQ2 wrapper for Perl

2012-05-10 Thread Harlan Lieberman-Berg
Package: wnpp
Severity: wishlist
Owner: Harlan Lieberman-Berg h.liebermanb...@gmail.com

Package name:   libzeromq-perl
Version:0.21
Upstream Author:Daisuke Maki dais...@endeworks.jp
URL:http://search.cpan.org/dist/ZeroMQ/
License:GPL-1+ or Artistic
Programming Lang:   Perl
Description:A ZeroMQ2 wrapper for Perl

The ZeroMQ module is a wrapper of the 0MQ message passing library for Perl.
It is a thin wrapper around the C API.

ZeroMQ is an intelligence socket library that acts like a concurrency
framework.  It is faster than TCP for clustered products and supercomputing,
carrying messages across inproc, IPC, TCP and multicast.  It can connect
N-N via fanout, pubsub, pipeline, request-reply, and several other models.


-- 
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/cabjrnbewydejyf-57khn5wmgwwtbptn_buextm+bl75smcw...@mail.gmail.com



Re: Switch from xz-utils to liblzma in dpkg Pre-Depends

2012-05-10 Thread Guillem Jover
Hi,

On Mon, 2011-05-16 at 06:19:48 +0200, Guillem Jover wrote:
 As I'd like to change a Pre-Depends in dpkg, I'm bringing this up here
 for discussion, as per policy §3.5 and given dpkg “Essential: yes”
 nature.
 
 
 As mentioned in [0] some time ago, I'd like to switch the Pre-Depends
 from the current xz-utils commands to use the liblzma shared library,
 (with a patch provided by Jonathan Nieder). This will reduce the
 pseudo-essential package set and installed size slightly, and it
 will also allow for speed up improvements in the future.
 
   [0] http://lists.debian.org/debian-devel/2010/02/msg00511.html
 
 There might be packages now implicitly depending on xz-utils given
 that it's being pulled by dpkg, but those are buggy and should be
 fixed regardless.
 
 If there's no strong reasons not to, I'd like to include this for
 1.16.1, as part of the dpkg buffer api rework needed for multiarch,
 the conffiledb and automatic checksum generation.

I'll be including this in the upcoming dpkg 1.16.4 release.

thanks,
guillem


-- 
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/20120510162009.ga25...@gaara.hadrons.org



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Uoti Urpala
George Danchev wrote:
 On Thursday 10 May 2012 00:22:11 Uoti Urpala wrote:
  Steve McIntyre wrote:
   No, really - please *do* do this. The fact that a lot of the software
   coming out of RedHat development seems to be designed solely for their
   use, including working around the missing/broken features of RPM, is
   seriously annoying. Configuration belongs in /etc, we know this. We
   have a well-designed and implemented set of tools in Debian based on
   that standard.
  
  Machine-specific configuration belongs in /etc. The default behavior of
  the tools doesn't.
 
 For some reason or another the vast majority of applications have not been 
 following this approach. I'm not going to argue whether is makes sense or not.

The reason why most old applications do not follow that approach (at
least not yet) is pretty obvious: their authors never considered it.
etc-overrides-lib semantics have only become a seriously considered
alternative fairly recently.


  Josh Triplett provided multiple technical reasons why etc-overrides-lib
  is preferable. The ONLY technical reason you gave to prefer traditional
  conffiles was that there already is a set of tools for that in Debian.
 
 Your comparison is misguided.

Which comparison are you talking about? From your following text it
seems you mean the comparison between 1) criticizing Red Hat for
(allegedly) letting packaging system limitations affect the choice of
configuration format and 2) saying Debian should choose its preferred
configuration format based on the limitations of its packaging system,
though that comparison does not appear in the text you quoted.

 The vast majority of applications do not follow etc-overrides-lib (some will 
 never follow) so their configuration files should be properly managed as 
 well, 
 and dpkg's conffiles facility, dpkg's maintainer scripts in conjunction with 
 things like ucf and debconf are quite powerful mechanisms to employ which 
 have 
 been proven for the last decade. Contrast this to the rpm systems trashing 
 locally modified configuration files in /etc/ for the last decade. It is also 
 trivial for the debian packages to contain default configuration files so 
 users 
 and tools could refer to them on demand, and this has nothing to do with the 
 packaging system itself.

You're pretty much just saying that dpkg and helpers like ucf have
implemented better functionality than rpm. I don't see how that's
relevant to the discussion. I don't think it makes the above comparison
any less valid. And generally, I don't think the packaging system issues
would be so difficult that they should have a major influence on what
configuration model to use.

 OTOH, applications following etc-overrides-lib happily run on Debian systems 
 in the way they run on others. It is not like the semantics of separating the 
 default and locally modified configuration files in two directories is some 
 sort 
 of giant invention, never heard of before. It is also trivial to guess that 
 their configuration files could also be managed by calling tools from dpkg's 
 maintainer scripts in order to communicate with the user or provide 
 assistance 

Yes, nobody has brought up reasons why this wouldn't work.



-- 
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/1336668798.2227.58.camel@glyph.nonexistent.invalid



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread David Weinehall
On Wed, May 09, 2012 at 03:47:21PM +0200, Gergely Nagy wrote:
 Tollef Fog Heen tfh...@err.no writes:
 
  ]] Philipp Kern 
 
  You will not, however, get a conffile update prompt when the system
  file changes (e.g. to update your own local copy to incorporate the
  fix).
 
  This is something I'm pondering if we should handle in either a systemd
  trigger or a tool that packages shipping systemd files can call to tell
  the user about any changes.  (Basically a wrapper around ucf, probably.)
 
 Such a tool would certainly be very useful, but doing it right would be
 fairly hard, as far as I see.
 
 And it would require assistance from at least the package maintainer, to
 mark in which versions the unit file under /lib changed, so that it can
 trigger only when appropriate and not on every upgrade.
 
 (And there's possibly other corner cases to consider, but they escape me
 right now..)

if [ file in etc -ot file in /lib ]; then
warn user that updates might be needed
fi


Regards: David
-- 
 /) David Weinehall t...@debian.org /) Rime on my window   (\
//  ~   //  Diamond-white roses of fire //
\)  http://www.acc.umu.se/~tao/(/   Beautiful hoar-frost   (/


-- 
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/20120510171250.ge10...@suiko.acc.umu.se



Directory /boot/console-setup

2012-05-10 Thread Anton Zinoviev
[Please preserve the CC to 672...@bugs.debian.org because I am not 
subscribed to debian-devel.]

First the problem in few words.  The package console-setup needs an 
access to a directory similar to /var very early during the boot process 
- when /var is not yet mounted.  Currently it creates files in the 
directory /etc/console-setup.  As a result when the package is purged it 
is impossible to tell which files in /etc/console-setup are 
automatically generated (so they have to be removed) and which are put 
there by the admin (so we are not permitted to remove them).

One possible solution is to generate the files in a directory named 
/etc/console-setup/.cache and to put a file /etc/console-setup/.cache/README
explaining the purpose of this directory and warning the admin that the 
package is free to remove or overwrite at any time any files in this 
directory.

Please don't complain that this is a policy violation. :) I think at the 
moment there is no solution of the problem without policy violation and 
the packages kbd, console-tools and console-setup have been happily 
doing policy violations regarding /etc since the very first version of 
Debian.

The second solution I propose is to generate the files in a directory 
/boot/console-setup.  After all the whole need of such directory arises 
due to the specifics of the boot process.

Personally, I think I prefer /boot to /etc.

Some additional info: most of the time the package requires only 
read-only access to this directory.  Write-access is required only in 
the following occasions:

1. when the admin is dpkg-reconfiguring the package
2. during the first reboot (but not too early in the boot process) if 
the admin has edited the configuration files of console-setup by hand 
and he has not used the command setupcon --save
3. when the admin uses the command setupcon --save

Anton Zinoviev



-- 
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/20120510164346.gc3...@logic.fmi.uni-sofia.bg



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Marco d'Itri
On May 10, Bjørn Mork bj...@mork.no wrote:

 Agree.  Copying a large set of default policies into /etc just because
 they *can* be overridden is not user friendly.  And it does not make the
 defaults any more configuration either. It just hides important local
 changes and makes it difficult both for the user and the application
 itself to distinguish between defaults and configuration overrides.
Wrong: since you have to copy the whole file to override it, and files 
in /lib have no conffiles handling, after an upgrade you will not know 
what was changed by you and what was changed upstream.
Obviously this is not a problem for Red Hat since they do not support 
upgrades between major releases.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: Bug#672160: Directory /boot/console-setup

2012-05-10 Thread Sven Joachim
On 2012-05-10 18:43 +0200, Anton Zinoviev wrote:

 [Please preserve the CC to 672...@bugs.debian.org because I am not 
 subscribed to debian-devel.]

 First the problem in few words.  The package console-setup needs an 
 access to a directory similar to /var very early during the boot process 
 - when /var is not yet mounted.  Currently it creates files in the 
 directory /etc/console-setup.  As a result when the package is purged it 
 is impossible to tell which files in /etc/console-setup are 
 automatically generated (so they have to be removed) and which are put 
 there by the admin (so we are not permitted to remove them).

 One possible solution is to generate the files in a directory named 
 /etc/console-setup/.cache and to put a file /etc/console-setup/.cache/README
 explaining the purpose of this directory and warning the admin that the 
 package is free to remove or overwrite at any time any files in this 
 directory.

 Please don't complain that this is a policy violation. :) I think at the 
 moment there is no solution of the problem without policy violation and 
 the packages kbd, console-tools and console-setup have been happily 
 doing policy violations regarding /etc since the very first version of 
 Debian.

 The second solution I propose is to generate the files in a directory 
 /boot/console-setup.  After all the whole need of such directory arises 
 due to the specifics of the boot process.

Maybe I'm missing something obvious, but /boot seems to be a very bad
choice for the location, simply because it is not available any earlier
than /var.

Cheers,
   Sven


-- 
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/87sjf87wwe@turtle.gmx.de



Re: Directory /boot/console-setup

2012-05-10 Thread Roger Leigh
On Thu, May 10, 2012 at 07:43:46PM +0300, Anton Zinoviev wrote:
 [Please preserve the CC to 672...@bugs.debian.org because I am not 
 subscribed to debian-devel.]
 
 First the problem in few words.  The package console-setup needs an 
 access to a directory similar to /var very early during the boot process 
 - when /var is not yet mounted.  Currently it creates files in the 
 directory /etc/console-setup.

We created /run for exactly this purpose.  Create /run/console-setup
and put what you need inside there.  You'll need to follow the
advice in http://wiki.debian.org/ReleaseGoals/RunDirectory .
You basically just need to have a Depends on
initscripts (= 2.88dsf-13.3) and you're good to go.  Don't store
megabytes of data in here though, since it's stored in virtual
memory on most systems.


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/20120510174518.gk23...@codelibre.net



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Jean-Christophe Dubacq
On 10/05/2012 19:34, Marco d'Itri wrote:
 On May 10, Bjørn Mork bj...@mork.no wrote:
 
 Agree.  Copying a large set of default policies into /etc just because
 they *can* be overridden is not user friendly.  And it does not make the
 defaults any more configuration either. It just hides important local
 changes and makes it difficult both for the user and the application
 itself to distinguish between defaults and configuration overrides.
 Wrong: since you have to copy the whole file to override it, and files 
 in /lib have no conffiles handling, after an upgrade you will not know 
 what was changed by you and what was changed upstream.
 Obviously this is not a problem for Red Hat since they do not support 
 upgrades between major releases.
 
There are cases where file in /etc overrides only the directives present
in /etc and not the rest. I prefer this way.

-- 
Jean-Christophe Dubacq



signature.asc
Description: OpenPGP digital signature


Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Don Armstrong
On Thu, 10 May 2012, Uoti Urpala wrote:
 You're pretty much just saying that dpkg and helpers like ucf have
 implemented better functionality than rpm. I don't see how that's
 relevant to the discussion.

The reason why it is relevant is because in the etc-overrides-lib
model you are unable to trivially merge local changes with upstream or
packaging changes unless you add additional logic in the postinst to
handle etc-overrides-lib. Having configuration files in /etc and using
ucf or similar enables you to deal with this problem easily.


Don Armstrong

-- 
THERE IS NO GRAVITY THE WORLD SUCKS
 -- Vietnam War Penquin Lighter
http://gallery.donarmstrong.com/clippings/vietnam_there_is_no_gravity.jpg

http://www.donarmstrong.com  http://rzlab.ucr.edu


-- 
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/20120510175506.gx3...@rzlab.ucr.edu



Re: Directory /boot/console-setup

2012-05-10 Thread Sven Joachim
On 2012-05-10 19:45 +0200, Roger Leigh wrote:

 On Thu, May 10, 2012 at 07:43:46PM +0300, Anton Zinoviev wrote:
 [Please preserve the CC to 672...@bugs.debian.org because I am not 
 subscribed to debian-devel.]
 
 First the problem in few words.  The package console-setup needs an 
 access to a directory similar to /var very early during the boot process 
 - when /var is not yet mounted.  Currently it creates files in the 
 directory /etc/console-setup.

 We created /run for exactly this purpose.  Create /run/console-setup
 and put what you need inside there.

AIUI the data is not volatile, and it needs to be read early in the boot
process, that's why /var was not suitable.

Cheers,
   Sven


-- 
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/87havn9b00@turtle.gmx.de



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread George Danchev
On Thursday 10 May 2012 19:53:18 Uoti Urpala wrote:
 George Danchev wrote:
  On Thursday 10 May 2012 00:22:11 Uoti Urpala wrote:
   Steve McIntyre wrote:
No, really - please *do* do this. The fact that a lot of the software
coming out of RedHat development seems to be designed solely for
their use, including working around the missing/broken features of
RPM, is seriously annoying. Configuration belongs in /etc, we know
this. We have a well-designed and implemented set of tools in Debian
based on that standard.
   
   Machine-specific configuration belongs in /etc. The default behavior of
   the tools doesn't.
  
  For some reason or another the vast majority of applications have not
  been following this approach. I'm not going to argue whether is makes
  sense or not.
 
 The reason why most old applications do not follow that approach (at
 least not yet) is pretty obvious: their authors never considered it.
 etc-overrides-lib semantics have only become a seriously considered
 alternative fairly recently.

Implying that a fairly simplistic semantics of providing two distinct 
directories with configuration files, has never been considered for the last 40 
years and painting it as a revolution in the application development is naive, 
at best.

   Josh Triplett provided multiple technical reasons why etc-overrides-lib
   is preferable. The ONLY technical reason you gave to prefer traditional
   conffiles was that there already is a set of tools for that in
   Debian.
  
  Your comparison is misguided.
 
 Which comparison are you talking about? From your following text it
 seems you mean the comparison between 1) criticizing Red Hat for
 (allegedly) letting packaging system limitations affect the choice of
 configuration format and 2) saying Debian should choose its preferred
 configuration format based on the limitations of its packaging system,

Let me tell you a secret: Debian should not decide whether or not tens of 
thousand of applications follow a particular style of reading their 
configuration files. This is in the realm of application development and anyone 
should be free to choose their style. It would be a segregation if Debian bans 
applications simply because their style of reading configuration files looks 
funny... and Debian does not segregate. This is not a secret.

 though that comparison does not appear in the text you quoted.

  The vast majority of applications do not follow etc-overrides-lib (some
  will never follow) so their configuration files should be properly
  managed as well, and dpkg's conffiles facility, dpkg's maintainer
  scripts in conjunction with things like ucf and debconf are quite
  powerful mechanisms to employ which have been proven for the last
  decade. Contrast this to the rpm systems trashing locally modified
  configuration files in /etc/ for the last decade. It is also trivial for
  the debian packages to contain default configuration files so users and
  tools could refer to them on demand, and this has nothing to do with the
  packaging system itself.
 
 You're pretty much just saying that dpkg and helpers like ucf have
 implemented better functionality than rpm. I don't see how that's
 relevant to the discussion. I don't think it makes the above comparison
 any less valid. And generally, I don't think the packaging system issues
 would be so difficult that they should have a major influence on what
 configuration model to use.

What I was saying, I already wrote. Retelling it wrong is useless.

  OTOH, applications following etc-overrides-lib happily run on Debian
  systems in the way they run on others. It is not like the semantics of
  separating the default and locally modified configuration files in two
  directories is some sort of giant invention, never heard of before. It
  is also trivial to guess that their configuration files could also be
  managed by calling tools from dpkg's maintainer scripts in order to
  communicate with the user or provide assistance
 
 Yes, nobody has brought up reasons why this wouldn't work.

Now, the hard work remains: teach all applcations out there to follow the etc-
overrides-lib _semantics_. Sure, thing, I'm thrilled, at all.

-- 
pub 4096R/0E4BD0AB people.fccf.net/danchev/key pgp.mit.edu


-- 
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/201205102103.19021.danc...@spnet.net



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Jean-Christophe Dubacq
On 10/05/2012 19:55, Don Armstrong wrote:
 On Thu, 10 May 2012, Uoti Urpala wrote:
 You're pretty much just saying that dpkg and helpers like ucf have
 implemented better functionality than rpm. I don't see how that's
 relevant to the discussion.
 
 The reason why it is relevant is because in the etc-overrides-lib
 model you are unable to trivially merge local changes with upstream or
 packaging changes unless you add additional logic in the postinst to
 handle etc-overrides-lib. Having configuration files in /etc and using
 ucf or similar enables you to deal with this problem easily.
 
 
 Don Armstrong
 
I do not know about trivially merging changes in the etc-overrides-lib
model, but in the current model, I am presented with the dpkg prompt
about conffiles for some programs where I added (or changed) only one
line (off the top of my head: only the servers list in roundcube, for
example), and dpkg does not propose to merge the two files: I am either
stuck with keeping my old file, taking the new, or using a shell. All
these things are interactive and prevent unattended upgrades without
disruption of services.

When the merging possibilities of dpkg will have been enhanced, I may
reconsider, but currently, I prefer the
etc-overrides-lib-only-where-present as superior to the current state.

Sincerly,
-- 
Jean-Christophe Dubacq



signature.asc
Description: OpenPGP digital signature


Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Thomas Goirand
On 05/10/2012 12:14 AM, Uoti Urpala wrote:
 Not having the files in /etc by default does have technical advantages.
 It's easier to see what is local non-default configuration. Original
 default file is always available in a known location (and very easy to
 revert to, temporarily for testing or permanently).
Actually, what you are talking about is a very good candidate
for /usr/share/doc/package/examples, not at all for a weird
things with config files in /lib overridden by /etc, which really,
isn't the Debian way.

On 05/10/2012 12:14 AM, Uoti Urpala wrote:
 which in most
 cases is more maintainable than the 3-way merging required by
 traditional conffiles.
   

The 3-way merging at least prompts you that something is changing
so you have a chance to update your config file by hand the way you
think is best. If the package updates the config file in /lib without
prompting, then potentially, the user will not be aware of the
change.

In a RPM based environment, this behavior is fine, because that's
the RPM way to never prompt anything to the user (see *.rpmsave
or *.rpmnew files). But this is exactly why I don't like RPM systems!

On 05/10/2012 12:14 AM, Uoti Urpala wrote:
 It's also preferable to avoid unnecessarily differing from the setup
 used on other distros.
   

IMO, it's preferable to do things the same way on all packages
in Debian. I don't see why systemd should be different from any
other package we have in the Debian archve. If systemd can't
adapt to our ways to do things, with configuration files in /etc,
then I'm betting that many will complain (IMO rightly) about
policy violation.

(just my 2 cents, as I still have on my todo to try systemd...)

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/4fac0ab0.8040...@debian.org



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Thomas Goirand
On 05/10/2012 04:52 AM, Steve McIntyre wrote:
 No, really - please *do* do this. The fact that a lot of the software
 coming out of RedHat development seems to be designed solely for their
 use, including working around the missing/broken features of RPM, is
 seriously annoying. Configuration belongs in /etc, we know this. We
 have a well-designed and implemented set of tools in Debian based on
 that standard.
   
I agree 100% with the above.

On 05/10/2012 05:22 AM, Uoti Urpala wrote:
 Josh Triplett provided multiple technical reasons why etc-overrides-lib
 is preferable. The ONLY technical reason you gave to prefer traditional
 conffiles was that there already is a set of tools for that in Debian.
   
No, it's because this way, I am warned by the package manager of a change
on the default file, and I can merge by hand when I see it. Otherwise, you
are silently changing the default, and potentially, I will miss the new
options.

Besides this, configuration files in /etc is written in the stones of
our bible^Wpolicy-manual.

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/4fac0c9d.2070...@debian.org



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Uoti Urpala
Marco d'Itri wrote:
 On May 10, Bjørn Mork bj...@mork.no wrote:
 
  Agree.  Copying a large set of default policies into /etc just because
  they *can* be overridden is not user friendly.  And it does not make the
  defaults any more configuration either. It just hides important local
  changes and makes it difficult both for the user and the application
  itself to distinguish between defaults and configuration overrides.

 Wrong:

You're not addressing what he said about the generally desirable /etc
semantics at all, only talking about what current Debian tools would do
without modifications. Do you have a reason to oppose beyond this would
need some tool changes?

  since you have to copy the whole file to override it,

Wrong: as mentioned in this thread before, one of the advantages of the
etc-overrides-lib model is the option of having a file in /etc that
first includes the one in /lib, then overrides just one particular
value. This allows handling more updates without needing manual changes,
as you can automatically pick up other updated values while keeping the
override, without needing to do 3-way merges.

 and files 
 in /lib have no conffiles handling, after an upgrade you will not know 
 what was changed by you and what was changed upstream.

IIRC dpkg does not store the original file (while ucf does), so
currently you always lose track of what was changed by you unless you
make a copy manually (or with extra tools like etckeeper). Anyway, this
is about the specifics of what is supported by Debian tools now, not
about any intrinsic problem with the behavior.

 Obviously this is not a problem for Red Hat since they do not support 
 upgrades between major releases.

Why would this cause problems for Debian, except at most needing some
changes to tools to better support this case? Or do you think
implementing that would be hard?



-- 
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/1336674656.2227.72.camel@glyph.nonexistent.invalid



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Raphael Hertzog
On Thu, 10 May 2012, David Weinehall wrote:
 On Wed, May 09, 2012 at 03:47:21PM +0200, Gergely Nagy wrote:
  Such a tool would certainly be very useful, but doing it right would be
  fairly hard, as far as I see.
  
  And it would require assistance from at least the package maintainer, to
  mark in which versions the unit file under /lib changed, so that it can
  trigger only when appropriate and not on every upgrade.
  
  (And there's possibly other corner cases to consider, but they escape me
  right now..)
 
 if [ file in etc -ot file in /lib ]; then
   warn user that updates might be needed
 fi

That's not enough. The timestamp of the file in a package is unrelated
to the time of its last installation.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Get the Debian Administrator's Handbook:
→ http://debian-handbook.info/get/


-- 
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/20120510184745.ge8...@rivendell.home.ouaza.com



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Thomas Goirand
On 05/10/2012 07:01 AM, Fernando Lemos wrote:
 I've seen people mention that the way udev and systemd do config files
 is really motivated by limitations in RH's packaging tools. Maybe
 that's the case, maybe not.
It's *not*! It's a difference in *policy*. :)

RH's policy is that you should never prompt the user for something
when installing a package. We have debconf, ucf, etc. because we
want the user to be prompted *if* he wants to (and I personally do
want to, so I don't run in non-interactive mode).

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/4fac0d9f.5070...@debian.org



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Thomas Goirand
On 05/10/2012 07:13 AM, Uoti Urpala wrote:
 I have given technical reasons to prefer etc-overrides-lib semantics.
 You failed to address any of the reasons I or others have given. Instead
 you started by bashing Red Hat, and then gave as your only reason to
 prefer traditional conffile semantics the same motivation you had just
 alleged Red Hat of having and had bashed them for. If you post
 fallacious nonsense, there usually isn't much more to say to that except
 point out that it IS fallacious nonsense.

 If you want to have a constructive discussion, then try to explain what
 you think is wrong with the arguments for etc-overrides-libs, or what
 technical advantages you think the traditional conffile model has which
 would be more important.
   
Come on!

Don't assume that people are bad, or have bad intend. That's how
discussions are going the wrong way.

Probably, Steve assumed that you understood the reasons why he
liked the *Debian* way, without much need to explain what's
written in the stones of our policy-manual...

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/4fac0e79.4090...@debian.org



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Peter Samuelson

[Uoti Urpala]
 The reason why most old applications do not follow that approach (at
 least not yet) is pretty obvious: their authors never considered it.
 etc-overrides-lib semantics have only become a seriously considered
 alternative fairly recently.

If I'm not mistaken, I first saw this sort of arrangement in CDE, circa
1998.  Maybe that's considered recent.  Sure, nobody's heard of it
anymore, but it was pretty widespread back in the day.

There were a lot of things I didn't like about CDE, and this was one of
them.

 From your following text it seems you mean the comparison between 1)
 criticizing Red Hat for (allegedly) letting packaging system
 limitations affect the choice of configuration format and 2) saying
 Debian should choose its preferred configuration format based on the
 limitations of its packaging system

That's ... a misleading way of looking at it.  There is a tension
between minor upgrades and major upgrades.

1. Major upgrades: default config may change noticeably, and a custom
   config forked from the default may need to be updated to work
   optimally or even correctly.

- Red Hat apparently has no reason to care about this case, if they
  don't support major upgrades at all.

- This is where copy to /etc can be bad.  It's not trivial for
  the packaging to determine that the local copy needs attention,
  either to handle it automatically, or to alert the local admin.

2. Minor upgrades, or reinstall: default config rarely changes, and
   does not change incompatibly.  E.g., a security upload.

- Red Hat _does_ need to support this case.

- This is where copy to /etc works.  It prevents the packaging
  system from overwriting your local config changes.

- Apparently RPM packaging and tooling has a history of overwriting
  local config changes.  I don't know the details.  But if true,
  copy to /etc would seem like an attractive workaround.

- However, Debian's packaging has had policy and tooling to avoid
  overwriting local changes for about 20 years, so it should not be
  surprising that we don't see much upside here, only the downside
  (mentioned in point 1).


-- 
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/20120510190217.gc2...@p12n.org



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Uoti Urpala
Don Armstrong wrote:
 On Thu, 10 May 2012, Uoti Urpala wrote:
  You're pretty much just saying that dpkg and helpers like ucf have
  implemented better functionality than rpm. I don't see how that's
  relevant to the discussion.
 
 The reason why it is relevant is because

I don't see how the following would make this comparison with rpm relevant.

  in the etc-overrides-lib
 model you are unable to trivially merge local changes with upstream or
 packaging changes unless you add additional logic in the postinst to
 handle etc-overrides-lib. Having configuration files in /etc and using
 ucf or similar enables you to deal with this problem easily.

Yes, you do need some tool improvements to be able to alert the user
about changes. This has been mentioned before. I don't think this would
be hard to add though, and not overall harder than what is already
implemented for traditional conffile handling; this is not a fundamental
problem with the etc-overrides-lib model.

And as also mentioned before, the include option should reduce the
number of cases where you need to do 3-way merging.



-- 
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/1336675601.2227.84.camel@glyph.nonexistent.invalid



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Don Armstrong
On Thu, 10 May 2012, Jean-Christophe Dubacq wrote:
 I do not know about trivially merging changes in the
 etc-overrides-lib model, but in the current model, I am presented
 with the dpkg prompt about conffiles for some programs where I added
 (or changed) only one line (off the top of my head: only the servers
 list in roundcube, for example), and dpkg does not propose to merge
 the two files: I am either stuck with keeping my old file, taking
 the new, or using a shell.

This is because dpkg's conffile support currently does not do what ucf
can do. Presumably this will be addressed eventually, but packages
where this will be a significant problem are often already using ucf
or similar.

 All these things are interactive and prevent unattended upgrades
 without disruption of services.

It's basically not possible to have a non-interactive unattended
upgrade without the possibility of interruptions of service without
outside input as to the decisions that the package manager should be
making. ucf and similar gets us closer, but at the end of the day,
it's impossible to handle all possible configuration changes.


Don Armstrong

-- 
Cheop's Law: Nothing ever gets built on schedule or within budget.
 -- Robert Heinlein _Time Enough For Love_ p242

http://www.donarmstrong.com  http://rzlab.ucr.edu


-- 
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/20120510191207.gb3...@rzlab.ucr.edu



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Jean-Christophe Dubacq
On 10/05/2012 21:12, Don Armstrong wrote:
 On Thu, 10 May 2012, Jean-Christophe Dubacq wrote:
 I do not know about trivially merging changes in the
 etc-overrides-lib model, but in the current model, I am presented
 with the dpkg prompt about conffiles for some programs where I added
 (or changed) only one line (off the top of my head: only the servers
 list in roundcube, for example), and dpkg does not propose to merge
 the two files: I am either stuck with keeping my old file, taking
 the new, or using a shell.
 
 This is because dpkg's conffile support currently does not do what ucf
 can do. Presumably this will be addressed eventually, but packages
 where this will be a significant problem are often already using ucf
 or similar.
 
 All these things are interactive and prevent unattended upgrades
 without disruption of services.
 
 It's basically not possible to have a non-interactive unattended
 upgrade without the possibility of interruptions of service without
 outside input as to the decisions that the package manager should be
 making. ucf and similar gets us closer, but at the end of the day,
 it's impossible to handle all possible configuration changes.
 
I meant: I test on one server, then replicate the upgrade on other
servers. dpkg is lacking in the merge department, and the fact that
there is no good possibility to keep one's local changes and only those
is simply not helping the user.

Sincerly,
-- 
Jean-Christophe Dubacq



signature.asc
Description: OpenPGP digital signature


etc-overrides-non-etc configuration file model [Re: RFC: OpenRC as Init System for Debian]

2012-05-10 Thread Don Armstrong
On Thu, 10 May 2012, Uoti Urpala wrote:
 Don Armstrong wrote: 
  The reason why it is relevant is because [...]
 
 I don't see how the following would make this comparison with rpm
 relevant.

This is debian-devel, and we're talking about configuration file
handling in Debian, which makes ucf and dpkg relevant.

  Having configuration files in /etc and using ucf or similar
  enables you to deal with this problem easily.
 
 Yes, you do need some tool improvements to be able to alert the user
 about changes.

Right. So for every package which does this, you have to check to see
whether a configuration file in /etc has had it's corresponding
non-etc configuration file changed, and then offer to merge them
together.

Thus, when you fully implement etc-overrides-non-etc, you have to
handle configuration files in non-etc *exactly* as if they were in etc
to start with. [Lets not even start with trying to figure out how you
would handle deleting a non-etc configuration file when there's a
difference between a non-existent file and an empty one.]

So there's basically no advantage to etc-overrides-non-etc unless one
hasn't bothered to implement proper configuration file handling.


Don Armstrong

-- 
Your village called.
They want their idiot back.
 -- xkcd http://xkcd.com/c23.html

http://www.donarmstrong.com  http://rzlab.ucr.edu


-- 
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/20120510192430.gc3...@rzlab.ucr.edu



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Uoti Urpala
George Danchev wrote:
 On Thursday 10 May 2012 19:53:18 Uoti Urpala wrote:
  The reason why most old applications do not follow that approach (at
  least not yet) is pretty obvious: their authors never considered it.
  etc-overrides-lib semantics have only become a seriously considered
  alternative fairly recently.
 
 Implying that a fairly simplistic semantics of providing two distinct 
 directories with configuration files, has never been considered for the last 
 40 
 years and painting it as a revolution in the application development is 
 naive, 
 at best.

Someone certainly has considered it during the last 40 years. But most
people creating applications did not consider it when deciding the
default semantics of their application. Do you really want to seriously
argue this?

Your remark about painting it as a revolution seems to be completely
made up.


  configuration format and 2) saying Debian should choose its preferred
  configuration format based on the limitations of its packaging system,
 
 Let me tell you a secret: Debian should not decide whether or not tens of 
 thousand of applications follow a particular style of reading their 
 configuration files. This is in the realm of application development and 
 anyone 
 should be free to choose their style. It would be a segregation if Debian 
 bans 
 applications simply because their style of reading configuration files looks 
 funny... and Debian does not segregate. This is not a secret.

Did you read what I was originally replying to? It talked about
symlinking the /lib and /etc directories to the same one. Debian would
not ban the application, but it _was_ about overriding the upstream
choice of configuration model.


  You're pretty much just saying that dpkg and helpers like ucf have
  implemented better functionality than rpm. I don't see how that's
  relevant to the discussion. I don't think it makes the above comparison
  any less valid. And generally, I don't think the packaging system issues
  would be so difficult that they should have a major influence on what
  configuration model to use.
 
 What I was saying, I already wrote. Retelling it wrong is useless.

If you had some other point, it wasn't clear. And your reply certainly
does not clarify anything.

If you still want to reply, try to include more factual content or
arguments.


-- 
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/1336676978.2227.99.camel@glyph.nonexistent.invalid



Re: etc-overrides-non-etc configuration file model [Re: RFC: OpenRC as Init System for Debian]

2012-05-10 Thread Gergely Nagy
Don Armstrong d...@debian.org writes:

 On Thu, 10 May 2012, Uoti Urpala wrote:
 Don Armstrong wrote: 
  The reason why it is relevant is because [...]
 
 I don't see how the following would make this comparison with rpm
 relevant.

 This is debian-devel, and we're talking about configuration file
 handling in Debian, which makes ucf and dpkg relevant.

  Having configuration files in /etc and using ucf or similar
  enables you to deal with this problem easily.
 
 Yes, you do need some tool improvements to be able to alert the user
 about changes.

 Right. So for every package which does this, you have to check to see
 whether a configuration file in /etc has had it's corresponding
 non-etc configuration file changed, and then offer to merge them
 together.

FWIW, /etc/default/* and /etc/$package/conf.d/* and similar already do
something *very* close to what etc-overrides-non-etc does. To the point
that changing a file under /etc/default, or adding a snippet to conf.d/
can break just as well when the underlying default changes as if that
upstream happened to be outside of /etc.

We do not handle that case either, and I don't see how the default being
outside of /etc would be any different. Except it's easier to follow,
since the default is never modified by the admin, while if it's in /etc
too, like in plenty of cases in the archive, both can change, and we end
up with even scarier situations that can't be resolved sanely.

 So there's basically no advantage to etc-overrides-non-etc unless one
 hasn't bothered to implement proper configuration file handling.

Then we already have a problem, because the conf.d/ and default stuff
suffer from the same problems, and they're used widely all over the
place.

-- 
|8]


-- 
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/87vck3de3i@luthien.mhp



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread George Danchev
On Thursday 10 May 2012 21:46:41 Uoti Urpala wrote:
 Don Armstrong wrote:
  On Thu, 10 May 2012, Uoti Urpala wrote:
   You're pretty much just saying that dpkg and helpers like ucf have
   implemented better functionality than rpm. I don't see how that's
   relevant to the discussion.
  
  The reason why it is relevant is because
 
 I don't see how the following would make this comparison with rpm relevant.

It was a comparison of the packaging system facilities to handle upgrades of 
the configuration files of the applications. This was initially started by you 
as a misguided comparison between etc-overrides-lib (apples) vs. dpkg conffiles 
(oranges). Basically you're mixing up packaging system facilities to handle 
upgrades/transitions of application configuration files with the styles of 
applications reading their own configuration files.

   in the etc-overrides-lib
  
  model you are unable to trivially merge local changes with upstream or
  packaging changes unless you add additional logic in the postinst to
  handle etc-overrides-lib. Having configuration files in /etc and using
  ucf or similar enables you to deal with this problem easily.
 
 Yes, you do need some tool improvements to be able to alert the user
 about changes. This has been mentioned before. I don't think this would

You need to at least start reading some man-pages (a good start would be 
ucf(1), ucfr(1), ucfq(1), debconf-devel(7)) before keep jamming suggestion 
like improvements to be able to alert the user about changes. This is 
already there, and has been there for a long time, as also mentioned before. 
I'm pretty sure that merging techniques could be made even more smarter or, 
but alerting the user functionality has been there for a long time already.

 be hard to add though, and not overall harder than what is already
 implemented for traditional conffile handling; this is not a fundamental
 problem with the etc-overrides-lib model.
 
 And as also mentioned before, the include option should reduce the
 number of cases where you need to do 3-way merging.

You don't seem to understand that style of reading of configuration files of 
the 
applications is in the realm of the applications themselves and packaging 
systems facilities which help handling upgrades of these application 
configuration files can not frivolously add include or any other convenient 
option directives you are suggesting to these application configuration files.

-- 
pub 4096R/0E4BD0AB people.fccf.net/danchev/key pgp.mit.edu


-- 
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/201205102303.37863.danc...@spnet.net



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread David Weinehall
On Fri, May 11, 2012 at 02:44:45AM +0800, Thomas Goirand wrote:
 On 05/10/2012 04:52 AM, Steve McIntyre wrote:
  No, really - please *do* do this. The fact that a lot of the software
  coming out of RedHat development seems to be designed solely for their
  use, including working around the missing/broken features of RPM, is
  seriously annoying. Configuration belongs in /etc, we know this. We
  have a well-designed and implemented set of tools in Debian based on
  that standard.

 I agree 100% with the above.
 
 On 05/10/2012 05:22 AM, Uoti Urpala wrote:
  Josh Triplett provided multiple technical reasons why etc-overrides-lib
  is preferable. The ONLY technical reason you gave to prefer traditional
  conffiles was that there already is a set of tools for that in Debian.

 No, it's because this way, I am warned by the package manager of a change
 on the default file, and I can merge by hand when I see it. Otherwise, you
 are silently changing the default, and potentially, I will miss the new
 options.
 
 Besides this, configuration files in /etc is written in the stones of
 our bible^Wpolicy-manual.

Has anyone argued for having the configuration files anywhere else?
It's all in the semantics of course, but to me, the configuration files
are the files that the administrator changes to change a configuration.
The files that go in /lib are the defaults.  If the admin wants to
override something they do so in /etc, just like before.

If the old file in /lib isn't equal to the new file being installed to
/lib, and there's a user supplied file in /etc rather than just the
default (which would only include the version in lib), then prompt the
user.  If the user is running a non-interactive upgrade, fire off an
e-mail or something.  For any major changes to the /lib files (stuff
that are likely to trigger user actions), NEWS.Debian should of course,
as usual, contain a heads up.

Just because something isn't supported currently in our tools doesn't
make it impossible to support it.  And debian-policy isn't set in stone.
Otherwise it wouldn't have last been revised in February 2012 :)


Regards, David Weinehall
-- 
 /) David Weinehall t...@debian.org /) Rime on my window   (\
//  ~   //  Diamond-white roses of fire //
\)  http://www.acc.umu.se/~tao/(/   Beautiful hoar-frost   (/


-- 
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/20120510200439.gf10...@suiko.acc.umu.se



Re: Bug#672160: Directory /boot/console-setup

2012-05-10 Thread Anton Zinoviev
On Thu, May 10, 2012 at 07:45:21PM +0200, Sven Joachim wrote:
 
 Maybe I'm missing something obvious, but /boot seems to be a very bad
 choice for the location, simply because it is not available any earlier
 than /var.

Ah, you are right.

So it seems only /etc is an option. Thanks.

Anton Zinoviev


-- 
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/20120510191339.ga8...@debian.lan



Re: etc-overrides-non-etc configuration file model [Re: RFC: OpenRC asInit System for Debian]

2012-05-10 Thread Uoti Urpala
Don Armstrong wrote:
 On Thu, 10 May 2012, Uoti Urpala wrote:
  I don't see how the following would make this comparison with rpm
  relevant.
 
 This is debian-devel, and we're talking about configuration file
 handling in Debian, which makes ucf and dpkg relevant.

Yes, ucf and dpkg are relevant to the discussion. However, that doesn't
mean every remark about them would be.


  Yes, you do need some tool improvements to be able to alert the user
  about changes.
 
 Right. So for every package which does this, you have to check to see
 whether a configuration file in /etc has had it's corresponding
 non-etc configuration file changed, and then offer to merge them
 together.

dpkg does not currently offer merge functionality, so if you implement
that you're actually improving over what dpkg can do now. And I believe
supporting this should be a reasonably simple extension to ucf.

 Thus, when you fully implement etc-overrides-non-etc, you have to
 handle configuration files in non-etc *exactly* as if they were in etc
 to start with. [Lets not even start with trying to figure out how you
 would handle deleting a non-etc configuration file when there's a
 difference between a non-existent file and an empty one.]

If the application requires the deletion of a file under /lib to achieve
particular configuration semantics, I think that's clearly a broken
application. I don't see how such brokenness would be any more relevant
with etc-overrides-lib than without.

 So there's basically no advantage to etc-overrides-non-etc unless one
 hasn't bothered to implement proper configuration file handling.

Advantages I mentioned earlier would still be there:
It's easier to see what is local non-default configuration. Original
default file is always available in a known location (and very easy to
revert to, temporarily for testing or permanently). You can use
.include /lib/defaultsfile then override some value, which in most
cases is more maintainable than the 3-way merging required by
traditional conffiles.



-- 
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/1336681268.2227.112.camel@glyph.nonexistent.invalid



Re: Bug#672160: Directory /boot/console-setup

2012-05-10 Thread Ben Hutchings
On Thu, May 10, 2012 at 10:13:39PM +0300, Anton Zinoviev wrote:
 On Thu, May 10, 2012 at 07:45:21PM +0200, Sven Joachim wrote:
  
  Maybe I'm missing something obvious, but /boot seems to be a very bad
  choice for the location, simply because it is not available any earlier
  than /var.
 
 Ah, you are right.
 
 So it seems only /etc is an option. Thanks.

Generally the console has to work even before root is mounted, so
that the user can enter a decryption password if necessary.

What is it that needs to be done before other filesystems are
mounted, but not before root is mounted?

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


-- 
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/20120510204023.ge4...@decadent.org.uk



Re: ITP: libzeromq-perl -- A ZeroMQ2 wrapper for Perl

2012-05-10 Thread Julian Taylor
On 05/10/2012 05:53 PM, Harlan Lieberman-Berg wrote:
 Package: wnpp
 Severity: wishlist
 Owner: Harlan Lieberman-Berg h.liebermanb...@gmail.com
 
 Package name:   libzeromq-perl
 Version:0.21
 Upstream Author:Daisuke Maki dais...@endeworks.jp
 URL:http://search.cpan.org/dist/ZeroMQ/
 License:GPL-1+ or Artistic
 Programming Lang:   Perl
 Description:A ZeroMQ2 wrapper for Perl
 
 The ZeroMQ module is a wrapper of the 0MQ message passing library for Perl.
 It is a thin wrapper around the C API.
 
 ZeroMQ is an intelligence socket library that acts like a concurrency
 framework.  It is faster than TCP for clustered products and supercomputing,
 carrying messages across inproc, IPC, TCP and multicast.  It can connect
 N-N via fanout, pubsub, pipeline, request-reply, and several other models.
 
 

libzeromq-perl is already packaged:
http://packages.qa.debian.org/libz/libzeromq-perl.html



signature.asc
Description: OpenPGP digital signature


Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Ben Hutchings
On Thu, May 10, 2012 at 10:55:06AM -0700, Don Armstrong wrote:
 On Thu, 10 May 2012, Uoti Urpala wrote:
  You're pretty much just saying that dpkg and helpers like ucf have
  implemented better functionality than rpm. I don't see how that's
  relevant to the discussion.
 
 The reason why it is relevant is because in the etc-overrides-lib
 model you are unable to trivially merge local changes with upstream or
 packaging changes unless you add additional logic in the postinst to
 handle etc-overrides-lib. Having configuration files in /etc and using
 ucf or similar enables you to deal with this problem easily.
 
In the etc-overrides-lib model, program defaults and local
configuration are effectively being merged every time the program
starts.  I think that this is generally better than either the
dpkg-conffile model (ask the user to resolve) and the rpm-conffile
model (back up local version).

Maybe users ought to be able to request notification when the
defaults change.  But isn't that true regardless of whether those
defaults are written in the configuration file format or as part
of the program itself?

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


-- 
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/20120510205657.gf4...@decadent.org.uk



Bug#672410: ITP: wherpygo -- player for wherigo cartridges

2012-05-10 Thread Bas Wijnen
Package: wnpp
Severity: wishlist
Owner: Bas Wijnen wij...@debian.org

* Package name: wherpygo
  Version : 0.1
  Upstream Author : Bas Wijnen wij...@debian.org
* URL : None, first publication will be in Debian.
* License : AGPL-3+
  Programming Lang: Python
  Description : player for wherigo cartridges

A sister-site of geocaching.com is wherigo.org. There people can publish 
cartridge files, which can contain tour guides, puzzles (often leading to a 
geocache), or other adventure-style games. The adventures always make use of a 
gps receiver to know your position, and part of the adventure is to actually 
walk around with your legs instead of your keys. A player is required to use 
those cartridges. The site provides a non-free player. There are several other 
players available for different phones.

Wherpygo is another player. It is designed for a netbook. That is not a usual 
platform for the game, because taking a netbook with you is not very 
comfortable. However, the good thing about it is that the interface has more 
features than the default interface. It also includes a debugging mode, which 
can be used by cartridge writers, or players who are stuck.



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



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread gregor herrmann
On Thu, 10 May 2012 20:29:05 +0200, Jean-Christophe Dubacq wrote:

 in the current model, I am presented with the dpkg prompt
 about conffiles for some programs where I added (or changed) only one
 line (off the top of my head: only the servers list in roundcube, for
 example), and dpkg does not propose to merge the two files: I am either
 stuck with keeping my old file, taking the new, or using a shell. 

Right, and I agree that's annoying.

Which means that our handling of conffiles has room for improvement,
and using Config::Model would be a way to do it.

Cheers,
gregor
 
-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Paul McCartney: Say Say Say


signature.asc
Description: Digital signature


Re: Bug#672160: Directory /boot/console-setup

2012-05-10 Thread Anton Zinoviev
On Thu, May 10, 2012 at 09:40:23PM +0100, Ben Hutchings wrote:
 
 Generally the console has to work even before root is mounted, so
 that the user can enter a decryption password if necessary.

Unfortunately, as far as I know currently this doesn't work in 
Debian.  Proper wishlist bug reports have been filled but we 
haven't come yet to a solution that is good for all developers.

Anyway, we may not expect that all initrd images are able to 
configure the console.
 
 What is it that needs to be done before other filesystems are
 mounted, but not before root is mounted?

At least the keyboard has to be configured before fsck runs.

Anton Zinoviev


-- 
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/20120510211603.ga30...@debian.lan



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Uoti Urpala
George Danchev wrote:
 On Thursday 10 May 2012 21:46:41 Uoti Urpala wrote:
  I don't see how the following would make this comparison with rpm relevant.
 
 It was a comparison of the packaging system facilities to handle upgrades of 
 the configuration files of the applications. This was initially started by 
 you 
 as a misguided comparison between etc-overrides-lib (apples) vs. dpkg 
 conffiles 
 (oranges). Basically you're mixing up packaging system facilities to handle

No, I didn't mix those up like that. I think you're referring to my
comment about Josh Triplett providing technical reasons to prefer using
etc-overrides-lib semantics, but Steve McIntyre's reply only mentioning
existing set of tools as a counterargument (which was silly given his
rpm comments). That was comparing the quality of their arguments, not
comparing etc-overrides-lib model vs dpkg functionality.

I didn't initially parse the comparison in your original post that
way, because it doesn't seem like a plausible way to read my original
post.


  Yes, you do need some tool improvements to be able to alert the user
  about changes. This has been mentioned before. I don't think this would
 
 You need to at least start reading some man-pages (a good start would be 
 ucf(1), ucfr(1), ucfq(1), debconf-devel(7)) before keep jamming suggestion 
 like improvements to be able to alert the user about changes. This is 
 already there, and has been there for a long time, as also mentioned before.

I was talking about the etc-overrides-lib case; did you misunderstand
that? Do those tools already have functionality which could be used for
that case as is? If they do, I don't think it has been mentioned.


  And as also mentioned before, the include option should reduce the
  number of cases where you need to do 3-way merging.
 
 You don't seem to understand that style of reading of configuration files of 
 the 
 applications is in the realm of the applications themselves and packaging 
 systems facilities which help handling upgrades of these application 
 configuration files can not frivolously add include or any other convenient 
 option directives you are suggesting to these application configuration files.

Of course I do understand that include directives require application
support. I don't know where you got the idea that such directives would
be added by any automatic packaging helper; this is about how user
modifies configuration (use include+override rather than copy+modify).



-- 
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/1336683674.2227.138.camel@glyph.nonexistent.invalid



Re: Bug#672160: Directory /boot/console-setup

2012-05-10 Thread Yves-Alexis Perez
On ven., 2012-05-11 at 00:16 +0300, Anton Zinoviev wrote:
 On Thu, May 10, 2012 at 09:40:23PM +0100, Ben Hutchings wrote:
  
  Generally the console has to work even before root is mounted, so
  that the user can enter a decryption password if necessary.
 
 Unfortunately, as far as I know currently this doesn't work in 
 Debian.  Proper wishlist bug reports have been filled but we 
 haven't come yet to a solution that is good for all developers. 

What do you mean with “this doesn't work in Debian”? Some people do use
encrypted root and they do have a working console asking for the
passphrase.

Regards,
-- 
Yves-Alexis


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


Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Marco d'Itri
On May 10, Jean-Christophe Dubacq jean-christophe.dub...@ens-lyon.org wrote:

 There are cases where file in /etc overrides only the directives present
 in /etc and not the rest. I prefer this way.
Fine, but they are not the cases which we are discussing.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Don Armstrong
On Thu, 10 May 2012, Ben Hutchings wrote:
 In the etc-overrides-lib model, program defaults and local
 configuration are effectively being merged every time the program
 starts.

This is only the case if the configuration files are fine grained
enough that overrides to a configuration file wouldn't also need to
incorporate upstream/packaging changes. In such a case,
etc-overrides-non-etc makes perfect sense, and you wouldn't normally
distribute a configuration file at all (or if you did, it'd just
contain commented, current default values for commonly altered
values).

In cases where the configuration files are not (or co-mingled with
application logic), then etc-overrides-lib is the same as running dpkg
with --force-conf-old and having the configuration files in /etc.

 Maybe users ought to be able to request notification when the
 defaults change. But isn't that true regardless of whether those
 defaults are written in the configuration file format or as part of
 the program itself?

Sure. I personally think it'd be nice to know if the defaults changed
too when I'd altered them. But doing that is difficult when the
defaults aren't already specified in a configuration file. Handling
configuration files as configuration files isn't that difficult.
 

Don Armstrong

-- 
Physics is like sex. Sure, it may give some practical results, but
that's not why we do it.
 -- Richard Feynman

http://www.donarmstrong.com  http://rzlab.ucr.edu


-- 
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/20120510215207.gf3...@rzlab.ucr.edu



Re: Directory /boot/console-setup

2012-05-10 Thread Steve Langasek
On Thu, May 10, 2012 at 07:43:46PM +0300, Anton Zinoviev wrote:
 First the problem in few words.  The package console-setup needs an 
 access to a directory similar to /var very early during the boot process 
 - when /var is not yet mounted.  Currently it creates files in the 
 directory /etc/console-setup.  As a result when the package is purged it 
 is impossible to tell which files in /etc/console-setup are 
 automatically generated (so they have to be removed) and which are put 
 there by the admin (so we are not permitted to remove them).

I think your premise here is false.  The /etc/console-setup directory is
owned by the console-setup package; there are certain predictable filenames
that will have been created by the package; and any files in this directory
are configuration files for console-setup, whether created by the admin
manually or created by the package.

So it's perfectly permissible under policy for the package to remove these
files on purge.

 One possible solution is to generate the files in a directory named 
 /etc/console-setup/.cache and to put a file /etc/console-setup/.cache/README
 explaining the purpose of this directory and warning the admin that the 
 package is free to remove or overwrite at any time any files in this 
 directory.

 Please don't complain that this is a policy violation. :) I think at the 
 moment there is no solution of the problem without policy violation and 
 the packages kbd, console-tools and console-setup have been happily 
 doing policy violations regarding /etc since the very first version of 
 Debian.

My complaint is that this is excessively ugly.  For persistent variable data
that needs to be available during early boot, even when this is binary data
that the user won't edit, /etc is the normal place to keep it - it's the
creation of a a .cache subdirectory that I object to.

 The second solution I propose is to generate the files in a directory 
 /boot/console-setup.  After all the whole need of such directory arises 
 due to the specifics of the boot process.

 Personally, I think I prefer /boot to /etc.

Not useful for reasons already discussed.
 
 Some additional info: most of the time the package requires only 
 read-only access to this directory.  Write-access is required only in 
 the following occasions:

 1. when the admin is dpkg-reconfiguring the package
 2. during the first reboot (but not too early in the boot process) if 
 the admin has edited the configuration files of console-setup by hand 
 and he has not used the command setupcon --save
 3. when the admin uses the command setupcon --save

Yep, which makes this entirely consistent with storage on the rootfs,
including when the rootfs is read-only by default, and /etc the right place
to put the data.

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


signature.asc
Description: Digital signature


Re: etc-overrides-non-etc configuration file model [Re: RFC: OpenRC as Init System for Debian]

2012-05-10 Thread Don Armstrong
On Thu, 10 May 2012, Gergely Nagy wrote:
 FWIW, /etc/default/* and /etc/$package/conf.d/* and similar already
 do something *very* close to what etc-overrides-non-etc does. To the
 point that changing a file under /etc/default, or adding a snippet
 to conf.d/ can break just as well when the underlying default
 changes as if that upstream happened to be outside of /etc.

That's true. I suspect that much of conf.d/* and default/* are a
consequence of the lack of easy 3-way merge support in dpkg. But
that's kind of an orthogonal issue.

 Except it's easier to follow, since the default is never modified
 by the admin, while if it's in /etc too, like in plenty of cases in
 the archive, both can change, and we end up with even scarier
 situations that can't be resolved sanely.

I'm unable to follow. In the etc-overrides-non-etc case, we would be
increasing the number of cases where we had copies in /etc and in
non-etc.

If things were just in /etc, they wouldn't be in non-etc, and you'd
only have one copy in all cases.


Don Armstrong

-- 
a friend will help you move
a best friend will help you move bodies
but if you have to move your best friend's body
you're on your own
 -- a softer world #242
http://www.asofterworld.com/index.php?id=242

http://www.donarmstrong.com  http://rzlab.ucr.edu


-- 
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/20120510220412.gg3...@rzlab.ucr.edu



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Uoti Urpala
Don Armstrong wrote:
 On Thu, 10 May 2012, Ben Hutchings wrote:
  In the etc-overrides-lib model, program defaults and local
  configuration are effectively being merged every time the program
  starts.

This seems to assume that the program would always read both. systemd
unit files don't work this way; rather, if the file exists in /etc, then
only that version is read. However, you can use .include in the file
to read the default version and then override only parts. So you can
choose which semantics you want for each file you modify.


 This is only the case if the configuration files are fine grained
 enough that overrides to a configuration file wouldn't also need to
 incorporate upstream/packaging changes. In such a case,
 etc-overrides-non-etc makes perfect sense, and you wouldn't normally
 distribute a configuration file at all (or if you did, it'd just
 contain commented, current default values for commonly altered
 values).

I don't see why you'd equate it being reasonable to override just a few
values and there being no need for a distro configuration file at all.
Why would it be rare for a program to need distro configuration but have
some things the user would want to override independently?

 In cases where the configuration files are not (or co-mingled with
 application logic), then etc-overrides-lib is the same as running dpkg
 with --force-conf-old and having the configuration files in /etc.

That's assuming you don't improve the tools; etc-overrides-lib does not
intrinsically imply that. And of course you'd still have the other
advantages which would not be the same.



-- 
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/1336689772.2227.158.camel@glyph.nonexistent.invalid



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread George Danchev
On Friday 11 May 2012 00:01:14 Uoti Urpala wrote:
--cut--
  You need to at least start reading some man-pages (a good start would be
  ucf(1), ucfr(1), ucfq(1), debconf-devel(7)) before keep jamming
  suggestion like improvements to be able to alert the user about
  changes. This is already there, and has been there for a long time, as
  also mentioned before.
 
 I was talking about the etc-overrides-lib case; did you misunderstand
 that? Do those tools already have functionality which could be used for
 that case as is? If they do, I don't think it has been mentioned.

You can even do without any special tools for the applications following etc-
overrides-lib case, since at the end it all boils down to shipping the new 
default configuration file in /lib, and warn them about potential updates. 
There 
shouldn't be any merges involved, since this is the whole point of directory 
separation.

Postinst's 'configure' stage:

* communicate a stock (default) configuration file in /lib
diff /usr/share/doc/foo/foo.conf   /lib/foo.conf (or cksum them)
warn the user if the default (stock) configuration file has changed, send mail.
cp  /usr/share/doc/foo/foo.conf /lib/foo.conf

* optionally handle locally modified /etc/foo.conf... we should leave it alone,
and not mess up with it, since this is a local admin setttings overriding 
/lib/foo.conf as a whole or including it and overriding certain values only, 
but anyway a simple call to ucf for completeness:
ucf /usr/share/doc/foo/foo.conf  /etc/foo.conf
ucfr foo /etc/foo.conf

likewise, postrm, as shown in the man page.

Applications using more than one configuration file of effectively the *same 
type 
and purpose* (since there applications with several configuration files, 
grouped 
on different purposes) on startup would also cause the very same burden to the 
admin mentally exesicing this very same process and guessing which was set 
where and what overrides what. Not entirely pretty.

-- 
pub 4096R/0E4BD0AB people.fccf.net/danchev/key pgp.mit.edu


-- 
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/201205110212.30503.danc...@spnet.net



Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Nikolaus Rath
m...@linux.it (Marco d'Itri) writes:
 On May 10, Bjørn Mork bj...@mork.no wrote:

 Agree.  Copying a large set of default policies into /etc just because
 they *can* be overridden is not user friendly.  And it does not make the
 defaults any more configuration either. It just hides important local
 changes and makes it difficult both for the user and the application
 itself to distinguish between defaults and configuration overrides.

 Wrong: since you have to copy the whole file to override it, and files 
 in /lib have no conffiles handling, after an upgrade you will not know 
 what was changed by you and what was changed upstream.

I think everyone here agrees with that. The interesting case is when
files in /etc/ can either explicitly include the /lib file, or
implicitly override the /lib settings.

It's not clear to me why such a system would be inferior to the current
debian practice.


Best,

   -Nikolaus

-- 
 »Time flies like an arrow, fruit flies like a Banana.«

  PGP fingerprint: 5B93 61F8 4EA2 E279 ABF6  02CF A9AD B7F8 AE4E 425C


-- 
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/87ipg3ioga@vostro.rath.org



Work-needing packages report for May 11, 2012

2012-05-10 Thread wnpp
The following is a listing of packages for which help has been requested
through the WNPP (Work-Needing and Prospective Packages) system in the
last week.

Total number of orphaned packages: 394 (new: 2)
Total number of packages offered up for adoption: 169 (new: 2)
Total number of packages requested help for: 60 (new: 1)

Please refer to http://www.debian.org/devel/wnpp/ for more information.



The following packages have been orphaned:

   audacious-analog-vumeter-plugin (#671890), orphaned 3 days ago
 Description: VU meter plugin for xmms and audacious
 Installations reported by Popcon: 229

   dumpasn1 (#672300), orphaned yesterday
 Installations reported by Popcon: 71

392 older packages have been omitted from this listing, see
http://www.debian.org/devel/wnpp/orphaned for a complete list.



The following packages have been given up for adoption:

   cmph (#671455), offered 6 days ago
 Description: C Minimal Perfect Hashing Library
 Installations reported by Popcon: 29

   tetzle (#671754), offered 4 days ago
 Description: Jigsaw puzzle game
 Installations reported by Popcon: 86

167 older packages have been omitted from this listing, see
http://www.debian.org/devel/wnpp/rfa_bypackage for a complete list.



For the following packages help is requested:

[NEW] spice (#671627), requested 5 days ago
 Description: Simple Protocol for Independent Computing Environment
 Installations reported by Popcon: 3650

   apt-xapian-index (#567955), requested 829 days ago
 Description: maintenance tools for a Xapian index of Debian packages
 Installations reported by Popcon: 55768

   asymptote (#517342), requested 1168 days ago
 Description: script-based vector graphics language inspired by
   MetaPost
 Installations reported by Popcon: 3269

   athcool (#278442), requested 2753 days ago
 Description: Enable powersaving mode for Athlon/Duron processors
 Installations reported by Popcon: 95

   balsa (#642906), requested 228 days ago
 Description: An e-mail client for GNOME
 Installations reported by Popcon: 256

   bastille (#592137), requested 642 days ago
 Description: Security hardening tool
 Installations reported by Popcon: 230

   boinc (#511243), requested 1218 days ago
 Description: BOINC distributed computing
 Installations reported by Popcon: 1831

   cardstories (#624100), requested 381 days ago
 Description: Find out a card using a sentence made up by another
   player
 Installations reported by Popcon: 7

   chromium-browser (#583826), requested 711 days ago
 Description: Chromium browser
 Installations reported by Popcon: 10644

   cryptsetup (#600777), requested 568 days ago
 Description: configures encrypted block devices
 Installations reported by Popcon: 7874

   debtags (#567954), requested 829 days ago
 Description: Enables support for package tags
 Installations reported by Popcon: 2531

   doc-central (#566364), requested 838 days ago
 Description: web-based documentation browser
 Installations reported by Popcon: 213

   elvis (#432298), requested 1767 days ago
 Description: powerful clone of the vi/ex text editor (with X11
   support)
 Installations reported by Popcon: 370

   fbcat (#565156), requested 848 days ago
 Description: framebuffer grabber
 Installations reported by Popcon: 160

   flightgear (#487388), requested 1419 days ago
 Description: Flight Gear Flight Simulator
 Installations reported by Popcon: 851

   freeipmi (#628062), requested 350 days ago
 Description: GNU implementation of the IPMI protocol
 Installations reported by Popcon: 1299

   gnat-4.4 (#539633), requested 1486 days ago
 Description: backport bug fixes from trunk (GCC 4.5)
 Installations reported by Popcon: 1686

   gnat-gps (#496905), requested 1351 days ago
 Description: co-maintainer needed
 Installations reported by Popcon: 441

   gnupg (#660685), requested 80 days ago
 Description: GNU privacy guard - a free PGP replacement
 Installations reported by Popcon: 124065

   golang (#668870), requested 25 days ago
 Installations reported by Popcon: 203

   grub2 (#248397), requested 2922 days ago
 Description: GRand Unified Bootloader
 Installations reported by Popcon: 114071

   hfsprogs (#557892), requested 897 days ago
 Description: mkfs and fsck for HFS and HFS+ file systems
 Installations reported by Popcon: 1163

   hotkey-setup (#483107), requested 1444 days ago
 Description: auto-configures laptop hotkeys
 Installations reported by Popcon: 3956

   irssi-scripts (#663577), requested 59 days ago
 Description: collection of scripts for irssi
 Installations reported 

Re: RFC: OpenRC as Init System for Debian

2012-05-10 Thread Ben Hutchings
On Thu, May 10, 2012 at 09:56:57PM +0100, Ben Hutchings wrote:
 On Thu, May 10, 2012 at 10:55:06AM -0700, Don Armstrong wrote:
  On Thu, 10 May 2012, Uoti Urpala wrote:
   You're pretty much just saying that dpkg and helpers like ucf have
   implemented better functionality than rpm. I don't see how that's
   relevant to the discussion.
  
  The reason why it is relevant is because in the etc-overrides-lib
  model you are unable to trivially merge local changes with upstream or
  packaging changes unless you add additional logic in the postinst to
  handle etc-overrides-lib. Having configuration files in /etc and using
  ucf or similar enables you to deal with this problem easily.
  
 In the etc-overrides-lib model, program defaults and local
 configuration are effectively being merged every time the program
 starts.
[...]

Apparently I was mistaken and that's not what's usually implemented.
So this really does look like a workaround for stupid package
managers.

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


-- 
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/20120511010208.gg4...@decadent.org.uk



Re: upstream shared library major versions

2012-05-10 Thread Brian May
Hello,

Can somebody here please check out my response to the claim ld
prefers linking with the oldest [library version].

I suspect upgrading the major version to major * 1000 may have only
worked due to unrelated reasons.

Thanks
-- 
Brian May br...@microcomaustralia.com.au


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAA0ZO6Cz0TZ=RS=z2ywt+cncermqvtmyqij1+fv7k7bve9c...@mail.gmail.com



Accepted quagga 0.99.21-2 (source all amd64)

2012-05-10 Thread Christian Hammers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 07:53:01 +0200
Source: quagga
Binary: quagga quagga-dbg quagga-doc
Architecture: source amd64 all
Version: 0.99.21-2
Distribution: unstable
Urgency: low
Maintainer: Christian Hammers c...@debian.org
Changed-By: Christian Hammers c...@debian.org
Description: 
 quagga - BGP/OSPF/RIP routing daemon
 quagga-dbg - BGP/OSPF/RIP routing daemon (debug symbols)
 quagga-doc - documentation files for quagga
Closes: 671916
Changes: 
 quagga (0.99.21-2) unstable; urgency=low
 .
   * Renamed babeld.8 to quagga-babeld.8 as it conflicted with the
 original mapage of the babeld package which users might want to
 install in parallel as it is slightly more capable. Closes: #671916
Checksums-Sha1: 
 4a0e2dbd7b280cdccabaca8846f99b4aa060bc3d 1434 quagga_0.99.21-2.dsc
 030c0bd9939e36c2a98ae78001a0828c7359077d 37716 quagga_0.99.21-2.debian.tar.gz
 9027b5482cde32564a031cf2ff74c6b158e8f98f 1708084 quagga_0.99.21-2_amd64.deb
 38e556dabc8537643998fd1a27486f49716ffdc0 1873610 quagga-dbg_0.99.21-2_amd64.deb
 c5b9415d7a635d64cf2379fedf0425a9efb8836f 767358 quagga-doc_0.99.21-2_all.deb
Checksums-Sha256: 
 14022aa3447ea3f26385196708f0845fbfd7d6328961964285ff694fa224fc33 1434 
quagga_0.99.21-2.dsc
 29bac564af9b9bcd9f59abfc5257f2ee69e3dec19761fff3ed4025b6b420fafa 37716 
quagga_0.99.21-2.debian.tar.gz
 e256ede8d245bd290f1a7dcde873bbb7f1753799b9aaccda06cfb0c82b22b503 1708084 
quagga_0.99.21-2_amd64.deb
 c5b49280f57057d82e7c1755aab0ef5669487b52e530f2745ec85e712b61665d 1873610 
quagga-dbg_0.99.21-2_amd64.deb
 b8fc6d5da0082556bef5b9265d0d0d6b5b823b236abd60615d63307e79a44fe6 767358 
quagga-doc_0.99.21-2_all.deb
Files: 
 163cf520ff601a51bfbfb74cfbce17e9 1434 net optional quagga_0.99.21-2.dsc
 29c28a1c01e4391ebb90f4cabf44f9f9 37716 net optional 
quagga_0.99.21-2.debian.tar.gz
 d966f854ef83a2bc9b94aa90795d9a74 1708084 net optional 
quagga_0.99.21-2_amd64.deb
 1b8bf85062171b2daf7021fa561d1381 1873610 debug extra 
quagga-dbg_0.99.21-2_amd64.deb
 61e0d6b7e9a9fe4ba745055654be8d34 767358 net optional 
quagga-doc_0.99.21-2_all.deb

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

iEYEARECAAYFAk+rWtEACgkQkR9K5oahGOZdYwCglXPGkYrtC0QUmiEaroO5YEVC
76sAoLYCAYwHfQGoDCCnmBL+A0/52Kwm
=KVkf
-END PGP SIGNATURE-


Accepted:
quagga-dbg_0.99.21-2_amd64.deb
  to main/q/quagga/quagga-dbg_0.99.21-2_amd64.deb
quagga-doc_0.99.21-2_all.deb
  to main/q/quagga/quagga-doc_0.99.21-2_all.deb
quagga_0.99.21-2.debian.tar.gz
  to main/q/quagga/quagga_0.99.21-2.debian.tar.gz
quagga_0.99.21-2.dsc
  to main/q/quagga/quagga_0.99.21-2.dsc
quagga_0.99.21-2_amd64.deb
  to main/q/quagga/quagga_0.99.21-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/e1ssmha-0006sa...@franck.debian.org



Accepted downtimed 0.5-2 (source amd64)

2012-05-10 Thread Mats Erik Andersson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 06 Apr 2012 21:09:03 +0200
Source: downtimed
Binary: downtimed
Architecture: source amd64
Version: 0.5-2
Distribution: unstable
Urgency: low
Maintainer: Mats Erik Andersson mats.anders...@gisladisker.se
Changed-By: Mats Erik Andersson mats.anders...@gisladisker.se
Description: 
 downtimed  - monitor of downtime, shutdown, and crashes
Changes: 
 downtimed (0.5-2) unstable; urgency=low
 .
   * Update standards version:
 + debian/control: Standard 3.9.3; new base URL for Vcs-Browser.
 + debian/copyright: New URL for Format.
   * debian/rules: Set and export build flags to enable hardening.
   * Improve runtime support for GNU/Hurd:
 + debian/patches/04_support_gnu_hurd.diff: New file.
 + debian/downtimed.init: Use only --exec with start-stop-daemon.
Checksums-Sha1: 
 dd48ad5acf0bca6704f08fcdd66db8c09707727c 1873 downtimed_0.5-2.dsc
 c7e9b3da1575c1ca1b476b5412317d239f05c38b 4974 downtimed_0.5-2.debian.tar.gz
 8bc0566132d88eb87c34b10435a579ec35d649ae 23584 downtimed_0.5-2_amd64.deb
Checksums-Sha256: 
 77645e2c76d1e1cc8c5e88d5c2801ce9d9e722b07b7a54e2c95aa17c880ae015 1873 
downtimed_0.5-2.dsc
 75cd2e3c03bd0ab342daf6e92b635ab14ec3241a146c13d44f2ff2f46fa1cc7b 4974 
downtimed_0.5-2.debian.tar.gz
 c3f8341b4f9cb9c3983f6dd324e3ff9b584a925edf1ad7b89253ef52081cdaec 23584 
downtimed_0.5-2_amd64.deb
Files: 
 4ba4a4d20f5ef0ca64ed644c9c75c2d7 1873 admin extra downtimed_0.5-2.dsc
 6ce4d5582af0b78e8d7e68e4b9dfb1b0 4974 admin extra downtimed_0.5-2.debian.tar.gz
 4298ed898f502e61227f0d95a6e1b541 23584 admin extra downtimed_0.5-2_amd64.deb

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

iQIcBAEBCAAGBQJPq2MiAAoJEDNV9NY7WCHMcv4P/0Vl5XYntnD3r1QHgPBd9zHc
ESnQaJnn+BtjhVFE+pAnqfi/aGFGRNn5haK8ZgHT0/pdh8b0ckrXn5t1MOibka2u
zJmTkczWIjERYInR/Ge4WqV10aS1bimIpxzMfeP7z/rC8b5xeMZoByS8AUlzPpKg
RXy7BOlYetdiCzxQiJQKnxHvCJacpI1dzXfuvQDcJEovnbv6naPIiZYG76wwn8bM
sAoosF8ngz36BPswL3EikxfTFVTGDjtB4lxHq0WvoSYd5SNYs68S0jHyhUb78DC7
3oZd5aq0LZBhiqeMdFbTND9+N327ZbOMgXGbUm4IcNjnknQ61tdnKCQnyyQdZfVH
ET+6/lDXM4DJiJkdZTKEJtOLlo01o8xek2a7ujb/vXb8DmLrmM2dIMWTEshp8hb3
1e3J+xsa4I8mHa+AC9zxBJCwHqDS7T3PCVN1o8Yb0n5BSvkQARVZjllsQXsQf2AE
NF7OZ3kuzj6DW7O5yv9Df6rEI7hI0KlwvNrkGNykKzamBf3D/7ANEq50pOZmLa+W
lnadhOhMdg9J35lIc9ra2TBKl7GeOW9xx5iKMeHne3lefAVpNZzGgOjtLZEVWjdB
pqkRj7bNHqRsYBI2/TozESYUbgty1kx1QVrlJgk8kC81AhXH31uTllkXZUHXJKoP
2NI/3ykaESZsDc1NfJa2
=YEV6
-END PGP SIGNATURE-


Accepted:
downtimed_0.5-2.debian.tar.gz
  to main/d/downtimed/downtimed_0.5-2.debian.tar.gz
downtimed_0.5-2.dsc
  to main/d/downtimed/downtimed_0.5-2.dsc
downtimed_0.5-2_amd64.deb
  to main/d/downtimed/downtimed_0.5-2_amd64.deb


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



Accepted lxappearance-obconf 0.2.0-2 (source i386)

2012-05-10 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 08:33:58 +0200
Source: lxappearance-obconf
Binary: lxappearance-obconf
Architecture: source i386
Version: 0.2.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian LXDE Maintainers lxde-deb...@lists.lxde.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 lxappearance-obconf - LXDE GTK+ theme switcher (plugin)
Closes: 671520 672097
Changes: 
 lxappearance-obconf (0.2.0-2) unstable; urgency=low
 .
   * Adding missing build-depends to libimlib2-dev and openbox-dev
 (Closes: #671520, #672097).
Checksums-Sha1: 
 77ce1c47b80327745db9e026bd03999fe69525c0 1565 lxappearance-obconf_0.2.0-2.dsc
 037b096ffd884a48493e9fe40f58dc6ad62ae775 1912 
lxappearance-obconf_0.2.0-2.debian.tar.xz
 8688ed2e847a5c9ab2b9326c92ccc1218578e640 154822 
lxappearance-obconf_0.2.0-2_i386.deb
Checksums-Sha256: 
 a706c821561f86d32bc145de16971ebbaaa33350d1cb6b1ec91b23dad94a85e1 1565 
lxappearance-obconf_0.2.0-2.dsc
 62eff34a6f691da3ea1d4061f4086e5dbcafb95def659c6f87313942388808c3 1912 
lxappearance-obconf_0.2.0-2.debian.tar.xz
 9f4cb1906dd5d3de2e67e65599363290823ed2387cb279c32e8ffb5bfbffd906 154822 
lxappearance-obconf_0.2.0-2_i386.deb
Files: 
 e79b74881009690d734ab87c7302c738 1565 x11 optional 
lxappearance-obconf_0.2.0-2.dsc
 4edd229d7f9dfe7f78cfbc452e0ddb8b 1912 x11 optional 
lxappearance-obconf_0.2.0-2.debian.tar.xz
 8d3991311dbf68f59d6ce770925e8cbd 154822 x11 optional 
lxappearance-obconf_0.2.0-2_i386.deb

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

iEYEARECAAYFAk+rYbwACgkQ+C5cwEsrK561OQCcD4fvfVk9uuHQp/Qfrdl/NHXG
Z9cAn36VFuuJqlfY2Gj2vSFwwAjb32Bq
=QdTc
-END PGP SIGNATURE-


Accepted:
lxappearance-obconf_0.2.0-2.debian.tar.xz
  to main/l/lxappearance-obconf/lxappearance-obconf_0.2.0-2.debian.tar.xz
lxappearance-obconf_0.2.0-2.dsc
  to main/l/lxappearance-obconf/lxappearance-obconf_0.2.0-2.dsc
lxappearance-obconf_0.2.0-2_i386.deb
  to main/l/lxappearance-obconf/lxappearance-obconf_0.2.0-2_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/e1ssnan-0008qq...@franck.debian.org



Accepted mongodb 1:2.0.5-1 (source i386 amd64)

2012-05-10 Thread Antonin Kral
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 07:05:43 +0200
Source: mongodb
Binary: mongodb mongodb-server mongodb-clients mongodb-dev
Architecture: amd64 i386 source
Version: 1:2.0.5-1
Distribution: unstable
Urgency: low
Maintainer: Antonin Kral a.k...@sh.cvut.cz
Changed-By: Antonin Kral a.k...@sh.cvut.cz
Description: 
 mongodb-clients - object/document-oriented database (client apps)
 mongodb-dev - object/document-oriented database (development)
 mongodb- object/document-oriented database (metapackage)
 mongodb-server - object/document-oriented database (server package)
Changes: 
 mongodb (1:2.0.5-1) unstable; urgency=low
 .
   * New upstream release 2.0.5
 https://jira.mongodb.org/browse/SERVER/fixforversion/11137
Checksums-Sha1: 
 0ba3833d7aa60673679622a06d3a52e44e348e68 1603 mongodb_2.0.5-1.dsc
 bb861b22e999dab19b498b7888f119bc50ad69db 2833440 mongodb_2.0.5.orig.tar.gz
 4fd414de94729ec59fbcd55b86505f31513b801c 22055 mongodb_2.0.5-1.debian.tar.gz
 0f03de2f33359ec6d9d8cf0123207a9fd78ff8d2 10204 mongodb_2.0.5-1_i386.deb
 b893bf4c8afc7fdc953f07f3ab5ccd872331e3b8 4477386 
mongodb-server_2.0.5-1_i386.deb
 08bbacd9765c03cc9a64fde99d274b1d881679f8 17472266 
mongodb-clients_2.0.5-1_i386.deb
 d4161021ced6aca23b7591701d27a8a8cc701405 1903026 mongodb-dev_2.0.5-1_i386.deb
 8461aa4b28233636b61dc75bdf0d2281dbc72f19 10202 mongodb_2.0.5-1_amd64.deb
 9b3d504ba03a499b43022c08e495070259ad84c8 4301256 
mongodb-server_2.0.5-1_amd64.deb
 0e0fc0b102e6b1605b83513d69f6c51938fe490f 16756290 
mongodb-clients_2.0.5-1_amd64.deb
 81c96f6d4984b96b931e714c08832e7ac55d17bf 1905438 mongodb-dev_2.0.5-1_amd64.deb
Checksums-Sha256: 
 fd73b099f6c67d1c349042ac6e06695bfe79d76931c9e7d60202e0b0d006769c 1603 
mongodb_2.0.5-1.dsc
 1d513eb1aa9025add8dc8950c52449a58703eada886f970932fac24c8b4b920d 2833440 
mongodb_2.0.5.orig.tar.gz
 433c8ff70bc9a1ca9d7980a845d3af3130449f2c635ad0a8cd6b044acab52bd8 22055 
mongodb_2.0.5-1.debian.tar.gz
 a673620c146a182bf33a46de1550e772379882d00cfd55ad95d681d8938c8d04 10204 
mongodb_2.0.5-1_i386.deb
 4c959a3074a93ed555b03c3f0f869be021dc2133a68f9515dbdd743364cf5574 4477386 
mongodb-server_2.0.5-1_i386.deb
 3864952dfa196f8eaad4170352cf63399bf93ea06f05b5b119c0e0093e4c9910 17472266 
mongodb-clients_2.0.5-1_i386.deb
 ebffb08e498d9c139c4844618378c90feef7328228de69236ffd6ac6d4636143 1903026 
mongodb-dev_2.0.5-1_i386.deb
 2d34725090a315f72416ae95e2e15240d6cb8007fcaf2c4fcb46334a8e58d7dd 10202 
mongodb_2.0.5-1_amd64.deb
 a1ba756bb0c320c96f5cde515dbdaf69edfaca4a841af3ea541c400cf9b55482 4301256 
mongodb-server_2.0.5-1_amd64.deb
 1e9d313a2f7751684ca555160fa2c596ef9e5a2cde3f74800d83b6517e3533e8 16756290 
mongodb-clients_2.0.5-1_amd64.deb
 1826091cb4970dfdd7625f37faa91cee6179459fee52c72d43890c40a632be87 1905438 
mongodb-dev_2.0.5-1_amd64.deb
Files: 
 eab425ae92d745b359615f9d0f4f23ff 1603 database optional mongodb_2.0.5-1.dsc
 2f2f83e044db3422dc98465d986b37be 2833440 database optional 
mongodb_2.0.5.orig.tar.gz
 aa7bf3c9e73854a7fd0b26f3b4d87f0d 22055 database optional 
mongodb_2.0.5-1.debian.tar.gz
 4fd5f72f29cb79cfeee027e016502d3f 10204 database optional 
mongodb_2.0.5-1_i386.deb
 39c57dfb2f0e000d74b5b6b4503eebc9 4477386 database optional 
mongodb-server_2.0.5-1_i386.deb
 b81b6d1d5cda1a9cfdd147f8649b1210 17472266 database optional 
mongodb-clients_2.0.5-1_i386.deb
 77a50723e85d183caf3e03a4f04c8e54 1903026 libdevel optional 
mongodb-dev_2.0.5-1_i386.deb
 de04923642e4c251a513371fa937e770 10202 database optional 
mongodb_2.0.5-1_amd64.deb
 f31436d11fd5e1a96199cd616c9bd7b4 4301256 database optional 
mongodb-server_2.0.5-1_amd64.deb
 53a2668a1b2608ec977b96cfe68a1842 16756290 database optional 
mongodb-clients_2.0.5-1_amd64.deb
 5eb0f4a91e3339942df62b6d2bb11f95 1905438 libdevel optional 
mongodb-dev_2.0.5-1_amd64.deb

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

iEYEARECAAYFAk+rad8ACgkQluuhBRvyMFrFRQCeLOLHFC+pFaU6lDwWP9dWtmDz
bgMAn19t1uJ3LPA8zymKQAbeg3a97DIE
=mHXA
-END PGP SIGNATURE-


Accepted:
mongodb-clients_2.0.5-1_amd64.deb
  to main/m/mongodb/mongodb-clients_2.0.5-1_amd64.deb
mongodb-clients_2.0.5-1_i386.deb
  to main/m/mongodb/mongodb-clients_2.0.5-1_i386.deb
mongodb-dev_2.0.5-1_amd64.deb
  to main/m/mongodb/mongodb-dev_2.0.5-1_amd64.deb
mongodb-dev_2.0.5-1_i386.deb
  to main/m/mongodb/mongodb-dev_2.0.5-1_i386.deb
mongodb-server_2.0.5-1_amd64.deb
  to main/m/mongodb/mongodb-server_2.0.5-1_amd64.deb
mongodb-server_2.0.5-1_i386.deb
  to main/m/mongodb/mongodb-server_2.0.5-1_i386.deb
mongodb_2.0.5-1.debian.tar.gz
  to main/m/mongodb/mongodb_2.0.5-1.debian.tar.gz
mongodb_2.0.5-1.dsc
  to main/m/mongodb/mongodb_2.0.5-1.dsc
mongodb_2.0.5-1_amd64.deb
  to main/m/mongodb/mongodb_2.0.5-1_amd64.deb
mongodb_2.0.5-1_i386.deb
  to main/m/mongodb/mongodb_2.0.5-1_i386.deb
mongodb_2.0.5.orig.tar.gz
  to main/m/mongodb/mongodb_2.0.5.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact 

Accepted pyaimt 0.8.0.1-3 (source all)

2012-05-10 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 09:22:33 +0200
Source: pyaimt
Binary: pyaimt
Architecture: source all
Version: 0.8.0.1-3
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 pyaimt - AIM transport for Jabber
Closes: 671549 672291
Changes: 
 pyaimt (0.8.0.1-3) unstable; urgency=low
 .
   * Fix watch file to work after recent changes on code.google.com.
   * Fix permissions of /var/lib/pyaimt (Closes: #672291).
   * Remove extra file in clean (Closes: #671549).
   * Bump standards to 3.9.3.
   * Migrate to dh_python2.
   * Init script now understands status command.
Checksums-Sha1: 
 5475aff4b84e4958b385ca98cb6a3f16f72dec53 1976 pyaimt_0.8.0.1-3.dsc
 3ee560130aea9cc71df92e279bfec233b40d5214 9846 pyaimt_0.8.0.1-3.debian.tar.gz
 d189444e011e800cdaa335bfc04ff3d7c12ea52d 141812 pyaimt_0.8.0.1-3_all.deb
Checksums-Sha256: 
 83bc5c71f46a7b30e6b927a40b422ed85b4bb25e092c05a7bf9efec2fe514f22 1976 
pyaimt_0.8.0.1-3.dsc
 672696456a9d4bee30d72dea64f0970ad106eca6b5801101260d49a0dfa1ccd8 9846 
pyaimt_0.8.0.1-3.debian.tar.gz
 ae30ff8dcbff64132f8e0b2bffcc13e3a8aafccb076741dab571d36cafe8ba50 141812 
pyaimt_0.8.0.1-3_all.deb
Files: 
 b43e4c10fa9f1720dcd45ce73a45029b 1976 net extra pyaimt_0.8.0.1-3.dsc
 3e58d60caf26eade18148a7f735ad256 9846 net extra pyaimt_0.8.0.1-3.debian.tar.gz
 5b7073960e8d62f6a48de7b508c0823d 141812 net extra pyaimt_0.8.0.1-3_all.deb

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

iQIcBAEBCAAGBQJPq21FAAoJEGo39bHX+xdNwmUQAMn47kg3g6o3I0vrqVNmkdwy
RI0mL3EP2t7zH3m7a46eSICcSQs7abK7V4nbAzMLQxZNAlxbAvlpsGd8NUvXdXEJ
zCUc51i3WD9nDSujdIU0448Mzs2RYFvowzgFLRQWjMOx6YL1i5uPew/KFbN92Tes
X9VbjrlU9fdiK89yBocYV5v90h+B69K4D7SNVeMKHlYN3DRBhycqMvedrUmOL9wo
PRpwkBUcReTb9aBcuS3W58ipYJdN28jLu1EjT+7OTGO9gznTyIyd5OvOwxCokds5
z32H4WIdr7YO2w1io+vKeOylTXMpBgf2Y2xFPATp5yICZC3fyFPI0zCqlQ3XkOhU
9zuzsA9xLVtVi58TvFrCzK69R+3AU6BKMEZBpIPTrAYoiVOJfVctc4wel+gfEDJy
LyC3ECAVhS86CpWzLkJ+OMR0kL3ODCUnkgkqV6wHwERrogeOVgZAVed6kRazG7x0
cEpDPETPsItIYn982Y9USdUZYd2xbaqmRlmsrq8ljRtXDVzSWXdSwfc6PAbUM63i
OlQPWTwRPBZPJfWUoGq/WYrpaxUbRmjA+l3mCmWCqHnxR2cl65EfGC0sMXOHSxs0
voAByGYCYkA0udOIdBNJtYe/D2j6mixZuWSHIZy+SxiRQsPaHSS9J6oMaXvUq8cK
xnut966iBoOs5WOIg/0t
=aDbZ
-END PGP SIGNATURE-


Accepted:
pyaimt_0.8.0.1-3.debian.tar.gz
  to main/p/pyaimt/pyaimt_0.8.0.1-3.debian.tar.gz
pyaimt_0.8.0.1-3.dsc
  to main/p/pyaimt/pyaimt_0.8.0.1-3.dsc
pyaimt_0.8.0.1-3_all.deb
  to main/p/pyaimt/pyaimt_0.8.0.1-3_all.deb


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



Accepted digitools 1.03-1.1 (source i386)

2012-05-10 Thread Jari Aalto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 05 May 2012 22:15:14 +0300
Source: digitools
Binary: digitools
Architecture: source i386
Version: 1.03-1.1
Distribution: unstable
Urgency: low
Maintainer: Cyril Lacoux (Yack) clac...@easter-eggs.com
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 digitools  - A set of tools to control ASUS Digimatrix embedded hardware
Closes: 664328
Changes: 
 digitools (1.03-1.1) unstable; urgency=low
 .
   * Non-maintainer upload; ACKed by the maintainer, see #664328.
   * Remove deprecated dpatch and upgrade to packaging format 3.0 quilt
 (Closes: #664328).
   * Update to Standards-Version to 3.9.3 and debhelper to 9.
Checksums-Sha1: 
 1ee342797e9f5524cb337c4c6dbc4f4b5280b37f 1053 digitools_1.03-1.1.dsc
 37210c15551fccda879b2f0903adf5fd4a5eeb4a 3806 digitools_1.03-1.1.debian.tar.gz
 c130f3abe52435258fe913bb43cdf4d77e88a1a0 17434 digitools_1.03-1.1_i386.deb
Checksums-Sha256: 
 8247cb136962d0f0fecf6da8a956a15e6dd49c84dfc2522b00c235cd55eda3a8 1053 
digitools_1.03-1.1.dsc
 9379a2108e3fceec7c5604de6a110631694224bd876fc8549bdd3f85943d1dea 3806 
digitools_1.03-1.1.debian.tar.gz
 9440f0b070c14f65f6a05823f7ec51a83ea1da96d47d3ba7c0eede4a76154cf1 17434 
digitools_1.03-1.1_i386.deb
Files: 
 836a1900bad1509b579d2958f2915f92 1053 utils extra digitools_1.03-1.1.dsc
 dfa698a4f8c84a87002c2cf566e788b0 3806 utils extra 
digitools_1.03-1.1.debian.tar.gz
 15a63e2519d184a3904e8fcaa0c7044e 17434 utils extra digitools_1.03-1.1_i386.deb

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

iEYEARECAAYFAk+rfb0ACgkQLARVQsm1Xaxf+gCggm3O10A1zsIqocjDoHFNCG78
SsEAoJzqsZtKL2SyervNu7RfroMhVtD1
=igZS
-END PGP SIGNATURE-


Accepted:
digitools_1.03-1.1.debian.tar.gz
  to main/d/digitools/digitools_1.03-1.1.debian.tar.gz
digitools_1.03-1.1.dsc
  to main/d/digitools/digitools_1.03-1.1.dsc
digitools_1.03-1.1_i386.deb
  to main/d/digitools/digitools_1.03-1.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/e1ssp2z-00072n...@franck.debian.org



Accepted gifsicle 1.67-1 (source amd64)

2012-05-10 Thread Gürkan Sengün
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 08 May 2012 17:57:36 +0200
Source: gifsicle
Binary: gifsicle
Architecture: source amd64
Version: 1.67-1
Distribution: unstable
Urgency: low
Maintainer: Gürkan Sengün gur...@phys.ethz.ch
Changed-By: Gürkan Sengün gur...@phys.ethz.ch
Description: 
 gifsicle   - Tool for manipulating GIF images
Changes: 
 gifsicle (1.67-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 ca7097f71b00bda7a556c9050d75b4cbde255e98 1136 gifsicle_1.67-1.dsc
 9b239cfce086d416017b237743d68d19a3a095f6 259070 gifsicle_1.67.orig.tar.gz
 8c8872ec27d25488e887d94b52184408205f1d40 3051 gifsicle_1.67-1.debian.tar.gz
 2dbdce619f3db17532f997d6479905f61a355d3b 160740 gifsicle_1.67-1_amd64.deb
Checksums-Sha256: 
 137fce4284fd2345ea542af49c9fb13d940df537ca849b9e8d15b5c4fb1ec1c4 1136 
gifsicle_1.67-1.dsc
 9e31299ae3e64de420eac186036be718069e51f7e199d382f33ddcadc7ab23c2 259070 
gifsicle_1.67.orig.tar.gz
 9c6d3bb655b0a1a76cc1b025b3d962394f2c1f63ba68d84f2f2a1f793d9e 3051 
gifsicle_1.67-1.debian.tar.gz
 c1b969dc1d5eb58e235f4e706e4d4a410aff311a1f23007f4e3c287b5cb6d20e 160740 
gifsicle_1.67-1_amd64.deb
Files: 
 b7382dcd74386678415e5697520d12f6 1136 graphics optional gifsicle_1.67-1.dsc
 77fe0eea7844243489e9d87af91168ed 259070 graphics optional 
gifsicle_1.67.orig.tar.gz
 c63d8c49499db485d9eb42fd6ffe49ad 3051 graphics optional 
gifsicle_1.67-1.debian.tar.gz
 aa00532ba995ed6c751429d0e585891a 160740 graphics optional 
gifsicle_1.67-1_amd64.deb

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

iEYEARECAAYFAk+rhKcACgkQwJ4diZWTDt5dTACeI0Tni6AcbMNw+hOaMsgOopYk
k6AAn3CVtwyxawiyQMKuI7aGN57JQaMa
=XRhL
-END PGP SIGNATURE-


Accepted:
gifsicle_1.67-1.debian.tar.gz
  to main/g/gifsicle/gifsicle_1.67-1.debian.tar.gz
gifsicle_1.67-1.dsc
  to main/g/gifsicle/gifsicle_1.67-1.dsc
gifsicle_1.67-1_amd64.deb
  to main/g/gifsicle/gifsicle_1.67-1_amd64.deb
gifsicle_1.67.orig.tar.gz
  to main/g/gifsicle/gifsicle_1.67.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/e1sspum-0003sh...@franck.debian.org



Accepted smarty3 3.1.8-1 (source all)

2012-05-10 Thread Mike Gabriel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 10:44:55 +0200
Source: smarty3
Binary: smarty3
Architecture: source all
Version: 3.1.8-1
Distribution: experimental
Urgency: low
Maintainer: Mike Gabriel mike.gabr...@das-netzwerkteam.de
Changed-By: Mike Gabriel mike.gabr...@das-netzwerkteam.de
Description: 
 smarty3- Template engine for PHP
Closes: 636148 657385 668200
Changes: 
 smarty3 (3.1.8-1) experimental; urgency=low
 .
   * New upstream release (rev. 4611).
   * New package maintainer (closes: #668200).
   * Add watch file (closes: #657385).
   * Add Vcs-* lines to control file.
   * Add README.source that explains how we obtain code from
 upstream SVN. Make sure all upstream source files are
 shipped with the Debian source package (closes: #636148).
Checksums-Sha1: 
 a0649e933eb684c8582dcfd9f6f1c0e257e4e2b4 1893 smarty3_3.1.8-1.dsc
 3050e2c5bd0bcc74a69d56f0b21b78550f707236 1637808 smarty3_3.1.8.orig.tar.gz
 2b6020fdbf5e20ef1c3bf9b56e4af06ed1343bae 2713 smarty3_3.1.8-1.debian.tar.gz
 dfe4a9000b303b83b44a33d7631ae68d8494f283 205122 smarty3_3.1.8-1_all.deb
Checksums-Sha256: 
 0c664de66df408bf9ba0129f1d94d4ed9b246e3fceaa2916ed4048a1b63b106c 1893 
smarty3_3.1.8-1.dsc
 0257a1827e9cb32687dc0726b329987dcc21d9bf161a11ea189e5bc41b53f504 1637808 
smarty3_3.1.8.orig.tar.gz
 010c2e91c4ba3b2d42b23e573d20d250f96fafb35d10f026653bda21a07c 2713 
smarty3_3.1.8-1.debian.tar.gz
 c7f356c7f3feb8d8bf561954cdbebe4dd10facca664de277287742146734565c 205122 
smarty3_3.1.8-1_all.deb
Files: 
 cbb8c706e2e96871742fe2c2025bb72d 1893 web optional smarty3_3.1.8-1.dsc
 c79dff3b5a7250de20093ea7d2bf01b1 1637808 web optional smarty3_3.1.8.orig.tar.gz
 6787843d709e3af6e3e746c2cad44393 2713 web optional 
smarty3_3.1.8-1.debian.tar.gz
 1073f8406d04b4fa02409fb5767621cc 205122 web optional smarty3_3.1.8-1_all.deb

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

iQIcBAEBCAAGBQJPq4QgAAoJEOYZBF3yrHKa/6UQANIHBddpX0V2spBeffpMWJmP
Lhj0iElaYVK4Zj1wvGU1S2GFU7xn/P6EjuVTc6JIF5PfTrfHlh37yyisO7GBjocn
ueqsgi8LBEOGv7IyCLjcBi2JrOdLGN5G17zjuMFG2uiooQyEgN1vbQHzSfSDrnMl
MFXBZtE1pfloaALDadEryHJ0D0M8SwEgncD+hBpOZ3kRfIyaDZGblevJPBcAUPux
sJg1xqDGxV94SXu9xBQ3WjMDztLphwl617NVqyakddBCaiHazZmRjCDu7HAs4oHS
KEFm3a5uzPHTdeZWWrdEUILGX+nBpnQK06X4tyYdStB6BrfrI4pHhUMdE8xx0r3D
Aw4fzkh5XTw9AMZLJZC2AU3dHcgia1kDic7oa+lDUGDc6HIU2PesgaQ0Z0+yKEdm
TFYeDVpjtnGWWFpIsAIWJtx/t+cnoonHBxMFzC+B9SabDRewV+lRC2VMusdTCBq+
fGqts2uzdedRwN5g6uIZWmwph20jdQPSzJHY9qJStm293VUHFttAo3ChWg++lY9o
7hO0ftafJ/sLFboLmc0ivQP8yp5ETLGSYbOc1rXBzhufhChyWBhzPqRlCbgds+th
amkF4nrQdPLDZ1r7GLNFFeKaD+Xge0q4VUeWUoxCZvG8NWeMRdHrCd06rNlChsGs
baKCW9oF4bUz4MWYjMk8
=cBrG
-END PGP SIGNATURE-


Accepted:
smarty3_3.1.8-1.debian.tar.gz
  to main/s/smarty3/smarty3_3.1.8-1.debian.tar.gz
smarty3_3.1.8-1.dsc
  to main/s/smarty3/smarty3_3.1.8-1.dsc
smarty3_3.1.8-1_all.deb
  to main/s/smarty3/smarty3_3.1.8-1_all.deb
smarty3_3.1.8.orig.tar.gz
  to main/s/smarty3/smarty3_3.1.8.orig.tar.gz


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



Accepted node-postgres 0.6.18-1 (source amd64)

2012-05-10 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 May 2012 11:12:40 +0200
Source: node-postgres
Binary: node-pg
Architecture: source amd64
Version: 0.6.18-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 node-pg- PostgreSQL client library for Node
Changes: 
 node-postgres (0.6.18-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 c035b97b91bcc5c526c94168b04354901f80f21d 2051 node-postgres_0.6.18-1.dsc
 75561068a0f483f935d47af1bcb7d5c7f51c4f96 52088 node-postgres_0.6.18.orig.tar.gz
 9bead42439bc2ad978d37351cd3d0d30a18ad596 5166 
node-postgres_0.6.18-1.debian.tar.gz
 3b3e209970791d8413669c17b82a50960307f665 40512 node-pg_0.6.18-1_amd64.deb
Checksums-Sha256: 
 5f31e5922f264cf88edf1d74eecddcd9586929ff626759e013660c6fae4caed4 2051 
node-postgres_0.6.18-1.dsc
 4674db8039bcc5d1cdd3e67bd29670b439fc27b13b2f34ad809fbda96189d3b4 52088 
node-postgres_0.6.18.orig.tar.gz
 f0fc21be56da9a356b67ab085193cff0967dd32b74cfd6ee62b0098f74c193b8 5166 
node-postgres_0.6.18-1.debian.tar.gz
 8ce9b0a1075fb815cac1a96219e665f830c1097ba0eb8010a3658aee2844eaea 40512 
node-pg_0.6.18-1_amd64.deb
Files: 
 536b82780f9ba99aabc666dea6b61537 2051 web optional node-postgres_0.6.18-1.dsc
 f182ec1d9cfdf8004b786739be205ea0 52088 web optional 
node-postgres_0.6.18.orig.tar.gz
 aedbcde43b503c5b87f1a4d8dde80469 5166 web optional 
node-postgres_0.6.18-1.debian.tar.gz
 3fecc176ac487415f921cf69eea55dc3 40512 web optional node-pg_0.6.18-1_amd64.deb

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

iQIcBAEBCgAGBQJPq4rjAAoJECx8MUbBoAEhrsUP/Ay641upVYLI4axvc+83OmVF
eOAwR9JLLMIThim/2gntuJ08M4alPT9OepRfcgsdNi8+Umegx2NzU4IGW1GZQnwi
qbocFtQKEgLphVwLXsOlmWmDz5fjWzaHO84glZObPlFyd+mkgeK7+zKCDZZlj5Ch
W4jPLWmAxAA/nnKrsbc8BTFI0NXlgJe7haRSv+qzyQfmcck5RWSVZmJ+ex1ztGiV
8r9GB7wvq+LpiA7SMLd73yUVljWO7UAwv9QcklI/aFBfv7Yl75XPaTJp/QGxvT1A
yYDHVRE47ps5jkgSrBbP5swymSc4ldefcanPG/HnEXdYBgGzncEndcJZWXSqIi5T
G8RLJ6o1UMTojgFtgnCVLsUPzSegegD1TDQSJ8Ts519gy9mErQRG/Xmc7vt/brpe
v4UXGcrDYc1MjvPFvlSi/59pDLDiHdEULzAcDnB+a0NJA5m1bXyASCMtg+675itK
s9C2rVx0E7Jx4PlZt5pdBRuS6oXWAPtCKZDV6GcAITgDAZ5OMZqV4/G6gU2ZFarV
dE7g8CHc3NUzWBiC1y+WYzMQLcrIAwifrjXE2tcD0x4Uy8/LOtqtzkR/2uuXaBxP
54DalCBwqePHsj6alUcB6MpD09ZCTPvZs7/sq1HdBm7mpNDBd0J9ZBs0tPpOtsha
hLSqJOfo3r7503LwnTuu
=XDWq
-END PGP SIGNATURE-


Accepted:
node-pg_0.6.18-1_amd64.deb
  to main/n/node-postgres/node-pg_0.6.18-1_amd64.deb
node-postgres_0.6.18-1.debian.tar.gz
  to main/n/node-postgres/node-postgres_0.6.18-1.debian.tar.gz
node-postgres_0.6.18-1.dsc
  to main/n/node-postgres/node-postgres_0.6.18-1.dsc
node-postgres_0.6.18.orig.tar.gz
  to main/n/node-postgres/node-postgres_0.6.18.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/e1sspk9-r0...@franck.debian.org



Accepted docbook-slides 3.3.1.0-2 (source all)

2012-05-10 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 11:06:04 +0200
Source: docbook-slides
Binary: docbook-slides
Architecture: source all
Version: 3.3.1.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian XML/SGML Group debian-xml-sgml-p...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 docbook-slides - XML Slides DTD and XSL Stylesheets
Closes: 540564 615283
Changes: 
 docbook-slides (3.3.1.0-2) unstable; urgency=low
 .
   * Add myself as Uploaders
   * debian/control (Vcs-Browser): Fixed location.
 (Uploaders): Removed Mark Johnson, who is probably MIA (closes: #540564).
 Many thanks for your work!
   * Add d/watch file
   * Switch to dpkg-source 3.0 (quilt) format
   * Fix Homepage in d/control. Closes: #615283
Checksums-Sha1: 
 61ce3c3236f0069c6b790a80f70adfdfb0b2df46 2035 docbook-slides_3.3.1.0-2.dsc
 ba64b5ac6fe97e13e9fb24a97478c5dc5e5639d0 4945 
docbook-slides_3.3.1.0-2.debian.tar.gz
 9fddebc8437b66c95be10514c6ec03fea4fdc036 264456 
docbook-slides_3.3.1.0-2_all.deb
Checksums-Sha256: 
 14244eeb2cf668c3e3de94a1093b556cd8620e7be5f626653d2c4fbec91105ac 2035 
docbook-slides_3.3.1.0-2.dsc
 d9ffb0ea8ac0fdbc8d1e91406515f7e0689da79a099b888382f1c3d13ba2971d 4945 
docbook-slides_3.3.1.0-2.debian.tar.gz
 a4c4b57cea0fceffbb4d299d80b956ff334e9276342e9d1f92d720b3b4e22e07 264456 
docbook-slides_3.3.1.0-2_all.deb
Files: 
 b0d0154153abb9f70d17d0708e62ee00 2035 text optional 
docbook-slides_3.3.1.0-2.dsc
 a3cae4123a5065b5533263967cbdf754 4945 text optional 
docbook-slides_3.3.1.0-2.debian.tar.gz
 2389bab11dd2c780a14df8433f7875f1 264456 text optional 
docbook-slides_3.3.1.0-2_all.deb

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

iQIcBAEBAgAGBQJPq4nuAAoJEAFx4YKK4JNFGh8P/2wFLAHQ8nzvSRFjUrNdxJEl
RbYSvLwjCcOzomGvGdgS1VFb75O7wEhnpLOuRgz99JTEvqGW1LSR/FJxNy7tRtND
ZEOPbssYgFo7kJxBL0cWg8vUTAeSF7zoTgCK6iDhL+0BuGSLJwZNEn+WwlP6gagl
d5ZrDPzf/dc/OLeSqaRLvBnPlv3Y0B9seR7c/R509yMseP2xc+oX2C8wCTFuDPVi
oX3EHIpbG5MWa5DiZPWA+z99Qb0JWQtbxWf3HZt4dV+b+zbw6P/QC/eM3Am1Qyr+
1xUZ9XJIgfmSoprsQiGJLyYaJIS4nr1z/La+trU/hPevIvl940zFdw4DWfpudW6Q
hX4XzGoFPqE2fCw9FZ4SCZmBh9m+OfPT1qpI7oxWKOi1Aegx8+Hn7wCohiEhLNW6
IwaAqb1gdxzWy2SwC0MbEN67mj4I6lJRCtf/VQPMooUjpKAu03x/iCqMrGEZeBqm
vvSeBz1GQ7KlqSgYsDTyARTmMZLsZSaPB0EM8vWe63XG0QvzIplxvyVVCtrQc2ra
TdKdFBajxhUu7uOfA8lJbFlTGF+WITWcx/LcE+/Rks8mHyJA3/ntZrcLs0gDYi1s
a10gKux/qBgJGpod7rwfOvtu+4PY6C7MmpHm7+h7ajfY1LfkflSSVgzAPYsnUHkb
TCGFhggLF9zOnIYeXiu+
=iirL
-END PGP SIGNATURE-


Accepted:
docbook-slides_3.3.1.0-2.debian.tar.gz
  to main/d/docbook-slides/docbook-slides_3.3.1.0-2.debian.tar.gz
docbook-slides_3.3.1.0-2.dsc
  to main/d/docbook-slides/docbook-slides_3.3.1.0-2.dsc
docbook-slides_3.3.1.0-2_all.deb
  to main/d/docbook-slides/docbook-slides_3.3.1.0-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/e1sspxm-0004qh...@franck.debian.org



Accepted eterm 0.9.5-4 (source amd64)

2012-05-10 Thread Emanuele Rocca
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 11:05:01 +0200
Source: eterm
Binary: eterm
Architecture: source amd64
Version: 0.9.5-4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Emanuele Rocca e...@debian.org
Description: 
 eterm  - Enlightened Terminal Emulator
Changes: 
 eterm (0.9.5-4) unstable; urgency=low
 .
   * QA upload.
   * Maintainer field set to QA Group.
   * Pre-Depend on multiarch-support to ensure libEterm.so can be found by the
 dynamic linker at every point during an upgrade.
   * Standards-Version bumped to 3.9.3.
   * debian/eterm.copyright renamed to debian/copyright as per Debian Policy
 Manual section 12.5.
   * ${misc:Depends} added to the dependencies.
   * Text of the BSD license included in debian/copyright.
   * Debhelper compatibility version set to 9.
Checksums-Sha1: 
 b682677dcc41146a25a85576fe6f1110dd5094e3 1166 eterm_0.9.5-4.dsc
 70fdfb87aeea931b46d64c3072171415ecbd9048 11674 eterm_0.9.5-4.diff.gz
 3f54b440319dfb55704524015e498dff066a9bcf 463288 eterm_0.9.5-4_amd64.deb
Checksums-Sha256: 
 998cbf39ec582ea1b52a247c3d0772c72efb6714cfadf7c7d327d08a7968d859 1166 
eterm_0.9.5-4.dsc
 915af79eb021f67442d69176dba5bcc0492295636eaf9f0094961196c70349f3 11674 
eterm_0.9.5-4.diff.gz
 d68dad9a289ae64cb894980f18e78a5170e80d9ff4b795c709a6425d2ef78989 463288 
eterm_0.9.5-4_amd64.deb
Files: 
 0b8cba889151255c13f65f889fedd581 1166 x11 optional eterm_0.9.5-4.dsc
 fbc7b9c342788eb12d3749dad8e17091 11674 x11 optional eterm_0.9.5-4.diff.gz
 2d076b57ee3e8821a88c5bb02a054056 463288 x11 optional eterm_0.9.5-4_amd64.deb

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

iEYEARECAAYFAk+rj84ACgkQC6DuA+rxm2DrSgCeL//eTBCQSZeDDzYJw9k3Y+PL
S/wAn26dmmkckrQpzVLyPIhz5rCe0kpQ
=srk5
-END PGP SIGNATURE-


Accepted:
eterm_0.9.5-4.diff.gz
  to main/e/eterm/eterm_0.9.5-4.diff.gz
eterm_0.9.5-4.dsc
  to main/e/eterm/eterm_0.9.5-4.dsc
eterm_0.9.5-4_amd64.deb
  to main/e/eterm/eterm_0.9.5-4_amd64.deb


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



Accepted docbook-slides-demo 3.3.1-2 (source all)

2012-05-10 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 11:46:11 +0200
Source: docbook-slides-demo
Binary: docbook-slides-demo
Architecture: source all
Version: 3.3.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian XML/SGML Group debian-xml-sgml-p...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 docbook-slides-demo - Demo presentation slides for the docbook-slides package
Closes: 540563 615389 644476 644479
Changes: 
 docbook-slides-demo (3.3.1-2) unstable; urgency=low
 .
   * Add myself as Uploaders
   * debian/control (Vcs-Browser): Fixed location.
 (Uploaders): Removed Mark Johnson, who is probably MIA (closes: #540563).
 Many thanks for your work!
   * Add d/watch file
   * Switch to dpkg-source 3.0 (quilt) format
   * Fix Homepage in d/control. Closes: #615389
   * Remove ref to Author in d/control. Closes: #644479
   * Fix description in d/control. Closes: #644476
   * Switch to dpkg-source 3.0 (quilt) format
   * Add d/watch file
Checksums-Sha1: 
 bd98844c7cf2800289147bd38af997e134945491 2065 docbook-slides-demo_3.3.1-2.dsc
 0004ef5ce2f31dd3a2660544310c6ea9659c97a7 2495 
docbook-slides-demo_3.3.1-2.debian.tar.gz
 e65c8aa27fe279cda821d9775cb0df29637c3416 122264 
docbook-slides-demo_3.3.1-2_all.deb
Checksums-Sha256: 
 f3d7611ddbf3238e002b7f8a8df5b72a64c4e4954ca59c4249fe9bc039678100 2065 
docbook-slides-demo_3.3.1-2.dsc
 981de69c9a90a6a103269b2e418bd6dba47ca19c12607422f838aeb0aa15e6c1 2495 
docbook-slides-demo_3.3.1-2.debian.tar.gz
 a508afeb2427b87b14f1930904524b2a9b53042d83210bdf8f265e98e4209843 122264 
docbook-slides-demo_3.3.1-2_all.deb
Files: 
 7be8ebc8f94441284ecae711ceaba6f1 2065 doc optional 
docbook-slides-demo_3.3.1-2.dsc
 551b14d23d9aa4f9274a8bf30fafa1d5 2495 doc optional 
docbook-slides-demo_3.3.1-2.debian.tar.gz
 872dee0a58e9da8282e0c86b61486a9a 122264 doc optional 
docbook-slides-demo_3.3.1-2_all.deb

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

iQIcBAEBAgAGBQJPq5F7AAoJEAFx4YKK4JNFpXgQAIHVW7rwpBW35AKt/rxJutW9
9FCh9IZoFZAoRBykXyJIsp/V19/rvC0mvCathJBeJcmfJmRNmCK7u0KaIBTMXaEl
V/NrsZT7UaxAqycJQmptXFI1MGgq6fmV6pNobBIguXv5fZjCCRFo1x4SQssgFvTg
we7rMisjzy5BelUDTCXHlr8yEnMDqxCRo7OnNwxE53kHl7gZ9S58n/Rwh7vo48LR
okw8lHCudfGma/V3z0f7JYi5ybp1/Mb7a7X+3KMqK9SUCqghXo9gy0rpe7anV2er
NqOonCeyQ9Ghv7i1Epo93/+7A7mCIVjM7iabEQOogvLfeFkUT8euavtHgK1qEPEN
0/zbHqaApykf28mM73HsfMc8J7DYUfUhvDOLMEdffVEb9SV539eTFSTBaiB6LPs7
tUg0XDiL2oqMEDkLsSya1pXo2d9XF/OiOUusI4Df3hDol4/AhqQBhaXUhY/0ckUo
WDL5Iw7WEkD8hU6/BVpJUvM79akGcoKImwTM07Iin6ZoCFzb5V19HlHMn4DgzvD5
WsB2qbcd/lPjsEa5FixhH8Pt5prJi9J5bEs+YTgu5wC/HLeN6a/LNGYkIwfPJyqX
z4AKrHwIqbzEypPVUtral7rsGQsAOZ7FeAeEq1Y2U9eiKAQjsZTDsNsYm9oy6gV/
rCPqLHF6hmsbSIIj9MPe
=5b/j
-END PGP SIGNATURE-


Accepted:
docbook-slides-demo_3.3.1-2.debian.tar.gz
  to main/d/docbook-slides-demo/docbook-slides-demo_3.3.1-2.debian.tar.gz
docbook-slides-demo_3.3.1-2.dsc
  to main/d/docbook-slides-demo/docbook-slides-demo_3.3.1-2.dsc
docbook-slides-demo_3.3.1-2_all.deb
  to main/d/docbook-slides-demo/docbook-slides-demo_3.3.1-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/e1ssqqs-0002qr...@franck.debian.org



Accepted insighttoolkit 3.20.1-7 (source all amd64)

2012-05-10 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 11:47:07 +0200
Source: insighttoolkit
Binary: libinsighttoolkit3.20 libinsighttoolkit3-dev insighttoolkit3-examples
Architecture: source amd64 all
Version: 3.20.1-7
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 insighttoolkit3-examples - Image processing toolkit for registration and 
segmentation - exam
 libinsighttoolkit3-dev - Image processing toolkit for registration and 
segmentation - deve
 libinsighttoolkit3.20 - Image processing toolkit for registration and 
segmentation - runt
Changes: 
 insighttoolkit (3.20.1-7) unstable; urgency=low
 .
   * Revert last change back to libtiff-dev
Checksums-Sha1: 
 c755ed612d92cc22b366b1b82296a190ee3d754b 2416 insighttoolkit_3.20.1-7.dsc
 d7891643f59869111262f2aed3e5bc2bc2ad1404 28810 
insighttoolkit_3.20.1-7.debian.tar.gz
 9b2fc5bd1072d2200bd1106f6c13815ca93cf6c6 4484680 
libinsighttoolkit3.20_3.20.1-7_amd64.deb
 aae76224d24815eec131563a90a4bce3c7dac8de 4782470 
libinsighttoolkit3-dev_3.20.1-7_amd64.deb
 3991b069f9eb5ce1860a8cdfab4a4c9f36bf8496 2471376 
insighttoolkit3-examples_3.20.1-7_all.deb
Checksums-Sha256: 
 3b67eaa374cc5cb9ac5e46c06d49774d81983aa8195d291e770f427e49a11144 2416 
insighttoolkit_3.20.1-7.dsc
 7fadc1f1074f545bb26fb8220d92f180c5b8191789c55383fc3000c6989bbbac 28810 
insighttoolkit_3.20.1-7.debian.tar.gz
 68f51ca3862898cf372eba2ae3bfc2c6248ef4bc14536b30d1651aea1238e7ec 4484680 
libinsighttoolkit3.20_3.20.1-7_amd64.deb
 aab28f078066a22a92b4b501c36cbce418fef5710be8083d0a036582a5ee1f46 4782470 
libinsighttoolkit3-dev_3.20.1-7_amd64.deb
 13577e36ff74e1f7e726cf206299778955fd46d3185164ab55eadb2626f45c3a 2471376 
insighttoolkit3-examples_3.20.1-7_all.deb
Files: 
 e9c66990751b57cc5fc38410944f5e78 2416 science optional 
insighttoolkit_3.20.1-7.dsc
 c8076d6f727b490f84cb34d0d366a8db 28810 science optional 
insighttoolkit_3.20.1-7.debian.tar.gz
 edfb0bca69d07b1af9b148be6b71e458 4484680 libs optional 
libinsighttoolkit3.20_3.20.1-7_amd64.deb
 e75f4a315a7a62300de80c88b26bda20 4782470 libdevel optional 
libinsighttoolkit3-dev_3.20.1-7_amd64.deb
 214d65064e1b9c7ff9d4a3db39cd5982 2471376 devel optional 
insighttoolkit3-examples_3.20.1-7_all.deb

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

iQIcBAEBAgAGBQJPq5VkAAoJEAFx4YKK4JNFrg0P/2P0TCsT3sv1seZy6QETMgRa
qFc0M46K2XHLccPhqwbG9+LAzh5SYh7ls2gFZVhfx240aq3yaUis+rHsRidqLnrw
nDuBkapSgDgQsqJbmvDKNT//NBTLbIUcquQF0ibUh9bnuuG0Djj+lklk8R8UEL3p
b/p4sSdkJhMWuFnX7ztBrCG+zUon7hyoIBVoQRkQ6zxU2EkU2kWoLjp36sGGrGSt
GbRTJ41dqcdgmrkqN371EUdr03ZmXsG6cl8HaZq96Z3RWQ08EXyMr8EnTags/dy0
qTzysOVwXXrBiu3n+TsfMS6GF/CpS2KTBY4bgcsh2RR12A/W8BzqSDLY7q+gIrUd
1wB6+/MF46+34vEPNudgTnJrw22DjqVwAs/mFiqQ4bpDpk5Khj39YFn34imb7vun
VrJMLgY7Bd4YReBG2Z8KNFaP3BWMt0DAPN1hGcDJxtk7JPsaQkFvb/ZQx9UGC1KA
yUUCWXXqFM6Zf+wFpBOB4/O6YHYD0POr7M6ul3vnM3RGUFHsDVZZdo1VhE7Z57Ye
x/JNptZ5CHFFXf7L9Q2alwuL6kdy9ggEe+rfoODhcKegfPsJ1HUT4buTmmGIYEKX
hZ2EGwhST1SuY4CZlX9lRQlmp62J/S0k/C5+u9Pl3I6fm/eMOIjp6UyCu6G+WNO4
zoZPzeJh/MuZwkW1zHan
=lMcj
-END PGP SIGNATURE-


Accepted:
insighttoolkit3-examples_3.20.1-7_all.deb
  to main/i/insighttoolkit/insighttoolkit3-examples_3.20.1-7_all.deb
insighttoolkit_3.20.1-7.debian.tar.gz
  to main/i/insighttoolkit/insighttoolkit_3.20.1-7.debian.tar.gz
insighttoolkit_3.20.1-7.dsc
  to main/i/insighttoolkit/insighttoolkit_3.20.1-7.dsc
libinsighttoolkit3-dev_3.20.1-7_amd64.deb
  to main/i/insighttoolkit/libinsighttoolkit3-dev_3.20.1-7_amd64.deb
libinsighttoolkit3.20_3.20.1-7_amd64.deb
  to main/i/insighttoolkit/libinsighttoolkit3.20_3.20.1-7_amd64.deb


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



Accepted xcb 2.4-4.2 (source amd64)

2012-05-10 Thread Jari Aalto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 26 Apr 2012 18:05:19 +0300
Source: xcb
Binary: xcb
Architecture: source amd64
Version: 2.4-4.2
Distribution: unstable
Urgency: low
Maintainer: Michael Schiansky m...@debian.org
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 xcb- Pigeon holes for your cut and paste selections
Closes: 363172 529149 585539
Changes: 
 xcb (2.4-4.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Update to packaging format 3.0 quilt
   * debian/copyright
 - Update to format 1.0.
   * debian/control
 - Update to Standards-Version to 3.9.3 and debhelper to 9.
 - Add ${misc:Depends}.
 - Remove Homepage; dead upstream.
   * debian/menu
 - Update section from obsolete Apps/Tools to Applications/Graphics.
 - Change the path to the binary in the menu file. This together with a
   rebuild makes xcb work with xorg 7.0. Patch thanks to
   Erik Johansson deb...@ejohansson.se (Closes: #363172, #585539).
   * debian/patches
  - (01, 02): Convert in-line patches to individual debian/patches.
  - (03): New. Fix hyphens in manual page.
   * debian/rules
 - Migrate to dh(1) dues to hardened build flags.
 - Install manual pages with standard suffix *.1, not *.1x.
 - Use all hardened build flags
   http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags
   * debian/watch
 - Update to format 3 (Closes: #529149). Patch thanks to Erik Johansson
   deb...@ejohansson.se.
Checksums-Sha1: 
 9a8ba0ea8f77b000831e82bd0b5e5b445034bc3a 1002 xcb_2.4-4.2.dsc
 9fdfbcb07b8c2739e0fea1a5f61ba081966cc9fd 5639 xcb_2.4-4.2.debian.tar.gz
 9c54e45811e5b6fae231afabf285107c139c2a97 24660 xcb_2.4-4.2_amd64.deb
Checksums-Sha256: 
 b90efb3025320cdd347260deb512c025d154db7391be0a05f88e35aa4a2935a8 1002 
xcb_2.4-4.2.dsc
 806c4d3a20807584f445fa757d70c77eb2b543de012464ff6dbc7c8ce122b4be 5639 
xcb_2.4-4.2.debian.tar.gz
 60bd9c6de53bb6ed48a3c7ef1d311d8e7bd5c615fd3ed673496d4462ddd04f31 24660 
xcb_2.4-4.2_amd64.deb
Files: 
 eeada83d53528457bd7f740365586299 1002 x11 optional xcb_2.4-4.2.dsc
 259fdcf25437f333bf7293d5fd942f65 5639 x11 optional xcb_2.4-4.2.debian.tar.gz
 55f4f331dc8ed1966a8f1b9c9d3109ed 24660 x11 optional xcb_2.4-4.2_amd64.deb

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

iEYEARECAAYFAk+rluQACgkQLARVQsm1XazGFACcCnuP16YkFsubkAH6uv5RxGxS
2e4AoLR9PXz3WOUO8t9XcU6h8+xT+btz
=Lr7N
-END PGP SIGNATURE-


Accepted:
xcb_2.4-4.2.debian.tar.gz
  to main/x/xcb/xcb_2.4-4.2.debian.tar.gz
xcb_2.4-4.2.dsc
  to main/x/xcb/xcb_2.4-4.2.dsc
xcb_2.4-4.2_amd64.deb
  to main/x/xcb/xcb_2.4-4.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/e1ssqgc-0004lc...@franck.debian.org



Accepted attr 1:2.4.46-7 (ia64 source i386 mipsel amd64)

2012-05-10 Thread Anibal Monsalve Salazar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 17:35:17 +1000
Source: attr
Binary: attr libattr1-dev libattr1
Architecture: source amd64 i386 ia64 mipsel
Version: 1:2.4.46-7
Distribution: unstable
Urgency: low
Maintainer: Anibal Monsalve Salazar ani...@debian.org
Changed-By: Anibal Monsalve Salazar ani...@debian.org
Description: 
 attr   - Utilities for manipulating filesystem extended attributes
 libattr1   - Extended attribute shared library
 libattr1-dev - Extended attribute static libraries and headers
Changes: 
 attr (1:2.4.46-7) unstable; urgency=low
 .
   * Build-depend on gettext. If it build-depends on gettext:any,
 the auto-builders stop with the message below.
 Dependency installability problem for attr on armel, armhf, hurd-i386,
 kfreebsd-amd64, kfreebsd-i386, mips, powerpc, s390, s390x and sparc:
 attr (= 1:2.4.46-6) build-depends on missing:
 - not-existing-build-dependency-for-any
Checksums-Sha1: 
 bb8b49aee33cfde5d8485613811b57273bbdabcc 2004 attr_2.4.46-7.dsc
 835662fe5c3433d0e8d80fa085c1b9741426e585 7169 attr_2.4.46-7.debian.tar.bz2
 425227e526cde9bc5ef024812af80a7d9697e7b4 51600 attr_2.4.46-7_amd64.deb
 4d07be391213dff0e2b7c221bc3dc65abc7115b8 43026 libattr1-dev_2.4.46-7_amd64.deb
 5a2aab9666a75de8928b2df49d3f41d98f1996d1 19320 libattr1_2.4.46-7_amd64.deb
 18d3951e41ce9560a4d3fccbdeb43e268158 51238 attr_2.4.46-7_i386.deb
 276bf2a4259638cefa9d8479c026a4dce8838e69 42170 libattr1-dev_2.4.46-7_i386.deb
 39c20cbf501b56c077bc430af4ddd3f096df7e19 18808 libattr1_2.4.46-7_i386.deb
 affe4eece8191032fed4be44e6a2b065bf22c7d8 57574 attr_2.4.46-7_ia64.deb
 9dfe667f8ad6126a5fdd87b6671cedc52353697b 45536 libattr1-dev_2.4.46-7_ia64.deb
 b62f810c4bad2bb90f2dcb5be48d1b926a06bf27 21948 libattr1_2.4.46-7_ia64.deb
 66703bd9f37e91ba42bcd146d9326f00f682b2fc 51812 attr_2.4.46-7_mipsel.deb
 fb8b607962237f23b2b609b0274e227b2037e743 43520 libattr1-dev_2.4.46-7_mipsel.deb
 40de2f82d6d240b70d20fe041ef9e91be6521493 18862 libattr1_2.4.46-7_mipsel.deb
Checksums-Sha256: 
 92428c36eb4f0843b6a2697b1c2e876077f41fd8132f74106c611432f4e27321 2004 
attr_2.4.46-7.dsc
 cf61a62ddbf5f8f6770547be6996980657bc63dc2032cc8b7805f3c8a358ece2 7169 
attr_2.4.46-7.debian.tar.bz2
 76a11f6de6f33f1abdcf620a9e2ad47524966e8a951bfa5519b74f1c116cbae9 51600 
attr_2.4.46-7_amd64.deb
 fd9c37bd628b04372867bc04967cdf1616cf46e2d9a4899b3f4428adfa7bf198 43026 
libattr1-dev_2.4.46-7_amd64.deb
 6023d9b1562a0d1f2116bbf69a1a9290bc605c63b540bd60909faa5c53fa7db3 19320 
libattr1_2.4.46-7_amd64.deb
 617d9f50f28c54a63ca1025554a4996546ef9d2bd24cf90e331418b4bd9fb686 51238 
attr_2.4.46-7_i386.deb
 0cd3cb4e17914c73cfbee5adc568d7532ecb9848212538e0c5d329ca87385f36 42170 
libattr1-dev_2.4.46-7_i386.deb
 be07a21928a9b0d726083225f40d3c005a490837c4c3a81cb4811447ea68da63 18808 
libattr1_2.4.46-7_i386.deb
 cf103a421582f2f3a04506f5d4392de5dc72ee10736a48013c72096a038ac94e 57574 
attr_2.4.46-7_ia64.deb
 c29dc332d773fd1b862de17001080f1cef9c078dd1d711ed06317b821f585a63 45536 
libattr1-dev_2.4.46-7_ia64.deb
 33160c0561c56e894e6e8d7819a3adbc64ce4478abae94790b2b06ad85020aa9 21948 
libattr1_2.4.46-7_ia64.deb
 f6adf8a5130f23d3f0af8cab47dc513419170438d85b7477e3beabf186934962 51812 
attr_2.4.46-7_mipsel.deb
 326a5b92cf919f9b68cf31b569a3cbf173e59c586f077320b3ea6edff44fc2a4 43520 
libattr1-dev_2.4.46-7_mipsel.deb
 5eb2283eda522e14c1acb949f9b891280e8225a7815e97809ea83ab5a95a2420 18862 
libattr1_2.4.46-7_mipsel.deb
Files: 
 4acea3fe98ff00157a4f1e1a73fd6607 2004 utils optional attr_2.4.46-7.dsc
 fc63f796c8c7ff8b54f60a87830faaab 7169 utils optional 
attr_2.4.46-7.debian.tar.bz2
 a018ed03ebda1f633d49e6f7d197106a 51600 utils optional attr_2.4.46-7_amd64.deb
 e0dd995f36a0221256130bc11d35850a 43026 libdevel extra 
libattr1-dev_2.4.46-7_amd64.deb
 27fdb49f0349ff68d6d98bc5c1659302 19320 libs required 
libattr1_2.4.46-7_amd64.deb
 962e2e2b9064012b68598bd160cfa878 51238 utils optional attr_2.4.46-7_i386.deb
 e4e0aed43d14a358bf8d83d18ab67443 42170 libdevel extra 
libattr1-dev_2.4.46-7_i386.deb
 3c4a59400c2fe8e6acef653ba751c83d 18808 libs required libattr1_2.4.46-7_i386.deb
 9260abd719dd45228ac29afc7c7b5e89 57574 utils optional attr_2.4.46-7_ia64.deb
 65fd33c8b3af98bde2d6ccb4d7c7f097 45536 libdevel extra 
libattr1-dev_2.4.46-7_ia64.deb
 6da2d2cf487178465b7bbf585987f577 21948 libs required libattr1_2.4.46-7_ia64.deb
 00459a7b68482f9ccee2607ea5d0061a 51812 utils optional attr_2.4.46-7_mipsel.deb
 9089789ba23eb62c2906de1149d13839 43520 libdevel extra 
libattr1-dev_2.4.46-7_mipsel.deb
 75dcfb450d58a3d7b5a30b912d522911 18862 libs required 
libattr1_2.4.46-7_mipsel.deb

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

iQIcBAEBCAAGBQJPq6HyAAoJEHxWrP6UeJfYnNsP/2DWT6ECNo5ic/L1zWLfWOMI
wILQk1drECl6ch9XnB2nf4WsGY11ZvxQbi7YpyRNiuBhK7WX2vfoKOZPD5FD31gz
vPx5g56ME4yBPEZcyMnt4Egbn8nakVW/zEslLmml4802sqMJ4Yfo1/gmx/QLxlPb
jfm4ftcuIcnbut/PP37dfKh2dU7frPRzMzQ8u+N7Rm3mzTg3e49IyTEUuZAh9+Oe

Accepted swt-gtk 3.8.0~m7-2 (source amd64)

2012-05-10 Thread Jakub Adam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 13:13:13 +0200
Source: swt-gtk
Binary: libswt-gtk-3-java libswt-gtk-3-jni libswt-gnome-gtk-3-jni 
libswt-cairo-gtk-3-jni libswt-glx-gtk-3-jni libswt-webkit-gtk-3-jni 
libswt-gtk-3-java-gcj
Architecture: source amd64
Version: 3.8.0~m7-2
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Jakub Adam jakub.a...@ktknet.cz
Description: 
 libswt-cairo-gtk-3-jni - Standard Widget Toolkit for GTK+ Cairo JNI library
 libswt-glx-gtk-3-jni - Standard Widget Toolkit for GTK+ GLX JNI library
 libswt-gnome-gtk-3-jni - Standard Widget Toolkit for GTK+ GNOME JNI library
 libswt-gtk-3-java - Standard Widget Toolkit for GTK+ Java library
 libswt-gtk-3-java-gcj - Standard Widget Toolkit for GTK+ native library
 libswt-gtk-3-jni - Standard Widget Toolkit for GTK+ JNI library
 libswt-webkit-gtk-3-jni - Standard Widget Toolkit for GTK+ WebKit JNI library
Changes: 
 swt-gtk (3.8.0~m7-2) experimental; urgency=low
 .
   * Fix build on 64-bit platforms.
Checksums-Sha1: 
 7cf4fd23b80f6b7f3dba21df7544c0b56cf8f20e 2658 swt-gtk_3.8.0~m7-2.dsc
 d818fecc262e3cb9db96288698e16d9a563cd45e 360920 swt-gtk_3.8.0~m7-2.diff.gz
 d918dab97d75f3e5bbb39a09a21008464df36d52 1725108 
libswt-gtk-3-java_3.8.0~m7-2_amd64.deb
 0dc5986f5a09167e7b32524c8c2d4731405ff63e 287096 
libswt-gtk-3-jni_3.8.0~m7-2_amd64.deb
 2065e900d80ceb0604ac738ae9c630cfb11140b0 26788 
libswt-gnome-gtk-3-jni_3.8.0~m7-2_amd64.deb
 6354096f427087db7606d1421d4f96f0872dbadf 37230 
libswt-cairo-gtk-3-jni_3.8.0~m7-2_amd64.deb
 02bae16ef76944d950c44841bea217a84c982a1e 26380 
libswt-glx-gtk-3-jni_3.8.0~m7-2_amd64.deb
 bce151d7893534f772038e5828ce3f976c6298e5 35196 
libswt-webkit-gtk-3-jni_3.8.0~m7-2_amd64.deb
 46a16f7dc521abbf2c7f21c42f321a0788129e34 2856374 
libswt-gtk-3-java-gcj_3.8.0~m7-2_amd64.deb
Checksums-Sha256: 
 4eec9d06e6802b6229eb08ecd994103443db4ef5c2b2e2da4d8027f9c074b9e2 2658 
swt-gtk_3.8.0~m7-2.dsc
 832020f844f843c979b757c13320119a56515ee79aa88c494c919e7b63e86d61 360920 
swt-gtk_3.8.0~m7-2.diff.gz
 2b027ef3b0ae63ad0bc0900a3de2fff6b7f8c6329969e4ffcf7a961c396dc955 1725108 
libswt-gtk-3-java_3.8.0~m7-2_amd64.deb
 acc9da7021b47f37319bbe99b2c5396fede589848ff2ca86c724d4b5a2af2e44 287096 
libswt-gtk-3-jni_3.8.0~m7-2_amd64.deb
 b0a7f71c15ca71a64d92eb6799e0da2506edf93e773df129dcc55a76a3dd567e 26788 
libswt-gnome-gtk-3-jni_3.8.0~m7-2_amd64.deb
 077b8fe2c6d975b09300bd5e3c0145f1ce950f2b47d3c7dcd8767411708434f4 37230 
libswt-cairo-gtk-3-jni_3.8.0~m7-2_amd64.deb
 5610f2a98f6da4c382a1a79cf3cf79685442c28aee09b90030fb399da561f6f2 26380 
libswt-glx-gtk-3-jni_3.8.0~m7-2_amd64.deb
 72816d4400f495568fb5d46d411073cc3017729acd64e9846ececb147ecd3258 35196 
libswt-webkit-gtk-3-jni_3.8.0~m7-2_amd64.deb
 14ae8b99f3cb660adedf3eb57e41a4ac624d39945e66f3701d1d5582915f1ec2 2856374 
libswt-gtk-3-java-gcj_3.8.0~m7-2_amd64.deb
Files: 
 c1d3db24e98bca3be4f953081bdd885a 2658 libs optional swt-gtk_3.8.0~m7-2.dsc
 9ac61c4c3f8f0874b7bd2597a3dd5017 360920 libs optional 
swt-gtk_3.8.0~m7-2.diff.gz
 a348751838ba7eb4e01b37b430ae6a9a 1725108 java optional 
libswt-gtk-3-java_3.8.0~m7-2_amd64.deb
 42df825720590233f4e7d2bca44e058c 287096 libs optional 
libswt-gtk-3-jni_3.8.0~m7-2_amd64.deb
 385b69bbaa74d2a38ccb99f8b89cc7c4 26788 libs optional 
libswt-gnome-gtk-3-jni_3.8.0~m7-2_amd64.deb
 7ae2ed755efbc935b55f747f5fb0f68d 37230 libs optional 
libswt-cairo-gtk-3-jni_3.8.0~m7-2_amd64.deb
 3e26d0c38b410e02e0f4406c648beac1 26380 libs optional 
libswt-glx-gtk-3-jni_3.8.0~m7-2_amd64.deb
 40c29f9f978bda03ce870fb4ac6c02c8 35196 libs optional 
libswt-webkit-gtk-3-jni_3.8.0~m7-2_amd64.deb
 f7ae9b6d83583e272c70b107933c68bf 2856374 java optional 
libswt-gtk-3-java-gcj_3.8.0~m7-2_amd64.deb

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

iQIcBAEBCAAGBQJPq6e1AAoJEAVLu599gGRCK48QALKe9FSQL1Bo6uc7RII/Q9Ul
fr8hTbOK/jBRH2Dij7usTOaafewF5axCm64UZM/Y1XVUGB1nub8hcA/2RVOuaQur
9MT2GAJKAAO+4GW+UEAEYQEqV8HUTaykZTd7KFrwIq+3avlmouy+5WJD5CdcPikJ
Pb4XGt5yCv2GRrZfZLesPgS8ZpS7wg4gJU2YiwSabv2dHzUWbsQY9160s9Ghljuu
DclnkBhP3s4r1dn28FG3l+pRLZBJNlAuWtZSwf+UDx9mC+PEsQg5aU9FJrIUlowy
uMMcwri/u0uZTHYoIiIhxddbw3XvB55zf3NaY3x3opT8dzoIqnBd7RoYJvPGOin+
lNUwuKVeGXsXY4+QDAeC4wiz4glHI3xIuVQhMrw+ISbiIH1HLWVviTB7CPERNH7Y
8IRcPVChX5SOWFRxGTN22ge+AXouZjhfAM8zSHIJ1Fi+XNHaw9we5Kixdsr3aDL3
mDu7iprrpeGz1+zUidplXhOae+HpjAaGPxAkTY6/LPnKSzs5TM37fj4rX6P3ZvfM
lYLppcg3KFNUmyl1wCc2xrQa+wiSzwQ/LwC6Sk8LiuDh2HqSqA2NECV7KaPL9BS6
a8rtyJUD+dbI8XxdL05xA4h4+hGQ3Idblb9o4+0zVdwOb4obawIj7IZNFANollni
hs+k9pIzIVagDrp4luV9
=kTDh
-END PGP SIGNATURE-


Accepted:
libswt-cairo-gtk-3-jni_3.8.0~m7-2_amd64.deb
  to main/s/swt-gtk/libswt-cairo-gtk-3-jni_3.8.0~m7-2_amd64.deb
libswt-glx-gtk-3-jni_3.8.0~m7-2_amd64.deb
  to main/s/swt-gtk/libswt-glx-gtk-3-jni_3.8.0~m7-2_amd64.deb
libswt-gnome-gtk-3-jni_3.8.0~m7-2_amd64.deb
  to main/s/swt-gtk/libswt-gnome-gtk-3-jni_3.8.0~m7-2_amd64.deb

Accepted gtksourceview3 3.4.1-2 (source all amd64)

2012-05-10 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 13:39:47 +0200
Source: gtksourceview3
Binary: libgtksourceview-3.0-0 libgtksourceview-3.0-common 
libgtksourceview-3.0-dev libgtksourceview-3.0-doc gir1.2-gtksource-3.0
Architecture: source all amd64
Version: 3.4.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gir1.2-gtksource-3.0 - gir files for the GTK+ syntax highlighting widget
 libgtksourceview-3.0-0 - shared libraries for the GTK+ syntax highlighting 
widget
 libgtksourceview-3.0-common - common files for the GTK+ syntax highlighting 
widget
 libgtksourceview-3.0-dev - development files for the GTK+ syntax highlighting 
widget
 libgtksourceview-3.0-doc - documentation for the GTK+ syntax highlighting 
widget
Changes: 
 gtksourceview3 (3.4.1-2) unstable; urgency=low
 .
   * Bump minimum required version of libgtk-3-dev to 3.3.8 for
 gtk_window_set_attached_to().
Checksums-Sha1: 
 aac578ae59caabe361e57738f8a27d6c74796082 2727 gtksourceview3_3.4.1-2.dsc
 fbd8d9670546d4a8edda1726da5b54600f13be89 13856 
gtksourceview3_3.4.1-2.debian.tar.gz
 20e462d1c6b962cc7cf741e5a7bdda9c2bbeb337 1192154 
libgtksourceview-3.0-common_3.4.1-2_all.deb
 2e3cd6321835d669ab5d964745bb6536c518a541 201674 
libgtksourceview-3.0-doc_3.4.1-2_all.deb
 e6b639cc1883f26cffec2dcfac3be6866ae58ebf 289982 
libgtksourceview-3.0-0_3.4.1-2_amd64.deb
 30e4a71c64c1b35984ad804035901d06a6e7c874 391138 
libgtksourceview-3.0-dev_3.4.1-2_amd64.deb
 c201f18bb633472b6bf5d00da16a0cd9c3fb277d 112816 
gir1.2-gtksource-3.0_3.4.1-2_amd64.deb
Checksums-Sha256: 
 4bc03bd474e2ccbb7875cc15281b975d6f3144fcaea256f794d2e234c86ab125 2727 
gtksourceview3_3.4.1-2.dsc
 78c812a7930cde546b17eb90dade53421ff4f89ee2e6feb85d951a0219a8e3aa 13856 
gtksourceview3_3.4.1-2.debian.tar.gz
 8f664fb01656f7f173ed3409abc88fbe87b8da991d23eaa84ac63b24ae5c9128 1192154 
libgtksourceview-3.0-common_3.4.1-2_all.deb
 97d53a9c30a6c8932e2c138049809a2fb257b9fb8df8af6553c9caef63d4d4fc 201674 
libgtksourceview-3.0-doc_3.4.1-2_all.deb
 0566ee33e83ce800504f6b7a2aab665caabd1067c77f625987e5d2c0b7c339f5 289982 
libgtksourceview-3.0-0_3.4.1-2_amd64.deb
 5b129ff52ad00abebd3587f77f2efc9bfd03553e2ec41b007d74d46980f5a739 391138 
libgtksourceview-3.0-dev_3.4.1-2_amd64.deb
 14c54d2eb0763c3e2833142c23ef9716ffd219d25df17ebdff99f79285d366bf 112816 
gir1.2-gtksource-3.0_3.4.1-2_amd64.deb
Files: 
 885681894b31178705d661b2ae53c4fd 2727 libs optional gtksourceview3_3.4.1-2.dsc
 6f100d87cd266bce182509691ce0fc8d 13856 libs optional 
gtksourceview3_3.4.1-2.debian.tar.gz
 a54c9dfe40c33134224ceadc8b1d1ef5 1192154 libs optional 
libgtksourceview-3.0-common_3.4.1-2_all.deb
 52ab5a8f7df9a274025a26203153e4a1 201674 doc optional 
libgtksourceview-3.0-doc_3.4.1-2_all.deb
 239fd68d3e48ea6cc3ab95ec71475bca 289982 libs optional 
libgtksourceview-3.0-0_3.4.1-2_amd64.deb
 0f460404890da380eeb9f0d22815682f 391138 libdevel optional 
libgtksourceview-3.0-dev_3.4.1-2_amd64.deb
 1d30f4aa25e1be323c9228845cd04700 112816 introspection optional 
gir1.2-gtksource-3.0_3.4.1-2_amd64.deb

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

iQIcBAEBCAAGBQJPq6pmAAoJEGrh3w1gjyLcRCsQAJEPSBCe/mSgjUMMKdjeyWfX
MORaZSqo0OY3/XomRV+QtsCo+DmkEaDj9aCdEr5Ag42XwdpYi+YjZDBRrMnZEj7O
p6676q//tBysWmobgsLR7EeU+XPfwdA+QpiM8/lrSu+1AY7C5O/soMWr7XOcWnz+
gLy/ws49HJPHaOUAKgX8s/Ufyc4SZtkegYPOyvVKk2FVl7W6XTqOaspUNcnI9gLQ
erjgWajsc6RuRHElPrrvR3zlIyYUkD9qG1pPWB0mlHoXrNgPmwWun+jhkEp7uZCY
mbWtl8yxj4KoM29ArdRfpTZWZAbHch65KFdAsRmjcEjkw34+waFd1QavAH87TI+C
4zM72Trwpj2RC1VVyb+Gq9LzmypXZ3sr70ZelEr/ukXvXjQDWBoJvgfMRuiNN6pI
27IGNbk7mRaWNaLAKfPxjGmfMqDA1JKfXcpYfzWOmLgxMhBn+fYQgtLTZykMwuP/
fVnYavsQWtrsolYRDQgNtF9VAazDjDnPooEi+asY2T3bmo7BB1rr51Kn/rE7GxCR
FsHc2ikWWd7p59P0SemmaKjO2cqMBrxOaQsfIS3/JNOR+vlbtmBBKFljqbVYNIoq
bZBzbHCNV3Ylw9rb6XghxsmMxYiuM1O0d4+jXf5yihlWYHcEJo/Y4TKJ62XFcKtq
XPMXywz2yBJq4UDBa8qo
=ltvo
-END PGP SIGNATURE-


Accepted:
gir1.2-gtksource-3.0_3.4.1-2_amd64.deb
  to main/g/gtksourceview3/gir1.2-gtksource-3.0_3.4.1-2_amd64.deb
gtksourceview3_3.4.1-2.debian.tar.gz
  to main/g/gtksourceview3/gtksourceview3_3.4.1-2.debian.tar.gz
gtksourceview3_3.4.1-2.dsc
  to main/g/gtksourceview3/gtksourceview3_3.4.1-2.dsc
libgtksourceview-3.0-0_3.4.1-2_amd64.deb
  to main/g/gtksourceview3/libgtksourceview-3.0-0_3.4.1-2_amd64.deb
libgtksourceview-3.0-common_3.4.1-2_all.deb
  to main/g/gtksourceview3/libgtksourceview-3.0-common_3.4.1-2_all.deb
libgtksourceview-3.0-dev_3.4.1-2_amd64.deb
  to main/g/gtksourceview3/libgtksourceview-3.0-dev_3.4.1-2_amd64.deb
libgtksourceview-3.0-doc_3.4.1-2_all.deb
  to main/g/gtksourceview3/libgtksourceview-3.0-doc_3.4.1-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/e1sss5o-0004bf...@franck.debian.org



Accepted gvfs 1.12.2-2 (source all amd64)

2012-05-10 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 08 May 2012 14:21:51 -0700
Source: gvfs
Binary: gvfs gvfs-daemons gvfs-libs gvfs-common gvfs-fuse gvfs-backends 
gvfs-bin gvfs-dbg
Architecture: source all amd64
Version: 1.12.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 gvfs   - userspace virtual filesystem - GIO module
 gvfs-backends - userspace virtual filesystem - backends
 gvfs-bin   - userspace virtual filesystem - binaries
 gvfs-common - userspace virtual filesystem - common data files
 gvfs-daemons - userspace virtual filesystem - servers
 gvfs-dbg   - userspace virtual filesystem - debugging information
 gvfs-fuse  - userspace virtual filesystem - fuse server
 gvfs-libs  - userspace virtual filesystem - private libraries
Closes: 672099
Changes: 
 gvfs (1.12.2-2) unstable; urgency=low
 .
   * Add 00git_fix_build.patch: Fix building with gcc 4.7. Patch taken from
 upstream git. Closes: #672099
Checksums-Sha1: 
 6259821bf8e2927a7160c3a1eeaf2e12d8add6ca 3015 gvfs_1.12.2-2.dsc
 8de46249a6c5dda5b7a1afed87c40cf7ae343f12 16502 gvfs_1.12.2-2.debian.tar.gz
 bdc161b4239a3ce40409604656b75839ff5de5b6 1165862 gvfs-common_1.12.2-2_all.deb
 3a4d784ca1dba358f7bb1756bf8a4a4725bf012c 226360 gvfs_1.12.2-2_amd64.deb
 668de6502143c46d284d3f64a25d3b606154fb85 263056 gvfs-daemons_1.12.2-2_amd64.deb
 7ce474a90592f82c78e92ba3164fd2195634876b 220728 gvfs-libs_1.12.2-2_amd64.deb
 c5face590d8b849979009a6404a71fc14f61adc4 140266 gvfs-fuse_1.12.2-2_amd64.deb
 29e71e9f1d2a18a492ad30eacbcaf022f8c3238b 518328 
gvfs-backends_1.12.2-2_amd64.deb
 c06e97d58c2465fe01e4030e2180c71ada7f9d78 172116 gvfs-bin_1.12.2-2_amd64.deb
 171113f47430d441c8a9a18007d1b6c3ba6ebb9b 2359798 gvfs-dbg_1.12.2-2_amd64.deb
Checksums-Sha256: 
 3f062e5b5777a0c05924109000c77c83b38e206b64661a600ebd3be9b7664b11 3015 
gvfs_1.12.2-2.dsc
 e013c793be7ea2c4f8c7e7c0baff6fb4219efead90cb9fea83f3306395eb03a7 16502 
gvfs_1.12.2-2.debian.tar.gz
 ac7a8ccc3ef71f6b14bf3a2ce995333c4bdf8079452e77d97b04fd1fce3407bf 1165862 
gvfs-common_1.12.2-2_all.deb
 8c738ce13cb30c71cdde7b209bbc64baa27a51dedb82b40b763d3411cafa0d49 226360 
gvfs_1.12.2-2_amd64.deb
 193d1f7fdb5c2f250d2a83d2196623dc9c788596fca5d2e3fdb1473bfc3e4457 263056 
gvfs-daemons_1.12.2-2_amd64.deb
 ce41725b382ab770312d2fef0250e20e174462bedaf3fa647994851be206ab5f 220728 
gvfs-libs_1.12.2-2_amd64.deb
 38bd35ff7c68ec0d065f86cfb5f4e27b48e92a6b02c018ed4b3bb5bf2ae82d18 140266 
gvfs-fuse_1.12.2-2_amd64.deb
 4d98745aa65f73a8dde263e3d624c4ec5aa86d857427f6cc09e93aa1be0bfcee 518328 
gvfs-backends_1.12.2-2_amd64.deb
 295c09e00f81b1a1becd1192689da5db79b1cb3a0c78b538e566a87a978a7c3b 172116 
gvfs-bin_1.12.2-2_amd64.deb
 bd530501100be060fb36e221de46abde8efeabec92e58f13e994935d487d39af 2359798 
gvfs-dbg_1.12.2-2_amd64.deb
Files: 
 cc2b57fa02fde08b6c5f9fb85bcaf513 3015 gnome optional gvfs_1.12.2-2.dsc
 4750af520daf7220788f1d7f033da27e 16502 gnome optional 
gvfs_1.12.2-2.debian.tar.gz
 39046301dbc8524313bddd3b0aa9f43f 1165862 libs optional 
gvfs-common_1.12.2-2_all.deb
 7b79b3365ab92d207f470f6b3f5800c6 226360 libs optional gvfs_1.12.2-2_amd64.deb
 831f85bb61534dd684e416212e0a3da1 263056 libs optional 
gvfs-daemons_1.12.2-2_amd64.deb
 8f6b3614e3081b97351618855c2ba85d 220728 libs optional 
gvfs-libs_1.12.2-2_amd64.deb
 fed938b21ae6900e9539a1f68a023798 140266 gnome optional 
gvfs-fuse_1.12.2-2_amd64.deb
 d3efa430a501ab8d90014e87cde4a76b 518328 gnome optional 
gvfs-backends_1.12.2-2_amd64.deb
 c81564e0fd84f4fb7b8eb4ccffc6da36 172116 gnome optional 
gvfs-bin_1.12.2-2_amd64.deb
 a94144e4b37a6f9af429636086092307 2359798 debug extra 
gvfs-dbg_1.12.2-2_amd64.deb

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

iQIcBAEBCAAGBQJPq69YAAoJEGrh3w1gjyLcvOEP/1W7bfEf3paYvh3VjVFP7eP9
AdqqC3Hamm9bH/1ElEDHe+x0Q9/hNXjoMrEgQ/pcqsJT+Znxkf1CaNtfZWRiJwBb
cA+gVMNO7xUFXTQGz7JU0q+CDv/wysYSdHOkfP/9SnXwYjV3LbGR6lImyrLokAt+
5BW5XbISzWLfkpO7H9H0OylyLIS+AQo6RBwM0LF90gakXcGf1BxhOUoBJpabKXZN
mKvQKAkGfrXttUJ876Wqgn6TR8oCb2auSQ3wRdnEiekWdLK6CtZ+MlhKlZ7EvDTS
PLOuOLAguc8kU1l77v0NX1HgyKe2ZtwJeryP/KvasFdY3T8wST3DUZBvJlsBJLfg
ztPuk7Eye83456yaxDlT3HUuVAYrylSNP9StuNLDFdglpGjoNF0Z+6l5+LIa/zzv
cuO5G4XBN20i7g4oT2YHNwQz3lP+DI3o0EjXBfzYfKW3UBuoqdiaGQ+/l4jqAH7U
8Jihsh5D4KQ5Y1l/dGoLHjv+np3Z99p0mQTwgESpsN77VCyyMGLFNXH1hwk8SEfA
oSRVUiI4HxYQFyrYP4nIEf9eYsjALNoK7Jz3Xx86rEnr8MQFRXnbZGVeaexwNkoD
KcM32GqrmK6cw6ln9xfb5+1klIfDPUUTwtj/MxDOqjGRv8YgSRZpqqTx9pHzmGA6
6JIcymjR3X/wFf0j9elC
=uYwx
-END PGP SIGNATURE-


Accepted:
gvfs-backends_1.12.2-2_amd64.deb
  to main/g/gvfs/gvfs-backends_1.12.2-2_amd64.deb
gvfs-bin_1.12.2-2_amd64.deb
  to main/g/gvfs/gvfs-bin_1.12.2-2_amd64.deb
gvfs-common_1.12.2-2_all.deb
  to main/g/gvfs/gvfs-common_1.12.2-2_all.deb
gvfs-daemons_1.12.2-2_amd64.deb
  to main/g/gvfs/gvfs-daemons_1.12.2-2_amd64.deb
gvfs-dbg_1.12.2-2_amd64.deb
  to main/g/gvfs/gvfs-dbg_1.12.2-2_amd64.deb

Accepted docbook-html-forms 1.1.0-4 (source all)

2012-05-10 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 14:17:09 +0200
Source: docbook-html-forms
Binary: docbook-html-forms
Architecture: source all
Version: 1.1.0-4
Distribution: unstable
Urgency: low
Maintainer: Debian XML/SGML Group debian-xml-sgml-p...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 docbook-html-forms - Extension to DocBook XML for generating html forms
Closes: 540557 615285
Changes: 
 docbook-html-forms (1.1.0-4) unstable; urgency=low
 .
   * Switch to dpkg-source 3.0 (quilt) format
   * Fix Homepage location in d/control. Closes: #615285
   * debian/control (Vcs-Browser): Fixed location.
 (Uploaders): Removed Mark Johnson, who is probably MIA (closes: #540557).
 Many thanks for your work!
   * d/rules use dh(7) syntax
Checksums-Sha1: 
 3d1c8fbad38924bb5636d894055edc468d321e77 2057 docbook-html-forms_1.1.0-4.dsc
 3f2ae6c41d5225c2cf07050be1de37b9c6057cdd 3103 
docbook-html-forms_1.1.0-4.debian.tar.gz
 54d4b1eaaa97e9d4e1f2757d739438f2633db56c 5214 
docbook-html-forms_1.1.0-4_all.deb
Checksums-Sha256: 
 1d31cba8ff96746e943bde0334156ff26137e96ca5b448ca9bcfcc5a8a1b5550 2057 
docbook-html-forms_1.1.0-4.dsc
 def45bd1165e57213e0f77fee58df46cc663a9a62ab9b9b50abd09c3e11bf3df 3103 
docbook-html-forms_1.1.0-4.debian.tar.gz
 20e6d54d6de776e87e609b1b24efddf38d729052c553aca04c1d588bb34d10f3 5214 
docbook-html-forms_1.1.0-4_all.deb
Files: 
 17343d03a80becc6b50c78b3505bce2a 2057 text optional 
docbook-html-forms_1.1.0-4.dsc
 ef74996406f60b6336b814bb8fbc642e 3103 text optional 
docbook-html-forms_1.1.0-4.debian.tar.gz
 d13b5e9de1c93f60e55a135d8b8910e7 5214 text optional 
docbook-html-forms_1.1.0-4_all.deb

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

iQIcBAEBAgAGBQJPq7YHAAoJEAFx4YKK4JNFQLsP/1WIkBmXP81NSbQhfOY31OJl
s44MEIw2SBp+eYVL/D8ojzGZf4PhGbNNSA4X7NwuoN4JbGb/sEP50jcBWkwsUDRp
EFzWRv6z/hxRitkIYpcuwqxUceNj74HWTzF4xPw9fmwG3coC2aX+lr6QJTwemiAi
z1IZEY7ttGGPlgl17Lf/4hPsirkcp5jAthKxowUGGBRMgf3zLU6IvjlKi/Rgd26i
lmiKKvFY3Cnziiqsii+MGEw+2DjSikwR8OlGxywPuumV1F2CAqE09XtS3m5ZSWZB
Tqm1Q89yWxiRa+0IqSGHd4Prg/hlAXU4JQsvbLPYTPZ+cQBfu00ZJPwLw/a5tlCl
mMc1IwEazY/mQyAdf9JGaIRZkOmJQrzgiqvT7IZH1Mc2HAt8ckYoHMgI+jE8o23o
iwDtS5u5Q22UjO6s4AUZr2M5suOS3PcNdvCjcxo5W1F2Rgg4eXFGYMNU1EkMlIwb
583Uc8EIRms2h3DCG2q235ndmPcegjlS8CgN0kIF6JagJ67afy+brIDJsn7QGqpq
x+XOuJGJ221ckqe1qmln1hdcMOYSXEM+HTLiapaEwSblQV4MvoTDXvxTjOB5c1Yh
bKxdsYrFeyohXZEh4fjaWJyuEf+8WgfEN1e1FDkWTYoI/f4pATsh7BF0Iy/na92b
wxS4lr3+2AO/QhTCz5SL
=eg3B
-END PGP SIGNATURE-


Accepted:
docbook-html-forms_1.1.0-4.debian.tar.gz
  to main/d/docbook-html-forms/docbook-html-forms_1.1.0-4.debian.tar.gz
docbook-html-forms_1.1.0-4.dsc
  to main/d/docbook-html-forms/docbook-html-forms_1.1.0-4.dsc
docbook-html-forms_1.1.0-4_all.deb
  to main/d/docbook-html-forms/docbook-html-forms_1.1.0-4_all.deb


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



Accepted bitcoin 0.6.2.1-1 (source amd64)

2012-05-10 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 May 2012 14:09:46 +0200
Source: bitcoin
Binary: bitcoind
Architecture: source amd64
Version: 0.6.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Jonas Smedegaard d...@jones.dk
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 bitcoind   - peer-to-peer network based digital currency - daemon
Closes: 667114 668864 668868
Changes: 
 bitcoin (0.6.2.1-1) unstable; urgency=low
 .
   * New upstream release.
 .
   * Add -fpermissive to CXXFLAGS to work around build failure with gcc
 4.7.
 Closes: bug#667114. Thanks to Matthias Klose.
   * Only build on little-endian architectures: Upstream code does not
 support big-endian.
 Closes: bug#668868, #668864. Thanks to Dwayne C. Litzenberger.
Checksums-Sha1: 
 a3793d91e0a0e607ebc1975ec38947a15c4d 2384 bitcoin_0.6.2.1-1.dsc
 50cb50927d745e9c2f295a4e39ae78aa2f96483a 1359499 bitcoin_0.6.2.1.orig.tar.gz
 25085f585bd44a686383b1c75f5eb0639275d390 22070 bitcoin_0.6.2.1-1.debian.tar.gz
 2dbaec61a2119910db692622734c5a1055c9e187 597980 bitcoind_0.6.2.1-1_amd64.deb
Checksums-Sha256: 
 9d825b021d9e278ee93e388ba645e3d3191f5b83167b915b0466c8f6a9af094f 2384 
bitcoin_0.6.2.1-1.dsc
 2dfc6c47dd19b386c5308eb3c61e7459fbc918e7e863328b9bc096810f28bc46 1359499 
bitcoin_0.6.2.1.orig.tar.gz
 796fcb1cc0357296005d433c7de0f5f006811ba73c9230954739d7e320c994f8 22070 
bitcoin_0.6.2.1-1.debian.tar.gz
 6bee445378920373c2f01400d6b80c82c4d8a5b492eb8ab05450ca42346e9aac 597980 
bitcoind_0.6.2.1-1_amd64.deb
Files: 
 763f4ff3f8e407b811b9c8ad71f4969c 2384 utils optional bitcoin_0.6.2.1-1.dsc
 ed7288a032e51622fade49d00324bbdb 1359499 utils optional 
bitcoin_0.6.2.1.orig.tar.gz
 15eccbab02e76a0639a5065f837b 22070 utils optional 
bitcoin_0.6.2.1-1.debian.tar.gz
 cc98e5bb6544a295aa26d963f27ef62b 597980 utils optional 
bitcoind_0.6.2.1-1_amd64.deb

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

iQIcBAEBCgAGBQJPq7njAAoJECx8MUbBoAEhOzYP/25Sd5AfNq/fObS6F+hxTdUR
Hb2Eq9VUTdXzqiQOU41L+uB5WnSYqguW2/NPkXPNt4lFx3a3XQsC4b77I9/Qsrwn
JT/jEH/ZxLRwfiMRxQXv/7J10eL6WGoVwJVxFwrlqCt8a9dWmmGqJiI8gM4UH8h9
PEloE71msKMCIo0hjLiToMDxcuzMkkhemqnriUYpGHrH/N9rvf9+r6olIYdUZPls
+neyJrGDC3bEn0+BzFUrYUDk/vCcSR9Q2Vrthxf3WW4Hm2bW4PPKms0DSs5Tr4yx
BRGFmZeesGC6DeB7uLqT0m6YnhqRQ1mjfapF8eldnAqMZQTdfOPy87MJ9siuoU1u
km3x+c2qU2gyCdeNCCZuNZPAXMCoiD2R8gUlYBzCP9xOPV/OzEHj/oJKZyr1dFoL
cdENiwf+b38+HLNrMXQfft/eDnE6qYGy7vhZuL8Dp1h9gENQ0F+ClSkJN+/Hkv90
2ugFBAbZvRlKxbVVYcAGGRW0BddUREpti8zTFJ7ZFgWdmwHMB+Br03WCZalDqU6M
R/QqCCT43QVQ/zloGjnVaGsUUFyTwLs/tVm3gbXj9wzPQ5hgw4ZzaaVjJhbNOFzs
H5EG2BZyIKY8Y4WtV7dXUQR8j/7FOverxa18bB63mK5zVlqTM+wAhc5xam1IBSwN
J75ip1bKEE193y0h0e+s
=ajh/
-END PGP SIGNATURE-


Accepted:
bitcoin_0.6.2.1-1.debian.tar.gz
  to main/b/bitcoin/bitcoin_0.6.2.1-1.debian.tar.gz
bitcoin_0.6.2.1-1.dsc
  to main/b/bitcoin/bitcoin_0.6.2.1-1.dsc
bitcoin_0.6.2.1.orig.tar.gz
  to main/b/bitcoin/bitcoin_0.6.2.1.orig.tar.gz
bitcoind_0.6.2.1-1_amd64.deb
  to main/b/bitcoin/bitcoind_0.6.2.1-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/e1sstf3-0002ys...@franck.debian.org



Accepted gnome-common 3.4.0.1-1 (source all)

2012-05-10 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 14:54:34 +0200
Source: gnome-common
Binary: gnome-common
Architecture: source all
Version: 3.4.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gnome-common - common scripts and macros to develop with GNOME
Changes: 
 gnome-common (3.4.0.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Refresh debian/patches/03_bashisms.patch.
Checksums-Sha1: 
 9b6f4949ca1d356160791039ca1f3b2291012080 2206 gnome-common_3.4.0.1-1.dsc
 86b98f7e6402f1e864619294f4ac228af9fe3d63 152084 
gnome-common_3.4.0.1.orig.tar.xz
 ee2775154cf337b9f9903bb5f696304c373d4390 6863 
gnome-common_3.4.0.1-1.debian.tar.gz
 f919ddba9a867abb5f440fd40de3dd21b0deecb1 127194 gnome-common_3.4.0.1-1_all.deb
Checksums-Sha256: 
 02ae9de3a02b80f1adf39065c48697bb8eae0062cfd1e63e62b5ee1008c087e3 2206 
gnome-common_3.4.0.1-1.dsc
 3d92a5d1dae550c409f644d87a4bba17342e14fb11ce8b1e58757ce35f3a46f7 152084 
gnome-common_3.4.0.1.orig.tar.xz
 df5ee786a3ed1576faf8b0fd95f214c60bfa9f23231530aac4c350310ecd0f76 6863 
gnome-common_3.4.0.1-1.debian.tar.gz
 4b85f0739adffcc76fd9b12d4eb98f62e7a5518cd9fb24f7d6b4e404a8ccb12e 127194 
gnome-common_3.4.0.1-1_all.deb
Files: 
 bbb3904600e6767b017a2d21b3c0a8e0 2206 gnome optional gnome-common_3.4.0.1-1.dsc
 18480be01c632577002462054062c42b 152084 gnome optional 
gnome-common_3.4.0.1.orig.tar.xz
 0ea0d689189e102820134e0139b5a78b 6863 gnome optional 
gnome-common_3.4.0.1-1.debian.tar.gz
 e3e77f16789e3e4d8d3c8c23e8085fd3 127194 gnome optional 
gnome-common_3.4.0.1-1_all.deb

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

iQIcBAEBCAAGBQJPq7sJAAoJEGrh3w1gjyLcxQoP/A2PoCPKLaDgcKGzjHjXHptf
CTxX/e6uOheD/fS2CpLqTv6SrK7ovNAAgBkj2w1oMTQP48Xc0c+cN0WxNJZ/7MEG
iP81NGdhfiQyVq2SCWAqTfEN19exxD+Rn2u+bqic0Bq0XqkOC6kHB8+zeombK469
xtogW9+wAKVSklWlB1QF2U5ILkXx5Tu3Rq1obpoN/ZcO7WhEw0o9xqBMe9d2hbn/
Sm+6ZGiBTYtlOFT9msj+mH7J5ixQLAAf4/aLe4K4+z3d8Fj3kjr8qiOnelgFtd4S
/+CoYJ8rLYwtwLUm0wRpuLtvfvjiTAal6ds5eLmot9qS1NFJjL74uiG/WaK1/AE3
QNLssDijW61KtaKYIYI15b6D3jIPIt0BwWbHCBtKlLLZfy97HOW/QCxpA/EonTnY
5GXEkvN2t+3Riip2cJIDXn2Z6WYvmS2LdFIfoO4ujP0qn9d//XcRgpBqaW8Uljna
t5ncyrGxoCsBuZWLaWdSKZde95+0A1yqaf1rwyqAQUfnDpRRo3x1geNbI97P+R1U
Gh0ThEoGiMQI96oiT15Ytce2ebZ7/yDlIPLfuWPK2ZAJ2p4y4i+csAlDLnoY+SUr
w3MSk7mgxLfA3jn2fs0OtjDwUOdxbxQgSSTXcwD7BaUJa8aNdvjdbtA+RtsujEbD
CMqSIbOaENsg8kMXiQ0z
=jxLc
-END PGP SIGNATURE-


Accepted:
gnome-common_3.4.0.1-1.debian.tar.gz
  to main/g/gnome-common/gnome-common_3.4.0.1-1.debian.tar.gz
gnome-common_3.4.0.1-1.dsc
  to main/g/gnome-common/gnome-common_3.4.0.1-1.dsc
gnome-common_3.4.0.1-1_all.deb
  to main/g/gnome-common/gnome-common_3.4.0.1-1_all.deb
gnome-common_3.4.0.1.orig.tar.xz
  to main/g/gnome-common/gnome-common_3.4.0.1.orig.tar.xz


-- 
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/e1sstfw-0002gk...@franck.debian.org



Accepted node-expat 1.5.0-2 (source amd64)

2012-05-10 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 May 2012 14:42:55 +0200
Source: node-expat
Binary: node-node-expat
Architecture: source amd64
Version: 1.5.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 node-node-expat - fast XML parser library for Node
Closes: 670678
Changes: 
 node-expat (1.5.0-2) unstable; urgency=low
 .
   * Use anonscm.debian.org for Vcs-Browser field.
   * Relax timing tolerance of test to avoid failure on slow
 architectures.
 Closes: bug#670678. Thanks to Aaron M. Ucko.
Checksums-Sha1: 
 2ee8984aef04e23ac0419f82a957e3fbe24678d3 1996 node-expat_1.5.0-2.dsc
 8390da0702df576cf17599ce5fddf0b952fc7628 4396 node-expat_1.5.0-2.debian.tar.gz
 455f8113701f0f5cebe880ac3f429771bcb351d3 25966 
node-node-expat_1.5.0-2_amd64.deb
Checksums-Sha256: 
 44c12a606f29a8d10bae49e702fc18c6abe7f32df7cda09b47db286b22e1f260 1996 
node-expat_1.5.0-2.dsc
 45fada20b9e9816d14aada23bfe57caf1d35e3f9eb14de66bd23bc5a9bac7b35 4396 
node-expat_1.5.0-2.debian.tar.gz
 c0925abc18b4d24afb529b9b05d5b310bad30dc1e78badbc0f6f67a1198962d2 25966 
node-node-expat_1.5.0-2_amd64.deb
Files: 
 9683343d5de99a827b3b7fd51f841672 1996 web optional node-expat_1.5.0-2.dsc
 54f0d4f6588930733797a112bca4bab0 4396 web optional 
node-expat_1.5.0-2.debian.tar.gz
 0054ee1f22c40c5632cbbe4a32dd4ee2 25966 web optional 
node-node-expat_1.5.0-2_amd64.deb

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

iQIcBAEBCgAGBQJPq7nPAAoJECx8MUbBoAEhdMcP/joVVLzsw0vReQ5GYu9GyuHb
wXrT62UGu4QlZR5OcFUvA4GFwMmcPsCALqsRUoGKcjJx3sxiDNot2gUt54QAL7Sn
zgqC/PZavIMdq/fvjw5VAf0PE4LgjRGkmT+E3w0WHnfVbra6XHmQRGQni82cD+ar
Qv/8Xez0slVFKpRZo3UFHNSoGPzJ63ix1yfgLaM2iCU8df891JGe4kOePYtOYsXF
TZghy7Q7ESkLtUGJ8yb8dtDnWvtWlFnng+vMKP+GVkG6mHqX549a5dk6mqAi210l
+ynqXn3VeQYeHHUgD3wQoCh+wU1PeOdEVg8IBHWpI71xYxnTodlpUnOmjk9OOdxP
oW/rSwRFpDZw8Vfg061+Gw8pbZGSRW1YfPqCUPQDb/MKx9lpGSJnSktEmZJ5Qok5
iTDF7MS/ijxLP32LQyHMO8ah1JXRByHXWUU0kDVDaJhS3DGQiObaMv9LSsKxxo2a
9jaDlYCgn7ROUemIHm89424OrbWLKxhP2kIFqlpimT1d7ThMZrLfNZeHOBQGGNYF
VHio+4g8kTO2/OZofH/BW6IEWFDDmK7AIylf/pPX+nyBI+Ba9E97MhozIEiKopok
q0D2UhGl4+KRFCgV3YL2mUvPbyfSAkvQ5t/Kts2rreoVow8qsbiRH0NLJLGvIJ6b
tZCb7zLK3ni/xDaz9JJ4
=cSXz
-END PGP SIGNATURE-


Accepted:
node-expat_1.5.0-2.debian.tar.gz
  to main/n/node-expat/node-expat_1.5.0-2.debian.tar.gz
node-expat_1.5.0-2.dsc
  to main/n/node-expat/node-expat_1.5.0-2.dsc
node-node-expat_1.5.0-2_amd64.deb
  to main/n/node-expat/node-node-expat_1.5.0-2_amd64.deb


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



Accepted ruby-minitest 3.0.0-1 (source all)

2012-05-10 Thread Cédric Boutillier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 14:24:59 +0200
Source: ruby-minitest
Binary: ruby-minitest
Architecture: source all
Version: 3.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Cédric Boutillier cedric.boutill...@gmail.com
Description: 
 ruby-minitest - Ruby test tools supporting TDD, BDD, mocking, and benchmarking
Changes: 
 ruby-minitest (3.0.0-1) unstable; urgency=low
 .
   * New upstream version
   * Refresh debian/patch/disable-some-tests patch
Checksums-Sha1: 
 45f07b29f4c543662f072da9fbf2525a2bb0aa00 2106 ruby-minitest_3.0.0-1.dsc
 2226d1d423d5c76b1bb36d1058ae14ea09e13d01 45420 ruby-minitest_3.0.0.orig.tar.gz
 19f3035ae2c79e7270b48f0dad932ac39669b90d 3402 
ruby-minitest_3.0.0-1.debian.tar.gz
 f3fa57aea4a0677f12646f4dc156d3913cd11167 33030 ruby-minitest_3.0.0-1_all.deb
Checksums-Sha256: 
 ecd04687a6814bf26feede41c36da6066d98bd46aad160cfa1d58725e3ae6f08 2106 
ruby-minitest_3.0.0-1.dsc
 915ec32188ae5d31b1080a80a00b7ebb05d071f175bb58d46a27ce965410cf07 45420 
ruby-minitest_3.0.0.orig.tar.gz
 2b4365eaaa332f0a5553b8f17d498c15c54464334d5ba7ce3d7f79aa30accff3 3402 
ruby-minitest_3.0.0-1.debian.tar.gz
 f0d41bb152abb34745e8f6b87dba64e42a12e8b452d048fcaf90bb4f50899b3a 33030 
ruby-minitest_3.0.0-1_all.deb
Files: 
 c65211078092ec72b6c27a0e6f7e0a96 2106 ruby optional ruby-minitest_3.0.0-1.dsc
 2af64c47f9dfdece9ec2513441293a4f 45420 ruby optional 
ruby-minitest_3.0.0.orig.tar.gz
 67abbebdc53ce4afc7c63023cc43cad4 3402 ruby optional 
ruby-minitest_3.0.0-1.debian.tar.gz
 27b53b07ac6c572f8de73bf670ac975d 33030 ruby optional 
ruby-minitest_3.0.0-1_all.deb

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

iQIcBAEBCAAGBQJPq7reAAoJENpJWPYR4UnpAksQAI34eDUbG4urUnTW82qB6RrT
m+Zpv1wtOSWevPudqlZ1J+myuzOy1p1QeDoMcnxRS68nONsOIRM1/SJHMatE55a0
98b9spMRs5UH/tDzLvuEGYsJjw4eg7ddU5WKAVXRk5jQmcboxf1NCW3ZEv+eSq4L
0quFQmLyoAj/2zGVbgorxzr/pDrR4qmjjXgJAQB/CfPRxnD8ua36epuDmrw8NNsD
2Q0syW/fpUlqxsYrBZ93vMaKPXB+bEwnAlwYjG/J72u8YB4+SWb7lXIZKc34T6aj
cz7+sYqKZIOQfc4gz0PmpSm0hCjX7YT/o4YqAfhl7RM0C+7WXG+M47SwxlAPV+xm
vlI4wt+8BZSZM693pxqf/xY88Qe6VaNWJ/h35BO3HZ4Rh19eq0NPS0ACaeFUcKjz
K4WlA9tdnf+Frj7ixgXVdHuNCJYQd6kG7NsSrE2WwVrDu3jET8546K1QK1UAEdCO
SIw3zG1miIi+20lK+PP/0uV5mVWZBBC0Q2m6NL4Zzxru3XutCPVwN/M4uiut9Oqi
WpuuPKONAWAICf4US34uGyAHbxhQ9xNknpmYbTajnqiRuqd0MiTJfNu6HeQ9D6fR
fqj3HVdadBaOt7MnZWAok34A44SgsOlMawuYWdTVer3gMNsAcgEfsTF63Vc7NtMm
nn/x5txCNuQRg9AQQ6h6
=thtJ
-END PGP SIGNATURE-


Accepted:
ruby-minitest_3.0.0-1.debian.tar.gz
  to main/r/ruby-minitest/ruby-minitest_3.0.0-1.debian.tar.gz
ruby-minitest_3.0.0-1.dsc
  to main/r/ruby-minitest/ruby-minitest_3.0.0-1.dsc
ruby-minitest_3.0.0-1_all.deb
  to main/r/ruby-minitest/ruby-minitest_3.0.0-1_all.deb
ruby-minitest_3.0.0.orig.tar.gz
  to main/r/ruby-minitest/ruby-minitest_3.0.0.orig.tar.gz


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



Accepted w3-dtd-mathml 2.0.0.0-3 (source all)

2012-05-10 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 14:39:59 +0200
Source: w3-dtd-mathml
Binary: w3-dtd-mathml
Architecture: source all
Version: 2.0.0.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian XML/SGML Group debian-xml-sgml-p...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 w3-dtd-mathml - Mathematical Markup Language V2.0 DTD
Closes: 540562
Changes: 
 w3-dtd-mathml (2.0.0.0-3) unstable; urgency=low
 .
   * Set maintainer to Debian XML/SGML Group, as myself as Uploaders
   * Set Std-Vers to 3.9.3, no changes needed
   * debian/control (Vcs-Browser): Fixed location.
 (Uploaders): Removed Mark Johnson, who is probably MIA (closes: #540562).
 Many thanks for your work!
   * d/rules: refactor code using dh(7)
   * d/watch: added
Checksums-Sha1: 
 43bdfd361789be79552d899e93fc59f2fd51072d 1845 w3-dtd-mathml_2.0.0.0-3.dsc
 4607fca910b1c908c546184d26e3beff0d6d3049 2705 
w3-dtd-mathml_2.0.0.0-3.debian.tar.gz
 63c019a54414233bd0cac06b7ff47f79809fcf51 106508 w3-dtd-mathml_2.0.0.0-3_all.deb
Checksums-Sha256: 
 1f794433c89a01fcbfafd6d4aa1d7061960c42aacfb6f05990b8a90bb597361f 1845 
w3-dtd-mathml_2.0.0.0-3.dsc
 0f8caf6223d3b1c41640f07f03f1f54980ba0d972c39f28f04f212f453ce9685 2705 
w3-dtd-mathml_2.0.0.0-3.debian.tar.gz
 2880dddcf8335cf6e2c8c6d5ce4f168f8b09bad96f1118b916a1b903f08e8cfc 106508 
w3-dtd-mathml_2.0.0.0-3_all.deb
Files: 
 295bbba047c3c958b9cb6fbc3413cb1a 1845 text optional w3-dtd-mathml_2.0.0.0-3.dsc
 8f8938db8b2d9477f6610b13bb2c2d39 2705 text optional 
w3-dtd-mathml_2.0.0.0-3.debian.tar.gz
 32e9c23fa707a1a4bfea807bc491e137 106508 text optional 
w3-dtd-mathml_2.0.0.0-3_all.deb

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

iQIcBAEBAgAGBQJPq7grAAoJEAFx4YKK4JNFapwQAJ7iC+mDCE2T5RxPu2zB01XD
HaExzh6kIULNz62EDL98+YWdw0O1JPzGbYG+cjaLgWGRAtgMOU8o+k6O8KGDpfdM
ZnzFVKsdaBrThnA6AB3oazsUBdEFahMTsQSaPfAbqAI5KukEvzN9Kfa5G6uVCq9b
oYcXEXswWvDG/x4u4ewoni2hyQQXxL5n0R3CO1luZwQ/uZPKKDY4InoEj3mXVxmm
Zv6uMN4VsLBwzMbUF1xVKSdKI/U3YiG9LtFPTENkVHcB4h8wJNMqD4wxHdgCuqKY
OB+IdS5CUNc5n0o7djkU5WbeT5xTKFi1VVLu4sxb11DJ8bMA+9EZP1WNVLAjnACt
gKXnEwcEoJEOWOOSxbCQ1NQ6UQSpA+bNB9t2bJeQsMsO9jdawesMEgYBplivyGqv
z6SAbEgku8sZy3CCjJViZUNyFSBQ02H8OY6WxbpjX44v2qOMRtwSRvgq+vPx8NWI
BBhdTeqlbKJzHpwNdjVymp3cnXYu9S2oHgy/WZI8Y5f/2WnCELjh1MOkJV3j5kIC
Qa766v2vOOOKfCaRkiz78toleT0/b5nDaXECQe0D4vRA82ipRgllQQj4zSOg4TVv
qGz0Uxa6wwdrKMw0382eXaN0/KuZjRDb5/m87fnwF6rrCLLbA0hiy+OibxqxSHvw
rOgPE7F+K5CqlDdrUgkP
=Eu+8
-END PGP SIGNATURE-


Accepted:
w3-dtd-mathml_2.0.0.0-3.debian.tar.gz
  to main/w/w3-dtd-mathml/w3-dtd-mathml_2.0.0.0-3.debian.tar.gz
w3-dtd-mathml_2.0.0.0-3.dsc
  to main/w/w3-dtd-mathml/w3-dtd-mathml_2.0.0.0-3.dsc
w3-dtd-mathml_2.0.0.0-3_all.deb
  to main/w/w3-dtd-mathml/w3-dtd-mathml_2.0.0.0-3_all.deb


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



Accepted gtk+3.0 3.4.2-1 (source all amd64)

2012-05-10 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 14:44:28 +0200
Source: gtk+3.0
Binary: libgtk-3-0 libgtk-3-0-udeb libgtk-3-common libgtk-3-bin libgtk-3-dev 
libgtk-3-0-dbg libgtk-3-doc gtk-3-examples gir1.2-gtk-3.0 libgail-3-0 
libgail-3-dev libgail-3-0-dbg libgail-3-doc
Architecture: source all amd64
Version: 3.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gir1.2-gtk-3.0 - GTK+ graphical user interface library -- gir bindings
 gtk-3-examples - example files for GTK+ 3
 libgail-3-0 - GNOME Accessibility Implementation Library -- shared libraries
 libgail-3-0-dbg - Gail libraries and debugging symbols
 libgail-3-dev - GNOME Accessibility Implementation Library -- development files
 libgail-3-doc - documentation files of the Gail library
 libgtk-3-0 - GTK+ graphical user interface library
 libgtk-3-0-dbg - GTK+ libraries and debugging symbols
 libgtk-3-0-udeb - GTK+ graphical user interface library - minimal runtime 
(udeb)
 libgtk-3-bin - programs for the GTK+ graphical user interface library
 libgtk-3-common - common files for the GTK+ graphical user interface library
 libgtk-3-dev - development files for the GTK+ library
 libgtk-3-doc - documentation for the GTK+ graphical user interface library
Changes: 
 gtk+3.0 (3.4.2-1) unstable; urgency=low
 .
   * New upstream release.
   * Simplify shlibs version information for libgail-3-0 and no longer create a
 dependency on libgail-3-common, this package has been dropped in 3.2.
Checksums-Sha1: 
 53024c8c846382ba0d6b0c188ac66340ae4e567e 3411 gtk+3.0_3.4.2-1.dsc
 ff6cc08d51f666b6d19eba159b2103751398ae7c 12839736 gtk+3.0_3.4.2.orig.tar.xz
 d318d6d05822c909b20d46cb3eb20912f9e4595d 88563 gtk+3.0_3.4.2-1.debian.tar.gz
 99f3297941d340d7c81e7308ac361c235324fa54 6420624 
libgtk-3-common_3.4.2-1_all.deb
 432649c241419e2a865ef0d92653938c9d13e032 2856448 libgtk-3-doc_3.4.2-1_all.deb
 4ffd0adb4c1f44c6253cf0e6c1e49349995d1eaa 62390 libgail-3-doc_3.4.2-1_all.deb
 acbe25b678685a72774d5bd43f05c0015a91497d 2343120 libgtk-3-0_3.4.2-1_amd64.deb
 6ec3e67c6fde6da1c8c4231ac0ed987756849799 2151958 
libgtk-3-0-udeb_3.4.2-1_amd64.udeb
 e950222cc32cbf165454360c09a9da6b443fc602 56102 libgtk-3-bin_3.4.2-1_amd64.deb
 36d0663b01974bffbf1a9db74ab90db83f506dad 1068294 libgtk-3-dev_3.4.2-1_amd64.deb
 8f10536dbba2d58675d3e7be8548d32e47b2cb3e 7691464 
libgtk-3-0-dbg_3.4.2-1_amd64.deb
 8297d2970698005b030374caef1fa325d7226db6 334074 
gtk-3-examples_3.4.2-1_amd64.deb
 28f898317ca2d6b3aac2718875198011c41ce7d6 275208 
gir1.2-gtk-3.0_3.4.2-1_amd64.deb
 d629d41c2de67f835b8d1186114c1322566863eb 64262 libgail-3-0_3.4.2-1_amd64.deb
 5efcbfa39efed6b950f3aca5406ef73003efd196 54252 libgail-3-dev_3.4.2-1_amd64.deb
 70dc5468f91eabfd378a5e1b1a9e58dc95b2241f 79898 
libgail-3-0-dbg_3.4.2-1_amd64.deb
Checksums-Sha256: 
 c2103c8d993c65e33a55c98de16f35e6b7da769d5b10874dad72be064b0417f0 3411 
gtk+3.0_3.4.2-1.dsc
 b1ab72bc61434418160ff0c7edfd93c74758ed8a35e2ed3d07e3e218c2705480 12839736 
gtk+3.0_3.4.2.orig.tar.xz
 67938c4a5d5e6c2f520028f0c7411ce7acb426824a077f8c0d44c089af9830d1 88563 
gtk+3.0_3.4.2-1.debian.tar.gz
 b65f51b69d47c8640c490234809a720e53cef9786faf0190ef4caa1222fdc321 6420624 
libgtk-3-common_3.4.2-1_all.deb
 258bf623b1b872bfac0a53f0a75f23b373519c6e13e2a679d92abff97cdd424e 2856448 
libgtk-3-doc_3.4.2-1_all.deb
 635c78145ce8a1e3623ee8335d27a2f219ac6de10b4d9ee4eaef466fe4a18b69 62390 
libgail-3-doc_3.4.2-1_all.deb
 3646b610b84fe19a9b05e37388e95e12c517b798a4b394a721aaddfbe1cf8d20 2343120 
libgtk-3-0_3.4.2-1_amd64.deb
 184ad33ac0b7d787ca64eda55530277120ad452a70f751a86b62c1a5d0e7da47 2151958 
libgtk-3-0-udeb_3.4.2-1_amd64.udeb
 24f19a4686f0ebbb0511223841d483e5e177e059a883105aa508a03b361628ab 56102 
libgtk-3-bin_3.4.2-1_amd64.deb
 7f5f46e15d00632ef63f73f7ec6d051610d89a1fd85fdbc7156cb23437c30175 1068294 
libgtk-3-dev_3.4.2-1_amd64.deb
 1019b343baa54379d7e84830bc69776a7df80f54eeda6217cbcfaf463a1bd65e 7691464 
libgtk-3-0-dbg_3.4.2-1_amd64.deb
 cec648466b7f1791bebedc249e743631dd61b92b0ad3aa6ba2c6f0f1fd193116 334074 
gtk-3-examples_3.4.2-1_amd64.deb
 1b47bec4c273eee9d6ed6ab03a8ab5f9e1894d1c118d2eaf73f6ce1dc449b21f 275208 
gir1.2-gtk-3.0_3.4.2-1_amd64.deb
 844752c5693476ff24c3942f5a3540a20dc41e28a40f2e708fbcf3709550ed7a 64262 
libgail-3-0_3.4.2-1_amd64.deb
 dd0f3030732d6c4b6ef621b4995ffae0aa4d401cdbf7ddabdecb91a6a279f1b8 54252 
libgail-3-dev_3.4.2-1_amd64.deb
 4f1feeb049f348973142bcc104f929a1d8a96fdcc8de56769e7b479ef621a324 79898 
libgail-3-0-dbg_3.4.2-1_amd64.deb
Files: 
 941f17478cb1bc710acb3904d09e2eea 3411 libs optional gtk+3.0_3.4.2-1.dsc
 9e20443fbaa3ba3e9cbd2fc44d6be121 12839736 libs optional 
gtk+3.0_3.4.2.orig.tar.xz
 998bfe74fa721be7b0bb97445bce6467 88563 libs optional 
gtk+3.0_3.4.2-1.debian.tar.gz
 aa1814f9a8328ba060f797d0e0cf212f 6420624 misc optional 
libgtk-3-common_3.4.2-1_all.deb
 fdc2e98d7aadd71e6d7a2ced4f7b9201 2856448 doc 

Accepted netpipe 3.7.2-7 (source i386)

2012-05-10 Thread Camm Maguire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 13:15:48 +
Source: netpipe
Binary: netpipe-tcp netpipe-lam netpipe-openmpi netpipe-mpich2 netpipe-pvm
Architecture: source i386
Version: 3.7.2-7
Distribution: unstable
Urgency: low
Maintainer: Camm Maguire c...@debian.org
Changed-By: Camm Maguire c...@debian.org
Description: 
 netpipe-lam - Network performance tool using LAM MPI
 netpipe-mpich2 - Network performance tool using MPICH2 MPI
 netpipe-openmpi - Network performance tool using OpenMPI
 netpipe-pvm - Network performance tool using PVM
 netpipe-tcp - Network performance tool using the TCP protocol
Changes: 
 netpipe (3.7.2-7) unstable; urgency=low
 .
   * prioity set to extra
Checksums-Sha1: 
 875aa5b0864a1992ff590c53b0f62b0a58d05956 1359 netpipe_3.7.2-7.dsc
 a56b6cd579d15982d14cefd8589360838e148606 12899 netpipe_3.7.2-7.debian.tar.gz
 55bb5fb705673b7d488594333f12d3719f8a158b 92730 netpipe-tcp_3.7.2-7_i386.deb
 c3a3607c8ec81c83d7415ee08627363f4b42e0d1 95338 netpipe-lam_3.7.2-7_i386.deb
 e1faade4b502775781b9be1c6424df54da145aa7 96648 netpipe-openmpi_3.7.2-7_i386.deb
 c876b12c3ac491aef1b31f8db9c9c094df91f25b 91420 netpipe-mpich2_3.7.2-7_i386.deb
 0148cc1e2da5c23e7776611146613fe920c28477 91022 netpipe-pvm_3.7.2-7_i386.deb
Checksums-Sha256: 
 59ea7f846550008009f428fb93f63b78b7d28f0382aa0540a33faac19a1d79dd 1359 
netpipe_3.7.2-7.dsc
 4d872baf9cbb26837eb8aca38eaeb719a197cfb3b5c78548adcd55ea0a3a36cd 12899 
netpipe_3.7.2-7.debian.tar.gz
 807d425fcc08749367d9ca2b0c1554194d027a5ca786579bfdd5654d925cec8f 92730 
netpipe-tcp_3.7.2-7_i386.deb
 3ceca9cc25ce2850a76cf53a4e7543a61e0cfc011fecfaeaaacb80b49b2e4f8e 95338 
netpipe-lam_3.7.2-7_i386.deb
 da5040bfb981fe1ed8bdc4da69fab41f9249d9e9e0680e940c9f399e2f2a5b5e 96648 
netpipe-openmpi_3.7.2-7_i386.deb
 dc30b2e2408d78fd5742b1f59c849083e578d68ecc7713892c9401e3999e40f3 91420 
netpipe-mpich2_3.7.2-7_i386.deb
 9b050aa52905c66ea2d8b8f4dd8ae6f46530af80afc7611fe6e24a74a46e6c41 91022 
netpipe-pvm_3.7.2-7_i386.deb
Files: 
 7d4367754363b227aef476e59422eaaf 1359 net extra netpipe_3.7.2-7.dsc
 441214fafd6bad4dbb332caee606a507 12899 net extra netpipe_3.7.2-7.debian.tar.gz
 91af8aa3a4c1baaa06c1e5f7899d5cd3 92730 net extra netpipe-tcp_3.7.2-7_i386.deb
 a036b50cef6a8feb33ca85954de6b0bb 95338 net extra netpipe-lam_3.7.2-7_i386.deb
 f2a75a6d9ded8a858be6d44b25518348 96648 net extra 
netpipe-openmpi_3.7.2-7_i386.deb
 5aa8f2aedd2ef748b97dc70171736ec8 91420 net extra 
netpipe-mpich2_3.7.2-7_i386.deb
 5d93cf1f8a860a32020d656af22afe92 91022 net extra netpipe-pvm_3.7.2-7_i386.deb

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

iEYEARECAAYFAk+rv98ACgkQczG1wFfwRdzhswCeKY83s5jLtDbTbeafZNvUsVNu
PoQAnjKIfAgFt3u7Y06/P8DaVoW8L1k9
=2DCV
-END PGP SIGNATURE-


Accepted:
netpipe-lam_3.7.2-7_i386.deb
  to main/n/netpipe/netpipe-lam_3.7.2-7_i386.deb
netpipe-mpich2_3.7.2-7_i386.deb
  to main/n/netpipe/netpipe-mpich2_3.7.2-7_i386.deb
netpipe-openmpi_3.7.2-7_i386.deb
  to main/n/netpipe/netpipe-openmpi_3.7.2-7_i386.deb
netpipe-pvm_3.7.2-7_i386.deb
  to main/n/netpipe/netpipe-pvm_3.7.2-7_i386.deb
netpipe-tcp_3.7.2-7_i386.deb
  to main/n/netpipe/netpipe-tcp_3.7.2-7_i386.deb
netpipe_3.7.2-7.debian.tar.gz
  to main/n/netpipe/netpipe_3.7.2-7.debian.tar.gz
netpipe_3.7.2-7.dsc
  to main/n/netpipe/netpipe_3.7.2-7.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/e1sstvs-0005us...@franck.debian.org



Accepted xmpi 2.2.3b8-13 (source i386)

2012-05-10 Thread Camm Maguire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 13:20:45 +
Source: xmpi
Binary: xmpi libxmpi4 libxmpi4-dev
Architecture: source i386
Version: 2.2.3b8-13
Distribution: unstable
Urgency: low
Maintainer: Camm Maguire c...@debian.org
Changed-By: Camm Maguire c...@debian.org
Description: 
 libxmpi4   - Graphical user interface for MPI program development
 libxmpi4-dev - Graphical user interface for MPI program development
 xmpi   - Graphical user interface for MPI program development
Changes: 
 xmpi (2.2.3b8-13) unstable; urgency=low
 .
   * priority set to extra
Checksums-Sha1: 
 40348965e3e832d5cc60a6d6382cc1242200a3ab 1165 xmpi_2.2.3b8-13.dsc
 a3eaea640f2e64e3b7510ea62f0798c7e90823e3 91626 xmpi_2.2.3b8-13.debian.tar.gz
 a949f73e620869184b929b96f7c92478e6e9 96264 xmpi_2.2.3b8-13_i386.deb
 10b74514cbd17fb800db906feb5e0713f87d57ee 40620 libxmpi4_2.2.3b8-13_i386.deb
 229ba1d1ca5510a902a938cfbded0f0e31adb5cc 97276 libxmpi4-dev_2.2.3b8-13_i386.deb
Checksums-Sha256: 
 3ec7815660ea26dbe88e3dcb1744ecc51894b7a7b9cd85d9f3ca71cc490f729f 1165 
xmpi_2.2.3b8-13.dsc
 f8cff854087ca121a753711f115b353719c644ef7bd4eaf493d74946c332db56 91626 
xmpi_2.2.3b8-13.debian.tar.gz
 14bf2d4d20ae7ce78f67f7de99fea357945fd5c0d6d1b1b7254a8ec54a0286fa 96264 
xmpi_2.2.3b8-13_i386.deb
 f419ee4b7df0f45e599e26fe6a8f92442991ea2f33b1f82aaadf3c6ba555d65c 40620 
libxmpi4_2.2.3b8-13_i386.deb
 c0cd60c57f490ec565b34504f4f0116748770812d7d3a3771b3b844cc6889995 97276 
libxmpi4-dev_2.2.3b8-13_i386.deb
Files: 
 a7746b2e9db5fd70efd23a39117660fd 1165 devel extra xmpi_2.2.3b8-13.dsc
 6dc7fb7d2a6cf176b4a3f299e7c05f9b 91626 devel extra 
xmpi_2.2.3b8-13.debian.tar.gz
 17622eed1e9f9405afcbb7e9efed6c14 96264 devel extra xmpi_2.2.3b8-13_i386.deb
 4622f282a88b7f4987497d69e18342b8 40620 libs extra libxmpi4_2.2.3b8-13_i386.deb
 7379b7cee8d75eebbf2bdea37f1a5646 97276 libdevel extra 
libxmpi4-dev_2.2.3b8-13_i386.deb

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

iEYEARECAAYFAk+rwRYACgkQczG1wFfwRdwSewCeL0GTao7NZnNHqbWFmQmP0Xqy
tVkAniS+IGLVwsNCQskJ/P3sxlFWuh2n
=fbIT
-END PGP SIGNATURE-


Accepted:
libxmpi4-dev_2.2.3b8-13_i386.deb
  to main/x/xmpi/libxmpi4-dev_2.2.3b8-13_i386.deb
libxmpi4_2.2.3b8-13_i386.deb
  to main/x/xmpi/libxmpi4_2.2.3b8-13_i386.deb
xmpi_2.2.3b8-13.debian.tar.gz
  to main/x/xmpi/xmpi_2.2.3b8-13.debian.tar.gz
xmpi_2.2.3b8-13.dsc
  to main/x/xmpi/xmpi_2.2.3b8-13.dsc
xmpi_2.2.3b8-13_i386.deb
  to main/x/xmpi/xmpi_2.2.3b8-13_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/e1sstwu-0005bx...@franck.debian.org



Accepted eog-plugins 3.4.0-1 (source amd64)

2012-05-10 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 15:08:48 +0200
Source: eog-plugins
Binary: eog-plugins
Architecture: source amd64
Version: 3.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 eog-plugins - set of plugins for eog
Closes: 653258
Changes: 
 eog-plugins (3.4.0-1) unstable; urgency=low
 .
   [ Josselin Mouette ]
   * Replace python-gobject by python-gi.
 .
   [ Martin Pitt ]
   * debian/control.in: Bump clutter and eog dependencies as per configure.ac.
   * debian/copyright: Rewrite using copyright 1.0 format.
   * debian/control.in: Bump to Standards-Version 3.9.3.
   * debian/control.in: Add Enhances: eog (Closes: #653258, LP: #697406)
 .
   [ Michael Biebl ]
   * New upstream release.
   * Set pkg-gnome-maintain...@lists.alioth.debian.org as Maintainer.
   * Add Build-Depends on gsettings-desktop-schemas-dev and a Depends on
 gsettings-desktop-schemas for the org.gnome.desktop.interface gsettings
 schema file used by the pythonconsole plugin.
Checksums-Sha1: 
 0a7edc34d8ae2881536749f068912795cfc603b9 2443 eog-plugins_3.4.0-1.dsc
 59f6696a2ac6b07eabf424d9bda98bf70f1a6599 316116 eog-plugins_3.4.0.orig.tar.xz
 763812a266348f2abe6171ff77131ad245b63b4d 3744 eog-plugins_3.4.0-1.debian.tar.gz
 3a1deceb1ef5cf74aa1ac4ac06b71d5ee6a21be6 154290 eog-plugins_3.4.0-1_amd64.deb
Checksums-Sha256: 
 b1d47ac4c507d9bc8838acfbe5b85c616d6d5ffbd072073fcd610bea2955e511 2443 
eog-plugins_3.4.0-1.dsc
 21a63f8f6e3a5b30f2f05133edc46becd4c83343c0f462a345204326071bc139 316116 
eog-plugins_3.4.0.orig.tar.xz
 ec7cf2a0470b8dd97dac8fa2ffb33ac571d1ce504da4cb5b9daaea30c8ab6599 3744 
eog-plugins_3.4.0-1.debian.tar.gz
 83d3d57130ee0ae12833942e8b4c90024d121753f448d36422b1fc8c808e3160 154290 
eog-plugins_3.4.0-1_amd64.deb
Files: 
 1f6bd0814a6c305ea58f447ab56ca95d 2443 gnome optional eog-plugins_3.4.0-1.dsc
 f568dd90e5f47040f081199b23350c2a 316116 gnome optional 
eog-plugins_3.4.0.orig.tar.xz
 540f9747e541f07dea768388723033a3 3744 gnome optional 
eog-plugins_3.4.0-1.debian.tar.gz
 550d2d5ac9ac31e129f8b6578f1b5825 154290 gnome optional 
eog-plugins_3.4.0-1_amd64.deb

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

iQIcBAEBCAAGBQJPq8IlAAoJEGrh3w1gjyLc20cP/RkSSwFG/GqellUDxtaovzL1
Mm39H6qMvOPgwlUYjcZICeH94vxUM6h2FF6BSTTtFskrelMrQ7s0ef+P+pUTi2WF
Ss7KhKRMOYiguxvg6h7Gv0MqxAmEl6K0OyRcxeM20QKducACIFdIrPGXaYI6xcKy
K/SPCckjLEYe/ZuchTElsAzMV1xS8S6lV1aRkhIGsWT0V/CAcEqA54LIr80ZYbTa
lqTNv0GdGdFgRm0L+aIORKoyZg6oE8xIFfAoriIMFByfwIN+cV1rLWVSkZTU4u3s
HGk8UQFEPr4QCLIB12d2o2Xz4HMX28zu/re0d97tVCQ42Yj5MT6xlC5tysg36OU1
7qcC2a29XFbnHwaMgP7/cKrjYPuESj86YQ+Mb8nBpgcNpmPERijFzeV/cpRFmoLX
lqGTk/rrpI9Kdw9YnPxEg1/3jZo2OqmZmqUy8YWdmSDieiO41704asYvcHkr2e86
DmpRX12+6z6veA2mxJP0eFvF5+yAa2KlMwWXXX3240oakRxBYFnkbfmQ1oX0f+yF
zpWaDp8EgKfEGkGa84kY9UTS/Lob6HWNouXvxqzgIJMM6skRX2zQaObXS9RFNnX+
WOab1aHUOZRW0LtOZfkQISz9hTjvx3VotpQFmUXXjzTr/8kZu6lV5uRf2mmhk2Rb
X0ZCeymuO/CA5gTfskog
=+o5G
-END PGP SIGNATURE-


Accepted:
eog-plugins_3.4.0-1.debian.tar.gz
  to main/e/eog-plugins/eog-plugins_3.4.0-1.debian.tar.gz
eog-plugins_3.4.0-1.dsc
  to main/e/eog-plugins/eog-plugins_3.4.0-1.dsc
eog-plugins_3.4.0-1_amd64.deb
  to main/e/eog-plugins/eog-plugins_3.4.0-1_amd64.deb
eog-plugins_3.4.0.orig.tar.xz
  to main/e/eog-plugins/eog-plugins_3.4.0.orig.tar.xz


-- 
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/e1sstif-0006as...@franck.debian.org



Accepted kdesvn 1.5.5-4.1 (source amd64)

2012-05-10 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 05 May 2012 15:08:08 +0200
Source: kdesvn
Binary: libsvnqt6 libsvnqt-dev kdesvn kdesvn-kio-plugins kdesvn-dbg
Architecture: source amd64
Version: 1.5.5-4.1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 kdesvn - Subversion client with tight KDE integration
 kdesvn-dbg - debug symbols for kdesvn
 kdesvn-kio-plugins - Subversion I/O slaves for KDE
 libsvnqt-dev - Qt wrapper library for Subversion (development files)
 libsvnqt6  - Qt wrapper library for Subversion
Closes: 667221
Changes: 
 kdesvn (1.5.5-4.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix ftbfs with GCC-4.7: add patch fix-ftbfs-gcc-4.7-667221.patch from
 Paul Tagliamonte (missing header include).
 Closes: #667221
Checksums-Sha1: 
 b8da90ad3c1be76630c41fa67fa23623141334dc 2221 kdesvn_1.5.5-4.1.dsc
 da0f1a85d8fd26e4a06c691af3f648c041d747e2 13363 kdesvn_1.5.5-4.1.debian.tar.gz
 85b6b651bf6ed6c7a45f3efbefacc1189fc8b9d0 198470 libsvnqt6_1.5.5-4.1_amd64.deb
 8b7af5e5b7fd1429b758e7aea79b4295adf962b0 46642 libsvnqt-dev_1.5.5-4.1_amd64.deb
 6d11dc0259edb3c52bb97a49c7422dc6a376459e 2154400 kdesvn_1.5.5-4.1_amd64.deb
 d068b46a35e401149011e571a5c2e2e8ea7787c2 221884 
kdesvn-kio-plugins_1.5.5-4.1_amd64.deb
 82629454ced926a4890d3ef8af8cee21aba9041e 10923512 
kdesvn-dbg_1.5.5-4.1_amd64.deb
Checksums-Sha256: 
 f978d4010bbe826146371d13dce7e11942f79274bfce25ae2824a4068de1d008 2221 
kdesvn_1.5.5-4.1.dsc
 b04df447aacedd53989e928ecf4952de95731a6c04ea6f67cc159c88594eeb19 13363 
kdesvn_1.5.5-4.1.debian.tar.gz
 fd63749526639f450260607b57fce29905b040420998c4b8449ad14784a464d1 198470 
libsvnqt6_1.5.5-4.1_amd64.deb
 6f81a9d5b3c6311561d7a7ab5fac4177b5267e74daaa59de402066cbbb1b4185 46642 
libsvnqt-dev_1.5.5-4.1_amd64.deb
 206e0d928fa0ce5dea41c3073627c92c05f8a3910c362beab7b83a7da57592de 2154400 
kdesvn_1.5.5-4.1_amd64.deb
 adbaff6db3cd80a0155a178dae1129691cf1d91f9000318e62265793936f7a85 221884 
kdesvn-kio-plugins_1.5.5-4.1_amd64.deb
 66a9611665b1f84c4f066f4b9c3ce98477722a5d9d3400b281b3c573b58bc5b6 10923512 
kdesvn-dbg_1.5.5-4.1_amd64.deb
Files: 
 d3630aa6ffb49ac667e9b7c994679139 2221 vcs optional kdesvn_1.5.5-4.1.dsc
 a3a6851f010bc430666aaf016b519f02 13363 vcs optional 
kdesvn_1.5.5-4.1.debian.tar.gz
 acbb51a84b739337bdecbfc5c46f5b0f 198470 libs optional 
libsvnqt6_1.5.5-4.1_amd64.deb
 d9745e808fe1a7b2edcb9b3bcbef3286 46642 libdevel optional 
libsvnqt-dev_1.5.5-4.1_amd64.deb
 ff96336290927b29171ca19114363722 2154400 vcs optional 
kdesvn_1.5.5-4.1_amd64.deb
 41aba31c3b73bb4e1ff9da93f649bff2 221884 vcs optional 
kdesvn-kio-plugins_1.5.5-4.1_amd64.deb
 a72d0db88279cb3bcdfee1aad3884f62 10923512 debug extra 
kdesvn-dbg_1.5.5-4.1_amd64.deb

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

iQIcBAEBCAAGBQJPpSc5AAoJELs6aAGGSaoGLSQQAIvnEpcTimyeBAVYOr6od0Ne
Z1JFIZS+I1gKaIQ63m4++UtGuLNOLU89K9JuwnyBUwwSEMS9suGzd5knNzCgry80
xAsoUnP9Ul3752gI5j+qLNVHbZ8NsZVCSNyne7eJikPcjmigebarr0QK9OBrfR+/
slmkQ2ubPch3vW8oG1EBCXmDAkLvmihLC1CiNfTCh/orqJr4tUNi/Z/SjI/zdIb3
8Bxx9rnDQhfkFxQyQLdUW7gp038VG8NVJOYj0UZUde2wY56fyqdIdfW0vxlaao/L
oLpvSlw1mmacBV9jIGDnyVsQJ82Aw/lkkOvgNBA64IlMNntVDG9C73CnTHX5mXnH
aiVdXgo+GwPW2BBpPcedvJ+kggeH5HeMrLUH1owOnCb7VARrHMdGb3QVPEAbdDO1
ZL1f6koQHC3nAvKgSxgjGseyZSGwWuYCWkg6az2ZZUnUhNdzX8ttIzRh0fMMrvoP
BOKkfB2qyqBlNXjaTdp0PTQlFTajqOt4zaqS4e0Y6Gb1Nzq4RQl+qa6RlAFQ/rJV
tPYeJnOugzJ8aJgrbPaMOG6ricq9qXUtO/MAfUVqvI8KsVtFda0j7qVXexf8X5k8
iMwQZzSyco8OivXozL+6A5O8e8+RLALzMc99nMska33ohlzmVjNqTJD59JQVzd2M
89blpSBYy2JKe6JBm5+P
=es5T
-END PGP SIGNATURE-


Accepted:
kdesvn-dbg_1.5.5-4.1_amd64.deb
  to main/k/kdesvn/kdesvn-dbg_1.5.5-4.1_amd64.deb
kdesvn-kio-plugins_1.5.5-4.1_amd64.deb
  to main/k/kdesvn/kdesvn-kio-plugins_1.5.5-4.1_amd64.deb
kdesvn_1.5.5-4.1.debian.tar.gz
  to main/k/kdesvn/kdesvn_1.5.5-4.1.debian.tar.gz
kdesvn_1.5.5-4.1.dsc
  to main/k/kdesvn/kdesvn_1.5.5-4.1.dsc
kdesvn_1.5.5-4.1_amd64.deb
  to main/k/kdesvn/kdesvn_1.5.5-4.1_amd64.deb
libsvnqt-dev_1.5.5-4.1_amd64.deb
  to main/k/kdesvn/libsvnqt-dev_1.5.5-4.1_amd64.deb
libsvnqt6_1.5.5-4.1_amd64.deb
  to main/k/kdesvn/libsvnqt6_1.5.5-4.1_amd64.deb


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



Accepted soundkonverter 1.5.0-1 (source amd64)

2012-05-10 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 15:06:06 +0200
Source: soundkonverter
Binary: soundkonverter
Architecture: source amd64
Version: 1.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 soundkonverter - audio converter frontend for KDE
Changes: 
 soundkonverter (1.5.0-1) unstable; urgency=low
 .
   * Imported Upstream version 1.5.0
   * Bumped Standards-Version to 3.9.3, no changes needed.
   * Removed watch file again, because it no longer works.
Checksums-Sha1: 
 ff7f1377dcbb2a83b780b54b93532cd1b2715bee 1485 soundkonverter_1.5.0-1.dsc
 3217a84f2ea6fef353ed95c3ff8dc7ef0ba451ce 451519 
soundkonverter_1.5.0.orig.tar.gz
 a348b8eb31485530465bac4f6732ff6b3b7bba4f 3843 
soundkonverter_1.5.0-1.debian.tar.gz
 7c62efbe5005a25e668c0f45cac063e7456772bc 889084 
soundkonverter_1.5.0-1_amd64.deb
Checksums-Sha256: 
 f015251bbdf3375ea53c9bf90091feb77a4fbd108e2e0807db023daba815a82b 1485 
soundkonverter_1.5.0-1.dsc
 da5d048b7518f791ee542535c5c201e35993b26a057e8a9cfd9f0a7a5abaa0db 451519 
soundkonverter_1.5.0.orig.tar.gz
 cf41fbb939809cb47f112cc9412596bf563db268d11ac9f367ee3225329d0faf 3843 
soundkonverter_1.5.0-1.debian.tar.gz
 2093db56a4bb931832d630326799982dd1260cd3b7a115fc5782f9dcbcd096d5 889084 
soundkonverter_1.5.0-1_amd64.deb
Files: 
 f8f6b1aed0e2261f981cd02821ec4496 1485 kde optional soundkonverter_1.5.0-1.dsc
 9cb8dcf64bd257965a227d79e3c6e7fb 451519 kde optional 
soundkonverter_1.5.0.orig.tar.gz
 853b18af325c3f589d40bda65a5ac775 3843 kde optional 
soundkonverter_1.5.0-1.debian.tar.gz
 5eaed46048735403f33d9d995f8461be 889084 kde optional 
soundkonverter_1.5.0-1_amd64.deb

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

iD8DBQFPq8EZVkEm8inxm9ERArtxAJ9y6sfpv17tK7kjMTPPa1fpmkIqWACdEswa
e0TEdtclrbueL3eahI4TTRA=
=lwcz
-END PGP SIGNATURE-


Accepted:
soundkonverter_1.5.0-1.debian.tar.gz
  to main/s/soundkonverter/soundkonverter_1.5.0-1.debian.tar.gz
soundkonverter_1.5.0-1.dsc
  to main/s/soundkonverter/soundkonverter_1.5.0-1.dsc
soundkonverter_1.5.0-1_amd64.deb
  to main/s/soundkonverter/soundkonverter_1.5.0-1_amd64.deb
soundkonverter_1.5.0.orig.tar.gz
  to main/s/soundkonverter/soundkonverter_1.5.0.orig.tar.gz


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



Accepted binutils-msp430 2.22~msp20120406-1 (source amd64)

2012-05-10 Thread Luca Bruno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 15:14:44 +0200
Source: binutils-msp430
Binary: binutils-msp430
Architecture: source amd64
Version: 2.22~msp20120406-1
Distribution: experimental
Urgency: low
Maintainer: Luca Bruno lu...@debian.org
Changed-By: Luca Bruno lu...@debian.org
Description: 
 binutils-msp430 - Binary utilities supporting TI's MSP430 targets
Changes: 
 binutils-msp430 (2.22~msp20120406-1) experimental; urgency=low
 .
   * New upstream release
   * Due to upstream and debian binutils-source de-synchronization,
 vanilla sources are now embedded here along with patches.
Checksums-Sha1: 
 d3d3da45e1e6ff301e5c9fe145ffead6a9a63b80 1286 
binutils-msp430_2.22~msp20120406-1.dsc
 3e4db09cbc6e794941bac5524ea9c9b880485d9f 18507418 
binutils-msp430_2.22~msp20120406.orig.tar.gz
 78e383fc6526ba6f774ea5befa4e95e048e128c4 3624 
binutils-msp430_2.22~msp20120406-1.diff.gz
 7e4ca2acfcf70ff717e1821f3724ab674749076d 4062252 
binutils-msp430_2.22~msp20120406-1_amd64.deb
Checksums-Sha256: 
 7e048447f42ad82695f187678ac447a64a3eb28fcecd781f8704f982dab6ddff 1286 
binutils-msp430_2.22~msp20120406-1.dsc
 fcd3cfde746fef86de14c6f01d21fa1490c753fcfab1f94b2eba132a02b374f3 18507418 
binutils-msp430_2.22~msp20120406.orig.tar.gz
 0e296cf841249008c9d634c04ed8ef5e6a18a2a9b054ac75393317c305229a8d 3624 
binutils-msp430_2.22~msp20120406-1.diff.gz
 e9729e8da5d4176d530e7e05750fddfe4cf1ae9b7be5b026255a43d66dc2897b 4062252 
binutils-msp430_2.22~msp20120406-1_amd64.deb
Files: 
 cd82589b399d012360b8bfb9bc04d780 1286 devel extra 
binutils-msp430_2.22~msp20120406-1.dsc
 1f54b507395cdbec13385aa120b63e94 18507418 devel extra 
binutils-msp430_2.22~msp20120406.orig.tar.gz
 1b18e88646b99292b340c8defd12610e 3624 devel extra 
binutils-msp430_2.22~msp20120406-1.diff.gz
 94563fbf3ee122cc04857d7c1e9e27d3 4062252 devel extra 
binutils-msp430_2.22~msp20120406-1_amd64.deb

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

iEYEARECAAYFAk+rzbsACgkQRqobajv7n7Mq9wCfU9wJZyyszj6dQjLr5wEmVJOx
VJwAn0WEG00nz3z140FKs6uRa15Vku2A
=Cegp
-END PGP SIGNATURE-


Accepted:
binutils-msp430_2.22~msp20120406-1.diff.gz
  to main/b/binutils-msp430/binutils-msp430_2.22~msp20120406-1.diff.gz
binutils-msp430_2.22~msp20120406-1.dsc
  to main/b/binutils-msp430/binutils-msp430_2.22~msp20120406-1.dsc
binutils-msp430_2.22~msp20120406-1_amd64.deb
  to main/b/binutils-msp430/binutils-msp430_2.22~msp20120406-1_amd64.deb
binutils-msp430_2.22~msp20120406.orig.tar.gz
  to main/b/binutils-msp430/binutils-msp430_2.22~msp20120406.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/e1ssuep-0007zz...@franck.debian.org



Accepted docbook-mathml 1.0.0-3 (source all)

2012-05-10 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 15:42:43 +0200
Source: docbook-mathml
Binary: docbook-mathml
Architecture: source all
Version: 1.0.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian XML/SGML Group debian-xml-sgml-p...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 docbook-mathml - Extension to DocBook XML for using MathML markup
Closes: 247100 540558 615252
Changes: 
 docbook-mathml (1.0.0-3) unstable; urgency=low
 .
   * Add myself as Uploaders
   * Move Maintainer to: Debian XML/SGML Group
   * debian/control (Vcs-Browser): Fixed location.
 (Uploaders): Removed Mark Johnson, who is probably MIA (closes: #540558).
 Many thanks for your work!
   * Switch to dpkg-source 3.0 (quilt) format
   * Fix Homepage in d/control. Closes: #615252
   * d/watch: added
   * Fix typo in docbook-mathml.xmlcatalogs. Closes: #247100
Checksums-Sha1: 
 303664e4943a5aec23f0d971a1f5690c9b545c42 2020 docbook-mathml_1.0.0-3.dsc
 ebbaae36cd826f66b8d712aff64d406a2815d63a 3121 
docbook-mathml_1.0.0-3.debian.tar.gz
 d83607df66c4f0aa3d72cc5754c182e66696e96d 4520 docbook-mathml_1.0.0-3_all.deb
Checksums-Sha256: 
 f78aefdf02573a8a725158b74ef1ed7f2572ca97f0b1a9fc2dc8b1ebd7f2d962 2020 
docbook-mathml_1.0.0-3.dsc
 7e5cc95458b213ce3d1c937b479e9269c113d1ac0765efc3cfac6107fc843d08 3121 
docbook-mathml_1.0.0-3.debian.tar.gz
 e34bbb4aa927d4a6aa655f19bf08330129cfae20ea7fae5ffb45a580b39b414c 4520 
docbook-mathml_1.0.0-3_all.deb
Files: 
 5fcc667cb228cc9f50d96d6b30ad9ac4 2020 text optional docbook-mathml_1.0.0-3.dsc
 3aa0e10173804bf9303a972e37a9eaf8 3121 text optional 
docbook-mathml_1.0.0-3.debian.tar.gz
 3b7f212bacd6a8eb72c634fdf7934a02 4520 text optional 
docbook-mathml_1.0.0-3_all.deb

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

iQIcBAEBAgAGBQJPq8eDAAoJEAFx4YKK4JNFbIsP/3oGadtx6U2Kv2rDhxmu1JyK
uYj2ts/78N8WY0KyUwNwL0DoAIJCLUur+s3xWUpyCi20X1K2swqC9MHKZYIcXfNJ
Gt6EcrU+ViKIlbGV2ReNHC9vWyhwXFQb/kGflUwm0GL8t/cxGsUHIoE3bhUusBHz
8tDveM/NJE7A8QEOIRyWm4bC0zvj8iA8ue8S9X9YSs/Tfe2wWtM9jol3VQME1Nis
4o30EEXh5eDvfdX2mJpRn8ikK9vYc6+XbcDK8CVrYI0Ro6o9L0O1FwL9ZlLDhtzR
gUD4NrScN/QrMNK/CDKfN5sR2zOuOmTrhrT6lXKaqIQgnC2acvYgpTCM2gsOR4A2
rLt/L6NemN8Jpn+ekzBIALsrZ0erfo7UURHWRyEUy+Pbx4V9iXL6BJlheRzXGAO8
0i1oBX27NQ2DY6Y0wwqTqJQFJ8Vd1HlLuByNQgNoiCBw6z6MpQV8XtCHO1zP8O5/
XuLiXOsFY/je18Fooedok0aDu5XbksnCYfTbkDs5TK8L3+HcIHfFfLYklfiBsAFs
jSvb1xmZJR5iuFjk3CkYy9Vu/iqVQTL/W3FrXBH+bf5LqzrlyZgxnzKcCVz+tSgH
KmmDdzrEao0BOPdLvtm1S8zLIoykbspoYYdAL7XXKVkFdwrF9E4GyV5O5xdghuRI
oolwWpZ8ppqeF52YRUP/
=dU3E
-END PGP SIGNATURE-


Accepted:
docbook-mathml_1.0.0-3.debian.tar.gz
  to main/d/docbook-mathml/docbook-mathml_1.0.0-3.debian.tar.gz
docbook-mathml_1.0.0-3.dsc
  to main/d/docbook-mathml/docbook-mathml_1.0.0-3.dsc
docbook-mathml_1.0.0-3_all.deb
  to main/d/docbook-mathml/docbook-mathml_1.0.0-3_all.deb


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



Accepted easytag 2.1.7-2 (source amd64)

2012-05-10 Thread Maia Kozheva
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 21:26:53 +0700
Source: easytag
Binary: easytag
Architecture: source amd64
Version: 2.1.7-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Maia Kozheva si...@ubuntu.com
Description: 
 easytag- viewing, editing and writing ID3 tags
Closes: 669290
Changes: 
 easytag (2.1.7-2) unstable; urgency=low
 .
   * Merge Ubuntu changes from version 2.1.7-1ubuntu2,
 by Julian Taylor jtay...@ubuntu.com:
 + debian/rules:
   - Do not fail on removing nonexistent changelog file.
 + debian/patches/fix-out-of-bound.patch:
   - Fix crash on out of bounds array access. (Closes: #669290)
   * debian/control, debian/copyright:
 - Change upstream homepage back to resurrected SF site.
   * debian/watch:
 - Restore old debian/watch from before 2.1.6+git (development migrated
   back to sourceforge from github).
Checksums-Sha1: 
 ab9c67187aa0226d63dd45bce1a471ef35bf24c7 1853 easytag_2.1.7-2.dsc
 592c22f4b6853f2a178c4ae73bd7aff7d582fdde 19435 easytag_2.1.7-2.debian.tar.gz
 727628df98b24d63d2909e2af8f14c285c6015ab 1029436 easytag_2.1.7-2_amd64.deb
Checksums-Sha256: 
 459b82917ad44a58aba7fbaca5955155986238006c69013f67be8eb11df3db8c 1853 
easytag_2.1.7-2.dsc
 9ae447c2dfc079f9f443e75eefb375f86c2d27bea6aeed1e03317da38a06247c 19435 
easytag_2.1.7-2.debian.tar.gz
 2aef4006c0179940c22de6011494803b136d27cf9cfa3dbb1e7aa240ecca9c5e 1029436 
easytag_2.1.7-2_amd64.deb
Files: 
 05dc4354c42b836afcdb96bda2f4e890 1853 sound optional easytag_2.1.7-2.dsc
 360a5f52cc6832d533ca67a1bfd22595 19435 sound optional 
easytag_2.1.7-2.debian.tar.gz
 b9e8ce19e9b3dec7f67dcac34603b34e 1029436 sound optional 
easytag_2.1.7-2_amd64.deb

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

iQEcBAEBCAAGBQJPq9G3AAoJEDqDNnQ69yYS3FsH/ibGtxg+QD3PcCDm0J9Cw/JB
znNBgAFlmRFqKhS74DRgJO4CpHlPw/Vmb8bUJaIT+EX40KfZo2JOY8IL6WF0sP/8
Tk5YUXgfOudybdU0sa8oHiEq1uoYG/e/FvfcFWHl2M8XlBrT1da4abPoWEib7L6Y
5gSXyXIXRq6sgpI1OTXbp7aOI2vlv3RSDdS5U5fm7jv9KXvHrm1QvwjkdsCDH+sN
4v5YkgG0YOcDjYl4tO9nEmNXSHRMj8dSHXgov6vyI0EWou8+hDbCx6Bp0iHUWTqu
pKBMdTcbNcwzpxVxTrljylPNT/DcGEujQ1M4Jqr4n9FNsdikGdJzhyiHDvG13qY=
=bIyK
-END PGP SIGNATURE-


Accepted:
easytag_2.1.7-2.debian.tar.gz
  to main/e/easytag/easytag_2.1.7-2.debian.tar.gz
easytag_2.1.7-2.dsc
  to main/e/easytag/easytag_2.1.7-2.dsc
easytag_2.1.7-2_amd64.deb
  to main/e/easytag/easytag_2.1.7-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/e1ssufd-00088e...@franck.debian.org



Accepted hexxagon 1.0pl1-3.1 (source amd64)

2012-05-10 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 05 May 2012 15:22:29 +0200
Source: hexxagon
Binary: hexxagon
Architecture: source amd64
Version: 1.0pl1-3.1
Distribution: unstable
Urgency: low
Maintainer: Michael Piefel pie...@debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 hexxagon   - Hexagonal Ataxx clone
Closes: 667200
Changes: 
 hexxagon (1.0pl1-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix ftbfs with GCC-4.7: apply patch from Paul Tagliamonte that
 disambiguates variable names.
 Closes: #667200
Checksums-Sha1: 
 b001cb67e32e50d3d49284b9da57687a1f0a30d1 1686 hexxagon_1.0pl1-3.1.dsc
 2601ceab16f7aa307519e8622396d95e84c36607 4977 hexxagon_1.0pl1-3.1.diff.gz
 a055894d2777d7aa61ff6bfb7a59db44385e51e7 1336534 hexxagon_1.0pl1-3.1_amd64.deb
Checksums-Sha256: 
 6631dd663cd1f51fc16ffa4b7c23e340854ee35c25f4eaa7b03f2d3f2fae22c0 1686 
hexxagon_1.0pl1-3.1.dsc
 3cb50c02a0e4983f05be1bd5892ab237732e23a6a53d381aa369fb659297f871 4977 
hexxagon_1.0pl1-3.1.diff.gz
 d73da19eb2560fc332343e96bd53ff4cde064907d2979bf2e915dd20c6e9abdc 1336534 
hexxagon_1.0pl1-3.1_amd64.deb
Files: 
 40eafccd6beb57004e8e0034f70fa6c9 1686 games optional hexxagon_1.0pl1-3.1.dsc
 9805b43399ebb1f7ff700525716180bd 4977 games optional 
hexxagon_1.0pl1-3.1.diff.gz
 1fa4d1fdc7e884cb1c2487cf2172a7aa 1336534 games optional 
hexxagon_1.0pl1-3.1_amd64.deb

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

iQIcBAEBCAAGBQJPpSoAAAoJELs6aAGGSaoGRZkP/jRwi96ze4e0XXkP4tyLRcJD
7Xj9d/1rozzz+uRbfPXty0iohsUNIUc7ziJlJZi9oOZ9WBzqMecRw7B0aYk0SEkb
YIhrlhEm/Q/P6sOmVTu2xxNUdLmoMex+qQW3n7HZKhF0R7ZswgjdJwaTf+3okUTQ
Ehx6vJU0r3TWVl76YUZAWwNKLeUY9ekfcXwcD0SPuqw+QIq9L4+oOQqqFxQzTqIV
h7hPwXTnWKdqg1ap/QA/HvUk0X8/ZcmjRQengo5aqPbhAIYYCcRxNYCqma3JcWj6
7pZ5RSjTQFEJQsm1K0SgOXIMSQr2piDdWscFk/eL/6x6vZwVdnH1mrA9MV7KgW+4
WwbNbQL4yf4d8omeQ1ddBRLUNjE9OnOlsh64SqHpqjU6cf9eCRyIZzGnZV4WsO00
9CvWrkA5GfpzlCBGorEtWHoiFvZqxE40N1X0INht/3EoxAPO7NahxLt53JzyhdPa
x2orRBYxsq8x7ezV/YGzzhP+996scLHgFXzgsMUMevzNfNNciAf3gtxGKF5Cph5x
hmTd4D5XJHNDOa8VJ5CANfOPjnD9FMQTJIYiPHvLRrBRtjRtKig/BQ1ghFC3uUyD
XyXqZ35i8JyR92n8o9EG7KWij5A5P9KH7VDs78cIuU1z5Faoxld1bNYhsArJ1zV3
Dw8BMtRt/ti3hpW9rcWM
=BAJo
-END PGP SIGNATURE-


Accepted:
hexxagon_1.0pl1-3.1.diff.gz
  to main/h/hexxagon/hexxagon_1.0pl1-3.1.diff.gz
hexxagon_1.0pl1-3.1.dsc
  to main/h/hexxagon/hexxagon_1.0pl1-3.1.dsc
hexxagon_1.0pl1-3.1_amd64.deb
  to main/h/hexxagon/hexxagon_1.0pl1-3.1_amd64.deb


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



Accepted kvpnc 0.9.6a-2.1 (source all amd64)

2012-05-10 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 05 May 2012 15:54:42 +0200
Source: kvpnc
Binary: kvpnc kvpnc-data kvpnc-dbg
Architecture: source amd64 all
Version: 0.9.6a-2.1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 kvpnc  - vpn clients frontend for KDE4
 kvpnc-data - data files for KVpnc
 kvpnc-dbg  - vpn clients frontend for KDE4 - debugging symbols
Closes: 667233
Changes: 
 kvpnc (0.9.6a-2.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix ftbfs with GCC-4.7: add patch fix-ftbfs-gcc-4.7-667233.patch from
 Paul Tagliamonte (missing include).
 Closes: #667233
Checksums-Sha1: 
 d7b542cf49edc9b4c29f23383685025180c18824 2092 kvpnc_0.9.6a-2.1.dsc
 cfa7197460ab24f942133dd6138b996b8f612af8 6992 kvpnc_0.9.6a-2.1.debian.tar.gz
 0239f820b7de8e7182cc273aa196018953aa2522 912808 kvpnc_0.9.6a-2.1_amd64.deb
 5bacbf7656ead4eed4ed267983c4ea898cf96ebc 260102 kvpnc-data_0.9.6a-2.1_all.deb
 2cf75a33af8221aba85017d509e9b5f6a7ad273c 101314 kvpnc-dbg_0.9.6a-2.1_amd64.deb
Checksums-Sha256: 
 2d8c9b08961e04469e63e87099711579a6d9bc2a2f445c40401ca11460a91cee 2092 
kvpnc_0.9.6a-2.1.dsc
 eea4b9a618f36205e12c85c04c64c66afc50c52a9e66b9817a434a15c1b8d95d 6992 
kvpnc_0.9.6a-2.1.debian.tar.gz
 44e0917b5aedf0be28ab09151a3820650fc3cf07ac29f034aa1ed7ec58193d67 912808 
kvpnc_0.9.6a-2.1_amd64.deb
 0fd994197dc917faf1c130464501b988bf5c9ffa2229ab0f3d2fd4ab932a268a 260102 
kvpnc-data_0.9.6a-2.1_all.deb
 66765f25ac372ca755ea834997e8a27a5a24c1f4fecff93b4a52fb1aa80bbacc 101314 
kvpnc-dbg_0.9.6a-2.1_amd64.deb
Files: 
 6828b4ed25bd99f1e8e1596a05aa9b4c 2092 utils optional kvpnc_0.9.6a-2.1.dsc
 b8e8c6988db12d2b6668ed3297e9f95f 6992 utils optional 
kvpnc_0.9.6a-2.1.debian.tar.gz
 74a46d6c01d69db73b19c2d407137429 912808 utils optional 
kvpnc_0.9.6a-2.1_amd64.deb
 b2155e85e495860e8ae2f3051993f814 260102 utils optional 
kvpnc-data_0.9.6a-2.1_all.deb
 7212732a239974dccb39401c227e9b81 101314 debug extra 
kvpnc-dbg_0.9.6a-2.1_amd64.deb

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

iQIcBAEBCAAGBQJPpTGcAAoJELs6aAGGSaoGUv0P/2Hqwo7hRdlTowHmSLcVhkbi
9/BugKL4Bq1WKxHllcXQ68aTLQUbCIzg/YoZz32K/UP+ESTHTKW70OEOZKe5hESP
TA97aFHlN8KSAAny+91bNRWzplu1PJbEP1WoY9DEGuczfN92N3zoc4SyOFad5gUQ
B6/0+ALHdyF9IbiuUSv/J3122UbtkIkAxmmSHdV3AnGLlUqZdPCw1fJZyvChjd5R
e19peknNTqiACgcattGeej8TTWFa06L/NSlCuO7RZW9yf2hRx3ImEldeZArcCvDh
jIzBLgb+VYJ2P0na0hqM+/QyHYkZUWk6B2VmRDhm/98QkGYEIvXXXHNeQ6lKd/q7
s5eS1LPDJvQvrf3GOPUQ/s8xE1Io/ACJN6ZY2pECD59UJC0LnyyVtqNCxkzEC5OU
/jp4OKlqMCACmt5ak/c3llQb2xK6UXJ5SnX/cIAmlhEoD9MIiZamGXPPPSaKCBmn
nkepNNFVdaW25hNbhqGcifhiSCqkYhA63b4EbXztWFFm/SpvWZLhSenZDNSE47sD
sfNQrdov6zaM/so5NGt2kkZiD+seOZ3ztIVdrigK/OMQTfBHXP1RWEInk37qnDZf
aLBDjvN2WODE94NUd1qQukweF1ghY2Wswqvs74Qs20pYN/B1I3BQi/eucPltU7H6
vYjgpbcZQuHHO2mlHv0x
=/bii
-END PGP SIGNATURE-


Accepted:
kvpnc-data_0.9.6a-2.1_all.deb
  to main/k/kvpnc/kvpnc-data_0.9.6a-2.1_all.deb
kvpnc-dbg_0.9.6a-2.1_amd64.deb
  to main/k/kvpnc/kvpnc-dbg_0.9.6a-2.1_amd64.deb
kvpnc_0.9.6a-2.1.debian.tar.gz
  to main/k/kvpnc/kvpnc_0.9.6a-2.1.debian.tar.gz
kvpnc_0.9.6a-2.1.dsc
  to main/k/kvpnc/kvpnc_0.9.6a-2.1.dsc
kvpnc_0.9.6a-2.1_amd64.deb
  to main/k/kvpnc/kvpnc_0.9.6a-2.1_amd64.deb


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



Accepted lua-soap 3.0-3 (source all)

2012-05-10 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 27 Apr 2012 18:59:46 +0200
Source: lua-soap
Binary: lua-soap liblua5.1-soap0 liblua5.1-soap-dev
Architecture: source all
Version: 3.0-3
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi gareuselesi...@debian.org
Changed-By: Enrico Tassi gareuselesi...@debian.org
Description: 
 liblua5.1-soap-dev - Transitional package for lua-soap
 liblua5.1-soap0 - Transitional package for lua-soap
 lua-soap   - SOAP library for the Lua language
Changes: 
 lua-soap (3.0-3) unstable; urgency=low
 .
   * Update dependency: liblua5.1-socket2 - lua-socket
Checksums-Sha1: 
 0e8d7256ddea8a6cc30ce17349bbe00c4741a155 1323 lua-soap_3.0-3.dsc
 972855e51c9dd20b2dccb0a8f2b2159743a8ae77 3315 lua-soap_3.0-3.debian.tar.gz
 c19ac6f7788b60dddebf4a946ef1497b93d4084c 24646 lua-soap_3.0-3_all.deb
 9bdecf7198fcb2c9cebecf145ba434cf2669af85 2640 liblua5.1-soap0_3.0-3_all.deb
 9639d04b6a298462fea76475abed115ea8f82a24 2644 liblua5.1-soap-dev_3.0-3_all.deb
Checksums-Sha256: 
 0ae3b82a90f0248a170e7351679adc7c5b411432eee8fb061fab9e4bc9b07e93 1323 
lua-soap_3.0-3.dsc
 f6011a358a9ebfcd470c58e76ddff93b830417adcdaee771ccbf7904a8c5c74b 3315 
lua-soap_3.0-3.debian.tar.gz
 ca09e60e42f465daea1262907e827e7e9fec5c4091f82160edd706263ba86348 24646 
lua-soap_3.0-3_all.deb
 d10cd014839a15926617c933e55c76176437cd665dc5d08c3fffccb30292f1d1 2640 
liblua5.1-soap0_3.0-3_all.deb
 a19b92665d7154960f29441188ee22ac16decf8c8ae56dd9c1a33f057dcd1d79 2644 
liblua5.1-soap-dev_3.0-3_all.deb
Files: 
 1853a948c12dbbeba8b90ee6bf0e66ca 1323 interpreters optional lua-soap_3.0-3.dsc
 de80e66d16ba322f3578f8ba9b6bea34 3315 interpreters optional 
lua-soap_3.0-3.debian.tar.gz
 25a009543abb3de07dcdbcb59d071c25 24646 interpreters optional 
lua-soap_3.0-3_all.deb
 dffcc1a47f5425c4d7e4e7235d481ddc 2640 oldlibs extra 
liblua5.1-soap0_3.0-3_all.deb
 6905a93d86c28d62f8735b57c5b1219a 2644 oldlibs extra 
liblua5.1-soap-dev_3.0-3_all.deb

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

iEYEARECAAYFAk+rzL4ACgkQ7kkcPgEj8vLmHgCdGu/hDw8jClv81FEoKqo2pttx
aSUAoK547a9xDTSEsqzEmFvfvEQyeRMq
=wtgs
-END PGP SIGNATURE-


Accepted:
liblua5.1-soap-dev_3.0-3_all.deb
  to main/l/lua-soap/liblua5.1-soap-dev_3.0-3_all.deb
liblua5.1-soap0_3.0-3_all.deb
  to main/l/lua-soap/liblua5.1-soap0_3.0-3_all.deb
lua-soap_3.0-3.debian.tar.gz
  to main/l/lua-soap/lua-soap_3.0-3.debian.tar.gz
lua-soap_3.0-3.dsc
  to main/l/lua-soap/lua-soap_3.0-3.dsc
lua-soap_3.0-3_all.deb
  to main/l/lua-soap/lua-soap_3.0-3_all.deb


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



Accepted mathgl 1.11.2-12 (source all amd64)

2012-05-10 Thread Dimitrios Eftaxiopoulos
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 16:09:18 +0300
Source: mathgl
Binary: mathgl mathgl-doc-en mathgl-doc-ru libmgl5 libmgl-data libmgl-dev 
libmgl-fltk5 libmgl-qt5 libmgl-wx5 libmgl-glut5 python-mathgl
Architecture: source amd64 all
Version: 1.11.2-12
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Dimitrios Eftaxiopoulos eftax...@otenet.gr
Description: 
 libmgl-data - library for scientific graphs. (data files)
 libmgl-dev - library for scientific graphs. (development files)
 libmgl-fltk5 - library for scientific graphs. (FLTK runtime library)
 libmgl-glut5 - library for scientific graphs. (GLUT runtime library)
 libmgl-qt5 - library for scientific graphs. (Qt runtime library)
 libmgl-wx5 - library for scientific graphs. (wxWidgets runtime library)
 libmgl5- library for scientific graphs. (main runtime library)
 mathgl - library for scientific graphs. (utlities and examples)
 mathgl-doc-en - library for scientific graphs. (English documentation)
 mathgl-doc-ru - library for scientific graphs. (Russian documentation)
 python-mathgl - library for scientific graphs. (Python module)
Changes: 
 mathgl (1.11.2-12) unstable; urgency=low
 .
   * Make more libmgl5 related symbols optional in order to fix FTBFS on several
 arches.
Checksums-Sha1: 
 b09c40a9f275a3bcdd9b3cf683fb41e9b8b205be 2821 mathgl_1.11.2-12.dsc
 2b577d3d6c1ee5b322649b829d148da38d41652a 29471 mathgl_1.11.2-12.debian.tar.gz
 b545786642ee55fb4312f9590c73995e69ee3a09 39314 mathgl_1.11.2-12_amd64.deb
 109427dc31defa22532dbb13ce449624ab81b13e 808136 libmgl5_1.11.2-12_amd64.deb
 17087e59c48eb66756736b20ea59e911a97e4bc2 1053454 libmgl-dev_1.11.2-12_amd64.deb
 6ecf67519b4179b7a0a7b12d6b70ee71556a0baf 42704 libmgl-fltk5_1.11.2-12_amd64.deb
 2efea95fe39c0c3970e3759ae3ef21fd7031ff58 56414 libmgl-qt5_1.11.2-12_amd64.deb
 760d63836413b379f117a8ade76a82da90abc571 41970 libmgl-wx5_1.11.2-12_amd64.deb
 fa164237a04540f6da8fb3ee2e4b5b676864b072 30208 libmgl-glut5_1.11.2-12_amd64.deb
 40f447d3d334db17c615a03b6ab60b6d98f60f84 323148 
python-mathgl_1.11.2-12_amd64.deb
 5aae6386037a92eb92a6c4902d8a89074c8bae9a 6789774 
mathgl-doc-en_1.11.2-12_all.deb
 ae86cd17b6be3ec970b013aa03365e0d201e622c 6863276 
mathgl-doc-ru_1.11.2-12_all.deb
 5201349f01d6f9d419e02c1c70072fd4d6c3e71e 4087912 libmgl-data_1.11.2-12_all.deb
Checksums-Sha256: 
 ee54cb6b573748fdfc35981efb127656805743e6daa17b64a60ea855bcf8ec3c 2821 
mathgl_1.11.2-12.dsc
 b0f6b169c6e861ebbb57abdec06a9ea157633c65368e391649a8ce1640c03fea 29471 
mathgl_1.11.2-12.debian.tar.gz
 8a54c6a6021a109c0ad317c74a96307fe4e08998e09bd5c30c462b9bd54e9485 39314 
mathgl_1.11.2-12_amd64.deb
 994ea40694da74169883ddab5dfef10e66dbb04f87844c90df685dba1594125e 808136 
libmgl5_1.11.2-12_amd64.deb
 b260b6823b0fb2c835a5fa0d39d0b6010c19d85b3d221e3ab8b9cc94e125d264 1053454 
libmgl-dev_1.11.2-12_amd64.deb
 e0b0a15eb1b0a56b3f5abbccedbc9931481186bd3112a91153175e6b3a9869af 42704 
libmgl-fltk5_1.11.2-12_amd64.deb
 fdc15a9fae6b136992e801e94d684ce5b65b572f46b796035dc53b6064c0719e 56414 
libmgl-qt5_1.11.2-12_amd64.deb
 c78d84b1a5be41c3702283d774ccd5ffce4afbade853aa00e3cb84a086d368f8 41970 
libmgl-wx5_1.11.2-12_amd64.deb
 b9f0c26c91d3070a425e6ccb84da27be8a4cada9e4383b60a1de69e413cacdba 30208 
libmgl-glut5_1.11.2-12_amd64.deb
 e948f2cfd15e67cd3c458ac1d844a894ff550c65f1a0bb83692fa52ef9f4b9f9 323148 
python-mathgl_1.11.2-12_amd64.deb
 8360916fe1b7f3ea91e2b559be6c874484735f2c08b55221a418185d571b713c 6789774 
mathgl-doc-en_1.11.2-12_all.deb
 bb615c8667a1450156467c30a7890b7961bdacd20e366a8cf613cc616d10c029 6863276 
mathgl-doc-ru_1.11.2-12_all.deb
 8bcebb60835761265c8dfa83f21d19d35e87606c5b29f3308969b9406dcbd612 4087912 
libmgl-data_1.11.2-12_all.deb
Files: 
 c241fce04b9209ba88899038b4c9f3ec 2821 science optional mathgl_1.11.2-12.dsc
 b9d27b454ffa8f0ac45a612cfb16e04c 29471 science optional 
mathgl_1.11.2-12.debian.tar.gz
 16eb1d1161979574e9eace79e49cacd6 39314 libs optional mathgl_1.11.2-12_amd64.deb
 d665e1b90c2e1014f3e09f47a8587e5e 808136 libs optional 
libmgl5_1.11.2-12_amd64.deb
 bd36e88b1385df182ccf2b5fb6956ee3 1053454 libdevel optional 
libmgl-dev_1.11.2-12_amd64.deb
 cd7343bdfe289c99cd10cae3c458026c 42704 libs optional 
libmgl-fltk5_1.11.2-12_amd64.deb
 662165e2749d86db07865041661484cb 56414 libs optional 
libmgl-qt5_1.11.2-12_amd64.deb
 8daeba02380150090407216fbee91eb2 41970 libs optional 
libmgl-wx5_1.11.2-12_amd64.deb
 a4f65a97509be5f18e486b4abd950ddb 30208 libs optional 
libmgl-glut5_1.11.2-12_amd64.deb
 71cef90a54b9b2eeb61cbd1b894b6a20 323148 python optional 
python-mathgl_1.11.2-12_amd64.deb
 c0f2eddcb1c85e4051a7fd1a92c847de 6789774 doc optional 
mathgl-doc-en_1.11.2-12_all.deb
 828a5c305ed2709dbb96e18bcaf9dda0 6863276 doc optional 
mathgl-doc-ru_1.11.2-12_all.deb
 2367f5dfbfa56f0ca5cf92cb8729d4b5 4087912 misc optional 
libmgl-data_1.11.2-12_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 

Accepted mmm-mode 0.4.8-7 (source all)

2012-05-10 Thread Alexander Zangerl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 23:06:25 +1000
Source: mmm-mode
Binary: mmm-mode
Architecture: source all
Version: 0.4.8-7
Distribution: unstable
Urgency: low
Maintainer: Alexander Zangerl a...@debian.org
Changed-By: Alexander Zangerl a...@debian.org
Description: 
 mmm-mode   - Multiple Major Mode for Emacs
Closes: 672168 672169
Changes: 
 mmm-mode (0.4.8-7) unstable; urgency=low
 .
   * fixed face defaults (closes: #672169)
   * don't load regexp-opt unless needed (closes: #672168)
   * lifted standards version, fixed most lintian complaints
   * incorporated emacs23 fixes from https://github.com/purcell/mmm-mode/
Checksums-Sha1: 
 0e15762339192858b1cfde3a6c4765ee5eaf6f05 992 mmm-mode_0.4.8-7.dsc
 d79f3222eed28be13cbb13e08a96f4bc2a507e06 6463 mmm-mode_0.4.8-7.diff.gz
 2f78f75a32af319ff7b4220e2a179102b60e2690 109044 mmm-mode_0.4.8-7_all.deb
Checksums-Sha256: 
 ce73bb994e7ad32b22c4089326d4fafc4fcbcb6b397480f87d84d0d56737b8a1 992 
mmm-mode_0.4.8-7.dsc
 5b3f0b909852e224fe417f18184e16a3f7b35b5a03260316c400895dfe65bde1 6463 
mmm-mode_0.4.8-7.diff.gz
 729101d0fcbcc7e0e29e5717257ae5c1cbc3952ed2367411b89c431a07aef661 109044 
mmm-mode_0.4.8-7_all.deb
Files: 
 93a4e70b82b3193ac5f01ef166a18a72 992 editors optional mmm-mode_0.4.8-7.dsc
 5a7f2ee953d2adaaa817238364eef588 6463 editors optional mmm-mode_0.4.8-7.diff.gz
 298730eac045bb6d1048cb677988ebc1 109044 editors optional 
mmm-mode_0.4.8-7_all.deb

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

iF4EAREIAAYFAk+rzlYACgkQ+bKELRvb2DyC7gD8CSs8Edh4JPscxHPdeH5LnDBM
6OnnCaOO0YNILy656jAA/jrbzL/dmTnFbY28uvuaohRWdoKNh0vQBbGFoGBk+U9d
=gRbQ
-END PGP SIGNATURE-


Accepted:
mmm-mode_0.4.8-7.diff.gz
  to main/m/mmm-mode/mmm-mode_0.4.8-7.diff.gz
mmm-mode_0.4.8-7.dsc
  to main/m/mmm-mode/mmm-mode_0.4.8-7.dsc
mmm-mode_0.4.8-7_all.deb
  to main/m/mmm-mode/mmm-mode_0.4.8-7_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/e1ssuki-qc...@franck.debian.org



Accepted haskell-hjsmin 0.1.1-1 (source all amd64)

2012-05-10 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 10 May 2012 10:53:07 -0400
Source: haskell-hjsmin
Binary: libghc-hjsmin-dev libghc-hjsmin-prof libghc-hjsmin-doc
Architecture: source all amd64
Version: 0.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Haskell Group 
pkg-haskell-maintain...@lists.alioth.debian.org
Changed-By: Clint Adams cl...@debian.org
Description: 
 libghc-hjsmin-dev - JavaScript minifier
 libghc-hjsmin-doc - JavaScript minifier; documentation
 libghc-hjsmin-prof - JavaScript minifier; profiling data
Changes: 
 haskell-hjsmin (0.1.1-1) unstable; urgency=low
 .
   * New upstream version.
   * Bump to Standards-Version 3.9.3.
Checksums-Sha1: 
 8096975ca2a6dd675d75876ad911797800fcef30 2561 haskell-hjsmin_0.1.1-1.dsc
 4dd5a5d6718802583b82ad5a84f246b1c3155586 12400 haskell-hjsmin_0.1.1.orig.tar.gz
 eb4ab9f91da67e4584be5dac490fd45388b670ba 2285 
haskell-hjsmin_0.1.1-1.debian.tar.gz
 32ae20fdb9a1026a975aad010178e39cb17a96ea 35948 
libghc-hjsmin-doc_0.1.1-1_all.deb
 6942b4a4affd08818c30d553b28777e27a482c7d 101018 
libghc-hjsmin-dev_0.1.1-1_amd64.deb
 6003ff21acc9305cbd3e75475004bf4ec400ebdc 106814 
libghc-hjsmin-prof_0.1.1-1_amd64.deb
Checksums-Sha256: 
 39e6ea5eb603dbf8d85374d806762e2f7b28395045bb4a16c69a03632e942b4f 2561 
haskell-hjsmin_0.1.1-1.dsc
 539885200fd6bd38d32b17654574b85d80b3caa90ec86256024e655768f9486c 12400 
haskell-hjsmin_0.1.1.orig.tar.gz
 7e020e34cdda501852ecc7ec29d7d2bdda4773480a422b57ae1dbfc078294c2e 2285 
haskell-hjsmin_0.1.1-1.debian.tar.gz
 83193c961f3b458717287d18cad4d0f5d3eadb83624322db687fbaedbda9e337 35948 
libghc-hjsmin-doc_0.1.1-1_all.deb
 ecb0c5d702830d8332ad57367bfdef72cff49aa3761d1aaf87cc28d0c86ba2bd 101018 
libghc-hjsmin-dev_0.1.1-1_amd64.deb
 c20e2979f38d6d8290eb3ab14ffa498f57e2fa5d0ad0aa7a118a0b2dae96817f 106814 
libghc-hjsmin-prof_0.1.1-1_amd64.deb
Files: 
 7fff9a3bf6d3c08823ee3cd83f5f77ec 2561 haskell extra haskell-hjsmin_0.1.1-1.dsc
 f47034f61a9f89f8f0d1b120a8bfa7ae 12400 haskell extra 
haskell-hjsmin_0.1.1.orig.tar.gz
 f0f66a9b02d2ce92031074dad6d680be 2285 haskell extra 
haskell-hjsmin_0.1.1-1.debian.tar.gz
 f83e5315a18c5687fe3e760fe0765509 35948 doc extra 
libghc-hjsmin-doc_0.1.1-1_all.deb
 f092c6bddf65e65d9871843cbf661e3f 101018 haskell extra 
libghc-hjsmin-dev_0.1.1-1_amd64.deb
 785f04fb929a541f9826729e6d54cca8 106814 haskell extra 
libghc-hjsmin-prof_0.1.1-1_amd64.deb

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

iQIcBAEBCgAGBQJPq9g3AAoJEFWSMx4ZnTiovssP/05IsLHf37ooAE0vmRwmNCLF
9VZheblFOG7GYJBY1FOuVahz5GBuGzLOqme7mNWj1rXycT8v+CydkKSZNUpKx4AG
Fj2wvQDUGyEENKhp51boEae5exD4GVNe1XCH8FFumj9rNhmtGTYxVJlmkqsJ9f68
hbXS13wy0ObciCvhptUIz+e8go6lJlJZss+lnl15MtEJaTsVrgMJdJW9FocMy05J
M3AjySxAwAoSehkL39r6/VSoD30eTOSQjN8gP9uy6PbqIRHtqmY9pETblB4m3aa6
WVW0OLMnuxk+hKgYYkZ6P1UlR82gLkRUS0YGK2YQdsEqz/k8QkytIPQFcGpTrD7X
5WmRRcZadfN3VuMLvrkQs+SzNICBPn4TsuEiH+eleAaCIhvsl8SeL8ua6bQZeTkX
RzBENgOp7ultzp4QQ5F2ro6AAONWYr88v2vCxa8MQmRTsCcvX7NzucmcX2DMqJ3l
IbfSSTQVPHgauFC4uUVLB131cw4xbnIatMZZYmUTWGoR1D3Jhhz53Zu1IRiE9oRx
pMWNhGHcuW6DGU5IzYtBwBp1hJGT+Ysm10UUFIRtFceV8SEzaPJqW3HN+rEDmfnq
L22wUk3iKYG+LEDeznAt4cFvzNvEtS8BPJoHNJjVrcgGXHI01sLKyEgdC0BrFwOW
iQreYryziYk8aepPqQ6x
=65uQ
-END PGP SIGNATURE-


Accepted:
haskell-hjsmin_0.1.1-1.debian.tar.gz
  to main/h/haskell-hjsmin/haskell-hjsmin_0.1.1-1.debian.tar.gz
haskell-hjsmin_0.1.1-1.dsc
  to main/h/haskell-hjsmin/haskell-hjsmin_0.1.1-1.dsc
haskell-hjsmin_0.1.1.orig.tar.gz
  to main/h/haskell-hjsmin/haskell-hjsmin_0.1.1.orig.tar.gz
libghc-hjsmin-dev_0.1.1-1_amd64.deb
  to main/h/haskell-hjsmin/libghc-hjsmin-dev_0.1.1-1_amd64.deb
libghc-hjsmin-doc_0.1.1-1_all.deb
  to main/h/haskell-hjsmin/libghc-hjsmin-doc_0.1.1-1_all.deb
libghc-hjsmin-prof_0.1.1-1_amd64.deb
  to main/h/haskell-hjsmin/libghc-hjsmin-prof_0.1.1-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/e1ssv9f-0003mo...@franck.debian.org



Accepted icedove 10.0.4-1 (source amd64)

2012-05-10 Thread Christoph Goehre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 10 May 2012 16:29:30 +0200
Source: icedove
Binary: icedove icedove-dev icedove-dbg calendar-timezones iceowl-extension 
calendar-google-provider
Architecture: source amd64
Version: 10.0.4-1
Distribution: unstable
Urgency: low
Maintainer: Alexander Sack a...@debian.org
Changed-By: Christoph Goehre ch...@sigxcpu.org
Description: 
 calendar-google-provider - Google Calendar support for lighting- and 
iceowl-extension
 calendar-timezones - Timezone Extension for Sunbird/Iceowl (mandatory)
 icedove- mail/news client with RSS and integrated spam filter support
 icedove-dbg - Debug Symbols for Icedove
 icedove-dev - Development files for Icedove
 iceowl-extension - Calendar Extension for Thunderbird/Icedove
Closes: 667205
Changes: 
 icedove (10.0.4-1) unstable; urgency=low
 .
   * [d98435f] New Upstream version 10.0.4
   * Fixes for MFSA2012-{20,22-24,26-27,29-31,33}, also known as
 CVE-2012-0467, CVE-2012-0469, CVE-2012-0470, CVE-2012-0471,
 CVE-2012-0473, CVE-2012-0474, CVE-2012-0477, CVE-2012-0478,
 CVE-2011-3062, CVE-2012-0479
   * [7754de6] rebuild patch queue from patch-queue branch
 added patches:
 - debian-hacks/Bug-508942-Use-Preprocessor.py-filters-in-defines-an.patch
 - fixes/Bug-706724-Fix-for-error-ftruncate-was-not-declared-.patch
   (Closes: #667205)
 - fixes/Bug-747322-Fix-jemalloc-mmap-wrapper-for-s390x.patch
 - fixes/Fix-more-gcc-4.7-errors-in-ipc-code.patch
 - porting/Bug-706787-Crash-on-s390x-nsXPCComponents-AttachNewC.patch
 - porting/Bug-747870-Properly-align-XPCLazyCallContext-mData.-.patch
 obsolete patches (fixed upstream):
 - fixes/Bug-710268-Sign-NSS-libraries-only-when-they-exist-r.patch
 - fixes/Fixup-bz-730195-for-Linux-ARM-use-_URC_FOREIGN_EXCEP.patch
Checksums-Sha1: 
 d09cb9bcfe617ead5e59a386b4b906c01fd10681 2774 icedove_10.0.4-1.dsc
 e6d4304647dcfa71e15b0fae352c0210d4fdd18e 97435795 icedove_10.0.4.orig.tar.bz2
 e50566c77ddefe5cabbe5ea1df2b9a37643a84e9 497077 icedove_10.0.4-1.debian.tar.gz
 6da292f29e8ad6143af713cf95b5b4afb1996237 18998188 icedove_10.0.4-1_amd64.deb
 55283790d85d1ed53546be67f8e4e1c09e1e42a0 5313208 icedove-dev_10.0.4-1_amd64.deb
 0587fc7bbd00c734aa1ab181989f12a0e2336049 172988100 
icedove-dbg_10.0.4-1_amd64.deb
 8e51e4e423409de2a75b116003ae6abe44c94d1e 74476 
calendar-timezones_10.0.4-1_amd64.deb
 4d94144f87881edc03ec6a57068defd291e1cfb0 1229190 
iceowl-extension_10.0.4-1_amd64.deb
 341f0630e6ded6189c4056b8296b0438e331865c 88518 
calendar-google-provider_10.0.4-1_amd64.deb
Checksums-Sha256: 
 f39a3acbec59f87347a63910d6981aa7a445e101ef9f8d9817947d53c8033f9c 2774 
icedove_10.0.4-1.dsc
 b74017301bf38a08e2fb5393ee4fefc2e8ea2853de23b2fdc6a2b0dfdb6cd0d1 97435795 
icedove_10.0.4.orig.tar.bz2
 904707ab8d38bff2576aa9fadce18c85af95e9058d6896aa6cc21305acf798cd 497077 
icedove_10.0.4-1.debian.tar.gz
 bfdc8792caf2feab05fc1c7b67ad7b2742962c01a17967a6e6224e023cbfacef 18998188 
icedove_10.0.4-1_amd64.deb
 1f7c0781718a1fb7ad46c17e63677115dfc4ad2bf468eb973033601bf9a4cefd 5313208 
icedove-dev_10.0.4-1_amd64.deb
 bfc7f90274dcecff3dcc75cc3738ca59c47d6cb330e1fb4a5e3f7424ed149d68 172988100 
icedove-dbg_10.0.4-1_amd64.deb
 6a8e423e89dd1885c17671dd0019734ea09c729d098eec83acb275ad5fbd91aa 74476 
calendar-timezones_10.0.4-1_amd64.deb
 24b316b8294f4a90503bb6c97f9516c58df33f76e733ac39b33e9a81dcb5b528 1229190 
iceowl-extension_10.0.4-1_amd64.deb
 9cd19a7cad73fa6046e5bf1aec190ceaa86b5bae2b85a30d89811335f9b97c0c 88518 
calendar-google-provider_10.0.4-1_amd64.deb
Files: 
 622786d60ac0de3503b1bceb96633a02 2774 mail optional icedove_10.0.4-1.dsc
 9464614a39a6c45cd46a8e0a62b0174e 97435795 mail optional 
icedove_10.0.4.orig.tar.bz2
 52a4d116424a0b432fd2b44d86749903 497077 mail optional 
icedove_10.0.4-1.debian.tar.gz
 b5fc226f9e55c64969efc22a559c18fc 18998188 mail optional 
icedove_10.0.4-1_amd64.deb
 f63f8f49f16140429cae938f1a430f4a 5313208 mail optional 
icedove-dev_10.0.4-1_amd64.deb
 f8d4c39ce4c2d4d8fe63ec15a9508492 172988100 debug extra 
icedove-dbg_10.0.4-1_amd64.deb
 c50795054c5285400c6aabb84206dda2 74476 mail optional 
calendar-timezones_10.0.4-1_amd64.deb
 d8050bdf74c0478d0f7449f5f62ea88d 1229190 mail optional 
iceowl-extension_10.0.4-1_amd64.deb
 fdda8272dc28cf4a0ee4a370985d56eb 88518 mail optional 
calendar-google-provider_10.0.4-1_amd64.deb

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

iQIcBAEBCAAGBQJPq9jTAAoJECbjyHWnRCDvOOsQAJDw0V5OBmGcSmjxLwuz828G
5jawKQUKGs+EzJrI/1vSZuwKVzaj8VzuowHgvFuo58PVtDUpmjxBEc5VtlMavlp7
/OAgc9BKbbaryZSvDHzET/QzUmQYKjdYRcgcwZ8+5+gl8/fM8HHEMCvh3pdmTlJK
SdrV4rZNgB5472f6sbN76ubLIvxdDWt8IkoqaUrIr06BGFxMT0m5eTRUzhplKq5A
heVPkp0/4IfDnGZpgy3i64g+a+geC24rB0+2KushWYNaHpOkf+c1JuMrOG1r3ArR
/dRb1SbG1OD15ytaanAL3B09tS1cVkmIlkBpD2YvTQCTFn+XEARvHQLmmvOtlC/v
ihI7n0ZTJoBZCAX6S9qWVsJWh2H/9Ot6B9DOQbrQHZVHaipanjY1HSWZv6REMQqN
076WMVJPzH9f5BlZfaUUxoiELHlSuh65o3T8Js7GDZKmv5T0EZUg5vY9MfwK4Q8n

Accepted msp430mcu 20120406-1 (source all)

2012-05-10 Thread Luca Bruno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 May 2012 16:55:03 +0200
Source: msp430mcu
Binary: msp430mcu
Architecture: source all
Version: 20120406-1
Distribution: experimental
Urgency: low
Maintainer: Luca Bruno lu...@debian.org
Changed-By: Luca Bruno lu...@debian.org
Description: 
 msp430mcu  - Spec files, headers and linker scripts for TI's MSP430 targets
Changes: 
 msp430mcu (20120406-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 73ffe18e438e15d5b0f4a845869ddc7846674fec 1049 msp430mcu_20120406-1.dsc
 c096eec84f0f287c45db713a550ec50c518fa065 4191854 
msp430mcu_20120406.orig.tar.bz2
 89fc38e691e33efd9ca46e45c2c07df48a54 3526 
msp430mcu_20120406-1.debian.tar.gz
 f1b7170703dee1c1d6eacc8cc717b999a2e6328c 8760880 msp430mcu_20120406-1_all.deb
Checksums-Sha256: 
 32f4fbec86023342d2636ebf453d2192b153c2513058fe06ed4bf5ecfe484c2f 1049 
msp430mcu_20120406-1.dsc
 0637014e8e509746c3f6df8e1d65b786770d162b3a0b86548bdf76ac3102c96e 4191854 
msp430mcu_20120406.orig.tar.bz2
 64bd126c8ea140723c1d3929247c6acf2964fdb0466bb3188fec6a04ee7b3181 3526 
msp430mcu_20120406-1.debian.tar.gz
 b144bb63fb588ba8ffaf012ab6bd74613927dcb0580724ce06d9057304e91f81 8760880 
msp430mcu_20120406-1_all.deb
Files: 
 737b6138f5cf83b4b3fe3d9271a69be2 1049 devel extra msp430mcu_20120406-1.dsc
 f813c659db2d31be55e63ad7ab90837b 4191854 devel extra 
msp430mcu_20120406.orig.tar.bz2
 831e1af65d6de53cefaa7aa7626fce7a 3526 devel extra 
msp430mcu_20120406-1.debian.tar.gz
 665f9df01179df1440764dd0e0c6fe64 8760880 devel extra 
msp430mcu_20120406-1_all.deb

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

iEYEARECAAYFAk+r2gAACgkQRqobajv7n7PTFgCfei19cojFb4oJCVIcu4lp47xM
itQAn1LR/A5affYMiqiFOZKPtSRgjwZ4
=1Qsf
-END PGP SIGNATURE-


Accepted:
msp430mcu_20120406-1.debian.tar.gz
  to main/m/msp430mcu/msp430mcu_20120406-1.debian.tar.gz
msp430mcu_20120406-1.dsc
  to main/m/msp430mcu/msp430mcu_20120406-1.dsc
msp430mcu_20120406-1_all.deb
  to main/m/msp430mcu/msp430mcu_20120406-1_all.deb
msp430mcu_20120406.orig.tar.bz2
  to main/m/msp430mcu/msp430mcu_20120406.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/e1ssvdq-0004n2...@franck.debian.org



  1   2   >