Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Enrico Weigelt
* Ian Jackson ijack...@chiark.greenend.org.uk schrieb:
 Enrico Weigelt writes (RFC: Rules for distro-friendly packages ):
  I've collected several rules that upstreams should follow to make
  distro maintainer's life much easier:
 
 Thanks for doing this.  But I have to say that the tone of your
 document isn't really appropriate for the social context.  It reads
 very much like a series of demands and instructions.

That might come from the backgroud that it's actually meant to
form a set of QM requirements. I'm going to implement an checklist
system for the OSS-QM project [1] where all the releases are
undergoing an approval process.

 We aren't in a position to dictate to upstream. 

No, we aren't. But we (as downstreams) can define rules on what we
consider a good package engineering - if upstream cannot / doesnt
want to follow the rules, OSS-QM can step in as man-in-the-middle ;-p


cu
-- 
--
 Enrico Weigelt, metux IT service -- http://www.metux.de/

 phone:  +49 36207 519931  email: weig...@metux.de
 mobile: +49 151 27565287  icq:   210169427 skype: nekrad666
--
 Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme
--


-- 
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/20100918065413.gd18...@nibiru.local



Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Enrico Weigelt
* Yavor Doganov ya...@gnu.org schrieb:

  Switching dependencies which silently enables/disables features is
  a generally bad approach.
 
 Well, in my very humble experience, an optional dependency is there
 precisely to provide an optional feature.

No, opposite direction: features are functional requirements, whose
implementations just happens to have some dependencies. For example,
an feature could be supporting compressed files, implemented using
zlib or libbz2.

 I guess what Russ is trying to say is that they are completely useless
 if just one library package in the dependency chain doesn't provide a
 static lib.

True. Therefore the missing packages will have to be fixed.
 
  And still many people need them.
 
 I seriously doubt that.

You doubt the whole embedded/smalldev development going all around
the world ?

 Many Debian library packages have been gradually dropping static
 libraries in the past few years, and I don't recall complaints.

Debian isn't actually a embedded distro.

 If someone really needs a static library, she is probably in a perfect
 position and has the necessary knowledge/skills to build one herself.

Yes, he/she'll have to fix all those packages, and maintain the 
fixes over a long time. Actually, several parties (including OSS-QM)
are doing that. But this adds unncessary burden on them, draining
resources from the actual goals.

   I strongly disagree with requiring pkg-config.  
  
  Well, actually, I need it, eg. for clean sysroot'ed crosscompiling.
 
 But pkg-config is notoriously bad when cross-compiling...  

No, it's not. Actually, it's quite fine. Just give it the right
environment variables, so it takes everything from sysroot.

 With pure Autoconf macros (used properly, and providing an extra
 argument for AC_RUN_IFELSE and friends), cross-compilation works
 out of the box.

And you suppose all the individual distro maintainers to manually
tweak each package for each target ?

  Because that doesn't always suffice. It requires that the library
  is in the toolchain's standard search path.
 
 That's the case with pkg-config too.  If you install a library in
 /opt/foo, pkg-config will not find it if you don't instruct it to look
 there.

It's easier to control those things via a generic interface like
pkg-config (note: I'm talking about the _interface_, not just the
binary /usr/bin/pkg-config !)

  And what about cflags ?  What about dependencies ?
 
 What's wrong with checking for the libraries/headers in the right
 dependency order?

Where do you (as application developer) know about the whole
dependency chain for all the imported libraries from ? Try it
all out manually and then hardcode it ? What's when dependencies
change in newer versions of one of them ?

 Honestly, I've always wondered what's so attractive in pkg-config that
 people use it so much.  All it does is parsing a .pc file, 

That's all it has to do. Oh, a bit more: it follows the dependency
chain, and maybe does some fixups (eg. in sysroot builds).

 The version check pkg-config does is simply a comparison with the
 version embodied in the .pc file, which does not match the reality
 in some cases, and more importantly, is the wrong approach -- the
 version check may succeed, but the library may not provide the
 feature needed by the package (improper installation, distro patch,
 sysadmin patch, forked software, anything else the package developer
 *has not* anticipated).  

So, you prefer complete test suites dor all your dependencies
in your importing package ?

 And vice versa, which is equally annoying -- the library provides
 the symbol (or the new feature) the package needs, but the .pc
 file still contains the old version, because usually it's bumped
 at release time.  Ugh.

A question of proper release engineering. If you're not happy with
certain upstream's releases, fix them and submit patches.
 
 You are basically right that using pkg-config is easier for many
 upstreams, but easy != correct.  Correctness is far more
 important.

True. Tell that the upstream devs if they messed up something.
My rules are designed to help finding out those things.

 I also fail to see what has pkg-config to do with distro-friendliness.
 A distro maintainer by definition should be familiar with the code,
 follow upstream development, examine diffs between upstream releases
 (in the ideal case), and add the appropriate build-dependencies when
 the new upstream version of the package needs them (or could benefit
 from them).

Ah, so he should also do much manual work, which could be fully
automated ?

  For my setups, it *is* required.
 
 Then you probably can't build lots of packages.  Many widely used
 libraries with a truckload of reverse dependencies do not support
 pkg-config, and there's nothing wrong in that.

When I encounter such cases, I fix them. At the source of the
problem. If it gets too complicated, I drop them in favour of
better choices (eg. I don't support Qt/KDE stuff at all, I don't

Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Bernhard R. Link
* Enrico Weigelt weig...@metux.de [100918 09:24]:
 * Yavor Doganov ya...@gnu.org schrieb:

   Switching dependencies which silently enables/disables features is
   a generally bad approach.
 
  Well, in my very humble experience, an optional dependency is ther
  precisely to provide an optional feature.

 No, opposite direction: features are functional requirements, whose
 implementations just happens to have some dependencies.

Well, I doubt one of those POVs is more valid than the other. While
features are an interesting point, the user is often more interested
in how do I get this to work with the maximum of functionality it
can provide given what I have or can reasonably get. From this point
of view, denoting which libraries are there and which are not is more
interesting. Another user might want a special feature and then only
get warnings for what they still need. So a perfect system would have
both features (via --(enable|disable)-xyz) and optional dependencies
(via --with[out]-abc), while a pragmatic system will have those that
make the most sense in a specific case.

 For example,
 an feature could be supporting compressed files, implemented using
 zlib or libbz2.

Actually, that is an example that shows that not everything is features.
Take for example reprepro: if you have libbz2 at compile time, it will
use libbz2 for supporting .bz2 files. If you do not have it, it will
call bunzip2. The only 'feature' to select here is whether some library
is used or not, so that is a --with[out]-libbz2 and a --enable would not
really make sense.

Bernhard R. Link
-- 
Never contain programs so few bugs, as when no debugging tools are available!
Niklaus Wirth


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



Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Enrico Weigelt
* Bernhard R. Link brl...@debian.org schrieb:

 Well, I doubt one of those POVs is more valid than the other. While
 features are an interesting point, the user is often more interested
 in how do I get this to work with the maximum of functionality it
 can provide given what I have or can reasonably get. From this point
 of view, denoting which libraries are there and which are not is more
 interesting. 

Add proper information on feature's dependencies in configure --help
output should suffice.

 Another user might want a special feature and then only
 get warnings for what they still need. So a perfect system would have
 both features (via --(enable|disable)-xyz) and optional dependencies
 (via --with[out]-abc), while a pragmatic system will have those that
 make the most sense in a specific case.

I still don't see a valid reason why some should want to switch
dependencies. If you enabled a feature with some unsatisfied
dependency, configure will tell that.

  For example,
  an feature could be supporting compressed files, implemented using
  zlib or libbz2.
 
 Actually, that is an example that shows that not everything is features.
 Take for example reprepro: if you have libbz2 at compile time, it will
 use libbz2 for supporting .bz2 files. If you do not have it, it will
 call bunzip2. 

The feature would be called builtin-bunzip. It's benefit over not
having it is a possible speedup. In this case we don't have a strictly
functional, but a technical implementation feature.

 The only 'feature' to select here is whether some library
 is used or not, so that is a --with[out]-libbz2 and a --enable
 would not really make sense.

Using some library isn't a feature, instead a technical decision.
As said, the feature - IOW what user gains from this, is an
possible speedup by calling decompression code directly, instead
of having to pipe it to another process.


cu
-- 
--
 Enrico Weigelt, metux IT service -- http://www.metux.de/

 phone:  +49 36207 519931  email: weig...@metux.de
 mobile: +49 151 27565287  icq:   210169427 skype: nekrad666
--
 Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme
--


-- 
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/20100918090958.ga17...@nibiru.local



Can you recommend me?

2010-09-18 Thread DMS Claims

Hi,
I am writing to ask if you will recommend my work in Qapacity.
   It takes less than a minute and I would appreciate the help.
Thanks in advance,
DMS

Recommend DMS:

http://dms-claims.qapacity.com/car-accident-claims/?recommendamp;serviceamp;81dcd45bb8

DMS Claims has sent you this message through Qapacity. If you have any 
questions you can send us a mail at i...@qapacity.com 

Re: Naming of non-uploading DDs (Was: GR: welcome non-packaging contributors as Debian project members)

2010-09-18 Thread Secretary - Kurt Roeckx
On Sat, Sep 18, 2010 at 11:40:07AM +0200, Stefano Zacchiroli wrote:
 
 I'm hereby introducing two changes:
 
 a) dropping the name Debian Contributor
(attachment 0001-remove-the-term-Debian-Contributor.patch)
 
 b) fixing punctuation as suggested by Kumar Appaiah [1], thanks!
(attachment 0002-Add-punctuation-and-fix-some-pronouns.patch)
 
 The text applying both patches is attached as well (attachment
 debian-contributors.txt). Everything has been pushed to [2].
 
 I believe (b) falls for sure under §A.1.6.
 
 I believe that also (a) falls under §A.1.6, but it's your call.
 *If* you disagree with that interpretation, I hereby formally introduce
 it as an amendment and, as the GR proposer, I hereby also accept it.

I believe the text has the same intentions as the orignal, but
that it does alter the meaning.  Which means I'm resetting the
discussion period.

It would be nice that people could confirm that they have
no problem with this changed text so that there is no doubt that
this text has enough seconds.


Kurt



signature.asc
Description: Digital signature


Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Ian Jackson
Vincent Bernat writes (Re: RFC: Rules for distro-friendly packages):
 I am not a native English speaker so I fail to see how saying living in
 a  narrow-minded world is rude.

I see.  I hope I can help by explaining that calling someone
narrow-minded is insulting.  Telling someone they are living in an
XYZ world is also usually insulting (as it implies they're not living
in the same world as the rest of us).

   Wiktionary does not say that
 narrow-minded is rude. It says  having restricted or rigid views

Neither does Wiktionary say that stupid is rude; it just says
Lacking in intelligence.  Nevertheless I expect you would be
offended if someone called you stupid.

In general, attributing negative qualities to the _person_ rather than
to the _ideas_ is nearly always rude.  I think it should be avoided
here, whereever possible.

   I should rephrase with Keep your restricted view on what a user
 is allowed to  I apology for any misunderstanding.

Thanks, I think that clarification is good.

Ian.


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



Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Ian Jackson
Enrico Weigelt writes (Re: RFC: Rules for distro-friendly packages):
 Ian Jackson ijack...@chiark.greenend.org.uk schrieb:
  We aren't in a position to dictate to upstream. 
 
 No, we aren't. But we (as downstreams) can define rules on what we
 consider a good package engineering - if upstream cannot / doesnt
 want to follow the rules, OSS-QM can step in as man-in-the-middle ;-p

Rules is just wrong.  Guidelines might be appropriate, but I would
suggest Recommendations.

Perhaps I'm just getting hung up on individual words here, but words
are very important to tone.  In English if you say rules you
generally mean something that /must/ be followed.  Writing up a set of
_rules_ is only appropriate when you are in a position of authority in
relation to the subject matter (eg, you are the designer of a game, or
the person in charge of a government department, or whatever).  

If you are _not_ in a position of authority, then behaving as if you
are is a very aggressive act and not likely to be received well.  That
is what you seem to be doing, at least to my reading as a native
English speaker (and sometime upstream developer).

 That might come from the backgroud that it's actually meant to
 form a set of QM requirements. I'm going to implement an checklist
 system for the OSS-QM project [1] where all the releases are
 undergoing an approval process.

Undefined footnote error in [1].  So I'll guess what OSS-QM is.

In general, if you recast your document as we will take as input
upstream packages in general, and as output will will produce packages
which conform to these rules, then that's fine, because _your_
propject's output is something that you are legitimately in charge of.
Although I don't think that many Debian maintainers would prefer to
add an additional layer of intermediary between themselves and
upstream.

But if you're going to wave your document at upstreams, in order to
try to get them to do as you suggest, then you absolutely must phrase
the document in terms of _suggestions_ and _recommendations_, from a
position of humility.

Also, I guess Q stands for Quality.  If you're going to be talking
to upstreams I would avoid using the word Quality to describe your
recommendations.  Upstreams will have their own ideas about what
constitutes quality for their software (ie, depending on their own
goals), so you are at best going to cause confusion.  At worst the
upstreams will be offended that you seem to be trying to redefine the
goals of their project, or that you are saying their project has poor
quality.

Ian.


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



Re: Does the HDCP crack have any implications for Debian?

2010-09-18 Thread Angus Hedger
On Sat, 18 Sep 2010 19:55:46 +1000
Scott Ferguson prettyfly.producti...@gmail.com wrote:
snippy
 Agreed (though I've no idea what a UK (?) pound is worth. 

Yup, UK pound, 1.00 GBP = 1.56323 USD give or take ;)

1920 x 1080
 x 24 bits per pixel x 24 fps = 145MB/sec (not allowing for audio)

Yeh, something like that, so with a good software raid and some good
disks that shouldnt be a problem.

 I suspect there would only be two types of user for the key - vendors
 of home entertainment systems might become a market (though they
 already use a system to bypass restrictions on projectors), and
 commercial pirating operations (the ones who actually press disks).
 Though the articles I've read all talk about pirates I suspect the
 reporters are just *cough* wrong (pre-release pirate material is
 copied from studio prior to encryption).
 I recall reading an article by a Google engineer where he spoke of a
 (Linux) system using multiple off-the-shelf computers with software
 (?) RAID  to achieve near-RAM speed disk access - and an evaluation
 FPGA card from www.xilinx.com is fairly cheap...

 With reference to the original posters question - maybe, just maybe,
 the key might become part of a driver to allow any display to display
 a stream from a blueray player... but I won't be writing it. I'm very
 happy with the performance I get by simply copying the bluerays I buy
 to hard drive, and I prefer keep my media on hdd.

You could build a subsystem that took the HDCP protected content from
the BR drive and passed it in the clear to the video output.

One of the biggest markets I can see is a small repeater box that
sits between the output from the BR player and the screen, which
passes a non HDCP signal to non certified screens, eg older but high
ress ones. 

In the end, its not really about BR, its about any content, and
breaking the end to end encryption.

http://xkcd.com/129/

;)

 Cheers

--
Regards,

Angus Hedger

Debian GNU/Linux User   PGP Public Key 0xEE6A4B97


signature.asc
Description: PGP signature


Re: Bug in istallazione di debian

2010-09-18 Thread Stephen Gran
This one time, at band camp, Benedetto Lorello said:
 Ciao sono un utente debian,
 volevo segnalare un piccolo bug che impedisce a grub di avviare il sistema.
 Si ripete anche ad ogni aggiornamento del kernel.
 L'errore è nel file di configurazione del grub.
 
 Se sto parlando con la persona giusta ti faccio avere i log dell'errore.
 Altrimenti potresti dirmi a chi scrivere?

(Spero che il mio italiano è comprensibile).

Ciao,

Si prega di segnalare a debian-ital...@lists.debian.org.

grazie,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Re: Libre Kernel .deb -- Looks for a Mentor

2010-09-18 Thread Ben Hutchings
On Sat, 2010-09-18 at 10:56 +0200, Aurélien DESBRIÈRES wrote:
 Hi,
 
 I have made .deb of the libre kernel 2.6.35.4 from fsfla.org
 You can find them at :: http://www.fscorsica.org/kernel-en.html
 
 I have tried to respect the maint-guide debian to create them.
 To offer a free way staying under debian.
 
 As the libre kernel source from fsfla.org need a receipe to be well
 compiled i've create this page too to help people to made it bye
 themself :: http://libreplanet.org/wiki/Libre_Kernel_Group
 
 At this point I'm looking for a mentor, to progress and make thinks as
 correct as possible.

The Debian Linux kernel package is already free, according to the DFSG.
There is no need for a seperate package.

Ben.

-- 
Ben Hutchings
Once a job is fouled up, anything done to improve it makes it worse.


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


Re: Taking over maintainance of yaboot ?

2010-09-18 Thread Frank Fegert
Hello,

On Sat, Sep 18, 2010 at 08:58:06AM +0200, Zsombor wrote:
 2010/9/17 Aurélien GÉRÔME a...@debian.org:
 
  I miss some physical 64-bit hardware to test it, mainly access to
  pSeries, but I guess people on this list will be able to test d-i
  images before I can submit changes, won't they?
 
 
 I also have some 64bit Power HW to test (IBM and Bull machines), maybe
 pSeries, too. Next week I can provide more details.
 However, my work will be limited to testing, I dont think I can
 participate to reliable package maintenance work.

i also can offer testing on RS6000/pSeries/System P hardware. We're
already running several instances of Debian 5.0.5 in LPARs in our
Power5, 5+, 6 and 6+ environment. All LPARs are fully virtualized
with dual VIOS, so unfortunately full system partition tests are
not possible :-/ At home i can do tests against PowerPC 604e (32bit),
Power3 and Power4 (both 64bit).
To get the 5.0.5 system booting on Power6/6+ after installation, i
already had to patch yaboot up from the stock 1.3.13a to 1.3.14rc2 -
the newest version at that time. Strangely though the installer it-
self didn't mind booting at all! But even with 1.3.14rc2 there are
occasionally boot problems, where you get thrown back to the yaboot
prompt and on second try everything starts up fine. So if it were
possible to ditch the whole yaboot stuff in favour of e.g. Grub2 i'd
be more than happy.

Best regards,

Frank


-- 
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/20100918105032.ga1...@dyndns.org



Re: Re: searching inside files with find, cat and grep as a oneliner ...

2010-09-18 Thread Clive Standbridge
 
 Search all files under the home directory (recursively) with an
 extension of .txt
 for the keyword xorg:
 
 grep -r xorg ~/*.txt

That looks like a misunderstanding. That command actually causes grep
to search
(a) files matching *.txt in the home directory.
(b) files of ANY name, contained in subdirectories named *.txt in the
home directory.

To search all files under the home directory (recursively) with an
extension of .txt, you will need to use find .. | xargs or find
.. -exec ... {} + as discussed previously,


-- 
Cheers,
Clive


-- 
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/20100918110117.ga5...@rimmer.esmertec.com



[LCFC] po-debconf://linux-2.6/pt_BR.po

2010-09-18 Thread Flamarion Jorge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

LCFC :D
- -- 
Flamarion Jorge
OpenPGP Key: 6CA750E1
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)

iEYEARECAAYFAkyUnQYACgkQ0SDRnmynUOH2XwCg1iV2BGTjOkGyR5h6N+dKsSSD
gSIAoLT1lyt4DswuctoZjgZB9xmnZVoV
=yyvt
-END PGP SIGNATURE-
# linux26 Brazilian Portuguese debconf template translation.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Flamarion Jorge jorge.flamar...@gmail.com, 2010.
#
msgid 
msgstr 
Project-Id-Version: linux26\n
Report-Msgid-Bugs-To: linux-...@packages.debian.org\n
POT-Creation-Date: 2010-06-18 05:20+0100\n
PO-Revision-Date: 2010-09-11 10:20-0300\n
Last-Translator: Flamarion Jorge jorge.flamar...@gmail.com\n
Language-Team: Brazilian Portuguese debian-l10n-portugu...@lists.debian.
org\n
Language: \n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
Plural-Forms: nplurals=2; plural=(n  1);\n

#. Type: boolean
#. Description
#: ../linux-base.templates:2001
msgid Update disk device IDs in system configuration?
msgstr Atualizar os ID's de disco no sistema de configuração?

#. Type: boolean
#. Description
#: ../linux-base.templates:2001
msgid 
The new Linux kernel version provides different drivers for some PATA (IDE) 
controllers. The names of some hard disk, CD-ROM, and tape devices may 
change.
msgstr 
A nova versão do Kernel Linux provê drivers diferentes para alguns 
controladores PATA (IDE). Os nomes de alguns discos rigidos, CD ROM e 
dispositivos de fita talvez mude.

#. Type: boolean
#. Description
#: ../linux-base.templates:2001
msgid 
It is now recommended to identify disk devices in configuration files by 
label or UUID (unique identifier) rather than by device name, which will 
work with both old and new kernel versions.
msgstr 
Agora isto é recomendado para identificar nos arquivos de configuração, 
dispositivos de discos ou UUID (identificador único) em vez do nome de 
dispositivo, que funcionará com ambos, velhas e novas versões do kernel.

#. Type: boolean
#. Description
#: ../linux-base.templates:2001
msgid 
If you choose to not update the system configuration automatically, you must 
update device IDs yourself before the next system reboot or the system may 
become unbootable.
msgstr 
Se você escolher não atualizar o sistema de configuração automaticamente, 
você deve atualizar seus identificadores de dispositivos (ID) por sua conta 
antes da próxima reinicialização do sistema ou talvez o sistema não voltará 
a inicializar.

#. Type: boolean
#. Description
#. Type: boolean
#. Description
#: ../linux-base.templates:3001 ../linux-base.templates:4001
msgid Apply configuration changes to disk device IDs?
msgstr Aplicar mudança nas configurações de identificares (ID) de discos?

#. Type: boolean
#. Description
#: ../linux-base.templates:3001
msgid These devices will be assigned UUIDs or labels:
msgstr Estes dispositivos serão associados a UUIDs ou etiquetas:

#. Type: boolean
#. Description
#. Type: boolean
#. Description
#: ../linux-base.templates:3001 ../linux-base.templates:4001
msgid These configuration files will be updated:
msgstr Estes arquivos de configuração serão atualizados:

#. Type: boolean
#. Description
#. Type: boolean
#. Description
#: ../linux-base.templates:3001 ../linux-base.templates:4001
msgid The device IDs will be changed as follows:
msgstr O identificador (ID) de dispositivo serão modificados como a seguir:

#. Type: error
#. Description
#: ../linux-base.templates:5001
msgid Configuration files still contain deprecated device names
msgstr Arquivos de configurações ainda contém nomes de dispositivos obsoletos

#. Type: error
#. Description
#: ../linux-base.templates:5001
msgid 
The following configuration files still use some device names that may 
change when using the new kernel:
msgstr 
O seguintes arquivos de configuração contém nomes de dispositivos obsoletos 
que talvez mudem quando usar o novo kernel:

#. Type: error
#. Description
#: ../linux-base.templates:6001
msgid Boot loader configuration check needed
msgstr É necessário checar o carregador de inicialização (boot loader)

#. Type: error
#. Description
#: ../linux-base.templates:6001
msgid 
The boot loader configuration for this system was not recognized. These 
settings in the configuration may need to be updated:
msgstr 
A configuração do carregador de inicialização (boot loader) para este 
sistema não foi reconhecida. Estes ajustes na configuração talvez precisem 
ser atualizados:

#. Type: error
#. Description
#: ../linux-base.templates:6001
msgid 
 * The root device ID passed as a kernel parameter;\n
 * The boot device ID used to install and update the boot loader.
msgstr 
 * O ID do dispositivo raiz passado como um parâmetro do kernel\n
 * O ID do dispositivo raiz usado para instalar uma atualização do 
carregador de inicialização.

#. Type: error

Bug#595423 closed by Mehdi Dogguy me...@dogguy.org (Re: Bug#595423: unblock: live-build/2.0~a28-1)

2010-09-18 Thread Debian Bug Tracking System
This is an automatic notification regarding your Bug report
which was filed against the release.debian.org package:

#595423: unblock: live-build/2.0~a29-1

It has been closed by Mehdi Dogguy me...@dogguy.org.

Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Mehdi Dogguy 
me...@dogguy.org by
replying to this email.


-- 
595423: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=595423
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
On 09/18/2010 10:24 AM, Daniel Baumann wrote:
 retitle 595423 unblock: live-build/2.0~a29-1
 thanks
 
 live-build (2.0~a29-1) unstable; urgency=low
 

Unblocked.

Regards,

-- 
Mehdi Dogguy مهدي الدڤي
http://dogguy.org/

---End Message---
---BeginMessage---
Package: release.debian.org

live-build (2.0~a25-1) unstable; urgency=low

  * Updating internal calls to use live-build instead of live-helper.
  * Updating lenny point release number.

 -- Daniel Baumann dan...@debian.org  Thu, 02 Sep 2010 15:15:31 +0200

live-build (2.0~a24-1) unstable; urgency=low

  [ Richard Nelson ]
  * Add param to cgi for --tasks.
  * Add param to the build.html templates for --tasks.
  * Add param to the form.html templates for --tasks.

  [ Daniel Baumann ]
  * Correcting typo in emdebian keyring packages variable (Closes:
#593346).
  * Updating copyright headers for live-build.
  * Replacing some references to live-helper with live-build.
  * Adding legacy symlinks for lh in live-helper transitional package.
  * Renaming manpages for live-build.
  * Replacing some references to live-helper with live-build in
manpages.
  * Replacing some references to live-helper with live-build in
templates.
  * Replacing some more references to live-helper with live-build in
scripts.
  * Replacing some references to live-helper with live-build in the cgi.
  * Replacing some references to live-helper with live-build in
examples.
  * Replacing some references to live-helper with live-build in lists.
  * Replacing some references to live-helper with live-build in
debhelper bug files.

 -- Daniel Baumann dan...@debian.org  Thu, 02 Sep 2010 15:06:23 +0200

live-build (2.0~a23-1) unstable; urgency=low

  * Adding slightly modified patch from Cody A.W. Somerville
cody.somervi...@canonical.com to extract casper uuid file from
casper initrds.
  * Setting default distribution to squeeze.
  * Moving /usr/share/live-helper to /usr/share/live/build.
  * Removing old and unmaintained po files.

 -- Daniel Baumann dan...@debian.org  Sat, 14 Aug 2010 20:53:08 +0200

live-build (2.0~a22-1) unstable; urgency=low

  [ Daniel Baumann ]
  * Making cp calls for syslinux templates recursive, thanks to Tiago
Bortoletto Vaz ti...@debian.org.

  [ Chris Lamb ]
  * Fixing spelling typo.
  * Run chroot stage with /var/lib/dpkg mounted as a tmpfs

  [ Richard Nelson ]
  * Correct typo on build.html.
  * Update to change in location and name of /live-helper.sh to
/scripts/build.sh.

  [ Daniel Baumann ]
  * Marking ndiff as lenny only in rescue list (Closes: #591469).

  [ Tiago Bortoletto Vaz ]
  * Adding curly braces to LH_MEDIA in syslinux template.
  * Fixing all LH_MEDIA related stuff in syslinux templates.
  * Adding Brazilian Portuguese templates for syslinux.

  [ Daniel Baumann ]
  * Updating debian-cd data.

  [ Chris Lamb ]
  * Fix LH_INTERACTIVE switch statement.

  [ Daniel Baumann ]
  * Setting default desktop for tasksel when installing package tasks to
avoid ending up with a pulled in gnome in all cases, thanks a lot to
Ben Armstrong sy...@debian.org for finding this solution.

 -- Daniel Baumann dan...@debian.org  Tue, 10 Aug 2010 04:21:01 +0200

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/


---End Message---


Re: Naming of non-uploading DDs (Was: GR: welcome non-packaging contributors as Debian project members)

2010-09-18 Thread Josselin Mouette
Le samedi 18 septembre 2010 à 11:56 +0200, Stefano Zacchiroli a écrit : 
 The Debian project aims at producing the best free operating system.
 To that end, the project benefits from various types of contributions,
 including, but not limited to: package maintenance, translations,
 infrastructure and website maintenance, porting, bug triaging and
 fixing, management activities, communication, testing, legal advice,
 quality assurance, etc.
 
 The Debian project acknowledges that:
 
 * To pursue Debian goals, package maintenance as well as a wide range of
   other technical and non-technical contributions are all valuable.
 
 * Active contributors of non-packaging work, who share Debian values
   and are ready to uphold Debian Foundation Documents, deserve the
   opportunity to become Debian Developers.
 
 The Debian project, therefore, invites the Debian Account Managers to:
 
 * Endorse the idea that contributors of non-packaging work might become
   Debian Developers, albeit without upload access to the Debian archive.
 
 * Establish procedures to evaluate and accept contributors of
   non-packaging work as Debian Developers.
 
 * Initiate the appropriate technical measures to enable contributors of
   non-packaging work, which get accepted as Debian Developers, to
   participate in Debian decision making and to access Debian
   infrastructure. 

Seconded.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'  “If you behave this way because you are blackmailed by someone,
  `-[…] I will see what I can do for you.”  -- Jörg Schilling


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


Re: Printing Long Edge (Standard) with HP DeskJet 990C - CUPS+Gutenprint v5.0.2 does not work

2010-09-18 Thread Camaleón
On Sat, 18 Sep 2010 12:43:50 +0200, Merciadri Luca wrote:

 Camaleón wrote:

 The command above lacks the file/document to print? :-?
   
 Well, this is what Adobe indicates me as the sent command. I assume it
 appends the name of the stuff to print!

Oh, okay, you didn't say you were printing from Acrobat Reader :-)

Can you test double side printing from Evince? Just to discard a problem 
with Adobe program.

 where `Deskjet' is the name of the printer for CUPS.

 Any idea?
 
 
 You can first check that duplex printing is an available option for
 your driver:

 ***
 lpoptions -p printername -l | grep -i duplex ***
   
 ==
 
 # lpoptions -p printername -l | grep -i duplex
 
 Duplex/2-Sided Printing: *None DuplexNoTumble DuplexTumble 

Rigth.

 If it is listed there and you get no output when calling lpr, take a
 look into CUPS logs (/var/log/cups/*), maybe there is any error there

 Calling `lpr' gives simply nothing, but a blinking cursor. I checked log
 files, but there seems to be nothing indicated, be it in error_log*,
 page_log*, access_log*.

Well, of course, you have to type the whole command:

***
lpr -P Deskjet -o Resolution=300dpi -o PageSize=Letter -o Duplex=DuplexNoTumble 
/path/to/pdffile.pdf
***

Greetings,

-- 
Camaleón


-- 
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/pan.2010.09.18.11.17...@gmail.com



Re: packaging Rivet

2010-09-18 Thread Massimo Manghi
Hi Stefan


On Fri, 17 Sep 2010 22:16:57 +0200, Stefan Fritsch wrote
 Hi Massimo,
 
 On Friday 17 September 2010, Massimo Manghi wrote:
  My questions are:
  
  1) is this list the right audience to seek help for refining and
  amending the scripts needed by deb-buildpackage for an apache
  related project?
 
 I think it would be best if you tried to ask general packaging 
 related questions on debian-ment...@lists.debian.org, which is the 
 usual forum for such questions. The Debian developer's reference 
 manual may answer some of your questions, too.  But questions that 
 are specific to packaging of Apache modules are definitely on-topic here.
 

thank you for the answer. I think the package I built is already 80% baked. I
based my work on the scripts David Welton made when he packaged Rivet 0.5 for
Debian Apache 1.3, before he quit his committment with Debian. So my doubts
are about how to fulfill the requirements of a Debian Apache Policy, how 
configuration files are automatically linked from etc/apache2/mod-enabled to
mod-available and how to reload the configuration into the server. I expected
to find postinst or postrm scripts for this purpose in other debian apache
packages but I didn't find any. Perhaps I didn't search hard enough, but I
thought that it was a chance to have general directions.

  2) what is the proper procedure to look for a sponsor of the
  package? I'm ready to provide for support for Rivet in the future,
  but I'd like to cooperate with official maintainers in the goal to
  have Rivet back into Debian.
 
 Do you mean that you want to (and have time to) maintain the package 
 yourself, i.e. deal with Debian bug reports and prepare updated 
 packages? In this case, the usual procedure is to upload the package 
 to mentors.debian.net and ask on debian-ment...@lists.debian.org for 
 a sponsor. But since finding a sponsor is sometimes difficult, it is 
 a good idea to ask here on the debian-apache list as well.
 

Yes, I can deal with bug reports and prepare future up-to-date packages. One
of the goals we have is getting more feedback from a wider set of web
developers. I just don't want (at least now) to go through the procedure of
becoming a Debian maintainer myself, as I don't see the point to do it for
keeping only one package. 

So I formally ask for a sponsor here, while I look for directions on how to
upload to mentors.debian.net.

 On the other hand, if you only want to be the upstream maintainer 
 and are looking for someone else to maintain the Debian package, you 
 should file a request for package bug on the wnpp pseudo-package. 
 Google or reportbug wnpp is your friend here.
 
I will anyway, but I think the first is my option

-- Massimo


-- 
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/20100918110743.m84...@apache.org



Bug#597275: ITP: collection4 -- web-based front-end for collectd

2010-09-18 Thread Sebastian Harl
Package: wnpp
Severity: wishlist
Owner: Sebastian Harl tok...@debian.org

* Package name: collection4
  Version : 4.0.0
  Upstream Author : Florian Forster f...@octo.it
* URL : http://octo.it/c4/
* Licenses: LGPL, GPL, BSDish
  Programming Lang: C, JavaScript
  Description : web-based front-end for collectd

collection4 (C4 for short) is a web-based graphing front-end for
collectd, the statistics collection and monitoring daemon. It allows to
graph and display the performance data collected by the daemon.

It is designed to efficiently handle large setups (more than 5 data
sets) as well. Also, it strives to allow a flexible customization of the
generated graphs through configuration of the front-end.


For now, the package will be targeted at experimental, since, despite
the version number, this is an initial release that is to be considered
alpha and still in heavy development.

-- 
Sebastian tokkee Harl +++ GnuPG-ID: 0x8501C7FC +++ http://tokkee.org/

Those who would give up Essential Liberty to purchase a little Temporary
Safety, deserve neither Liberty nor Safety. -- Benjamin Franklin



signature.asc
Description: Digital signature


Re: Re: searching inside files with find, cat and grep as a oneliner ...

2010-09-18 Thread Adam Borowski
On Sat, Sep 18, 2010 at 12:01:17PM +0100, Clive Standbridge wrote:
  Search all files under the home directory (recursively) with an
  extension of .txt
  for the keyword xorg:
  
  grep -r xorg ~/*.txt
 
 That looks like a misunderstanding. That command actually causes grep
 to search
 (a) files matching *.txt in the home directory.
 (b) files of ANY name, contained in subdirectories named *.txt in the
 home directory.
 
 To search all files under the home directory (recursively) with an
 extension of .txt, you will need to use find .. | xargs or find
 .. -exec ... {} + as discussed previously,

I guess you're looking for:
grep -r --include='*.txt' xorg ~

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


signature.asc
Description: Digital signature


Bug#597283: ITP: lib3to2 -- 3to2 tool and module for backporting Python 3 code

2010-09-18 Thread Per W.
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

   Package name: lib3to2
Version: 1.0~20100824
Upstream Author: Joseph Amenta joe DOT amenta AT gmail DOT com
URL: http://bitbucket.org/amentajo/lib3to2/
License: Apache
Description: tool and python-module for backporting Python 3 code

lib3to2 is already stable and the author plans to release 1.0 in near
future.
The generic code runs under python2.7 and python3.1!
The Debian package is lintian-clean but the debian/rules file needs a
review.

Currently the source-package (lib3to2) generates two binary packages:

python-3to2 for Python 2.7+
 This package is empty until you install python2.7 from experimental and
 add it to the supported versions in /usr/share/python/debian_defaults
manually.

python3-3to2 for Python 3.1+
 Also it seems to run fine with python3.2 from experimental

The current state can be seen on:
http://mentors.debian.net/cgi-bin/sponsor-pkglist?action=details;package=lib3to2
https://launchpad.net/~phobie/+archive/ppa/+packages
http://debian.zaubberer.net/debian/pool/sid/main/lib3to2/



-- 
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/4c94b309.5040...@safersignup.com



Bug#597295: ITP: libmeegotouch -- application and UI framework library built on top of Qt

2010-09-18 Thread Didier Raboud
Package: wnpp
Severity: wishlist
Owner: MeeGo Maintainers pkg-meego-maintain...@lists.alioth.debian.org

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package name: libmeegotouch
Version : 0.20.34
Upstream Author : Nokia Corporation
URL : http://meego.com
License : LGPL2.1
Programming Lang: C++
Description : application and UI framework library built on top of Qt.

Meego Touch is a cross-platform application and UI framework library built on 
top of Qt. The framework library makes use of the very latest Qt features to 
implement a specific UI style primarily targeting touch screen devices.

 NOTE to debian-devel 

This is the first ITP of a _long_ list of ITPs. The Debian Meego Maintainers
pkg-meego-maintain...@l.a.d.o intend to package almost everything that
comes out of MeeGo (see http://meego.gitorious.org ). [Some packages might
also come from Maemo and/or Moblin.] Hence further ITPs will drop the
CC:debian-devel in favour of pkg-meego-maintain...@l.a.d.o in order to avoid
flooding debian-devel. People who might want to join the effort please
gatecrash on pkg-meego-maintain...@l.a.d.o or #debian-meego to coordinate.

Cheers, OdyX

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

iJwEAQECAAYFAkyUx6cACgkQKA1Vt+jBwDi/TAP/bhNYUXmU6CEs3kQHEMtuzzeM
6BzboohsJQE6O5AcatWYJn2tzf+KNf7v00u6Vvl6YBmtdkz9q3ER2os6n0IR94L0
y7tHClzocvtOXuXFvkl4TfAvzzpRJildIfY7j/dCgIE0QKysFPW9387tFpl7CeHX
p4P0R10L352NPgwPaCE=
=5IWo
-END PGP SIGNATURE-



-- 
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/20100918140736.1977.42095.report...@tamino



Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Bernhard R. Link
* Enrico Weigelt weig...@metux.de [100918 05:49]:
 * Jesús M. Navarro jesus.nava...@undominio.net schrieb:

  Think of the most probable environment where somebody goes with the hassle
  of compiling new package into old RHEL 2.  Do you think such a chore is
  taken out of fun?  Or is it an environment where an overworked sysadmin at
  charge of a lot of disparaged machines is put into that need because out of
  his reach constrains?

 The sysadmins should run the build through a dedicated build system
 which generates packages for their target(s).

A dedicated build system is always stricly inferior for a user. It needs
more efford to set it up, efford to get all the build dependencies
right, and interatively fixing the build process or the software is an
utter pain.

It is usefull for a developer (and especially a package developer) for
checking one side of package build dependencies and robustness of the
build process, but not for a user.

 BTW: if you want to build new software directly on old systems, you'll
 sooner or later run into many other kinds of problems. For example
 think of bugs in older libc's or compilers which then would have to
 worked around in newer packages. That's nasty, nobody really likes that.
 The answer is clear: use a dedidacted build system (eg. via sysroot'ed
 crosscompiler), which produces the right code/packages for that old
 systems. This way, eg. you don't have to care about broken or missing
 libc functions on the target - an properly adapted toolchain takes
 care of this.

The part about the libc I do not understand at all. How should building
the software somewhere else help with missing libc functions? If you do
everything right in the build system you will have about the same
missing functions as on the target system, if you do something wrong you
have a different versions and thus binaries that will not work there
exactly because of those missing functions.

  You seem to forget that in the context of this discussion arbitrary users
  are sysadmins on their duty.  They are perfectly expected to be recompiling
  software on stable/production systems.  Heck, it's even there, on the FHS:

 In this case, the admins are also put into the role of package
 maintainer (of their own, 1-system distro) and QM engineer.
 They should have the neccessary skills to do that, or leave it.

Those that do not know the difference between a software package maintainer's
and a sysadmin's tasks and priorities should be neighter.
As a sysadmin, producing your local packages of a quality suitable for general
distribution will safe you from many other problems. But you can neighter
have an knowledge deep enough in all the software you have for general 
solutions,
nor will you have the time to do this always in the first round.


Bernhard R. Link


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100918155218.ga10...@pcpool00.mathematik.uni-freiburg.de



Bug#597324: ITP: php-crypt-blowfish -- PEAR module to encrypt/decrypt using the Blowfish algorithm

2010-09-18 Thread John Morrissey
Package: wnpp
Severity: wishlist
Owner: John Morrissey j...@horde.net

* Package name: php-crypt-blowfish
  Version : 1.1.0rc2
* URL : http://pear.php.net/package/Crypt_Blowfish
* License : BSD
  Programming Lang: PHP
  Description : PEAR module to encrypt/decrypt using the Blowfish algorithm

Performs Blowfish encryption in PHP without requiring the MCrypt PHP
extension, although it can make use of the extension if available.



-- 
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/20100918163423.22872.64598.report...@boost.horde.net



Bug#597334: ITP: dpic -- Produces diagrams for LaTeX documents or html pages

2010-09-18 Thread Lisandro Damián Nicanor Pérez Meyer
Package: wnpp
Severity: wishlist
Owner: Lisandro Damián Nicanor Pérez Meyer perezme...@gmail.com

* Package name: dpic
  Version : 2010.08.31
  Upstream Author : Dwight Aplevich aplev...@uwaterloo.ca
* URL : http://http://www.ece.uwaterloo.ca/~aplevich/dpic/
* License : BSD
  Programming Lang: C
  Description : Produces diagrams for LaTeX documents or html pages

dpic is an application that produces diagrams for LaTeX or html pages.
It uses the pic languague.

The pic language is particularly suited for easily creating line diagrams 
such as electric circuits, and many persons use a package of macros called 
Circuit macros along with the m4 macro processor. The pic language itself 
allows macro definitions, and both pic and m4 macros will be described.



-- 
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/20100918183245.14091.73610.report...@luna.lisandropm.com.ar



Re: Bug#597295: ITP: libmeegotouch -- application and UI framework library built on top of Qt

2010-09-18 Thread Adam Borowski
On Sat, Sep 18, 2010 at 04:07:36PM +0200, Didier Raboud wrote:
 This is the first ITP of a _long_ list of ITPs. The Debian Meego Maintainers
 pkg-meego-maintain...@l.a.d.o intend to package almost everything that
 comes out of MeeGo (see http://meego.gitorious.org ).

Yay!1!-e^(i*π)!!!

It's great to hear that.
Having the packages in the main archive means that there will be no
insanities like everything depending on exact versions on all other
packages, conflicting with coreutils, and other such gems.

It also means one will be able to use unmodified packages from Debian. 
Currently, backporting is so hairy you have to use a chroot for anything
non-trivial.

And even fixing a bug, like maemo's libvte showing gray (\e[30;1m) as black,
currently requires you to have your fixed package use the exact same version
number as the buggy ones, with all the consequences.

Having to mix qt with better sets of libraries is a small price to pay :p


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


signature.asc
Description: Digital signature


Bug#597340: dpkg-gencontrol: implicit substvar at the end of every field

2010-09-18 Thread Raphaël Hertzog
Package: dpkg-dev
Version: 1.15.8.5
Severity: wishlist

Every time that debhelper needs to adjust a dependency it provides a new
substvar and the maintainer needs to put it in the right field. I was
thinking that we could avoid the second half if some specific substvars
was added at the end of every field.

dpkg-gencontrol could be modified to always append the value of
${implicit:fieldname} at the end of the corresponding field. Maybe
we should even support multiple substvars (say
${implicit:fieldname:origin}) so that there's no coordination problem
if multiple tools want to add something at the end of the same field.

This would even make it possible for debhelper to add dependencies that
are not at all present in debian/control, like for example Breaks... this
would have been handy for example when several dh_* tools have stopped
doing their work on the assumption that the triggerized version of
the postinst snippet was available on the system. With a break, it could
ensure that the relevant package had been upgraded...

With such a system, the ${misc:Depends} that we are currently adding
everywhere would not have been needed.

CCing -devel and Joey Hess to have some input on this idea. Do you think
it would be useful ? Do you have comments and suggestions ?

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer ◈ [Flattr=20693]

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



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100918192351.23032.93817.report...@rivendell.localdomain



Re: Thinking about bundles

2010-09-18 Thread Raphael Hertzog
On Thu, 09 Sep 2010, Nicholas Bamber wrote:
 I have recently looked into a number of bundle packages. All of them
 have different implementations of the debian/rules although the ones
 I looked at had clearly once had a common parent. Hence I have been
 kept awake at night thinking how this situation might be improved.

In the article, I mentionned that bundling unrelated software is not a
good idea in general (mainly because there's no common software version to
use).

So I think that we should not create any infrastructure to make it
even easier to create those bundles.

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer ◈ [Flattr=20693]

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100918192929.ga23...@rivendell.home.ouaza.com



Bug#597344: ITP: python-configobject -- a wrapper to ConfigParser allowing to access sections and options with attribute names

2010-09-18 Thread Carl Chenet
Package: wnpp
Severity: wishlist
Owner: Carl Chenet cha...@ohmytux.com


* Package name: python-configobject
  Version : 1.1
  Upstream Author : Gael Pasgrimaud g...@gawel.org
* URL : http://pypi.python.org/pypi/ConfigObject
* License : GPL
  Programming Lang: Python
  Description : a wrapper to ConfigParser allowing to access sections and 
options with attribute names

ConfigObject is a wrapper to the Python ConfigParser module of the standard
library allowing to access sections and options with attribute names instead
of using set() and get() functions.



-- 
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/20100918200736.8325.99443.report...@laptop



Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Don Armstrong
On Fri, 17 Sep 2010, Vincent Bernat wrote:
 I am not a native English speaker so I fail to see how saying
 living in a narrow-minded world is rude. Wiktionary does not say
 that narrow-minded is rude. It says having restricted or rigid
 views which is exactly what I am expressing here. I should rephrase
 with Keep your restricted view on what a user is allowed to I
 apology for any misunderstanding.

Calling someone else narrow-minded or a person with restricted
view as opposed to engaging their argument is argumentum ad hominem,
and unnecessarily inflammatory.

Your point would have been better made if you had said the following
instead:

Unfortunately, I have users that are running very old versions and
that cannot upgrade it nightly. They need to test the software on
a preproduction system before trying to upgrade it.

I suggest we do the following instead [...] 

After all, everyone wants everyone else reading to see their point of
view, not get caught up in personal attacks and counter attacks.


Don Armstrong

-- 
Any excuse will serve a tyrant.
 -- Aesop

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/20100918202215.gt28...@teltox.donarmstrong.com



Re: Thinking about bundles

2010-09-18 Thread David Bremner
On Sat, 18 Sep 2010 21:29:29 +0200, Raphael Hertzog hert...@debian.org wrote:

 In the article, I mentionned that bundling unrelated software is not a
 good idea in general (mainly because there's no common software
 version to use).
 
 So I think that we should not create any infrastructure to make it
 even easier to create those bundles.

Well, OK, I see your point. But what should we do about e.g. tiny perl
modules. My/our impression was that ftp-master was not keen on having
many small packages. For example, libcatalyst-modules-perl has installed
size of 1468k, but bundles 81 modules. On average then, these would have
installed size less than 20k if unbundled.

All the best,

David


-- 
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/87aanedd6z@rocinante.cs.unb.ca



Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Enrico Weigelt
* Ian Jackson ijack...@chiark.greenend.org.uk schrieb:

 Rules is just wrong.  Guidelines might be appropriate, but I would
 suggest Recommendations.

In my case it are rules, which are required to get an qm stamp in
my company. Actually, it's just the tip of an iceberg of processes,
I can't describe in detail right now.

Of course, nobody forces other people to follow these rule, but it
would be a great help of upstreams would do so.

  That might come from the backgroud that it's actually meant to
  form a set of QM requirements. I'm going to implement an checklist
  system for the OSS-QM project [1] where all the releases are
  undergoing an approval process.
 
 Undefined footnote error in [1].  So I'll guess what OSS-QM is.

http://sourceforge.net/p/oss-qm/home/

 In general, if you recast your document as we will take as input
 upstream packages in general, and as output will will produce packages
 which conform to these rules, then that's fine, because _your_
 propject's output is something that you are legitimately in charge of.

Yes, but that's just a part of that. These rules are necessary to
run through our internal qm processes and build engines. (more of
it will be published soon).

 Although I don't think that many Debian maintainers would prefer to
 add an additional layer of intermediary between themselves and
 upstream.

They don't need to. OSS-QM provides canonical repositories [2],
where everybody can fetch from easily (especially built for 
automated systems). Debian changesets are also imported automatically.
(as far as possible)

 Also, I guess Q stands for Quality.  If you're going to be talking
 to upstreams I would avoid using the word Quality to describe your
 recommendations.  Upstreams will have their own ideas about what
 constitutes quality for their software (ie, depending on their own
 goals), so you are at best going to cause confusion. 

I'm currently writing a paper which describes the whole issue
more in detail - that should clear up the confusion.


cu
-- 
--
 Enrico Weigelt, metux IT service -- http://www.metux.de/

 phone:  +49 36207 519931  email: weig...@metux.de
 mobile: +49 151 27565287  icq:   210169427 skype: nekrad666
--
 Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme
--


-- 
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/20100919051358.ga19...@nibiru.local



Re: RFC: Rules for distro-friendly packages

2010-09-18 Thread Enrico Weigelt
* Enrico Weigelt weig...@metux.de schrieb:

 They don't need to. OSS-QM provides canonical repositories [2],
 where everybody can fetch from easily (especially built for 
 automated systems). Debian changesets are also imported automatically.
 (as far as possible)

[2] http://www.metux.de/download/oss-qm/normalized_repository.pdf


cu
-- 
--
 Enrico Weigelt, metux IT service -- http://www.metux.de/

 phone:  +49 36207 519931  email: weig...@metux.de
 mobile: +49 151 27565287  icq:   210169427 skype: nekrad666
--
 Embedded-Linux / Portierung / Opensource-QM / Verteilte Systeme
--


-- 
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/20100919051554.ga2...@nibiru.local



Accepted lemonldap-ng 0.9.4.1-4 (source all)

2010-09-18 Thread Xavier Guimard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 06:56:36 +0200
Source: lemonldap-ng
Binary: lemonldap-ng lemonldap-ng-doc liblemonldap-ng-handler-perl 
liblemonldap-ng-conf-perl liblemonldap-ng-manager-perl 
liblemonldap-ng-portal-perl
Architecture: source all
Version: 0.9.4.1-4
Distribution: unstable
Urgency: low
Maintainer: Xavier Guimard x.guim...@free.fr
Changed-By: Xavier Guimard x.guim...@free.fr
Description: 
 lemonldap-ng - Lemonldap::NG Web-SSO system
 lemonldap-ng-doc - Lemonldap::NG Web-SSO system documentation
 liblemonldap-ng-conf-perl - Lemonldap::NG common files
 liblemonldap-ng-handler-perl - Lemonldap::NG Apache module part
 liblemonldap-ng-manager-perl - Lemonldap::NG manager part
 liblemonldap-ng-portal-perl - Lemonldap::NG authentication portal part
Closes: 584453
Changes: 
 lemonldap-ng (0.9.4.1-4) unstable; urgency=low
 .
   * Spanish po-debconf template translation (Closes: #584453)
   * Debian policy update
Checksums-Sha1: 
 47c6251794e61b9fc0732eb254d3cb20c967bf20 1511 lemonldap-ng_0.9.4.1-4.dsc
 977de3fde0e49af8d50c1c2ac5eaa9b515cf20e0 28677 
lemonldap-ng_0.9.4.1-4.debian.tar.gz
 59ef256db421eda0974c7303b2a9719e1311ba36 12246 lemonldap-ng_0.9.4.1-4_all.deb
 5b0f75d08073b7e52f7eb38e007a086a02fcf481 871326 
lemonldap-ng-doc_0.9.4.1-4_all.deb
 4ec70b684b433eea2af8266771b0531f6081b7d3 78420 
liblemonldap-ng-handler-perl_0.9.4.1-4_all.deb
 17c771c464fa661874c68ce74050afb37dbaec86 58498 
liblemonldap-ng-conf-perl_0.9.4.1-4_all.deb
 5aae34cdd99f5f1ccea86edaabbb50aff1d86b63 152386 
liblemonldap-ng-manager-perl_0.9.4.1-4_all.deb
 aa26ea67dd2bc82af867ae31bbdd7d94be709ec3 361946 
liblemonldap-ng-portal-perl_0.9.4.1-4_all.deb
Checksums-Sha256: 
 8531b68c38e6ccd3337cef26225a68d2c2b4420ee5fed9dd405745cc3de50fa6 1511 
lemonldap-ng_0.9.4.1-4.dsc
 7d2b724612771c75b8e81ea3d19062b5b5e3e14916c397ee5652964968c3bf3e 28677 
lemonldap-ng_0.9.4.1-4.debian.tar.gz
 8cc327f0b55799a7a32340ee28a619fc6cb30d2e698c60f1b6515e3903db77c3 12246 
lemonldap-ng_0.9.4.1-4_all.deb
 bbb1629ef08f5a5e5c0f0b935937e5722878e75c0e547b48ea9b4279467178bf 871326 
lemonldap-ng-doc_0.9.4.1-4_all.deb
 53dc47bdedcad564a00dd85398359129ae8935161d0e73cdf9a23ad90655e51a 78420 
liblemonldap-ng-handler-perl_0.9.4.1-4_all.deb
 d14dcb0a07eee7c2da90e17a25722dba2a083d07176be7cd5f85efeb423ee7c1 58498 
liblemonldap-ng-conf-perl_0.9.4.1-4_all.deb
 a4475cd9d2f5c295d2b5be06462b0822bc6af6ea96abee0fddc16fc5ba0d0a22 152386 
liblemonldap-ng-manager-perl_0.9.4.1-4_all.deb
 2001cfa08c0fdc26fab97f5f00861d487c8f291c73f36c038a93d4f09558866d 361946 
liblemonldap-ng-portal-perl_0.9.4.1-4_all.deb
Files: 
 24e271daa5b3410102a294295b3ea240 1511 perl extra lemonldap-ng_0.9.4.1-4.dsc
 b2a5d3ac61752bb59ef06621c26b525e 28677 perl extra 
lemonldap-ng_0.9.4.1-4.debian.tar.gz
 41ac83f271b3d052252efa8a82676d36 12246 perl extra 
lemonldap-ng_0.9.4.1-4_all.deb
 9351d9d2d0c10e131af4a74aa2ef97f1 871326 doc extra 
lemonldap-ng-doc_0.9.4.1-4_all.deb
 894587d338a7a46df37ec457e62513a3 78420 perl extra 
liblemonldap-ng-handler-perl_0.9.4.1-4_all.deb
 63636c718ea730957a6f7f9c1e897d57 58498 perl extra 
liblemonldap-ng-conf-perl_0.9.4.1-4_all.deb
 d34c45507378b974900dc80feecc758b 152386 perl extra 
liblemonldap-ng-manager-perl_0.9.4.1-4_all.deb
 d423a8311260d2c30dbb29876d9079e2 361946 perl extra 
liblemonldap-ng-portal-perl_0.9.4.1-4_all.deb

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

iEYEARECAAYFAkyUSKAACgkQZ9okSKmj7dVI5wCdHN1HcLDkDuQVhw6r4bF4CUIt
hkMAni+mgstLIBTfNXlNKQlxTkZEltY8
=0tJp
-END PGP SIGNATURE-


Accepted:
lemonldap-ng-doc_0.9.4.1-4_all.deb
  to main/l/lemonldap-ng/lemonldap-ng-doc_0.9.4.1-4_all.deb
lemonldap-ng_0.9.4.1-4.debian.tar.gz
  to main/l/lemonldap-ng/lemonldap-ng_0.9.4.1-4.debian.tar.gz
lemonldap-ng_0.9.4.1-4.dsc
  to main/l/lemonldap-ng/lemonldap-ng_0.9.4.1-4.dsc
lemonldap-ng_0.9.4.1-4_all.deb
  to main/l/lemonldap-ng/lemonldap-ng_0.9.4.1-4_all.deb
liblemonldap-ng-conf-perl_0.9.4.1-4_all.deb
  to main/l/lemonldap-ng/liblemonldap-ng-conf-perl_0.9.4.1-4_all.deb
liblemonldap-ng-handler-perl_0.9.4.1-4_all.deb
  to main/l/lemonldap-ng/liblemonldap-ng-handler-perl_0.9.4.1-4_all.deb
liblemonldap-ng-manager-perl_0.9.4.1-4_all.deb
  to main/l/lemonldap-ng/liblemonldap-ng-manager-perl_0.9.4.1-4_all.deb
liblemonldap-ng-portal-perl_0.9.4.1-4_all.deb
  to main/l/lemonldap-ng/liblemonldap-ng-portal-perl_0.9.4.1-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/e1owrgy-0006eb...@franck.debian.org



Accepted pacparser 1.2.6-1 (source i386)

2010-09-18 Thread Andrew Pollock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 17 Sep 2010 21:23:56 -0700
Source: pacparser
Binary: libpacparser1 libpacparser1-dev python-pacparser
Architecture: source i386
Version: 1.2.6-1
Distribution: unstable
Urgency: low
Maintainer: Andrew Pollock apoll...@debian.org
Changed-By: Andrew Pollock apoll...@debian.org
Description: 
 libpacparser1 - library to parse proxy auto-config files
 libpacparser1-dev - library to parse proxy auto-config files (development 
files)
 python-pacparser - Python module to parse proxy auto-config files
Changes: 
 pacparser (1.2.6-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 3d251123c2444dfa14e0b35c3a010cd477d239d2 1672 pacparser_1.2.6-1.dsc
 c844b6a85be3a9616af37f279f4892bfb0371e68 1192851 pacparser_1.2.6.orig.tar.gz
 77f73b46a15062457537f60a016492a5d04fb2e0 3153 pacparser_1.2.6-1.diff.gz
 bd6b342df4624c9b88f43cfca87344c0203837ee 328664 libpacparser1_1.2.6-1_i386.deb
 319c0aec20611ea51bb40835650bd38568b77b09 12620 
libpacparser1-dev_1.2.6-1_i386.deb
 3395522f6c6867e92e90b1bde0b6b191fce4fcf4 352856 
python-pacparser_1.2.6-1_i386.deb
Checksums-Sha256: 
 62c212852b873a334bd6e4f65e5eb1bba30fa2ec20c30a30f3b2be5f4934651a 1672 
pacparser_1.2.6-1.dsc
 4cebdb563fc48b83977660d3b89d1bd899d1a57f04765d3d60ecef90145bd7a9 1192851 
pacparser_1.2.6.orig.tar.gz
 dc7bcbcee2808ef5353968a2749222a3b6f2d6f7a2712c9b634a6db03119a55c 3153 
pacparser_1.2.6-1.diff.gz
 a9c420ae27d7cca0a8cfe6290af0c2c16caa488d06f31befd29d7a84ae170479 328664 
libpacparser1_1.2.6-1_i386.deb
 878fa3a41fad03f3e4a6ed309de4e1628d54a74edb568ef58ad793be4ec4d7ee 12620 
libpacparser1-dev_1.2.6-1_i386.deb
 b88a8226bb0e40feafcbc0c5902088a84e31f3dd25aee442025d22be6e5b5837 352856 
python-pacparser_1.2.6-1_i386.deb
Files: 
 439eac205a7d6a8111efb0e5907a27f4 1672 libs extra pacparser_1.2.6-1.dsc
 612a355115d70a842dde661eee2c915b 1192851 libs extra pacparser_1.2.6.orig.tar.gz
 56dd7506f32240357074be58f85ff936 3153 libs extra pacparser_1.2.6-1.diff.gz
 010c66ab26704d72d9667de1d406a1ca 328664 libs extra 
libpacparser1_1.2.6-1_i386.deb
 8ea60876c5ebe6afc063b4f2926b1222 12620 libdevel extra 
libpacparser1-dev_1.2.6-1_i386.deb
 e886d3b4d3636f1857046b5d45b66c38 352856 python extra 
python-pacparser_1.2.6-1_i386.deb

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

iQIcBAEBCAAGBQJMlEXnAAoJEFHf2Ts++3nv41AP/R9qzqO5198lqczruralVgBz
CKzEAzuVCsrqPd0KgRbtcPmX4h2kIiLdm2+ZkjgQ9hK+XcZRSbD9DfYwl8GGEgHK
CH7K8YpcDPULoEAh/zP1LT/V1GAcQ3Ha6gX+iC28UwLLPZ9HanV83GraI+/2a8aJ
1lUhtf/c6ZhP8uLKDvmZ1+2lRYoh23y3RRMZsJHk+c2RKtTbzSvMQPRI6ViBjhnw
0Facjg5mIYhdxbYxDkmqjToR0lLelWhKJB+LgfXSdJxMqRoHcwnD4WADNosJDcZV
Ohga/gG323OtUeEAkvipXqoU9F/cZ6ijX8HuSG2g4fVFJ2vi/lhmC351YwtULC7E
ef5G6o6DTElO06fFnf1wvQ6ISaq9Dnet4mkw749l7w2bZ+jYFG7jC0xxr+lYAJQM
gquCAfo9NcG5exaVPraBMuwwem6aXEu5LdFG5n4B6kbaM2f98fP4l8KzdUaC4BIL
RREjvdy57woSqtC+F+YESp72CTf5cYbUyT2tFmUUxkCsCzwNX6sReFHeLIWvaV69
MBWJyGHRHN/IF9KfxCDMGA1IxfpAsehmScxG9kKr9Ip+3kH0CmGymHh3fNV1aOlt
pqI6peHCXMbEkRn7DegGqvQRddOcgakzeLrYCIo/8jsfEwiATzd6eJ2hEQq2lWt+
jiPxs3P9tNceZA0m1DdU
=KJVF
-END PGP SIGNATURE-


Accepted:
libpacparser1-dev_1.2.6-1_i386.deb
  to main/p/pacparser/libpacparser1-dev_1.2.6-1_i386.deb
libpacparser1_1.2.6-1_i386.deb
  to main/p/pacparser/libpacparser1_1.2.6-1_i386.deb
pacparser_1.2.6-1.diff.gz
  to main/p/pacparser/pacparser_1.2.6-1.diff.gz
pacparser_1.2.6-1.dsc
  to main/p/pacparser/pacparser_1.2.6-1.dsc
pacparser_1.2.6.orig.tar.gz
  to main/p/pacparser/pacparser_1.2.6.orig.tar.gz
python-pacparser_1.2.6-1_i386.deb
  to main/p/pacparser/python-pacparser_1.2.6-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/e1owrgk-0006jz...@franck.debian.org



Accepted tomcat6 6.0.28-6 (source all)

2010-09-18 Thread tony mancill
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 17 Sep 2010 21:30:27 -0700
Source: tomcat6
Binary: tomcat6-common tomcat6 tomcat6-user libtomcat6-java libservlet2.5-java 
libservlet2.5-java-doc tomcat6-admin tomcat6-examples tomcat6-docs
Architecture: source all
Version: 6.0.28-6
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: tony mancill tmanc...@debian.org
Description: 
 libservlet2.5-java - Servlet 2.5 and JSP 2.1 Java API classes
 libservlet2.5-java-doc - Servlet 2.5 and JSP 2.1 Java API documentation
 libtomcat6-java - Servlet and JSP engine -- core libraries
 tomcat6- Servlet and JSP engine
 tomcat6-admin - Servlet and JSP engine -- admin web applications
 tomcat6-common - Servlet and JSP engine -- common files
 tomcat6-docs - Servlet and JSP engine -- documentation
 tomcat6-examples - Servlet and JSP engine -- example web applications
 tomcat6-user - Servlet and JSP engine -- tools to create user instances
Closes: 592627 592655 593200 593676 595460
Changes: 
 tomcat6 (6.0.28-6) unstable; urgency=low
 .
   * Team upload.
   * Add Japanese debconf template translation.
 Thanks to Hideki Yamane. (Closes: #595460)
   * Add Russian debconf template translation.
 Thanks to Yuri Kozlov. (Closes: #592627)
   * Add Portuguese debconf template translation.
 Thanks to Américo Monteiro. (Closes: #592655)
   * Add Swedish debconf template translation.
 Thanks to Martin Bagge. (Closes: #593676)
   * Add German debconf template translation.
 Thanks to Holger Wansing. (Closes: #593200)
Checksums-Sha1: 
 8c174222fc6e951f8f0d728ccdcca5a2788bf946 2257 tomcat6_6.0.28-6.dsc
 cb4086a1ecbb126b657cd781c30f1b5cf9701990 36604 tomcat6_6.0.28-6.debian.tar.gz
 de66eb3b43e6371731f17a59ed7740468dba03b1 48544 tomcat6-common_6.0.28-6_all.deb
 957db0bf948b6e460256a578f9d1315e3ad2075f 35076 tomcat6_6.0.28-6_all.deb
 1c923b0c32d76f72577313b5f78b6e80d29edffa 26316 tomcat6-user_6.0.28-6_all.deb
 14e5d08ea108961bad9da225052befed2d70d8fb 3025098 
libtomcat6-java_6.0.28-6_all.deb
 147726ebcd6cfe1fd087edcb3f13e9b640cce89e 191660 
libservlet2.5-java_6.0.28-6_all.deb
 de3c3326b6de13fb7d2629eb9ca6122fd38e8dbc 255410 
libservlet2.5-java-doc_6.0.28-6_all.deb
 fc6bce626b1f6f1e79f49e9df51b9ea5b22c9a60 42398 tomcat6-admin_6.0.28-6_all.deb
 2d82bef41df8caf4b2cb314c115d8901abc17780 161986 
tomcat6-examples_6.0.28-6_all.deb
 0b0a0cd889cfb743879adf1d3f419b1da907e0ed 532056 tomcat6-docs_6.0.28-6_all.deb
Checksums-Sha256: 
 87657f4faa9b9f7f9757c98965a4592c92b24dafb74faba2dc75a678050e67f9 2257 
tomcat6_6.0.28-6.dsc
 fbf53eba0cc8ba65adfee538f9f790ba3678018681cd05b4e6ad049c81f0c999 36604 
tomcat6_6.0.28-6.debian.tar.gz
 31539914f3baabdc85d306182a6ad87122e954eaa9bd9628c97bb4597bce3198 48544 
tomcat6-common_6.0.28-6_all.deb
 39f922540306d8fad294bc055521cb3ded6c0b22c61b9262a99828829a8f8b62 35076 
tomcat6_6.0.28-6_all.deb
 12c8d586c16bb2e56860812b4966b85388b3a472793c63b76691e6fae4ffa545 26316 
tomcat6-user_6.0.28-6_all.deb
 87eb60a35e36288e30f1635cf0efc7d9639c35302aa3cf1a2c075a2566d543ac 3025098 
libtomcat6-java_6.0.28-6_all.deb
 2df0e2095ad3a36fa000f70d5c14c212e7d579fd9487ac0f511338da6fc7c9cf 191660 
libservlet2.5-java_6.0.28-6_all.deb
 c00a5bd15c2da6148b5d0377ca4566c9a64516297504754abd845f877f65a920 255410 
libservlet2.5-java-doc_6.0.28-6_all.deb
 9456131e90838443103ba2d89589c867f03bd041b845a8f7c9972366bb7555f9 42398 
tomcat6-admin_6.0.28-6_all.deb
 26276ce3f112b6465f6136206cba238cc132327d89381f861483966896b5d2cc 161986 
tomcat6-examples_6.0.28-6_all.deb
 691ac8444c13fea8333c38c3a7215db702274bfde02762c334626c940997e1f9 532056 
tomcat6-docs_6.0.28-6_all.deb
Files: 
 a8d536f12f0704ad5efa0486af2fdd8a 2257 java optional tomcat6_6.0.28-6.dsc
 5bd355255617cb779fc1b0194ed31a77 36604 java optional 
tomcat6_6.0.28-6.debian.tar.gz
 25396ebc9fabc8d2073e0126a63eae22 48544 java optional 
tomcat6-common_6.0.28-6_all.deb
 cde84f128fb90bbc23c5ee9ac590c2f4 35076 java optional tomcat6_6.0.28-6_all.deb
 9da5c3c62b5ec5fd4008c3c21912911c 26316 java optional 
tomcat6-user_6.0.28-6_all.deb
 acaed5aaae4c43d647316c03643786d9 3025098 java optional 
libtomcat6-java_6.0.28-6_all.deb
 e02c56f73f9d927629f79147e43f36f7 191660 java optional 
libservlet2.5-java_6.0.28-6_all.deb
 580d895ef75a439b436a648e84507331 255410 doc optional 
libservlet2.5-java-doc_6.0.28-6_all.deb
 39145723210c23cc6224239ae3a05301 42398 java optional 
tomcat6-admin_6.0.28-6_all.deb
 84a5f18189c2e6db0502c177e6ca041f 161986 java optional 
tomcat6-examples_6.0.28-6_all.deb
 0ccf641dab2a269eaefb2b316069b991 532056 doc optional 
tomcat6-docs_6.0.28-6_all.deb

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

iQIcBAEBCAAGBQJMlEgDAAoJECHSBYmXSz6WzuIQAJbu5QwWdrxUJ/xNOqKKd7Qr
o0c8ZKFQ67VqnnFFq0sNYsajsBPN+DYU0ojxEKX1Rt1QkvgOq172OQUo+qkdnkKL
3lTcBP5vYhOgXfPAQCgNx9iD5kapuHES6k5xGZ7ir/o9vp84cZ7jtV2eDl0NCfxp
q/BdVdWBx/78Nioikc/bZeDexCFVbM6lIzj1kc1whUU+bLdiw0XH955v/7Vk1Ljd

Accepted vala 0.10.0-1 (source all amd64)

2010-09-18 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 07:37:17 +0200
Source: vala
Binary: valac valac-0.10 vala-0.10-doc libvala-0.10-0 libvala-0.10-dev 
valac-0.10-dbg libvala-0.10-0-dbg
Architecture: source all amd64
Version: 0.10.0-1
Distribution: experimental
Urgency: low
Maintainer: Maintainers of Vala packages 
pkg-vala-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 libvala-0.10-0 - C# like language for the GObject system - library
 libvala-0.10-0-dbg - C# like language for the GObject system - library symbols
 libvala-0.10-dev - C# like language for the GObject system - development 
headers
 vala-0.10-doc - C# like language for the GObject system - documentation
 valac  - C# like language for the GObject system
 valac-0.10 - C# like language for the GObject system
 valac-0.10-dbg - C# like language for the GObject system
Changes: 
 vala (0.10.0-1) experimental; urgency=low
 .
   * New upstream stable release.
Checksums-Sha1: 
 7fdb4afe09621c6eca75251961cc7dede302e34f 1547 vala_0.10.0-1.dsc
 62dc98ad4d0457fd6407881941c326af1542dea1 2403942 vala_0.10.0.orig.tar.bz2
 8bb5c3ead6c7a84ff23ba6142c5f21cc1a772d20 9961 vala_0.10.0-1.debian.tar.gz
 1135d7387634a83c43325d2aa585439dd46c64e6 73336 valac_0.10.0-1_all.deb
 c38afc0a60d6d28ddce24fbb35a8be1db5b38c26 82446 vala-0.10-doc_0.10.0-1_all.deb
 c1dad8c3a24ddd4879385a73d3a28d5ced98893e 863402 valac-0.10_0.10.0-1_amd64.deb
 305ba72d8b0262f1fe1a6beea469fad1e2a1b4cd 1151684 
libvala-0.10-0_0.10.0-1_amd64.deb
 a3e9189523c2940d22fa9c3c18ff4914f63a9d41 131886 
libvala-0.10-dev_0.10.0-1_amd64.deb
 678342313cbe0fae3084135dc8e930349318fd05 371238 
valac-0.10-dbg_0.10.0-1_amd64.deb
 f7142858e27e4dd61490c4707b992bdacc8a04a7 2424038 
libvala-0.10-0-dbg_0.10.0-1_amd64.deb
Checksums-Sha256: 
 e74db5165a87a6d75107fa99642779234ca5dc197c66cf7c2b92f756ee1113ca 1547 
vala_0.10.0-1.dsc
 f5655a3cdc21c4c8d94d4af55a4c0a0418bad7a5ebf60ccdf471c4e16c5c9235 2403942 
vala_0.10.0.orig.tar.bz2
 bce9ae4ee5ba3107abbe19421a14a6ece170322860c33206bb3ba81f051f95df 9961 
vala_0.10.0-1.debian.tar.gz
 e6b76db3e107f1a0f077395ebdf42ea4ecd0096b911e727afb5da253d2d6aa13 73336 
valac_0.10.0-1_all.deb
 2c3a71e811710d7b495893f90e56c48ce71fbb3c3da416216473be39ef2a42d4 82446 
vala-0.10-doc_0.10.0-1_all.deb
 52c2e0f70d036b897e812b6057d841a9688fa1b0076ec62fb2798f895ef594fb 863402 
valac-0.10_0.10.0-1_amd64.deb
 01c31369c3137059863f650f5f89c95845c1083173d1128ccdfb2a3c231eec99 1151684 
libvala-0.10-0_0.10.0-1_amd64.deb
 ae4dc3420c0468e0632f1f85d17b760b2c24b6ccd6816333b74812113e538409 131886 
libvala-0.10-dev_0.10.0-1_amd64.deb
 35d97836cd686d7952d8c704ea1151a2f497cb1b234708c0387a2e9f0d937b5a 371238 
valac-0.10-dbg_0.10.0-1_amd64.deb
 4e4bfdcb160043cdc6d06eb83b243b88b347e41597bd4afbe10c9fe1955ceee2 2424038 
libvala-0.10-0-dbg_0.10.0-1_amd64.deb
Files: 
 6855c85f849210e89756cb83b2cd50fa 1547 devel optional vala_0.10.0-1.dsc
 1e38cdc951d2b43e49084a6d5ad19e9d 2403942 devel optional 
vala_0.10.0.orig.tar.bz2
 a52a6e84a6d6c86ecb19e2b0a168b499 9961 devel optional 
vala_0.10.0-1.debian.tar.gz
 ab67bbe7710dd5ffb669c5b9ae6dde3d 73336 devel optional valac_0.10.0-1_all.deb
 0602c60a6c74f90d495427320b976fd8 82446 doc optional 
vala-0.10-doc_0.10.0-1_all.deb
 f29c6df869cda8c6b5816dec3e8e9ea3 863402 devel optional 
valac-0.10_0.10.0-1_amd64.deb
 efc9deaf07b41dfefe03ec0d7b0800bc 1151684 libs optional 
libvala-0.10-0_0.10.0-1_amd64.deb
 e6bcc9fc47f9bed5a076d5a2a87437d0 131886 libdevel optional 
libvala-0.10-dev_0.10.0-1_amd64.deb
 2cb3f186d0b95c0b231d02ce667c8c09 371238 debug extra 
valac-0.10-dbg_0.10.0-1_amd64.deb
 ca11a8c5a0c5dcfb166a4363ce70b8b8 2424038 debug extra 
libvala-0.10-0-dbg_0.10.0-1_amd64.deb

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

iEYEARECAAYFAkyUU6cACgkQBsBdh1vkHyGUKACfZOnhUo1FkBkHVnTimH9XnFwD
qf0An0HgEjdIitjX/H3VJ6Vdxd8zNJRZ
=QgDs
-END PGP SIGNATURE-


Accepted:
libvala-0.10-0-dbg_0.10.0-1_amd64.deb
  to main/v/vala/libvala-0.10-0-dbg_0.10.0-1_amd64.deb
libvala-0.10-0_0.10.0-1_amd64.deb
  to main/v/vala/libvala-0.10-0_0.10.0-1_amd64.deb
libvala-0.10-dev_0.10.0-1_amd64.deb
  to main/v/vala/libvala-0.10-dev_0.10.0-1_amd64.deb
vala-0.10-doc_0.10.0-1_all.deb
  to main/v/vala/vala-0.10-doc_0.10.0-1_all.deb
vala_0.10.0-1.debian.tar.gz
  to main/v/vala/vala_0.10.0-1.debian.tar.gz
vala_0.10.0-1.dsc
  to main/v/vala/vala_0.10.0-1.dsc
vala_0.10.0.orig.tar.bz2
  to main/v/vala/vala_0.10.0.orig.tar.bz2
valac-0.10-dbg_0.10.0-1_amd64.deb
  to main/v/vala/valac-0.10-dbg_0.10.0-1_amd64.deb
valac-0.10_0.10.0-1_amd64.deb
  to main/v/vala/valac-0.10_0.10.0-1_amd64.deb
valac_0.10.0-1_all.deb
  to main/v/vala/valac_0.10.0-1_all.deb


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



Accepted loadlin 1.6e-1 (source amd64)

2010-09-18 Thread Samuel Thibault
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 25 Aug 2010 02:51:35 +0200
Source: loadlin
Binary: loadlin
Architecture: source amd64
Version: 1.6e-1
Distribution: unstable
Urgency: low
Maintainer: Samuel Thibault sthiba...@debian.org
Changed-By: Samuel Thibault sthiba...@debian.org
Description: 
 loadlin- a loader (running under DOS) for LINUX kernel images
Closes: 588530
Changes: 
 loadlin (1.6e-1) unstable; urgency=low
 .
   New upstream release. Fixes VCPI support and loading 8MB kernel+initrd on
   machines with 16MiB INT15 memory. (Closes: Bug#588530)
   * debian/rules: Add refresh rule.
   * debian/control: Add Vcs-Hg field.
   * debian/control: Bump Standards-Version to 3.9.1 (no change needed).
   * debian/patches/99-yasm.patch: Update.
   * debian/rules: Set BYHAND to yes to upload new loadlin binary into
 ftp://ftp.debian.org/debian/tools/
Checksums-Sha1: 
 258ec0560544b34ccd86654e1a7bb7991b532cd4 1144 loadlin_1.6e-1.dsc
 3d9ddfaa6ba64f417e0ba358064aa34928a858ce 91588 loadlin_1.6e.orig.tar.gz
 38b175e7c03b42ebbb4bcb228c3433e2239fb91f 20512 loadlin_1.6e-1.debian.tar.gz
 c66585f05658c30dcf0c42abb219644110230857 38162 loadlin.exe
 66ca5bfdb94e0d1e56be927a5a66edfede8cada1 32663 loadlin.txt
 cb53dc71cfeb83d270fa472a33285220bc938668 51592 loadlin_1.6e-1_amd64.deb
Checksums-Sha256: 
 be5d7e0e0024e02b0bb95aff4820f0938b5681fbbf17012ada3bbf87c702a90e 1144 
loadlin_1.6e-1.dsc
 e9ece3899c7c00a2459e48b5311a3e8e5fdb677a7c7e6c941cbb595bd7894c60 91588 
loadlin_1.6e.orig.tar.gz
 a47165331492fc97ca4ab5de049b7a9a7dd8d6b7a8b26664fc3a6eed3e3ad4cd 20512 
loadlin_1.6e-1.debian.tar.gz
 810179f58c9d0fdfe84c9311fcf61beae453458560f0743f4019435b8f3d1a91 38162 
loadlin.exe
 7c5cf1a09292a07dea3fcbfb3669914c85863028647a88e4ca1b2c9cadacab7f 32663 
loadlin.txt
 7029538467e8076139d90c35bef5f7ed24fcaaec5211dcb689feef2303bdeb0f 51592 
loadlin_1.6e-1_amd64.deb
Files: 
 3fe8617b09cb758058164b4ac7f41a9e 1144 admin optional loadlin_1.6e-1.dsc
 299e09323af48027254f5f11378b5305 91588 admin optional loadlin_1.6e.orig.tar.gz
 3ddf114edc106057a4b59727c7b2bb85 20512 admin optional 
loadlin_1.6e-1.debian.tar.gz
 d667ae8d1387b8a3130d5604f9b18af6 38162 byhand - loadlin.exe
 af966231e0a052a900470410ab115ab6 32663 byhand - loadlin.txt
 3f925c2a6124cf986810eb29bee93362 51592 admin optional loadlin_1.6e-1_amd64.deb

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

iF4EAREIAAYFAkx0aa8ACgkQjSdX/Wzu6KbIiQD/cCOLNJMMYJiglvGXXLny7SBy
rGV5C9c6Q6IpUiHOhDgA/Rn/hKTzKcXqf65d91OWzfZfmopEt5nA/W9nLJCoH/aF
=PiR9
-END PGP SIGNATURE-


Accepted:
loadlin_1.6e-1.debian.tar.gz
  to main/l/loadlin/loadlin_1.6e-1.debian.tar.gz
loadlin_1.6e-1.dsc
  to main/l/loadlin/loadlin_1.6e-1.dsc
loadlin_1.6e-1_amd64.deb
  to main/l/loadlin/loadlin_1.6e-1_amd64.deb
loadlin_1.6e.orig.tar.gz
  to main/l/loadlin/loadlin_1.6e.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/e1owvak-0003mb...@franck.debian.org



Accepted adduser 3.112+nmu1 (source all)

2010-09-18 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 11 Sep 2010 10:23:47 +0200
Source: adduser
Binary: adduser
Architecture: source all
Version: 3.112+nmu1
Distribution: unstable
Urgency: low
Maintainer: Debian Adduser Developers adduser-de...@lists.alioth.debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 adduser- add and remove users and groups
Closes: 571406 577994 582322 592185 595297
Changes: 
 adduser (3.112+nmu1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix pending l10n issues. Programs translations:
 - Bokmål, Norwegian (Hans Fredrik Nordhaug). Closes: #595297
 - French (Jean-Baka Domelevo Entfellner). Closes: #571406
 - Portuguese (Américo Monteiro).  Closes: #577994
 - Spanish (Javier Fernández-Sanguino).  Closes: #592185
   * Manpages translations:
 - Portuguese (Américo Monteiro).  Closes: #582322
Checksums-Sha1: 
 4411bf2664c0f9c924d292cf9c4c7fb2d405bb63 1041 adduser_3.112+nmu1.dsc
 1e74b9fcfdbe0db01f0105e5568fafe4ccad4dda 290363 adduser_3.112+nmu1.tar.gz
 2f86704144ab52657661f368ad20acd4e169d3ce 159266 adduser_3.112+nmu1_all.deb
Checksums-Sha256: 
 95416d552a859e87de1ea3779d41113bcaa5fa593f389cb28d86e92ace4937f7 1041 
adduser_3.112+nmu1.dsc
 2d0af12ecb6d52712fe4f6cd5929376e7c2770afc9937fce73b83e78d0af54be 290363 
adduser_3.112+nmu1.tar.gz
 1794e45377e78faada727de70e868600b539a35421a406414877347b70457d44 159266 
adduser_3.112+nmu1_all.deb
Files: 
 2521e7a0e19a3ba251cf631bc728a440 1041 admin important adduser_3.112+nmu1.dsc
 ee56760c2ce94bc7bf77277ba200e69b 290363 admin important 
adduser_3.112+nmu1.tar.gz
 482084d772de3c6f31b97bc4a6716918 159266 admin important 
adduser_3.112+nmu1_all.deb

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

iD8DBQFMi21+1OXtrMAUPS0RAgwDAJ9RuiTw6XBi/7a4UIb0Y+iIi38kPgCgrhi8
cjsn/iZLmiMvK5qkLJy0zQI=
=4cmn
-END PGP SIGNATURE-


Accepted:
adduser_3.112+nmu1.dsc
  to main/a/adduser/adduser_3.112+nmu1.dsc
adduser_3.112+nmu1.tar.gz
  to main/a/adduser/adduser_3.112+nmu1.tar.gz
adduser_3.112+nmu1_all.deb
  to main/a/adduser/adduser_3.112+nmu1_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/e1owxub-0005r5...@franck.debian.org



Accepted dmz-cursor-theme 0.4.3 (source all)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 09:58:21 +0200
Source: dmz-cursor-theme
Binary: dmz-cursor-theme
Architecture: source all
Version: 0.4.3
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 dmz-cursor-theme - Style neutral, scalable cursor theme
Changes: 
 dmz-cursor-theme (0.4.3) unstable; urgency=low
 .
   * Mention the renderpngs.py license in debian/copyright. Thanks Julien
 Cristau for noticing.
   * Fix color-picker and crosshair, which mistakenly reference other
 icons. Reported by Luca Bruno.
Checksums-Sha1: 
 7c8fe30d931f5f67aadc01c4b854b5d982fbcfc4 876 dmz-cursor-theme_0.4.3.dsc
 89908eaee8abe4bec5a8ff443f4ba59ddf50f7b4 1087145 dmz-cursor-theme_0.4.3.tar.gz
 2f8d7c933871c1787b5c3acfc8218643d81e2bba 327166 dmz-cursor-theme_0.4.3_all.deb
Checksums-Sha256: 
 cef90089d2633200a36efbc5a524fc14b872331c6fee6418d85f2dc5436eeb0f 876 
dmz-cursor-theme_0.4.3.dsc
 6fec9a9794a79fa6e043437866353d5b2a91cbc9cd16f3775ad838e13e92a4f6 1087145 
dmz-cursor-theme_0.4.3.tar.gz
 22d7e04875b370825560f75dd411c5c92097bc7d7436165e1b6e7e27d86f79c4 327166 
dmz-cursor-theme_0.4.3_all.deb
Files: 
 ef05cc0170b274184c544fcb24743e66 876 gnome optional dmz-cursor-theme_0.4.3.dsc
 412256b1b8a65dd05b46f65b32e2f5e6 1087145 gnome optional 
dmz-cursor-theme_0.4.3.tar.gz
 fba8ab6a3ae628962936c444d85914a4 327166 gnome optional 
dmz-cursor-theme_0.4.3_all.deb

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

iD8DBQFMlHGhrSla4ddfhTMRAt2nAKCiZCjyGCDXg9WmGjfshIBeXRy43QCfXWm6
JcGt8SLokQzLNy3DglVWTBQ=
=OCeM
-END PGP SIGNATURE-


Accepted:
dmz-cursor-theme_0.4.3.dsc
  to main/d/dmz-cursor-theme/dmz-cursor-theme_0.4.3.dsc
dmz-cursor-theme_0.4.3.tar.gz
  to main/d/dmz-cursor-theme/dmz-cursor-theme_0.4.3.tar.gz
dmz-cursor-theme_0.4.3_all.deb
  to main/d/dmz-cursor-theme/dmz-cursor-theme_0.4.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/e1owxvy-0006cg...@franck.debian.org



Accepted file 5.04-6 (source i386)

2010-09-18 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 11:44:13 +0200
Source: file
Binary: file libmagic1 libmagic-dev python-magic python-magic-dbg
Architecture: source i386
Version: 5.04-6
Distribution: experimental
Urgency: low
Maintainer: Daniel Baumann dan...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 file   - Determines file type using magic numbers
 libmagic-dev - File type determination library using magic numbers 
(developmen
 libmagic1  - File type determination library using magic numbers
 python-magic - File type determination library using magic numbers (Python 
bin
 python-magic-dbg - File type determination library using magic numbers 
(Python bin
Closes: 524648 593488 596873
Changes: 
 file (5.04-6) experimental; urgency=low
 .
   [ Judit Foglszinger ]
   * Fixing incorrect argument in manpage (Closes: #524648).
   * Fixing typo in output for x-icon (Closes: #593488).
 .
   [ Daniel Baumann ]
   * Adding patch from Adam Buchbinder adam.buchbin...@gmail.com to add
 new magic for EPUB (Closes: #596873).
   * Rediffing doc-manpages1.patch and renaming to doc-manpages-typo3 for
 consistency.
   * Rediffing magic-update-icon.patch.
Checksums-Sha1: 
 abfbad1d60040b1ff30d3575ec456100ebbab4c6 1372 file_5.04-6.dsc
 ee0eb5b961eeabf0db8c7a56a7f0cd6e878b3b05 51171 file_5.04-6.diff.gz
 95415ad4a584e6fd1791830b0a4fe53496603b70 49326 file_5.04-6_i386.deb
 e125f6af901359acdd4e778115015acdba89b7ed 233878 libmagic1_5.04-6_i386.deb
 7d338ce6bdf9debae1ff2d87b3ecab1e0a0350b3 101188 libmagic-dev_5.04-6_i386.deb
 37425d9e0bcfe344a8f1ce0b4f3442e2585eef0a 37780 python-magic_5.04-6_i386.deb
 18995550fd022df7ea37f32200e6fc06968dfea4 23672 python-magic-dbg_5.04-6_i386.deb
Checksums-Sha256: 
 60e58e2b057a96fda12794fbaab69bcf52f561842d2b6419d81e74a3e9d391f2 1372 
file_5.04-6.dsc
 7a7db642f96a0836900b4fd10190237f7803611bb020b553319396ff2d154a85 51171 
file_5.04-6.diff.gz
 64795787453b4ced8503bf00df29e56f6bfa67b22fd5e5335cbf9dc3b38e1d35 49326 
file_5.04-6_i386.deb
 c10ad23a2ec9df5bf85949f918ab45778751c46bcc91c45fe75fcd889a2aed62 233878 
libmagic1_5.04-6_i386.deb
 3e95b56fceb31a51f8b11a186336f136b998a86393487d74f0dc59c497a98650 101188 
libmagic-dev_5.04-6_i386.deb
 978dc28ed7841739cae9ac3972c1c30686c0dd681e6cc989add5f2903ee37334 37780 
python-magic_5.04-6_i386.deb
 b9ff6ab0b5c9a18eea350717a5781a39f200d285d2b49851ce3eadacac6566d3 23672 
python-magic-dbg_5.04-6_i386.deb
Files: 
 a135020e0dda04d1936c6a0460e9da44 1372 utils standard file_5.04-6.dsc
 e303f7aeba896de4d19feec82b12b479 51171 utils standard file_5.04-6.diff.gz
 26e9b22f34f9f781d177b24d405500ce 49326 utils standard file_5.04-6_i386.deb
 f2934e025fffd1add25814319450583d 233878 libs standard libmagic1_5.04-6_i386.deb
 28774372e7d17afaa4b12bb59770c513 101188 libdevel optional 
libmagic-dev_5.04-6_i386.deb
 730cb5988386876b5d6b3446cbba7111 37780 python extra 
python-magic_5.04-6_i386.deb
 bfe3617fd3a01330b3bc627797267a40 23672 debug extra 
python-magic-dbg_5.04-6_i386.deb

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

iEYEARECAAYFAkyUiwEACgkQ+C5cwEsrK569ggCglwoTIrsSfCkAPSZVGQLIKHUd
7goAoLznmmNuPVO3s5qnJp+0a9qW8FS+
=x9ac
-END PGP SIGNATURE-


Accepted:
file_5.04-6.diff.gz
  to main/f/file/file_5.04-6.diff.gz
file_5.04-6.dsc
  to main/f/file/file_5.04-6.dsc
file_5.04-6_i386.deb
  to main/f/file/file_5.04-6_i386.deb
libmagic-dev_5.04-6_i386.deb
  to main/f/file/libmagic-dev_5.04-6_i386.deb
libmagic1_5.04-6_i386.deb
  to main/f/file/libmagic1_5.04-6_i386.deb
python-magic-dbg_5.04-6_i386.deb
  to main/f/file/python-magic-dbg_5.04-6_i386.deb
python-magic_5.04-6_i386.deb
  to main/f/file/python-magic_5.04-6_i386.deb


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



Accepted file-roller 2.30.2-2 (source amd64)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 13:37:15 +0200
Source: file-roller
Binary: file-roller
Architecture: source amd64
Version: 2.30.2-2
Distribution: unstable
Urgency: low
Maintainer: Clément Stenac zorg...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 file-roller - an archive manager for GNOME
Closes: 594839 595117
Changes: 
 file-roller (2.30.2-2) unstable; urgency=low
 .
   * Only suggest lzma. Closes: #595117.
   * Include some patches sitting in the upstream repository:
 + 01_rar_crasher.patch: fix a crasher with the rar command.
 + 02_escape_newlines.patch: handle the case of files with newlines
   in their name.
 + 03_tar_xz_update.patch: update .tar.xz files without losing the
   data in them. Closes: #594839.
Checksums-Sha1: 
 271ef4325ef8139e754015c2e8c4f1ff9c4f285a 1665 file-roller_2.30.2-2.dsc
 462de09fecfa7e37ec7dbe3253136662641235bf 30387 
file-roller_2.30.2-2.debian.tar.gz
 57188e92c40fec367eef265320c2d88ce45e4f24 1715308 file-roller_2.30.2-2_amd64.deb
Checksums-Sha256: 
 b318e04a1bf919c95dd43f0e784d637d74bcd0c950b65e8b9471ee56318b9051 1665 
file-roller_2.30.2-2.dsc
 5861ef83489cbe77ba962a97236bfff2a3aeb7a543b8fa258857044376cd390f 30387 
file-roller_2.30.2-2.debian.tar.gz
 554a5adb904af774ac7e0e658e2f181455a3bcca13535409b242d329289bbf13 1715308 
file-roller_2.30.2-2_amd64.deb
Files: 
 f3639b0a20ace9e6cb298a392d33e804 1665 gnome optional file-roller_2.30.2-2.dsc
 b2d2e5d31fa139e1c64aaa7c7a7d89d0 30387 gnome optional 
file-roller_2.30.2-2.debian.tar.gz
 7bc789ce6481549d512970e5f04d2129 1715308 gnome optional 
file-roller_2.30.2-2_amd64.deb

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

iD8DBQFMlKWsrSla4ddfhTMRAlOjAKCm2GdB0xSCGV24iglNqCYxOqExUQCg2wQz
grkKzu4X/IGsiEwKm8Oo/bY=
=508L
-END PGP SIGNATURE-


Accepted:
file-roller_2.30.2-2.debian.tar.gz
  to main/f/file-roller/file-roller_2.30.2-2.debian.tar.gz
file-roller_2.30.2-2.dsc
  to main/f/file-roller/file-roller_2.30.2-2.dsc
file-roller_2.30.2-2_amd64.deb
  to main/f/file-roller/file-roller_2.30.2-2_amd64.deb


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



Accepted gcj-4.4 4.4.4-15 (source all i386)

2010-09-18 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 11:12:09 +0200
Source: gcj-4.4
Binary: gcj-4.4-base gcj-4.4-jdk gcj-4.4-jre-headless gcj-4.4-jre libgcj10 
gcj-4.4-jre-lib libgcj10-awt libgcj10-dev libgcj10-dbg gcj-4.4-source libgcj-doc
Architecture: source all i386
Version: 4.4.4-15
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 gcj-4.4-base - The GNU Compiler Collection (gcj base package)
 gcj-4.4-jdk - gcj and classpath development tools for Java(TM)
 gcj-4.4-jre - Java runtime environment using GIJ/classpath
 gcj-4.4-jre-headless - Java runtime environment using GIJ/classpath (headless 
version)
 gcj-4.4-jre-lib - Java runtime library for use with gcj (jar files)
 gcj-4.4-source - GCJ java sources for use in IDEs like eclipse and netbeans
 libgcj-doc - libgcj API documentation and example programs
 libgcj10   - Java runtime library for use with gcj
 libgcj10-awt - AWT peer runtime libraries for use with gcj
 libgcj10-dbg - Debugging symbols for libraries provided in libgcj10-dev
 libgcj10-dev - Java development headers for use with gcj
Changes: 
 gcj-4.4 (4.4.4-15) unstable; urgency=low
 .
   * Update to SVN 20100913 from the gcc-4_4-branch (r164250).
   * Update the packaging corresponding to gcc-4.4 4.4.4-15.
Checksums-Sha1: 
 1b8f8415af3155b8606d42920e1b59a8add626ac 2953 gcj-4.4_4.4.4-15.dsc
 1eb33efbbd4a4bbfdcb7cc62b9d61846e922ccae 1638642 gcj-4.4_4.4.4-15.diff.gz
 7abc962c9bbbd0aa22d659b7cf4edd5f2e8cf5a9 10478280 
gcj-4.4-jre-lib_4.4.4-15_all.deb
 33216b89ecb3d96c8dfc720b8fe7aec7075c182e 12328420 
gcj-4.4-source_4.4.4-15_all.deb
 c5064cb7d14dd48dd737cd92ce2e9e6a42d7fd0a 43819016 libgcj-doc_4.4.4-15_all.deb
 39c9624616782826b75fdd09a0beb2d78564ff02 111432 gcj-4.4-base_4.4.4-15_i386.deb
 bb9751c9e53fd5c02fe9b762892cec7a5d9cc2f1 52104 
gcj-4.4-jre-headless_4.4.4-15_i386.deb
 c3a7368b68967c18ed020a74ae6d4fc75e69bdf0 11472086 libgcj10_4.4.4-15_i386.deb
 ae13de5c4c4bf65e6223622ec17ee8acb8278bd8 81722 libgcj10-awt_4.4.4-15_i386.deb
 9c9a0e6a654092d0baae1bb1abc4ed496997fa98 1008 gcj-4.4-jre_4.4.4-15_i386.deb
 403e7894f323cad3d7993817c1a84100d02163fa 764858 libgcj10-dev_4.4.4-15_i386.deb
 b9031a314eb67dca87e6924e2c752a85d151 12818586 
libgcj10-dbg_4.4.4-15_i386.deb
 ec3bf5f2ff67f7d034828a30b23c04621298c431 3715548 gcj-4.4-jdk_4.4.4-15_i386.deb
Checksums-Sha256: 
 bf6ecb479ff01e97aa15716c205f6be796bc8ba369a90373cfa400afbde061e8 2953 
gcj-4.4_4.4.4-15.dsc
 bffafe806e3a42060a722f1d424c06ea7ad9244b2ec8a572880ce5ea4ff80ede 1638642 
gcj-4.4_4.4.4-15.diff.gz
 22784067dcd37acaf0be0466325eb0a47658a8aa434c03131fd0bf017023fbd1 10478280 
gcj-4.4-jre-lib_4.4.4-15_all.deb
 2ae57d04a312812d19df4d4156eda6cfbaa1f5e79ea2bb01b90f6f3b4e1ed2e2 12328420 
gcj-4.4-source_4.4.4-15_all.deb
 334e197ab0687d9665ef0d129de0b08b86314c9ec75d570dfd50cb13e020950a 43819016 
libgcj-doc_4.4.4-15_all.deb
 fcb39561105a243e862dae077354737054ae1bdea6235470d0edd02102c66196 111432 
gcj-4.4-base_4.4.4-15_i386.deb
 fec6c1d0e518cd59120ace8144352bffd1818b54a82ca644d277f710ab9a5701 52104 
gcj-4.4-jre-headless_4.4.4-15_i386.deb
 191f2fde8a915f5ad296b9f1892977688ce03ce002b0791b08c9cb71cc60294a 11472086 
libgcj10_4.4.4-15_i386.deb
 993678e298bdd6f727079f3e7df02704b36abf4be9d2f46a6344c05801eb3ecd 81722 
libgcj10-awt_4.4.4-15_i386.deb
 18b40224c57009be9aefad009c5325fd9fbf407625cfd3f8835a8620fae692de 1008 
gcj-4.4-jre_4.4.4-15_i386.deb
 2c1ec630e6ee79f8df5632b929212cd7691cddd0f4f6b44c3c2fe05be155db39 764858 
libgcj10-dev_4.4.4-15_i386.deb
 a9713833b217d4857962b573359c4c9e7c73cf1d7c4bd6f17dd6dae385a5898f 12818586 
libgcj10-dbg_4.4.4-15_i386.deb
 037cfbe8a4e2c1aa68bdda953a376cb8ed74c86e8f41d0709db66a4eefb86053 3715548 
gcj-4.4-jdk_4.4.4-15_i386.deb
Files: 
 a143e527fc5a61a74f9067886075c636 2953 devel optional gcj-4.4_4.4.4-15.dsc
 7818ce59743ba31cec31f0e289c64584 1638642 devel optional 
gcj-4.4_4.4.4-15.diff.gz
 f50efb0a694f3d15838caae4510d3a4b 10478280 java optional 
gcj-4.4-jre-lib_4.4.4-15_all.deb
 f8ecd2105691551ca5ad23f48664d2bb 12328420 java optional 
gcj-4.4-source_4.4.4-15_all.deb
 6867bacad9e95147d336057e499988ba 43819016 doc optional 
libgcj-doc_4.4.4-15_all.deb
 8c5639fd4e1ddcdd95a263c3296ef2be 111432 libs optional 
gcj-4.4-base_4.4.4-15_i386.deb
 99ff6ee45b73e127aa0c00d977866a3c 52104 java optional 
gcj-4.4-jre-headless_4.4.4-15_i386.deb
 419654d27023824ccfed0d22b98083f5 11472086 libs optional 
libgcj10_4.4.4-15_i386.deb
 8f844541815a47172675c554b0758ad9 81722 libs optional 
libgcj10-awt_4.4.4-15_i386.deb
 deeb3e61d72a13eca266600148bf7d16 1008 java optional 
gcj-4.4-jre_4.4.4-15_i386.deb
 c01cada0f4b2c5099976ec1eaddb9818 764858 libdevel optional 
libgcj10-dev_4.4.4-15_i386.deb
 5a9918fdc85adfeb6d0e7eb7f2604611 12818586 debug extra 
libgcj10-dbg_4.4.4-15_i386.deb
 70308b23f078c3403fe263bb36b52cd6 3715548 java optional 
gcj-4.4-jdk_4.4.4-15_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 

Accepted gconf 2.28.1-4 (source all amd64)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 13:48:11 +0200
Source: gconf
Binary: gconf2 gconf2-common gconf-defaults-service libgconf2-4 libgconf2-dev
Architecture: source all amd64
Version: 2.28.1-4
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gconf-defaults-service - GNOME configuration database system (system defaults 
service)
 gconf2 - GNOME configuration database system (support tools)
 gconf2-common - GNOME configuration database system (common files)
 libgconf2-4 - GNOME configuration database system (shared libraries)
 libgconf2-dev - GNOME configuration database system (development)
Closes: 582839
Changes: 
 gconf (2.28.1-4) unstable; urgency=low
 .
   * 03_error_message.patch: new patch. Replace the error message by
 something more accurate nowadays. Closes: #582839.
Checksums-Sha1: 
 cdd49c5ba62d7fd6def4b75c3d4f33936d05b8c6 1713 gconf_2.28.1-4.dsc
 52d745ff3162db1931ebe9dddf4a7dea9d39c6b2 22124 gconf_2.28.1-4.diff.gz
 b9f35e944116b9acc812a9dd48e7bf686dd64dff 1676998 gconf2-common_2.28.1-4_all.deb
 9a3a74f9b6aba398780954845c4a7519e276c061 153718 gconf2_2.28.1-4_amd64.deb
 20a167e2f7f50f360699fdce58642f44487eff5f 112358 
gconf-defaults-service_2.28.1-4_amd64.deb
 22e5acde9204bb12ad92f1cf3f92998544670b9f 276676 libgconf2-4_2.28.1-4_amd64.deb
 f569f9fdc5ec9199a2a46bee38962f1e6ab10806 309822 
libgconf2-dev_2.28.1-4_amd64.deb
Checksums-Sha256: 
 285a6b83f7aab44569a8958d6662c1073d0b4857ce06da03a944afd043149559 1713 
gconf_2.28.1-4.dsc
 d788477bea19084ff6f93f1fc48c6409dd9547c6c7c5baa69caf8582727e6c91 22124 
gconf_2.28.1-4.diff.gz
 04e1abbbd526671da1a81425489cc2aac0177b70151d0619cd9b7aace3c14423 1676998 
gconf2-common_2.28.1-4_all.deb
 bcf49a0c91b314ad6f671f05b75902c1687c5db8f9b1fdf80b41a6faf40f5bf2 153718 
gconf2_2.28.1-4_amd64.deb
 b86e11972c411a4c7b5e4b210572b1c280c3dc686bd2c6734defee8a7056bbe5 112358 
gconf-defaults-service_2.28.1-4_amd64.deb
 c652d9adf71fb4f53e5406774b24af2d4bcf4ff8604bc9b20c4b3c4036a8a5c0 276676 
libgconf2-4_2.28.1-4_amd64.deb
 eb68549c8032ba10f66c0d2ce067ad027f55fe059ea450dac425144d6a16b58b 309822 
libgconf2-dev_2.28.1-4_amd64.deb
Files: 
 f9c69ec8cc5361c1fcee8fdb8835d108 1713 libs optional gconf_2.28.1-4.dsc
 22eda03a334e1c410c49dc19434b7f88 22124 libs optional gconf_2.28.1-4.diff.gz
 e98996f70c4d7ef6f32d867aec5c6a47 1676998 libs optional 
gconf2-common_2.28.1-4_all.deb
 5adaf5431dfd9662fe6b632000bc75a8 153718 libs optional gconf2_2.28.1-4_amd64.deb
 8439a94b439bfe2fce0f60554b023667 112358 libs optional 
gconf-defaults-service_2.28.1-4_amd64.deb
 d9e991fbc673b392fc71156d39de661b 276676 libs optional 
libgconf2-4_2.28.1-4_amd64.deb
 f072cdd406e726d38e34a39e8007c4f4 309822 libdevel optional 
libgconf2-dev_2.28.1-4_amd64.deb

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

iD8DBQFMlKgNrSla4ddfhTMRAlCDAKDXu3l+DyxJobw3gvkLYaBccHz4kgCePbMU
NIQlmA2FSj4ff09CJaS9stI=
=fA7y
-END PGP SIGNATURE-


Accepted:
gconf-defaults-service_2.28.1-4_amd64.deb
  to main/g/gconf/gconf-defaults-service_2.28.1-4_amd64.deb
gconf2-common_2.28.1-4_all.deb
  to main/g/gconf/gconf2-common_2.28.1-4_all.deb
gconf2_2.28.1-4_amd64.deb
  to main/g/gconf/gconf2_2.28.1-4_amd64.deb
gconf_2.28.1-4.diff.gz
  to main/g/gconf/gconf_2.28.1-4.diff.gz
gconf_2.28.1-4.dsc
  to main/g/gconf/gconf_2.28.1-4.dsc
libgconf2-4_2.28.1-4_amd64.deb
  to main/g/gconf/libgconf2-4_2.28.1-4_amd64.deb
libgconf2-dev_2.28.1-4_amd64.deb
  to main/g/gconf/libgconf2-dev_2.28.1-4_amd64.deb


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



Accepted glib2.0 2.25.16-1 (source all amd64)

2010-09-18 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 07:15:26 +0200
Source: glib2.0
Binary: libglib2.0-0 libglib2.0-udeb libglib2.0-bin libglib2.0-dev 
libglib2.0-0-dbg libglib2.0-data libglib2.0-doc libgio-fam libglib2.0-0-refdbg
Architecture: source all amd64
Version: 2.25.16-1
Distribution: experimental
Urgency: low
Maintainer: Loic Minier l...@dooz.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 libgio-fam - GLib Input, Output and Streaming Library (fam module)
 libglib2.0-0 - The GLib library of C routines
 libglib2.0-0-dbg - The GLib libraries and debugging symbols
 libglib2.0-0-refdbg - The GLib library of C routines - refdbg library
 libglib2.0-bin - The programs for the GLib library
 libglib2.0-data - Common files for GLib library
 libglib2.0-dev - Development files for the GLib library
 libglib2.0-doc - Documentation files for the GLib library
 libglib2.0-udeb - The GLib library of C routines - minimal runtime (udeb)
Changes: 
 glib2.0 (2.25.16-1) experimental; urgency=low
 .
   * New upstream development release:
 + debian/rules,
   debian/libglib2.0-0.symbols:
   - Update for the new version.
 + debian/patches/90_gregex-system-pcre.patch:
   - Fix GRegex compilation with the system pcre.
Checksums-Sha1: 
 316329ac68f42355ca69da88b90b8c8a37cb4028 1694 glib2.0_2.25.16-1.dsc
 2cad83aa8cebb0e73b9cb553a70e1708c4c230e1 9312420 glib2.0_2.25.16.orig.tar.gz
 e40e4f075dc5e2cda31a09916a6b04a78d89c701 44812 glib2.0_2.25.16-1.diff.gz
 c3f29d5d5c59fd255ab14ab55ab1d7ffc92a4a46 1244078 
libglib2.0-data_2.25.16-1_all.deb
 eaca7fd93d91aed4923b90bf44b6d9f2daf4603c 2028756 
libglib2.0-doc_2.25.16-1_all.deb
 6208ff4555957fb365f8e00767a70e11004f876b 1510726 
libglib2.0-0_2.25.16-1_amd64.deb
 dc908377ce71362a1982b5ceaf44686085622609 2206258 
libglib2.0-udeb_2.25.16-1_amd64.udeb
 dae7e6c28d201f1b3bf9dbb859654a14e620fcf7 340948 
libglib2.0-bin_2.25.16-1_amd64.deb
 4c7ca378420cd4924a7502eaa0a86204b8bcfca1 1566124 
libglib2.0-dev_2.25.16-1_amd64.deb
 28c8e961029b3e564f866390f7a407035de923fc 1856490 
libglib2.0-0-dbg_2.25.16-1_amd64.deb
 2ef3e8d8e30186fd591044229579df8f170fd3fb 679874 
libglib2.0-0-refdbg_2.25.16-1_amd64.deb
Checksums-Sha256: 
 d6729576f0c95e33fee89ae5dfbaf26c140f8aaa8e4285dc0a74db0684a97959 1694 
glib2.0_2.25.16-1.dsc
 2735ad0973958c32f86076d61d54a74585adc68b6297b9c8906726fed87f8b08 9312420 
glib2.0_2.25.16.orig.tar.gz
 0e83cc346b587c5d4f51533a22a307edd8efdd96efbc473c863fe31f10964cf8 44812 
glib2.0_2.25.16-1.diff.gz
 d8c49e60f1d73b7946a3e80bbc7bdd31f9d063435a1da4403d46a6611cc0ed1b 1244078 
libglib2.0-data_2.25.16-1_all.deb
 9c27ccf0c4fe0c01f5acae64f2f8ae03cca88d2f44dcf6970aac62fe0acb5b44 2028756 
libglib2.0-doc_2.25.16-1_all.deb
 83395fe501f7ca2fc3bb86332f887082b9324e4f668d2b1190ff02ed3f84f174 1510726 
libglib2.0-0_2.25.16-1_amd64.deb
 7b40a7813fc4998e4ed8e532345e464dfc06e799158f236ef028a501bbd57ef0 2206258 
libglib2.0-udeb_2.25.16-1_amd64.udeb
 67a43822671bcc8de170c457bd68121f6edd0d450f704fe364db98e71b5d1b36 340948 
libglib2.0-bin_2.25.16-1_amd64.deb
 1d1408971ae5900edb0cf794bd47e9a02ff1b76b85edf5046251835d6214bd15 1566124 
libglib2.0-dev_2.25.16-1_amd64.deb
 181677b935687e0b635b6242e28264834f5cc4cbc01e227a4c46220c7b13775e 1856490 
libglib2.0-0-dbg_2.25.16-1_amd64.deb
 5cf045424fca8c20ab3f6a90a8b6521a5b1e0e09d5a8101ecb440183cd6681d1 679874 
libglib2.0-0-refdbg_2.25.16-1_amd64.deb
Files: 
 9a71c3abaf4202f5fbb31308e6b08b5e 1694 libs optional glib2.0_2.25.16-1.dsc
 7e3080ccdc621063141cb851c21428e5 9312420 libs optional 
glib2.0_2.25.16.orig.tar.gz
 5e1da2dd04a65ceebd833f63941528ad 44812 libs optional glib2.0_2.25.16-1.diff.gz
 00fc441ddd7943b102101fe2b1be9b05 1244078 libs optional 
libglib2.0-data_2.25.16-1_all.deb
 85e174a5162ec3c010a10221cc057a47 2028756 doc optional 
libglib2.0-doc_2.25.16-1_all.deb
 d9f87a0498b5243c4f96449c2bd07159 1510726 libs optional 
libglib2.0-0_2.25.16-1_amd64.deb
 d980cb2a16a77335322daa72cbe886d0 2206258 debian-installer optional 
libglib2.0-udeb_2.25.16-1_amd64.udeb
 12b84c32c1094d494148ba11a23bd332 340948 misc optional 
libglib2.0-bin_2.25.16-1_amd64.deb
 a192368b2ec93f92744cde219254525e 1566124 libdevel optional 
libglib2.0-dev_2.25.16-1_amd64.deb
 c3fa41e334bceaacf95cea3557c97d42 1856490 debug extra 
libglib2.0-0-dbg_2.25.16-1_amd64.deb
 91bb5743b8974ac8d6ac6374a1197427 679874 debug extra 
libglib2.0-0-refdbg_2.25.16-1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAkyUcHkACgkQBsBdh1vkHyExwgCeLfluKJNJVB94tjQXqS27ZXuI
DJYAnixjXceuMjFcMgLDd6ALFC3AtS67
=Nwqx
-END PGP SIGNATURE-


Accepted:
glib2.0_2.25.16-1.diff.gz
  to main/g/glib2.0/glib2.0_2.25.16-1.diff.gz
glib2.0_2.25.16-1.dsc
  to main/g/glib2.0/glib2.0_2.25.16-1.dsc
glib2.0_2.25.16.orig.tar.gz
  to main/g/glib2.0/glib2.0_2.25.16.orig.tar.gz
libglib2.0-0-dbg_2.25.16-1_amd64.deb
  to main/g/glib2.0/libglib2.0-0-dbg_2.25.16-1_amd64.deb
libglib2.0-0-refdbg_2.25.16-1_amd64.deb
  to 

Accepted gnome-games 1:2.30.2-2 (source all amd64)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 13:53:43 +0200
Source: gnome-games
Binary: gnome-games gnome-games-data gnome-cards-data
Architecture: source all amd64
Version: 1:2.30.2-2
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gnome-cards-data - data files for the GNOME card games
 gnome-games - games for the GNOME desktop
 gnome-games-data - data files for the GNOME games
Closes: 597264
Changes: 
 gnome-games (1:2.30.2-2) unstable; urgency=low
 .
   * Disable the clutter version of aisleriot, on upstream request. It
 still has some Z-ordering bugs that affect the gameplay.
 Closes: #597264.
Checksums-Sha1: 
 3890310cd3f5e45602d31d518ac2c4621436a06c 1726 gnome-games_2.30.2-2.dsc
 ee8fb131be47bbfd89a33e733fe011428a8fc377 77332 
gnome-games_2.30.2-2.debian.tar.gz
 1e327f44d0944feb39ae94e99624972a99d5034d 25366134 
gnome-games-data_2.30.2-2_all.deb
 3e5ab9cb97659c4747295e7270b76613931a4da1 695908 
gnome-cards-data_2.30.2-2_all.deb
 8b43f988baa1a2ab90a724d988f17f45879783ee 1147762 gnome-games_2.30.2-2_amd64.deb
Checksums-Sha256: 
 0b249fd6706938f74088ab84a0a6462694edf5ddf8dde2fe052a93beb5fcf54a 1726 
gnome-games_2.30.2-2.dsc
 37d8f07b3f7078b026c2fd3fb038cc6431ba66c5e53ca1888ff8127ffc50057e 77332 
gnome-games_2.30.2-2.debian.tar.gz
 8cd560e83e2bf5b07623203bdef3c1eb588482a1818b97b996badff6f7ac2ac9 25366134 
gnome-games-data_2.30.2-2_all.deb
 2cd11098b30dcf8b8a6c40352d90ebbf9f21c878449e4f2303dc6f43cb015457 695908 
gnome-cards-data_2.30.2-2_all.deb
 cc93621b66d45f7f0723be2f3646a59429afa67d1cd155ef86c99cd7175bbbc9 1147762 
gnome-games_2.30.2-2_amd64.deb
Files: 
 00e09548e6a8c323cc116c9c1ef9286c 1726 gnome optional gnome-games_2.30.2-2.dsc
 fdd78abb6d09eecefc4eb45531d18691 77332 gnome optional 
gnome-games_2.30.2-2.debian.tar.gz
 f60b1fcdb2033a4afc737a5110b794c4 25366134 gnome optional 
gnome-games-data_2.30.2-2_all.deb
 1eb900f3076b0edcd5dc588fae0a6a38 695908 gnome optional 
gnome-cards-data_2.30.2-2_all.deb
 7f03a3c377edd3dc899a0b4b7611ba49 1147762 gnome optional 
gnome-games_2.30.2-2_amd64.deb

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

iD8DBQFMlK0qrSla4ddfhTMRAr2aAKDMVJHZBU2W0bsAhRnf0mNnZBVeGwCgu3RE
STcv0iaFQhWO+vtqIRIu9Rw=
=GbXT
-END PGP SIGNATURE-


Accepted:
gnome-cards-data_2.30.2-2_all.deb
  to main/g/gnome-games/gnome-cards-data_2.30.2-2_all.deb
gnome-games-data_2.30.2-2_all.deb
  to main/g/gnome-games/gnome-games-data_2.30.2-2_all.deb
gnome-games_2.30.2-2.debian.tar.gz
  to main/g/gnome-games/gnome-games_2.30.2-2.debian.tar.gz
gnome-games_2.30.2-2.dsc
  to main/g/gnome-games/gnome-games_2.30.2-2.dsc
gnome-games_2.30.2-2_amd64.deb
  to main/g/gnome-games/gnome-games_2.30.2-2_amd64.deb


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



Accepted gnome-menus 2.30.3-1 (source amd64)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 10:08:06 +0200
Source: gnome-menus
Binary: gnome-menus libgnome-menu2 gir1.0-gmenu-2.0 libgnome-menu-dev 
python-gmenu
Architecture: source amd64
Version: 2.30.3-1
Distribution: unstable
Urgency: low
Maintainer: Sebastien Bacher seb...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gir1.0-gmenu-2.0 - GObject introspection data for the GNOME menu library
 gnome-menus - an implementation of the freedesktop menu specification for GNOME
 libgnome-menu-dev - an implementation of the freedesktop menu specification 
for GNOME
 libgnome-menu2 - an implementation of the freedesktop menu specification for 
GNOME
 python-gmenu - an implementation of the freedesktop menu specification for 
GNOME
Changes: 
 gnome-menus (2.30.3-1) unstable; urgency=low
 .
   * New upstream translation and bugfix release.
   * 06_menus_rename.patch: refreshed. Note that upstream uses a
 different fix but it relies on an environment variable
 (XDG_MENU_PREFIX) and only applies to applications.menu.
Checksums-Sha1: 
 c9e21b1759edd15c31df8b4b14ce6032e5521095 1639 gnome-menus_2.30.3-1.dsc
 51948f8de4eb58216dfca930f67c84bd9d0f3b68 586713 gnome-menus_2.30.3.orig.tar.gz
 1e2bed4f2fed0bb7e2450b92057cf650c08e2b40 56869 
gnome-menus_2.30.3-1.debian.tar.gz
 e884d4989d6cad3cde0c7c5da7939134c11165e8 226054 gnome-menus_2.30.3-1_amd64.deb
 65854893addd6a0b4524a5a83f2b7e17f00eae48 69750 
libgnome-menu2_2.30.3-1_amd64.deb
 c45198809e810791a6cd2968c58add3f5dd2d16b 33536 
gir1.0-gmenu-2.0_2.30.3-1_amd64.deb
 c22c33a7208455001024a8aaf5e4d2ec80a4f8d1 82386 
libgnome-menu-dev_2.30.3-1_amd64.deb
 abc27bb48f4cf53677861c150ceae17782a6b0d3 52986 python-gmenu_2.30.3-1_amd64.deb
Checksums-Sha256: 
 86889d620616c936c58fa902931d002f0bb7e0b60f8f3adf3a732d6981197c4e 1639 
gnome-menus_2.30.3-1.dsc
 d0984285a97cb52ab3ab8877af1dab9d82e24b42a973befce89a1a93d55aef84 586713 
gnome-menus_2.30.3.orig.tar.gz
 f7a50ea57b6ba56254094adb0d4a0c59319935dbf588ae55c5b8448a306e974b 56869 
gnome-menus_2.30.3-1.debian.tar.gz
 496b75747d86a85bf9013bed07fc58fca33fb5472a02966179884dfced93570e 226054 
gnome-menus_2.30.3-1_amd64.deb
 4e0fdddb851f39c400c0b12c96d0835fc454fb8b795e50ef32c8a84e5074669b 69750 
libgnome-menu2_2.30.3-1_amd64.deb
 fb5262bc3e4fcd3307fce48bb345d946fcac6c7c26f1c18fe3688405a60713ba 33536 
gir1.0-gmenu-2.0_2.30.3-1_amd64.deb
 f47c0429aafa0b44c5bf9a9cd070ed7c89da98d170b6d3b4e488db256a12f5fe 82386 
libgnome-menu-dev_2.30.3-1_amd64.deb
 56b4ab0ad9fbfde684d7f7f7a54da06007c7b0a4dc79e8eb736c9aae1129aaec 52986 
python-gmenu_2.30.3-1_amd64.deb
Files: 
 31a628e59589aaafe402a845879115be 1639 gnome optional gnome-menus_2.30.3-1.dsc
 ad74b0ed205a023a8675a0d60c73b648 586713 gnome optional 
gnome-menus_2.30.3.orig.tar.gz
 e218ff6836d1927dbff4b04fd3e54c3f 56869 gnome optional 
gnome-menus_2.30.3-1.debian.tar.gz
 d7a209d751f98ea0969571af7d69b0aa 226054 gnome optional 
gnome-menus_2.30.3-1_amd64.deb
 8507f493fce34e25e7219e32071ff3a1 69750 gnome optional 
libgnome-menu2_2.30.3-1_amd64.deb
 8b1fa21cf5daf6655d21e62a9bc92147 33536 libs optional 
gir1.0-gmenu-2.0_2.30.3-1_amd64.deb
 39a2aacbaddbb6d4fcb2ccc2ec708d88 82386 libdevel optional 
libgnome-menu-dev_2.30.3-1_amd64.deb
 c2426f645161fcce3dfa6188c4dc77dc 52986 python optional 
python-gmenu_2.30.3-1_amd64.deb

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

iD8DBQFMlHTFrSla4ddfhTMRAvUqAKDdkLqXOJBTGdaTYzdObNkcGK8kuwCgn/NB
54jZy463FI4ab2FnBi7qiv8=
=cotd
-END PGP SIGNATURE-


Accepted:
gir1.0-gmenu-2.0_2.30.3-1_amd64.deb
  to main/g/gnome-menus/gir1.0-gmenu-2.0_2.30.3-1_amd64.deb
gnome-menus_2.30.3-1.debian.tar.gz
  to main/g/gnome-menus/gnome-menus_2.30.3-1.debian.tar.gz
gnome-menus_2.30.3-1.dsc
  to main/g/gnome-menus/gnome-menus_2.30.3-1.dsc
gnome-menus_2.30.3-1_amd64.deb
  to main/g/gnome-menus/gnome-menus_2.30.3-1_amd64.deb
gnome-menus_2.30.3.orig.tar.gz
  to main/g/gnome-menus/gnome-menus_2.30.3.orig.tar.gz
libgnome-menu-dev_2.30.3-1_amd64.deb
  to main/g/gnome-menus/libgnome-menu-dev_2.30.3-1_amd64.deb
libgnome-menu2_2.30.3-1_amd64.deb
  to main/g/gnome-menus/libgnome-menu2_2.30.3-1_amd64.deb
python-gmenu_2.30.3-1_amd64.deb
  to main/g/gnome-menus/python-gmenu_2.30.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/e1owxzi-0007gf...@franck.debian.org



Accepted gnome-panel 2.30.2-2 (source all amd64)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 10:31:50 +0200
Source: gnome-panel
Binary: gnome-panel libpanel-applet2-0 gnome-panel-dbg libpanel-applet2-dev 
libpanel-applet2-doc gnome-panel-data
Architecture: source all amd64
Version: 2.30.2-2
Distribution: unstable
Urgency: low
Maintainer: Guilherme de S. Pastore gpast...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gnome-panel - launcher and docking facility for GNOME
 gnome-panel-data - common files for the GNOME Panel
 gnome-panel-dbg - GNOME Panel and library for panel applets - debugging symbols
 libpanel-applet2-0 - library for GNOME Panel applets
 libpanel-applet2-dev - library for GNOME Panel applets - development files
 libpanel-applet2-doc - library for GNOME Panel applets - documentation files
Closes: 592781
Changes: 
 gnome-panel (2.30.2-2) unstable; urgency=low
 .
   * 03_tasklist_orientation.patch: new patch. Pass the task list
 orientation for the applet. It should fix #524117 for good.
 Closes: #592781
   * Require libwnck 2.30.0-3 for the new API.
   * Demote gnome-control-center to Recommends.
   * 30_crasher_realize.patch, 31_crasher_pager.patch: stolen upstream.
 Fix a pair of crashers that had been here for a long time.
Checksums-Sha1: 
 0db6bcf5367915bdb912716ca51f9cff2d835f70 2215 gnome-panel_2.30.2-2.dsc
 371590ccb12ada517d28e1e8bbf3bd3661eac82d 94271 
gnome-panel_2.30.2-2.debian.tar.gz
 e92cc5acdccba0f2e8346a12396f988aa3fef85b 138878 
libpanel-applet2-doc_2.30.2-2_all.deb
 7472639b1d26322ed2fa828c07a60793492c079a 3803254 
gnome-panel-data_2.30.2-2_all.deb
 a60ba9e23b63062ea9b5556e88ea005c6a56c5dd 562938 gnome-panel_2.30.2-2_amd64.deb
 8761c227d5fbd936ed24eba62444d38bba781640 136178 
libpanel-applet2-0_2.30.2-2_amd64.deb
 901f5b57b2cd5a748c5154587f97af1fa735cb25 1338162 
gnome-panel-dbg_2.30.2-2_amd64.deb
 2e67641b9005c476cd94202046d5494bd27f53cb 142928 
libpanel-applet2-dev_2.30.2-2_amd64.deb
Checksums-Sha256: 
 0359fbf9abe8eae879c422d1e023a91db9f629efa8e904c200880defd394aca0 2215 
gnome-panel_2.30.2-2.dsc
 51cff9f720ff08f82cd62c1dd806a475e7f1088154c0765307bc332ee23a6edf 94271 
gnome-panel_2.30.2-2.debian.tar.gz
 e2d36d37985c6030cbb1dd75aa1e9a4abb28d150c962a069611163f07452263f 138878 
libpanel-applet2-doc_2.30.2-2_all.deb
 530d854c8183260270ded7d4830eabca9710c752a7de2068d69327afbd083272 3803254 
gnome-panel-data_2.30.2-2_all.deb
 c9b7857c470940e92368bc7ec5f9208b8ce3fb4e5b26ae3e9bb5e02da9ceeb1b 562938 
gnome-panel_2.30.2-2_amd64.deb
 ac5b45e59c510850f812bb98c85a4c13aeed8024af74e89ff4efd045aca120d0 136178 
libpanel-applet2-0_2.30.2-2_amd64.deb
 11dcd5de9a36228e723d9b8f4ab33ff222e7a27397b4aac26c06b1db56f8394d 1338162 
gnome-panel-dbg_2.30.2-2_amd64.deb
 bab1ab8a4ae908eb3828084d00fe1673f9d300d99f7d622ebd5ba5605858884e 142928 
libpanel-applet2-dev_2.30.2-2_amd64.deb
Files: 
 f5242c6abfbbdfc8b94d2ec5d2293a34 2215 gnome optional gnome-panel_2.30.2-2.dsc
 7294f2bbb50d7a9e5f80b25a906e8bd3 94271 gnome optional 
gnome-panel_2.30.2-2.debian.tar.gz
 e5c7badd84b93068fe3d6691b827ce2a 138878 doc optional 
libpanel-applet2-doc_2.30.2-2_all.deb
 b2cf830d70df094abe17640c7a45577d 3803254 gnome optional 
gnome-panel-data_2.30.2-2_all.deb
 75553eecb1584fdf64b719b1d8ac9abb 562938 gnome optional 
gnome-panel_2.30.2-2_amd64.deb
 47e915b95bb5678cab4078ec47dc0e5c 136178 libs optional 
libpanel-applet2-0_2.30.2-2_amd64.deb
 6a1c618cd6c893c6750940e0dd9ff144 1338162 debug extra 
gnome-panel-dbg_2.30.2-2_amd64.deb
 28e918f441bf581dada958e1e80f3206 142928 libdevel optional 
libpanel-applet2-dev_2.30.2-2_amd64.deb

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

iD8DBQFMlH76rSla4ddfhTMRApprAJ4vmAtgCEsUez2w5oXtppApI8ZEzgCfWqQw
SZLA+k2w0VGdk5UoBCg4oIY=
=2EeP
-END PGP SIGNATURE-


Accepted:
gnome-panel-data_2.30.2-2_all.deb
  to main/g/gnome-panel/gnome-panel-data_2.30.2-2_all.deb
gnome-panel-dbg_2.30.2-2_amd64.deb
  to main/g/gnome-panel/gnome-panel-dbg_2.30.2-2_amd64.deb
gnome-panel_2.30.2-2.debian.tar.gz
  to main/g/gnome-panel/gnome-panel_2.30.2-2.debian.tar.gz
gnome-panel_2.30.2-2.dsc
  to main/g/gnome-panel/gnome-panel_2.30.2-2.dsc
gnome-panel_2.30.2-2_amd64.deb
  to main/g/gnome-panel/gnome-panel_2.30.2-2_amd64.deb
libpanel-applet2-0_2.30.2-2_amd64.deb
  to main/g/gnome-panel/libpanel-applet2-0_2.30.2-2_amd64.deb
libpanel-applet2-dev_2.30.2-2_amd64.deb
  to main/g/gnome-panel/libpanel-applet2-dev_2.30.2-2_amd64.deb
libpanel-applet2-doc_2.30.2-2_all.deb
  to main/g/gnome-panel/libpanel-applet2-doc_2.30.2-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/e1owxzv-0007v4...@franck.debian.org



Accepted gnome-python-desktop 2.30.0-2 (source all amd64)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 13:56:28 +0200
Source: gnome-python-desktop
Binary: python-gnome2-desktop-dev python-brasero python-bugbuddy python-evince 
python-evolution python-gnomeapplet python-gnomedesktop python-gnomekeyring 
python-gtop python-mediaprofiles python-metacity python-rsvg 
python-totem-plparser python-wnck
Architecture: source all amd64
Version: 2.30.0-2
Distribution: unstable
Urgency: low
Maintainer: Loic Minier l...@dooz.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 python-brasero - Python module for brasero
 python-bugbuddy - Python module for bug-buddy
 python-evince - Python bindings for the evince libraries
 python-evolution - Python bindings for the evolution libraries
 python-gnome2-desktop-dev - Python bindings for the GNOME desktop environment
 python-gnomeapplet - Python bindings for the GNOME panel applet library
 python-gnomedesktop - Python bindings for the GNOME desktop library
 python-gnomekeyring - Python bindings for the GNOME keyring library
 python-gtop - Python bindings for the Gtop library
 python-mediaprofiles - Python bindings for the GNOME media profiles library
 python-metacity - Python bindings for metacity
 python-rsvg - Python bindings for the RSVG library
 python-totem-plparser - Python bindings for the Totem playlist parser library
 python-wnck - Python bindings for the WNCK library
Changes: 
 gnome-python-desktop (2.30.0-2) unstable; urgency=low
 .
   [ Emilio Pozuelo Monfort ]
   * debian/control.in:
 - Build depend on libgnome-media-dev on Hurd now that it's built there.
   Thus build the python-mediaprofiles package.
 - Build depend on bug-buddy on Hurd too since it's built there now.
 .
   [ Josselin Mouette ]
   * Use Replaces instead of Conflicts to ease APT finding the correct
 upgrade path.
Checksums-Sha1: 
 07ab6265917daa6761557d91dedc955f8f445526 2240 gnome-python-desktop_2.30.0-2.dsc
 307f61b21ce521b622822ecd1413f5c08e20e755 198830 
gnome-python-desktop_2.30.0-2.debian.tar.gz
 2a5877659da6cfd28241c48a79d2fd2f932960e6 35912 python-bugbuddy_2.30.0-2_all.deb
 f09f3955852d0b93d6b2dc24f2460e461ea5 69312 
python-gnome2-desktop-dev_2.30.0-2_amd64.deb
 2a38c632475ff59c84d43fcd3dc431ef5fd15867 113182 
python-brasero_2.30.0-2_amd64.deb
 a8c07935e93bc5cfd517a53dec1f32ff8d977ae3 101472 
python-evince_2.30.0-2_amd64.deb
 902903b7475fca40e00fcaec8553500cb286cefc 101764 
python-evolution_2.30.0-2_amd64.deb
 340d72c8ee87408f004aab58fbe686e9c26fc068 45960 
python-gnomeapplet_2.30.0-2_amd64.deb
 b5744c368f759c4032fa530823d1384b370faa7a 56648 
python-gnomedesktop_2.30.0-2_amd64.deb
 371fbdad448432e5324b804ff8fe5310d241545b 69190 
python-gnomekeyring_2.30.0-2_amd64.deb
 7f23489464cf1470ff160c0a6e15eab2cfc147cc 47754 python-gtop_2.30.0-2_amd64.deb
 6bd0731c7beb4d7f75075d7dffe7fd99bcdd4040 42192 
python-mediaprofiles_2.30.0-2_amd64.deb
 5d36fb26430342257682b4f849eadd36a213fd7b 58870 
python-metacity_2.30.0-2_amd64.deb
 8a9df69cf0134e5348ef9d444f8b86f7617c7e65 41704 python-rsvg_2.30.0-2_amd64.deb
 5e575137c8b5849aa78afc3cd272439b2cb65130 44092 
python-totem-plparser_2.30.0-2_amd64.deb
 36e4ec14ca9a47639e25411dc16a327c2b435ce9 75272 python-wnck_2.30.0-2_amd64.deb
Checksums-Sha256: 
 51105af234a0641e455e6cc9043cd7325a76d99d9f4953823f2817bc67a8a6dd 2240 
gnome-python-desktop_2.30.0-2.dsc
 ce34c4b4c08aa4957ff39558f3dfc4766e2f696031a7f00fc25e8f8ce3313e63 198830 
gnome-python-desktop_2.30.0-2.debian.tar.gz
 8bff0ef71c17a6c60a6d9352170511e4fabe03ddc1c61cc28fcdc2b965e258f6 35912 
python-bugbuddy_2.30.0-2_all.deb
 6e64e0f57a721b745ffbfcaf36aaac1fe7c9729fc9a9797a5f0efc5aa26232f3 69312 
python-gnome2-desktop-dev_2.30.0-2_amd64.deb
 2d767923660b9d7064ad4e2cb4337591d487def283538ac57d7d7c1cebaf06fc 113182 
python-brasero_2.30.0-2_amd64.deb
 543771404b2a45b393fa30f42877671363254f8b93801132814a2045135c54f7 101472 
python-evince_2.30.0-2_amd64.deb
 791402d5bf4193a32289412b9866378d85eeae5230d2404792d4dd3531778776 101764 
python-evolution_2.30.0-2_amd64.deb
 c5f8be708ebba691909a348e1aafc23251437793f6516ab9251de41e9ad0154c 45960 
python-gnomeapplet_2.30.0-2_amd64.deb
 5274ddcf04993cb84b37ea04927efcb9ce88161470939451589380e94eab2b1c 56648 
python-gnomedesktop_2.30.0-2_amd64.deb
 c80c1b80dba365f7b8be9afd655b750e91c97e58999fb37822fdfad09afb829d 69190 
python-gnomekeyring_2.30.0-2_amd64.deb
 ad89f407a88fc872efd2e47e75ff9654df7ca937d71e7310dd6734a406bfa8b3 47754 
python-gtop_2.30.0-2_amd64.deb
 fd475c5bfc4dc8b0ffb6fffc13e6db0fb51999ba9464c243ad496adb95539f94 42192 
python-mediaprofiles_2.30.0-2_amd64.deb
 4d8536732f20276f5f6105c6f60743224977ba58a65c0435e24d7e23bcb0c8fa 58870 
python-metacity_2.30.0-2_amd64.deb
 8390e6356c2b9595dd37a4d5ee2b1a1e9fc777615ae1c49bc227c3adff80 41704 
python-rsvg_2.30.0-2_amd64.deb
 8a1c7afae98433a5b233a5c06ba88226aef0ea59cc23a1f86dd61dc22653e2b5 44092 
python-totem-plparser_2.30.0-2_amd64.deb
 cba122092c663b7cab7b6a694f7894f446fba23ace165e5b4ffc143d9d882dca 75272 

Accepted hugin 2010.2.0+dfsg~rc1-1 (source i386 all)

2010-09-18 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Sat, 18 Sep 2010 12:16:40 +0200
Source: hugin
Binary: hugin hugin-tools hugin-data
Architecture: source i386 all
Version: 2010.2.0+dfsg~rc1-1
Distribution: experimental
Urgency: low
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Andreas Metzler ametz...@debian.org
Description: 
 hugin  - GUI tools for Hugin
 hugin-data - data files for Hugin
 hugin-tools - CLI tools for Hugin
Changes: 
 hugin (2010.2.0+dfsg~rc1-1) experimental; urgency=low
 .
   * New upstream version.
   * Standards-Version 3.9.1. No changes required.
   * Wrap Build-Depends line in debian/control
Checksums-Sha1: 
 dd8d087bd4f40cc8780b7270abbd76756a06464d 1672 hugin_2010.2.0+dfsg~rc1-1.dsc
 5ba329253bf6128ac992b96cfa15321e8ae87169 12020056 
hugin_2010.2.0+dfsg~rc1.orig.tar.gz
 4fb628e7bd2338948f3dc2d5fffece7bc810b606 21607 
hugin_2010.2.0+dfsg~rc1-1.debian.tar.gz
 534abc00a3f0f980552618813acd5991130a2d70 1315010 
hugin_2010.2.0+dfsg~rc1-1_i386.deb
 fc4b5f6e34dd438769db8ec32094449e8d8f6514 3696778 
hugin-tools_2010.2.0+dfsg~rc1-1_i386.deb
 b6d53965e2b60a0048347c196dffe9a313a0183a 9153652 
hugin-data_2010.2.0+dfsg~rc1-1_all.deb
Checksums-Sha256: 
 3f741a330324c39eb9f562de91f583b89b643f46c070e7fe88ed1688e41ce0af 1672 
hugin_2010.2.0+dfsg~rc1-1.dsc
 5a07cda15f54aaa83af665c210c9dc8c704057b26863fd0a4570cbf425e26476 12020056 
hugin_2010.2.0+dfsg~rc1.orig.tar.gz
 01b6d8a9567b2195b6c2dc88ff9db0cd2f18deec7e430edc7a6841ff57ff0635 21607 
hugin_2010.2.0+dfsg~rc1-1.debian.tar.gz
 793c101153bd38670633a23231ba611fa3d9ab5679729eef73ce0093850e2e8d 1315010 
hugin_2010.2.0+dfsg~rc1-1_i386.deb
 b97b1647ef2b6e66e23b514d896b585502b878338a983ff1533c4c25a28d6f30 3696778 
hugin-tools_2010.2.0+dfsg~rc1-1_i386.deb
 682a7a6961377c483cd41274b3f72a68b51ba738b90a4aed80756d91ff44787a 9153652 
hugin-data_2010.2.0+dfsg~rc1-1_all.deb
Files: 
 a61fb852f18096b091ffc7cfd60bdfa4 1672 graphics optional 
hugin_2010.2.0+dfsg~rc1-1.dsc
 1d9c832848bda3216743cd622ca3bf14 12020056 graphics optional 
hugin_2010.2.0+dfsg~rc1.orig.tar.gz
 e01aff0bec8b3c7dcfc5f0aba1bad615 21607 graphics optional 
hugin_2010.2.0+dfsg~rc1-1.debian.tar.gz
 0598ab0f3afdd536d0a7456f15862e23 1315010 graphics optional 
hugin_2010.2.0+dfsg~rc1-1_i386.deb
 fc4fd26e6ee49a8ebb926e9b6810ec47 3696778 graphics optional 
hugin-tools_2010.2.0+dfsg~rc1-1_i386.deb
 399cf6937c4fd40dc172984397ea7633 9153652 graphics optional 
hugin-data_2010.2.0+dfsg~rc1-1_all.deb

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

iEYEAREDAAYFAkyUp/EACgkQHTOcZYuNdmOMCACgoYGgFDScoMDszqYk4zD5FFaU
QdkAnAhI4xMXg2SUaU2/JP2gz7OYSSNF
=v7gc
-END PGP SIGNATURE-


Accepted:
hugin-data_2010.2.0+dfsg~rc1-1_all.deb
  to main/h/hugin/hugin-data_2010.2.0+dfsg~rc1-1_all.deb
hugin-tools_2010.2.0+dfsg~rc1-1_i386.deb
  to main/h/hugin/hugin-tools_2010.2.0+dfsg~rc1-1_i386.deb
hugin_2010.2.0+dfsg~rc1-1.debian.tar.gz
  to main/h/hugin/hugin_2010.2.0+dfsg~rc1-1.debian.tar.gz
hugin_2010.2.0+dfsg~rc1-1.dsc
  to main/h/hugin/hugin_2010.2.0+dfsg~rc1-1.dsc
hugin_2010.2.0+dfsg~rc1-1_i386.deb
  to main/h/hugin/hugin_2010.2.0+dfsg~rc1-1_i386.deb
hugin_2010.2.0+dfsg~rc1.orig.tar.gz
  to main/h/hugin/hugin_2010.2.0+dfsg~rc1.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/e1owxas-0007ym...@franck.debian.org



Accepted icedove 3.0.8-1 (source amd64)

2010-09-18 Thread Christoph Goehre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 17 Sep 2010 22:25:18 +0200
Source: icedove
Binary: icedove icedove-dev icedove-dbg
Architecture: source amd64
Version: 3.0.8-1
Distribution: unstable
Urgency: low
Maintainer: Alexander Sack a...@debian.org
Changed-By: Christoph Goehre ch...@sigxcpu.org
Description: 
 icedove- mail/news client with RSS and integrated spam filter support
 icedove-dbg - Debug Symbols for Icedove
 icedove-dev - Development files for Icedove
Changes: 
 icedove (3.0.8-1) unstable; urgency=low
 .
   * New Upstream Version
Checksums-Sha1: 
 f7cfd089a6b0df84b100ce32658a90c184e72830 1845 icedove_3.0.8-1.dsc
 a4e4072a736721cad261b6d2d66b24fed5a24bdc 51860260 icedove_3.0.8.orig.tar.bz2
 a6ea4a3a581119fdf58913497ee1ab25e8da9f39 364511 icedove_3.0.8-1.debian.tar.gz
 ad50ce65f4f1491f7a608bf22fcf58fd33285068 12467436 icedove_3.0.8-1_amd64.deb
 77a20a34df90caac5f294df63351c06745ede901 5749362 icedove-dev_3.0.8-1_amd64.deb
 260ef3013b6ed803e25a4f8c3b3e83269aa0fd49 67862680 icedove-dbg_3.0.8-1_amd64.deb
Checksums-Sha256: 
 5dbc6d3944991fef84e510f27e05481364b4cd1bad98a3b4750c85233439edba 1845 
icedove_3.0.8-1.dsc
 23de04ad5ad811c73aac11a7e29607da9fa8af910ef0fee41408f5eba41c3e4d 51860260 
icedove_3.0.8.orig.tar.bz2
 44833dbb2440bef36a558f19c6f8b064dad94f1ddc131184d1492c5d85c7d758 364511 
icedove_3.0.8-1.debian.tar.gz
 ca35178cd151dd69f8f80332bced2e0b5ee19b97e113e38c187d322833a302b5 12467436 
icedove_3.0.8-1_amd64.deb
 de69704393a4ae99f4e0b097253166acf4773ae8bd63fb308b89f8880668140c 5749362 
icedove-dev_3.0.8-1_amd64.deb
 2b821c237504e3ad813d65042cd76cace94b6429213699844f42e4bd2e655752 67862680 
icedove-dbg_3.0.8-1_amd64.deb
Files: 
 60a0ed1fb08781ef0160d73b45e012c9 1845 web optional icedove_3.0.8-1.dsc
 3a44c7bd5df9dd69f58026c33f3c7ac4 51860260 web optional 
icedove_3.0.8.orig.tar.bz2
 95a7ae29bf78a7b3a06d9c8c0b8d6a3f 364511 web optional 
icedove_3.0.8-1.debian.tar.gz
 80067dffca4a49dfee0b6f4531d7f9ad 12467436 mail optional 
icedove_3.0.8-1_amd64.deb
 f5d2ad264734113fee30f1c65759a820 5749362 mail optional 
icedove-dev_3.0.8-1_amd64.deb
 48b7f6ee9f70fd107a4dda9b8a66896e 67862680 debug extra 
icedove-dbg_3.0.8-1_amd64.deb

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

iEYEARECAAYFAkyUfLMACgkQaT2DDHtihbc4uACfcOTuQQuvlL9JzghgmBJ1vsPA
8YgAoMlxSoszXdijGtc9PHL9sfSZJj9Q
=+DAO
-END PGP SIGNATURE-


Accepted:
icedove-dbg_3.0.8-1_amd64.deb
  to main/i/icedove/icedove-dbg_3.0.8-1_amd64.deb
icedove-dev_3.0.8-1_amd64.deb
  to main/i/icedove/icedove-dev_3.0.8-1_amd64.deb
icedove_3.0.8-1.debian.tar.gz
  to main/i/icedove/icedove_3.0.8-1.debian.tar.gz
icedove_3.0.8-1.dsc
  to main/i/icedove/icedove_3.0.8-1.dsc
icedove_3.0.8-1_amd64.deb
  to main/i/icedove/icedove_3.0.8-1_amd64.deb
icedove_3.0.8.orig.tar.bz2
  to main/i/icedove/icedove_3.0.8.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/e1owxcu-9t...@franck.debian.org



Accepted kdenlive 0.7.8-1 (source all amd64)

2010-09-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 18 Sep 2010 10:13:25 +0200
Source: kdenlive
Binary: kdenlive kdenlive-data kdenlive-dbg
Architecture: source all amd64
Version: 0.7.8-1
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 kdenlive   - a non-linear video editor
 kdenlive-data - a non-linear video editor (data files)
 kdenlive-dbg - a non-linear video editor (debugging symbols)
Changes: 
 kdenlive (0.7.8-1) unstable; urgency=low
 .
   * New upstream release.
 - Add patch 01-lower-down-req-mlt-version.diff, which sets the required mlt
   version from 0.5.10 to 0.5.6.
Checksums-Sha1: 
 c65ea2b837ba664ded8860dabcd64fc977a67789 1875 kdenlive_0.7.8-1.dsc
 6fd6d50f9714974ec3f2ce04e8c978f839020f9a 3232442 kdenlive_0.7.8.orig.tar.gz
 3ce14bf018ceddd48146da7b8a1502622f73d438 5928 kdenlive_0.7.8-1.debian.tar.gz
 dfed3cc6502e447585f7f1f649ed17d995a90fbc 2543760 kdenlive-data_0.7.8-1_all.deb
 281d65e139de1dfb8412e8e1273e640e7abb5601 1351626 kdenlive_0.7.8-1_amd64.deb
 7ade9d869b6487982b71c4f3c411f2df6ddc08a1 9511940 kdenlive-dbg_0.7.8-1_amd64.deb
Checksums-Sha256: 
 adf596c8d6cf3cc219c121b0218b69eda09f0366245ae03c8a3645510626ffa4 1875 
kdenlive_0.7.8-1.dsc
 7d57f455480b1657db2c12c61c5a20efe7e68fa54523fc6dc0abfd3920ac7c81 3232442 
kdenlive_0.7.8.orig.tar.gz
 a28bb9b6d061c17fb7c2b386ca09d25c193472299af5d38911e0c3593342b205 5928 
kdenlive_0.7.8-1.debian.tar.gz
 c25ade73e731255b7e574d34eaaecfb8ff326a5dbabbc0bcb1650a7497adc3a3 2543760 
kdenlive-data_0.7.8-1_all.deb
 e053bf0c65a8fe209a2074a8c1f537f041c3783ceba1817a1905284929be11a8 1351626 
kdenlive_0.7.8-1_amd64.deb
 b525d59b62e68753de887798b3f39fac96c4c27e1748708916787854a4bd699c 9511940 
kdenlive-dbg_0.7.8-1_amd64.deb
Files: 
 c99925332552122e66bef212c4376734 1875 video optional kdenlive_0.7.8-1.dsc
 7011d0c6b26f7f2350065defef3d9a76 3232442 video optional 
kdenlive_0.7.8.orig.tar.gz
 58e979373926da47425c598c61bcd838 5928 video optional 
kdenlive_0.7.8-1.debian.tar.gz
 453b02c9d0a62921da2d64ed947eb3f8 2543760 video optional 
kdenlive-data_0.7.8-1_all.deb
 52798fd712e919880997cc1ce3359f6a 1351626 video optional 
kdenlive_0.7.8-1_amd64.deb
 7bf180dfc210b2e1519cb4aaf64f8d28 9511940 debug extra 
kdenlive-dbg_0.7.8-1_amd64.deb

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

iQIcBAEBCAAGBQJMlH1uAAoJEBLZsEqQy9jkJOcP/2ErvBG6V2OV7HLVPVoq3IvA
kff9/5BAHTH5jaKqPcmHQCRLpguS8ZiPaTu3DI4mp/0PYX+JlAQjaaffZ7xua+9c
q36P4i8f0HdjqiA7YkEn689O9AERoZ9Jfo/VTo394zRrG0xYKj5rn4tf+PAVKMa0
HDC0WddaY4l+PIX8l+jwZsTv8wWrqfQZxcCdX2tkXiKLARQYARAFjMsVVmjtLVff
sYhVU0TzXkDOgrbpW5LOa971d2OSAqhYDgw0l8s6EI9jlr4L05Azh1pZ3Wcy8LVQ
UO3j650Myd46PICjguNbRjZ6EUyAGmUgqsTyMf2UBryOGTHADDsfkMWs8ad9hRpA
SU3zBJaScHB61HevrYuHPqAAeGRNdeKOE2itaasiwfcOoCwRujB0+KJocGPVjt5+
MTdxZm2if3LIozymj+crXkGuOTXP1YtlmvdMeTYw0IBcdWrDkIp2WKg6hyHNmZOB
rgY1M6fqpbRI54gONiwgBQa83mPzN/lmYf7GpJ+NrBiEOvH/cYiaHai/vERtCO7S
Kvo4/WEgS0Naps2r9zWYMqCwONo+98rTGeSR+7SF0t7Ex+Ory8M0eUQraWRQ59M1
JJDsz/XuCRGCFmlUdfguB8zgNYW0DAit8jJ0NzxBj6eZpFxxl48zIPZ8Y4cS/W/P
Cws8vUUkMuPjM47qslgL
=W2UT
-END PGP SIGNATURE-


Accepted:
kdenlive-data_0.7.8-1_all.deb
  to main/k/kdenlive/kdenlive-data_0.7.8-1_all.deb
kdenlive-dbg_0.7.8-1_amd64.deb
  to main/k/kdenlive/kdenlive-dbg_0.7.8-1_amd64.deb
kdenlive_0.7.8-1.debian.tar.gz
  to main/k/kdenlive/kdenlive_0.7.8-1.debian.tar.gz
kdenlive_0.7.8-1.dsc
  to main/k/kdenlive/kdenlive_0.7.8-1.dsc
kdenlive_0.7.8-1_amd64.deb
  to main/k/kdenlive/kdenlive_0.7.8-1_amd64.deb
kdenlive_0.7.8.orig.tar.gz
  to main/k/kdenlive/kdenlive_0.7.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/e1owxcr-jz...@franck.debian.org



Accepted librack-ruby 1.1.0-4 (source all)

2010-09-18 Thread Lucas Nussbaum
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 08:31:46 +0200
Source: librack-ruby
Binary: librack-ruby1.9.1 librack-ruby1.8 librack-ruby
Architecture: source all
Version: 1.1.0-4
Distribution: unstable
Urgency: low
Maintainer: Ryan Niebur r...@debian.org
Changed-By: Lucas Nussbaum lu...@lucas-nussbaum.net
Description: 
 librack-ruby - A modular Ruby webserver interface
 librack-ruby1.8 - A modular Ruby webserver interface (Ruby 1.8)
 librack-ruby1.9.1 - A modular Ruby webserver interface (Ruby 1.9.1)
Closes: 583553
Changes: 
 librack-ruby (1.1.0-4) unstable; urgency=low
 .
   * Team upload.
   * This package is now maintained within the Debian/Ruby Extras team.
   * debian/control:
 - Added the team (and myself) to the uploaders.
 - Updated the Vcs-* fields.
   * Version the dependency between librack-ruby and librack-ruby1.8.
 Closes: #583553
   * Rename the 1.9.1 binary to rackup1.9.1
Checksums-Sha1: 
 61799e2e88f2d2dba91683e9b001bca88658f878 1379 librack-ruby_1.1.0-4.dsc
 f6070e945a87d6f9f01ab709f866d5ecc22a77ea 3361 librack-ruby_1.1.0-4.diff.gz
 fb289e8898bba15f193e227554eef0474c52d6ba 86796 
librack-ruby1.9.1_1.1.0-4_all.deb
 d9961a28f9051861400a8f7368c66ba24de63994 86776 librack-ruby1.8_1.1.0-4_all.deb
 8fd9cc2c06357c6d79e203402823d74b249c8de0 202820 librack-ruby_1.1.0-4_all.deb
Checksums-Sha256: 
 c2faec40ddc995ea26b93f3a3640b11bc9c097c0fc96f6dc6ed9fabeedb357ba 1379 
librack-ruby_1.1.0-4.dsc
 88fcc7a8261c37dfc822008fb9fa2b161b890bb49508d4b3b65e628ac814655c 3361 
librack-ruby_1.1.0-4.diff.gz
 38bc9dda1cb305af23aa465c368faf6ad7286b809a650b84092c49caadab 86796 
librack-ruby1.9.1_1.1.0-4_all.deb
 42f12a50770913b65be2d3b190a41d98fc86553e7f765e7a363881c72b3858a9 86776 
librack-ruby1.8_1.1.0-4_all.deb
 f57cafb79f30cd7a626c6fb86e00010743f2b5212ab92f1156ebb56f54e3bf7c 202820 
librack-ruby_1.1.0-4_all.deb
Files: 
 fcc6245e42eee97241b9f9b7bfe35a2b 1379 ruby optional librack-ruby_1.1.0-4.dsc
 2925964fd1c477eb6034d9f1d4518bc4 3361 ruby optional 
librack-ruby_1.1.0-4.diff.gz
 cfc9240402c6465f55e4442b42a7a354 86796 ruby optional 
librack-ruby1.9.1_1.1.0-4_all.deb
 2ac83a6583b4d73725f577ad707ac418 86776 ruby optional 
librack-ruby1.8_1.1.0-4_all.deb
 debc65a615feb21af579f0170e8d80b7 202820 ruby optional 
librack-ruby_1.1.0-4_all.deb

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

iD8DBQFMlIEp2hliNwI7P08RAoPEAKCoMliPRzihgfcWvWxSQL5f98w37gCcCaeL
eF1pJAC6hLBcc0ibhBrSEOw=
=9ctO
-END PGP SIGNATURE-


Accepted:
librack-ruby1.8_1.1.0-4_all.deb
  to main/libr/librack-ruby/librack-ruby1.8_1.1.0-4_all.deb
librack-ruby1.9.1_1.1.0-4_all.deb
  to main/libr/librack-ruby/librack-ruby1.9.1_1.1.0-4_all.deb
librack-ruby_1.1.0-4.diff.gz
  to main/libr/librack-ruby/librack-ruby_1.1.0-4.diff.gz
librack-ruby_1.1.0-4.dsc
  to main/libr/librack-ruby/librack-ruby_1.1.0-4.dsc
librack-ruby_1.1.0-4_all.deb
  to main/libr/librack-ruby/librack-ruby_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/e1owxd6-0001hp...@franck.debian.org



Accepted libwnck 2.30.4-1 (source all amd64)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 10:20:12 +0200
Source: libwnck
Binary: libwnck22 libwnck-dev libwnck-common gir1.0-wnck-1.0
Architecture: source all amd64
Version: 2.30.4-1
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gir1.0-wnck-1.0 - GObject introspection data for the WNCK library
 libwnck-common - Window Navigator Construction Kit - common files
 libwnck-dev - Window Navigator Construction Kit - development files
 libwnck22  - Window Navigator Construction Kit - runtime files
Changes: 
 libwnck (2.30.4-1) unstable; urgency=low
 .
   * 01_tasklist_orientation.patch: require to set a macro to use the
 non-upstreamed API.
   * New upstream translation and bugfix release.
Checksums-Sha1: 
 a122f3f0b1e874853116fac70fc82bbc2e12816c 1648 libwnck_2.30.4-1.dsc
 85b18e979e7b94b9c44d375cdb2f68ca0e7ca522 1117234 libwnck_2.30.4.orig.tar.gz
 f76dc201914de09ecfa2812b45e02151ea132727 10571 libwnck_2.30.4-1.debian.tar.gz
 fb145720d6913516e23e37053978d4971a867367 347524 libwnck-common_2.30.4-1_all.deb
 182ef3b8ea09da03435279f1eea22623e16113e4 132490 libwnck22_2.30.4-1_amd64.deb
 135c57e61727dddea9c9e57543fee1ea939cdded 278852 libwnck-dev_2.30.4-1_amd64.deb
 554f0f071dda1d25bc31ea71cf8e190b857a0fd9 38336 
gir1.0-wnck-1.0_2.30.4-1_amd64.deb
Checksums-Sha256: 
 e9fa926c12c090ffe1cc9504030a35db8986f42477397bbc6e8b52b5b11ccbf5 1648 
libwnck_2.30.4-1.dsc
 c669d2a674bf2e5584af4f9a7bfbc084d00ffba80945629ff3d2f162c2d7e7b6 1117234 
libwnck_2.30.4.orig.tar.gz
 69e3419df9e2ba5f8002aa8cde788d0c7c3da41b05dba06980cee0ff4053cb2f 10571 
libwnck_2.30.4-1.debian.tar.gz
 0f8312780e6d2bc9c972a94b2c3bbf01fc8cbf6e80be04a713a16535895fea55 347524 
libwnck-common_2.30.4-1_all.deb
 765ab291056d0135a8d310b7ceac01dd592a499f04405fac2d9dff333a08b84c 132490 
libwnck22_2.30.4-1_amd64.deb
 5cee8ee8fd87b77048ab6d8060eeb41cb14a52ee170eef4446b50789e3c7424a 278852 
libwnck-dev_2.30.4-1_amd64.deb
 f0de7c8c7a2da49d86fa645ab6d26527dd4cb781661e6534059a1844b96543a9 38336 
gir1.0-wnck-1.0_2.30.4-1_amd64.deb
Files: 
 0efd4b2182e5943d89125c86a8dbf998 1648 libs optional libwnck_2.30.4-1.dsc
 3be114dc3c6dd5e58ff87042666c9aff 1117234 libs optional 
libwnck_2.30.4.orig.tar.gz
 e1a5b0b788eb114163e2bcad7b239530 10571 libs optional 
libwnck_2.30.4-1.debian.tar.gz
 b73c2d51a952b78f18858a7d6863b84b 347524 libs optional 
libwnck-common_2.30.4-1_all.deb
 6709bc8cc30e61511f51a125f6965673 132490 libs optional 
libwnck22_2.30.4-1_amd64.deb
 ae981c4a1563e1694860f2debef5d9d1 278852 libdevel optional 
libwnck-dev_2.30.4-1_amd64.deb
 36bf298334760b7575c45b9cef815f45 38336 libs optional 
gir1.0-wnck-1.0_2.30.4-1_amd64.deb

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

iD8DBQFMlHiKrSla4ddfhTMRAsjuAKDFzvy1451cNIk++gQw8X7/kcOuGwCgz+/D
vqVcd8L6pAXOzXmfj44Nwl4=
=8Qd0
-END PGP SIGNATURE-


Accepted:
gir1.0-wnck-1.0_2.30.4-1_amd64.deb
  to main/libw/libwnck/gir1.0-wnck-1.0_2.30.4-1_amd64.deb
libwnck-common_2.30.4-1_all.deb
  to main/libw/libwnck/libwnck-common_2.30.4-1_all.deb
libwnck-dev_2.30.4-1_amd64.deb
  to main/libw/libwnck/libwnck-dev_2.30.4-1_amd64.deb
libwnck22_2.30.4-1_amd64.deb
  to main/libw/libwnck/libwnck22_2.30.4-1_amd64.deb
libwnck_2.30.4-1.debian.tar.gz
  to main/libw/libwnck/libwnck_2.30.4-1.debian.tar.gz
libwnck_2.30.4-1.dsc
  to main/libw/libwnck/libwnck_2.30.4-1.dsc
libwnck_2.30.4.orig.tar.gz
  to main/libw/libwnck/libwnck_2.30.4.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/e1owxdg-0001sr...@franck.debian.org



Accepted mlt 0.5.10-1 (source all amd64)

2010-09-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 18 Sep 2010 10:37:22 +0200
Source: mlt
Binary: libmlt-dev libmlt2 libmlt-data libmlt++-dev libmlt++3 libmlt-dbg melt 
python-mlt2
Architecture: source amd64 all
Version: 0.5.10-1
Distribution: experimental
Urgency: low
Maintainer: Fathi Boudra f...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 libmlt++-dev - MLT multimedia framework C++ wrapper (development)
 libmlt++3  - MLT multimedia framework C++ wrapper (runtime)
 libmlt-data - multimedia framework (data)
 libmlt-dbg - multimedia framework (debugging symbols)
 libmlt-dev - multimedia framework (development)
 libmlt2- multimedia framework (runtime)
 melt   - command line media player and video editor
 python-mlt2 - multimedia framework (python bindings)
Changes: 
 mlt (0.5.10-1) experimental; urgency=low
 .
   * New upstream release.
 - Remove deprecated patch 01-in_out-points-region-transition.diff.
   * Bump Standards-Version to 3.9.1 (no changes needed).
Checksums-Sha1: 
 d588d9b1d7cae478b90db828276b8ea6ae251a43 2067 mlt_0.5.10-1.dsc
 e0b3d8f77ad6d97d6495614e78dfbbb531e70f77 819471 mlt_0.5.10.orig.tar.gz
 afba9f920cc627f0ad6b8715268a369663c6f608 6955 mlt_0.5.10-1.debian.tar.gz
 9de8ee7d2ae12b9e9553a4ef93008c685023659c 132918 libmlt-dev_0.5.10-1_amd64.deb
 bc8d6d7b3470a65d171af333be333737d4f203d5 479940 libmlt2_0.5.10-1_amd64.deb
 9f417d67fbf3634db3401e0b96d474a40f3eb40c 2385652 libmlt-data_0.5.10-1_all.deb
 5b7d1c2b73d4b7ee50a9423d1007b65511ec14c0 93342 libmlt++-dev_0.5.10-1_amd64.deb
 15360ef41d355e7dd4cba01bb7b916f5f4efcc00 123586 libmlt++3_0.5.10-1_amd64.deb
 bb89166b5e1f19fed06668f6da887decbc7748eb 1047026 libmlt-dbg_0.5.10-1_amd64.deb
 f6aa487676eb19d3778604fa7d758a1efb7d5483 126378 melt_0.5.10-1_amd64.deb
 14f2a838ef23d019550d5b045cc99580fb09beb8 279132 python-mlt2_0.5.10-1_amd64.deb
Checksums-Sha256: 
 42a2e16829a97d1383d14bec759b3326bc6d5c4b4e20ba88a94e6ba3370ee9d8 2067 
mlt_0.5.10-1.dsc
 106636540cdf44f670937b8df549ea2c988a27d05e14d4a8670f9b6af5a0d19e 819471 
mlt_0.5.10.orig.tar.gz
 f8f5a3497956089f6ff0a5fe2d780d2d25cde61dfd32822359de95a2dd586a91 6955 
mlt_0.5.10-1.debian.tar.gz
 f21c29ddbaf8457595c5edde1df0c8fd8144aac2d0b9a89763228132d09dce7c 132918 
libmlt-dev_0.5.10-1_amd64.deb
 29ec0e57b39b99b6e492d2f0b10a87f40897b1b40391699e3ba886fac450d3f3 479940 
libmlt2_0.5.10-1_amd64.deb
 317b2933d3bdff04b8525a9e5c070794fd174c761a05fb291d974bb9ac770ce4 2385652 
libmlt-data_0.5.10-1_all.deb
 d62d6aa4a8633966bbac4d40021fd9b1cf21c0ee703afa3701409d223a157929 93342 
libmlt++-dev_0.5.10-1_amd64.deb
 ea76334e720af9634f880893996f8537b86bf47157c77059960f1ba6b336 123586 
libmlt++3_0.5.10-1_amd64.deb
 6736246c9ae1e9ce56c62574d8c944f72682187881a203ce0621e7db5a52151c 1047026 
libmlt-dbg_0.5.10-1_amd64.deb
 2fa0bbf3e5142dc2c9532af83437c1a4032ca699d6f315c39e5288ae81212890 126378 
melt_0.5.10-1_amd64.deb
 5ae76ccfb211653ae30520973ceba1fef9dae9ed1afec74578a8ba6d50d48bfd 279132 
python-mlt2_0.5.10-1_amd64.deb
Files: 
 301481df293eec1010a133391cbfdcfa 2067 libs optional mlt_0.5.10-1.dsc
 6869ed138193cc0e3113e4e7ac341e14 819471 libs optional mlt_0.5.10.orig.tar.gz
 f1e5f56bb9fd1afd26cfca944c28ded9 6955 libs optional mlt_0.5.10-1.debian.tar.gz
 27015ae5bb627442cd5e99b1a9ce3a67 132918 libdevel optional 
libmlt-dev_0.5.10-1_amd64.deb
 dfd06981b5bf69bacfb0ffcf5eb50bb0 479940 libs optional 
libmlt2_0.5.10-1_amd64.deb
 e3207494d97c0f8ce2c4a5e78312d813 2385652 libs optional 
libmlt-data_0.5.10-1_all.deb
 1491a30d95d67d28124eab6c6a31f8dd 93342 libdevel optional 
libmlt++-dev_0.5.10-1_amd64.deb
 f0af214f2cc05cb8d7d8efddd9163094 123586 libs optional 
libmlt++3_0.5.10-1_amd64.deb
 3e98fe95f33cb820704e4067e11339e9 1047026 debug extra 
libmlt-dbg_0.5.10-1_amd64.deb
 89ae11dbbf6761ef93eba56b280abf50 126378 utils optional melt_0.5.10-1_amd64.deb
 070fbbb3148e06b5275f61379448a51a 279132 python optional 
python-mlt2_0.5.10-1_amd64.deb

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

iQIcBAEBCAAGBQJMlH1zAAoJEBLZsEqQy9jkbPgQAJujllLc2OmptEOJ4Tbcmfzv
8RQE/Tzrd+D46ywguI5YqRrIDGQfLOX1W6Rgx0WmDPb/UAaN4mm2b52wpwRH/zJW
CD3HAdprv/6fmWFgfqEJjsX7j6kxQRTBmmQAyxBZdRGbWCVzWoJa5DQVMAi3PuIR
co5QKkzYfTJDO97guk7jgzM65kAJZ099hNQUtcPZEKEMlBa7btY8Affgw6Ej6voD
J2jDGYxsp1DzVx67sNeTpUSbtqWBIX0GrcKmEzVulq+sPR1a/H0TlgvKeF3b/ZWc
FX8vvSyeTc0M2HU3T6JNv5B7NF0RrJXR+2WXRWxgM4hkv7BPSgiD3nGXN7jUVRwN
9ZpK36yWQ/75IpYgxYR0iktqhALngz0qXqSZJuJ2gP2iXW62FqI9vDeg/ZCoXE7e
gLqsu+T2akaC7+OGRE+5UdE67F2mHmPjzP72/BN1tcPSmmDXqN+vl2CIArqEA6bD
BzihQ6Q2wMIA+YwjJC21kCohX21css41OGZTBADZr+bbyIzv9F6FhdJsqcwZAROf
Iu+ehTiwL0xm+PJPbhOaPL908pDdxvK+SSqDV8LNZFkl1DQIGzy3PDXlX1UNGU8s
W93cbhEPVecHRm8m2yCC1jz3KGy1F9AE6vY4GmwTmLJFCQ715sN2ZjfM7kgu9D5X
8v+FALVf6Ha2xxqvPiYO
=p3NV
-END PGP SIGNATURE-


Accepted:
libmlt++-dev_0.5.10-1_amd64.deb
  to main/m/mlt/libmlt++-dev_0.5.10-1_amd64.deb
libmlt++3_0.5.10-1_amd64.deb
  to main/m/mlt/libmlt++3_0.5.10-1_amd64.deb
libmlt-data_0.5.10-1_all.deb
  to 

Accepted nautilus 2.30.1-2 (source all amd64)

2010-09-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 14:31:36 +0200
Source: nautilus
Binary: nautilus nautilus-dbg libnautilus-extension1 libnautilus-extension-dev 
nautilus-data
Architecture: source all amd64
Version: 2.30.1-2
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 libnautilus-extension-dev - libraries for nautilus components - development 
version
 libnautilus-extension1 - libraries for nautilus components - runtime version
 nautilus   - file manager and graphical shell for GNOME
 nautilus-data - data files for nautilus
 nautilus-dbg - file manager and graphical shell for GNOME - debugging version
Closes: 564859 587872 592016
Changes: 
 nautilus (2.30.1-2) unstable; urgency=low
 .
   * Drop type-handling usage. Closes: #587872.
   * Bump standards version accordingly.
   * 13_shortcuts.patch: stolen from upstream git. Fix an annoying bug
 that makes a number of keyboard shortcuts inoperant the first time.
 Closes: #592016.
   * 14_dont_show_umount.patch: stolen from upstream git. Don’t show both
 “unmount” and “safe removal”/“eject” entries. Closes: #564859.
Checksums-Sha1: 
 124b5937b8154ea7a23513ffb2465bf62f3fe60e 1984 nautilus_2.30.1-2.dsc
 693db5c06fff4e567622af31b86726e0536322e4 155540 nautilus_2.30.1-2.diff.gz
 cafbf4a7ed64a79fb9fe61d3c514b7ce17c546df 5326012 nautilus-data_2.30.1-2_all.deb
 16afb2b8947f98d2ddb0f298a72193bf24318349 1396288 nautilus_2.30.1-2_amd64.deb
 3c54a052912698e299eebf027d04fdb9eb90d153 3298914 
nautilus-dbg_2.30.1-2_amd64.deb
 8184e4ffa832b700f21e2e8751c3ad4b29124126 112204 
libnautilus-extension1_2.30.1-2_amd64.deb
 2ef98905d8ad345be724be3097d6c91b2999f492 129404 
libnautilus-extension-dev_2.30.1-2_amd64.deb
Checksums-Sha256: 
 e5da47a701c0252fb2a598a427fa7ea6d4b4c6f1cc1d95a27db4b639270fc9e9 1984 
nautilus_2.30.1-2.dsc
 a35d74290a67a27a280de1c7c1fb73530e3a70a4433b708db665f9cd973a8681 155540 
nautilus_2.30.1-2.diff.gz
 285a676645a7efbef972bcf406e5fd7081ed31862070dbf04c6febe815244af4 5326012 
nautilus-data_2.30.1-2_all.deb
 43f93e07fcbd8060264c6129d9292c604e9d85d9dad49bac145b597a587aeb92 1396288 
nautilus_2.30.1-2_amd64.deb
 f5b95f726b55cdc30afe9318b25c747178916663031c4945c98acde4df695786 3298914 
nautilus-dbg_2.30.1-2_amd64.deb
 e5fb1bd934634f69757b8854e66b1e49c2cd57f1cb488c1e8a890391f8ba2f9b 112204 
libnautilus-extension1_2.30.1-2_amd64.deb
 6372b7dd34d2d09712d5c2aa08ab2622ab9a2dcf62c9f55e7166b1752053df2e 129404 
libnautilus-extension-dev_2.30.1-2_amd64.deb
Files: 
 febf845e714eef0c17449074e93793b9 1984 gnome optional nautilus_2.30.1-2.dsc
 95176d10563ed937b8382c86a4b84057 155540 gnome optional 
nautilus_2.30.1-2.diff.gz
 c3ff522288a3aebf75314dadda633570 5326012 gnome optional 
nautilus-data_2.30.1-2_all.deb
 d774e37f4498364dc31c26716fed0f9d 1396288 gnome optional 
nautilus_2.30.1-2_amd64.deb
 b4f47049d9e263c9613795960d9a475b 3298914 debug extra 
nautilus-dbg_2.30.1-2_amd64.deb
 5acc760b486c34b38d8de299f12ae2c7 112204 libs optional 
libnautilus-extension1_2.30.1-2_amd64.deb
 5fb49977254db57f0a6f09d848c7147c 129404 libdevel optional 
libnautilus-extension-dev_2.30.1-2_amd64.deb

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

iD8DBQFMlLNJrSla4ddfhTMRAszUAKDjmGpjUTfBA1JszwtMCWH0kvDb4gCeMQ69
gKaolPgnQwCg18QEgmSFtxs=
=uCKZ
-END PGP SIGNATURE-


Accepted:
libnautilus-extension-dev_2.30.1-2_amd64.deb
  to main/n/nautilus/libnautilus-extension-dev_2.30.1-2_amd64.deb
libnautilus-extension1_2.30.1-2_amd64.deb
  to main/n/nautilus/libnautilus-extension1_2.30.1-2_amd64.deb
nautilus-data_2.30.1-2_all.deb
  to main/n/nautilus/nautilus-data_2.30.1-2_all.deb
nautilus-dbg_2.30.1-2_amd64.deb
  to main/n/nautilus/nautilus-dbg_2.30.1-2_amd64.deb
nautilus_2.30.1-2.diff.gz
  to main/n/nautilus/nautilus_2.30.1-2.diff.gz
nautilus_2.30.1-2.dsc
  to main/n/nautilus/nautilus_2.30.1-2.dsc
nautilus_2.30.1-2_amd64.deb
  to main/n/nautilus/nautilus_2.30.1-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/e1owxjf-0002j6...@franck.debian.org



Accepted qdbm 1.8.77-3.1 (source all amd64)

2010-09-18 Thread Lucas Nussbaum
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 08:48:49 +0200
Source: qdbm
Binary: libqdbm14 qdbm-doc libqdbm-dev qdbm-util qdbm-cgi libxqdbm3c2 
libxqdbm-dev libqdbm3++c2 libqdbm++-dev libqdbm-perl libqdbm-ruby1.8 
libqdbm-ruby1.9.1 libqdbm-java
Architecture: source all amd64
Version: 1.8.77-3.1
Distribution: unstable
Urgency: low
Maintainer: KURASHIKI Satoru lur...@gmail.com
Changed-By: Lucas Nussbaum lu...@lucas-nussbaum.net
Description: 
 libqdbm++-dev - QDBM Database Libraries for C++ [development] (transitional 
packa
 libqdbm-dev - QDBM Database Libraries [development]
 libqdbm-java - QDBM Database Libraries for Java
 libqdbm-perl - QDBM Database Libraries for Perl
 libqdbm-ruby1.8 - QDBM Database Libraries for Ruby 1.8
 libqdbm-ruby1.9.1 - QDBM Database Libraries for Ruby 1.9.1
 libqdbm14  - QDBM Database Libraries [runtime]
 libqdbm3++c2 - QDBM Database Libraries for C++ [runtime] (transitional package)
 libxqdbm-dev - QDBM Database Libraries for C++ [development]
 libxqdbm3c2 - QDBM Database Libraries for C++ [runtime]
 qdbm-cgi   - QDBM Database CGI commands
 qdbm-doc   - QDBM Database Documentation
 qdbm-util  - QDBM Database Utilities
Closes: 592775
Changes: 
 qdbm (1.8.77-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix FTBFS:
 + Apply patch from Julien Cristau to replace STR2CSTR with StringValuePtr.
 + Hack: avoid modifying $0 (frozen variable in 1.9.2)
 + Add -I. to work around removal of relative requires in 1.9.2.
 Closes: #592775
Checksums-Sha1: 
 9948fd53d90266ecf58e81ee92372a5e7e65cadd 1423 qdbm_1.8.77-3.1.dsc
 03c5fed1e29e3920fc61aeeb6c5f95289a4c1109 17716 qdbm_1.8.77-3.1.debian.tar.gz
 b335565d36dd41ee2b06bbc52d99630e5464e5a3 348990 qdbm-doc_1.8.77-3.1_all.deb
 7204bd8e5c556b7136e79b438b7dc1ca74c4e7a7 157456 libqdbm14_1.8.77-3.1_amd64.deb
 1b16b10b94c702644145702a02c31b586ae7958c 274536 
libqdbm-dev_1.8.77-3.1_amd64.deb
 8cdae62b2224c8eb6440fcf309e132324795be4f 99718 qdbm-util_1.8.77-3.1_amd64.deb
 49930512c5221f21a0350530a146a1651af1ceb3 38082 qdbm-cgi_1.8.77-3.1_amd64.deb
 a1a71f69b79f6c0bf83b860e5b69d52438c76a50 42314 libxqdbm3c2_1.8.77-3.1_amd64.deb
 4dec70aaed6c60361816ff3cafd8433efec5a866 18892 
libxqdbm-dev_1.8.77-3.1_amd64.deb
 fb147fdad4ed158a075d4b8f35db797c79b80efb 8306 libqdbm3++c2_1.8.77-3.1_amd64.deb
 f254a678716c8b5be9641fd9e4c530748b3c0901 8532 
libqdbm++-dev_1.8.77-3.1_amd64.deb
 433042a9f03e306853f4d1e51da6560726c0fc15 55830 
libqdbm-perl_1.8.77-3.1_amd64.deb
 b651fe460134f884e1e73b47a58c7a7ba73fa4d8 40176 
libqdbm-ruby1.8_1.8.77-3.1_amd64.deb
 bce0cfd5a222b807fe14b0e921bc78a7e545d4a9 40260 
libqdbm-ruby1.9.1_1.8.77-3.1_amd64.deb
 351267cc26a20e008e2cd139ad7da7f40696a9fa 47188 
libqdbm-java_1.8.77-3.1_amd64.deb
Checksums-Sha256: 
 105ab1ee16eb81d7c10848b73df93f039036dff6596d46546e97fb0db3c223ee 1423 
qdbm_1.8.77-3.1.dsc
 403d5a5e3603e7a7c1d1af02d94cdf3854df3605e7cf53a91831380f5fa9536d 17716 
qdbm_1.8.77-3.1.debian.tar.gz
 86ab0cac42a89f513d961da5359c00aa3eb0c214e07e6e3d74056815dcb566a0 348990 
qdbm-doc_1.8.77-3.1_all.deb
 507a1c75dbc8d4a5c90865523ae41837f75fc018e0b0110f6478aa2699364afa 157456 
libqdbm14_1.8.77-3.1_amd64.deb
 68d8dec4c18cc54db6462006d694bd3d4a75dd904c00404768c2e446fb20ae60 274536 
libqdbm-dev_1.8.77-3.1_amd64.deb
 c742064e788a6231b775364bd1602529c875e5fa674342cd89b069f8a8b382dc 99718 
qdbm-util_1.8.77-3.1_amd64.deb
 59ceabc476498e0a5750342eab5b55978b54d08dc8075cbc644a43fff44f2405 38082 
qdbm-cgi_1.8.77-3.1_amd64.deb
 f8443ab4324b74397b280f4d01bcd01d91769a54cce9db769f916ef91f645903 42314 
libxqdbm3c2_1.8.77-3.1_amd64.deb
 1f5237a6a7b21839b0ff01282102b59994628e956dcf29e66d2b2695be564018 18892 
libxqdbm-dev_1.8.77-3.1_amd64.deb
 94e3ea6a94b6c7b15092569209b8903699e16a0d4a68a88bdcf1e112bec024c7 8306 
libqdbm3++c2_1.8.77-3.1_amd64.deb
 f6848ea3128f0fe251b23fd14cd8636108099220abd5fee68fbdd2d45d06487d 8532 
libqdbm++-dev_1.8.77-3.1_amd64.deb
 05cd6b81e4987249158ff3bdaa15b7f26d475568913f08ebd8d9ae0b18f8e752 55830 
libqdbm-perl_1.8.77-3.1_amd64.deb
 55bb4f6efffdfbbcf9457b2b3c2e23a94015fcadffb9e3263798aa52a08e9afe 40176 
libqdbm-ruby1.8_1.8.77-3.1_amd64.deb
 dcea793aa0da944e4efa002b005d714c1333cd7714af472731b3febba24ad1d1 40260 
libqdbm-ruby1.9.1_1.8.77-3.1_amd64.deb
 9b581f0a0c6060de7199290caa5f63a7ebdd1489d702d737ee39f0586d35f7bb 47188 
libqdbm-java_1.8.77-3.1_amd64.deb
Files: 
 952f7e615635f5720225a5b1f6a8f887 1423 libs optional qdbm_1.8.77-3.1.dsc
 f058889086c5d72b1ba1b234fee682c1 17716 libs optional 
qdbm_1.8.77-3.1.debian.tar.gz
 a562c5a8dd58621676728815d117a2a8 348990 doc optional 
qdbm-doc_1.8.77-3.1_all.deb
 e6443dea8f06af6bb3005ae06593f6a6 157456 libs optional 
libqdbm14_1.8.77-3.1_amd64.deb
 558565bde9059d23ec2a6f6bdbf046b0 274536 libdevel optional 
libqdbm-dev_1.8.77-3.1_amd64.deb
 a6c4f31ad37f90d96fcbe1ed118d78c1 99718 database optional 
qdbm-util_1.8.77-3.1_amd64.deb
 388a29ebe208b63b6e237ad80707f394 38082 database optional 
qdbm-cgi_1.8.77-3.1_amd64.deb
 

Accepted quagga 0.99.17-2 (source all amd64)

2010-09-18 Thread Christian Hammers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 12:20:07 +0200
Source: quagga
Binary: quagga quagga-doc
Architecture: source all amd64
Version: 0.99.17-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-doc - documentation files for quagga
Closes: 596259
Changes: 
 quagga (0.99.17-2) unstable; urgency=low
 .
   * Added Danisch Debconf translation (thanks to Joe Dalton). Closes: #596259
Checksums-Sha1: 
 b409b291568866883e029da5b22183dd49898c8b 1297 quagga_0.99.17-2.dsc
 986a30dcc0eb73de79bdd974e435e209aca47685 34350 quagga_0.99.17-2.diff.gz
 85307ae6889905fa1f365bf162bb9837cb9cf1a6 608620 quagga-doc_0.99.17-2_all.deb
 6f26d6648c8a9e58b7f9e0b4f0e91a4915ba9417 1721426 quagga_0.99.17-2_amd64.deb
Checksums-Sha256: 
 2ced96de5ccd4b8603227321582519286bc51b67f6f28eacb3487de92c34843f 1297 
quagga_0.99.17-2.dsc
 5456a44033b6162761dd6978ae8c21ffca03a0d64f84f2d70b06d84403fee6b8 34350 
quagga_0.99.17-2.diff.gz
 cfbde7748f64ae5725fb4fcb3237564c3595c6eca5d22ff296b03fdcf596939c 608620 
quagga-doc_0.99.17-2_all.deb
 ee5768e3886a4e8e8c8155d374694914da1bf72f63f36e5e427ff0f9e751 1721426 
quagga_0.99.17-2_amd64.deb
Files: 
 e2cb23168a17d6d09f0bca45e0435c2a 1297 net optional quagga_0.99.17-2.dsc
 96b644724f15f4bb019f21926adaa51e 34350 net optional quagga_0.99.17-2.diff.gz
 4563f28c79624132e94702c44cd6b3ec 608620 doc optional 
quagga-doc_0.99.17-2_all.deb
 15999f992a433e801edfb143b83b8329 1721426 net optional 
quagga_0.99.17-2_amd64.deb

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

iEYEARECAAYFAkyUo2kACgkQkR9K5oahGOaXFwCglCTJKw9rjM0q9K/c0ghBoyKJ
JZYAoLRcJlLea8d6Pt6+75KgKh2yCkA1
=roho
-END PGP SIGNATURE-


Accepted:
quagga-doc_0.99.17-2_all.deb
  to main/q/quagga/quagga-doc_0.99.17-2_all.deb
quagga_0.99.17-2.diff.gz
  to main/q/quagga/quagga_0.99.17-2.diff.gz
quagga_0.99.17-2.dsc
  to main/q/quagga/quagga_0.99.17-2.dsc
quagga_0.99.17-2_amd64.deb
  to main/q/quagga/quagga_0.99.17-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/e1owxlb-0002km...@franck.debian.org



Accepted scilab 5.2.2-6 (source all i386)

2010-09-18 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 08:50:49 +0200
Source: scilab
Binary: scilab-cli scilab scilab-data scilab-include scilab-minimal-bin 
scilab-full-bin scilab-minimal-bin-dbg scilab-full-bin-dbg libscilab-java 
scilab-doc scilab-doc-fr scilab-doc-pt-br scilab-test
Architecture: source all i386
Version: 5.2.2-6
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 libscilab-java - Scientific software package for numerical computations (Java 
API)
 scilab - Scientific software package for numerical computations
 scilab-cli - Scientific software package - Command Line Interpreter
 scilab-data - Scientific software package for numerical computations (data file
 scilab-doc - Scientific software package (english documentations)
 scilab-doc-fr - Scientific software package (french documentation)
 scilab-doc-pt-br - Scientific software package (Brazilian Portuguese 
documentation)
 scilab-full-bin - Scientific software package for numerical computations (all 
binar
 scilab-full-bin-dbg - Scientific software package (scilab debugging symbols)
 scilab-include - Scientific software package for numerical computations 
(include f
 scilab-minimal-bin - Scientific software package for numerical computations 
(minimal b
 scilab-minimal-bin-dbg - Scientific software package (scilab-cli debugging 
symbols)
 scilab-test - Scientific software package for numerical computations (test file
Changes: 
 scilab (5.2.2-6) unstable; urgency=low
 .
   * Fix a problem with the build system
Checksums-Sha1: 
 f68a2335ac130dfead2ec2b483183e3e09e07a99 2119 scilab_5.2.2-6.dsc
 0ef77e90bf95da69b3b810284acde255d3c29847 38340 scilab_5.2.2-6.diff.gz
 4cabf5d81b8ffa9afda37bf2f7895f423f016a68 38286 scilab-cli_5.2.2-6_all.deb
 0876fbec62996f4f4ca5095d09c1f378dfb30ecf 220084 scilab_5.2.2-6_all.deb
 692fcbd1fe791dfd29025598734180ecf3e22e4a 11013756 scilab-data_5.2.2-6_all.deb
 dda7a0a80a1107cbf54dc442e212658199959f6b 9923602 scilab-doc_5.2.2-6_all.deb
 a87088739ba252e8866b89d963cd07a23b05c37c 7915728 scilab-doc-fr_5.2.2-6_all.deb
 d45c3ece6aac63c897f73e15392e52070a6dad37 7393810 
scilab-doc-pt-br_5.2.2-6_all.deb
 9a92589b401b063100dd9b4f2e99daca257b86e6 32194400 scilab-test_5.2.2-6_all.deb
 c0c8451225013fcac7c9d8558605426795ca1d39 90592 scilab-include_5.2.2-6_i386.deb
 05b9c9a11f7a8f70209364ba2e497a35283d6b81 2488580 
scilab-minimal-bin_5.2.2-6_i386.deb
 637620b8ab7541f403b4d30bc61490e70d1f9160 1386898 
scilab-full-bin_5.2.2-6_i386.deb
 7c5d932395926c30c332cf32d4ef0f656c461f14 3149876 
scilab-minimal-bin-dbg_5.2.2-6_i386.deb
 8162d44299dd6019c19d22a74049c9b423eaee90 4652496 
scilab-full-bin-dbg_5.2.2-6_i386.deb
 4a4b4af9b04544acb10e61b4ac88a8a2bdbe87f0 54678 libscilab-java_5.2.2-6_i386.deb
Checksums-Sha256: 
 5268f094297dde98de9da956200b8ded4b623bdb508c2d3132011124a5413344 2119 
scilab_5.2.2-6.dsc
 5841dd97ad8233712d74d18725cb9c17a8cd65f5015bb38ace491cfc504aab96 38340 
scilab_5.2.2-6.diff.gz
 ad1d090bf263fb67e4e2fde265593b86a628593e2c51fa121a65bc3e73c82bb8 38286 
scilab-cli_5.2.2-6_all.deb
 95ace9a60a622a3b4cbc2e676ca5db881a7547bafa0d9c56f01b8512578a0598 220084 
scilab_5.2.2-6_all.deb
 83335fa4691cca125361cc58873c0efb7072013cb3317196ccdd7110e90d6bda 11013756 
scilab-data_5.2.2-6_all.deb
 d90a5f7886264a95c0c241aca9ec8901818c757afaa2646c5d95d854724fa0f0 9923602 
scilab-doc_5.2.2-6_all.deb
 293bfa61f785aca1a2aea75af3438923cebdbdbebe26ce47297c34470dfd008c 7915728 
scilab-doc-fr_5.2.2-6_all.deb
 c18cf8bbbf6d7b7d42dec0f7112a93226f214894cb2b73cbfba6432e503189aa 7393810 
scilab-doc-pt-br_5.2.2-6_all.deb
 ca01eecb08015293b6f21841f96a7858ed0a9ab58ed354714688f8ed000a793d 32194400 
scilab-test_5.2.2-6_all.deb
 9bc5057c5a4cf5968ace68b4122e7105fec4ff66083e0a3434a1506ee7a23937 90592 
scilab-include_5.2.2-6_i386.deb
 6b559a7317cdfef09ca76976ab5a8e06d81d19206547c57c88fd8330202e12d7 2488580 
scilab-minimal-bin_5.2.2-6_i386.deb
 35516c37e02d028ce6cf4049403aa5b1a19f94a26ffe12868f813366c7c08783 1386898 
scilab-full-bin_5.2.2-6_i386.deb
 f6646131a06752d377237400fcd262639076bf4401263f4cf11c867671fbe1e9 3149876 
scilab-minimal-bin-dbg_5.2.2-6_i386.deb
 2fbe46f0107141460f7ec7092e062cd477a462efb99460df34c44499d037df72 4652496 
scilab-full-bin-dbg_5.2.2-6_i386.deb
 4009740e3fdd9b295605676f174fc8df21d17babc9de65f5709908f241f57d79 54678 
libscilab-java_5.2.2-6_i386.deb
Files: 
 3e9d663cf8f54ed335763f8a795442d0 2119 math optional scilab_5.2.2-6.dsc
 2b7bb9caef5a032feae4cf1e676b9e23 38340 math optional scilab_5.2.2-6.diff.gz
 2f6284317b572f84d79f5f50cf7afb62 38286 math optional scilab-cli_5.2.2-6_all.deb
 5a15b2efa8068f94bf6db1a76283ef66 220084 math optional scilab_5.2.2-6_all.deb
 3bc110b6114b78f80da12a2247c59171 11013756 math optional 
scilab-data_5.2.2-6_all.deb
 0e40ad701f79a5c1094faceb129c1d65 9923602 doc optional 
scilab-doc_5.2.2-6_all.deb
 e22253b68caf1bd9a0d931349634889b 7915728 doc 

Accepted unac 1.8.0-4 (source amd64)

2010-09-18 Thread Loic Dachary
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 10:53:42 +0200
Source: unac
Binary: libunac1 libunac1-dev unaccent
Architecture: source amd64
Version: 1.8.0-4
Distribution: unstable
Urgency: low
Maintainer: Loic Dachary (OuoU) l...@debian.org
Changed-By: Loic Dachary l...@dachary.org
Description: 
 libunac1   - The unac programming library - runtime version
 libunac1-dev - A C programmer's library that removes accents from a string
 unaccent   - Replace accented letters by their unaccented equivalent
Changes: 
 unac (1.8.0-4) unstable; urgency=low
 .
   * replace libunac1-dev.files with libunac1-dev.install and
 libunac1.files with libunac1.install
Checksums-Sha1: 
 4d80ab7fe4278b9556ffdfc5f397d943727de406 1002 unac_1.8.0-4.dsc
 3c709f0db17636f25a37e66eb173e84c248dd967 302310 unac_1.8.0-4.diff.gz
 9c364f56d76fb29906f85e63ddc30a63c2f31ebb 25338 libunac1_1.8.0-4_amd64.deb
 978d284135a31a74a54b2acd27d7a69c1531deb9 16986 libunac1-dev_1.8.0-4_amd64.deb
 5a156604811633bb09ff7d2db7d7a3eeb338014d 8396 unaccent_1.8.0-4_amd64.deb
Checksums-Sha256: 
 4b5ee4bf19bbb2525e1f06468b427bc87ba12f3a7bf758a3bb30cd6fc5138c4a 1002 
unac_1.8.0-4.dsc
 ccabc19036f8b7a0d8f62c6f97ed695f4b4e87389e099f137aa21d2047a2728f 302310 
unac_1.8.0-4.diff.gz
 773bf4dc5b3ee3b9bcd65f7765c63d1dffa4af8be4e43c7835a837d7276c4560 25338 
libunac1_1.8.0-4_amd64.deb
 5eb0f8fc6c9c3c1b4e9e9aa3eba2d167ce33a5e34aac036672cdfdd54543ad18 16986 
libunac1-dev_1.8.0-4_amd64.deb
 8e59dce7b3a7563a47e2a81fca05041d20d75103439107370981456222758998 8396 
unaccent_1.8.0-4_amd64.deb
Files: 
 f75163437e03302b424e7457c04c33d8 1002 devel optional unac_1.8.0-4.dsc
 bbd07b36d12c8f92f74ce27e8d62184c 302310 devel optional unac_1.8.0-4.diff.gz
 6d2ba39de7817c5dd9c16e8dcd7c4dd0 25338 libs optional libunac1_1.8.0-4_amd64.deb
 5719672740b932fad756a2e9a1eda648 16986 libdevel optional 
libunac1-dev_1.8.0-4_amd64.deb
 bf55bac6755ecfdd759ad42e9d709457 8396 utils optional unaccent_1.8.0-4_amd64.deb

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

iEYEARECAAYFAkyUf/QACgkQ8dLMyEl6F22MiQCgniTKCpTqvRTapUsrgsxWXtbq
Y+AAn3m9dfho+uRb8Zyy8JxFDYVTI4EO
=CXbQ
-END PGP SIGNATURE-


Accepted:
libunac1-dev_1.8.0-4_amd64.deb
  to main/u/unac/libunac1-dev_1.8.0-4_amd64.deb
libunac1_1.8.0-4_amd64.deb
  to main/u/unac/libunac1_1.8.0-4_amd64.deb
unac_1.8.0-4.diff.gz
  to main/u/unac/unac_1.8.0-4.diff.gz
unac_1.8.0-4.dsc
  to main/u/unac/unac_1.8.0-4.dsc
unaccent_1.8.0-4_amd64.deb
  to main/u/unac/unaccent_1.8.0-4_amd64.deb


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



Accepted chromium-browser 6.0.472.62~r59676-1 (source all amd64)

2010-09-18 Thread Giuseppe Iuculano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 16:48:44 +0200
Source: chromium-browser
Binary: chromium-browser chromium-browser-dbg chromium-browser-l10n 
chromium-browser-inspector
Architecture: source all amd64
Version: 6.0.472.62~r59676-1
Distribution: unstable
Urgency: low
Maintainer: Debian Chromium Maintainers 
pkg-chromium-ma...@lists.alioth.debian.org
Changed-By: Giuseppe Iuculano iucul...@debian.org
Description: 
 chromium-browser - Chromium browser
 chromium-browser-dbg - chromium-browser debug symbols
 chromium-browser-inspector - page inspector for the chromium-browser
 chromium-browser-l10n - chromium-browser language packages
Changes: 
 chromium-browser (6.0.472.62~r59676-1) unstable; urgency=low
 .
   * New stable security microrelease:
 - [55114] High Bad cast with malformed SVG. Credit to wushi of team 509.
 - [55119] Critical Buffer mismanagement in the SPDY protocol. Credit to Ron
   Ten-Hove of Google.
 - [55350] High Cross-origin property pollution. Credit to Stefano Di Paola
   of MindedSecurity.
   * Add translations for the Name field in the desktop file, and fix
 some Comment / GenericName. Thanks to the Ubuntu translation team.
   * Build with PIE (Position Independent Executable)
Checksums-Sha1: 
 968fb8d39c1327faa61bd7f3a97a147e877a9903 2323 
chromium-browser_6.0.472.62~r59676-1.dsc
 dfb00b9b95daa24462353a1fd4c83e0c92d53bf9 188808606 
chromium-browser_6.0.472.62~r59676.orig.tar.bz2
 e910417344b2d72dd5c6bf5c1730eda795f77c07 219752 
chromium-browser_6.0.472.62~r59676-1.debian.tar.gz
 d5ff2277c6a730c3a5456b7a2d4a09f7f99b08b8 2055446 
chromium-browser-l10n_6.0.472.62~r59676-1_all.deb
 cc52523b2d60c242c03c5b1a292c2f2e4c1dad27 882960 
chromium-browser-inspector_6.0.472.62~r59676-1_all.deb
 4fbbb5e04cc3cc2bf8118b8c5c6aeb97c02a1064 14351964 
chromium-browser_6.0.472.62~r59676-1_amd64.deb
 58e143a2a0ecb34abbad554fe031369127433464 173821440 
chromium-browser-dbg_6.0.472.62~r59676-1_amd64.deb
Checksums-Sha256: 
 7c3060152c592417abec8e0921b601564f5cfbb488ead076fcac35cc040928d0 2323 
chromium-browser_6.0.472.62~r59676-1.dsc
 6e37f2159d054b51331df7367cb7d5d15bfcabdbf9c30b013450a369a5262668 188808606 
chromium-browser_6.0.472.62~r59676.orig.tar.bz2
 3495d55ec590ce3b8ed09e5157c9855c8ebcd26b97ea4782d167a0d0a94dfb05 219752 
chromium-browser_6.0.472.62~r59676-1.debian.tar.gz
 382da5149631451daa8a03842f84c995cf0a9b59b0322ec8b85abd587e9683c3 2055446 
chromium-browser-l10n_6.0.472.62~r59676-1_all.deb
 d71d0d52ae1ee95486dfd2080235312a2deed2bd992a180f64fe1b8bdd5ab45b 882960 
chromium-browser-inspector_6.0.472.62~r59676-1_all.deb
 592ea6a42652ae0529f2414cb55db48442127d891a5fd105a7403c00ffaf86a7 14351964 
chromium-browser_6.0.472.62~r59676-1_amd64.deb
 4cc86ee736b9526063200f09614c87b5d79caf057fe029475c054c0cb1d8c538 173821440 
chromium-browser-dbg_6.0.472.62~r59676-1_amd64.deb
Files: 
 083354352d549267cd64b8d0e8bb37be 2323 web optional 
chromium-browser_6.0.472.62~r59676-1.dsc
 342b3cc9164fd62dea9310074212082c 188808606 web optional 
chromium-browser_6.0.472.62~r59676.orig.tar.bz2
 881943b3f7d2ec573ee2ea68601b892f 219752 web optional 
chromium-browser_6.0.472.62~r59676-1.debian.tar.gz
 19fb97ef42a903b48aed3cdd07a0cd36 2055446 web optional 
chromium-browser-l10n_6.0.472.62~r59676-1_all.deb
 2ef1da0618b506e5a6003e66d9bf72df 882960 web optional 
chromium-browser-inspector_6.0.472.62~r59676-1_all.deb
 1362bd2531e764d0bdfc874d56961204 14351964 web optional 
chromium-browser_6.0.472.62~r59676-1_amd64.deb
 21cc706461cc1dcc39944ff08218e6ca 173821440 debug extra 
chromium-browser-dbg_6.0.472.62~r59676-1_amd64.deb

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

iEYEARECAAYFAkyU6XgACgkQNxpp46476aouAQCfSCY9M0RHZ1nnl7RT8CU4NMZ7
jxkAoIBtDAmwiPghAXTi3YXTaAyzYKZF
=k4p+
-END PGP SIGNATURE-


Accepted:
chromium-browser-dbg_6.0.472.62~r59676-1_amd64.deb
  to main/c/chromium-browser/chromium-browser-dbg_6.0.472.62~r59676-1_amd64.deb
chromium-browser-inspector_6.0.472.62~r59676-1_all.deb
  to 
main/c/chromium-browser/chromium-browser-inspector_6.0.472.62~r59676-1_all.deb
chromium-browser-l10n_6.0.472.62~r59676-1_all.deb
  to main/c/chromium-browser/chromium-browser-l10n_6.0.472.62~r59676-1_all.deb
chromium-browser_6.0.472.62~r59676-1.debian.tar.gz
  to main/c/chromium-browser/chromium-browser_6.0.472.62~r59676-1.debian.tar.gz
chromium-browser_6.0.472.62~r59676-1.dsc
  to main/c/chromium-browser/chromium-browser_6.0.472.62~r59676-1.dsc
chromium-browser_6.0.472.62~r59676-1_amd64.deb
  to main/c/chromium-browser/chromium-browser_6.0.472.62~r59676-1_amd64.deb
chromium-browser_6.0.472.62~r59676.orig.tar.bz2
  to main/c/chromium-browser/chromium-browser_6.0.472.62~r59676.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/e1ox1yi-0005sx...@franck.debian.org



Accepted extrema 4.4.5.dfsg-1 (source i386 all)

2010-09-18 Thread Christine Spang
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 18 Sep 2010 10:23:20 -0400
Source: extrema
Binary: extrema extrema-doc
Architecture: source i386 all
Version: 4.4.5.dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Christine Spang christ...@debian.org
Changed-By: Christine Spang christ...@debian.org
Description: 
 extrema- powerful visualization and data analysis tool
 extrema-doc - Documentation for extrema
Changes: 
 extrema (4.4.5.dfsg-1) unstable; urgency=low
 .
   * New upstream release.
- The contour plot feature has been completely rewritten. It now produces
  plots corresponding to the interactive help documentation (which was also
  updated).
- A graph legend should no longer disappear on a hardcopy or a window
  resize after setting LEGENDON false or using the DEFAULTS command.
   * Bump to Standards-Version 3.9.1.
   * Add symlink from /usr/share/doc/extrema/changelog.gz to upstream
 changelog (shipped as ChangeLog.gz). Thanks, lintian!
Checksums-Sha1: 
 31cf442ed8e7a735e9b3be5e1154afb4fe1e3a3f 1864 extrema_4.4.5.dfsg-1.dsc
 08456a8871ba83911ddb8cba12a364a301628fa9 6446325 extrema_4.4.5.dfsg.orig.tar.gz
 666d15e379dc7d68c3dd6c84d685406b94ce9028 6890 
extrema_4.4.5.dfsg-1.debian.tar.gz
 438e6da99894d069c82db4d24abce626226268e3 3396974 extrema_4.4.5.dfsg-1_i386.deb
 cb6687e7383c898e426e3a0f53e44f53acb7530b 3463758 
extrema-doc_4.4.5.dfsg-1_all.deb
Checksums-Sha256: 
 9147f295c1c3530a9177ca32e5f03f7bcb067e80b8d02f2cb0b1c6a4c00d7abf 1864 
extrema_4.4.5.dfsg-1.dsc
 d1d58144541a4b0a96494dea22eb6cb527560879c269f95cbc28914e03ee4db4 6446325 
extrema_4.4.5.dfsg.orig.tar.gz
 1de7aa5fcff90e5c56cbed75541c28883ba40437ca4cbb9b082ec4f470b03276 6890 
extrema_4.4.5.dfsg-1.debian.tar.gz
 aa8e9b82e447b4befc46b16ca45cad754954f4ea9c5e02d8125ffab3a188fe85 3396974 
extrema_4.4.5.dfsg-1_i386.deb
 7e2f0cc9150b9fef100012636dbaeee6735d7709c8129ad40d96912e8ba7e4db 3463758 
extrema-doc_4.4.5.dfsg-1_all.deb
Files: 
 74873fda005950eefc8d740d1515944e 1864 science optional extrema_4.4.5.dfsg-1.dsc
 70f2ee10eee47d13adc2fab7d44a617e 6446325 science optional 
extrema_4.4.5.dfsg.orig.tar.gz
 4015bc1731ece093583fbd257edca4e4 6890 science optional 
extrema_4.4.5.dfsg-1.debian.tar.gz
 b7c2ca7254d29b47a52205cb10205edc 3396974 science optional 
extrema_4.4.5.dfsg-1_i386.deb
 13dfb86ec15abb35d47b3846f9fcbf00 3463758 doc optional 
extrema-doc_4.4.5.dfsg-1_all.deb

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

iQIcBAEBCAAGBQJMlN9UAAoJEGSVn+mDjfGcG6cP/1+eb5o5Frb8ZgwLPCvL6AkS
WcXQbgQyElPKCNhOCr+zS6cPZlHveNKq36SKe2RUhHx46TrIHUu1MStJcWnBuLbA
2+zuNiSaAEbEGPYQu9yE1w3X0G2g44tJ55Z8D9IU66mifJtYZ6GHUExFhRKrxRqF
GeKtiPI6mLRx3dprh6zPoxS/ZnU1tXeluk+LLSFysmVj+QDSxVVK5HUS4beOC//x
64W7+B/WqqDXnvqXaSqE+LaKfCev799obzu8rbk/VKTTuFqSOjFgKJZSFegP5oiW
SGbb8vVFUYgxWBIJXjgzSeJWR+tmrsDdXAt8e43+PmaXGwCMS3KWH/HcJ6ofKHXE
4G3ST9Iilud+fH57eJL/xzXMcyRKwN6EpG6DkPkP22FEnP92QOHSz4493ei8BUvk
RBzIxyQNBM0BIFGGo6rX4BgPqnk/LGnL46almIUPtTAwZ3O5+g+vCmyugeyiKMys
Wp3uN+Yx4icyqZ074QiJaxm99M17HSIkLrk6bzKZysGFgrfNLOhvR49MnxvI3ORu
9Z59kw8otv0fMMB/W3Xyk7enmEcjw3Q4xpz8w/M30nLA9Dboi/1nXYStUIHOfmHv
jgy8hkn9g9VGxi/JuOmK5rZ2Pnb73QY4BfNdLiNO7wbA06PTqq6T3150wTFhzOwl
PlZHLD97urNx1z390V+/
=p5jE
-END PGP SIGNATURE-


Accepted:
extrema-doc_4.4.5.dfsg-1_all.deb
  to main/e/extrema/extrema-doc_4.4.5.dfsg-1_all.deb
extrema_4.4.5.dfsg-1.debian.tar.gz
  to main/e/extrema/extrema_4.4.5.dfsg-1.debian.tar.gz
extrema_4.4.5.dfsg-1.dsc
  to main/e/extrema/extrema_4.4.5.dfsg-1.dsc
extrema_4.4.5.dfsg-1_i386.deb
  to main/e/extrema/extrema_4.4.5.dfsg-1_i386.deb
extrema_4.4.5.dfsg.orig.tar.gz
  to main/e/extrema/extrema_4.4.5.dfsg.orig.tar.gz


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



Accepted ffmpeg 4:0.5.2-5 (source i386 all)

2010-09-18 Thread Reinhard Tartler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 13 Sep 2010 15:29:49 +0200
Source: ffmpeg
Binary: ffmpeg ffmpeg-dbg ffmpeg-doc libavutil49 libavcodec52 libavdevice52 
libavformat52 libavfilter0 libpostproc51 libswscale0 libavutil-dev 
libavcodec-dev libavdevice-dev libavformat-dev libavfilter-dev libpostproc-dev 
libswscale-dev
Architecture: source i386 all
Version: 4:0.5.2-5
Distribution: unstable
Urgency: low
Maintainer: Debian multimedia packages maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Reinhard Tartler siret...@tauware.de
Description: 
 ffmpeg - multimedia player, server and encoder
 ffmpeg-dbg - Debug symbols for ffmpeg related packages
 ffmpeg-doc - documentation of the ffmpeg API
 libavcodec-dev - development files for libavcodec
 libavcodec52 - ffmpeg codec library
 libavdevice-dev - development files for libavdevice
 libavdevice52 - ffmpeg device handling library
 libavfilter-dev - development files for libavfilter
 libavfilter0 - ffmpeg video filtering library
 libavformat-dev - development files for libavformat
 libavformat52 - ffmpeg file format library
 libavutil-dev - development files for libavutil
 libavutil49 - ffmpeg utility library
 libpostproc-dev - development files for libpostproc
 libpostproc51 - ffmpeg video postprocessing library
 libswscale-dev - development files for libswscale
 libswscale0 - ffmpeg video scaling library
Closes: 596342
Changes: 
 ffmpeg (4:0.5.2-5) unstable; urgency=low
 .
   [ Dominic Evans ]
   * add libxfixes-dev to build-depends to unbreak x11grab input,
 Closes: #596342, LP: #631103
 .
   [ Reinhard Tartler ]
   * fix x11grab example in e.g. the manpage so that they actually work
Checksums-Sha1: 
 9d75d3d814a3cb677a29d327df71011289877dfc 2360 ffmpeg_0.5.2-5.dsc
 308c3ab4c0d9ab94abe8ed99e3ecb9d26beda672 58302 ffmpeg_0.5.2-5.diff.gz
 3a0d7e157b953275dc49333df65ba7f6c1e4121c 233904 ffmpeg_0.5.2-5_i386.deb
 f84c542eef647fcc138faea6dedeacb1190805a3 9434542 ffmpeg-dbg_0.5.2-5_i386.deb
 a6b2f049e0ba00539f2855cb008afe8cf2cdf7cc 13960876 ffmpeg-doc_0.5.2-5_all.deb
 e5225a50cdb47897995cdbfcb0cc0164d24bcbec 90320 libavutil49_0.5.2-5_i386.deb
 1caf27a6cede94af3ae797efd95611b4929c4840 4001436 libavcodec52_0.5.2-5_i386.deb
 5cb5f934a3f4b389eddfc8f0da98ec5defd97796 70690 libavdevice52_0.5.2-5_i386.deb
 01c260863924c0b37fc941a92105f7eb9d36ff0f 708878 libavformat52_0.5.2-5_i386.deb
 1e018b53e9b0a82c4fe813a1cabeba2db6309dc5 46552 libavfilter0_0.5.2-5_i386.deb
 77da878261eba077f25dac4650f7435da43fd779 189464 libpostproc51_0.5.2-5_i386.deb
 2e446957e53143a8e7e036a33c949c259f219b26 226980 libswscale0_0.5.2-5_i386.deb
 beab9e2fbe43c76bdcaa19f9ea842e73ac41f2e8 77282 libavutil-dev_0.5.2-5_i386.deb
 c0f5ee87554ed2849a1a36f9af6c51d87bc41d75 2244258 
libavcodec-dev_0.5.2-5_i386.deb
 e99e714ebc15515b929763cdd46bed9fea701f55 55442 libavdevice-dev_0.5.2-5_i386.deb
 c7b0ebc2ded79254f9ac90a45c84c1ce6189b839 447746 
libavformat-dev_0.5.2-5_i386.deb
 6a34132a7c24c43e6508687bdbaee13d13a33dfd 51640 libavfilter-dev_0.5.2-5_i386.deb
 25e30f09ec9165d8734d6c3c1e0ec60728a646dc 113894 
libpostproc-dev_0.5.2-5_i386.deb
 2d175ab19d859cd14e5b2f7a6b945eb043b42b33 139156 libswscale-dev_0.5.2-5_i386.deb
Checksums-Sha256: 
 bf3acfbc4c09f9f4292ebe2dcbca68ecb62b1ff94d0b3f645dcfc338da8691ba 2360 
ffmpeg_0.5.2-5.dsc
 e3d5a556661b731accb5e15e1828f9db4c54f60ca95af47ba5fa5aefb69774ab 58302 
ffmpeg_0.5.2-5.diff.gz
 9216f98beac8939238a0b2eeccb9637213eba18dcfc80890bcb8dbf397781676 233904 
ffmpeg_0.5.2-5_i386.deb
 2fa976d712c36a9da0751ac4adcf113eda1ec1f621fffcc0d20bdab51345b9cb 9434542 
ffmpeg-dbg_0.5.2-5_i386.deb
 09cd517d57e5aa304366fca600792ca71573ab7cf81cfcc9fe3418b86a9acaf2 13960876 
ffmpeg-doc_0.5.2-5_all.deb
 27f50940e6766aae840a538215a2add92024ac458ccb83279caabf9db81d896f 90320 
libavutil49_0.5.2-5_i386.deb
 ee2631865e9156964a07e61b1f05c1ec89e447015ee37d24b575c8959fb80042 4001436 
libavcodec52_0.5.2-5_i386.deb
 eec0ffc0b34256a78b68967f0571b0772f80887a92e9795ac4931b0c3454fef1 70690 
libavdevice52_0.5.2-5_i386.deb
 87f15063eca0c3459feac11aa890f19627cffbe75d195762eafd09fba7df9a2e 708878 
libavformat52_0.5.2-5_i386.deb
 e65915446ced8ea8a1919328acd588bb53acd2b4a4cd0339db0d0345021c13cb 46552 
libavfilter0_0.5.2-5_i386.deb
 f500fe3ea2f47f8d1624b5622180ab62859d368faed37af166d08f3005da7657 189464 
libpostproc51_0.5.2-5_i386.deb
 3c942a0160321abb9734fbfa373404f3d3ee74b0efe72e2f64f16ca0c2cec571 226980 
libswscale0_0.5.2-5_i386.deb
 ba0f6329256c9b73ca463acd4855e4a5e9b4ae759ac688e36ae4e163c2e41865 77282 
libavutil-dev_0.5.2-5_i386.deb
 473d5e8c0edb820176e306fab6a0e30419248becfe503d3857a84b9236892bd4 2244258 
libavcodec-dev_0.5.2-5_i386.deb
 802f417c34530dbfb9f5a058f47bffc24f051933b49ffaac6faf586b3d6c9a6e 55442 
libavdevice-dev_0.5.2-5_i386.deb
 0801709eae78319bdf96f6be6153383c697c3c00640dc15a6f3eb128e8fc6331 447746 
libavformat-dev_0.5.2-5_i386.deb
 46a9b38e1c255217a60cc4f3405db92fb58e006df5d50eedfd007605c356f374 51640 
libavfilter-dev_0.5.2-5_i386.deb
 

Accepted gcc-snapshot 20100918-1 (source amd64)

2010-09-18 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 14:29:49 +0200
Source: gcc-snapshot
Binary: gcc-snapshot
Architecture: source amd64
Version: 20100918-1
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 gcc-snapshot - A SNAPSHOT of the GNU Compiler Collection
Changes: 
 gcc-snapshot (20100918-1) unstable; urgency=low
 .
   * Update to SVN 20100918 from the trunk.
Checksums-Sha1: 
 a68948ee6ab821fe6b0a6e3a2b38fc3a0ae0da34 2777 gcc-snapshot_20100918-1.dsc
 c5ddccd96b2280b54182a72a510879bf7f62df72 51936416 
gcc-snapshot_20100918.orig.tar.gz
 0fca4aca9e761cc4bba5c07352f3ac9dea119830 390740 gcc-snapshot_20100918-1.diff.gz
 8887ed1f3b7577f4a4d89639378ddcf625462117 73823856 
gcc-snapshot_20100918-1_amd64.deb
Checksums-Sha256: 
 6b94cced3006d3271fe235046bf9718e3de7a8c3004e230631af9263db35a39a 2777 
gcc-snapshot_20100918-1.dsc
 ab5621f902987fc8b6d7c67b18b32b637be79a1752c74de7df5036943b4373ee 51936416 
gcc-snapshot_20100918.orig.tar.gz
 fb945d8ef7c5c9c814abe8b7e2d4c9b18b741974447b54feccea98b6063c3b8f 390740 
gcc-snapshot_20100918-1.diff.gz
 9b6e956a454d36969ef44c7ec4f2d16788ec2ee458f367115861322e2a4bc3ca 73823856 
gcc-snapshot_20100918-1_amd64.deb
Files: 
 f0ff1d9c554e79336f988efb7ff5f110 2777 devel optional 
gcc-snapshot_20100918-1.dsc
 7c2870f6d5670a48fd8f261ab3f408f5 51936416 devel optional 
gcc-snapshot_20100918.orig.tar.gz
 b6de07e297743af5157ac4d51d83229f 390740 devel optional 
gcc-snapshot_20100918-1.diff.gz
 512a48e5795be861eecfd69262bb0813 73823856 devel extra 
gcc-snapshot_20100918-1_amd64.deb

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

iEYEARECAAYFAkyU8WsACgkQStlRaw+TLJyJhACglrbThhpq6LWfpj2GIPB6O+2+
l/8An0Ve2X/ClcfDqc5+fvG0cU79tWmA
=2auW
-END PGP SIGNATURE-


Accepted:
gcc-snapshot_20100918-1.diff.gz
  to main/g/gcc-snapshot/gcc-snapshot_20100918-1.diff.gz
gcc-snapshot_20100918-1.dsc
  to main/g/gcc-snapshot/gcc-snapshot_20100918-1.dsc
gcc-snapshot_20100918-1_amd64.deb
  to main/g/gcc-snapshot/gcc-snapshot_20100918-1_amd64.deb
gcc-snapshot_20100918.orig.tar.gz
  to main/g/gcc-snapshot/gcc-snapshot_20100918.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/e1ox1zy-0006ge...@franck.debian.org



Accepted libpam-mklocaluser 0.6 (source all)

2010-09-18 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 16:55:27 +0200
Source: libpam-mklocaluser
Binary: libpam-mklocaluser
Architecture: source all
Version: 0.6
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description: 
 libpam-mklocaluser - Configure PAM to create a local user if it do not exist 
already
Closes: 597174 597241
Changes: 
 libpam-mklocaluser (0.6) unstable; urgency=low
 .
   * Make module more robust.  Move group lookup into the code path
 where it is used, to avoid failing if the group is missing when
 the user is already available locally (Closes: #597174).
   * Add code to handle missing primary group information when creating
 the local user.
   * Change module to only run /usr/sbin/nscd if it exist (Closes: #597241).
   * Update standards-version from 3.8.4 to 3.9.1.  No changes needed.
Checksums-Sha1: 
 bae8183032682e526b9682742fa8576bdb6983d2 1056 libpam-mklocaluser_0.6.dsc
 52d2bb5b4001828b70fe5546f1fb0b9b8d48c3c3 4813 libpam-mklocaluser_0.6.tar.gz
 4773fa386d73230f26efeb5ab93642d52d1d1b41 5360 libpam-mklocaluser_0.6_all.deb
Checksums-Sha256: 
 ff425eebbab081c583a5417b180aa80bea2e3ed1c6fd3b5d71742e28e80a57f1 1056 
libpam-mklocaluser_0.6.dsc
 0314bf93680afd41b8424479ccef5d1615f09ec3795df3e8e8cab398d8ed313b 4813 
libpam-mklocaluser_0.6.tar.gz
 3cd62a602c9fa74d9b65adaefd92ca0a29b4a28e2f1d3c29a1195987bca5aad5 5360 
libpam-mklocaluser_0.6_all.deb
Files: 
 27acab4a4974d96fb76b5fc62cad86a0 1056 misc optional libpam-mklocaluser_0.6.dsc
 156bb67f6090f847a6b1c25a95afa7bb 4813 misc optional 
libpam-mklocaluser_0.6.tar.gz
 6f538309d465f82ce5e415fff80e626c 5360 misc optional 
libpam-mklocaluser_0.6_all.deb

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

iD8DBQFMlNMn20zMSyow1ykRAl2PAKDGbgtwfCQtnCr60Mobljdb7Fn5ZQCcDOj5
+URjsULslFYs0NVIbLxPgFQ=
=dEna
-END PGP SIGNATURE-


Accepted:
libpam-mklocaluser_0.6.dsc
  to main/libp/libpam-mklocaluser/libpam-mklocaluser_0.6.dsc
libpam-mklocaluser_0.6.tar.gz
  to main/libp/libpam-mklocaluser/libpam-mklocaluser_0.6.tar.gz
libpam-mklocaluser_0.6_all.deb
  to main/libp/libpam-mklocaluser/libpam-mklocaluser_0.6_all.deb


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



Accepted luakit 2010.08.30-2 (source amd64)

2010-09-18 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 18 Sep 2010 10:39:05 -0400
Source: luakit
Binary: luakit
Architecture: source amd64
Version: 2010.08.30-2
Distribution: unstable
Urgency: low
Maintainer: Clint Adams sch...@debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 luakit - A fast and small web browser extensible by Lua
Closes: 595289 596653
Changes: 
 luakit (2010.08.30-2) unstable; urgency=low
 .
   * Patch from Kumar Appaiah to add AppleWebKit and Webkit-build
 specific version to user agent string, thereby encouraging
 websites like Flickr and Google Maps to behave in a more
 effective manner.  closes: #596653, #595289.
Checksums-Sha1: 
 484b02d3352308ba81c636c2fc12ab614d060d3f 1852 luakit_2010.08.30-2.dsc
 89377cc561258020e4a9de2dd8f33fbeaceb219f 4776 luakit_2010.08.30-2.debian.tar.gz
 1bfb17ac375a64d391873754e4b37bd6a8494e2a 66120 luakit_2010.08.30-2_amd64.deb
Checksums-Sha256: 
 71be9a84e220bd549ed58b766b3be9d618d85739e43fcf1cd476c5e2ffbca993 1852 
luakit_2010.08.30-2.dsc
 2ea165c43bf2341b5665dcc66ad59a715f16e903f63189a2cc9cd266c6ff2bbb 4776 
luakit_2010.08.30-2.debian.tar.gz
 2815db4808312911c12a76ce94d9066e89943c952eec365931a6f091ea839784 66120 
luakit_2010.08.30-2_amd64.deb
Files: 
 43bbc3aaeb7ec92130a497e11767ba18 1852 web optional luakit_2010.08.30-2.dsc
 b944a7b75690460733e31fde561accbc 4776 web optional 
luakit_2010.08.30-2.debian.tar.gz
 ce11a940316b0165c38b2bc2de427122 66120 web optional 
luakit_2010.08.30-2_amd64.deb

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

iQIcBAEBCgAGBQJMlNBJAAoJEFWSMx4ZnTioQN0P/R9MZsNXgDSSupNNrIKeuyK+
ueKbrr4sr4aam40HtvfaWLblHIIBKbUCtmCx6uOHqCHGNbSRTqbiuDqEevjVNfc9
NwwE/VSPizWDyzxPRcu8MGvgANBXsKuGLlUEPSpoMOfabK0ELZmSqYkIg3MdiM1W
V4L9yHgDUGDCC9PUoHdbmvrgAoskUhZTYF0EWeJlPUwQU3wXF2nWSNz5Atn2C06Y
nJ8gsNXQ/H4uzcB5r47NQvwVSrSxBg+jYg0ErIyltfsSzMY+/5QyBxS+/Ykf8pdw
/ssT6VDXRjIs0iQba+lqvo/NEYUxagHLOCd6+Ac4N/d+rdc73FXxs7HwTRvVTy0f
Bi+T9v9rb1j8+HTK4c8FhqoGO4BG1D/op722HvGSqijzgAhLKeClHqeW70uPL+vw
F3+chrxvBO7P4wodnw98+b1xE/jtdGgBmustpSjQFl1fkSIbEe90wfCl0A1RE5xD
lbkhoHBWrtlZvCjcXEbWnlpsWa4HAVyXGovHw3TJOyrMzXoG82otAgZ34AAAH/8N
cGhE6KNvFSlO/xiVfZxZuIpElAMHA1l+JFnQgizJvj9TNtIOfjjnir7DCdWzarSC
fZkO/TEkXyY+ImLMQYBoG9PdSKUKbHowBrVYzDT5tZy4I8C+vgrfUiURFDwodplk
pQJulavGCmV/miOKNNgA
=gDuY
-END PGP SIGNATURE-


Accepted:
luakit_2010.08.30-2.debian.tar.gz
  to main/l/luakit/luakit_2010.08.30-2.debian.tar.gz
luakit_2010.08.30-2.dsc
  to main/l/luakit/luakit_2010.08.30-2.dsc
luakit_2010.08.30-2_amd64.deb
  to main/l/luakit/luakit_2010.08.30-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/e1ox1bv-0006zs...@franck.debian.org



Accepted mixxx 1.8.0~rc-dfsg-1 (source all amd64)

2010-09-18 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 17:15:53 +0200
Source: mixxx
Binary: mixxx mixxx-data
Architecture: source amd64 all
Version: 1.8.0~rc-dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 mixxx  - Digital Disc Jockey Interface
 mixxx-data - Digital Disc Jockey Interface -- data files
Closes: 576544
Changes: 
 mixxx (1.8.0~rc-dfsg-1) experimental; urgency=low
 .
   * New upstream release.
   * Set Maintainer to Debian Multimedia Maintainers team, update Uploaders
 field; ACKed by Free Ekanayaka.
   * Add Vcs fields.
   * Add myself to the Uploaders field.
   * Switch to format 3.0 (quilt).
   * Refresh patches and tag them as per DEP-3.
   * Add 30-disable_soundsourcem4a.patch patch to disable soundsourcem4a plugin.
   * Add patch to fix desktop file as per spec.
   * Build-Depends on libportmidi-dev.
   * Depends on libqt4-sql-sqlite.
   * Add debian/source/local-options file.
   * Remove desktop file, already provided by upstream.
   * Rename icon file:
 - 16x16 XPM icon is unnecessary.
 - Update install and dirs file properly.
   * Update debian/menu properly.
   * Fix binary-control-field-duplicates-source field section lintian
 warning.
   * Update debian/watch file.
   * Install the manual in /usr/share/mixxx-data/.
   * Install doc-base registration file.
   * Update the link to the manual (Closes: #576544).
   * Add configuration file for git-buildpackage.
   * Add .gitignore file.
   * Update homepage field.
   * Bump Standards.
   * Clean-up.
Checksums-Sha1: 
 7bda44096545868b2a2e8fe3f8e5d210b43c1a70 1633 mixxx_1.8.0~rc-dfsg-1.dsc
 73e27b7fa1d12cd9e913ec190216ffe875dc3c4d 6353863 
mixxx_1.8.0~rc-dfsg.orig.tar.bz2
 adabe57f4dba603bd3fe721913e4db100da8b561 9410 
mixxx_1.8.0~rc-dfsg-1.debian.tar.gz
 0fb4f9ecfe593afff8a302902a3ab38c96058c69 2119346 
mixxx_1.8.0~rc-dfsg-1_amd64.deb
 19e3c516b51f9df3ae20a7c07273446ce73203c5 2352812 
mixxx-data_1.8.0~rc-dfsg-1_all.deb
Checksums-Sha256: 
 909e989932455becb18b579459aae8853fa2529002952a76493c5b9306e15e65 1633 
mixxx_1.8.0~rc-dfsg-1.dsc
 019dd30c751e5c50a0245445054610830c7982e44252740b2954b8fabd5a4cb7 6353863 
mixxx_1.8.0~rc-dfsg.orig.tar.bz2
 51cd22dd84cee9dd5ce616d1d28f9d21b710d16111f5d61fc7432e7575d649d1 9410 
mixxx_1.8.0~rc-dfsg-1.debian.tar.gz
 aa8b8d73832942b96164e66230169d9ac033607246e4eef8cfcac7a963a15f54 2119346 
mixxx_1.8.0~rc-dfsg-1_amd64.deb
 b2feb30aa56ef137d654ce9b285122fe1ec80c6e25853b884b205dfcdd98420a 2352812 
mixxx-data_1.8.0~rc-dfsg-1_all.deb
Files: 
 7e9855be69fa7e38a8d7932b88ebe17f 1633 sound optional mixxx_1.8.0~rc-dfsg-1.dsc
 e2a1a87e03bd71620bb68431f689e2fa 6353863 sound optional 
mixxx_1.8.0~rc-dfsg.orig.tar.bz2
 60259ea13e589eda04f5111000cb653f 9410 sound optional 
mixxx_1.8.0~rc-dfsg-1.debian.tar.gz
 6135ef2ad6ecae573d6f8304b39fbf69 2119346 sound optional 
mixxx_1.8.0~rc-dfsg-1_amd64.deb
 718e13e3981d3f6eeb3e7f32f2dfc235 2352812 sound optional 
mixxx-data_1.8.0~rc-dfsg-1_all.deb

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

iEYEARECAAYFAkyU3E8ACgkQRdSMfNz8P9DRiACdHS+Dy8t40KPxgmY7UicTLO3u
/sUAmQHVurg/vOy9HXBE3sC8HOvPVbn8
=HMVD
-END PGP SIGNATURE-


Accepted:
mixxx-data_1.8.0~rc-dfsg-1_all.deb
  to main/m/mixxx/mixxx-data_1.8.0~rc-dfsg-1_all.deb
mixxx_1.8.0~rc-dfsg-1.debian.tar.gz
  to main/m/mixxx/mixxx_1.8.0~rc-dfsg-1.debian.tar.gz
mixxx_1.8.0~rc-dfsg-1.dsc
  to main/m/mixxx/mixxx_1.8.0~rc-dfsg-1.dsc
mixxx_1.8.0~rc-dfsg-1_amd64.deb
  to main/m/mixxx/mixxx_1.8.0~rc-dfsg-1_amd64.deb
mixxx_1.8.0~rc-dfsg.orig.tar.bz2
  to main/m/mixxx/mixxx_1.8.0~rc-dfsg.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/e1ox1ch-00073k...@franck.debian.org



Accepted mock 1.0.8-2 (source all)

2010-09-18 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 19:30:05 +0200
Source: mock
Binary: mock
Architecture: source all
Version: 1.0.8-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Sandro Tosi mo...@debian.org
Description: 
 mock   - Build rpm packages inside a chroot
Closes: 597164
Changes: 
 mock (1.0.8-2) unstable; urgency=low
 .
   * QA upload.
   * Makefile.in
 - hardcode the path to the mock directory, needed to properly load (at 
least
   it's how mock is designed) the plugins; Closes: #597164
Checksums-Sha1: 
 97f959887ce0b85e1af4ade96366fb03788d06e4 1182 mock_1.0.8-2.dsc
 b5b1db02c11e284f3f639ae74e703c37ac64d104 9575 mock_1.0.8-2.debian.tar.gz
 88c7dbec23ca85f30048c9957503a4f9a6e0bd59 87134 mock_1.0.8-2_all.deb
Checksums-Sha256: 
 b2c65e9a0801f7dab3b1cc41e64cdeb2c871785158bc57661d2c439735ae70ad 1182 
mock_1.0.8-2.dsc
 dcc949551d72182f4b34f712bcce5f9dc29b741ca10acfb4546c62323cb2a9e0 9575 
mock_1.0.8-2.debian.tar.gz
 830990baec60ac2071386c5126cf9f9027cac64766a64408d9c05a8c34b527e8 87134 
mock_1.0.8-2_all.deb
Files: 
 a512ccf1354f6ea13711c0318debd8b4 1182 devel optional mock_1.0.8-2.dsc
 ce30bff745ec9b3a729fb751e1624d48 9575 devel optional mock_1.0.8-2.debian.tar.gz
 1a05941c1f0259e031e361915b6e5916 87134 devel optional mock_1.0.8-2_all.deb

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

iEYEARECAAYFAkyU+LMACgkQAukwV0RN2VA4cQCfUQpTDe0L6tld5uTIS6CfOLGx
CuMAninUMJlfz3E56JITOeTlO537PAiV
=CyON
-END PGP SIGNATURE-


Accepted:
mock_1.0.8-2.debian.tar.gz
  to main/m/mock/mock_1.0.8-2.debian.tar.gz
mock_1.0.8-2.dsc
  to main/m/mock/mock_1.0.8-2.dsc
mock_1.0.8-2_all.deb
  to main/m/mock/mock_1.0.8-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/e1ox1co-00075q...@franck.debian.org



Accepted postgresql-plsh 1.3-3.1 (source amd64)

2010-09-18 Thread Martijn van Brummelen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Sep 2010 11:39:38 +0200
Source: postgresql-plsh
Binary: postgresql-8.4-plsh
Architecture: source amd64
Version: 1.3-3.1
Distribution: unstable
Urgency: low
Maintainer: Filipe Lautert fil...@debian.org
Changed-By: Martijn van Brummelen mart...@brumit.nl
Description: 
 postgresql-8.4-plsh - PL/sh procedural language for PostgreSQL 8.4
Closes: 593999
Changes: 
 postgresql-plsh (1.3-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Modified rules file thanks to Jakub Wilk/Alexander Reichle-Schmehl
 (Closes: #593999).
Checksums-Sha1: 
 68e6e69531f544b8f0e9b7c78416a365f36bdab2 1267 postgresql-plsh_1.3-3.1.dsc
 b8f6c67e52422434f8ed24ce7c5a47387d69223e 3513 postgresql-plsh_1.3-3.1.diff.gz
 00cf9a385bfe07494733606a19e1ff6e97456a05 10428 
postgresql-8.4-plsh_1.3-3.1_amd64.deb
Checksums-Sha256: 
 70e7e4d74ae163b2778881ef07aaea48586eb8f31e90e4aa7cfda418d04c987c 1267 
postgresql-plsh_1.3-3.1.dsc
 0552d4dec5a1fe4d98ca72249916973cd83692baa8cade3c5074636180768da6 3513 
postgresql-plsh_1.3-3.1.diff.gz
 f052b3656960b93a331e6fb4c63f8a5045571c5507cb6ff95d98994f0d072fc5 10428 
postgresql-8.4-plsh_1.3-3.1_amd64.deb
Files: 
 c43107ab05b458dc3542fe863860d308 1267 misc optional postgresql-plsh_1.3-3.1.dsc
 402b3f1bfd31d6b2365198f793a82ea9 3513 misc optional 
postgresql-plsh_1.3-3.1.diff.gz
 5ef1b9b532d9f512630727c1e1b90198 10428 misc optional 
postgresql-8.4-plsh_1.3-3.1_amd64.deb

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

iEYEARECAAYFAkySJ8QACgkQBxd04ADYzRa8LACZAXMiSEJQGnDW1G7PvppYefxU
83sAn2dW0bgsSA6VZkFR/cRkqOUrGOh2
=ePNf
-END PGP SIGNATURE-


Accepted:
postgresql-8.4-plsh_1.3-3.1_amd64.deb
  to main/p/postgresql-plsh/postgresql-8.4-plsh_1.3-3.1_amd64.deb
postgresql-plsh_1.3-3.1.diff.gz
  to main/p/postgresql-plsh/postgresql-plsh_1.3-3.1.diff.gz
postgresql-plsh_1.3-3.1.dsc
  to main/p/postgresql-plsh/postgresql-plsh_1.3-3.1.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/e1ox1cq-00079v...@franck.debian.org



Accepted ccache 3.1-1 (source amd64)

2010-09-18 Thread Joel Rosdahl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 19:19:07 +0200
Source: ccache
Binary: ccache
Architecture: source amd64
Version: 3.1-1
Distribution: experimental
Urgency: low
Maintainer: Y Giridhar Appaji Nag app...@debian.org
Changed-By: Joel Rosdahl j...@debian.org
Description: 
 ccache - Compiler cache for fast recompilation of C/C++ code
Closes: 506968
Changes: 
 ccache (3.1-1) experimental; urgency=low
 .
   * New upstream version.
   * It's now possible to set up ccache to hash the output of a custom
 command to identify the compiler. Closes: #506968.
Checksums-Sha1: 
 aaaf5e58fad060efb744fab4361062318d516fa8 1198 ccache_3.1-1.dsc
 40c872cbfa3de04b94405167665ef5685ed8b310 250668 ccache_3.1.orig.tar.bz2
 aae740c933b119043f15e9d65fe26c0c4fd2b4e3 11973 ccache_3.1-1.debian.tar.gz
 af40a98f2022442d584c483ad735be03f0bfd2af 89922 ccache_3.1-1_amd64.deb
Checksums-Sha256: 
 220003dddc218fdcc45b803c00cfdc8e71c416c942e8a496fe0136b7477c7599 1198 
ccache_3.1-1.dsc
 b8a4cc2321325488307d894ed1c39deef138e0d5e073ed3e265085fe6a5d7c59 250668 
ccache_3.1.orig.tar.bz2
 e64ecce68e9420c2db2b2a72a3beb340127e5a99a351af2f8d34c20fb8bc9b4e 11973 
ccache_3.1-1.debian.tar.gz
 00e52db0b6dc8de5492844799862c31af888fb5b984c184f49b8b2ae084a5d85 89922 
ccache_3.1-1_amd64.deb
Files: 
 b36b8eff7fe9d602dcbd02ec109019f5 1198 devel optional ccache_3.1-1.dsc
 7961852e1e36f11559039c32142f58df 250668 devel optional ccache_3.1.orig.tar.bz2
 fd7df40f5cb18198a7f4458962f91cb3 11973 devel optional 
ccache_3.1-1.debian.tar.gz
 553fbad517779688b3695bb3aba5429c 89922 devel optional ccache_3.1-1_amd64.deb

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

iEYEARECAAYFAkyU+iQACgkQAGT5/7uEXpcDnQCaA8kKvTeQBYtSJVbwAejewgod
kGYAoKnQRA3+VDWH/u0XJQxq2id0nfCY
=DtqN
-END PGP SIGNATURE-


Accepted:
ccache_3.1-1.debian.tar.gz
  to main/c/ccache/ccache_3.1-1.debian.tar.gz
ccache_3.1-1.dsc
  to main/c/ccache/ccache_3.1-1.dsc
ccache_3.1-1_amd64.deb
  to main/c/ccache/ccache_3.1-1_amd64.deb
ccache_3.1.orig.tar.bz2
  to main/c/ccache/ccache_3.1.orig.tar.bz2


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



Accepted cracklib2 2.8.16-4 (source amd64)

2010-09-18 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 13 Sep 2010 19:00:03 +0200
Source: cracklib2
Binary: libcrack2 libcrack2-dev cracklib-runtime python-cracklib
Architecture: source amd64
Version: 2.8.16-4
Distribution: unstable
Urgency: low
Maintainer: Jan Dittberner ja...@debian.org
Changed-By: Jan Dittberner ja...@debian.org
Description: 
 cracklib-runtime - runtime support for password checker library cracklib2
 libcrack2  - pro-active password checker library
 libcrack2-dev - pro-active password checker library - development files
 python-cracklib - Python bindings for password checker library cracklib2
Changes: 
 cracklib2 (2.8.16-4) unstable; urgency=low
 .
   * debian/control: remove Conflicts, Provides and Breaks refering to versions
 and packages before Lenny, keep python-cracklib's Conflicts with
 python-crack to force deinstallation of transitional package
Checksums-Sha1: 
 07d6bcee6595a0d1dcc1a03719223c871d491b75 2069 cracklib2_2.8.16-4.dsc
 a8201cfd53247d615faa941601ec214c17a087a2 29026 cracklib2_2.8.16-4.debian.tar.gz
 e48c28c1a72b9f45f2a169393c64e6fd2ebbaba8 207074 libcrack2_2.8.16-4_amd64.deb
 58696582637287889dec5f7cfea5dee02dab9d2a 35948 libcrack2-dev_2.8.16-4_amd64.deb
 2be55c6f3f680ca111de6924f9ce440b7a1bbb7d 32730 
cracklib-runtime_2.8.16-4_amd64.deb
 d0399fe90295e78fd99ad585eccb766542c4030a 24542 
python-cracklib_2.8.16-4_amd64.deb
Checksums-Sha256: 
 4a761fcbd11a9d8032a1aa6aa007750c56cd86a42a0b335cfb4f9577ed7c898d 2069 
cracklib2_2.8.16-4.dsc
 567de33edc7c89769952b894cacaca9489d2ab0ba18cbf47748456067198658b 29026 
cracklib2_2.8.16-4.debian.tar.gz
 94df564e941c0154972b0c97ccf687f84fb420d7df37e022369bd949c0d699ed 207074 
libcrack2_2.8.16-4_amd64.deb
 8d891aba75a77eddf22bf9d0b8313a56222835b1e7f9d9eda4189cfb56a7cc61 35948 
libcrack2-dev_2.8.16-4_amd64.deb
 ba3e8c3e29fb3734dabfa443c34f7d38178e633182247783b92bdd93659fb671 32730 
cracklib-runtime_2.8.16-4_amd64.deb
 0979ed6d8adea5440c90cfbecf4dcc7cc63b00e0c7f540d91ce002c9f7d5af62 24542 
python-cracklib_2.8.16-4_amd64.deb
Files: 
 1601c9a1c9d9f783b0c0b3b6765aa74e 2069 libs optional cracklib2_2.8.16-4.dsc
 5108942fd3bd0071daef41cd341cf82e 29026 libs optional 
cracklib2_2.8.16-4.debian.tar.gz
 6fe10cc1d6866fcb3ccc7847e04a7b60 207074 libs optional 
libcrack2_2.8.16-4_amd64.deb
 373ced779906a685b7ee1e0f29fb1b07 35948 libdevel extra 
libcrack2-dev_2.8.16-4_amd64.deb
 2e4f322c006533a30ac39da62c76b0d8 32730 admin optional 
cracklib-runtime_2.8.16-4_amd64.deb
 b5c5bbab37d6177730f0e904adf04751 24542 python optional 
python-cracklib_2.8.16-4_amd64.deb

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

iQIcBAEBCAAGBQJMlPxsAAoJEKc+AFVVj7jdK1EP+wWWugawjzyhOXQeqJAkNQFI
P1aEZSslSf5yEor/QVcZe/K0rGHELkBuSmML+bn6645uau5E1dPGHMzS+2+ZfdHx
M8B6mZ9PyVR92dNfBqtNPYg++pWaj2TsYZ+101WSA2BvWAY8TYtbk+8oty9wDT3b
cYvr8cXsg14vAvfyG6I+snLdCsNNrmoT1QaPZ7h/01cS+iAxrGAxHX4NpR9M1fM2
I6H1EdyKJIj2PjA+/8IJWXJyRyauMup8vaYvWSucazXlXHv7PIMfB7i+N56LI+NC
9FMIYA/ZbKdaUp9t5+bJQKSUbceruOjLGoXgm4WGTEvfcwO6jME6/6jyekE0DyMK
JKy0mmLzzAVSHGkt+bVDf9uCMTbNyEGkDljE4Q77HyCW9nAWfB/QKMqDQ8fUS0QG
H7BKFuy1LnCmw4tN/11Z0Ch9vfQe2iTTlp+cMZoanVA6Dlr298ceJMQWiubc8sfw
zAfmSrVPrHRnJM/5RoWgWXALfJByJSIdw7n32+4Cns27CkqRaGdHgzDc5seuTZzW
/wZ0qNDtzZV0wCxz5+xDXKtWEt/lCg/nBEKC6HMkfyZkLFukSfymnXyLhnXjDyXK
t4yeQwhXcLTV2BoptLhiNYjLQYNJYypxgnVULhdsAu4LEkg1Qt7trM/Vcnvsl/I+
2Q+KnHx5kwpBl+zsOOms
=nIRJ
-END PGP SIGNATURE-


Accepted:
cracklib-runtime_2.8.16-4_amd64.deb
  to main/c/cracklib2/cracklib-runtime_2.8.16-4_amd64.deb
cracklib2_2.8.16-4.debian.tar.gz
  to main/c/cracklib2/cracklib2_2.8.16-4.debian.tar.gz
cracklib2_2.8.16-4.dsc
  to main/c/cracklib2/cracklib2_2.8.16-4.dsc
libcrack2-dev_2.8.16-4_amd64.deb
  to main/c/cracklib2/libcrack2-dev_2.8.16-4_amd64.deb
libcrack2_2.8.16-4_amd64.deb
  to main/c/cracklib2/libcrack2_2.8.16-4_amd64.deb
python-cracklib_2.8.16-4_amd64.deb
  to main/c/cracklib2/python-cracklib_2.8.16-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/e1ox1yn-0001nf...@franck.debian.org



Accepted kdepim-runtime 4:4.4.6-1 (source amd64)

2010-09-18 Thread Modestas Vainius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 20:18:58 +0300
Source: kdepim-runtime
Binary: kdepim-runtime kdepim-runtime-dbg
Architecture: source amd64
Version: 4:4.4.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Modestas Vainius mo...@debian.org
Description: 
 kdepim-runtime - Runtime components for akonadi-kde
 kdepim-runtime-dbg - debugging files for akonadi kde runtime components
Closes: 596908
Changes: 
 kdepim-runtime (4:4.4.6-1) unstable; urgency=low
 .
   * New upstream bugfix release.
   * Point debian/control Vcs fields to the new Git repository.
   * Fix a race between akonado_nepomuk_*_feeder_automoc and
 autogeneration of ontology headers (nie.h). (Closes: #596908)
Checksums-Sha1: 
 00184a6608789053b2c2998f9fd25f4438647708 1640 kdepim-runtime_4.4.6-1.dsc
 23df76e49822efdb748a8428dbaafd2d73cc1cb7 619301 
kdepim-runtime_4.4.6.orig.tar.bz2
 471629c2f9de17118a481d986e148a78f2dddbb5 6419 
kdepim-runtime_4.4.6-1.debian.tar.gz
 aeafab54ad0db282b8146dd3fb50c6487d961a39 1905592 
kdepim-runtime_4.4.6-1_amd64.deb
 a81e0c05d7acb6faf0ab1d37df4beb51f38abd79 17401692 
kdepim-runtime-dbg_4.4.6-1_amd64.deb
Checksums-Sha256: 
 18ede257ed0de35feed49b2afd6b85f704b83233b25d4db7625649b27385d1c5 1640 
kdepim-runtime_4.4.6-1.dsc
 ad3ec80c205dba42726c09d311971eefdf8d6370240663da5c9cf28435ef1df8 619301 
kdepim-runtime_4.4.6.orig.tar.bz2
 3582d763bd94c83f33127205246ee93b45a110059500495661757753d4182e0c 6419 
kdepim-runtime_4.4.6-1.debian.tar.gz
 becde1543b02d644a5c1418c75b4c112dbd9e95a749bc294717ed815efe8a177 1905592 
kdepim-runtime_4.4.6-1_amd64.deb
 1c8f5a848c68030eb2b7cb2d8a46c5c45d0ee6bfaf5b29f775b15e77f84fb52c 17401692 
kdepim-runtime-dbg_4.4.6-1_amd64.deb
Files: 
 8388f42ae9afef17822557b5b19d15d2 1640 x11 extra kdepim-runtime_4.4.6-1.dsc
 b690b2f0e926d03fc1c6c51a9bb14fdd 619301 x11 extra 
kdepim-runtime_4.4.6.orig.tar.bz2
 1fdacdbf640ffcb96257d63dd3975a96 6419 x11 extra 
kdepim-runtime_4.4.6-1.debian.tar.gz
 e31c17e7a17e6c06cb7be18ee6393e1e 1905592 x11 extra 
kdepim-runtime_4.4.6-1_amd64.deb
 ece37da733e60b3b1f06c0a6f667a8d5 17401692 debug extra 
kdepim-runtime-dbg_4.4.6-1_amd64.deb

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

iEYEARECAAYFAkyU+SsACgkQHO9JRnPq4hQD6QCgy72tkG9H+ZjB3kojPAkiw50m
sF4AoNgKOZ9MsLLaz70N4FwTM4RNaxF+
=igPW
-END PGP SIGNATURE-


Accepted:
kdepim-runtime-dbg_4.4.6-1_amd64.deb
  to main/k/kdepim-runtime/kdepim-runtime-dbg_4.4.6-1_amd64.deb
kdepim-runtime_4.4.6-1.debian.tar.gz
  to main/k/kdepim-runtime/kdepim-runtime_4.4.6-1.debian.tar.gz
kdepim-runtime_4.4.6-1.dsc
  to main/k/kdepim-runtime/kdepim-runtime_4.4.6-1.dsc
kdepim-runtime_4.4.6-1_amd64.deb
  to main/k/kdepim-runtime/kdepim-runtime_4.4.6-1_amd64.deb
kdepim-runtime_4.4.6.orig.tar.bz2
  to main/k/kdepim-runtime/kdepim-runtime_4.4.6.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/e1ox1yh-00026i...@franck.debian.org



Accepted nautilus-actions 2.30.3-1 (source i386)

2010-09-18 Thread Christine Spang
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 21 Aug 2010 11:41:16 -0400
Source: nautilus-actions
Binary: nautilus-actions
Architecture: source i386
Version: 2.30.3-1
Distribution: unstable
Urgency: low
Maintainer: Christine Spang christ...@debian.org
Changed-By: Christine Spang christ...@debian.org
Description: 
 nautilus-actions - nautilus extension to configure programs to launch
Changes: 
 nautilus-actions (2.30.3-1) unstable; urgency=low
 .
   * New upstream bugfix/translation update release.
   * Bump to Standards-Version 3.9.1.
Checksums-Sha1: 
 dc07d9cc3c2d89a62d0a5810bb20f78e630a1cd4 2012 nautilus-actions_2.30.3-1.dsc
 2c719fbc9138ef682da2759aea335546802a5a6f 1468520 
nautilus-actions_2.30.3.orig.tar.gz
 2a1008f9e159bd1763faa3d8004659bab90482e1 7740 nautilus-actions_2.30.3-1.diff.gz
 9cf5dd8cfc36af7a64ff97d8c51f0a3232996bf6 843038 
nautilus-actions_2.30.3-1_i386.deb
Checksums-Sha256: 
 392954ef93ad19b450cfd4d4058dfc3e54b366d35c2189b73f1411389d063a36 2012 
nautilus-actions_2.30.3-1.dsc
 933b96428fede670a01ac32ecb92bd21a41e892d3437ea75011648db6ed93c81 1468520 
nautilus-actions_2.30.3.orig.tar.gz
 5df6c7f78d8cadad37c7ff5ce99387f278590b6345d10c6920ad7b21cd92bb40 7740 
nautilus-actions_2.30.3-1.diff.gz
 77798647b763a43b5ca1fbd793cd2da6cf1c100aac655d6979c45753de699015 843038 
nautilus-actions_2.30.3-1_i386.deb
Files: 
 c09c5461e56b09aec0336632b3ac7ef2 2012 gnome optional 
nautilus-actions_2.30.3-1.dsc
 231076d194e5d31b3f4dc2ad741303d9 1468520 gnome optional 
nautilus-actions_2.30.3.orig.tar.gz
 cc02b51788c7ecbe65fe5f21e95fa661 7740 gnome optional 
nautilus-actions_2.30.3-1.diff.gz
 c3e7fe2318b219511dcc791acf62e955 843038 gnome optional 
nautilus-actions_2.30.3-1_i386.deb

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

iQIcBAEBCAAGBQJMlQMAAAoJEGSVn+mDjfGccJcQAKRylyHBRc7EQFgCnrQyV9IL
a0jVlgw0lwmGAtjS6cVWHo7MiWZ+4HeiMrgcuEEgMkFdnn2KEpUXVQ+QVMLsY8Uj
WVezOPJcLa/MDaL9v7WNg2Gi8gIgMdCl9Rz8WRO1ncZ8Ae6q6I8yGCtM4uF1nejN
40P9g2THu5CxxLMd3G/tOZfWMOnHdrrbFDQaR8iKMtJqgi38Nkolseye9/cB0hN7
jCtft9zkm0uefFmU2LPQQAFb1azmwir2LSUPBAeRNsgsCzuOxlCNi77DpGzq3JfT
FcQcNmTucJZC2qcGyF5H4V4KxM+Jdn6dzOmWq5OrjztWywseJT4/TZaDQq4rcsq0
GuP3i4vVgMonT0aLZbuicWfP6uzvJkEiYRtJHj9OibYVSAv1DqX4cLM+4cAE4V3b
CDhl18NMan3iIEXRfAvn4EzIGPjIlJ5Dx7osDQVYhNgbhjbDpfsvHE4rUJm3Lt6Z
XHz5xbPu5p+H6GS6zXGxdI1iRhrbslgiWuK/T6VqlvJ0dWkyWLLObqCYndNa0X1E
f01Y2U1J1HNk/aB1AdOCD2/n6x173mKvHRu37XYPv3UNgvbpw+JUg4NAP8lglaIn
QtUEYPUJUZF6gxNqmE89IdbuVCZvE8BqTEe4Aj1bgHzjBcwlNcrY+T6vb3Vqlh3F
A1OkwEKpDP1NXBQBWY7K
=lYHK
-END PGP SIGNATURE-


Accepted:
nautilus-actions_2.30.3-1.diff.gz
  to main/n/nautilus-actions/nautilus-actions_2.30.3-1.diff.gz
nautilus-actions_2.30.3-1.dsc
  to main/n/nautilus-actions/nautilus-actions_2.30.3-1.dsc
nautilus-actions_2.30.3-1_i386.deb
  to main/n/nautilus-actions/nautilus-actions_2.30.3-1_i386.deb
nautilus-actions_2.30.3.orig.tar.gz
  to main/n/nautilus-actions/nautilus-actions_2.30.3.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/e1ox2cv-0003at...@franck.debian.org



Accepted python-django 1.2.3-1 (source all)

2010-09-18 Thread Raphaël Hertzog
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 18 Sep 2010 19:37:03 +0200
Source: python-django
Binary: python-django python-django-doc
Architecture: source all
Version: 1.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Chris Lamb la...@debian.org
Changed-By: Raphaël Hertzog hert...@debian.org
Description: 
 python-django - High-level Python web development framework
 python-django-doc - High-level Python web development framework (documentation)
Closes: 596205 596893
Changes: 
 python-django (1.2.3-1) unstable; urgency=low
 .
   [ Krzysztof Klimonda ]
   * New upstream release. Closes: #596893 LP: #636482
   * Fixes both a XSS vulnerability introduced in 1.2 series and
 the regressions caused by 1.2.2 release. Closes: #596205
   * debian/control:
 - depend on language packs for en_US.utf8 locales required for unit tests.
   * debian/rules:
 - re-enable build time tests.
 - set LC_ALL to en_US.utf8 for test suite.
   * debian/patches/series:
 - two new patches: 05_fix_regression_tests.diff and
   06_fix_regression_tests.diff backported from 1.2.x branch to fix
   test suite failures.
 .
   [ Raphaël Hertzog ]
   * Update Standards-Version to 3.9.1.
   * Drop --with quilt and quilt build-dependency since the package is
 already using source format 3.0 (quilt).
Checksums-Sha1: 
 cfdf33f103a13b187848c324ea3c7d264ad6eeab 1832 python-django_1.2.3-1.dsc
 f65146218ab61bf5efe715db3fc3a177a24fba0d 6306760 
python-django_1.2.3.orig.tar.gz
 a27e841806b0ff98682cb7f98224a76a1bbbd270 18340 
python-django_1.2.3-1.debian.tar.gz
 0bf8c27e74f7a37e2ce9447e25ecc0acd8ff26b5 4237148 python-django_1.2.3-1_all.deb
 02a34b60261880c4c680aa7c5a67db8d2f80dbe6 1902834 
python-django-doc_1.2.3-1_all.deb
Checksums-Sha256: 
 fd82ea525b88b252dc0767814dfd367231c2fa9c8d0ad76c366d176e686b4b22 1832 
python-django_1.2.3-1.dsc
 cb830f6038b78037647150d977f6cd5cf2bfd731f1788ecf8758a03c213a0f84 6306760 
python-django_1.2.3.orig.tar.gz
 8f09a1da216a2f9bdf39339f07bde1cdf0586aaf9a894163ca752c5bf533adc5 18340 
python-django_1.2.3-1.debian.tar.gz
 2c43858ab61a90492adce802fdc07106e56a7254d3aa15712e10bfc892fc96d3 4237148 
python-django_1.2.3-1_all.deb
 8e8056c670390078657a21ab91a06117a5691d4624c21be22d8593fd9d9af7b8 1902834 
python-django-doc_1.2.3-1_all.deb
Files: 
 b553b037febc66a719e2801101c0016a 1832 python optional python-django_1.2.3-1.dsc
 10bfb5831bcb4d3b1e6298d0e41d6603 6306760 python optional 
python-django_1.2.3.orig.tar.gz
 2a97ee5ea0b9eee82e9a985e1badf1fc 18340 python optional 
python-django_1.2.3-1.debian.tar.gz
 8064bc8f7f4f3cb50d5a9fc857e0bcd5 4237148 python optional 
python-django_1.2.3-1_all.deb
 5be6935a17c912b699259d70e09fa089 1902834 doc optional 
python-django-doc_1.2.3-1_all.deb

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

iQEcBAEBCAAGBQJMlQUeAAoJEAOIHavrwpq57XsH/3zbktrh46fTZ3/BGiJDpsde
zCgvGRc6swsm/vpDFrQ92uvGKtvrsK8u12U5rOeDR1ZDANUjxYGQolsZL3DQ2ZYU
0KU1Uq6CeFZc0kK6IVhuBdN0YW+Nq+QilnFdcCNFYTsfo/XrzH6BehzZ9srHIbub
SUEkiX95HnXnKPWl58pi7DRRitsY4zOp5oMcjt8xA/uvDhe2joiF8GxSA+xl3CFK
F4o+F9j0uRBaYtULyKJANtSOpKzZQC7rxZc31Sd03sN87cTukQ9hgV8X9HJwGSJW
gJVKxMs7kHLNwdd8AtnwTpMdLY7MQdiIvIIa42a53F6txGT2Vp5lCu1/uJIG4l8=
=wHiu
-END PGP SIGNATURE-


Accepted:
python-django-doc_1.2.3-1_all.deb
  to main/p/python-django/python-django-doc_1.2.3-1_all.deb
python-django_1.2.3-1.debian.tar.gz
  to main/p/python-django/python-django_1.2.3-1.debian.tar.gz
python-django_1.2.3-1.dsc
  to main/p/python-django/python-django_1.2.3-1.dsc
python-django_1.2.3-1_all.deb
  to main/p/python-django/python-django_1.2.3-1_all.deb
python-django_1.2.3.orig.tar.gz
  to main/p/python-django/python-django_1.2.3.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/e1ox2ro-0004es...@franck.debian.org



Accepted qimageblitz 1:0.0.6-1 (source amd64)

2010-09-18 Thread Modestas Vainius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 21:26:37 +0300
Source: qimageblitz
Binary: libqimageblitz4 libqimageblitz-dev libqimageblitz-dbg
Architecture: source amd64
Version: 1:0.0.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Modestas Vainius mo...@debian.org
Description: 
 libqimageblitz-dbg - debugging symbols for the QImageBlitz image effects 
library
 libqimageblitz-dev - development files for the QImageBlitz image effects 
library
 libqimageblitz4 - QImageBlitz image effects library
Changes: 
 qimageblitz (1:0.0.6-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump debian/compat and debhelper build dependency to v7 (to get more
 sophisticated debian/tmp handling).
   * Switch from internal debian/cdbs/kde.mk to pkg-kde-tools:
 - build depend on pkg-kde-tools 0.4;
 - remove debian/cdbs directory;
 - replace debian/cdbs/kde.mk with
   /usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk in debian/rules.
   * Add Vcs fields to debian/control.
   * Switch to debian source format 3.0 (quilt):
 - remove build dependency on quilt;
 - bump pkg-kde-tools build dependency to 0.9 (needed for 3.0 (quilt)).
   * Strip version numbers from KDE 4 in descriptions, remove references to
 Quasar.
   * Bump Standards-Version to 3.9.1: no changes needed.
   * Move libqimageblitz-dbg package to the bottom of debian/control.
   * Change libimageblitz-dbg section to debug.
   * Remove Matthew from Uploaders, R.I.P.
   * Change Sune's email address to @debian.org.
   * Add myself to Uploaders.
   * Update packaging copyright years in debian/copyright.
   * Strip ./ from libqimageblitz-dev.install.
   * Sort install files.
   * Add a symbol file for libqimageblitz4 (based on 0.0.4).
   * Refresh patches.
   * Remove duplicate Section fields from debian/control.
   * Add Copyright next to (C) in the statement about Debian packaging
 copyright (fixes lintian error).
   * Disable /usr/lib R(UN)PATH (patch 13_disable_usr_lib_rpath.diff).
Checksums-Sha1: 
 4f9a272264e4a056af4ac6c34fd12d32f8249077 1376 qimageblitz_0.0.6-1.dsc
 32bcda9adb262ef49c62e3a7adbfcdeec98f72e4 57617 qimageblitz_0.0.6.orig.tar.bz2
 c0a8db95772fd052ce084762b5a47484d3c7033d 20751 
qimageblitz_0.0.6-1.debian.tar.gz
 eface5e4448e9769d6917174f87be8ee9f3c3a94 62990 
libqimageblitz4_0.0.6-1_amd64.deb
 8e3f61b83f256f457b8535e14f3da35e7dbca773 38950 
libqimageblitz-dev_0.0.6-1_amd64.deb
 7fd519a928ce6dc1fcbf393bf4984b265c3b3b4b 412932 
libqimageblitz-dbg_0.0.6-1_amd64.deb
Checksums-Sha256: 
 8ec3c885dee5bb7c61ce17ca56d5b61471b1990f417d886abba78eb95da500d1 1376 
qimageblitz_0.0.6-1.dsc
 9f102269dec50641440e23a449df215a0db9efef9a3969939d618c5e78a5010f 57617 
qimageblitz_0.0.6.orig.tar.bz2
 7c03ecf69564bdf0d41811c657afc442e3aa65c4be4e48f1768be4d4c32d86cd 20751 
qimageblitz_0.0.6-1.debian.tar.gz
 0219128264935be34ec468eaf6f9b2180d7e8fb10ee58c5bb023e96bbe497323 62990 
libqimageblitz4_0.0.6-1_amd64.deb
 09ec7849165f5972fcfeb98f1cc3cab36a3e403e391f0945a30e3dab1874 38950 
libqimageblitz-dev_0.0.6-1_amd64.deb
 df3d01a75f1d66b255caf551ddc1ebcb3d48f93968b79fb5d68d732f96202cc6 412932 
libqimageblitz-dbg_0.0.6-1_amd64.deb
Files: 
 649d74bb3f72758ea37fc4ed46c70c2b 1376 libs optional qimageblitz_0.0.6-1.dsc
 0ae2f7d4e0876764a97ca73799f61df4 57617 libs optional 
qimageblitz_0.0.6.orig.tar.bz2
 fbbcf4cc56f885f099abb34b741334bb 20751 libs optional 
qimageblitz_0.0.6-1.debian.tar.gz
 bc3f38a8b02066d9df7895df81d5ec83 62990 libs optional 
libqimageblitz4_0.0.6-1_amd64.deb
 e031fb5809649d13eae1fafa8a76443f 38950 libdevel optional 
libqimageblitz-dev_0.0.6-1_amd64.deb
 4eebdd8e2c1415e85fff58bfdeaea5df 412932 debug extra 
libqimageblitz-dbg_0.0.6-1_amd64.deb

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

iEYEARECAAYFAkyVBfUACgkQHO9JRnPq4hTJ8wCfZaJdE4pqPgGSpuGTeL1ETQ9+
iQQAoLx16KMheaEN6Q9B1y3P1TQ1dpAb
=5hcJ
-END PGP SIGNATURE-


Accepted:
libqimageblitz-dbg_0.0.6-1_amd64.deb
  to main/q/qimageblitz/libqimageblitz-dbg_0.0.6-1_amd64.deb
libqimageblitz-dev_0.0.6-1_amd64.deb
  to main/q/qimageblitz/libqimageblitz-dev_0.0.6-1_amd64.deb
libqimageblitz4_0.0.6-1_amd64.deb
  to main/q/qimageblitz/libqimageblitz4_0.0.6-1_amd64.deb
qimageblitz_0.0.6-1.debian.tar.gz
  to main/q/qimageblitz/qimageblitz_0.0.6-1.debian.tar.gz
qimageblitz_0.0.6-1.dsc
  to main/q/qimageblitz/qimageblitz_0.0.6-1.dsc
qimageblitz_0.0.6.orig.tar.bz2
  to main/q/qimageblitz/qimageblitz_0.0.6.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/e1ox2rw-0004kt...@franck.debian.org



Accepted kdepim 4:4.4.6-0exp1 (source all amd64)

2010-09-18 Thread Modestas Vainius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 21:57:50 +0300
Source: kdepim
Binary: kdepim kdepim-dbg akregator kaddressbook kalarm kdepim-kresources 
kdepim-groupware kdepim-wizards kleopatra kmail knode knotes konsolekalendar 
kontact korganizer ktimetracker libkdepim4 libkleo4 libkpgp4 libksieve4 
libmimelib4 libmessagecore4 libmessagelist4 libmessageviewer0 
kdepim-strigi-plugins kjots blogilo akonadiconsole
Architecture: source all amd64
Version: 4:4.4.6-0exp1
Distribution: experimental
Urgency: low
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Modestas Vainius mo...@debian.org
Description: 
 akonadiconsole - the Management and Debugging Console for Akonadi
 akregator  - RSS/Atom feed aggregator
 blogilo- graphical blogging client
 kaddressbook - address book and contact data manager
 kalarm - alarm message, command and email scheduler
 kdepim - Personal Information Management apps from the official KDE releas
 kdepim-dbg - debugging symbols for kdepim
 kdepim-groupware - KDE PIM Groupware plugins
 kdepim-kresources - KDE PIM resource plugins
 kdepim-strigi-plugins - PIM file format plugins for Strigi Desktop Search
 kdepim-wizards - KDE server configuration wizards
 kjots  - note-taking utility
 kleopatra  - certificate Manager
 kmail  - full featured graphical email client
 knode  - graphical news reader
 knotes - sticky notes application
 konsolekalendar - konsole personal organizer
 kontact- integrated application for personal information management
 korganizer - calendar and personal organizer
 ktimetracker - time tracker tool
 libkdepim4 - KDE PIM library
 libkleo4   - certificate based crypto library
 libkpgp4   - gpg based crypto library
 libksieve4 - mail/news message filtering library
 libmessagecore4 - message core library
 libmessagelist4 - message list library
 libmessageviewer0 - message viewer library
 libmimelib4 - MIME library
Closes: 591958
Changes: 
 kdepim (4:4.4.6-0exp1) experimental; urgency=low
 .
   * New upstream bugfix release.
 .
   [ Modestas Vainius ]
   * Point debian/control Vcs fields to the new Git repository.
 .
   [ Pino Toscano ]
   * Fix a typo in the description of kalarm. (Closes: #591958)
Checksums-Sha1: 
 d5ba17836d690496cdda1392ae76a1314a35ddff 2287 kdepim_4.4.6-0exp1.dsc
 b821a8f2475c7db1d864641e10a2541d74deba3d 9073068 kdepim_4.4.6.orig.tar.bz2
 4439086a47f6dbb6dd673f3f34bebc1384fbbc21 30589 kdepim_4.4.6-0exp1.debian.tar.gz
 54795aa1a379c18615e816d7dd28a62cca3ed6fc 21188 kdepim_4.4.6-0exp1_all.deb
 d0064294870b6efb6afa9d67b54197af1f5eff24 101833350 
kdepim-dbg_4.4.6-0exp1_amd64.deb
 660c50974fd2ea11910f861eba8360ac116cb325 1256146 
akregator_4.4.6-0exp1_amd64.deb
 af376ec859e601a9d5b4184f68e820dfa28fe52e 449116 
kaddressbook_4.4.6-0exp1_amd64.deb
 0bece8957f65f3b6b9dbfe3bc8c7de4f01e43c4f 1065250 kalarm_4.4.6-0exp1_amd64.deb
 f467fa840baae7fecc77f8788aa0bc3cba6e2791 78996 
kdepim-kresources_4.4.6-0exp1_amd64.deb
 5b0f135195cd5edfe786c6a16651df4a3adbfd9a 1130964 
kdepim-groupware_4.4.6-0exp1_amd64.deb
 e5fa2a1e4697efe5111e9424d00cefbfabee4cd1 196918 
kdepim-wizards_4.4.6-0exp1_amd64.deb
 a7ab5e37ed2ce3451d258225fc8fd2b499a22cf9 1529788 
kleopatra_4.4.6-0exp1_amd64.deb
 422b07040c27307fb6139dd9f5da3f8844029a73 3334862 kmail_4.4.6-0exp1_amd64.deb
 a02b182900af57369425297c024060784d23 1123070 knode_4.4.6-0exp1_amd64.deb
 d4fb0b64269a1578c4895c6f0976107772451d91 301718 knotes_4.4.6-0exp1_amd64.deb
 eab5ebf6d7eb5585d1f9f2eadeca88ebb3496b99 95064 
konsolekalendar_4.4.6-0exp1_amd64.deb
 559e46acf682c5467590a1616659f2f45326289b 876104 kontact_4.4.6-0exp1_amd64.deb
 a28dc49a0c323c6df454350df383538b6b6cd76a 1984274 
korganizer_4.4.6-0exp1_amd64.deb
 cd3dcc128cdc43ad3770bc5e47033e7f6659f806 664314 
ktimetracker_4.4.6-0exp1_amd64.deb
 19dbf354d25052d3844d92baa509798023c3bebe 791442 
libkdepim4_4.4.6-0exp1_amd64.deb
 9e28ba8c0f6cd9cc625d7959046df889903614c4 489588 libkleo4_4.4.6-0exp1_amd64.deb
 f1404f5d787211004c4c287c8318d81fe39e6fee 129340 libkpgp4_4.4.6-0exp1_amd64.deb
 42b9bfbdb3d6e0f9b589796cdac40a43fe166629 36478 libksieve4_4.4.6-0exp1_amd64.deb
 67c1a4231132585d15e0c8eb7ef34d75b3b9dca6 109918 
libmimelib4_4.4.6-0exp1_amd64.deb
 338a3246607710e4554ed5b612cdcc809dc2adb1 61030 
libmessagecore4_4.4.6-0exp1_amd64.deb
 b859d7a33b4f752943fa42e24b25de3b25698c45 301696 
libmessagelist4_4.4.6-0exp1_amd64.deb
 5d9b5a4a8e8f9be4d75a9f4d3eed90a0dc81372d 395384 
libmessageviewer0_4.4.6-0exp1_amd64.deb
 40082fe94802832f69afa8c2566c612fa6c6bdc2 34416 
kdepim-strigi-plugins_4.4.6-0exp1_amd64.deb
 736d6d8c4baa4c953d70fc71a30b515efd3a2d00 382060 kjots_4.4.6-0exp1_amd64.deb
 914113e48d90f8e7da1f7c0cec7c91e239e5989e 650006 blogilo_4.4.6-0exp1_amd64.deb
 82c2a6936de4f2e4b800ccb25fe6f04304cde62c 161338 
akonadiconsole_4.4.6-0exp1_amd64.deb
Checksums-Sha256: 
 7cc911741c60cb2048b0e6329ad880c97324c886f97944a1e3f150d6e36144e8 2287 
kdepim_4.4.6-0exp1.dsc
 

Accepted icedove 3.1.4-1 (source amd64)

2010-09-18 Thread Christoph Goehre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 18:25:37 +0200
Source: icedove
Binary: icedove icedove-dev icedove-dbg
Architecture: source amd64
Version: 3.1.4-1
Distribution: experimental
Urgency: low
Maintainer: Alexander Sack a...@debian.org
Changed-By: Christoph Goehre ch...@sigxcpu.org
Description: 
 icedove- mail/news client with RSS and integrated spam filter support
 icedove-dbg - Debug Symbols for Icedove
 icedove-dev - Development files for Icedove
Changes: 
 icedove (3.1.4-1) experimental; urgency=low
 .
   * New Upstream Version
Checksums-Sha1: 
 039fc875f076bafc6aefe4c1a8a8f9eea6f9632f 1881 icedove_3.1.4-1.dsc
 df506eb0a99c1ec7e1858ddb415ecaf32ddd888b 58785943 icedove_3.1.4.orig.tar.bz2
 0d8a21573501b09f5adeca49e901f85db16623b7 462968 icedove_3.1.4-1.debian.tar.gz
 f4340cc092edc42d21f198cdb9f2203b2d4306dd 13361710 icedove_3.1.4-1_amd64.deb
 1ec1658a7b240650b7b6b3c5785314bbaabf891a 5666138 icedove-dev_3.1.4-1_amd64.deb
 9075374a8db002d2be24879bf29e4715ebc81056 68671260 icedove-dbg_3.1.4-1_amd64.deb
Checksums-Sha256: 
 ca68a58d0d684460ed595ae28e72f53dd0be8426c10cc70a09952b2cded00597 1881 
icedove_3.1.4-1.dsc
 c83dc112f1c21fa12a992d202cb8503f8fc9e9e7097f8d0481ac702b7809c71b 58785943 
icedove_3.1.4.orig.tar.bz2
 3e249680715cb86e69426dfc7770f75152c0084b9a92586a7d6de46ca7901a08 462968 
icedove_3.1.4-1.debian.tar.gz
 3e6f5104d9ec66feab0e5687903f650a82119cb845806cb1fc0b95a9e46b6515 13361710 
icedove_3.1.4-1_amd64.deb
 dba4d3ec8599bdd7549c1401b2bda5556b9a8780faf1eb60c20d02b3ff376788 5666138 
icedove-dev_3.1.4-1_amd64.deb
 233da1aed8843583f79e01fe1ed90ff383ed04a417638a20c06cbb99e2298337 68671260 
icedove-dbg_3.1.4-1_amd64.deb
Files: 
 fadd59d112453eaed1b8ad6a749bb663 1881 web optional icedove_3.1.4-1.dsc
 502a1f663a4747d41651ff343b3a3d4b 58785943 web optional 
icedove_3.1.4.orig.tar.bz2
 70fc6366155e550b21f34c66c2ca0ac7 462968 web optional 
icedove_3.1.4-1.debian.tar.gz
 6cc4c5ed658236403378c5052f9857ca 13361710 mail optional 
icedove_3.1.4-1_amd64.deb
 af8252e9d4840f738a07bba7ac4fa425 5666138 mail optional 
icedove-dev_3.1.4-1_amd64.deb
 ea23d0c65dab492f08be6a9ae6b01844 68671260 debug extra 
icedove-dbg_3.1.4-1_amd64.deb

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

iEYEARECAAYFAkyU/OcACgkQaT2DDHtihbeDOQCgxhgeZaE5tSYVvyZRPEgK/y7o
km8An0/qIcQy9F779LH/i8OrCqwILH+e
=9Dfz
-END PGP SIGNATURE-


Accepted:
icedove-dbg_3.1.4-1_amd64.deb
  to main/i/icedove/icedove-dbg_3.1.4-1_amd64.deb
icedove-dev_3.1.4-1_amd64.deb
  to main/i/icedove/icedove-dev_3.1.4-1_amd64.deb
icedove_3.1.4-1.debian.tar.gz
  to main/i/icedove/icedove_3.1.4-1.debian.tar.gz
icedove_3.1.4-1.dsc
  to main/i/icedove/icedove_3.1.4-1.dsc
icedove_3.1.4-1_amd64.deb
  to main/i/icedove/icedove_3.1.4-1_amd64.deb
icedove_3.1.4.orig.tar.bz2
  to main/i/icedove/icedove_3.1.4.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/e1ox477-00026o...@franck.debian.org



Accepted mock 1.0.8-3 (source all)

2010-09-18 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 22:02:59 +0200
Source: mock
Binary: mock
Architecture: source all
Version: 1.0.8-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Sandro Tosi mo...@debian.org
Description: 
 mock   - Build rpm packages inside a chroot
Changes: 
 mock (1.0.8-3) unstable; urgency=low
 .
   * QA upload.
   * Fix previous screwed upload
Checksums-Sha1: 
 6dad888a62f81cdc18facdb775d2fab3df0b4c81 1182 mock_1.0.8-3.dsc
 357e3dab184c54f7dbafe2d9cd5991b832e4d38d 4679 mock_1.0.8-3.debian.tar.gz
 6e107d6a557ccc90da2e2c548ed378fe609e4511 89490 mock_1.0.8-3_all.deb
Checksums-Sha256: 
 b977acafdddc43ed4064a0a80ae362d993bff0c3b4a65c09ed2393fd89bdbd64 1182 
mock_1.0.8-3.dsc
 6045310f66b75234f350217d7ab5d7f890efcd0bd7a303171640b96c52becfd4 4679 
mock_1.0.8-3.debian.tar.gz
 0d034e3eef6aef7904c5911043ebd81414943015693b099d80276d1d50338c31 89490 
mock_1.0.8-3_all.deb
Files: 
 3ca3be2e55ca0fb7e13d5a9523c2ef0b 1182 devel optional mock_1.0.8-3.dsc
 f7f6273f566420e8f53188ff733ec8b7 4679 devel optional mock_1.0.8-3.debian.tar.gz
 19165950b79abf9d7e8dea9812fa87c0 89490 devel optional mock_1.0.8-3_all.deb

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

iEYEARECAAYFAkyVHP0ACgkQAukwV0RN2VDtGgCeLV4Lo0X+YbWN0vN5b4KTi/s/
ZFkAoJOLXSdqFiXxxptl+WGxMUOBcPQl
=s5+C
-END PGP SIGNATURE-


Accepted:
mock_1.0.8-3.debian.tar.gz
  to main/m/mock/mock_1.0.8-3.debian.tar.gz
mock_1.0.8-3.dsc
  to main/m/mock/mock_1.0.8-3.dsc
mock_1.0.8-3_all.deb
  to main/m/mock/mock_1.0.8-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/e1ox47l-00029l...@franck.debian.org



Accepted spip 2.1.1-2 (source all)

2010-09-18 Thread Romain Beauxis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 15:08:53 -0500
Source: spip
Binary: spip
Architecture: source all
Version: 2.1.1-2
Distribution: unstable
Urgency: high
Maintainer: SPIP packaging team spip-maintain...@lists.alioth.debian.org
Changed-By: Romain Beauxis to...@rastageeks.org
Description: 
 spip   - website engine for publishing
Closes: 597026
Changes: 
 spip (2.1.1-2) unstable; urgency=high
 .
   * Added patch to fix int overflow
 in articles' published date.
 Thanks to David Prévot for reporting.
   Closes: #597026
Checksums-Sha1: 
 1aeb16322e2cd757b32a566fe92871e060ba0d0f 1390 spip_2.1.1-2.dsc
 0cfd22dd59962018cffd1975c4e9a8bfe6461228 13059 spip_2.1.1-2.diff.gz
 0793269ac0bf1c5b8234b96a96d42380f5e39f04 3838398 spip_2.1.1-2_all.deb
Checksums-Sha256: 
 e19ac6d853e551aff6547664b22ea1aedc03ef742a8baae7db4234124e343459 1390 
spip_2.1.1-2.dsc
 f2411dfc434c98608cd898420cd7dee26078f9872c6bec61bfd3ce26a83fc727 13059 
spip_2.1.1-2.diff.gz
 732727fd659d54617cfabb782294240baf59a820ca1a7bc0cf55a4ad430fc900 3838398 
spip_2.1.1-2_all.deb
Files: 
 e3f0668ce916ebe621108596ef037b30 1390 web extra spip_2.1.1-2.dsc
 ab52c82e20613f1c86cf583dbb3ca520 13059 web extra spip_2.1.1-2.diff.gz
 f2b6dd1c312f10fe552a73dba266f980 3838398 web extra spip_2.1.1-2_all.deb

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

iQEcBAEBAgAGBQJMlR0HAAoJEAC5aaocqV0ZPFQH/3w13zGFLm8icTkhTfWRpdpy
DxAY3M9lNqdfhUGpISKtFgXYxLCjXmFKLqyz+WpaCNPH/g7QYIbr9PHUxRUC8WaE
CtzpvhOSN5pvYFB8GHobdXZt8zL3R6RDbLnWY4JHtN2fPy2x0QZ/hrZDzEVOkaVY
tB3yhTTQbRZJkiB8hwtBBTclXUGXhg02hTnVy2PODCJz0zC7bKWrua54Pbu7Dqx0
bC9KcvweNK+yePV9HGeUWP1DntO6ogq1IAa1Fz8Er48XjpmI1BLgBWlQ/B6ir6xz
yWE4Sqke2/uayzbLSUMbiMp1Jm1+eQTyCreA0tXuK8llcIkRoqiqfO89fLhq+nQ=
=vdf4
-END PGP SIGNATURE-


Accepted:
spip_2.1.1-2.diff.gz
  to main/s/spip/spip_2.1.1-2.diff.gz
spip_2.1.1-2.dsc
  to main/s/spip/spip_2.1.1-2.dsc
spip_2.1.1-2_all.deb
  to main/s/spip/spip_2.1.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/e1ox47l-0002ef...@franck.debian.org



Accepted nvclock 0.8b4-3 (source i386)

2010-09-18 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 14:12:59 -0700
Source: nvclock
Binary: nvclock nvclock-gtk nvclock-qt
Architecture: source i386
Version: 0.8b4-3
Distribution: unstable
Urgency: low
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 nvclock- Overclock an NVIDIA card
 nvclock-gtk - Overclock an NVIDIA card (GTK+ interface)
 nvclock-qt - Overclock an NVIDIA card (Qt interface)
Changes: 
 nvclock (0.8b4-3) unstable; urgency=low
 .
   [ Andreas Beckmann ]
   * Update Standards-Version to 3.9.1 (no changes needed).
   * Switch to debhelper compat level 8 (no changes needed).
   * Suggest nvidia-glx without alternatives.  This is now a virtual package
 provided by nvidia-glx-legacy-* as well.
   * Add myself to Uploaders.
 .
   [ Russ Allbery ]
   * Install desktop file and icon for nvclock-gtk, matching upstream.
   * Re-add builds for alpha, armel, hppa, ia64, powerpc, and sparc.
 NVIDIA hardware was more widespread than I thought.
   * Shorten the short description and fix capitalization in the long
 description.  Add cross-references for the other packages to the long
 descriptions.
Checksums-Sha1: 
 6b136ed1cabdee293d396bfd251ddd22ea0723be 1446 nvclock_0.8b4-3.dsc
 ea4e43fd98b1d60a5092355593ab512c408fa931 25403 nvclock_0.8b4-3.debian.tar.gz
 883b366ec156e15af815178c9316987a5d391a03 90542 nvclock_0.8b4-3_i386.deb
 70a91d71412c58934d49cf1939ce219612f310bd 218724 nvclock-gtk_0.8b4-3_i386.deb
 beffe7ef4fce5f144d138826af539b84bc18241b 71048 nvclock-qt_0.8b4-3_i386.deb
Checksums-Sha256: 
 41721de1d6b2adf7fece65402b4e36b21fedde1ed664e83d48f2a67b254f0d04 1446 
nvclock_0.8b4-3.dsc
 413cf22716c2ea2a3812aabbd22878d453d78293049b8959476b1dcd46912e25 25403 
nvclock_0.8b4-3.debian.tar.gz
 cf07f0cc01511d6b13c28718bab1cbf14cde54be2bad34c0c02a1153acfba1d1 90542 
nvclock_0.8b4-3_i386.deb
 e7094617b0902cb4ce54449d79514f9be5d0add689762b3e48b11dda417fabdf 218724 
nvclock-gtk_0.8b4-3_i386.deb
 db6fce941f2dc1a59f55049bea0337f0803ca04393cc2156b0ffdde55709f5a7 71048 
nvclock-qt_0.8b4-3_i386.deb
Files: 
 51d40fef1e6f1aedd6d9017e9121a4fa 1446 x11 extra nvclock_0.8b4-3.dsc
 c922ec5611ba32c2f8de21fdbee97667 25403 x11 extra nvclock_0.8b4-3.debian.tar.gz
 a83c3fb940e3182d8cd38e6782451088 90542 x11 extra nvclock_0.8b4-3_i386.deb
 ed51524d908ac4f0dfb866addfbe0f21 218724 x11 extra nvclock-gtk_0.8b4-3_i386.deb
 0378db615f18f70a26bd66afc9e24c60 71048 x11 extra nvclock-qt_0.8b4-3_i386.deb

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

iEYEARECAAYFAkyVLJsACgkQ+YXjQAr8dHZrxACdG+tpzJCXJIdWAxFhz2VX0c7W
l74An2YnA0hXZJFTemetxp9RMRVgW3MA
=nRy6
-END PGP SIGNATURE-


Accepted:
nvclock-gtk_0.8b4-3_i386.deb
  to main/n/nvclock/nvclock-gtk_0.8b4-3_i386.deb
nvclock-qt_0.8b4-3_i386.deb
  to main/n/nvclock/nvclock-qt_0.8b4-3_i386.deb
nvclock_0.8b4-3.debian.tar.gz
  to main/n/nvclock/nvclock_0.8b4-3.debian.tar.gz
nvclock_0.8b4-3.dsc
  to main/n/nvclock/nvclock_0.8b4-3.dsc
nvclock_0.8b4-3_i386.deb
  to main/n/nvclock/nvclock_0.8b4-3_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/e1ox51c-0008qp...@franck.debian.org



Accepted python-shapely 1.2.1-2 (source all)

2010-09-18 Thread Pietro Battiston
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 14 Sep 2010 18:30:47 +0200
Source: python-shapely
Binary: python-shapely
Architecture: source all
Version: 1.2.1-2
Distribution: unstable
Urgency: low
Maintainer: Pietro Battiston too...@email.it
Changed-By: Pietro Battiston too...@email.it
Description: 
 python-shapely - geometric objects, predicates, and operations
Changes: 
 python-shapely (1.2.1-2) unstable; urgency=low
 .
   * Fixes to manual from upstream version 1.2.3
   * Run tests, except wkt_locale which is broken.
   * Require newer version of debhelper to support override_dh_auto_test.
   * Updated standards version.
Checksums-Sha1: 
 4942900224aee223d757a505ba13bdab7568aa86 1382 python-shapely_1.2.1-2.dsc
 949a45fbffdb2b9d2a6c523a284fc8df806311de 9145 
python-shapely_1.2.1-2.debian.tar.gz
 58dc19a9ac823ce26895115a7bd2c3bce56b3525 54918 python-shapely_1.2.1-2_all.deb
Checksums-Sha256: 
 75a76b326f82d092f4c8e64caa5c58f446ee594fe2a7ae6a0230ce9beb93453f 1382 
python-shapely_1.2.1-2.dsc
 5b773fb223397d3ad05ca5d11b24e4044c0914d8c71ed23c1e209e86e03d62f1 9145 
python-shapely_1.2.1-2.debian.tar.gz
 74e26011ca7b8d433d80893820fbf95b95ff49bc99173131caeb8b95682a9f7d 54918 
python-shapely_1.2.1-2_all.deb
Files: 
 0b4bb33ddaee98e5f28166e29949714c 1382 python optional 
python-shapely_1.2.1-2.dsc
 611db05968550377964ee3ec6c688bce 9145 python optional 
python-shapely_1.2.1-2.debian.tar.gz
 e3c5bfdc77d49d615b5b7d96beffd4cc 54918 python optional 
python-shapely_1.2.1-2_all.deb

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

iEYEARECAAYFAkyVLzMACgkQB01zfu119ZmY+gCgpQsT5ROYtt9DHK5gluYbfQjx
6i0An0hz0ksFvlyHVQ3U/kjOtoLS+kcb
=vXdd
-END PGP SIGNATURE-


Accepted:
python-shapely_1.2.1-2.debian.tar.gz
  to main/p/python-shapely/python-shapely_1.2.1-2.debian.tar.gz
python-shapely_1.2.1-2.dsc
  to main/p/python-shapely/python-shapely_1.2.1-2.dsc
python-shapely_1.2.1-2_all.deb
  to main/p/python-shapely/python-shapely_1.2.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/e1ox5fb-0002nl...@franck.debian.org



Accepted nvidia-xconfig 256.53-1 (source i386)

2010-09-18 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 14:56:07 -0700
Source: nvidia-xconfig
Binary: nvidia-xconfig
Architecture: source i386
Version: 256.53-1
Distribution: experimental
Urgency: low
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 nvidia-xconfig - X configuration tool for non-free NVIDIA drivers
Changes: 
 nvidia-xconfig (256.53-1) experimental; urgency=low
 .
   [ Andreas Beckmann ]
   * New upstream release.
   * Update DESTDIR.diff, add FHS.diff to install in /usr instead of /usr/local
   * Update Standards-Version to 3.9.1, no changes needed.
   * Switch to debhelper compat level 8, no changes needed.
   * Recommend nvidia-glx without alternatives.  This is now a virtual package
 provided by nvidia-glx-legacy-* as well.
   * Add Depends: x11-common so that /etc/X11 exists.
   * Add myself to Uploaders.
 .
   [ Russ Allbery ]
   * Target experimental since 195.36.31-1 should ideally ship with
 squeeze.
Checksums-Sha1: 
 50d0f69fbb6ce2acac60dbb46575b35c2dc601a2 1366 nvidia-xconfig_256.53-1.dsc
 fa105b61198acd06544700a34463d1918ac1c825 96488 
nvidia-xconfig_256.53.orig.tar.bz2
 99f6047e1989de918602319eda3810b451a63355 5521 
nvidia-xconfig_256.53-1.debian.tar.gz
 405860fb024502de9ed7f6fe11e6204ef3244459 73202 nvidia-xconfig_256.53-1_i386.deb
Checksums-Sha256: 
 0601eea9fa8dee5dbea821a8c271d6a70424b6bbbede43aa23066dfccdfbbba3 1366 
nvidia-xconfig_256.53-1.dsc
 e8f8ab26cbd2fc90ef1745fb6d9463be3332442e468c8cf89dd1505b69329777 96488 
nvidia-xconfig_256.53.orig.tar.bz2
 e995b071eb63efa36fcfc2d72dc24d1fb0c5e82f52a9cd06c55ff2170a5b4c34 5521 
nvidia-xconfig_256.53-1.debian.tar.gz
 61302692840f6096f5e6b98c1cc4c42a7230bc026b6ccf2d295a2db72f04d76e 73202 
nvidia-xconfig_256.53-1_i386.deb
Files: 
 1b7131c2dfbe85d84a944b2247cc9a3b 1366 contrib/x11 extra 
nvidia-xconfig_256.53-1.dsc
 244c346026d0b562e9fa4ae6fcd40104 96488 contrib/x11 extra 
nvidia-xconfig_256.53.orig.tar.bz2
 c91ea336546f2c2d8de897e576107aac 5521 contrib/x11 extra 
nvidia-xconfig_256.53-1.debian.tar.gz
 a3c689ff032fff3434f0b5db8fa6fd05 73202 contrib/x11 extra 
nvidia-xconfig_256.53-1_i386.deb

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

iEUEARECAAYFAkyVNa4ACgkQ+YXjQAr8dHYIJwCfZZM8WhkmC43Od5wSdAUN5Kve
r+4AlAw8sh+SD9xFcdd0hUL2KG2Gesg=
=hP6l
-END PGP SIGNATURE-


Accepted:
nvidia-xconfig_256.53-1.debian.tar.gz
  to contrib/n/nvidia-xconfig/nvidia-xconfig_256.53-1.debian.tar.gz
nvidia-xconfig_256.53-1.dsc
  to contrib/n/nvidia-xconfig/nvidia-xconfig_256.53-1.dsc
nvidia-xconfig_256.53-1_i386.deb
  to contrib/n/nvidia-xconfig/nvidia-xconfig_256.53-1_i386.deb
nvidia-xconfig_256.53.orig.tar.bz2
  to contrib/n/nvidia-xconfig/nvidia-xconfig_256.53.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/e1ox5ty-00059j...@franck.debian.org



Accepted mednafen 0.8.D.3-1 (source i386)

2010-09-18 Thread Stephen Kitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 17 Sep 2010 07:18:16 +0200
Source: mednafen
Binary: mednafen
Architecture: source i386
Version: 0.8.D.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Stephen Kitt st...@sk2.org
Description: 
 mednafen   - multi-platform emulator, including NES, GB/A, Lynx, PC Engine
Changes: 
 mednafen (0.8.D.3-1) unstable; urgency=low
 .
   * New upstream version, fixing a significant memory leak.
Checksums-Sha1: 
 7e680a8869f01977330b6b4931890fb43b3f8e37 1482 mednafen_0.8.D.3-1.dsc
 b19b92101853cb653506456fd8ab1c0bb0b6e636 2442705 mednafen_0.8.D.3.orig.tar.bz2
 1d198a7dd6adca2ecad2fb270495698d77e22776 8391 mednafen_0.8.D.3-1.debian.tar.gz
 c2600416c5016bbaa0f880e37b70d9fcf62f8d79 1959432 mednafen_0.8.D.3-1_i386.deb
Checksums-Sha256: 
 be75bb16b86b72faefbaff0aac2c8615288fe423ca4a9af4848229ce00962114 1482 
mednafen_0.8.D.3-1.dsc
 d678178f0dc03c89c7a0c83bf0c721af406ee53dfa79295432ab13722ed0eea2 2442705 
mednafen_0.8.D.3.orig.tar.bz2
 a5f629131c3055f6b8daa577dc40e87e1d615065959e034a5a05fe1676d40425 8391 
mednafen_0.8.D.3-1.debian.tar.gz
 a081a675852b58fc457cff84a5990d8ec49470cccfb485b3b9b8ba825f7e4885 1959432 
mednafen_0.8.D.3-1_i386.deb
Files: 
 5d41927b904e16b51bd3f91914a46408 1482 games optional mednafen_0.8.D.3-1.dsc
 57d22805071becd81858b0c088a275e5 2442705 games optional 
mednafen_0.8.D.3.orig.tar.bz2
 dff79df5468e9083cab103c354c95c29 8391 games optional 
mednafen_0.8.D.3-1.debian.tar.gz
 847914f745c3f80fb47f1eef0157d2f9 1959432 games optional 
mednafen_0.8.D.3-1_i386.deb

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

iEYEARECAAYFAkyVOHIACgkQB01zfu119Zkr6gCgsF8/PGG1KS6i+eaqrNqHjGsh
CT4AnRduCNeB+4oqlku2EjU5A+xIcv0b
=Uz4F
-END PGP SIGNATURE-


Accepted:
mednafen_0.8.D.3-1.debian.tar.gz
  to main/m/mednafen/mednafen_0.8.D.3-1.debian.tar.gz
mednafen_0.8.D.3-1.dsc
  to main/m/mednafen/mednafen_0.8.D.3-1.dsc
mednafen_0.8.D.3-1_i386.deb
  to main/m/mednafen/mednafen_0.8.D.3-1_i386.deb
mednafen_0.8.D.3.orig.tar.bz2
  to main/m/mednafen/mednafen_0.8.D.3.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/e1ox5il-0006kc...@franck.debian.org



Accepted shelldap 0.2+hg20100715-1 (source all)

2010-09-18 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 Sep 2010 00:04:55 +0200
Source: shelldap
Binary: shelldap
Architecture: source all
Version: 0.2+hg20100715-1
Distribution: unstable
Urgency: low
Maintainer: Salvatore Bonaccorso salvatore.bonacco...@gmail.com
Changed-By: Salvatore Bonaccorso salvatore.bonacco...@gmail.com
Description: 
 shelldap   - shell-like interface for browsing LDAP servers and editing their
Changes: 
 shelldap (0.2+hg20100715-1) unstable; urgency=low
 .
   * New upstream version from mercurial snapshot from 15. Jul 2010.
   * Convert to '3.0 (quilt)' source package format. Drop README.source as not
 needed anymore.
   * debian/control: Drop Build-Depends on quilt (= 0.46-7).
   * debian/rules: Remove --with quilt usage in rules makefile.
   * debian/copyright:
 - Fix Format-Specification URL.
 - Update copyright years for debian/* packaging and adjust layout
   for debian/* packaging stanza.
   * Bump Standards-Version to 3.9.1.
 - debian/copyright: Drop reference to /usr/share/common-licenses/BSD
   as new Debian Policy droped BSD licenses from the list of licenses
   which should be refered to the file under `/usr/share/common-licenses'.
Checksums-Sha1: 
 e6cc71749ef0824ae091859ae134da3d9d837cd9 1156 shelldap_0.2+hg20100715-1.dsc
 964456cd9f023b851b014021d4e9aeb017af7958 12781 
shelldap_0.2+hg20100715.orig.tar.gz
 045f29548ca5532c0de3f8e57cd3bfa3b01d3ddb 3112 
shelldap_0.2+hg20100715-1.debian.tar.gz
 8538b5c5901aa6ccec625f269234accf59aa1fd9 20822 
shelldap_0.2+hg20100715-1_all.deb
Checksums-Sha256: 
 1d097b5061c2b951fafb83224cc5d825c46347187fa4d46e2a0f94d4b6362c0a 1156 
shelldap_0.2+hg20100715-1.dsc
 544d8da0420b18862d6664c6809d82f82dec2648f1393fb8fedb5a32465fa581 12781 
shelldap_0.2+hg20100715.orig.tar.gz
 9e49f369b1e66edd1f57404a5ed9d24cd16fd8fa8f53e4bf3539e6806a6f82a2 3112 
shelldap_0.2+hg20100715-1.debian.tar.gz
 24159fe0cb08dd868e0efbf44e0ae08446343e0f64360cb53349e8eb11c853b3 20822 
shelldap_0.2+hg20100715-1_all.deb
Files: 
 01490fe7677d4d6025a52b0f212af580 1156 utils optional 
shelldap_0.2+hg20100715-1.dsc
 ef4e72948bfa8bceeba3f5731294cdde 12781 utils optional 
shelldap_0.2+hg20100715.orig.tar.gz
 a67a572a99c8cedf98595f8e6175e84a 3112 utils optional 
shelldap_0.2+hg20100715-1.debian.tar.gz
 d0efe94477ef9ea3ffe57d16d06ef9f0 20822 utils optional 
shelldap_0.2+hg20100715-1_all.deb

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

iEYEARECAAYFAkyVOAIACgkQvUVnU1GNo5QB5wCfQp+4m2qPBdWKuGTM16TyX4xm
suQAnjY/UmGyKeY9Dcb2TzJdUDKtmaMP
=LH33
-END PGP SIGNATURE-


Accepted:
shelldap_0.2+hg20100715-1.debian.tar.gz
  to main/s/shelldap/shelldap_0.2+hg20100715-1.debian.tar.gz
shelldap_0.2+hg20100715-1.dsc
  to main/s/shelldap/shelldap_0.2+hg20100715-1.dsc
shelldap_0.2+hg20100715-1_all.deb
  to main/s/shelldap/shelldap_0.2+hg20100715-1_all.deb
shelldap_0.2+hg20100715.orig.tar.gz
  to main/s/shelldap/shelldap_0.2+hg20100715.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/e1ox5is-0006mm...@franck.debian.org



Accepted lsb 3.2-24 (source all amd64)

2010-09-18 Thread Chris Lawrence
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 17:08:17 -0500
Source: lsb
Binary: lsb-core lsb-graphics lsb-cxx lsb-desktop lsb-qt4 lsb-languages 
lsb-multimedia lsb-printing lsb lsb-base lsb-release
Architecture: source all amd64
Version: 3.2-24
Distribution: unstable
Urgency: low
Maintainer: Chris Lawrence lawre...@debian.org
Changed-By: Chris Lawrence lawre...@debian.org
Description: 
 lsb- Linux Standard Base 3.2 support package
 lsb-base   - Linux Standard Base 3.2 init script functionality
 lsb-core   - Linux Standard Base 3.2 core support package
 lsb-cxx- Linux Standard Base 3.2 C++ support package
 lsb-desktop - Linux Standard Base 3.2 Desktop support package
 lsb-graphics - Linux Standard Base 3.2 graphics support package
 lsb-languages - Linux Standard Base 3.2 Runtime Languages package
 lsb-multimedia - Linux Standard Base 3.2 Multimedia package
 lsb-printing - Linux Standard Base 3.2 Printing package
 lsb-qt4- Linux Standard Base 3.2 Qt4 support package
 lsb-release - Linux Standard Base version reporting utility
Closes: 540208 542610 545896 586575 595159 596438
Changes: 
 lsb (3.2-24) unstable; urgency=low
 .
   * Improve detection of Debian version when there is a tie in
 APT's sources.list.  Patch by Giovanni Mascellani.  (Closes: #540208)
   * Fix test for PID file in init-functions.  Patch by Keith O'Brien.
 (Closes: #545896)
   * Fix reporting for more recent versions of Debian GNU/kFreeBSD.  Patch
 by Gonéri Le Bouder.  (Closes: #595159)
   * Use --print-architecture instead of --print-installation-architecture
 in lsb-core postinst.  (Closes: #542610)
   * Fix formatting error in lsb_release(1).  Patch by Adam Guthrie.
 (Closes: #586575)
   * Update pt_BR translation for debconf messages, thanks to Flamarion Jorge.
 (Closes: #596438)
Checksums-Sha1: 
 dc9467ad3f3407ebe160e85193e8f3908362896f 947 lsb_3.2-24.dsc
 baaaf194855b960c6beacbfdfc5e61b81b2743fd 56055 lsb_3.2-24.tar.gz
 41b6ea35c6c601b9cf37eccdb09ea4ba0c3b2330 15392 lsb_3.2-24_all.deb
 de02fa9fb69db7e4c1f9e3a21b4dec61b73c033e 20688 lsb-base_3.2-24_all.deb
 9cfe78e4011d028a192a06f0a79239f449a5a44e 21766 lsb-release_3.2-24_all.deb
 bec933a4f78463b61eb9858f7e47cadb66b7ff0a 38550 lsb-core_3.2-24_amd64.deb
 4f25bcd5ce607e924144bb26530ec9c42e9b6c8c 15436 lsb-graphics_3.2-24_amd64.deb
 d3292488cf974202730cb8d6284f51be3d34456d 15404 lsb-cxx_3.2-24_amd64.deb
 81441b00e8e76a30a2070290e3b2b38a65adf283 15542 lsb-desktop_3.2-24_amd64.deb
 7d8836638e0c093daac7ca7632ffeb5fc586cc5c 15470 lsb-qt4_3.2-24_amd64.deb
 153ea36e114f87d9e22c1f061095b8e5cf26b2f1 15430 lsb-languages_3.2-24_amd64.deb
 bdafd70fbfae5efe13b26fb895ea08480ffd36f5 15410 lsb-multimedia_3.2-24_amd64.deb
 f37aef9504dca35ab0b640eadcf4e48027027e01 15426 lsb-printing_3.2-24_amd64.deb
Checksums-Sha256: 
 c9e7f4af05e4b286c3d397036ba171ab3ac67f590d6c14c256f7afe00e71fcd1 947 
lsb_3.2-24.dsc
 081ad0de53aa3beaeb1f97399f0b63d07d4ee9526d3949c7292fe2eede8efef3 56055 
lsb_3.2-24.tar.gz
 0515da9600025edd3cdb16e4fae6f0ca4646e417468b2498ea026368b16cb8d1 15392 
lsb_3.2-24_all.deb
 9c588feefda30339ff443e5ec44161e4f9aa1e0132d454cd8c9c6e8b42c2de40 20688 
lsb-base_3.2-24_all.deb
 ab50b8873b08c439c30e2a643ee4420bf75827f49459fb59eb38895ff0299560 21766 
lsb-release_3.2-24_all.deb
 178f082beea3ff191b5c0be3c5f29044caa3670223d7e732eced7a52f8bea167 38550 
lsb-core_3.2-24_amd64.deb
 ee18e22656d151ee3fb9cd0100d463c336453e728e3ceda1b4763f0f3be1cb98 15436 
lsb-graphics_3.2-24_amd64.deb
 b40f385c15b2cbe70e74bee7031f6aa4217ee3e69dcc0353d9c0c49aca66f149 15404 
lsb-cxx_3.2-24_amd64.deb
 5a0ec26ab8cd023b2be3efac3f71f92b174e5f99737ccf07fa68e1c046504020 15542 
lsb-desktop_3.2-24_amd64.deb
 98f2f3909e8d601b9b636efb853609c753a54f6a8d8a1a698c330e56f04316a9 15470 
lsb-qt4_3.2-24_amd64.deb
 44195a7a815e0ddcf8da72e3fbdf9949561fc1270cb9f32c7aa43ffaa2aad52c 15430 
lsb-languages_3.2-24_amd64.deb
 3db0cc3eac5e15457468f14f2d9fc93f883ff58227519c2dea11e61fc39b6461 15410 
lsb-multimedia_3.2-24_amd64.deb
 29ef271ed320eca6795eaca15af10e1b59a8883b0cfadd687e8233fd4ae8f1ea 15426 
lsb-printing_3.2-24_amd64.deb
Files: 
 92b98db3540a20d9119249238410e439 947 misc extra lsb_3.2-24.dsc
 234059e344fa44b3293a55f3811892ee 56055 misc extra lsb_3.2-24.tar.gz
 e5c7e6b04bb21a2f8dee24f86a759a74 15392 misc extra lsb_3.2-24_all.deb
 41d3d29f9f90bda02a7b9239fa422f11 20688 misc required lsb-base_3.2-24_all.deb
 d7fe42c50f7b77b4e273704f63223122 21766 misc extra lsb-release_3.2-24_all.deb
 c9329392edfaa95a671ccbe542cd719d 38550 misc extra lsb-core_3.2-24_amd64.deb
 209eec87182c6b667959f9e6e3840f01 15436 misc extra lsb-graphics_3.2-24_amd64.deb
 e821e70cccb5c8f3e1f95c53807a3c01 15404 misc extra lsb-cxx_3.2-24_amd64.deb
 48bfe8f34df915d947bb1824f797129e 15542 misc extra lsb-desktop_3.2-24_amd64.deb
 3aaf524a8db12dc5eb95b95e97c1e741 15470 misc extra lsb-qt4_3.2-24_amd64.deb
 01ca7337bb39e42bc91ab3f6e0cef6ba 15430 misc extra 
lsb-languages_3.2-24_amd64.deb
 

Accepted nvidia-graphics-drivers 256.53-1 (source amd64)

2010-09-18 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 15:07:19 -0700
Source: nvidia-graphics-drivers
Binary: nvidia-glx nvidia-glx-ia32 nvidia-glx-dev libgl1-nvidia-glx 
libgl1-nvidia-glx-ia32 libgl1-nvidia-dev nvidia-kernel-dkms 
nvidia-kernel-source nvidia-libvdpau1 nvidia-libvdpau1-ia32 nvidia-libvdpau-dev 
nvidia-vdpau-driver nvidia-vdpau-driver-ia32 nvidia-smi libcuda1 libcuda1-ia32 
libcuda1-dev libnvidia-compiler libnvidia-compiler-ia32 libnvidia-compiler1 
libnvidia-compiler1-ia32 nvidia-opencl-common nvidia-opencl-icd 
nvidia-opencl-icd-ia32 nvidia-libopencl1 nvidia-libopencl1-ia32 
nvidia-libopencl1-dev libgl1-nvidia-alternatives 
libgl1-nvidia-alternatives-ia32 libglx-nvidia-alternatives
Architecture: source amd64
Version: 256.53-1
Distribution: experimental
Urgency: low
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 libcuda1   - NVIDIA CUDA runtime library
 libcuda1-dev - NVIDIA CUDA development files
 libcuda1-ia32 - NVIDIA CUDA runtime library (32-bit)
 libgl1-nvidia-alternatives - simplifies replacing MESA libGL with GPU vendor 
libraries
 libgl1-nvidia-alternatives-ia32 - simplifies replacing MESA libGL with GPU 
vendor libraries (32-bit
 libgl1-nvidia-dev - NVIDIA OpenGL development files${nvidia:LegacyDesc}
 libgl1-nvidia-glx - NVIDIA binary OpenGL libraries${nvidia:LegacyDesc}
 libgl1-nvidia-glx-ia32 - NVIDIA binary OpenGL 32-bit 
libraries${nvidia:LegacyDesc}
 libglx-nvidia-alternatives - simplifies replacing Xorg module libglx.so with 
GPU vendor librar
 libnvidia-compiler - NVIDIA runtime compiler library
 libnvidia-compiler-ia32 - NVIDIA runtime compiler library (32-bit)
 libnvidia-compiler1 - NVIDIA runtime compiler library (transitional package)
 libnvidia-compiler1-ia32 - NVIDIA runtime compiler library (32-bit) 
(transitional package)
 nvidia-glx - NVIDIA binary Xorg driver${nvidia:LegacyDesc}
 nvidia-glx-dev - NVIDIA OpenGL development files (transitional 
package)${nvidia:Le
 nvidia-glx-ia32 - NVIDIA binary driver 32-bit libs${nvidia:LegacyDesc}
 nvidia-kernel-dkms - NVIDIA binary kernel module DKMS 
source${nvidia:LegacyDesc}
 nvidia-kernel-source - NVIDIA binary kernel module source${nvidia:LegacyDesc}
 nvidia-libopencl1 - NVIDIA OpenCL library
 nvidia-libopencl1-dev - NVIDIA OpenCL development files
 nvidia-libopencl1-ia32 - NVIDIA OpenCL 32-bit library
 nvidia-libvdpau-dev - NVIDIA vdpau development files (transitional package)
 nvidia-libvdpau1 - NVIDIA vdpau libraries (transitional package)
 nvidia-libvdpau1-ia32 - NVIDIA vdpau 32-bit libraries (transitional package)
 nvidia-opencl-common - NVIDIA OpenCL driver
 nvidia-opencl-icd - NVIDIA OpenCL ICD
 nvidia-opencl-icd-ia32 - NVIDIA OpenCL ICD (32-bit)
 nvidia-smi - NVIDIA System Management Interface
 nvidia-vdpau-driver - NVIDIA vdpau driver
 nvidia-vdpau-driver-ia32 - NVIDIA vdpau 32-bit driver
Closes: 586958 592205 592574 594310 595210
Changes: 
 nvidia-graphics-drivers (256.53-1) experimental; urgency=low
 .
   [ Andreas Beckmann ]
   * New upstream release.
 (Closes: #586958, #592205, #592574, #594310, #595210)
   * Upload to experimental.
   * Add libxvmc1 to Build-Depends.
   * Several libraries were renamed and SONAMEs were changed by upstream.
   * Ship new header cudaVDPAU.h.
   * Update symbols control files.
   * Update nv-kernel.ids.
   * Update lintian overrides.
   * Add Conflicts: fglrx-driver, fglrx-glx, fglrx-glx-ia32 to the
 libgl*-nvidia-alternatives packages, too.
   * libgl1-nvidia-alternatives-ia32: abort before configuring on broken
 systems, i.e. /usr/lib32 being a symlink pointing to
 /emul/ia32-linux/usr/lib (reinstall libc6-i386 to fix)
   * debian/*.postinst(configure): abort early if DPKG_MAINTSCRIPT_PACKAGE is
 not set (usually if called from dpkg-reconfigure, see #560317)
   * Add myself to Uploaders.
 .
   [ Russ Allbery ]
   * Remove Andres Mejia from Uploaders at his request.
Checksums-Sha1: 
 8f6a38ac672697c20350317f7cb4351d2b968ffe 2120 
nvidia-graphics-drivers_256.53-1.dsc
 8c115c95675b57c341ce60a5fba2a10ee0fdea61 66191844 
nvidia-graphics-drivers_256.53.orig.tar.gz
 b6425ca8cad757a2a5b892b01dac87147121dda2 68569 
nvidia-graphics-drivers_256.53-1.debian.tar.gz
 a90b8e4e3b4c12f9d9b2b78b81124b203f6bb16b 3371400 nvidia-glx_256.53-1_amd64.deb
 2fc6199f576bdd90dbd5d303647cfb3f92b995d3 50714 
nvidia-glx-ia32_256.53-1_amd64.deb
 90a148cd86c7ccfdbbfeb8f6ad516c3acc1feeb4 50010 
nvidia-glx-dev_256.53-1_amd64.deb
 532086e660289ade2d3a2bf0f218e0b1a22eab52 7161298 
libgl1-nvidia-glx_256.53-1_amd64.deb
 7098df8781d1a3c029316e1865ea368e2595bcd2 6485024 
libgl1-nvidia-glx-ia32_256.53-1_amd64.deb
 dca1784f5e382b2003ac6fc62cb172add7c14528 200156 
libgl1-nvidia-dev_256.53-1_amd64.deb
 6f74f2063d80249aaac0dc7aecf16e0b9af0eb9b 7351456 
nvidia-kernel-dkms_256.53-1_amd64.deb
 51126b5af1bd499fc7d11905a6e6b126a5e8f3c3 6813520 
nvidia-kernel-source_256.53-1_amd64.deb
 

Accepted nvidia-kernel-common 20100522+2 (source all)

2010-09-18 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 15:41:33 -0700
Source: nvidia-kernel-common
Binary: nvidia-kernel-common
Architecture: source all
Version: 20100522+2
Distribution: unstable
Urgency: low
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 nvidia-kernel-common - NVIDIA binary kernel module support files
Changes: 
 nvidia-kernel-common (20100522+2) unstable; urgency=low
 .
   [ Andreas Beckmann ]
   * Switch to dpkg-maintscript-helper for renaming config files.
   * Put the common rename/remove conffile code fragment into
 debian/nvidia-kernel-common.dpkg-maintscript-helper and copy it to
 {preinst,postinst,postrm}.debhelper.
   * Add Vcs-* URLs.
   * Update Standards-Version to 3.9.1, no changes needed.
   * Switch to debhelper compat level 8.
 .
   [ Russ Allbery ]
   * Add Andreas Beckmann to Uploaders.
Checksums-Sha1: 
 40c2b91773045fd97087068d557216c79063990a 1059 
nvidia-kernel-common_20100522+2.dsc
 ed53397de0bb58f508cda30136c5d9a0e8d5cf6e 5625 
nvidia-kernel-common_20100522+2.tar.gz
 a1d74cd3ca86a3c52fdefeb43b5fe5f01256313e 7378 
nvidia-kernel-common_20100522+2_all.deb
Checksums-Sha256: 
 1b9d55abd7c90a5bc8cc411ab5e0c1aefeb999f920d9d49fc720453456d48702 1059 
nvidia-kernel-common_20100522+2.dsc
 7ff67260b4b5e80f620d2d27e200d47862457bf5c764bbf372672f04691f3a6a 5625 
nvidia-kernel-common_20100522+2.tar.gz
 3acc23485430aa370a819cd0d10972b8c875622f82ab85526f16ce741cc40332 7378 
nvidia-kernel-common_20100522+2_all.deb
Files: 
 75213ab3dde7374143be18d2e71a66ff 1059 contrib/kernel optional 
nvidia-kernel-common_20100522+2.dsc
 55adf67324b24b4d22a5d59b579abcbe 5625 contrib/kernel optional 
nvidia-kernel-common_20100522+2.tar.gz
 f00c198fb7a76a4f025a887da275adf9 7378 contrib/kernel optional 
nvidia-kernel-common_20100522+2_all.deb

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

iEYEARECAAYFAkyVQEQACgkQ+YXjQAr8dHYBOgCeIrGpzNzhsIN9GwFoERYq/mgr
QB4AnRV3CiEgrga+Juvtll1CSsw835Vz
=7iQf
-END PGP SIGNATURE-


Accepted:
nvidia-kernel-common_20100522+2.dsc
  to contrib/n/nvidia-kernel-common/nvidia-kernel-common_20100522+2.dsc
nvidia-kernel-common_20100522+2.tar.gz
  to contrib/n/nvidia-kernel-common/nvidia-kernel-common_20100522+2.tar.gz
nvidia-kernel-common_20100522+2_all.deb
  to contrib/n/nvidia-kernel-common/nvidia-kernel-common_20100522+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/e1ox6cm-0001co...@franck.debian.org



Accepted quassel 0.7.0-1 (source i386 all)

2010-09-18 Thread Thomas Mueller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Sep 2010 19:19:40 +0200
Source: quassel
Binary: quassel-core quassel-client quassel quassel-data quassel-client-kde4 
quassel-kde4 quassel-data-kde4
Architecture: source i386 all
Version: 0.7.0-1
Distribution: unstable
Urgency: low
Maintainer: Thomas Mueller thomas.muel...@tmit.eu
Changed-By: Thomas Mueller thomas.muel...@tmit.eu
Description: 
 quassel- distributed IRC client - Qt-based monolithic core+client
 quassel-client - distributed IRC client - Qt-based client component
 quassel-client-kde4 - distributed IRC client - KDE-based client
 quassel-core - distributed IRC client - core component
 quassel-data - distributed IRC client - shared data (Qt version)
 quassel-data-kde4 - distributed IRC client - shared data (KDE4 version)
 quassel-kde4 - distributed IRC client - KDE-based monolithic core+client
Changes: 
 quassel (0.7.0-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 6ac4a464099310cea5829de6ed5f0115f18dac2d 1364 quassel_0.7.0-1.dsc
 b1bbb0b6c47e33bf7ce8c83c55ade2a68f40da72 2714806 quassel_0.7.0.orig.tar.bz2
 961d6ada52d95ba37f16147cdfc9474a76602e54 17401 quassel_0.7.0-1.debian.tar.gz
 41c9e344c0e877dd3ce3bbce3228375eb77f42ee 1513984 quassel-core_0.7.0-1_i386.deb
 aeefc7e2393e48262cdc14c3ca0081640f22d1af 2481578 
quassel-client_0.7.0-1_i386.deb
 3575f6d1a1cadf72e37ae381cbf7513ce12c13dd 2936858 quassel_0.7.0-1_i386.deb
 74bec057f887ce75b9faf15eb1af3eeef111c0a2 17988 quassel-data_0.7.0-1_all.deb
 acd4133f94e6199c907b4ae921640d21258049f9 925910 
quassel-client-kde4_0.7.0-1_i386.deb
 50e0f2b0d080a85d8b853e8a203f8b453e2893a8 1194902 quassel-kde4_0.7.0-1_i386.deb
 86735237f5ec8ccf46c2e9be4f494f9028efc453 980692 
quassel-data-kde4_0.7.0-1_all.deb
Checksums-Sha256: 
 fc0deba3074669a5fbd3199e7bbec4ef6fafc68973a88a265e0f731cb41c9d2a 1364 
quassel_0.7.0-1.dsc
 31efd5257360b1bfb21f1bf31eff5c0313ce0d9c11d777b99b7c480c2311cdd0 2714806 
quassel_0.7.0.orig.tar.bz2
 f10ea9659ef280518633dc3ec8b364c3268999643572ba37da446f33afd58240 17401 
quassel_0.7.0-1.debian.tar.gz
 dfc4321d886eb9b63ec8a216b03f38e38e06823f05e3bb17e09d651db23d6bd1 1513984 
quassel-core_0.7.0-1_i386.deb
 ab0234a052e05c0fe4d1b7aeec6bcc1b264abedfbac9615d98376961a80d22ce 2481578 
quassel-client_0.7.0-1_i386.deb
 df0dafb1e1bf5576e743f451c9f9a4e5fbcb4099cc6225eeebac383c0bdd34b8 2936858 
quassel_0.7.0-1_i386.deb
 2ede8bc89d47df9850f60daf54d920366f967f1a8adbce4229f32b201b5b16f0 17988 
quassel-data_0.7.0-1_all.deb
 9b7f86f18e45f407bf98ce2d5838b907c170f29c3f9c2b996039937e6dc2d1f9 925910 
quassel-client-kde4_0.7.0-1_i386.deb
 625c94f42f88d64b7c2d04df1995f7a26a4e366d59dd49ca638497a262649d49 1194902 
quassel-kde4_0.7.0-1_i386.deb
 75694d65491716def7599508738178334d48373407c989d6879f36d1ed52fc06 980692 
quassel-data-kde4_0.7.0-1_all.deb
Files: 
 94d503b123a4abd60955260a13b9dc40 1364 net optional quassel_0.7.0-1.dsc
 62bd372175bc9614896427b351fc9e4e 2714806 net optional 
quassel_0.7.0.orig.tar.bz2
 521baf5f185f0b355084f69bcfe75126 17401 net optional 
quassel_0.7.0-1.debian.tar.gz
 a2bcde39924e79daa8ea93d26b473cea 1513984 net optional 
quassel-core_0.7.0-1_i386.deb
 aeabbcaf7f23cb7a73c572b55f0ed729 2481578 net optional 
quassel-client_0.7.0-1_i386.deb
 6686e6fe4e512b24a2514664ce7aeda9 2936858 net optional quassel_0.7.0-1_i386.deb
 fbd5b55fd69c60cd81262a45a71f937d 17988 net optional 
quassel-data_0.7.0-1_all.deb
 346a5e5948a4052e1724308a1f80c549 925910 net optional 
quassel-client-kde4_0.7.0-1_i386.deb
 e2f4ccc87d8fe74f2afd5dfa3525d408 1194902 net optional 
quassel-kde4_0.7.0-1_i386.deb
 2b494ee56c3d4788552b35f5e436c760 980692 net optional 
quassel-data-kde4_0.7.0-1_all.deb

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

iEYEARECAAYFAkyVEUIACgkQOB0qx4EksQA0/wCdGcrTQzERn/tGc9Jbf7jZPxBa
5XUAniy602+T5RFBvY83/tMcjR4yxBNb
=0ABT
-END PGP SIGNATURE-


Accepted:
quassel-client-kde4_0.7.0-1_i386.deb
  to main/q/quassel/quassel-client-kde4_0.7.0-1_i386.deb
quassel-client_0.7.0-1_i386.deb
  to main/q/quassel/quassel-client_0.7.0-1_i386.deb
quassel-core_0.7.0-1_i386.deb
  to main/q/quassel/quassel-core_0.7.0-1_i386.deb
quassel-data-kde4_0.7.0-1_all.deb
  to main/q/quassel/quassel-data-kde4_0.7.0-1_all.deb
quassel-data_0.7.0-1_all.deb
  to main/q/quassel/quassel-data_0.7.0-1_all.deb
quassel-kde4_0.7.0-1_i386.deb
  to main/q/quassel/quassel-kde4_0.7.0-1_i386.deb
quassel_0.7.0-1.debian.tar.gz
  to main/q/quassel/quassel_0.7.0-1.debian.tar.gz
quassel_0.7.0-1.dsc
  to main/q/quassel/quassel_0.7.0-1.dsc
quassel_0.7.0-1_i386.deb
  to main/q/quassel/quassel_0.7.0-1_i386.deb
quassel_0.7.0.orig.tar.bz2
  to main/q/quassel/quassel_0.7.0.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/e1ox77q-0007op...@franck.debian.org



Accepted gfxboot 4.3.1-2 (source i386)

2010-09-18 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 Sep 2010 01:41:57 +0200
Source: gfxboot
Binary: gfxboot gfxboot-dev
Architecture: source i386
Version: 4.3.1-2
Distribution: experimental
Urgency: low
Maintainer: Debian Syslinux Maintainers sysli...@lists.debian-maintainers.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 gfxboot- tool to test and create graphical boot logos (runtime)
 gfxboot-dev - tool to test and create graphical boot logos (development)
Closes: 597273
Changes: 
 gfxboot (4.3.1-2) experimental; urgency=low
 .
   * Also building on hurd-i386 (Closes: #597273).
Checksums-Sha1: 
 103ee8c9925f108573f612058261faa1a575fa6e 1329 gfxboot_4.3.1-2.dsc
 87230d1e2a62159172753e00f1b2611e44ab3954 4403 gfxboot_4.3.1-2.diff.gz
 e6d0c33c59809ceb98df52ae0339df1059386e1f 28834 gfxboot_4.3.1-2_i386.deb
 a78f7ba7402c30effe795994879fdf7d54d4acc5 104100 gfxboot-dev_4.3.1-2_i386.deb
Checksums-Sha256: 
 185275cfce595e276852f55495287c990ada68601583d97a6eb2f041ecd94275 1329 
gfxboot_4.3.1-2.dsc
 99827c5dbd05a9472f6cf00e1458d5a8447224e7e5ba53787349a444e5ecf3ce 4403 
gfxboot_4.3.1-2.diff.gz
 459e55f423dff1507140577c2b9d40b08f0dd164943b4fa2d17c008b8a21737b 28834 
gfxboot_4.3.1-2_i386.deb
 26e4cdce0285919cdbe55ca201660ee8d9dd341c71824ae2a3ad506cd16bc28c 104100 
gfxboot-dev_4.3.1-2_i386.deb
Files: 
 dd78eab1f58b5206ecd81bbdb16f5fc1 1329 misc extra gfxboot_4.3.1-2.dsc
 5f3e89b65e4bf71f56390b77520b6407 4403 misc extra gfxboot_4.3.1-2.diff.gz
 86390f5a4abb9a3f574bc1d764949f3d 28834 misc extra gfxboot_4.3.1-2_i386.deb
 02a79b38b60f4642a185a9520ba8a6fc 104100 misc extra gfxboot-dev_4.3.1-2_i386.deb

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

iEYEARECAAYFAkyVTwAACgkQ+C5cwEsrK57UAwCfYpF8WO/+8AhX4GjENIm/7CAU
RLEAnRSDxomss+ewqqgiMvwO3YOKqglq
=ZEyL
-END PGP SIGNATURE-


Accepted:
gfxboot-dev_4.3.1-2_i386.deb
  to main/g/gfxboot/gfxboot-dev_4.3.1-2_i386.deb
gfxboot_4.3.1-2.diff.gz
  to main/g/gfxboot/gfxboot_4.3.1-2.diff.gz
gfxboot_4.3.1-2.dsc
  to main/g/gfxboot/gfxboot_4.3.1-2.dsc
gfxboot_4.3.1-2_i386.deb
  to main/g/gfxboot/gfxboot_4.3.1-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/e1ox7m6-0001bq...@franck.debian.org



Accepted kuvert 2.0.4 (source i386)

2010-09-18 Thread Alexander Zangerl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 16 Sep 2010 15:14:10 +1000
Source: kuvert
Binary: kuvert
Architecture: source i386
Version: 2.0.4
Distribution: unstable
Urgency: low
Maintainer: Alexander Zangerl a...@debian.org
Changed-By: Alexander Zangerl a...@debian.org
Description: 
 kuvert - A wrapper that encrypts or signs outgoing mail
Changes: 
 kuvert (2.0.4) unstable; urgency=low
 .
   * lifted standards version
   * added support for optional smtp authentication (for outbound mail)
 this requires authen::sasl which was added to the dependencies.
Checksums-Sha1: 
 e184cf995f034a2f3dfd251975169744ad821f30 694 kuvert_2.0.4.dsc
 07449378948e5600872ff435b9359af5f735d841 118358 kuvert_2.0.4.tar.gz
 bf31463ba46e1ff98a187ad6b00d8dedf0d64b6d 49584 kuvert_2.0.4_i386.deb
Checksums-Sha256: 
 bf5969bca39aff9b1963ca274c4c67b14b7c565310013ab0226ef8f11a6d9d6d 694 
kuvert_2.0.4.dsc
 5314b5c6aa4cb8276b4662d1e93e45c4de23bef323e3db3e411e4dd0d081238d 118358 
kuvert_2.0.4.tar.gz
 c6138d4f9309f21ce8611564d9bfac532ead7742c0d5b089a4ac25ab5195b886 49584 
kuvert_2.0.4_i386.deb
Files: 
 87886c9a8089bacd1fdfe0f6e4228167 694 mail extra kuvert_2.0.4.dsc
 e9984b2428d2c6f5a6e93d08464a8041 118358 mail extra kuvert_2.0.4.tar.gz
 15bb7891c8248c0df45dbfcbb135edac 49584 mail extra kuvert_2.0.4_i386.deb

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

iEYEARECAAYFAkyS7vYACgkQpy/2bEK9ZF00IgCeJ3lwAIxEHqMXR+0HzUNh6X7T
YlsAoJLCgKRWDuisGt11iqWsyjdD5L14
=JhPa
-END PGP SIGNATURE-


Accepted:
kuvert_2.0.4.dsc
  to main/k/kuvert/kuvert_2.0.4.dsc
kuvert_2.0.4.tar.gz
  to main/k/kuvert/kuvert_2.0.4.tar.gz
kuvert_2.0.4_i386.deb
  to main/k/kuvert/kuvert_2.0.4_i386.deb


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



Accepted squid3 3.1.6-1.1 (source all amd64)

2010-09-18 Thread Steffen Joeris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 13 Sep 2010 17:07:51 +1000
Source: squid3
Binary: squid3 squid3-dbg squid3-common squidclient squid-cgi
Architecture: source all amd64
Version: 3.1.6-1.1
Distribution: unstable
Urgency: high
Maintainer: Luigi Gangitano lu...@debian.org
Changed-By: Steffen Joeris wh...@debian.org
Description: 
 squid-cgi  - A full featured Web Proxy cache (HTTP proxy) - control CGI
 squid3 - A full featured Web Proxy cache (HTTP proxy)
 squid3-common - A full featured Web Proxy cache (HTTP proxy) - common files
 squid3-dbg - A full featured Web Proxy cache (HTTP proxy) - Debug symbols
 squidclient - A full featured Web Proxy cache (HTTP proxy) - control utility
Closes: 596086
Changes: 
 squid3 (3.1.6-1.1) unstable; urgency=high
 .
   * Non-maintainer upload by the security team
   * Fix DoS due to wrong string handling (Closes: #596086)
 Fixes: CVE-2010-3072
Checksums-Sha1: 
 0c30cdcdf2e2890feb82b8e459513a162f0d2a98 1269 squid3_3.1.6-1.1.dsc
 166740246b6f8c077f1c31c7d5387e087caa36c8 18873 squid3_3.1.6-1.1.diff.gz
 5351e7b3d5edeeea9b7542905b68f6a17d0b9319 193770 squid3-common_3.1.6-1.1_all.deb
 a809e1c0ffd1dc400dcf85e99d673e3c5ead0faf 1502952 squid3_3.1.6-1.1_amd64.deb
 cff1c3e2c4f10b7b395dd18827db0ca160f438c3 5614614 squid3-dbg_3.1.6-1.1_amd64.deb
 87b60b8b60e3e95d027040235693c468764b3df5 105408 squidclient_3.1.6-1.1_amd64.deb
 c2496198b1977c85cbf7aa926d0fe9c929103bcf 107808 squid-cgi_3.1.6-1.1_amd64.deb
Checksums-Sha256: 
 c76aaccfeba8724e6e466749c8c3c40597360098690aadf05e0fb602e4b0d5a1 1269 
squid3_3.1.6-1.1.dsc
 e7418f2318d514bcffa90037134b18dfc27dfac1bf1d556107abe2e25fb3df01 18873 
squid3_3.1.6-1.1.diff.gz
 aee9ecca60cb69012ed417d602316b4230411dfed5916f3557808fe8e70cee2f 193770 
squid3-common_3.1.6-1.1_all.deb
 220c2aae5eafc12e825c35e28fdb7a18415fc230a54f1f401a1fb46499d0148c 1502952 
squid3_3.1.6-1.1_amd64.deb
 6f8921fc645709ae29c3e9b663dcdbd3602e23d905e3b6debcfdd082e33bb991 5614614 
squid3-dbg_3.1.6-1.1_amd64.deb
 f07f80a643e618cc446e805d3212f84be07de214d926ca20fa8d3b67f587660f 105408 
squidclient_3.1.6-1.1_amd64.deb
 e5e3c932b1f0b3cbdf31dcd1c833431470697f3fd951182a58672b3e97df3a41 107808 
squid-cgi_3.1.6-1.1_amd64.deb
Files: 
 19a5a6cca364601f75beddaddbf6c702 1269 web optional squid3_3.1.6-1.1.dsc
 111416afbf32cf5f3dc606de91284bc7 18873 web optional squid3_3.1.6-1.1.diff.gz
 59b45a42ca8f6f776b97c02160b10310 193770 web optional 
squid3-common_3.1.6-1.1_all.deb
 bbeb3a554412ea963a92444f51592d11 1502952 web optional 
squid3_3.1.6-1.1_amd64.deb
 39c6179a1b77cbf68873623aa6bf250a 5614614 debug extra 
squid3-dbg_3.1.6-1.1_amd64.deb
 2023ab6817198c745ed8f73c58db8ab8 105408 web optional 
squidclient_3.1.6-1.1_amd64.deb
 3270515530d4a6a00ccab7d22d735c72 107808 web optional 
squid-cgi_3.1.6-1.1_amd64.deb

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

iEYEARECAAYFAkyVlzsACgkQ62zWxYk/rQcs0wCeMeXREaciKoCpxjO7/oYVDQJh
ZWEAoLeedacUSR7of/meeXF822OLSz9C
=jo36
-END PGP SIGNATURE-


Accepted:
squid-cgi_3.1.6-1.1_amd64.deb
  to main/s/squid3/squid-cgi_3.1.6-1.1_amd64.deb
squid3-common_3.1.6-1.1_all.deb
  to main/s/squid3/squid3-common_3.1.6-1.1_all.deb
squid3-dbg_3.1.6-1.1_amd64.deb
  to main/s/squid3/squid3-dbg_3.1.6-1.1_amd64.deb
squid3_3.1.6-1.1.diff.gz
  to main/s/squid3/squid3_3.1.6-1.1.diff.gz
squid3_3.1.6-1.1.dsc
  to main/s/squid3/squid3_3.1.6-1.1.dsc
squid3_3.1.6-1.1_amd64.deb
  to main/s/squid3/squid3_3.1.6-1.1_amd64.deb
squidclient_3.1.6-1.1_amd64.deb
  to main/s/squid3/squidclient_3.1.6-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/e1oxc2z-0003uf...@franck.debian.org