Bug#490135: RFP: fdmf -- find duplicate music files

2008-07-10 Thread Paul Wise
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org, [EMAIL PROTECTED]

* Package name: fdmf
  Version : 0.0.9r
  Upstream Author : Kurt Rosenfeld
* URL : http://w140.com/audio/
* License : GPL
  Programming Lang: C, Perl
  Description : find duplicate music files

fdmf finds pairs of music files in a collection that are likely to
contain the same music. It works on the music itself, not on the
filename, tags, or headers. It uses an audio fingerprint, or perceptual
hash to recognise the duplicate files.

I intend to ITP this at some point, probably after lenny is released,
but I would be very glad if someone else wants to take it over. Haven't
yet evaluated how good it is.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Re: Bug#490135: RFP: fdmf -- find duplicate music files

2008-07-10 Thread Steinar H. Gunderson
On Thu, Jul 10, 2008 at 02:03:47PM +0800, Paul Wise wrote:
 Haven't yet evaluated how good it is.

FWIW, not very. fmdf is, like almost all other free (and lots of non-free!)
software projects in this class, very rudimentary and written with people
with very limited DSP knowledge. If you want a good music recognition system
and are prepared to implement it yourself, take a look at the Tuneprint paper
(I can probably get a PDF if you're interested), and/or Google's Waveprint
paper (which is available for download from their Labs pages, IIRC).

/* Steinar */
-- 
Homepage: http://www.sesse.net/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Help: Strange 64bit issue

2008-07-10 Thread Goswin von Brederlow
Andreas Tille [EMAIL PROTECTED] writes:

 On Mon, 7 Jul 2008, William Pitcock wrote:

 If you do build-depends on gcc-multilib and g++-multilib, it should fix
 this problem.

 As I said it fixes the build problem - but now I have a package with a
 not working executable.  I guess it is also a simple 64 bit problem which
 might be easily solved by people with multiarch experience:

 On Mon, 2008-07-07 at 22:56 +0200, Andreas Tille wrote:

  svn://svn.debian.org/svn/debian-med/trunk/packages/maq/trunk/

 If I build this stuff I get a package containing /usr/bin/maq (besides
 some Perl scripts).  The problem is:


 $ /usr/bin/maq
 -bash: /usr/bin/maq: cannot execute binary file

That indicates your kernel can not execute that binary.

 $ ldd /usr/bin/maq
 ldd: exited with unknown exit code (126)

Usualy means the ld is missing, i.e. libc6 package missing.

 Does this ring a bell?

 Kind regards

   Andreas.

Do you have the right kernel and libc installed?

MfG
Goswin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Multiarch and idea for improved diversions and alternatives handling

2008-07-10 Thread Goswin von Brederlow
Neil Williams [EMAIL PROTECTED] writes:

 On Fri, 2008-07-04 at 08:33 +0200, Tollef Fog Heen wrote:
 * Neil Williams 
 
 | Just a thought - why use /usr/lib/$ARCH and /usr/include/$ARCH at all
 | when it would (IMHO) be simpler to use /usr/$TRIPLET/ and put the entire
 | package under that, as we do with dpkg-cross currently:
 
 How would you then handle libraries that go in /lib?  (Apart from the
 fact that I think just using a subdirectory of /usr/lib is much neater
 than random subdirectories in /usr.

 /lib/
 /arm-linux-gnu/lib/

 (did I miss that bit?)

 A single subdirectory of /usr is, IMHO, neater than a subdirectory
 of /usr/include and /usr/lib/. It would also mean less changes for those
 who are currently using multiple architectures on one system for the
 purposes of cross building. I wouldn't want to go the whole hog though
 and have /arm-linux-gnu/usr/lib /arm-linux-gnu/lib because that would be
 ugly, at least to me.

 
 | /usr/include/
 | /usr/arm-linux-gnu/include/
 
 Please note that the initial goal of multiarch at least has been just
 running of packages from foreign architectures.  Not building them.

 True but the current usage of these mechanisms is in cross-building so
 sometimes the results of having to do something without major changes
 elsewhere can be helpful in designing the subsequent mechanism.

The current mechanism is a total mess and needs to be thrown out and
done right in any case.

binutils on amd64 uses /usr/i386-linux-gnu/lib while i386 uses
/usr/i486-linux-gnu/lib. So cross-building will fail there anyway.  It
also misses /i486-linux-gnu/lib making several core libraries go
missing. Not to mention that multilib gcc does not provide the cross
compiler binaries for the other supported archs,
i.e. i486-linux-gnu-gcc on amd64.

Further those directories are totaly wrong when compiling code for
e.g. uclibc.


The binutils upstream has further decided that it is not binutils
place to support multiarch directories. That is a job of the
compiler. As such binutils should be stoped from blindly adding the
(wrong) cross-compile dir and gcc should add the right directories.


So no matter what actual path you pick there has to be exactly the
same change. Both binutils and gcc need adapting.

 
 | multiarch could even add:
 | /usr/share/
 | /usr/arm-linux-gnu/share
 
 Pardon my language, but this is crack.  The point of /usr/share is you
 can share it between systems.  If you go down this route, just use a
 chroot and some wrapper scripts to bounce between them instead.

 It was only a suggestion for /usr/share - it was an alternative to
 renaming the package to get a different directory in /usr/share/ as the
 current tools do. Until all suitable packages have things like
 translations separated out into TDebs and other things like images in a
 -data or -common package instead of being packaged along with the
 architecture-dependent binaries, conflicts will occur if /usr/share is
 used as intended.

Then you could not just share /usr/share via nfs but would have to
share all the multiarch share dirs. bad bad bad.

MfG
Goswin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: RFC: Idea for improved diversions and alternatives handling

2008-07-10 Thread Goswin von Brederlow
Neil Williams [EMAIL PROTECTED] writes:

 Goswin von Brederlow wrote:
 working on dpkg reminded me that I wanted to propose a better
 diversion and alternatives handling for debian packages. Currently
 they have to be manually added and removed in the maintainer
 scripts. This method is prone to errors and can easily leave
 diversions or alternatives behind. Instead I suggest creating two new
 control files detailing the diversions and alternatives a package
 should have.

 Can symlinks be supported in the declarative control file stanzas?

Don't symlinks work in diversions now?

Diverting should just move the file around so I see no reason why it
should even care about the file type.

MfG
Goswin


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: Help: Strange 64bit issue

2008-07-10 Thread Andreas Tille

On Thu, 10 Jul 2008, Goswin von Brederlow wrote:


$ /usr/bin/maq
-bash: /usr/bin/maq: cannot execute binary file


That indicates your kernel can not execute that binary.


$ ldd /usr/bin/maq
ldd: exited with unknown exit code (126)


Usualy means the ld is missing, i.e. libc6 package missing.


Well, I guess I would have noticed if libc would be missing:

$ ldd /usr/bin/ld
linux-gate.so.1 =  (0xe000)
libbfd-2.18.0.20080103.so = /usr/lib/libbfd-2.18.0.20080103.so 
(0xb7e1f000)
libc.so.6 = /lib/i686/cmov/libc.so.6 (0xb7cd1000)
/lib/ld-linux.so.2 (0xb7f0c000)

It might be that some 64bit aware libc6 might be needed - I would have had
expected dpkg-buildpackage to add the right dependency if I use this

   
http://svn.debian.org/wsvn/debian-med/trunk/packages/maq/trunk/debian/control?op=filerev=0sc=0

control file.  Am I missing something here?


Do you have the right kernel and libc installed?


What is the right kernel / libc???

$ uname -a
Linux wr-linux02 2.6.22-3-686 #1 SMP Sun Feb 10 20:20:49 UTC 2008 i686 GNU/Linux

It was installed via the the Debian kernel package:

$ dpkg -l linux-image* | grep ^ii.*2\.6\.2
ii  linux-image-2.6-686 2.6.24+13   
 Linux 2.6 image on PPro/Celeron/PII/PIII/P4
ii  linux-image-2.6.22-3-6862.6.22-6.lenny1 
 Linux 2.6.22 image on PPro/Celeron/PII/PIII/
ii  linux-image-2.6.24-1-6862.6.24-7
 Linux 2.6.24 image on PPro/Celeron/PII/PIII/

(the host was not rebootet after installing 2.6.24, but the same happens
on another boc running 2.6.24)

$ dpkg -l libc6* | grep ^ii
ii  libc6   2.7-10  
 GNU C Library: Shared libraries
ii  libc6-amd64 2.7-10  
 GNU C Library: 64bit Shared libraries for AM
ii  libc6-dev   2.7-10  
 GNU C Library: Development Libraries and Hea
ii  libc6-dev-amd64 2.7-10  
 GNU C Library: 64bit Development Libraries f
ii  libc6-i686  2.7-10  
 GNU C Library: Shared libraries [i686 optimi

Any hints

   Andreas.

--
http://fam-tille.de


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: [RFH] #486212 reportbug-ng segfaults

2008-07-10 Thread Bastian Venthur
Thanks for the hint, unfortunately that didn't help. I've rebuild 
python-qt3 with CXXFLAGS=-Wall -g -O0 but rng is still segfaulting.


There is also no bugreport in python-qt3 indicating that someone else 
has this problem.



Cheers,

Bastian

Kęstutis Biliūnas wrote:

An, 2008 07 08 15:44 +0200, Bastian Venthur rašė:

Hi,

since a few feeks reportbug-ng segfaults quite often. Since I haven't 
made any changes in this time, I think one of the libs rng depends on is 
the problem. Currently it depends on python-soappy and python-qt3. I 
think SOAPpy is not the problem, since I played around with it a few 
days ago and never got a segfault.


So I think it's python-qt3. The bugreport #486212 has a backtrace, but 
I'm not sure how to interpret the output in this case. Can anybody help 
me to track down the problem and find out whether it is qt3, python or 
rng itself?


I guess the problem is related with gcc , because gcc-4.3 is now the
default compiler. Now we have the similar problem with fonforge package
(#487101). If I build fontforge using gcc-4.2, I can't to reproduce the
bug. Also the problem disappear if I build using gcc-4.3, but without
the optimization (CFLAGS=-Wall -g -O0). So, I advise you to do so
with python-qt3. 




--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: tarball in tarball: opinions

2008-07-10 Thread Frank Küster
Joey Hess [EMAIL PROTECTED] wrote:

 Magnus Holmgren wrote:
 Tarballs using the wrong top-level directory name is nothing that can't be 
 worked around.

 dpkg-source does not care what directory (if any) a .orig.tar.gz extracts
 into. There's nothing wrong about an upstream tarball extracting into
 package instead of package-version.

Or into ., even.

Regards, Frank
-- 
Frank Küster
Debian Developer (teTeX/TeXLive)


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: gnome, kde, xfce use non-policy main menu

2008-07-10 Thread Michelle Konzack
Hello Josselin,

Am 2008-07-06 14:28:15, schrieb Josselin Mouette:
 the restrictions of the Debian menu system (no i18n support, 32x32 XPM
 icons, strict hierarchy), these goals are simply not compatible.

For Fvwm it is not right, since you can do

$[gt.Hello]

and in the ~/.fvwm/config I use

LocalePath /usr/share/locale;fvwm-menu:+

I was working last year on this stuff, but since my whole network was
destrcted by an very heavy over-voltage the development has stoped.

Thanks, Greetings and nice Day/Evening
Michelle Konzack
Systemadministrator
Tamay Dogan Network
Debian GNU/Linux Consultant


-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
+49/177/935194750, rue de Soultz MSN LinuxMichi
+33/6/61925193 67100 Strasbourg/France   IRC #Debian (irc.icq.com)


signature.pgp
Description: Digital signature


Graduação Executiva Anhembi Morumbi

2008-07-10 Thread Universidade Anhembi Morumbi
Olá ,

Este programa não permite a visualização de mensagens formatadas (com cores, 
imagens e links), portanto solicitamos que você copie o texto abaixo, e cole no 
campo Endereço do seu navegador.
http://app.aknamail.com.br/emkt/tracer/?1,85550,c4b71992,1cb5

Para garantir que nossas mensagens cheguem em sua caixa de entrada, adicione o 
email [EMAIL PROTECTED] ao seu catálogo de endereços.
Não deseja mais receber nossas mensagens? Cancele sua inscrição aqui:
http://app.aknamail.com.br/emkt/tracer/?9,85550,c4b71992,1cb5



[EMAIL PROTECTED] hat Ihnen ein Google Gadget geschickt

2008-07-10 Thread 3kTN2SAAADIMkliphu-kl2lsspz0z . kliphu . vyn
Hallo! Ein Freund von Ihnen hat ein Google Gadget namens  Das 
Volks-Vertrauen in die Gesetze ist stärker  erstellt, das er Ihnen 
gerne über iGoogle, Ihre personalisierte Version der 
Google-Startseite, zu Verfügung stellen möchte. Möglicherweise nimmt 
Ihr Freund von einem Tag auf den anderen Änderungen an dem Gadget vor. 
Besuchen Sie daher täglich Ihre iGoogle-Seite, damit Ihnen keine 
Neuerungen entgehen.


Nachricht Ihres Freundes an Sie:

***

Gadget Ihres Freundes zu iGoogle hinzufügen

***

Dieses Gadget wurde Ihnen gesendet von: [EMAIL PROTECTED]

Schauen Sie täglich auf Ihre iGoogle-Seite unter 
http://www.google.ch/ig?hl=de, damit Sie keine Aktualisierungen für 
das Gadget Ihres Freundes verpassen!
Möchten Sie eigene Gadgets entwickeln und anderen zur Verfügung 
stellen? Melden Sie sich an und erstellen Sie ein Gadget.


Nachdem Sie das Gadget hinzugefügt haben, können Sie Ihre Seite durch 
Einbindung zusätzlicher Gadgets aller Art weiter personalisieren, z. 
B. E-Mail, News, Sport, Wetter und andere. Sie können Ihre 
iGoogle-Seite wieder aufrufen, indem Sie www.google.com besuchen und in 
der oberen rechten Ecke auf den Link iGoogle klicken. Durch Klicken 
auf den Link Klassische Startseite können Sie jederzeit wieder zur 
klassischen Google-Startseite wechseln.


Bug#490231: ITP: 2h4u -- mixed game of tetris and breakout

2008-07-10 Thread Gerfried Fuchs
Package: wnpp
Severity: wishlist
Owner: Gerfried Fuchs [EMAIL PROTECTED]


* Package name: 2h4u
  Version : 1.3
  Upstream Author : Pierre Lagouge, Pierre-Yves Ricau
* URL : http://www.piwai.info/2H4U.html
* License : GPLv2+
  Programming Lang: C++
  Description : 2h4u -- mixed game of tetris and breakout

This game is a mix of Tetris and Breakout where you need to play both
games at the same time. You need to keep the ball up while trying to get
rid of as many lines as possible. Various bonus pieces drop and can get
catched with the Breakout bar.

 So long,
Rhonda, on behalf of pkg-games team



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#490240: ITP: onetime -- A command-line encryption program based on the one-time pad method.

2008-07-10 Thread Karl Fogel
Package: wnpp
Severity: wishlist
Owner: Karl Fogel [EMAIL PROTECTED]

* Package name: onetime
  Version : 1.73
  Upstream Author : Karl Fogel [EMAIL PROTECTED]
* URL : http://www.red-bean.com/onetime
* License : Public Domain
  Programming Lang: Python
  Description : A command-line encryption program based on the one-time 
pad method.

   Encoder/decoder for one-time pads.
   
   The usual public-key encryption programs, such as GPG, are probably
   secure for everyday purposes, but their implementations are too
   complex for all but the most knowledgeable programmers to vet, and
   anyway there are too many vulnerable steps in the supply chain between
   GPG's authors and the end user.
   
   Hence this script, OneTime, a simple encryption program that works with
   one-time pads.  If you don't know what one-time pads are, you probably
   wouldn't be able to use them securely, so this program is not for you.
   If you do know what they are and how to use them, OneTime will take care
   of some of the pad-management bureacracy for you.  It avoids re-using
   pad data (except when decrypting the same encrypted message twice, of
   course) by maintaining records of pad usage in ~/.onetime/pad-records.
   And if you keep your ~/.onetime configuration area under version control
   with Subversion or CVS, OneTime will automatically update it to get the
   latest pad usage records before using a pad, and will commit new
   records after using a pad.  Thus, by sharing a single configuration
   area via version control, you and your interlocutors can transparently
   avoid the sin of pad range reuse.
   
   See http://en.wikipedia.org/wiki/One-time_pad for more information
   about one-time pads in general; run 'onetime --help' for a detailed
   usage message about OneTime itself.
   
   OneTime is in the public domain.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

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



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#490204: ITP: torch5 -- A matlab-like environment for state-of-the-art machine learning algorithms.

2008-07-10 Thread Soeren Sonnenburg
Package: wnpp
Severity: wishlist
Owner: Soeren Sonnenburg [EMAIL PROTECTED]

* Package name: torch5
  Version : 5.1
  Upstream Author : Ronan Collobert [EMAIL PROTECTED] et.al.
* URL : http://torch5.sourceforge.net
* License : BSD
  Programming Lang: C, Lua
  Description : A matlab-like environment for state-of-the-art machine 
learning algorithms.

Torch5 provides a Matlab-like environment for state-of-the-art machine
learning algorithms. It is easy to use and provides a very efficient
implementation, thanks to an easy and fast scripting language (Lua) and
a underlying C implementation.


-- System Information:
Debian Release: lenny/sid
  APT prefers stable
  APT policy: (700, 'stable'), (650, 'testing'), (600, 'unstable'), (1, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-rc9-sonne (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Re: status of default syslog daemon for lenny

2008-07-10 Thread Jonas Meurer
On 10/07/2008 Michael Biebl wrote:
 Jonas Meurer wrote:
 Just wanted to bring up that topic again. I believe it's far to late for
 changing the default syslog daemon for lenny to rsyslog, albeit I think
 it would be really desirable.

 According to http://wiki.debian.org/Rsyslog all preliminary tasks are
 already done, so as far as I can see the only thing that still needs to
 be done is changing priorities of sysklogd/klogd and rsyslog.


 Hi Jonas,
 hi release team,

 first of all, I have to say, that I think the rsyslog package is in  
 pretty good shape and I still think a switch to rsyslog as default  
 syslog is doable in time for lenny.
 As you can read from my former emails [1], I would have preferred, if  
 such a switch would have been done much earlier.
 From all the feedback and requests I get (from users and other DDs),  
 there seems to be a strong interest in rsyslog being the default syslog.

 So I'd like to ask the release team again on their opinion on this  
 matter and if they would acknowledge this change.

 If so, I'd forward the request to change the priorities to  
 [EMAIL PROTECTED] (unless someone from the ftpmaster team reads this  
 message and directly answers to it).

 If we want to have rsyslog as default syslog, the switch should be done  
 rsn imho. I wouldn't feel comfortable, if it was done just before  
 release (as Luk said, would be possible [2]), especially as I don't  
 know, if other changes are also required (e.g. to d-i, tasksel etc).

 [1] http://lists.debian.org/debian-release/2008/04/msg00069.html
 [2] http://lists.debian.org/debian-release/2008/04/msg00065.html

Forwarding the mail to debian-devel. Are there any objections by
developers against rsyslog as default syslog daemon?

Or do lenny release managers have any objections against doing that in
time for lenny?

greetings,
 jonas


signature.asc
Description: Digital signature


Xen status in lenny?

2008-07-10 Thread Lucas Nussbaum
Hi,

AFAIK, the status of Xen in lenny is currently the following:
- no dom0 kernel
- domU kernel only for i386 (no domU kernel for amd64)

I was told (I don't remember where) that this is because the vanilla
kernel only supports domU for i386, and has no dom0 support, so distros
have to port the patches to their kernels (please correct me if I'm
wrong).

However:
- etch shipped with dom0 and domU kernels on i386 and amd64
- all major distros shipped with full Xen support

What are the plans for Xen for lenny? Is this situation likely to change
before the release?
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#490221: ITP: ocaml-bitmatch -- Erlang-style bitstrings for OCaml

2008-07-10 Thread Sylvain Le Gall
Package: wnpp
Severity: wishlist
Owner: Sylvain Le Gall [EMAIL PROTECTED]


* Package name: ocaml-bitmatch
  Version : 1.3
  Upstream Author : Richard W.M. Jones 
* URL : http://code.google.com/p/bitmatch/
* License : LGPL
  Programming Lang: OCaml
  Description : Erlang-style bitstrings for OCaml

 Bitmatch adds Erlang-style bitstrings and matching over bitstrings as a
 syntax extension and library for OCaml.
 .
 You can use this module to both parse and generate binary formats,
 files and protocols.
 .
 Bitstring handling is added as primitives to the language, making it
 simple to use. 
 .
 Bitmatch handles integers, strings, sub-bitstrings, big-, little- and
 native-endianness, signed and unsigned types, variable-width fields,
 fields with arbitrary bit alignment.
 .
 This package contains header and OCaml library.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22.6-vs2.2.0.3-core2 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted oxygencursors 0.0.2008-07-07-svn824849-1 (source all)

2008-07-10 Thread Sune Vuorela
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 07:51:45 +0200
Source: oxygencursors
Binary: oxygencursors
Architecture: source all
Version: 0.0.2008-07-07-svn824849-1
Distribution: unstable
Urgency: low
Maintainer: Sune Vuorela [EMAIL PROTECTED]
Changed-By: Sune Vuorela [EMAIL PROTECTED]
Description: 
 oxygencursors - Oxygen mouse cursor theme
Changes: 
 oxygencursors (0.0.2008-07-07-svn824849-1) unstable; urgency=low
 .
   * New upstream snapshot - as released with kde4 rc1.
 - All patches dropped. Merged upstream
 - More colors
Checksums-Sha1: 
 f262b51a13cdc17727459593de98d7093ee88833 1160 
oxygencursors_0.0.2008-07-07-svn824849-1.dsc
 d0628e7fb9e653cb4e3acdaf524af99f3375d293 101705 
oxygencursors_0.0.2008-07-07-svn824849.orig.tar.gz
 b16db932bb36253bbe66845dd7926bfcab4e716c 2834 
oxygencursors_0.0.2008-07-07-svn824849-1.diff.gz
 69e69f418cff6c96c0f9dae16ab79eaab605c3c2 4246538 
oxygencursors_0.0.2008-07-07-svn824849-1_all.deb
Checksums-Sha256: 
 f786cb9da6f15975db945816a0e0837d69b34a5ab58c1e17a3da2afbf7761f7e 1160 
oxygencursors_0.0.2008-07-07-svn824849-1.dsc
 21e431f180dd9458568fff8ba66a6af0c6ef87bd7d9c1859c6a02cd44cd1f7e7 101705 
oxygencursors_0.0.2008-07-07-svn824849.orig.tar.gz
 e53332e8e73f0039ba2f826f83c889cd519c12e9662dd21580f8768d55db2952 2834 
oxygencursors_0.0.2008-07-07-svn824849-1.diff.gz
 eca22d67e045da01dc90b62774600ba2be96c814e38cf59f89829c048a1e7a9c 4246538 
oxygencursors_0.0.2008-07-07-svn824849-1_all.deb
Files: 
 bac257c4e2063f941454b9031c16ea6f 1160 x11 optional 
oxygencursors_0.0.2008-07-07-svn824849-1.dsc
 d3cd3d335e212034d64fa57918f6cde5 101705 x11 optional 
oxygencursors_0.0.2008-07-07-svn824849.orig.tar.gz
 8e9200e38d1d29976ea125598fec1c65 2834 x11 optional 
oxygencursors_0.0.2008-07-07-svn824849-1.diff.gz
 550a5902f7dcc02774368bc7c9b63df0 4246538 x11 optional 
oxygencursors_0.0.2008-07-07-svn824849-1_all.deb

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

iEYEARECAAYFAkh1s8EACgkQnMvaFgH6i0pqXwCfVnRhrh/e6tAeY7zk4EsTcEuq
ukYAoJCJhByO8aUNEp52MQyKXCFBlkf5
=N/xO
-END PGP SIGNATURE-


Accepted:
oxygencursors_0.0.2008-07-07-svn824849-1.diff.gz
  to pool/main/o/oxygencursors/oxygencursors_0.0.2008-07-07-svn824849-1.diff.gz
oxygencursors_0.0.2008-07-07-svn824849-1.dsc
  to pool/main/o/oxygencursors/oxygencursors_0.0.2008-07-07-svn824849-1.dsc
oxygencursors_0.0.2008-07-07-svn824849-1_all.deb
  to pool/main/o/oxygencursors/oxygencursors_0.0.2008-07-07-svn824849-1_all.deb
oxygencursors_0.0.2008-07-07-svn824849.orig.tar.gz
  to 
pool/main/o/oxygencursors/oxygencursors_0.0.2008-07-07-svn824849.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted gcc-avr 1:4.3.0-3 (source i386)

2008-07-10 Thread Hakan Ardo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 02 Jul 2008 11:01:26 +0200
Source: gcc-avr
Binary: gcc-avr
Architecture: source i386
Version: 1:4.3.0-3
Distribution: unstable
Urgency: low
Maintainer: Hakan Ardo [EMAIL PROTECTED]
Changed-By: Hakan Ardo [EMAIL PROTECTED]
Description: 
 gcc-avr- The GNU C compiler (cross compiler for avr)
Changes: 
 gcc-avr (1:4.3.0-3) unstable; urgency=low
 .
   * Revered to an unpatched 4.3.0 release
   * Applied WinAVR-20080610 from patches/gcc/4.3.0/ in cvs server
 [EMAIL PROTECTED]:/cvsroot/winavr with tag
 WinAVR-20080610:
   20-gcc-4.3.0-libiberty-Makefile.in.patch
   21-gcc-4.3.0-disable-libssp.patch
   40-0-gcc-4.3.0-bug-10768.patch
   40-1-gcc-4.3.0-bug-30243.patch
   40-2-gcc-4.3.0-bug-11259_v3.patch
   40-3-gcc-4.3.0-bug-spill3.patch
   40-4-gcc-4.3.0-bug-35013.patch
   40-6-gcc-4.3.0-libgcc16.patch
   40-7-gcc-4.3.0-bug-33009.patch
   40-8-gcc-4.3.0-bug-35519.patch
   40-9-gcc-4.3.0-bug-35542.patch
   41-0-gcc-4.3.0-bug-34932.patch
   41-1-gcc-4.3.0-bug-leaf.patch
   50-gcc-4.3.0-mega256.patch
   51-gcc-4.3.0-xmega-v9.patch
   52-gcc-4.3.0-atmega32m1.patch
   53-gcc-4.3.0-atmega32c1.patch
   54-gcc-4.3.0-atmega32u4.patch
   55-gcc-4.3.0-attiny167.patch
   56-gcc-4.3.0-remove-atmega32hvb.patch
   60-gcc-4.3.0-ada-xgnatugn.patch
   61-gcc-4.3.0-osmain.patch
Checksums-Sha1: 
 558fd5d1fe0ac4cd6204d0ee0e54608b8229113a 934 gcc-avr_4.3.0-3.dsc
 6663a1c89e7d36136531c1ff20435f01d62e80cc 33429 gcc-avr_4.3.0-3.tar.gz
 cb37c9c9e04b6bd9ee390c6111922d0a96cdfdb4 5132830 gcc-avr_4.3.0-3_i386.deb
Checksums-Sha256: 
 ea85db1adbeeabe347da11646c2078e4766454b52293c1da13eb9625f0234158 934 
gcc-avr_4.3.0-3.dsc
 43403fc8dc8d6a0e32da4007c9dbae226e43e2c22de34c2e8996292755ea6ed9 33429 
gcc-avr_4.3.0-3.tar.gz
 8a9ad72c0755c056f39c0ae4be973ff21154dda0a272f3ca6a9fe8aef1d39a2b 5132830 
gcc-avr_4.3.0-3_i386.deb
Files: 
 57bffd3f106095b2fbb45e75d48c8419 934 devel extra gcc-avr_4.3.0-3.dsc
 495374c7a3ef9affce844cbc1c8e9cdc 33429 devel extra gcc-avr_4.3.0-3.tar.gz
 b30c1ec170a4d9db7d0aab47553f4364 5132830 devel extra gcc-avr_4.3.0-3_i386.deb

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

iD8DBQFIa2ooAbtddT3jfcARAo6QAKDU0CacKwanwkIberz+PRC/2XPjBACgmY/+
XSsVSx1q1hOaxHJh6F/s8i8=
=08/J
-END PGP SIGNATURE-


Accepted:
gcc-avr_4.3.0-3.dsc
  to pool/main/g/gcc-avr/gcc-avr_4.3.0-3.dsc
gcc-avr_4.3.0-3.tar.gz
  to pool/main/g/gcc-avr/gcc-avr_4.3.0-3.tar.gz
gcc-avr_4.3.0-3_i386.deb
  to pool/main/g/gcc-avr/gcc-avr_4.3.0-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted avr-libc 1:1.6.2-2 (source all)

2008-07-10 Thread Hakan Ardo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 02 Jul 2008 13:53:45 +0200
Source: avr-libc
Binary: avr-libc
Architecture: source all
Version: 1:1.6.2-2
Distribution: unstable
Urgency: low
Maintainer: Hakan Ardo [EMAIL PROTECTED]
Changed-By: Hakan Ardo [EMAIL PROTECTED]
Description: 
 avr-libc   - Standard C library for Atmel AVR development
Closes: 486219 486844
Changes: 
 avr-libc (1:1.6.2-2) unstable; urgency=low
 .
   * Recompiled with new gcc to add support for avr6
   * Moved /usr/avr to /usr/lib/avr (closes: #486844)
   * pdf manual index now has pagenumbers (closes: #486219)
Checksums-Sha1: 
 5ae95f937eda6c11b5376614a34c6f2263cc09de 1057 avr-libc_1.6.2-2.dsc
 73d28082034977f47e6eae18f8e369b72f530b96 5652 avr-libc_1.6.2-2.diff.gz
 11018d2de4d4762349e9f6a8a39ea6db0b6bbaf3 3694560 avr-libc_1.6.2-2_all.deb
Checksums-Sha256: 
 0d08554a83ce077a02b2969a46daa193892e2081d34854a730039e12cb89b3b7 1057 
avr-libc_1.6.2-2.dsc
 5f15db477bfc75a1e4f8ea2e952f4865666bc047f5bd2247dd11f2f096318180 5652 
avr-libc_1.6.2-2.diff.gz
 c7061a954b9879ee4d4a725b61baee25129e9036532ecf0796d73d49368f2915 3694560 
avr-libc_1.6.2-2_all.deb
Files: 
 769182a971cf17e4c5a719ba00e2a9d9 1057 otherosfs extra avr-libc_1.6.2-2.dsc
 e0332800e1e700c5416bf62c978fafe5 5652 otherosfs extra avr-libc_1.6.2-2.diff.gz
 fc1822b0e5f94f38b6c21cd5b3648537 3694560 otherosfs extra 
avr-libc_1.6.2-2_all.deb

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

iD8DBQFIa20UAbtddT3jfcARAkkiAJsG6XljpbWaNqchvM4xkSGX1+HSXQCfR7pI
6Icz+YqjuAClVVF0Qsd6xN4=
=Kn+A
-END PGP SIGNATURE-


Accepted:
avr-libc_1.6.2-2.diff.gz
  to pool/main/a/avr-libc/avr-libc_1.6.2-2.diff.gz
avr-libc_1.6.2-2.dsc
  to pool/main/a/avr-libc/avr-libc_1.6.2-2.dsc
avr-libc_1.6.2-2_all.deb
  to pool/main/a/avr-libc/avr-libc_1.6.2-2_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted binutils-avr 2.18-4 (source i386)

2008-07-10 Thread Hakan Ardo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 02 Jul 2008 10:52:07 +0200
Source: binutils-avr
Binary: binutils-avr
Architecture: source i386
Version: 2.18-4
Distribution: unstable
Urgency: low
Maintainer: Hakan Ardo [EMAIL PROTECTED]
Changed-By: Hakan Ardo [EMAIL PROTECTED]
Description: 
 binutils-avr - Binary utilities supporting Atmel's AVR targets
Changes: 
 binutils-avr (2.18-4) unstable; urgency=low
 .
   * Revered to an unpatched 2.18 release
   * Applied WinAVR-20080610 from patches/binutils/2.18 in cvs server
 [EMAIL PROTECTED]:/cvsroot/winavr with tag
 WinAVR-20080610:
   00-binutils-2.18-version-WinAVR.patch
   30-binutils-2.18-avr-size.patch
   31-binutils-2.18-avr-coff.patch
   32-binutils-2.18-new-sections.patch
   33-binutils-2.18-data-origin.patch
   40-binutils-2.18-bug-5523.patch
   41-binutils-2.18-objdump-mixed.patch
   50-0-binutils-2.18-at90pwmx16.patch
   50-1-binutils-2.18-attiny43u.patch
   50-2-binutils-2.18-attiny48.patch
   50-3-binutils-2.18-at90pwm2b3b.patch
   50-4-binutils-2.18-remove-devices.patch
   50-5-binutils-2.18-atmega48p-88p-168p-328p.patch
   50-6-binutils-2.18-attiny88.patch
   50-7-binutils-2.18-atmega1284p.patch
   50-9-binutils-2.18-avr35.patch
   51-binutils-2.18-at86rf401.patch
   52-binutils-2.18-xmega.patch
   53-binutils-2.18-atmega32m1.patch
   54-binutils-2.18-atmega32c1.patch
   55-binutils-2.18-atmega32u4.patch
   56-binutils-2.18-attiny167.patch
   60-binutils-2.18-bug-2626.patch
   70-binutils-2.18-bug-6016.patch
   * Moved /usr/avr to /usr/lib/avr
Checksums-Sha1: 
 56af566e7ae7fc17404d7d8285aeab8e92ebad54 889 binutils-avr_2.18-4.dsc
 cfccb7ff50474bd6ce522737d9c09fd5c97a374d 62034 binutils-avr_2.18-4.tar.gz
 c4823145960e669d022cc8e3e18f38df44dcd435 4006876 binutils-avr_2.18-4_i386.deb
Checksums-Sha256: 
 9f6ba5cd8dfc63a39ff5fae2f2ddb06715299e759ee01ffd335d7005b41650a9 889 
binutils-avr_2.18-4.dsc
 d9cbe03a0eea8ddee70cce4e8c19cabe583435d9987b8f286684f4970d3aa3ec 62034 
binutils-avr_2.18-4.tar.gz
 dbe9065f62d2a1b22206536590e81bb9e704addc0e095d1c566044fbbf373a94 4006876 
binutils-avr_2.18-4_i386.deb
Files: 
 89b8a343ce1fc6c206c576ddacf41964 889 devel extra binutils-avr_2.18-4.dsc
 828c31a7c30194e1e7e7ceac202c9815 62034 devel extra binutils-avr_2.18-4.tar.gz
 d1b9fb8b376d688c8dde62690c167702 4006876 devel extra 
binutils-avr_2.18-4_i386.deb

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

iD8DBQFIa0MJAbtddT3jfcARArp7AKCQIw+w7J6yVdzl2VooBFOvRhAvhgCeJ3nm
x7ZHD933TVFKsSRWe+MDq2Y=
=0cTZ
-END PGP SIGNATURE-


Accepted:
binutils-avr_2.18-4.dsc
  to pool/main/b/binutils-avr/binutils-avr_2.18-4.dsc
binutils-avr_2.18-4.tar.gz
  to pool/main/b/binutils-avr/binutils-avr_2.18-4.tar.gz
binutils-avr_2.18-4_i386.deb
  to pool/main/b/binutils-avr/binutils-avr_2.18-4_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted hippo-canvas 0.3.0-1 (source i386)

2008-07-10 Thread Heikki Henriksen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 09 Jul 2008 21:46:28 +0200
Source: hippo-canvas
Binary: libhippocanvas-1-0 libhippocanvas-dev python-hippocanvas
Architecture: source i386
Version: 0.3.0-1
Distribution: unstable
Urgency: high
Maintainer: Debian maintenance of the Gnome Online Desktop [EMAIL PROTECTED]
Changed-By: Heikki Henriksen [EMAIL PROTECTED]
Description: 
 libhippocanvas-1-0 - a GTK+2.0 canvas library
 libhippocanvas-dev - a GTK+2.0 canvas library
 python-hippocanvas - Python bindings to hippo-canvas
Closes: 451395 472744 474379
Changes: 
 hippo-canvas (0.3.0-1) unstable; urgency=high
 .
   [ Santiago Ruano Rincón ]
   * Fixed online-desktop-maintainers mail address (Closes: #474379)
   * Including hippo-canvas-test.h in generated hippo.c through
 hippo_canvas_test_get_root.patch. (Closes: #451395)
 .
   [ Heikki Henriksen ]
   * New upstream release (0.3.0)
   * Add debian/watch
   * Add myself to uploaders
   * Add DM-Upload-Allowed: yes and add versioned build-dep on dpkg-dev (=
 1.14.16) to accommodate the above.
   * Update standards-version to 3.8.0 (no changes needed)
   * Remove patch debian/patches/hippo-canvas-segfault-patch.diff:
 - applied upstream
   * Remove config from svn
   * Update build-depends:
 - bump libgtk2.0-dev (= 2.6.0)
 - add libglib2.0-dev (= 2.6.0)
 - add libpango1.0-dev (= 1.14)
 - libcroco3-dev (= 0.6.0)
   * Remove libhippocanvas-1.{a,la} from libhippocanvas-dev
   * Add temporary build-dep on libxml2-dev until libcroco3-dev pulls it in
   * Put libhippocanvas-dev in section libdevel
   * Now builds with python 2.5 (closes: #472744)
   * Bump DEB_DH_MAKESHLIBS_ARGS
   * Acknowledge NMU from Jonas Smedgaard. Thanks :)
 - remove autogenerated config/hippo-canvas in clean target.
Checksums-Sha1: 
 b9b5856e97ebaeba4ef7a3aca0b0141a389660fd 1552 hippo-canvas_0.3.0-1.dsc
 47c662669e26502651a61b8a3545180bb19230fa 533591 hippo-canvas_0.3.0.orig.tar.gz
 04853622dfb8465aa50bd91eae96e77d75cc71ca 3130 hippo-canvas_0.3.0-1.diff.gz
 900f4b95305415f97a6461099e30eecbcd1b3be6 79074 
libhippocanvas-1-0_0.3.0-1_i386.deb
 0d2a6a03d3c2024d3a817e5f24dcb890501a617e 19712 
libhippocanvas-dev_0.3.0-1_i386.deb
 29ae0e41460474695498a2735dc5be3dbd187224 36116 
python-hippocanvas_0.3.0-1_i386.deb
Checksums-Sha256: 
 b2ece171d8137abec1df00af94a1e39f23955548c05927eee1ae58aa60cf3249 1552 
hippo-canvas_0.3.0-1.dsc
 bc74672b4c1bbe48f70a279383816cb4076659cdaee39860da20d9a741ad25fb 533591 
hippo-canvas_0.3.0.orig.tar.gz
 20306f4fa11a0e791e569e9abec54328e5c1164ea61a8f1df68f2d5c81ca5054 3130 
hippo-canvas_0.3.0-1.diff.gz
 7cd8288b4c5b93855f21f5374d5aa6f2bc138a2595a4e7ac0202893db5ff59bd 79074 
libhippocanvas-1-0_0.3.0-1_i386.deb
 335746547a63064e8b760428b9fa60eb80452b8019c597285b90ca257d52fbc6 19712 
libhippocanvas-dev_0.3.0-1_i386.deb
 91e3ba65db77e562096c6583e66b0096241ee05897466892a92e9f4a496fbea4 36116 
python-hippocanvas_0.3.0-1_i386.deb
Files: 
 5e2dbdaf2da941d35f24a56a8e6b33f0 1552 libs optional hippo-canvas_0.3.0-1.dsc
 64e10c73054ce10177855213152e6238 533591 libs optional 
hippo-canvas_0.3.0.orig.tar.gz
 bccfaca9f8184bce73d66de15587f729 3130 libs optional 
hippo-canvas_0.3.0-1.diff.gz
 51cd35c8067cf67b649a8f1592ffce8e 79074 libs optional 
libhippocanvas-1-0_0.3.0-1_i386.deb
 f77b549e845f47c6e210f86603f1b76b 19712 libdevel optional 
libhippocanvas-dev_0.3.0-1_i386.deb
 ed5704f0a7b92a0e5637754c01425da9 36116 python optional 
python-hippocanvas_0.3.0-1_i386.deb

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

iEYEARECAAYFAkh10t4ACgkQQUuEI2/szeBtugCfVzOrp/UB994Zpy78UfUOsm6p
VwYAnjkWxFfquXRSHifiPD8+qFrFYpNR
=u/4z
-END PGP SIGNATURE-


Accepted:
hippo-canvas_0.3.0-1.diff.gz
  to pool/main/h/hippo-canvas/hippo-canvas_0.3.0-1.diff.gz
hippo-canvas_0.3.0-1.dsc
  to pool/main/h/hippo-canvas/hippo-canvas_0.3.0-1.dsc
hippo-canvas_0.3.0.orig.tar.gz
  to pool/main/h/hippo-canvas/hippo-canvas_0.3.0.orig.tar.gz
libhippocanvas-1-0_0.3.0-1_i386.deb
  to pool/main/h/hippo-canvas/libhippocanvas-1-0_0.3.0-1_i386.deb
libhippocanvas-dev_0.3.0-1_i386.deb
  to pool/main/h/hippo-canvas/libhippocanvas-dev_0.3.0-1_i386.deb
python-hippocanvas_0.3.0-1_i386.deb
  to pool/main/h/hippo-canvas/python-hippocanvas_0.3.0-1_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted cldump 0.10-5 (source amd64)

2008-07-10 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 10:33:54 +0200
Source: cldump
Binary: cldump
Architecture: source amd64
Version: 0.10-5
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE [EMAIL PROTECTED]
Changed-By: Julien BLACHE [EMAIL PROTECTED]
Description: 
 cldump - Clarion database files extractor
Changes: 
 cldump (0.10-5) unstable; urgency=low
 .
   * debian/control:
 + Bump Standards-Version to 3.8.0 (no changes).
   * src/cldump.1:
 + Fix hyphen vs. minus sign.
Checksums-Sha1: 
 e0505f67c9b2c051f96609d50204ad60bfff6d57 916 cldump_0.10-5.dsc
 df9462f566106c0e17cccdb42662b0a0989adee5 2187 cldump_0.10-5.diff.gz
 88b29fc08c3b97448a8df1f2979c566a298b1974 18654 cldump_0.10-5_amd64.deb
Checksums-Sha256: 
 f9ddd1bf77ca01944929e5eeb9fe921b29b0243f47ccb100a53fb05bf52c19f1 916 
cldump_0.10-5.dsc
 c919cbc144e5391508f61b9b579c2ed367f7ebb7712814cd5db683ddb3e0c3bc 2187 
cldump_0.10-5.diff.gz
 fc884650181a0e31399b333a06427c52bb1d06ea249059ba81c500aecade2753 18654 
cldump_0.10-5_amd64.deb
Files: 
 ae14f04a747db2489ff7829edfb2e330 916 misc extra cldump_0.10-5.dsc
 fae74afbdd6e58e7aa95f33c5d2e0d86 2187 misc extra cldump_0.10-5.diff.gz
 78b839cb2891f51f7cd952b314fac786 18654 misc extra cldump_0.10-5_amd64.deb

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

iD8DBQFIdcnCzWFP1/XWUWkRAn6TAJ433o4bXj/oSSNvC8aM7Munuj2YQgCeMtiR
xiZ1OdE4JAHONduHSwWIQq0=
=WZ+M
-END PGP SIGNATURE-


Accepted:
cldump_0.10-5.diff.gz
  to pool/main/c/cldump/cldump_0.10-5.diff.gz
cldump_0.10-5.dsc
  to pool/main/c/cldump/cldump_0.10-5.dsc
cldump_0.10-5_amd64.deb
  to pool/main/c/cldump/cldump_0.10-5_amd64.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted libieee1284 0.2.11-5 (source amd64)

2008-07-10 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 10:42:22 +0200
Source: libieee1284
Binary: libieee1284-3-dev libieee1284-3 python-ieee1284
Architecture: source amd64
Version: 0.2.11-5
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE [EMAIL PROTECTED]
Changed-By: Julien BLACHE [EMAIL PROTECTED]
Description: 
 libieee1284-3 - cross-platform library for parallel port access
 libieee1284-3-dev - cross-platform library for parallel port access 
[development file
 python-ieee1284 - Python bindings to libieee1284
Changes: 
 libieee1284 (0.2.11-5) unstable; urgency=low
 .
   * debian/control:
 + Bump Standards-Version to 3.8.0 (no changes).
   * debian/copyright:
 + Add missing copyright statements.
Checksums-Sha1: 
 da02cc8cc175a8a8da149727852e4ce1a739a6ca  libieee1284_0.2.11-5.dsc
 676c16b1a6454b49c24ae247f739a7eab3e3fbdd 111941 libieee1284_0.2.11-5.diff.gz
 f4a542dbda9945b24ebe13f22ff3bd462cf4dddc 58770 
libieee1284-3-dev_0.2.11-5_amd64.deb
 a64184361390a659e35e8705b206a1171a4624d1 30526 libieee1284-3_0.2.11-5_amd64.deb
 787a349c77e0a1405854c437f5dc9bb257e2a114 24054 
python-ieee1284_0.2.11-5_amd64.deb
Checksums-Sha256: 
 bc9b5f2884ac12092a058612fad6e15915ef91cdd57a59741245c082a78d0c60  
libieee1284_0.2.11-5.dsc
 3988b00e92417470ffb141c3d86c56ef679303e0ee3ad6a926efb7c0e2184219 111941 
libieee1284_0.2.11-5.diff.gz
 c3b8acb0cbabc97addbafd269fbed834cf4014c908c0cb1ce30a211c15bb9960 58770 
libieee1284-3-dev_0.2.11-5_amd64.deb
 78dc113ac9eb88eb6ca0c79e32cec2a665b87d8e06434ae480e8e77b7795ea10 30526 
libieee1284-3_0.2.11-5_amd64.deb
 06c4de42d3fa2917978abaa273873da614a5718fc22784447a5beef791ad323a 24054 
python-ieee1284_0.2.11-5_amd64.deb
Files: 
 79a3d43b0f56719f6c499d28257134a1  libs optional libieee1284_0.2.11-5.dsc
 067cbd4c406d50e09ec36d36299f2a79 111941 libs optional 
libieee1284_0.2.11-5.diff.gz
 62e140d2d817b2cd9543e96673d2341a 58770 libdevel optional 
libieee1284-3-dev_0.2.11-5_amd64.deb
 7a94262777fa3ca3e66ca309cfaabade 30526 libs optional 
libieee1284-3_0.2.11-5_amd64.deb
 8c7a1f2820921fbbb7db8e8799678ea8 24054 python optional 
python-ieee1284_0.2.11-5_amd64.deb

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

iD8DBQFIdcvMzWFP1/XWUWkRAkmdAKCRPHBOa3UYV+jO8sojzGVYs7jDfQCfUTOC
56LjGIEUCvjFtcjPXObR6w4=
=stAt
-END PGP SIGNATURE-


Accepted:
libieee1284-3-dev_0.2.11-5_amd64.deb
  to pool/main/libi/libieee1284/libieee1284-3-dev_0.2.11-5_amd64.deb
libieee1284-3_0.2.11-5_amd64.deb
  to pool/main/libi/libieee1284/libieee1284-3_0.2.11-5_amd64.deb
libieee1284_0.2.11-5.diff.gz
  to pool/main/libi/libieee1284/libieee1284_0.2.11-5.diff.gz
libieee1284_0.2.11-5.dsc
  to pool/main/libi/libieee1284/libieee1284_0.2.11-5.dsc
python-ieee1284_0.2.11-5_amd64.deb
  to pool/main/libi/libieee1284/python-ieee1284_0.2.11-5_amd64.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted delimmatch 1.06a-4 (source all)

2008-07-10 Thread Peter Eisentraut
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 11:16:57 +0200
Source: delimmatch
Binary: libdelimmatch-perl
Architecture: source all
Version: 1.06a-4
Distribution: unstable
Urgency: low
Maintainer: Peter Eisentraut [EMAIL PROTECTED]
Changed-By: Peter Eisentraut [EMAIL PROTECTED]
Description: 
 libdelimmatch-perl - Perl module to match delimited substrings
Changes: 
 delimmatch (1.06a-4) unstable; urgency=low
 .
   * Updated standards version
   * Added Homepage control field
Checksums-Sha1: 
 ac1d74638a6dd19d7bcab089da0fae51b08d847a 1065 delimmatch_1.06a-4.dsc
 5958d5eb0a6def5a63afb97e73773952154bdc88 1738 delimmatch_1.06a-4.diff.gz
 3fa36864031f4967dec35cca309dca9756cac9ce 15046 
libdelimmatch-perl_1.06a-4_all.deb
Checksums-Sha256: 
 e33be9cdf9b3669dfa0ce0f4cefe394f5972d03a652981e1fdad2de6fc839993 1065 
delimmatch_1.06a-4.dsc
 974f735af159687752eda0de82aa73455bf896e6043a0c40401eb273b2055a13 1738 
delimmatch_1.06a-4.diff.gz
 343afed0f8317d3cf35168f88d893d9c3db17cc3543c18b476185d60cc95ec43 15046 
libdelimmatch-perl_1.06a-4_all.deb
Files: 
 6c88255ad5d19dd475d6b6848104c08b 1065 perl optional delimmatch_1.06a-4.dsc
 7ab1c398e013629077f0748879800e0b 1738 perl optional delimmatch_1.06a-4.diff.gz
 6a98acb672ac78e28807da6bf82d3b9f 15046 perl optional 
libdelimmatch-perl_1.06a-4_all.deb

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

iD8DBQFIddO2TTx8oVVPtMYRAonwAJ4mZhhYxqzFWDmuEmNLtUifRhlwFACgqNQm
0js1JE3M5l/ZjZxxXXMkK7o=
=/ngT
-END PGP SIGNATURE-


Accepted:
delimmatch_1.06a-4.diff.gz
  to pool/main/d/delimmatch/delimmatch_1.06a-4.diff.gz
delimmatch_1.06a-4.dsc
  to pool/main/d/delimmatch/delimmatch_1.06a-4.dsc
libdelimmatch-perl_1.06a-4_all.deb
  to pool/main/d/delimmatch/libdelimmatch-perl_1.06a-4_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted kde-guidance 0.8.0-6 (source i386)

2008-07-10 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 11:14:06 +0200
Source: kde-guidance
Binary: kde-guidance guidance-backends kde-guidance-powermanager
Architecture: source i386
Version: 0.8.0-6
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team [EMAIL PROTECTED]
Changed-By: Michael Meskes [EMAIL PROTECTED]
Description: 
 guidance-backends - collection of system administration tools for GNU/Linux
 kde-guidance - collection of KDE system administration tools for GNU/Linux
 kde-guidance-powermanager - HAL based power manager applet
Changes: 
 kde-guidance (0.8.0-6) unstable; urgency=low
 .
   * Removed python2.4 stuff.
   * Rebuild against latest version of libpythonize0.
Checksums-Sha1: 
 2400901cd7e55c9a2927016d6107466acb8b9a30 1490 kde-guidance_0.8.0-6.dsc
 a8d07a866dfab7d91f28825fc4b03424eb9e2f81 108769 kde-guidance_0.8.0-6.diff.gz
 0afac2ca1edda5e637a528b87c7369d7372fa703 540376 kde-guidance_0.8.0-6_i386.deb
 6ec17c9866f93ba482dc1872941a2d34acc88cbf 252604 
guidance-backends_0.8.0-6_i386.deb
 717ac71a66b148543a0ea47edbdc866585037eaa 63058 
kde-guidance-powermanager_0.8.0-6_i386.deb
Checksums-Sha256: 
 25a2cc4d766e705bf7d0e0c14ff58461452d51c91f734d28c7333c44a6c47b89 1490 
kde-guidance_0.8.0-6.dsc
 90355dc2d535176a979e9a9cd8dba8a5ed8836bc92fa05d1ee875a1898c4e8b6 108769 
kde-guidance_0.8.0-6.diff.gz
 76e1de78f76f8ed566105df62e6d2489747604fcc29055d6049a16759e8bebf3 540376 
kde-guidance_0.8.0-6_i386.deb
 02b547423ad2deefdca39917bbeb81681ddb8e5b61e583ded57e8e7740710ca2 252604 
guidance-backends_0.8.0-6_i386.deb
 8d48cbab4898c549265eefa2efd48173513b12a4b656e9b1b1ba32245d0cef29 63058 
kde-guidance-powermanager_0.8.0-6_i386.deb
Files: 
 71e313a7507de423eb63ffdb46192d63 1490 kde optional kde-guidance_0.8.0-6.dsc
 389e797e107c39be1d47916f316c3829 108769 kde optional 
kde-guidance_0.8.0-6.diff.gz
 256e730296aaa5096c3f271dbbd900d3 540376 kde optional 
kde-guidance_0.8.0-6_i386.deb
 bac5678d2a813a03201f4636d071c69d 252604 kde optional 
guidance-backends_0.8.0-6_i386.deb
 3898ba6bf8b384683c2fe1545464dfef 63058 kde optional 
kde-guidance-powermanager_0.8.0-6_i386.deb

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

iD8DBQFIdeMKVkEm8inxm9ERAuy1AJ9FeGKx2sq9DXEPQ6NZmX9wjSFdBACfdH0B
tXdDJsuIdLffXZqunax6NN4=
=szjH
-END PGP SIGNATURE-


Accepted:
guidance-backends_0.8.0-6_i386.deb
  to pool/main/k/kde-guidance/guidance-backends_0.8.0-6_i386.deb
kde-guidance-powermanager_0.8.0-6_i386.deb
  to pool/main/k/kde-guidance/kde-guidance-powermanager_0.8.0-6_i386.deb
kde-guidance_0.8.0-6.diff.gz
  to pool/main/k/kde-guidance/kde-guidance_0.8.0-6.diff.gz
kde-guidance_0.8.0-6.dsc
  to pool/main/k/kde-guidance/kde-guidance_0.8.0-6.dsc
kde-guidance_0.8.0-6_i386.deb
  to pool/main/k/kde-guidance/kde-guidance_0.8.0-6_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted pykdeextensions 0.4.0-6 (source all i386)

2008-07-10 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 10:26:59 +0200
Source: pykdeextensions
Binary: pykdeextensions libpythonize0-dev libpythonize0
Architecture: source all i386
Version: 0.4.0-6
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team [EMAIL PROTECTED]
Changed-By: Michael Meskes [EMAIL PROTECTED]
Description: 
 libpythonize0 - Python packages to support KDE applications (library)
 libpythonize0-dev - Python packages to support KDE applications (development)
 pykdeextensions - Python packages to support KDE applications (scripts)
Closes: 459960
Changes: 
 pykdeextensions (0.4.0-6) unstable; urgency=low
 .
   [ Fathi Boudra ]
   * Use Homepage, Vcs-Browser and Vcs-Svn fields.
 .
   [ Michael Meskes ]
   * Added myself as uploader.
   * Bumped needed python version to 2.5.
   * Build depend on python-dev and not python-all-dev.
   * Bumped Standards-Version to 3.8.0.
   * Added patch to open shared library, not .so link provided by -dev package.
 No need to depend on the development package anymore. (Closes: #459960)
   * Made shlibs file list version.
Checksums-Sha1: 
 839cd2b725996bc6fba943060e264a61fb775078 1584 pykdeextensions_0.4.0-6.dsc
 12734c6d6feaf5268f1f3fea903ed4838e442aa1 6063 pykdeextensions_0.4.0-6.diff.gz
 7df2d5aef94b9c940cbcf94e0caaec791ad6a29d 96070 pykdeextensions_0.4.0-6_all.deb
 8b9af15c549314dc8e6a316393a92a3ac6c47db3 8292 
libpythonize0-dev_0.4.0-6_i386.deb
 274c5955836b6a472b735dc435f3a9a6d317ddf5 8850 libpythonize0_0.4.0-6_i386.deb
Checksums-Sha256: 
 04aa1fd7ae1e0120ff0e06c89cf4afc281e2a4f69e5fc679e046870d9d1ff1de 1584 
pykdeextensions_0.4.0-6.dsc
 839823738b8456191277d980de1c62b76f1744631116a7d1ad1c69c3be80d05e 6063 
pykdeextensions_0.4.0-6.diff.gz
 17b7a67d0bcf6573a32b346df45b765d66c83d103ed394ee80eca65ce5fc0f87 96070 
pykdeextensions_0.4.0-6_all.deb
 da8cc2fac4ad1fd099597205ef6ef455e6cec7d15ce2f018e15468b079854f6a 8292 
libpythonize0-dev_0.4.0-6_i386.deb
 b93588eab261dee87c773972a7fd981ff069f90eca625546199c4738de4a5485 8850 
libpythonize0_0.4.0-6_i386.deb
Files: 
 2af437d77a5d3f76377b4f63abe3f79a 1584 kde optional pykdeextensions_0.4.0-6.dsc
 7c86bde43cc94ca21776b1f40423d8f2 6063 kde optional 
pykdeextensions_0.4.0-6.diff.gz
 1a2ef8bc7943e4ccba07dcc2f1ba21c0 96070 kde optional 
pykdeextensions_0.4.0-6_all.deb
 f7290b9b55e647d1dc5c161898552355 8292 libdevel optional 
libpythonize0-dev_0.4.0-6_i386.deb
 1636aa9569e2ac3aad537a817ed86e2f 8850 libs optional 
libpythonize0_0.4.0-6_i386.deb

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

iD8DBQFIdeQHVkEm8inxm9ERAqDOAKCC/dHwF/B2YqR/2nJY6AQBXZ+FHgCdFc6N
pIisDyqWQXc66urn/I0xU7o=
=hL4Y
-END PGP SIGNATURE-


Accepted:
libpythonize0-dev_0.4.0-6_i386.deb
  to pool/main/p/pykdeextensions/libpythonize0-dev_0.4.0-6_i386.deb
libpythonize0_0.4.0-6_i386.deb
  to pool/main/p/pykdeextensions/libpythonize0_0.4.0-6_i386.deb
pykdeextensions_0.4.0-6.diff.gz
  to pool/main/p/pykdeextensions/pykdeextensions_0.4.0-6.diff.gz
pykdeextensions_0.4.0-6.dsc
  to pool/main/p/pykdeextensions/pykdeextensions_0.4.0-6.dsc
pykdeextensions_0.4.0-6_all.deb
  to pool/main/p/pykdeextensions/pykdeextensions_0.4.0-6_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted sympy 0.6.0-1 (source all)

2008-07-10 Thread Ondrej Certik
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 12:32:34 +0200
Source: sympy
Binary: python-sympy
Architecture: source all
Version: 0.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team [EMAIL PROTECTED]
Changed-By: Ondrej Certik [EMAIL PROTECTED]
Description: 
 python-sympy - Computer Algebra System (CAS) in Python
Changes: 
 sympy (0.6.0-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 8948266956cd286cfa4abb64da4adca6cf2d494e 1350 sympy_0.6.0-1.dsc
 30c7b341b70f4b485bea277639d3e60775cc2390 1880746 sympy_0.6.0.orig.tar.gz
 1459b423ed0f27f00bcdc449df0adf507bb09bfe 5849 sympy_0.6.0-1.diff.gz
 5315a07c9632169aac1b3c0924319e909570cf09 1087458 python-sympy_0.6.0-1_all.deb
Checksums-Sha256: 
 956ff6b5b943786c496468ea4ea97abeaabf8c1d62c9cd99d8193ec090ccb904 1350 
sympy_0.6.0-1.dsc
 57df810a5507bdcdbda3e1561d72502ce4ed07b58bde13c7c817bbf6468dd806 1880746 
sympy_0.6.0.orig.tar.gz
 f95e2adac1cc38612e723d5954184ecbb7aab543eeea93792df3a8ce8b77ab82 5849 
sympy_0.6.0-1.diff.gz
 e7dd4ec399b1b24cd30e70c48217f7a9b671b27dd4c11058cb8eef2624bfe3b9 1087458 
python-sympy_0.6.0-1_all.deb
Files: 
 fcdb5dd942fa358dcab3f732fc875d51 1350 python optional sympy_0.6.0-1.dsc
 1c4fb6d64b05294bc57df721e28379d4 1880746 python optional 
sympy_0.6.0.orig.tar.gz
 1157b89b60bd8012db71ad0930b562c7 5849 python optional sympy_0.6.0-1.diff.gz
 24d0da435015451f2feb29e9372f1079 1087458 python optional 
python-sympy_0.6.0-1_all.deb

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

iEYEARECAAYFAkh15ncACgkQKQ++Uu6gdgmcGwCbBXuXeXh/z/fsbSzJgfugj2dP
5B4AnRwulX9t8kAs88Uke7twsxQJzLmQ
=eE4q
-END PGP SIGNATURE-


Accepted:
python-sympy_0.6.0-1_all.deb
  to pool/main/s/sympy/python-sympy_0.6.0-1_all.deb
sympy_0.6.0-1.diff.gz
  to pool/main/s/sympy/sympy_0.6.0-1.diff.gz
sympy_0.6.0-1.dsc
  to pool/main/s/sympy/sympy_0.6.0-1.dsc
sympy_0.6.0.orig.tar.gz
  to pool/main/s/sympy/sympy_0.6.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted slashem 0.0.7E7F3-1.2 (source i386)

2008-07-10 Thread Peter Eisentraut
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 12:58:26 +0200
Source: slashem
Binary: slashem slashem-common slashem-sdl slashem-x11 slashem-gtk
Architecture: source i386
Version: 0.0.7E7F3-1.2
Distribution: unstable
Urgency: low
Maintainer: Peter Makholm [EMAIL PROTECTED]
Changed-By: Peter Eisentraut [EMAIL PROTECTED]
Description: 
 slashem- A variant of Nethack
 slashem-common - Files common to all slashem-packages
 slashem-gtk - A variant of Nethack (Gtk window port)
 slashem-sdl - A variant of Nethack (SDL window port)
 slashem-x11 - A variant of Nethack (X11 window port)
Closes: 484438
Changes: 
 slashem (0.0.7E7F3-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fixed bashism in debian/rules.  (Closes: #484438)
Checksums-Sha1: 
 6d990a7eb77d515a7c6523b3ec20e5f4deeb8963 1210 slashem_0.0.7E7F3-1.2.dsc
 60843e1fa54a6b3fbc78fb6d9a88e25a197f0250 22690 slashem_0.0.7E7F3-1.2.diff.gz
 26768d518d1fa97a51a23891e9496c4c4b088ea3 995942 slashem_0.0.7E7F3-1.2_i386.deb
 19fb6f6c4b7891f0acd676336c6d4a65d1e10818 775252 
slashem-common_0.0.7E7F3-1.2_i386.deb
 5147cc5c964475b54f745fa2bd9ea388a6fd88a2 999148 
slashem-x11_0.0.7E7F3-1.2_i386.deb
 c485694a186cc05db8a71124f889d22705a28c16 1788872 
slashem-sdl_0.0.7E7F3-1.2_i386.deb
 0a839d3a7a03fee0beda296af1416cad1718d62e 1511628 
slashem-gtk_0.0.7E7F3-1.2_i386.deb
Checksums-Sha256: 
 034c4ebe605665e448ae3c6680d138cb50e0c76367e263189f26e0d7536f63eb 1210 
slashem_0.0.7E7F3-1.2.dsc
 b9acb0939f1006dfa6eaad9e134c56c0add0fb7890853b6883aae9c106f0ef21 22690 
slashem_0.0.7E7F3-1.2.diff.gz
 e941294a5afe6c2cc4df280f21efd9d853162bc377ce2adfd43374c586016b3a 995942 
slashem_0.0.7E7F3-1.2_i386.deb
 5fc8b84f271b415ac9d9474c96f3a6ed775eaa9da26ba58065259a3c29fec3d1 775252 
slashem-common_0.0.7E7F3-1.2_i386.deb
 0dc94119b2c2c57758b28d851d888c176eedc9c3831eb9896eee3bfeae40a105 999148 
slashem-x11_0.0.7E7F3-1.2_i386.deb
 7c3156bfb55281df8ccf3797a90c679f29ba399c57c3b554bc8a18c32daa611a 1788872 
slashem-sdl_0.0.7E7F3-1.2_i386.deb
 711b8a62ead894ca786221c9058a1443bf1c70364ef35790a000e976d58e06bd 1511628 
slashem-gtk_0.0.7E7F3-1.2_i386.deb
Files: 
 15d8ddd99dbf993608dee1de49f1e3e4 1210 games optional slashem_0.0.7E7F3-1.2.dsc
 ff245340219de605c75acfef27afeb62 22690 games optional 
slashem_0.0.7E7F3-1.2.diff.gz
 10f49856152cd6f23e338050db2839fa 995942 games optional 
slashem_0.0.7E7F3-1.2_i386.deb
 07517feee5767af82a74103575106219 775252 games optional 
slashem-common_0.0.7E7F3-1.2_i386.deb
 1701f88b736963020134103656121a85 999148 games optional 
slashem-x11_0.0.7E7F3-1.2_i386.deb
 93f637682bbc1ea6db67e1a8c18c8a49 1788872 games optional 
slashem-sdl_0.0.7E7F3-1.2_i386.deb
 dc7e9e0d1b9c009e529e240f3317 1511628 games optional 
slashem-gtk_0.0.7E7F3-1.2_i386.deb

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

iD8DBQFIde2UTTx8oVVPtMYRAk+eAJ9JLKBbWUvP1PBdWA7TgKuo4IjtNQCeK9xq
Q6+SSy4isIRBZBMCbyh9yDg=
=3ufJ
-END PGP SIGNATURE-


Accepted:
slashem-common_0.0.7E7F3-1.2_i386.deb
  to pool/main/s/slashem/slashem-common_0.0.7E7F3-1.2_i386.deb
slashem-gtk_0.0.7E7F3-1.2_i386.deb
  to pool/main/s/slashem/slashem-gtk_0.0.7E7F3-1.2_i386.deb
slashem-sdl_0.0.7E7F3-1.2_i386.deb
  to pool/main/s/slashem/slashem-sdl_0.0.7E7F3-1.2_i386.deb
slashem-x11_0.0.7E7F3-1.2_i386.deb
  to pool/main/s/slashem/slashem-x11_0.0.7E7F3-1.2_i386.deb
slashem_0.0.7E7F3-1.2.diff.gz
  to pool/main/s/slashem/slashem_0.0.7E7F3-1.2.diff.gz
slashem_0.0.7E7F3-1.2.dsc
  to pool/main/s/slashem/slashem_0.0.7E7F3-1.2.dsc
slashem_0.0.7E7F3-1.2_i386.deb
  to pool/main/s/slashem/slashem_0.0.7E7F3-1.2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted xserver-xorg-video-mga 1:1.4.9.dfsg-1 (source i386)

2008-07-10 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 13:32:32 +0200
Source: xserver-xorg-video-mga
Binary: xserver-xorg-video-mga
Architecture: source i386
Version: 1:1.4.9.dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Julien Cristau [EMAIL PROTECTED]
Description: 
 xserver-xorg-video-mga - X.Org X server -- MGA display driver
Changes: 
 xserver-xorg-video-mga (1:1.4.9.dfsg-1) unstable; urgency=low
 .
   * New upstream release.
   * Run dpkg-shlibdeps with --warnings=6.  Drivers reference symbols from
 /usr/bin/Xorg and other modules, and that's not a bug, so we want
 dpkg-shlibdeps to shut up about symbols it can't find.  Build-depend on
 dpkg-dev = 1.14.17.
   * Bump Standards-Version to 3.7.3.
   * Add myself to Uploaders.
Checksums-Sha1: 
 88e621c01de5c452f53d176f1eabd2bc27c5735b 1687 
xserver-xorg-video-mga_1.4.9.dfsg-1.dsc
 05e8be3ba9d9589eb88e92d4c4b4c61fd6ee5062 527156 
xserver-xorg-video-mga_1.4.9.dfsg.orig.tar.gz
 d8f8224a62e2c96439c1c3031371b90c74a7c0cb 43328 
xserver-xorg-video-mga_1.4.9.dfsg-1.diff.gz
 66ecc45c1217dda42784db3250b88dac15931936 112294 
xserver-xorg-video-mga_1.4.9.dfsg-1_i386.deb
Checksums-Sha256: 
 2bd5f050831f599c7e11095a5684f24696bea758fbc0fe781a6e08b115cc2833 1687 
xserver-xorg-video-mga_1.4.9.dfsg-1.dsc
 48e47c59c3306aa2ca022f209cbaf71b06b5b3f94aabc52b06d787da9d7ab0d2 527156 
xserver-xorg-video-mga_1.4.9.dfsg.orig.tar.gz
 1d7fa4349f689fa8d9fe2b861bdea5f39e8a195d32e11ab7f1511fe149d2aaac 43328 
xserver-xorg-video-mga_1.4.9.dfsg-1.diff.gz
 d4b56ee1eefd93d52cc13180421fd24368a743c88c63b30a1c8e7369963eaa37 112294 
xserver-xorg-video-mga_1.4.9.dfsg-1_i386.deb
Files: 
 33232d77d75c8085e89156e456118dab 1687 x11 optional 
xserver-xorg-video-mga_1.4.9.dfsg-1.dsc
 8036a3285117a559d11a03ca13162b9b 527156 x11 optional 
xserver-xorg-video-mga_1.4.9.dfsg.orig.tar.gz
 30dc10ca94554093acdb6f1e666058b0 43328 x11 optional 
xserver-xorg-video-mga_1.4.9.dfsg-1.diff.gz
 bbc01d232aa7b1b6472dcd94b0d197a1 112294 x11 optional 
xserver-xorg-video-mga_1.4.9.dfsg-1_i386.deb

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

iEYEARECAAYFAkh187UACgkQmEvTgKxfcAyEyQCfcwlPP9BBXoL7frErO17IDufF
D9kAoM0MJwQVvEjUYRmuQEMsLX6y5WnZ
=6RD6
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-mga_1.4.9.dfsg-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.4.9.dfsg-1.diff.gz
xserver-xorg-video-mga_1.4.9.dfsg-1.dsc
  to pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.4.9.dfsg-1.dsc
xserver-xorg-video-mga_1.4.9.dfsg-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.4.9.dfsg-1_i386.deb
xserver-xorg-video-mga_1.4.9.dfsg.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.4.9.dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted archivemail 0.7.2-5 (source all)

2008-07-10 Thread Serafeim Zanikolas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 06 Jul 2008 18:36:12 +0100
Source: archivemail
Binary: archivemail
Architecture: source all
Version: 0.7.2-5
Distribution: unstable
Urgency: low
Maintainer: Serafeim Zanikolas [EMAIL PROTECTED]
Changed-By: Serafeim Zanikolas [EMAIL PROTECTED]
Description: 
 archivemail - archive and compress or delete your old email
Closes: 489448
Changes: 
 archivemail (0.7.2-5) unstable; urgency=low
 .
   * New maintainer. Closes: #489448.
   * Fix watch file.
   * Move non-debian-specific patches from diff.gz to debian/patches.
   * Document --archive-name switch in manpage; add docbook and docbook-utils
 in build-deps.
   * Remove obsolete ${misc:Depends}.
   * Set Standards-Version to 3.8.0 (no changes required).
Checksums-Sha1: 
 ce9f2c2487e92865c3a577b8ec24299f35a91a1c 1093 archivemail_0.7.2-5.dsc
 8ff88d6c6044700c81d9c83781060149ea23cb24 5439 archivemail_0.7.2-5.diff.gz
 60f1df0bc5031854f32bf6c4f9201204f4a22797 36762 archivemail_0.7.2-5_all.deb
Checksums-Sha256: 
 9f095b1e8167af437e440436a3a48da461cec87e04154ee4f77daa9217d37c17 1093 
archivemail_0.7.2-5.dsc
 ec34c7aedce621ab23c405319a69a9943be6134391e9bc8de4bdf24b2444c3f6 5439 
archivemail_0.7.2-5.diff.gz
 b4c7be123e17369493ec0da8df432332e578ac524abb7fc36aa8850ff6760f5d 36762 
archivemail_0.7.2-5_all.deb
Files: 
 623a672628ef7e1e62a7ce1d5a08104f 1093 mail optional archivemail_0.7.2-5.dsc
 004abbdf364557361606b254df91d895 5439 mail optional archivemail_0.7.2-5.diff.gz
 76aee8cbb45f39a40cdf5ea7e31cd01d 36762 mail optional 
archivemail_0.7.2-5_all.deb

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

iD8DBQFIdf+EVty5d8XpUzMRAuGEAJ92sP1ptwvZP2W/MR8OWZVDgOzjhgCgg/x+
GugZaFMSEzcs9TkkdWY+z3U=
=Wtim
-END PGP SIGNATURE-


Accepted:
archivemail_0.7.2-5.diff.gz
  to pool/main/a/archivemail/archivemail_0.7.2-5.diff.gz
archivemail_0.7.2-5.dsc
  to pool/main/a/archivemail/archivemail_0.7.2-5.dsc
archivemail_0.7.2-5_all.deb
  to pool/main/a/archivemail/archivemail_0.7.2-5_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted gnumed-client 0.2.8.10-1 (source all)

2008-07-10 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 14:06:24 +0200
Source: gnumed-client
Binary: gnumed-client gnumed-client-de gnumed-common gnumed-doc
Architecture: source all
Version: 0.2.8.10-1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team [EMAIL PROTECTED]
Changed-By: Andreas Tille [EMAIL PROTECTED]
Description: 
 gnumed-client - medical practice management - Client
 gnumed-client-de - medical practice management - Client for German users
 gnumed-common - medical practice management - common files
 gnumed-doc - medical practice management - Documentation
Changes: 
 gnumed-client (0.2.8.10-1) unstable; urgency=low
 .
   * New upstream version
   * gnumed-client-de: Enhances gnumed-client
Checksums-Sha1: 
 b14a891cf64eb2f8b5c2a067befed274791c88e9 1507 gnumed-client_0.2.8.10-1.dsc
 85dd982112e9548fbe4c6ea8484fc487eb7a9f2d 1673983 
gnumed-client_0.2.8.10.orig.tar.gz
 a4927ce82fb0e862c932aee28b9b401e870e3788 19815 gnumed-client_0.2.8.10-1.diff.gz
 5ebeadbd7272552af7d26858ba891501fa97ad94 790948 
gnumed-client_0.2.8.10-1_all.deb
 bfdc155980fdef9954ccc2fcaef28a213c243092 8500 
gnumed-client-de_0.2.8.10-1_all.deb
 23093cdc2fd4952681be5ec85f9ac7039b0db842 155244 
gnumed-common_0.2.8.10-1_all.deb
 8816e00e64f6ad2d598c9830d206a116a8dbf60a 52210 gnumed-doc_0.2.8.10-1_all.deb
Checksums-Sha256: 
 7d109fb67fd7427bf636dfc15434e203ba7c0b653fa7da792a97cf9af8a53914 1507 
gnumed-client_0.2.8.10-1.dsc
 46f2dde07910842bdf5652c6a4300c1506b8532e980320d42647ee5f9fbe2b9d 1673983 
gnumed-client_0.2.8.10.orig.tar.gz
 94eabfd9a3a63cffafa87305c181a3f18dde3a955f053e6ffed3ed2de8ca51f7 19815 
gnumed-client_0.2.8.10-1.diff.gz
 bb1ebc69d9fb87ff5b32d69d26a8694ec1775a217c489932530424377286d149 790948 
gnumed-client_0.2.8.10-1_all.deb
 8c4e895e2869e7193f51f2cfe15cf6e4de89a362b5e87c0ee6cc81d409232006 8500 
gnumed-client-de_0.2.8.10-1_all.deb
 a9c97598b90262bb7fd6221f4bdf69171c0684ac046fcf8f993aba0e6196a0b9 155244 
gnumed-common_0.2.8.10-1_all.deb
 7fba9ccab275b9358f24b7ce989eae6b1a235e33ec7a2597be0f02a532f59f28 52210 
gnumed-doc_0.2.8.10-1_all.deb
Files: 
 5b0215dbeaade74eaf0f88e3804973ee 1507 misc optional 
gnumed-client_0.2.8.10-1.dsc
 eebe8fa707363b04203f1d54d892c46f 1673983 misc optional 
gnumed-client_0.2.8.10.orig.tar.gz
 02f47e31bd51ed7c0912462f88ea3fac 19815 misc optional 
gnumed-client_0.2.8.10-1.diff.gz
 730f2d9b1a158931527f4cb3cba5cdd9 790948 misc optional 
gnumed-client_0.2.8.10-1_all.deb
 3d5b0c625a3ecf76153a178afd3c64c7 8500 misc optional 
gnumed-client-de_0.2.8.10-1_all.deb
 d97833d9936f7d84d6331b24b7e482bb 155244 misc optional 
gnumed-common_0.2.8.10-1_all.deb
 d058174401dbd4e3e6b9ac7855e133a6 52210 doc optional 
gnumed-doc_0.2.8.10-1_all.deb

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

iD8DBQFIdfzRYDBbMcCf01oRAu9rAJsHU1tYxK+MdY6Zp2piwsz0DUZVvwCeKMoq
50UKbJOgNPlamuMDVsXNLzU=
=BZ+D
-END PGP SIGNATURE-


Accepted:
gnumed-client-de_0.2.8.10-1_all.deb
  to pool/main/g/gnumed-client/gnumed-client-de_0.2.8.10-1_all.deb
gnumed-client_0.2.8.10-1.diff.gz
  to pool/main/g/gnumed-client/gnumed-client_0.2.8.10-1.diff.gz
gnumed-client_0.2.8.10-1.dsc
  to pool/main/g/gnumed-client/gnumed-client_0.2.8.10-1.dsc
gnumed-client_0.2.8.10-1_all.deb
  to pool/main/g/gnumed-client/gnumed-client_0.2.8.10-1_all.deb
gnumed-client_0.2.8.10.orig.tar.gz
  to pool/main/g/gnumed-client/gnumed-client_0.2.8.10.orig.tar.gz
gnumed-common_0.2.8.10-1_all.deb
  to pool/main/g/gnumed-client/gnumed-common_0.2.8.10-1_all.deb
gnumed-doc_0.2.8.10-1_all.deb
  to pool/main/g/gnumed-client/gnumed-doc_0.2.8.10-1_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted epiphany-browser 2.22.3-1 (source all amd64)

2008-07-10 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 02 Jul 2008 10:48:25 +0200
Source: epiphany-browser
Binary: epiphany-browser epiphany-gecko epiphany-webkit epiphany-browser-data 
epiphany-browser-dev epiphany-browser-dbg
Architecture: source amd64 all
Version: 2.22.3-1
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette [EMAIL PROTECTED]
Changed-By: Josselin Mouette [EMAIL PROTECTED]
Description: 
 epiphany-browser - Intuitive web browser - dummy package
 epiphany-browser-data - Data files for the GNOME web browser
 epiphany-browser-dbg - Debugging symbols for the GNOME web browser
 epiphany-browser-dev - Development files for the GNOME web browser
 epiphany-gecko - Intuitive GNOME web browser - Gecko version
 epiphany-webkit - Intuitive GNOME web browser - webkit version
Closes: 487147 487160
Changes: 
 epiphany-browser (2.22.3-1) unstable; urgency=low
 .
   * epiphany-browser.README.Debian: explain how to change the backend.
 Closes: #487147.
   * 16_embed_passwords.patch: patch from Mike Hommey to fix typos
 causing passwords not being correctly removed from the password
 manager. Closes: #487160.
   * 04_proxy_password.patch: change the patch to still work with gecko
 1.8 so that it is suitable for upstream.
   * New upstream release.
 + 04_proxy_password.patch, 14_contenthandler_api.patch,
   16_embed_passwords.patch: dropped, merged upstream.
 + 05_libexecdir.patch, 09_download_dialog.patch: refreshed.
 + 15_certificates_oldapi.patch: only keep the MozRegisterComponents
   part, others are integrated upstream. Update it to match the
   change.
 + 99_autoreconf.patch: regenerated.
   * rules, *.links: only ship the upstream changelog in
 epiphany-browser-data and link to it, since its size was multiplied
 by 30 thanks to upstream using git-svn.
   * Standards version is 3.8.0.
Checksums-Sha1: 
 ca51e4984f974d4c31fdd4bc262d036105caef52 1986 epiphany-browser_2.22.3-1.dsc
 62639d5cdaf1fa1cf6f03f4b8c87c671fe07d049 7963983 
epiphany-browser_2.22.3.orig.tar.gz
 b38383a9073ecc75ed62365d186101b10596d045 39584 
epiphany-browser_2.22.3-1.diff.gz
 b374d6c68a85dd1d448002c996335698f2488a4f 550240 
epiphany-gecko_2.22.3-1_amd64.deb
 abc8c1feeaa3ec1a33cd9611796416cf9fde1948 381708 
epiphany-webkit_2.22.3-1_amd64.deb
 3fbf19658acdcdc929a79edf195473df58e7b87e 3071432 
epiphany-browser-dbg_2.22.3-1_amd64.deb
 52a7e9003d496bf9174eaf9b4b8ad013200d20c3 17470 
epiphany-browser_2.22.3-1_all.deb
 39aa25bbc658a1477070c8d6e10d977e5e44b793 6278846 
epiphany-browser-data_2.22.3-1_all.deb
 d60f4deca9fb8a61b1eacc710739c502444041b7 84382 
epiphany-browser-dev_2.22.3-1_all.deb
Checksums-Sha256: 
 a4eaead2cb58e9859c1eb3480a39aa228968f2fc336dba357da37163e9da4d42 1986 
epiphany-browser_2.22.3-1.dsc
 5c6a72e23274583275907554d32d7bba6d5492a0fb93539998a1c7d748f6a84c 7963983 
epiphany-browser_2.22.3.orig.tar.gz
 55e332b6dadef28b979ab48f1beaf0b9e2de7ed5ee666ea4668c27f51e139d51 39584 
epiphany-browser_2.22.3-1.diff.gz
 996e9717084fa25789c54f021283a307d994b7261775dc34c900b6a0d683c93c 550240 
epiphany-gecko_2.22.3-1_amd64.deb
 5a0c92432a2618c636c937b6480275dfe25b645131bdf9f2659e976f7f31a175 381708 
epiphany-webkit_2.22.3-1_amd64.deb
 60fc3a70f668babdf9d8e0b5c52e1856c864e4103b29f247a0f1023c7dfc43dc 3071432 
epiphany-browser-dbg_2.22.3-1_amd64.deb
 1a3d72a8f4a7d2005ef9cb99196e3d2e7a438a592e487f9c131cecaa762a6592 17470 
epiphany-browser_2.22.3-1_all.deb
 494647d2aa2bf7e665f56856a0f53d3ff6abc11f398aa41d0b48be5b98450b2e 6278846 
epiphany-browser-data_2.22.3-1_all.deb
 380780c41d5fc7c2e9bff8507710f908a624e1fd820acfbfcd8730831dffaa92 84382 
epiphany-browser-dev_2.22.3-1_all.deb
Files: 
 e51e03b6f9596bbd26697fca26c2b9ad 1986 gnome optional 
epiphany-browser_2.22.3-1.dsc
 7d27cb57fbd50e57bb333aa9b8ae806a 7963983 gnome optional 
epiphany-browser_2.22.3.orig.tar.gz
 a6a7432f379905264fd52bc57c401e41 39584 gnome optional 
epiphany-browser_2.22.3-1.diff.gz
 99236a59673707c42549b76ca1c2d1d2 550240 gnome optional 
epiphany-gecko_2.22.3-1_amd64.deb
 7e4ed0e1215f66132f63797f3edb6a0f 381708 gnome optional 
epiphany-webkit_2.22.3-1_amd64.deb
 2b1b6d7aff605b06bb9609c634cf5a91 3071432 gnome extra 
epiphany-browser-dbg_2.22.3-1_amd64.deb
 4ab86546c0ee391ae952e336434c5758 17470 gnome optional 
epiphany-browser_2.22.3-1_all.deb
 11963cb6792470e0f27617dfbc49abc1 6278846 gnome optional 
epiphany-browser-data_2.22.3-1_all.deb
 f9d722a74d07d53522c9b0f28ddeb297 84382 devel optional 
epiphany-browser-dev_2.22.3-1_all.deb

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

iD8DBQFIdg75rSla4ddfhTMRAriTAJ9LfXjMXXPQbY0NsMkNsvJFvmrgrQCg9n2c
QA9abYupJD/VbwUfPQG8fpY=
=AtDH
-END PGP SIGNATURE-


Accepted:
epiphany-browser-data_2.22.3-1_all.deb
  to pool/main/e/epiphany-browser/epiphany-browser-data_2.22.3-1_all.deb
epiphany-browser-dbg_2.22.3-1_amd64.deb
  to pool/main/e/epiphany-browser/epiphany-browser-dbg_2.22.3-1_amd64.deb
epiphany-browser-dev_2.22.3-1_all.deb
  to 

Accepted lua-svn 0.3.0-3 (source amd64)

2008-07-10 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 15:29:28 +0200
Source: lua-svn
Binary: liblua5.1-svn1 liblua5.1-svn-dev
Architecture: source amd64
Version: 0.3.0-3
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 liblua5.1-svn-dev - Development files for the Subversion library for the lua 
language
 liblua5.1-svn1 - Subversion library for the lua language version 5.1
Closes: 489081
Changes: 
 lua-svn (0.3.0-3) unstable; urgency=low
 .
   * Fixed build-depends according to libsvn1.5 (Closes: #489081)
Checksums-Sha1: 
 6e714d8c2aa2015ce3c9330ae7ee4df96afe93ba 1270 lua-svn_0.3.0-3.dsc
 af7b163a4983b2bdd114f6e1a6a11670afd4ec57 3478 lua-svn_0.3.0-3.diff.gz
 1e7bf9e9bc266f491757eea42046dbba6e67b421 16650 liblua5.1-svn1_0.3.0-3_amd64.deb
 3d1f007a7d28d489b0a857d3016112818267db7b 23154 
liblua5.1-svn-dev_0.3.0-3_amd64.deb
Checksums-Sha256: 
 ce795de57c08a0a33b39c6f9116c726a0da94ea5487652c5c225cbe421c5f5df 1270 
lua-svn_0.3.0-3.dsc
 85b53f3bd85a76a08a2075183b03b1ac15592f55412cb619cad6d16bf6a19f6f 3478 
lua-svn_0.3.0-3.diff.gz
 86c6e4e818bdf68778838060fc5b54dc36722b7127fce3df6dce9543163f2fab 16650 
liblua5.1-svn1_0.3.0-3_amd64.deb
 291b592ff57baeb38fbd016057404d40e0e8835c0748f115da4ff1c4f71657a0 23154 
liblua5.1-svn-dev_0.3.0-3_amd64.deb
Files: 
 78ab871ed38f0b78596fd62d2c9732ec 1270 interpreters optional lua-svn_0.3.0-3.dsc
 aabcf74b6301b303b55e0f90abd37c77 3478 interpreters optional 
lua-svn_0.3.0-3.diff.gz
 a87c979546cba1351fd01dbbd5cdee3b 16650 interpreters optional 
liblua5.1-svn1_0.3.0-3_amd64.deb
 701726568f832a3d17806df315249060 23154 libdevel optional 
liblua5.1-svn-dev_0.3.0-3_amd64.deb

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

iEYEARECAAYFAkh2EpsACgkQ7kkcPgEj8vKkSACfSRujvZowbN213dL+I69SdKuM
DnoAmwZapE1Gd45WmI6eOc5GXw0nUa3p
=cjDA
-END PGP SIGNATURE-


Accepted:
liblua5.1-svn-dev_0.3.0-3_amd64.deb
  to pool/main/l/lua-svn/liblua5.1-svn-dev_0.3.0-3_amd64.deb
liblua5.1-svn1_0.3.0-3_amd64.deb
  to pool/main/l/lua-svn/liblua5.1-svn1_0.3.0-3_amd64.deb
lua-svn_0.3.0-3.diff.gz
  to pool/main/l/lua-svn/lua-svn_0.3.0-3.diff.gz
lua-svn_0.3.0-3.dsc
  to pool/main/l/lua-svn/lua-svn_0.3.0-3.dsc


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted lua-logging 1.1.4-2 (source all)

2008-07-10 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 15:55:42 +0200
Source: lua-logging
Binary: liblua5.1-logging liblua5.1-logging-dev
Architecture: source all
Version: 1.1.4-2
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 liblua5.1-logging - lualogging library for the lua language version 5.1
 liblua5.1-logging-dev - Documentation files for the lualogging library for the 
lua langua
Closes: 489384
Changes: 
 lua-logging (1.1.4-2) unstable; urgency=low
 .
   * Fixed spelling error (Closes: #489384)
   * Fixed lintian warning about dpatch dependency
   * Fixed section of -dev package (now is libdevel)
   * Removed ancient XS-X-Vcs-* and moved to the new Vcs-*
Checksums-Sha1: 
 b0e7f99bcb797ebf1d3be70bfd5f2f120b7cdf3b 1239 lua-logging_1.1.4-2.dsc
 9230f1ae32009a52c2fc359333f73bd48cf884f0 2259 lua-logging_1.1.4-2.diff.gz
 6f19c9088c0a8cd1db9711e1c3c218245fcf6381 5674 liblua5.1-logging_1.1.4-2_all.deb
 160d8260c819799749de8596811845fdf076eb5b 42082 
liblua5.1-logging-dev_1.1.4-2_all.deb
Checksums-Sha256: 
 6ecad3c245c3c4c639f225787a7808f5cdbca14a024fce9ec311a72d01db6564 1239 
lua-logging_1.1.4-2.dsc
 8573dfa7a1a22e82bf05f8ff85b2a96ba547629543f2ca9c1ad3b39ccb2901a2 2259 
lua-logging_1.1.4-2.diff.gz
 63a05d73abc1a0d65927e90c9e7f5a1b62be03d82cf06cf0b606264b7c4e1f43 5674 
liblua5.1-logging_1.1.4-2_all.deb
 6a54685f9f2fc184ccea8477e3fc4162a760e9bd22c6e39acbd98c4d7900b127 42082 
liblua5.1-logging-dev_1.1.4-2_all.deb
Files: 
 88b4c653f9c83f86d2cbcc660582bca9 1239 interpreters optional 
lua-logging_1.1.4-2.dsc
 3a3313039815714cea2ac1887d590b10 2259 interpreters optional 
lua-logging_1.1.4-2.diff.gz
 7df4d039a51e2c753d0ed11e50f99917 5674 interpreters optional 
liblua5.1-logging_1.1.4-2_all.deb
 5a67d2aba0f98b2c974dc2c4d03af9cb 42082 libdevel optional 
liblua5.1-logging-dev_1.1.4-2_all.deb

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

iEYEARECAAYFAkh2FVgACgkQ7kkcPgEj8vJU8wCguU1ElB9BCxmYyozWwTwqyroQ
khAAoLg6WZGVQwU4WCy4MmvBajLa0/P0
=cmdg
-END PGP SIGNATURE-


Accepted:
liblua5.1-logging-dev_1.1.4-2_all.deb
  to pool/main/l/lua-logging/liblua5.1-logging-dev_1.1.4-2_all.deb
liblua5.1-logging_1.1.4-2_all.deb
  to pool/main/l/lua-logging/liblua5.1-logging_1.1.4-2_all.deb
lua-logging_1.1.4-2.diff.gz
  to pool/main/l/lua-logging/lua-logging_1.1.4-2.diff.gz
lua-logging_1.1.4-2.dsc
  to pool/main/l/lua-logging/lua-logging_1.1.4-2.dsc


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted sun-java6 6-07-1 (source i386 all)

2008-07-10 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 11:49:10 +0200
Source: sun-java6
Binary: sun-java6-jre sun-java6-bin sun-java6-plugin ia32-sun-java6-bin 
ia32-sun-java6-plugin sun-java6-fonts sun-java6-jdk sun-java6-demo 
sun-java6-source sun-java6-doc sun-java6-javadb
Architecture: source i386 all
Version: 6-07-1
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 ia32-sun-java6-bin - Sun Java(TM) Runtime Environment (JRE) 6 (32-bit)
 ia32-sun-java6-plugin - The Java(TM) Plug-in, Java SE 6 (32-bit)
 sun-java6-bin - Sun Java(TM) Runtime Environment (JRE) 6 (architecture 
dependent 
 sun-java6-demo - Sun Java(TM) Development Kit (JDK) 6 demos and examples
 sun-java6-doc - Sun JDK(TM) Documention -- integration installer
 sun-java6-fonts - Lucida TrueType fonts (from the Sun JRE)
 sun-java6-javadb - Java(TM) DB, Sun Microsystems' distribution of Apache Derby
 sun-java6-jdk - Sun Java(TM) Development Kit (JDK) 6
 sun-java6-jre - Sun Java(TM) Runtime Environment (JRE) 6 (architecture 
independen
 sun-java6-plugin - The Java(TM) Plug-in, Java SE 6
 sun-java6-source - Sun Java(TM) Development Kit (JDK) 6 source files
Closes: 428142 477204 477673 485913 488184
Changes: 
 sun-java6 (6-07-1) unstable; urgency=low
 .
   * debian/control.in: Update Xb-Npp-MimeType.
   * Let update-java-alternatives handle the jexec alternative. Closes: #477673.
   * Ignore errors during activation of class data sharing. Closes: #428142.
   * Update sv translation for debconf template (Martin Bagge). Closes: #488184.
   * Distributions are not allowed to package the released versions published
 at http://java.sun.com/javase/downloads and have to wait for the
 availability of the DLJ bundles. No need to file reports. Closes: #485913.
   * Allow epiphany-gecko | epiphany-webkit as browser alternatives.
   * Remove konqueror as browser alternative, requested in report.
 Closes: #477204.
 .
 sun-java6 (6-07-0ubuntu1) intrepid; urgency=low
 .
   * New upstream bug fix release.
 - Release notes at http://java.sun.com/javase/6/webnotes/ReleaseNotes.html.
Checksums-Sha1: 
 1b26aca9aea5581402ee148cf2a2a2a4ed6bad19 1637 sun-java6_6-07-1.dsc
 2fa0f742a348e2acb442dd197b349bedec1669c3 148175256 sun-java6_6-07.orig.tar.gz
 9da9486a8eefdda973626529997c26825b748d5d 85348 sun-java6_6-07-1.diff.gz
 c6645d2033537546a060acf041931c50e1e4c783 27296312 sun-java6-bin_6-07-1_i386.deb
 65f13f539d4a9c259ceaa2272e4006a2dbec89f2 1700 sun-java6-plugin_6-07-1_i386.deb
 649da7cc86bccb5e2eeec136349f18d2402180bc 17440192 sun-java6-jdk_6-07-1_i386.deb
 4375a1faf2fae62ba72930ab11b107eacd6c0cd3 11899944 
sun-java6-demo_6-07-1_i386.deb
 6693e1ba63bae67afc8c0708bf0cb2126bfd32fe 6339066 sun-java6-jre_6-07-1_all.deb
 c2baebabdcf08553ee3eb3cea0bd5477e1e9b518 1812 sun-java6-fonts_6-07-1_all.deb
 d253d1a6cb3c5f5ae49d2b299c69b905f7f660ce 17561824 
sun-java6-source_6-07-1_all.deb
 1e49dfeae0f107dc565aad94ba53da6a6b5a9c2b 42758 sun-java6-doc_6-07-1_all.deb
 bf69ecd476df90ff78abe17ff768c559a2afe459 9686432 
sun-java6-javadb_6-07-1_all.deb
Checksums-Sha256: 
 5e8daba3f7733055282b305c57ea2ea3ada035b4bef3134f332e684a2d6abb65 1637 
sun-java6_6-07-1.dsc
 f118323e9127a7299bdbf214bcac897812df4ede71d71958025e9e1d8febf5bd 148175256 
sun-java6_6-07.orig.tar.gz
 794a678b691660e9490bd33c9952765540e8bdcedc648b025a4941614899d660 85348 
sun-java6_6-07-1.diff.gz
 e9abefac4cf10dee44cb215d478b123d9b72439ed429e93ca3bfc8c67e01902c 27296312 
sun-java6-bin_6-07-1_i386.deb
 6d907602286f7c7fc2b9eed4942e57e4d5dc63bf79321ca9dcf472966a7359c7 1700 
sun-java6-plugin_6-07-1_i386.deb
 bb9b606730801c7748d545ea3b7547acc73891bcf15c05b1668c8bb643a9ddf6 17440192 
sun-java6-jdk_6-07-1_i386.deb
 139f337e0268d121e5a42dcb80346dc6c490371ba30e2885735306f094c5a3b9 11899944 
sun-java6-demo_6-07-1_i386.deb
 84fc5ef705aedee63e1be0033002731a16747b95c851b47a7c71c067802b1fd9 6339066 
sun-java6-jre_6-07-1_all.deb
 7fae3b5ddf37557fa9b35705117c5bd8ba061a76df5f837d59cad1584da42e63 1812 
sun-java6-fonts_6-07-1_all.deb
 71c74641e992cd568de0293978f246f55c0fdbdacde7e4c5b2737afcbf5c7352 17561824 
sun-java6-source_6-07-1_all.deb
 3fa13b8642c5584741fc7e837465752f2ccdf81e1459596bf697fcaa54aac7f4 42758 
sun-java6-doc_6-07-1_all.deb
 14d745a56c20a4e0c949320b6e476d55a06a1d10da1f2a99c8a48eafe851d532 9686432 
sun-java6-javadb_6-07-1_all.deb
Files: 
 0a0f4f2fc48754b471e3e2594061de22 1637 non-free/devel optional 
sun-java6_6-07-1.dsc
 43abbbaf6d36668c941f5e0c4aca0387 148175256 non-free/devel optional 
sun-java6_6-07.orig.tar.gz
 a502677101294ac5ac5086f96af3639c 85348 non-free/devel optional 
sun-java6_6-07-1.diff.gz
 da78e7a5a084a0c4ae92bf4b271698df 27296312 non-free/libs optional 
sun-java6-bin_6-07-1_i386.deb
 2f634a80f6333b3f670a9d04a1f09c1a 1700 non-free/web optional 
sun-java6-plugin_6-07-1_i386.deb
 735100a73d1cdaab8adcb8b622e1ca97 17440192 non-free/devel optional 
sun-java6-jdk_6-07-1_i386.deb
 

Accepted ispell-fo 0.2.33-1 (source all)

2008-07-10 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 15:39:53 +0200
Source: ispell-fo
Binary: ifaroese wfaroese aspell-fo myspell-fo
Architecture: source all
Version: 0.2.33-1
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo [EMAIL PROTECTED]
Changed-By: Agustin Martin Domingo [EMAIL PROTECTED]
Description: 
 aspell-fo  - The Faroese dictionary for aspell
 ifaroese   - The Faroese dictionary for ispell
 myspell-fo - The Faroese dictionary for myspell
 wfaroese   - The Faroese dictionary / wordlist
Changes: 
 ispell-fo (0.2.33-1) unstable; urgency=low
 .
   * New Upstream Version
Checksums-Sha1: 
 4d8d1cc21c064bcbaddb43dbdc2df7f4c242f85a 1310 ispell-fo_0.2.33-1.dsc
 da78dadbd0c4bffa487e99f29be1961cd87dec54 320294 ispell-fo_0.2.33.orig.tar.gz
 4cc5c1df61093fedbf81c4f0923238bbb5742d04 8384 ispell-fo_0.2.33-1.diff.gz
 af25a778d6fae033dc7b3436ecfeee2d688fdde8 318260 ifaroese_0.2.33-1_all.deb
 638e0a461ae8185b3311a81e5c16caa02b47a184 347052 wfaroese_0.2.33-1_all.deb
 dc37db230ecc4da06189ec132e3c8785e07ff53c 241634 aspell-fo_0.2.33-1_all.deb
 9fb1f543219f3b23ef840aea78b65108faf9d18c 317446 myspell-fo_0.2.33-1_all.deb
Checksums-Sha256: 
 4c0dc1929042cda685df0f9f3de054edafb671808d6a6a0d53fe38fafa892ace 1310 
ispell-fo_0.2.33-1.dsc
 b3e61c1a3b4ae2a67d1a68176053f8cdee8acff90c634650d2a8dd1075256e6a 320294 
ispell-fo_0.2.33.orig.tar.gz
 bfcb49ac92c942f645ef5eaa7a980835b600172f68694f582ead7f087d1190e2 8384 
ispell-fo_0.2.33-1.diff.gz
 436ba16c7dc4e1585033471b45ff55bfd1f2202cd58d76edcdb184751fb808e5 318260 
ifaroese_0.2.33-1_all.deb
 24060e68895e3f5da25ffbef27f8fb1cdf3be41756bf4908acacbd011baa13ff 347052 
wfaroese_0.2.33-1_all.deb
 945e46021626fc75584f568ee1a6637b333504c0a038321f637cd4816367ab28 241634 
aspell-fo_0.2.33-1_all.deb
 824d2411b5c59622bc36e354457c743fcdc5fb54df49a740b5f880cf01cb248f 317446 
myspell-fo_0.2.33-1_all.deb
Files: 
 aded256c4005c9c047d2c25f2069bdba 1310 text optional ispell-fo_0.2.33-1.dsc
 05e3197acf34ee17587a32581521fa1c 320294 text optional 
ispell-fo_0.2.33.orig.tar.gz
 c1194e86cbe25cb6d42678a1c138e667 8384 text optional ispell-fo_0.2.33-1.diff.gz
 449d3d5a66210b4099e68dc17a638147 318260 text optional ifaroese_0.2.33-1_all.deb
 cbe84ffd6ad307dd65e99c0b90c260b8 347052 text optional wfaroese_0.2.33-1_all.deb
 7d9deeb81ad2b78aafce078a629d8298 241634 text optional 
aspell-fo_0.2.33-1_all.deb
 8f83ab12cd801891a31fc5ed1514ba69 317446 text optional 
myspell-fo_0.2.33-1_all.deb

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

iD8DBQFIdhO+TShHqj72DpwRAmkrAJ4obAxir/a5i20ZgN0ZOIFc/4cX2wCeKvQf
vxerQF/gf0Q8hOdNnqBiyWY=
=KUa1
-END PGP SIGNATURE-


Accepted:
aspell-fo_0.2.33-1_all.deb
  to pool/main/i/ispell-fo/aspell-fo_0.2.33-1_all.deb
ifaroese_0.2.33-1_all.deb
  to pool/main/i/ispell-fo/ifaroese_0.2.33-1_all.deb
ispell-fo_0.2.33-1.diff.gz
  to pool/main/i/ispell-fo/ispell-fo_0.2.33-1.diff.gz
ispell-fo_0.2.33-1.dsc
  to pool/main/i/ispell-fo/ispell-fo_0.2.33-1.dsc
ispell-fo_0.2.33.orig.tar.gz
  to pool/main/i/ispell-fo/ispell-fo_0.2.33.orig.tar.gz
myspell-fo_0.2.33-1_all.deb
  to pool/main/i/ispell-fo/myspell-fo_0.2.33-1_all.deb
wfaroese_0.2.33-1_all.deb
  to pool/main/i/ispell-fo/wfaroese_0.2.33-1_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted gxmms2 0.7.0-2 (source i386)

2008-07-10 Thread Florian Ragwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 15:44:24 +0200
Source: gxmms2
Binary: gxmms2 gkrellxmms2
Architecture: source i386
Version: 0.7.0-2
Distribution: unstable
Urgency: low
Maintainer: Florian Ragwitz [EMAIL PROTECTED]
Changed-By: Florian Ragwitz [EMAIL PROTECTED]
Description: 
 gkrellxmms2 - GKrellM plugin to control xmms2
 gxmms2 - xmms2 client for the GNOME desktop
Changes: 
 gxmms2 (0.7.0-2) unstable; urgency=low
 .
   * Be compatible with xmms2 DrLecter.
 + Cherry-pick 791f33: Updated to be compatible with the latest XMMS2 API
   change.
 + Also fixes some compiletime warnings.
 + Build-Depend on DrL.
   * Bump Standards-Version to 3.8.0 (no changes).
Checksums-Sha1: 
 2dd4e051af1be46f5f347b107deaeb3478c8c2ff 1214 gxmms2_0.7.0-2.dsc
 cde16f87d2244aa7081da9ab7742d1e5fc4f81cf 3211 gxmms2_0.7.0-2.diff.gz
 a17772d19021c850ab1e74f8547d6c73a50aa37b 61986 gxmms2_0.7.0-2_i386.deb
 989b786c36c8b680f4a47ee872d14b3ec4deb6f5 54702 gkrellxmms2_0.7.0-2_i386.deb
Checksums-Sha256: 
 6cf90399db85997bccc4b6bc6f41f225552f4d3a8421fd5768238d9d42dc52e4 1214 
gxmms2_0.7.0-2.dsc
 1239ca08279de4a0819828de7cec3b329433048dacbb33fd79d8ca48a15ed351 3211 
gxmms2_0.7.0-2.diff.gz
 06beaa4593b1ebb07ad7baeb5509dd6c37b35d51e9b2a2576bb0dcfca9b4c0fa 61986 
gxmms2_0.7.0-2_i386.deb
 fa05268cc828a370081445cc5f2c16c28eec5d64f46f1e8655d1f4adf2c72af9 54702 
gkrellxmms2_0.7.0-2_i386.deb
Files: 
 d358355a6cf432bf20b9118aa260945b 1214 sound optional gxmms2_0.7.0-2.dsc
 69b83e29e8037f55f0fa961588d96ddc 3211 sound optional gxmms2_0.7.0-2.diff.gz
 5ca9d5751f72de4a17fb2466d47c7737 61986 sound optional gxmms2_0.7.0-2_i386.deb
 b346d8608913860bccad1819ce1b77a1 54702 sound optional 
gkrellxmms2_0.7.0-2_i386.deb

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

iEYEARECAAYFAkh2EyQACgkQdC8qQo5jWl6RdgCdHIFvB6osmgUt5pYl6V8439Gp
AGgAni9tDjJCertzKPROLoJTr/h1uJ/y
=403O
-END PGP SIGNATURE-


Accepted:
gkrellxmms2_0.7.0-2_i386.deb
  to pool/main/g/gxmms2/gkrellxmms2_0.7.0-2_i386.deb
gxmms2_0.7.0-2.diff.gz
  to pool/main/g/gxmms2/gxmms2_0.7.0-2.diff.gz
gxmms2_0.7.0-2.dsc
  to pool/main/g/gxmms2/gxmms2_0.7.0-2.dsc
gxmms2_0.7.0-2_i386.deb
  to pool/main/g/gxmms2/gxmms2_0.7.0-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted sun-java5 1.5.0-16-1 (source i386 all)

2008-07-10 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 14:21:58 +0200
Source: sun-java5
Binary: sun-java5-jre sun-java5-bin sun-java5-plugin ia32-sun-java5-bin 
ia32-sun-java5-plugin sun-java5-fonts sun-java5-jdk sun-java5-demo 
sun-java5-source sun-java5-doc
Architecture: source i386 all
Version: 1.5.0-16-1
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 ia32-sun-java5-bin - Sun Java(TM) Runtime Environment (JRE) 5.0 (32-bit)
 ia32-sun-java5-plugin - The Java(TM) Plug-in, Java SE 5.0 (32-bit)
 sun-java5-bin - Sun Java(TM) Runtime Environment (JRE) 5.0 (architecture 
dependen
 sun-java5-demo - Sun Java(TM) Development Kit (JDK) 5.0 demos and examples
 sun-java5-doc - Sun JDK(TM) Documention -- integration installer
 sun-java5-fonts - Lucida TrueType fonts (from the Sun JRE)
 sun-java5-jdk - Sun Java(TM) Development Kit (JDK) 5.0
 sun-java5-jre - Sun Java(TM) Runtime Environment (JRE) 5.0 (architecture 
independ
 sun-java5-plugin - The Java(TM) Plug-in, Java SE 5.0
 sun-java5-source - Sun Java(TM) Development Kit (JDK) 5.0 source files
Closes: 390296 402067 402165 473417 488183
Changes: 
 sun-java5 (1.5.0-16-1) unstable; urgency=low
 .
   * New upstream bug fix release.
 - Fix locking assertion failure. Closes: #402165.
   * Update sv translation for debconf template (Martin Bagge). Closes: #488183.
   * sun-java5-plugin: Update browser dependencies. Closes: #473417.
   * JB-bin.postinst.in: Call java -client -Xshare:dump with -Xmx1m, if the
 memory is available. Closes: #390296.
   * Ignore errors during activation of class data sharing. Closes: #402067.
 .
 sun-java5 (1.5.0-16-0ubuntu1) intrepid; urgency=low
 .
   * New upstream bug fix release.
   * Fix names for browser alternatives in jinfo file, set browser_plugin_dirs
 unconditionally.
Checksums-Sha1: 
 a4cdd86a83811d4b7b277c4a9dcd6795a968806b 1629 sun-java5_1.5.0-16-1.dsc
 bc54d1ba8d59c0f902a8d85736f7af57cf28dd7b 92339957 
sun-java5_1.5.0-16.orig.tar.gz
 dff0fb6b36cbe76d18aad5ae5c7062eae587f521 82058 sun-java5_1.5.0-16-1.diff.gz
 f07e576d9fec2df439ae02620b36b6acd39beda2 22428950 
sun-java5-bin_1.5.0-16-1_i386.deb
 8133c7b58ef67691d1d09b71a2adea04767bc4ef 1700 
sun-java5-plugin_1.5.0-16-1_i386.deb
 5768d02da4f7663040614f63d9e24f0e5f8ba3a9 5054458 
sun-java5-jdk_1.5.0-16-1_i386.deb
 0754a21e0489c8cf4353e84b37829d0481c1e901 9886968 
sun-java5-demo_1.5.0-16-1_i386.deb
 6ea916330445ef5ff4963b56336c4eac3e06dc9e 7423142 
sun-java5-jre_1.5.0-16-1_all.deb
 72d0b3fa6906d2d44a8854d3a86fafecc9387ed0 1812 
sun-java5-fonts_1.5.0-16-1_all.deb
 7d8009ca42edf146b780aec2ecc3971f7480 16452272 
sun-java5-source_1.5.0-16-1_all.deb
 3f18c2d948339e977bcaaac51b081e1e41b7ce89 41850 sun-java5-doc_1.5.0-16-1_all.deb
Checksums-Sha256: 
 1bffb6a6704ed60fa00c657d4fef79aff581a4c9ab11bf6bc6ebd53abd76667c 1629 
sun-java5_1.5.0-16-1.dsc
 262942d6425731dda567a9364e157801f8355b4a349488bbc4583b1b87c9738c 92339957 
sun-java5_1.5.0-16.orig.tar.gz
 1cb458ee0fceda64358ef237cd405f6fd93954aeb7e699312e4301815095a310 82058 
sun-java5_1.5.0-16-1.diff.gz
 d0883f2b3ad059629ec8bf532be7a6b28e0363cc00c473f9a2cd456d014e0357 22428950 
sun-java5-bin_1.5.0-16-1_i386.deb
 57e6f6ae4a3fee68b2919849aa7ae88f465ffe26fdd6e0331d273b5890178813 1700 
sun-java5-plugin_1.5.0-16-1_i386.deb
 ba1a32baed2748d6f4915525c577bc300ae5a874bc591328d262b8258a0c6e22 5054458 
sun-java5-jdk_1.5.0-16-1_i386.deb
 63bca281bb49924d3c6a8f061b4070fc803bf6a97bcbc95ab77c93b24cd79020 9886968 
sun-java5-demo_1.5.0-16-1_i386.deb
 682a72b5e67a4ef4386d7adb691b044b22b0089b7047c429a500b6b97c5687a1 7423142 
sun-java5-jre_1.5.0-16-1_all.deb
 36812902428cd16dc8e4d515c68a86a88b0a92daaff0a69461a809d4aa824a98 1812 
sun-java5-fonts_1.5.0-16-1_all.deb
 3c3660fe727e0fa1f3722505a38cab8797c5deced7f4fefb041948a1c61fc349 16452272 
sun-java5-source_1.5.0-16-1_all.deb
 4657305bbb012e61f2f71090d56def3cd8a0662592c076381c59e822b9d529a0 41850 
sun-java5-doc_1.5.0-16-1_all.deb
Files: 
 c93143d5d829a2df9b9f7565ceec268b 1629 non-free/devel optional 
sun-java5_1.5.0-16-1.dsc
 498a83c0a7cdc9b5f5be9f3871882f16 92339957 non-free/devel optional 
sun-java5_1.5.0-16.orig.tar.gz
 207cd5f8963e06001c7fced5021b530a 82058 non-free/devel optional 
sun-java5_1.5.0-16-1.diff.gz
 424d0cc8b6013f04247f336070b9a410 22428950 non-free/libs optional 
sun-java5-bin_1.5.0-16-1_i386.deb
 afdef388181309b1e58b2583195ded91 1700 non-free/web optional 
sun-java5-plugin_1.5.0-16-1_i386.deb
 d89324d2fe23083a9f610b8d69b90f55 5054458 non-free/devel optional 
sun-java5-jdk_1.5.0-16-1_i386.deb
 14c59efd826d80580527b6e5a7785554 9886968 non-free/devel optional 
sun-java5-demo_1.5.0-16-1_i386.deb
 f35c47c5c365316367b0e0e1d93e9193 7423142 non-free/libs optional 
sun-java5-jre_1.5.0-16-1_all.deb
 1b2a373dbc24f11a1e973314d6eaec77 1812 non-free/x11 optional 
sun-java5-fonts_1.5.0-16-1_all.deb
 62ed1a76b09fb4e5da2e4e4adb24fd2e 16452272 non-free/devel optional 

Accepted dmraid 1.0.0.rc14-2 (source i386)

2008-07-10 Thread Giuseppe Iuculano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 09 Jul 2008 09:26:32 +0200
Source: dmraid
Binary: dmraid dmraid-udeb
Architecture: source i386
Version: 1.0.0.rc14-2
Distribution: unstable
Urgency: low
Maintainer: Giuseppe Iuculano [EMAIL PROTECTED]
Changed-By: Giuseppe Iuculano [EMAIL PROTECTED]
Description: 
 dmraid - Device-Mapper Software RAID support tool
 dmraid-udeb - Device-Mapper Software RAID support tool (udeb)
Closes: 489967 489968 489969 489970 489971 489972 489973
Changes: 
 dmraid (1.0.0.rc14-2) unstable; urgency=low
 .
   * Merge the following patch from Ubuntu (thanks to Luke Yelavich):
 + 04_generate-uuids.dpatch, Generate UUIDs with DMRAID prefix.
   (Closes: #489967)
 + 05_kernel-event-handling.dpatch, Add support for kernel driver event
   handling support. (Closes: #489968)
 + 06_isw-metadata-fixes.dpatch, Intel Software RAID metadata fixes.
   (Closes: #489969)
 + 07_isw-raid10-nested.dpatch, Add RAID10(0+1) nested RAID level support
   for Intel Software RAID. (Closes: #489970)
 + 08_promise-metadata-fixes.dpatch, Promise metadata fixes.
   (Closes: #489971)
 + 09_promise-add-offsets.dpatch, Add extra offsets where promise metadata
   can be found. (Closes: #489972)
 + 10_jmicron-name-fix.dpatch, Fix segfault when attempting to generate
   name for jmicron controllers. (Closes: #489973)
   * Added 11_fix_segfault_on_big_endian.dpatch (via upstream), it fixes a
 segfault on big-endian platforms (ppc)
Checksums-Sha1: 
 ec7b3f4808da6518bbfb2d3c54f05080487a1d5d 1129 dmraid_1.0.0.rc14-2.dsc
 017d1b249c06eee052a20210327a8569b7f59367 13605 dmraid_1.0.0.rc14-2.diff.gz
 57aec8d94afa5d7282f6b3a1be77895b0d2e3537 179320 dmraid_1.0.0.rc14-2_i386.deb
 31f291018833774ced4f2dc85aded4ec68e3e32a 69320 
dmraid-udeb_1.0.0.rc14-2_i386.udeb
Checksums-Sha256: 
 aff4686e614072b4ece5a037c80bf1456eb836edda7d662a21c508a8e3ce9655 1129 
dmraid_1.0.0.rc14-2.dsc
 3d605a33c476e94dfb9774e813c95fa954047811e867ce746c1faa4b907751ba 13605 
dmraid_1.0.0.rc14-2.diff.gz
 01799432e6e2ddc692f951bed9da074ded567aaa5fe1880face33dfdc574ab05 179320 
dmraid_1.0.0.rc14-2_i386.deb
 854d590b921f9b79a2bcde9669c3242ffa6bbb5a2dfa29f2314f6d3d86536feb 69320 
dmraid-udeb_1.0.0.rc14-2_i386.udeb
Files: 
 0c562baa67ef78c58e54beab751e88b7 1129 admin optional dmraid_1.0.0.rc14-2.dsc
 4813f060af9b417b8802ffed333d8d4f 13605 admin optional 
dmraid_1.0.0.rc14-2.diff.gz
 48aeab2e651feae4047a453d73c93827 179320 admin optional 
dmraid_1.0.0.rc14-2_i386.deb
 21923af1150d2ac6c38ea69b0a866091 69320 debian-installer optional 
dmraid-udeb_1.0.0.rc14-2_i386.udeb
Package-Type: udeb

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

iEYEARECAAYFAkh2HwgACgkQ9ijrk0dDIGyxQgCguN6Sw4/PpauEIIvho09EA1l2
xQUAnioa2Sfbs5/FntU/cBZTm0UZSAgO
=+JQ4
-END PGP SIGNATURE-


Accepted:
dmraid-udeb_1.0.0.rc14-2_i386.udeb
  to pool/main/d/dmraid/dmraid-udeb_1.0.0.rc14-2_i386.udeb
dmraid_1.0.0.rc14-2.diff.gz
  to pool/main/d/dmraid/dmraid_1.0.0.rc14-2.diff.gz
dmraid_1.0.0.rc14-2.dsc
  to pool/main/d/dmraid/dmraid_1.0.0.rc14-2.dsc
dmraid_1.0.0.rc14-2_i386.deb
  to pool/main/d/dmraid/dmraid_1.0.0.rc14-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted beep 1.2.2-21 (source powerpc)

2008-07-10 Thread Gerfried Fuchs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 15:14:18 +0200
Source: beep
Binary: beep beep-udeb
Architecture: source powerpc
Version: 1.2.2-21
Distribution: unstable
Urgency: low
Maintainer: Gerfried Fuchs [EMAIL PROTECTED]
Changed-By: Gerfried Fuchs [EMAIL PROTECTED]
Description: 
 beep   - advanced pc-speaker beeper
 beep-udeb  - advanced pc-speaker beeper
Closes: 481751 490163
Changes: 
 beep (1.2.2-21) unstable; urgency=low
 .
   * Don't ignore make clean errors anymore.
   * New debconf translation: Galician by Jacobo Tarrio (closes: #481751)
   * Updated to Standards-Version to 3.8.0, add README.source file (referencing
 quilt's).
   * Also strip sections .comment and .note (closes: #490163)
Checksums-Sha1: 
 f2db207b671a9a4deda270e49c50465c9d716ecf 975 beep_1.2.2-21.dsc
 db2b3dd373418fc1afbb9b7962e4c28cb1a33c2a 17943 beep_1.2.2-21.diff.gz
 5d0ba5d4cf87c051d8229aa5cee91099278be47d 23772 beep_1.2.2-21_powerpc.deb
 28e2141e679f9e3de77c8ce7ad89626df2188d77 5702 beep-udeb_1.2.2-21_powerpc.udeb
Checksums-Sha256: 
 077036496ce613c6ffee56ad394244d19e96b36f3d2d9b47b39f54bfe243ce7b 975 
beep_1.2.2-21.dsc
 d30e4f2a755e06e2d6a90b89501bf261cd85449afe6975263630b2b0d893ac12 17943 
beep_1.2.2-21.diff.gz
 f5d1eafbe4f96eb83ee85ce8d2ce3d4f6332d38cba209d37ce9015b0183ca135 23772 
beep_1.2.2-21_powerpc.deb
 a94361331f759d34a9ecf0e611bc514cd8a10470a190f83e9a00566cf8873d53 5702 
beep-udeb_1.2.2-21_powerpc.udeb
Files: 
 3f505485481da5a8531fbf130fa34759 975 sound optional beep_1.2.2-21.dsc
 ea0fe48ffc7f6a5d7e79378ba53a3d1f 17943 sound optional beep_1.2.2-21.diff.gz
 0ae19055d7764d1ccfd11dc055bcd608 23772 sound optional beep_1.2.2-21_powerpc.deb
 0ae49f22edb7f351b3505cbc9946546d 5702 debian-installer optional 
beep-udeb_1.2.2-21_powerpc.udeb

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

iEYEARECAAYFAkh2IeEACgkQELuA/Ba9d8YogQCgzXyo7T2LFFeWPyJmyq+UJzB6
UXIAnj9cZleoN/nw6kdI6WYiih1LsHUY
=b7pV
-END PGP SIGNATURE-


Accepted:
beep-udeb_1.2.2-21_powerpc.udeb
  to pool/main/b/beep/beep-udeb_1.2.2-21_powerpc.udeb
beep_1.2.2-21.diff.gz
  to pool/main/b/beep/beep_1.2.2-21.diff.gz
beep_1.2.2-21.dsc
  to pool/main/b/beep/beep_1.2.2-21.dsc
beep_1.2.2-21_powerpc.deb
  to pool/main/b/beep/beep_1.2.2-21_powerpc.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted lua-gtk 0.8+20080510-2 (source amd64)

2008-07-10 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 16:33:21 +0200
Source: lua-gtk
Binary: liblua5.1-gtk-0 liblua5.1-gtk-dev
Architecture: source amd64
Version: 0.8+20080510-2
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 liblua5.1-gtk-0 - gtk bindings for the lua language version 5.1
 liblua5.1-gtk-dev - gtk development files for the lua language version 5.1
Closes: 489519
Changes: 
 lua-gtk (0.8+20080510-2) unstable; urgency=low
 .
   * Suggests libgtkhtml2-0 instead of libgtkhtml2 (Closes: #489519)
Checksums-Sha1: 
 e4dfecf84c935196362644b0e7865c1fcd8909e6 1439 lua-gtk_0.8+20080510-2.dsc
 ccd25b91fd11d509144ed65df03572cb75322823 12349 lua-gtk_0.8+20080510-2.diff.gz
 2cdd03a0b9785c6d5d6069a00d29f108e1549ea5 188216 
liblua5.1-gtk-0_0.8+20080510-2_amd64.deb
 c135f1f918f32342a7487bf3d21e32ed9031457a 224748 
liblua5.1-gtk-dev_0.8+20080510-2_amd64.deb
Checksums-Sha256: 
 013b54194df8352b63ddbe37c72caf83914460a42e851a45bff08253c6e46261 1439 
lua-gtk_0.8+20080510-2.dsc
 79dff66ccf1468e7698827fca3c28f7387be29618a645771956c711b0e45135f 12349 
lua-gtk_0.8+20080510-2.diff.gz
 b8fee701c1668942698ba011857b328b33161007682c22f0df956fd37b220878 188216 
liblua5.1-gtk-0_0.8+20080510-2_amd64.deb
 e8f2d95bfb53ba6978ea27c257a4a3f11469b36c407145e5171ed6c13ba18f90 224748 
liblua5.1-gtk-dev_0.8+20080510-2_amd64.deb
Files: 
 e4de08fbdaea9a46b884c2e9a33aa021 1439 interpreters optional 
lua-gtk_0.8+20080510-2.dsc
 bd909a396c8bf16752c11bc67b33632e 12349 interpreters optional 
lua-gtk_0.8+20080510-2.diff.gz
 d51ce3c3e965eb22c41f398ad76723c2 188216 interpreters optional 
liblua5.1-gtk-0_0.8+20080510-2_amd64.deb
 c2888d7ec2ab3aef9172f23778fdb33a 224748 libdevel optional 
liblua5.1-gtk-dev_0.8+20080510-2_amd64.deb

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

iEYEARECAAYFAkh2I/8ACgkQ7kkcPgEj8vKqNwCfQdULCCq+6YH44qR8+m5p+0NX
1TsAn2uTEcLRwHXCxoxgezU+t3AzymgO
=2uta
-END PGP SIGNATURE-


Accepted:
liblua5.1-gtk-0_0.8+20080510-2_amd64.deb
  to pool/main/l/lua-gtk/liblua5.1-gtk-0_0.8+20080510-2_amd64.deb
liblua5.1-gtk-dev_0.8+20080510-2_amd64.deb
  to pool/main/l/lua-gtk/liblua5.1-gtk-dev_0.8+20080510-2_amd64.deb
lua-gtk_0.8+20080510-2.diff.gz
  to pool/main/l/lua-gtk/lua-gtk_0.8+20080510-2.diff.gz
lua-gtk_0.8+20080510-2.dsc
  to pool/main/l/lua-gtk/lua-gtk_0.8+20080510-2.dsc


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted sun-java6 6-07-2 (source i386 all)

2008-07-10 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 15:42:54 +0200
Source: sun-java6
Binary: sun-java6-jre sun-java6-bin sun-java6-plugin ia32-sun-java6-bin 
ia32-sun-java6-plugin sun-java6-fonts sun-java6-jdk sun-java6-demo 
sun-java6-source sun-java6-doc sun-java6-javadb
Architecture: source i386 all
Version: 6-07-2
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 ia32-sun-java6-bin - Sun Java(TM) Runtime Environment (JRE) 6 (32-bit)
 ia32-sun-java6-plugin - The Java(TM) Plug-in, Java SE 6 (32-bit)
 sun-java6-bin - Sun Java(TM) Runtime Environment (JRE) 6 (architecture 
dependent 
 sun-java6-demo - Sun Java(TM) Development Kit (JDK) 6 demos and examples
 sun-java6-doc - Sun JDK(TM) Documention -- integration installer
 sun-java6-fonts - Lucida TrueType fonts (from the Sun JRE)
 sun-java6-javadb - Java(TM) DB, Sun Microsystems' distribution of Apache Derby
 sun-java6-jdk - Sun Java(TM) Development Kit (JDK) 6
 sun-java6-jre - Sun Java(TM) Runtime Environment (JRE) 6 (architecture 
independen
 sun-java6-plugin - The Java(TM) Plug-in, Java SE 6
 sun-java6-source - Sun Java(TM) Development Kit (JDK) 6 source files
Changes: 
 sun-java6 (6-07-2) unstable; urgency=low
 .
   * Ignore errors during activation of class data sharing.
Checksums-Sha1: 
 5c7405f995187d3546d1ff62ffc7301095e75dc7 1637 sun-java6_6-07-2.dsc
 f877fb9ee431150645eaf8aefe9c06479b218f41 85366 sun-java6_6-07-2.diff.gz
 d90031cf1ea8599527423b046263f98680fe268b 27296324 sun-java6-bin_6-07-2_i386.deb
 6e71449138512731d41c81089e2915bc374a43c9 1702 sun-java6-plugin_6-07-2_i386.deb
 a0067e8e574fa9936523182770c3899a7ce10473 17440222 sun-java6-jdk_6-07-2_i386.deb
 e8c3248b4221098bf2165d77e6fbc6c966bf185a 11899928 
sun-java6-demo_6-07-2_i386.deb
 75e7701b05081e8b52e3cb7637e23eb31b51efa8 6339078 sun-java6-jre_6-07-2_all.deb
 2fa482870c4b5cd2ff345d730501d5c7fbbaa377 1818 sun-java6-fonts_6-07-2_all.deb
 470e3f7c9a612e16af28d097377eda7db21d3e24 17561814 
sun-java6-source_6-07-2_all.deb
 377abf97a1687544c580141ed04fbfdbf2fa0ed0 42792 sun-java6-doc_6-07-2_all.deb
 ec4887230af2de9b7f104073d7e4ab16e94f612f 9686454 
sun-java6-javadb_6-07-2_all.deb
Checksums-Sha256: 
 6101d326c87762368efc35f0237f6b92c72f790dcbbde7af291e6a401b42c27b 1637 
sun-java6_6-07-2.dsc
 f25444d50208dcf3a569006a8f82d554682d717c1304d497ff1e9424c9021bad 85366 
sun-java6_6-07-2.diff.gz
 68e7d1230d3909de97f7bb8f092233183d8d8700cd619ad121c3f0eaed067e95 27296324 
sun-java6-bin_6-07-2_i386.deb
 d1f134933e57e69e05c8929b656ca48fec246bf572418ca8dca3b5cb26a0caad 1702 
sun-java6-plugin_6-07-2_i386.deb
 2801dd23305929d48f864f38a967d69e18f8aba4eb0a7b55f285fefa00a2ab61 17440222 
sun-java6-jdk_6-07-2_i386.deb
 280011d6b65fdd2d75a7dc96ecbff402ece9b316aeaafb084088545308659076 11899928 
sun-java6-demo_6-07-2_i386.deb
 65aa5c7796ab37362f23a6812d445e8e17ab4bcbcf6105489b4b275af530ea20 6339078 
sun-java6-jre_6-07-2_all.deb
 02cba6068159cb4ad12bcd64e4ecb437043f5d1f9c62bcb634a0b5a359b8b0b0 1818 
sun-java6-fonts_6-07-2_all.deb
 62d4b4f71b6cd9a0f5099babc02747be2564ee003a10b2a13a044c311565c761 17561814 
sun-java6-source_6-07-2_all.deb
 77cefdc784dc4b399a7a8c61123a7108a4f708cb12f9bae931253976603b18ea 42792 
sun-java6-doc_6-07-2_all.deb
 c3c05f7f3bced97e3959844ad6a5798a68604a4c53738a31ef930a247cd82e41 9686454 
sun-java6-javadb_6-07-2_all.deb
Files: 
 8e476e522f642e8387b80840f40a47eb 1637 non-free/devel optional 
sun-java6_6-07-2.dsc
 2794761723bc103ba0a1fb7795262508 85366 non-free/devel optional 
sun-java6_6-07-2.diff.gz
 4bf964dc5ca06b744ad3215ac07fe926 27296324 non-free/libs optional 
sun-java6-bin_6-07-2_i386.deb
 b991790fe99959bf5132cc181f478549 1702 non-free/web optional 
sun-java6-plugin_6-07-2_i386.deb
 d1f0bd5135eb8b65d57d4aa2ad90a288 17440222 non-free/devel optional 
sun-java6-jdk_6-07-2_i386.deb
 34135370bba86b76a5a3e99d80e86028 11899928 non-free/devel optional 
sun-java6-demo_6-07-2_i386.deb
 d87b77dbe82524f6835f46418c226027 6339078 non-free/libs optional 
sun-java6-jre_6-07-2_all.deb
 723433a2ccbba2cb5327e2d4c4aae5f2 1818 non-free/x11 optional 
sun-java6-fonts_6-07-2_all.deb
 eeebbe2752127abe4d377d976e67a3ca 17561814 non-free/devel optional 
sun-java6-source_6-07-2_all.deb
 78eb37461e8ff1412cf1070411201e24 42792 non-free/doc optional 
sun-java6-doc_6-07-2_all.deb
 4de292c014ec297bdf5d9d687bc54e68 9686454 non-free/libs optional 
sun-java6-javadb_6-07-2_all.deb

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

iEYEARECAAYFAkh2E+8ACgkQStlRaw+TLJx3QACfWo0+EBY0E4DL5FSnt1v1EgLA
jg4AoIF5nOCN2BXRA0Nxha4OKqxdiaw6
=jvrB
-END PGP SIGNATURE-


Accepted:
sun-java6-bin_6-07-2_i386.deb
  to pool/non-free/s/sun-java6/sun-java6-bin_6-07-2_i386.deb
sun-java6-demo_6-07-2_i386.deb
  to pool/non-free/s/sun-java6/sun-java6-demo_6-07-2_i386.deb
sun-java6-doc_6-07-2_all.deb
  to pool/non-free/s/sun-java6/sun-java6-doc_6-07-2_all.deb
sun-java6-fonts_6-07-2_all.deb
  to 

Accepted cm-super 0.3.4-1 (source all)

2008-07-10 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 15:42:57 +0200
Source: cm-super
Binary: cm-super-minimal cm-super cm-super-x11
Architecture: source all
Version: 0.3.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian TeX maintainers [EMAIL PROTECTED]
Changed-By: Norbert Preining [EMAIL PROTECTED]
Description: 
 cm-super   - TeX font package (full version) with CM (EC) in Type1 in T1, T2*,
 cm-super-minimal - TeX font package (minimal version) with CM/EC in Type1 in 
T1, T2*
 cm-super-x11 - Make the cm-super fonts available to X11
Closes: 444308
Changes: 
 cm-super (0.3.4-1) unstable; urgency=low
 .
   * new upstream release
   * add a link /u/s/texmf/doc/fonts/cm-super - /u/s/doc/cm-super-minimal
 so that the documentation can be found by texdoctk (Closes: #444308)
   * add Vcs-Svn and Vcs-Browser fields to debian/control
   * remove pfb2t1c.c since we have that package in Debian
   * Standards version 3.8.0, no changes necessary
   * remove the useless make clean in the debian rules file
   * recode copyright file into utf8
Checksums-Sha1: 
 96f6728aa406515ee538be0ec80737df6dc2019d 1263 cm-super_0.3.4-1.dsc
 8d5c701b562031fef46f9508e9da4845addbfd4c 67228652 cm-super_0.3.4.orig.tar.gz
 b67db3f20239cdfd6378e17f24f3f785aa53b39c 11854 cm-super_0.3.4-1.diff.gz
 e7894e7e3144eeebb5213116607705b0b85e457c 5833462 
cm-super-minimal_0.3.4-1_all.deb
 a7fae22a8b225e62c63f0fe76bd57d0650d00722 25633516 cm-super_0.3.4-1_all.deb
 26ec3215c6649dc0f96548dd514b012798351cf5 797126 cm-super-x11_0.3.4-1_all.deb
Checksums-Sha256: 
 7f6afea4b093286ccf0395048cac890157cfae71302abe58b45a348019daf150 1263 
cm-super_0.3.4-1.dsc
 02813dca112af63d111315b7bf3a6229a293dc698e8d3fb72e635a95b226387f 67228652 
cm-super_0.3.4.orig.tar.gz
 16d864e08f472697097f3aac9f02f1ac0c7679ad307bc635481589bcdb476b83 11854 
cm-super_0.3.4-1.diff.gz
 87206ef40d93ed25a87c6aa87c264d9072cdf9e74aad438cddb04b1e90c02372 5833462 
cm-super-minimal_0.3.4-1_all.deb
 da8c11a302986b59f267a543c8111466ee173acb7acbf7fb6599d1e65ff28957 25633516 
cm-super_0.3.4-1_all.deb
 e722a803086efd4cb0aced49ca882c917f645f2134273549fb689df114349029 797126 
cm-super-x11_0.3.4-1_all.deb
Files: 
 e6410db9bb340a4d79e565b998e8ae1e 1263 tex optional cm-super_0.3.4-1.dsc
 74d46df013eb92c72a6b4d6a20b44e8d 67228652 tex optional 
cm-super_0.3.4.orig.tar.gz
 1456bc013808e43d90edefab65dfc0a7 11854 tex optional cm-super_0.3.4-1.diff.gz
 a61ac8a18ed835b713f7ea012fb729c9 5833462 tex optional 
cm-super-minimal_0.3.4-1_all.deb
 3a4afed0f3ec1fbea60759fcaf7dbdd7 25633516 tex optional cm-super_0.3.4-1_all.deb
 ad13f0702150066d4057dbd478e6c376 797126 tex optional 
cm-super-x11_0.3.4-1_all.deb

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

iD8DBQFIdhM/0r9KownFsJQRAn1hAJ4/Am/8S6EeVxPve3kVTy+njptBDACff0BW
CKDq+Exd6D9fBuOWGyK/ZVM=
=t1Ig
-END PGP SIGNATURE-


Accepted:
cm-super-minimal_0.3.4-1_all.deb
  to pool/main/c/cm-super/cm-super-minimal_0.3.4-1_all.deb
cm-super-x11_0.3.4-1_all.deb
  to pool/main/c/cm-super/cm-super-x11_0.3.4-1_all.deb
cm-super_0.3.4-1.diff.gz
  to pool/main/c/cm-super/cm-super_0.3.4-1.diff.gz
cm-super_0.3.4-1.dsc
  to pool/main/c/cm-super/cm-super_0.3.4-1.dsc
cm-super_0.3.4-1_all.deb
  to pool/main/c/cm-super/cm-super_0.3.4-1_all.deb
cm-super_0.3.4.orig.tar.gz
  to pool/main/c/cm-super/cm-super_0.3.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted texlive-extra 2007.dfsg.3-1 (source all)

2008-07-10 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 09 Jul 2008 16:52:10 +0200
Source: texlive-extra
Binary: texlive-bibtex-extra texlive-formats-extra texlive-generic-extra 
texlive-math-extra texlive-plain-extra texlive-latex-extra texlive-latex3 
texlive-fonts-extra texlive-games texlive-pstricks texlive-publishers 
texlive-humanities texlive-science texlive-fonts-extra-doc texlive-pstricks-doc 
texlive-publishers-doc texlive-science-doc texlive-latex-extra-doc 
texlive-humanities-doc
Architecture: source all
Version: 2007.dfsg.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian TeX Maintainers [EMAIL PROTECTED]
Changed-By: Norbert Preining [EMAIL PROTECTED]
Description: 
 texlive-bibtex-extra - TeX Live: Extra BibTeX styles
 texlive-fonts-extra - TeX Live: Extra fonts
 texlive-fonts-extra-doc - TeX Live: Documentation files for texlive-fonts-extra
 texlive-formats-extra - TeX Live: Extra formats
 texlive-games - TeX Live: Games typesetting (chess, etc)
 texlive-generic-extra - TeX Live: Miscellaneous extra generic macros
 texlive-humanities - TeX Live: LaTeX support for the humanities
 texlive-humanities-doc - TeX Live: Documentation files for texlive-humanities
 texlive-latex-extra - TeX Live: LaTeX supplementary packages
 texlive-latex-extra-doc - TeX Live: Documentation files for texlive-latex-extra
 texlive-latex3 - TeX Live: LaTeX3 packages
 texlive-math-extra - TeX Live: Advanced math typesetting
 texlive-plain-extra - TeX Live: Plain TeX supplementary packages
 texlive-pstricks - TeX Live: PSTricks packages
 texlive-pstricks-doc - TeX Live: Documentation files for texlive-pstricks
 texlive-publishers - TeX Live: Support for publishers
 texlive-publishers-doc - TeX Live: Documentation files for texlive-publishers
 texlive-science - TeX Live: Typesetting for natural and computer sciences
 texlive-science-doc - TeX Live: Documentation files for texlive-science
Closes: 473791 489689
Changes: 
 texlive-extra (2007.dfsg.3-1) unstable; urgency=medium
 .
   * Let texlive-pstricks recommend texlive-extra-utils and ps2eps since
 the included pdftricks packages needs them (Closes: #473791).
   * Add the proba package to texlive-math-extra as it has been done by
 upstream. This is a consequence of blacklisting proba.sty in
 texlive-latex-base since it didn't contain a license statement. See also
 bug #483282.
   * bump standards version to 3.8.0:
 - rename README.Debian-source to README.source an explain how to change
   something using quilt by refering to the quilt README.source
 - add homepage field to control
 - add a patch target to debian/rules
   * add dversionmangle to debian/watch file to ignore the .dfsg.NN suffix
   * add texlive-pstricks recommends texlive-extra-utils for pdfcrop
 (recommends because pdf is getting more and more over)
 (Closes Ubuntu Bug 145407) [np]
   * blacklist oesch which cannot be modified, needs new .orig.tar
 (Closes: #489689) (urgency medium for RC bug)
   * remove alternative dependency texlive-latex-extra - tetex-extra
Checksums-Sha1: 
 c9de06aa171a69549e1057aa535b75664cc42c60 1724 texlive-extra_2007.dfsg.3-1.dsc
 389ea63573b0474d796fa7805b4e7cf729775dca 215346894 
texlive-extra_2007.dfsg.3.orig.tar.gz
 735559da34ebaeba2a84201ef4741b1fd0604104 424280 
texlive-extra_2007.dfsg.3-1.diff.gz
 064ce8f2e082acc6ae817a1771a3b48f00d2d394 3922166 
texlive-bibtex-extra_2007.dfsg.3-1_all.deb
 17296051b65284f9413e26c12bc43832a5e7c8c7 2214498 
texlive-formats-extra_2007.dfsg.3-1_all.deb
 39bc4df8d6074fcf21a14c971808ac6522e7e295 1892238 
texlive-generic-extra_2007.dfsg.3-1_all.deb
 d4994f4aafc77955864491f56c1c0379fcae4c32 2581096 
texlive-math-extra_2007.dfsg.3-1_all.deb
 55577c912dc4287b71ddc9384b53474a327e6b20 1092594 
texlive-plain-extra_2007.dfsg.3-1_all.deb
 4f2a259ce9ff32dde8138181427204cda0b0cddc 3640326 
texlive-latex-extra_2007.dfsg.3-1_all.deb
 9e40876ae217a40f93b9c86fc9dd737532df5934 461368 
texlive-latex3_2007.dfsg.3-1_all.deb
 832551f6053158f7943fd9016743e51a51d329dd 40267140 
texlive-fonts-extra_2007.dfsg.3-1_all.deb
 dfe6a0ea7312c865fccac6a4fb754f4663bcc3a2 1657360 
texlive-games_2007.dfsg.3-1_all.deb
 9d61e1fd68daf54642125305a678476ef6430f5b 301340 
texlive-pstricks_2007.dfsg.3-1_all.deb
 49ed6d897f8b572109895f0e68ed82d0da1bd1d5 1763058 
texlive-publishers_2007.dfsg.3-1_all.deb
 b03ec5018d9680f9758c472a1e2efb4bc0e8c98b 281836 
texlive-humanities_2007.dfsg.3-1_all.deb
 cfaf6503a51b0a5a13bf378ef9af173db4cf13fd 333292 
texlive-science_2007.dfsg.3-1_all.deb
 78d8125ba45f639ae2fdaf527c28dba01544a2b0 17286076 
texlive-fonts-extra-doc_2007.dfsg.3-1_all.deb
 81606b6e096163d4804dbc9addb13b8bc84b1ca8 23894662 
texlive-pstricks-doc_2007.dfsg.3-1_all.deb
 4e65b2948040d2dfcacd028f1c4d8fbcddf6fd6d 12061798 
texlive-publishers-doc_2007.dfsg.3-1_all.deb
 09a485c1cd89729bf1eb0e39e4a7f3f60847dc5c 7488572 
texlive-science-doc_2007.dfsg.3-1_all.deb
 c1b82db4b8aa2ff73328cb5b41e84d286579317a 76542716 

Accepted pidgin-otr 3.2.0-2 (source hppa)

2008-07-10 Thread Thibaut VARENE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 17:34:32 +0200
Source: pidgin-otr
Binary: pidgin-otr
Architecture: source hppa
Version: 3.2.0-2
Distribution: unstable
Urgency: high
Maintainer: Thibaut VARENE [EMAIL PROTECTED]
Changed-By: Thibaut VARENE [EMAIL PROTECTED]
Description: 
 pidgin-otr - Off-the-Record Messaging plugin for pidgin
Closes: 489523
Changes: 
 pidgin-otr (3.2.0-2) unstable; urgency=high
 .
   * Make key generation use /dev/urandom (Closes: #489523)
Checksums-Sha1: 
 67ca245d596687992fc14eccf19b418c27f3d634 1123 pidgin-otr_3.2.0-2.dsc
 13afc12aec0faf40f8c288e8e4ba14d48c376683 3409 pidgin-otr_3.2.0-2.diff.gz
 2bccb8a436bfa7cae683746e0216e081a8240fb5 58096 pidgin-otr_3.2.0-2_hppa.deb
Checksums-Sha256: 
 6cf8a43d1d914b6e2f870ced8fc7e147abde2d11c840e62e90a2b8c541d49860 1123 
pidgin-otr_3.2.0-2.dsc
 e88d74cb80ac410bd7fab31955a20f6d3c9c93f742498b0d52f8ba84087e58ad 3409 
pidgin-otr_3.2.0-2.diff.gz
 9fa57f2fb9cccfa0ce843cc6e2a288ca05fe2d41947663ffd3f359c9a7154d7e 58096 
pidgin-otr_3.2.0-2_hppa.deb
Files: 
 27b439f2c6c4d9bf2e24a79c6d512ac4 1123 net optional pidgin-otr_3.2.0-2.dsc
 076268540a41a259a4a4ae482c3e4886 3409 net optional pidgin-otr_3.2.0-2.diff.gz
 89000b309e3cb9e5fa35bef38623c424 58096 net optional pidgin-otr_3.2.0-2_hppa.deb

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

iD8DBQFIdi7cHjLD2rfS8GMRArEEAKDb5IW9wfzIhFWs6s27Em6HGLzZcACePu8v
L3GlsFbXQbhQyqQxi+dH4RM=
=TyWA
-END PGP SIGNATURE-


Accepted:
pidgin-otr_3.2.0-2.diff.gz
  to pool/main/p/pidgin-otr/pidgin-otr_3.2.0-2.diff.gz
pidgin-otr_3.2.0-2.dsc
  to pool/main/p/pidgin-otr/pidgin-otr_3.2.0-2.dsc
pidgin-otr_3.2.0-2_hppa.deb
  to pool/main/p/pidgin-otr/pidgin-otr_3.2.0-2_hppa.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted nvidia-graphics-drivers-legacy-96xx 96.43.05+1-1 (source amd64)

2008-07-10 Thread Randall Donald
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 09:41:51 -0700
Source: nvidia-graphics-drivers-legacy-96xx
Binary: nvidia-glx-legacy-96xx-ia32 nvidia-glx-legacy-96xx 
nvidia-glx-legacy-96xx-dev nvidia-kernel-legacy-96xx-source
Architecture: source amd64
Version: 96.43.05+1-1
Distribution: unstable
Urgency: low
Maintainer: Debian NVIDIA Maintainers [EMAIL PROTECTED]
Changed-By: Randall Donald [EMAIL PROTECTED]
Description: 
 nvidia-glx-legacy-96xx - NVIDIA binary Xorg driver (96xx legacy version)
 nvidia-glx-legacy-96xx-dev - NVIDIA Xorg driver development files (96xx legacy 
version)
 nvidia-glx-legacy-96xx-ia32 - NVIDIA binary Xorg driver (96xx legacy version)
 nvidia-kernel-legacy-96xx-source - NVIDIA binary kernel module source (96xx 
legacy version)
Closes: 477643 483622
Changes: 
 nvidia-graphics-drivers-legacy-96xx (96.43.05+1-1) unstable; urgency=low
 .
   * bump version. Nothing to see here.
 .
 nvidia-graphics-drivers-legacy-96xx (96.43.05-2) unstable; urgency=low
 .
   * Add 2.6.25 patches. (closes: #477643, #483622)
Checksums-Sha1: 
 3e6efe1cc54d01b7b16f4abea487ce710c8f6808 1386 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.dsc
 c63bd058727de4ad4b66bc3a48470042747b7ea1 16386456 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1.orig.tar.gz
 cbe1a73ae2da3c87919eecd2c4f41984c5e34741 94491 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.diff.gz
 fd40cebe5fe1a618d0c2435e8b96469dc5da01e2 2811998 
nvidia-glx-legacy-96xx-ia32_96.43.05+1-1_amd64.deb
 0fc6cffa6ac136ab1aeca801b7a84e5fed50ba9a 4393170 
nvidia-glx-legacy-96xx_96.43.05+1-1_amd64.deb
 86ebab515a401ae226282afaef641a85ca157799 159746 
nvidia-glx-legacy-96xx-dev_96.43.05+1-1_amd64.deb
 7f87e8a576fbc2baee4aba7d6815ff5f2cb4e5da 1982156 
nvidia-kernel-legacy-96xx-source_96.43.05+1-1_amd64.deb
Checksums-Sha256: 
 f0e42f85e9f00d55b307826a29d2a9111f023be83b2c80cb323dbb3d47e46eb3 1386 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.dsc
 34d93f3c6ad7f06b905d815baad4ae18777eda59c7e097a5667060f8f9f5a51e 16386456 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1.orig.tar.gz
 0ab12fad424b7c1ec20aeabc20d35eac9849e314a39659c4cbe7ceb5f1de5507 94491 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.diff.gz
 d826814e270c9edd753fcbe22722df610553b1da1c556096a9752b5a0f58c1f6 2811998 
nvidia-glx-legacy-96xx-ia32_96.43.05+1-1_amd64.deb
 6166a84b7fe2c16f9aa0c29bc9a8b8416b272347d41e0fee881302f856d336b1 4393170 
nvidia-glx-legacy-96xx_96.43.05+1-1_amd64.deb
 0c16fb25a0ee00beb85dc17b4650a92389ede48e2f015fb80f9e9915fb989bf8 159746 
nvidia-glx-legacy-96xx-dev_96.43.05+1-1_amd64.deb
 6562958a7a2ac004359d7e1176d3977184715a6a45ddc7b5cb3b379a4720fe6f 1982156 
nvidia-kernel-legacy-96xx-source_96.43.05+1-1_amd64.deb
Files: 
 f02b1f758c79add208e22156151c8c98 1386 non-free/x11 optional 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.dsc
 e45bd661aa47c83b91e234f4f6988cc6 16386456 non-free/x11 optional 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1.orig.tar.gz
 798a932d0416e1448586dedd8cc1f522 94491 non-free/x11 optional 
nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.diff.gz
 de568bb47d591ea8d0eea026ec04de2a 2811998 non-free/x11 optional 
nvidia-glx-legacy-96xx-ia32_96.43.05+1-1_amd64.deb
 ca9fb70bf0ce7ee62216a14afd5b32cb 4393170 non-free/x11 optional 
nvidia-glx-legacy-96xx_96.43.05+1-1_amd64.deb
 b4b1d5a35a8920e998b5dc53e409d86d 159746 non-free/x11 optional 
nvidia-glx-legacy-96xx-dev_96.43.05+1-1_amd64.deb
 f1e18c923f2bb48f00986a3513e36c02 1982156 non-free/x11 optional 
nvidia-kernel-legacy-96xx-source_96.43.05+1-1_amd64.deb

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

iD8DBQFIdj5YU+6HYGwn3qsRAhbXAJ4+GdFiPWWxn9Qx5m4PGpqEf9MsSQCgqExE
ZY60gmYs2998ivBeoM2p/TE=
=lg+E
-END PGP SIGNATURE-


Accepted:
nvidia-glx-legacy-96xx-dev_96.43.05+1-1_amd64.deb
  to 
pool/non-free/n/nvidia-graphics-drivers-legacy-96xx/nvidia-glx-legacy-96xx-dev_96.43.05+1-1_amd64.deb
nvidia-glx-legacy-96xx-ia32_96.43.05+1-1_amd64.deb
  to 
pool/non-free/n/nvidia-graphics-drivers-legacy-96xx/nvidia-glx-legacy-96xx-ia32_96.43.05+1-1_amd64.deb
nvidia-glx-legacy-96xx_96.43.05+1-1_amd64.deb
  to 
pool/non-free/n/nvidia-graphics-drivers-legacy-96xx/nvidia-glx-legacy-96xx_96.43.05+1-1_amd64.deb
nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.diff.gz
  to 
pool/non-free/n/nvidia-graphics-drivers-legacy-96xx/nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.diff.gz
nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.dsc
  to 
pool/non-free/n/nvidia-graphics-drivers-legacy-96xx/nvidia-graphics-drivers-legacy-96xx_96.43.05+1-1.dsc
nvidia-graphics-drivers-legacy-96xx_96.43.05+1.orig.tar.gz
  to 
pool/non-free/n/nvidia-graphics-drivers-legacy-96xx/nvidia-graphics-drivers-legacy-96xx_96.43.05+1.orig.tar.gz
nvidia-kernel-legacy-96xx-source_96.43.05+1-1_amd64.deb
  to 
pool/non-free/n/nvidia-graphics-drivers-legacy-96xx/nvidia-kernel-legacy-96xx-source_96.43.05+1-1_amd64.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. 

Accepted hedgewars 0.9.5-1 (source all i386)

2008-07-10 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 21:18:26 +0400
Source: hedgewars
Binary: hedgewars hedgewars-data
Architecture: source all i386
Version: 0.9.5-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov [EMAIL PROTECTED]
Changed-By: Dmitry E. Oboukhov [EMAIL PROTECTED]
Description: 
 hedgewars  - Worms style game
 hedgewars-data - Data files for hedgewars
Changes: 
 hedgewars (0.9.5-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 5dcdb1db7a5177ced4088274c89922d8acbf1f77 1168 hedgewars_0.9.5-1.dsc
 a3170b7549f679e2831764a9eae1c0499bcc4a4a 7174854 hedgewars_0.9.5.orig.tar.gz
 b91a7c7e32f97606d690f000a63ae754c8455b1d 4587 hedgewars_0.9.5-1.diff.gz
 a9427efbb77e0835ac4575547c529e40c2bbdccd 6134452 hedgewars-data_0.9.5-1_all.deb
 7318c9951f2e56105d58e897801b6cf6444d735b 490306 hedgewars_0.9.5-1_i386.deb
Checksums-Sha256: 
 6500693c896459f594c54bd4bf52c1ae6ea6c720aac34e12b6738605d6623801 1168 
hedgewars_0.9.5-1.dsc
 d5119fde92a5ad4fa03ea0a98ca49b2486e1a49d9b8c0e47e1015337b18bf7c1 7174854 
hedgewars_0.9.5.orig.tar.gz
 6102eea5fe166b840e0a8ed6f32bfc826b0dc687aa19cc4ac6151089f25f0976 4587 
hedgewars_0.9.5-1.diff.gz
 6fef21069d545d0ea192ddd301ff70ec630b53e053c317c21e5f782a27b2f30c 6134452 
hedgewars-data_0.9.5-1_all.deb
 83445d8c447e696f754aff860e77e48e419a1d8c9db83902926ed6013c92111c 490306 
hedgewars_0.9.5-1_i386.deb
Files: 
 317da42dfe6a4b9da6fdccd245fc0e4d 1168 games extra hedgewars_0.9.5-1.dsc
 92d1f109c3359fd41c20218106842051 7174854 games extra 
hedgewars_0.9.5.orig.tar.gz
 0fa31b01883e296ea5aaf33c50080061 4587 games extra hedgewars_0.9.5-1.diff.gz
 0ac5564ba9f84fd9243bb2d898e29e2c 6134452 games extra 
hedgewars-data_0.9.5-1_all.deb
 44418913b75b821837d889e91fe06cd1 490306 games extra hedgewars_0.9.5-1_i386.deb

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

iEYEARECAAYFAkh2S3YACgkQq4wAz/jiZTdzLQCff1BFxhW8gT5g8f1q8toPVOcC
0VAAoLSqhU//zL7Llc4q69ixFg/P0nPO
=kKsl
-END PGP SIGNATURE-


Accepted:
hedgewars-data_0.9.5-1_all.deb
  to pool/main/h/hedgewars/hedgewars-data_0.9.5-1_all.deb
hedgewars_0.9.5-1.diff.gz
  to pool/main/h/hedgewars/hedgewars_0.9.5-1.diff.gz
hedgewars_0.9.5-1.dsc
  to pool/main/h/hedgewars/hedgewars_0.9.5-1.dsc
hedgewars_0.9.5-1_i386.deb
  to pool/main/h/hedgewars/hedgewars_0.9.5-1_i386.deb
hedgewars_0.9.5.orig.tar.gz
  to pool/main/h/hedgewars/hedgewars_0.9.5.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted libdbix-searchbuilder-perl 1.54-1 (source all)

2008-07-10 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 20:14:18 +0200
Source: libdbix-searchbuilder-perl
Binary: libdbix-searchbuilder-perl
Architecture: source all
Version: 1.54-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libdbix-searchbuilder-perl - Encapsulate SQL queries and rows in simple perl 
objects
Changes: 
 libdbix-searchbuilder-perl (1.54-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/copyright: add stanza for files under inc/.
   * debian/control: change my email address.
   * Set Standards-Version to 3.8.0 (no changes).
Checksums-Sha1: 
 ac6272186c66a2e4511a09b4ea553634d400e75b 1689 
libdbix-searchbuilder-perl_1.54-1.dsc
 a7e5a2572145b5762dbe79fde0bc1b7837b4d002 83859 
libdbix-searchbuilder-perl_1.54.orig.tar.gz
 566f5c400df805853e4c7006ddcdb7afc562c3c5 4746 
libdbix-searchbuilder-perl_1.54-1.diff.gz
 25373d7f00194d9e83892df8bd309a18bb8c216d 110338 
libdbix-searchbuilder-perl_1.54-1_all.deb
Checksums-Sha256: 
 306e72e1e003ff83d01ca9f0b9965cc0fc6617b36ec53618d0a5c6c6f6da8b24 1689 
libdbix-searchbuilder-perl_1.54-1.dsc
 5a4aa15fac37305259836c1699c622e46a752f58a3259899dca1e6eb04f923e8 83859 
libdbix-searchbuilder-perl_1.54.orig.tar.gz
 5a657d46e24ee49de390a4d4fd79a001a6e352e6246ee253477c623e299da10b 4746 
libdbix-searchbuilder-perl_1.54-1.diff.gz
 cdad94ee11011657a39262484743acdbbc1efd0db5e721edd4d4225277cc5628 110338 
libdbix-searchbuilder-perl_1.54-1_all.deb
Files: 
 8551f344fe4b09e5bdab7763e75ba704 1689 perl optional 
libdbix-searchbuilder-perl_1.54-1.dsc
 24ece8f03289c716c2af240cac6f08fd 83859 perl optional 
libdbix-searchbuilder-perl_1.54.orig.tar.gz
 d6126a6d67ef20aba348558e7108c217 4746 perl optional 
libdbix-searchbuilder-perl_1.54-1.diff.gz
 f3fe5a63b9462dc555d67b7a58b8de74 110338 perl optional 
libdbix-searchbuilder-perl_1.54-1_all.deb

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

iEYEARECAAYFAkh2UawACgkQOzKYnQDzz+QJ0wCgwM6SrT2NcUCJmXTO0OWXzxDq
UNUAoOXGnk3a8lOQGUnP2tOxv34tyXrC
=P9+H
-END PGP SIGNATURE-


Accepted:
libdbix-searchbuilder-perl_1.54-1.diff.gz
  to 
pool/main/libd/libdbix-searchbuilder-perl/libdbix-searchbuilder-perl_1.54-1.diff.gz
libdbix-searchbuilder-perl_1.54-1.dsc
  to 
pool/main/libd/libdbix-searchbuilder-perl/libdbix-searchbuilder-perl_1.54-1.dsc
libdbix-searchbuilder-perl_1.54-1_all.deb
  to 
pool/main/libd/libdbix-searchbuilder-perl/libdbix-searchbuilder-perl_1.54-1_all.deb
libdbix-searchbuilder-perl_1.54.orig.tar.gz
  to 
pool/main/libd/libdbix-searchbuilder-perl/libdbix-searchbuilder-perl_1.54.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted python-couchdb 0.4-1 (source all)

2008-07-10 Thread Noah Slater
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 15:47:33 +0100
Source: python-couchdb
Binary: python-couchdb
Architecture: source all
Version: 0.4-1
Distribution: unstable
Urgency: low
Maintainer: Noah Slater [EMAIL PROTECTED]
Changed-By: Noah Slater [EMAIL PROTECTED]
Description: 
 python-couchdb - Python library and tools for working with Apache CouchDB
Changes: 
 python-couchdb (0.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Added python-docutils, python-epydoc and python-pygments to build depends.
   * Added API documentation generation to debian/rules.
   * Added debian/README.source for upstream source information.
   * Updated debian/copyright per latest proposed format.
   * Updated Standards-Version to 3.8.0.
Checksums-Sha1: 
 bc4887e90318f7817a28b56e83b11d379959ae85 1487 python-couchdb_0.4-1.dsc
 726956d47187b79096cb216921dc44202342c889 19945 python-couchdb_0.4.orig.tar.gz
 5dda248c60d42f3f3e2ff3dd90ff8c85cb3c2c8c 2773 python-couchdb_0.4-1.diff.gz
 298cec5009852fd1997c552304d5bb6d5e679121 58564 python-couchdb_0.4-1_all.deb
Checksums-Sha256: 
 82dbe5507a946de50a8e70e20b348cc17cfa6bccdacd8677cf8fe0d4e3c90582 1487 
python-couchdb_0.4-1.dsc
 b67006253a5f7ea307d07b4644fb30719acc49d964221c52c52cec9ef0c856ee 19945 
python-couchdb_0.4.orig.tar.gz
 ad0c0cc9d3079c5b9af240f6b53b1b46543b183996069169d6475a6d58558477 2773 
python-couchdb_0.4-1.diff.gz
 1dc67e7c8d9a5945d7c5262969ecbd6fea9ae7e3f516f4ef9d25c1ef31e83ff1 58564 
python-couchdb_0.4-1_all.deb
Files: 
 2c896a80562d9dd79f1c44f170417037 1487 python optional python-couchdb_0.4-1.dsc
 f24f282a59c32494132c43b46f3e6838 19945 python optional 
python-couchdb_0.4.orig.tar.gz
 3a8337643ca82ff2c0e921e1c4f998d3 2773 python optional 
python-couchdb_0.4-1.diff.gz
 3c529f385219e2132689eea7e253b577 58564 python optional 
python-couchdb_0.4-1_all.deb

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

iEYEARECAAYFAkh2T/AACgkQB01zfu119ZlOCACgiSMesSkVPJ1aCTIzqArFjo8q
O2kAn0+T6NhU/h14OAGJxv0s0Sle3otk
=hmVI
-END PGP SIGNATURE-


Accepted:
python-couchdb_0.4-1.diff.gz
  to pool/main/p/python-couchdb/python-couchdb_0.4-1.diff.gz
python-couchdb_0.4-1.dsc
  to pool/main/p/python-couchdb/python-couchdb_0.4-1.dsc
python-couchdb_0.4-1_all.deb
  to pool/main/p/python-couchdb/python-couchdb_0.4-1_all.deb
python-couchdb_0.4.orig.tar.gz
  to pool/main/p/python-couchdb/python-couchdb_0.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted ganeti-instance-debootstrap 0.5-1 (source all)

2008-07-10 Thread Iustin Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 07 Jul 2008 17:34:09 +0200
Source: ganeti-instance-debootstrap
Binary: ganeti-instance-debootstrap
Architecture: source all
Version: 0.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ganeti Team [EMAIL PROTECTED]
Changed-By: Iustin Pop [EMAIL PROTECTED]
Description: 
 ganeti-instance-debootstrap - debootstrap-based instance OS definition for 
ganeti
Closes: 466583
Changes: 
 ganeti-instance-debootstrap (0.5-1) unstable; urgency=low
 .
   * Initial release. (Closes: #466583)
Checksums-Sha1: 
 f59c213f850e111ba7a057f3cb075ebc447eda35 1421 
ganeti-instance-debootstrap_0.5-1.dsc
 ccb4c72fc3d472fed2877e781a12bd34eefa9a33 58608 
ganeti-instance-debootstrap_0.5.orig.tar.gz
 b0fedf4ce9a4afdf4d4c8b503c95f4d7d2d18945 1827 
ganeti-instance-debootstrap_0.5-1.diff.gz
 5bd8e9e4c66e6eb525d689eedd570c830873c0e3 8958 
ganeti-instance-debootstrap_0.5-1_all.deb
Checksums-Sha256: 
 c368344020f5b80201a703f62dc9b24f4634cd64b735a120a166e533887785b7 1421 
ganeti-instance-debootstrap_0.5-1.dsc
 7bb415715d28db8032badbfbc531ce8fa78b755c4bbd6e899a9ec728f15a28ed 58608 
ganeti-instance-debootstrap_0.5.orig.tar.gz
 5a8aa06c1980f3c26f484861340116127b7a66c500ca5b4925fae546dfe5b5d9 1827 
ganeti-instance-debootstrap_0.5-1.diff.gz
 a5e29d93b155cf2148f27d87348177cbcb35777c4f36a6740650f968ecadba3f 8958 
ganeti-instance-debootstrap_0.5-1_all.deb
Files: 
 2e472538a0b47b6a9c2c7f01a885a935 1421 admin extra 
ganeti-instance-debootstrap_0.5-1.dsc
 f9b89c61840ecbf43668f2aa04831d64 58608 admin extra 
ganeti-instance-debootstrap_0.5.orig.tar.gz
 f8cdfc3a4b2e376b79ca4986a2040b80 1827 admin extra 
ganeti-instance-debootstrap_0.5-1.diff.gz
 a215702eea52a923dd33358b24d59d74 8958 admin extra 
ganeti-instance-debootstrap_0.5-1_all.deb

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

iD8DBQFIdM7uhImxTYgHUpsRAjRQAJ47XcvXKRJVdbVkZkUyA74MNvaA/wCfbUys
ULcDVPnkcRjdh/YvHSFu+qM=
=VKcA
-END PGP SIGNATURE-


Accepted:
ganeti-instance-debootstrap_0.5-1.diff.gz
  to 
pool/main/g/ganeti-instance-debootstrap/ganeti-instance-debootstrap_0.5-1.diff.gz
ganeti-instance-debootstrap_0.5-1.dsc
  to 
pool/main/g/ganeti-instance-debootstrap/ganeti-instance-debootstrap_0.5-1.dsc
ganeti-instance-debootstrap_0.5-1_all.deb
  to 
pool/main/g/ganeti-instance-debootstrap/ganeti-instance-debootstrap_0.5-1_all.deb
ganeti-instance-debootstrap_0.5.orig.tar.gz
  to 
pool/main/g/ganeti-instance-debootstrap/ganeti-instance-debootstrap_0.5.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted libtest-warn-perl 0.11-1 (source all)

2008-07-10 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 20:40:17 +0200
Source: libtest-warn-perl
Binary: libtest-warn-perl
Architecture: source all
Version: 0.11-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libtest-warn-perl - Test for warning-based code in perl
Changes: 
 libtest-warn-perl (0.11-1) unstable; urgency=low
 .
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
 field (source stanza); Homepage field (source stanza).
   * Set Maintainer to Debian Perl Group.
   * Use dist-based URL in debian/watch.
   * Refresh debian/rules, no functional changes.
   * Split out changes against upstream code into a patch; add quilt framework.
 .
   * New upstream release.
   * Refresh language.patch.
   * debian/copyright: copy copyright/license information verbatim from
 upstream source, update pointer to common licenses on Debian systems.
   * Set debhelper compatibility level to 5.
   * Set Standards-Version to 3.8.0; add debian/REAMDE.source to document quilt
 usage.
   * debian/control:
 - wrap long line in debian/control
 - make (build) dependency on libsub-uplevel-perl versioned
 - split build dependencies between Build-Depends and Build-Depends-Indep
 - add /me to Uploaders
Checksums-Sha1: 
 48f9d58c8da3b874532f047d56f0861276684d2d 1502 libtest-warn-perl_0.11-1.dsc
 3cad88de96528d9c0154fbd3a23540d115f383d6 9661 
libtest-warn-perl_0.11.orig.tar.gz
 b3b6b050ae746b6d5bea2a13720280ffbc11db30 6133 libtest-warn-perl_0.11-1.diff.gz
 5eec6bcc7acba3315e7450b87aa1fecc56cac596 14176 libtest-warn-perl_0.11-1_all.deb
Checksums-Sha256: 
 1e8c762c2f87601c8aa09b30c14fd10430bc46c407fd689d67113ef61cbac422 1502 
libtest-warn-perl_0.11-1.dsc
 d1afcee7021a9d39d823dac1431420581604f8a1f99752767955cbfdd7082ff9 9661 
libtest-warn-perl_0.11.orig.tar.gz
 42f3a0b2ff822b3b0c9e0ac7cb0fe8be53f2239ba5ecaa13ede69474067e796a 6133 
libtest-warn-perl_0.11-1.diff.gz
 addd32eb9a977e8185aee2b5f2ae09a998c8caacd8e244a229c20472aa7d59a7 14176 
libtest-warn-perl_0.11-1_all.deb
Files: 
 8a6115a3be5adedb133bba81386d1ce6 1502 perl optional 
libtest-warn-perl_0.11-1.dsc
 1000ef6d94b54ca9eb75fb994a7e8bec 9661 perl optional 
libtest-warn-perl_0.11.orig.tar.gz
 1950b831eb98ed952f2bbd71065fac9c 6133 perl optional 
libtest-warn-perl_0.11-1.diff.gz
 68a5e68a11f91c98452f2f7ed217103c 14176 perl optional 
libtest-warn-perl_0.11-1_all.deb

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

iEYEARECAAYFAkh2V/EACgkQOzKYnQDzz+SlZACg1WPFCLsCDJCt8UA+5BKTVMs5
8lgAn37TatyvKn8+kh1bOyTv1LjJQyKm
=dXP0
-END PGP SIGNATURE-


Accepted:
libtest-warn-perl_0.11-1.diff.gz
  to pool/main/libt/libtest-warn-perl/libtest-warn-perl_0.11-1.diff.gz
libtest-warn-perl_0.11-1.dsc
  to pool/main/libt/libtest-warn-perl/libtest-warn-perl_0.11-1.dsc
libtest-warn-perl_0.11-1_all.deb
  to pool/main/libt/libtest-warn-perl/libtest-warn-perl_0.11-1_all.deb
libtest-warn-perl_0.11.orig.tar.gz
  to pool/main/libt/libtest-warn-perl/libtest-warn-perl_0.11.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted linux-kernel-di-s390-2.6 0.24 (source s390)

2008-07-10 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 18:51:50 +0200
Source: linux-kernel-di-s390-2.6
Binary: kernel-image-2.6.25-2-s390-di nic-modules-2.6.25-2-s390-di 
scsi-core-modules-2.6.25-2-s390-di scsi-modules-2.6.25-2-s390-di 
ext2-modules-2.6.25-2-s390-di ext3-modules-2.6.25-2-s390-di 
xfs-modules-2.6.25-2-s390-di fat-modules-2.6.25-2-s390-di 
md-modules-2.6.25-2-s390-di multipath-modules-2.6.25-2-s390-di 
core-modules-2.6.25-2-s390-di crypto-core-modules-2.6.25-2-s390-di 
crypto-modules-2.6.25-2-s390-di crypto-dm-modules-2.6.25-2-s390-di 
dasd-modules-2.6.25-2-s390-di kernel-image-2.6.25-2-s390-tape-di
Architecture: source s390
Version: 0.24
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Bastian Blank [EMAIL PROTECTED]
Description: 
 core-modules-2.6.25-2-s390-di - Core modules (udeb)
 crypto-core-modules-2.6.25-2-s390-di - Core crypto modules (udeb)
 crypto-dm-modules-2.6.25-2-s390-di - devicemapper crypto module (udeb)
 crypto-modules-2.6.25-2-s390-di - crypto modules (udeb)
 dasd-modules-2.6.25-2-s390-di - dasd modules (udeb)
 ext2-modules-2.6.25-2-s390-di - EXT2 filesystem support (udeb)
 ext3-modules-2.6.25-2-s390-di - EXT3 filesystem support (udeb)
 fat-modules-2.6.25-2-s390-di - FAT filesystem support (udeb)
 kernel-image-2.6.25-2-s390-di - Linux kernel binary image for the Debian 
installer (udeb)
 kernel-image-2.6.25-2-s390-tape-di - Linux kernel binary image for the Debian 
installer (udeb)
 md-modules-2.6.25-2-s390-di - RAID and LVM support (udeb)
 multipath-modules-2.6.25-2-s390-di - Multipath support (udeb)
 nic-modules-2.6.25-2-s390-di - Common NIC drivers (udeb)
 scsi-core-modules-2.6.25-2-s390-di - Core SCSI subsystem (udeb)
 scsi-modules-2.6.25-2-s390-di - SCSI drivers (udeb)
 xfs-modules-2.6.25-2-s390-di - XFS filesystem support (udeb)
Changes: 
 linux-kernel-di-s390-2.6 (0.24) unstable; urgency=low
 .
   [ Frans Pop ]
   * Update to 2.6.25-2.
   * Add crypto-dm-modules and crypto-core-modules.
 .
   [ Bastian Blank ]
   * Add ctcm, qeth_l2 and qeth_l3 modules to nic-modules.
Checksums-Sha1: 
 7394168bd315df4d4e5fb24342e153f2e1dd357e 1526 linux-kernel-di-s390-2.6_0.24.dsc
 c11b6ec5a23bc0f3b91711430a8b5e6b8286f19e 3089 
linux-kernel-di-s390-2.6_0.24.tar.gz
 f056afd2388a1a348fb57524f5af6a9ccffcfe8c 1637342 
kernel-image-2.6.25-2-s390-di_0.24_s390.udeb
 7dac5ecd5eb13321495f72a782e8644c27bba5f5 157530 
nic-modules-2.6.25-2-s390-di_0.24_s390.udeb
 5dca6e7c801c0e35c11fa84d51f1df706d13c964 102532 
scsi-core-modules-2.6.25-2-s390-di_0.24_s390.udeb
 8a8e39e67f8e079ad774a6ed39c1836922f8b8b4 106204 
scsi-modules-2.6.25-2-s390-di_0.24_s390.udeb
 a2306b51ed6ed96cfba258b1804cba94d8f1f0bd 44548 
ext2-modules-2.6.25-2-s390-di_0.24_s390.udeb
 874f564803462f4b421efcc50504cfe1dce09b16 107710 
ext3-modules-2.6.25-2-s390-di_0.24_s390.udeb
 ab5665ab856dfeaedee3b4dfc1773c0a5bc19e58 304378 
xfs-modules-2.6.25-2-s390-di_0.24_s390.udeb
 fd1462c489dd20702e1303005bf541f8246b858d 44680 
fat-modules-2.6.25-2-s390-di_0.24_s390.udeb
 402fe9e3880bbdaf314f72488455c1774f346143 243194 
md-modules-2.6.25-2-s390-di_0.24_s390.udeb
 28e622c7665d76cfab62a0663f1e64de203f06f5 15926 
multipath-modules-2.6.25-2-s390-di_0.24_s390.udeb
 4b096a87d2696bd51dd05e3d58e6177be8db858b 5650 
core-modules-2.6.25-2-s390-di_0.24_s390.udeb
 2a4108399668120dbe5a267e184614143d4a3cb4 10832 
crypto-core-modules-2.6.25-2-s390-di_0.24_s390.udeb
 7bef7afb63cd87dcd3a3118ed745f808237b28e7 60534 
crypto-modules-2.6.25-2-s390-di_0.24_s390.udeb
 5a6bb985eee20326658f9df9cef7668881208333 10274 
crypto-dm-modules-2.6.25-2-s390-di_0.24_s390.udeb
 c553ddeea83e241c9d1c96eac1e31c1d9d199206 66650 
dasd-modules-2.6.25-2-s390-di_0.24_s390.udeb
 5d77af2f1ded0eae817d228ddbeccfbfacbaeef5 1455722 
kernel-image-2.6.25-2-s390-tape-di_0.24_s390.udeb
Checksums-Sha256: 
 e75998f868ecface795b62469ffec448eb5c71a68efa0e58c75aaef6905e2213 1526 
linux-kernel-di-s390-2.6_0.24.dsc
 51cdcba040793481242777cc962b9e837ecdf455c8234a651654bd1832a1c462 3089 
linux-kernel-di-s390-2.6_0.24.tar.gz
 4b01799e7ed9f501a06e7090f903e071b126bca016885380246f795ef8403175 1637342 
kernel-image-2.6.25-2-s390-di_0.24_s390.udeb
 737b42074fa58c14bc344927f56d232f5234bba325a4bb5571927ed3d3a0b248 157530 
nic-modules-2.6.25-2-s390-di_0.24_s390.udeb
 a512f9f486dc094802c5a03ff3c4df3eea42cf62efd7dd965fface12c46ea970 102532 
scsi-core-modules-2.6.25-2-s390-di_0.24_s390.udeb
 98e3f0ab682231e136671d3cc7df8ad9a820df3ab33d4a31f210baca0afa0a5d 106204 
scsi-modules-2.6.25-2-s390-di_0.24_s390.udeb
 247580b9d9d9570f21a2bc340656bc08941c724f3f2ee1da9973077fb245f8d1 44548 
ext2-modules-2.6.25-2-s390-di_0.24_s390.udeb
 6e8dc6871fdaccc88fcf9e2b5c54ffbbedfc5e05ec3ae64b12364d341a8d147e 107710 
ext3-modules-2.6.25-2-s390-di_0.24_s390.udeb
 8015dc798801bf03869415ea2ee1a74fb50dd8aa6b762030f0f9750cce44c2dd 304378 
xfs-modules-2.6.25-2-s390-di_0.24_s390.udeb
 83d89a1ddcfe2e8b82757e48ce4084ae31aebff68074b5e6a3c2b76c49758a3f 44680 

Accepted icu 3.8.1-3 (source all i386)

2008-07-10 Thread Jay Berkenbilt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 14:25:30 -0400
Source: icu
Binary: libicu38 libicu38-dbg libicu-dev lib32icu38 lib32icu-dev icu-doc
Architecture: source all i386
Version: 3.8.1-3
Distribution: unstable
Urgency: medium
Maintainer: Jay Berkenbilt [EMAIL PROTECTED]
Changed-By: Jay Berkenbilt [EMAIL PROTECTED]
Description: 
 icu-doc- API documentation for ICU classes and functions
 lib32icu-dev - Development files for International Components for Unicode 
(32-bi
 lib32icu38 - International Components for Unicode (32-bit)
 libicu-dev - Development files for International Components for Unicode
 libicu38   - International Components for Unicode
 libicu38-dbg - International Components for Unicode
Changes: 
 icu (3.8.1-3) unstable; urgency=medium
 .
   * Work around gcc internal error on armel.  Temporary until bug 484053
 is resolved.
Checksums-Sha1: 
 d1756e9a2d5c7eb5c3f5ae7f67212b464fec3f6b 1261 icu_3.8.1-3.dsc
 d5fde36b410f873fa5befad25317a57a5d817551 15376 icu_3.8.1-3.diff.gz
 e148c27fc829d548a569f51a7faedd368b6471ea 3655744 icu-doc_3.8.1-3_all.deb
 d0e3344b71618fa461441643feb34c309af1292e 5918208 libicu38_3.8.1-3_i386.deb
 ce901b96e21c356d6876f70d6301cce67403a972 2275676 libicu38-dbg_3.8.1-3_i386.deb
 1b4f8b08ee11b176ab120c751d54e55d02a8dd5d 6975114 libicu-dev_3.8.1-3_i386.deb
Checksums-Sha256: 
 4788b1deef33d1601d516ea784075680bb6de032d8eabd321bf9b0af5e58e886 1261 
icu_3.8.1-3.dsc
 b9a319217bd07a04aca4dfecb5d810567e5163261fc7163882ec0eb0f07a44d2 15376 
icu_3.8.1-3.diff.gz
 5a52cd5949ddccbe5c2dae6b925f3009576b12b7e0a13fda5c66a9896d385013 3655744 
icu-doc_3.8.1-3_all.deb
 4423a80aa99c79a0622debf20d3ca1f8a79ea2038631fbe1a7d14139c62d7227 5918208 
libicu38_3.8.1-3_i386.deb
 d29e4ba35df316ac4c6d4dd726974f69ec8f880766c2018ffe132297ccda24d6 2275676 
libicu38-dbg_3.8.1-3_i386.deb
 63243b548feb98cb54f838f88deba5f82f916347626c4af879448861eaad 6975114 
libicu-dev_3.8.1-3_i386.deb
Files: 
 9a1be3a6af18b23f1928b1a7b10810e5 1261 libs optional icu_3.8.1-3.dsc
 18a8a72efc368a1c9d460ddeca6c6495 15376 libs optional icu_3.8.1-3.diff.gz
 d09e3cf3dc9b5b6efcec44f04ad22e53 3655744 doc optional icu-doc_3.8.1-3_all.deb
 9a2b2d893544ce4fe8575083b97fbd4a 5918208 libs optional 
libicu38_3.8.1-3_i386.deb
 950c886cf9b5c09dd51648a69e59cb53 2275676 libs extra 
libicu38-dbg_3.8.1-3_i386.deb
 977828f4cbae28c9b84b3a8c5eda5763 6975114 libdevel optional 
libicu-dev_3.8.1-3_i386.deb

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

iD8DBQFIdlY/EBVk6taI4KcRAgnBAJ4lrM5y+Aql7UGNp0cbJKwwKZo7PgCgo2Fj
FqRxUHBE6KfbUSJVLH7mZLg=
=d0Kg
-END PGP SIGNATURE-


Accepted:
icu-doc_3.8.1-3_all.deb
  to pool/main/i/icu/icu-doc_3.8.1-3_all.deb
icu_3.8.1-3.diff.gz
  to pool/main/i/icu/icu_3.8.1-3.diff.gz
icu_3.8.1-3.dsc
  to pool/main/i/icu/icu_3.8.1-3.dsc
libicu-dev_3.8.1-3_i386.deb
  to pool/main/i/icu/libicu-dev_3.8.1-3_i386.deb
libicu38-dbg_3.8.1-3_i386.deb
  to pool/main/i/icu/libicu38-dbg_3.8.1-3_i386.deb
libicu38_3.8.1-3_i386.deb
  to pool/main/i/icu/libicu38_3.8.1-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted lastfm 1:1.5.1.31879.dfsg-1 (source i386)

2008-07-10 Thread John Stamp
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 11:16:32 -0700
Source: lastfm
Binary: lastfm
Architecture: source i386
Version: 1:1.5.1.31879.dfsg-1
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: John Stamp [EMAIL PROTECTED]
Description: 
 lastfm - a music player for Last.fm personalized radio
Closes: 455073
Changes: 
 lastfm (1:1.5.1.31879.dfsg-1) unstable; urgency=low
 .
   * New upstream.
   * Install all binaries into /usr/lib/lastfm and remove the lintian override.
 /usr/bin/lastfm is now a script. (Closes: #455073)
   * Bump standards to 3.8.0
 - Move README.Debian-source to README.source and update it.
   * Added patches:
 - hide-crashreport-option: release builds don't do crash reports.
 - set-firstrun-status: don't re-run the setup wizard on every startup.
   * Changed patches:
 - build-fixes: split into build-fixes and reduce-linkage.
 - save-window-states: reduce its scope and rename to cheaper-save-geometry
 - dirpaths: don't change where to look for plugins.
 - alsa-qdebug = alsa-uses-qdebug
 - no-fingerprint = no-fingerprint-lib
 - no-scrobble-directories = hide-scrobbledir-option
   * Removed patches:
 - translations
   * Sync remaining patches.
Checksums-Sha1: 
 8c42d84275f4dbeac3d989b1b3f3cc68424c1dde 1240 lastfm_1.5.1.31879.dfsg-1.dsc
 7ca3dd4cefec3746b1e189e88c2797213996e95a 1473266 
lastfm_1.5.1.31879.dfsg.orig.tar.gz
 447eed64da4fc28c07450cba31d27aaa8e421c0a 68688 
lastfm_1.5.1.31879.dfsg-1.diff.gz
 68f878351274f7af46da1c4009f5a1e4f061c52c 1711710 
lastfm_1.5.1.31879.dfsg-1_i386.deb
Checksums-Sha256: 
 48882082657e5d6d49c93114c60dd23b6dbb9f72cff1fc06baf8a56311d94bd4 1240 
lastfm_1.5.1.31879.dfsg-1.dsc
 212ba742dfc17cc6541e6361e549edd1217512105ea4d7fe3c08a90f189d78fc 1473266 
lastfm_1.5.1.31879.dfsg.orig.tar.gz
 853d4f6654ee26b5c5e4a20ace9086bad021c99871958f758f3e27692f4cab49 68688 
lastfm_1.5.1.31879.dfsg-1.diff.gz
 a6a07acb48faf0b57d28670707c7781e329195e1886e9f4fecfb961774e25df9 1711710 
lastfm_1.5.1.31879.dfsg-1_i386.deb
Files: 
 37ad200fbaded7a9285a84fb6f74586d 1240 sound optional 
lastfm_1.5.1.31879.dfsg-1.dsc
 909dc8a7d98af87da578e746546fb64a 1473266 sound optional 
lastfm_1.5.1.31879.dfsg.orig.tar.gz
 0087d36d5d8b5de58050b7a00d6a627a 68688 sound optional 
lastfm_1.5.1.31879.dfsg-1.diff.gz
 51ac67f163426d8811981d7461ce85c3 1711710 sound optional 
lastfm_1.5.1.31879.dfsg-1_i386.deb

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

iEYEARECAAYFAkh2VXUACgkQbU7/TZgP4UQ/+wCfV64spMW9P27r5vbrPaemqzI1
3dQAn1h1ziHSlokooFinvw8bWdo0tjAA
=mBEe
-END PGP SIGNATURE-


Accepted:
lastfm_1.5.1.31879.dfsg-1.diff.gz
  to pool/main/l/lastfm/lastfm_1.5.1.31879.dfsg-1.diff.gz
lastfm_1.5.1.31879.dfsg-1.dsc
  to pool/main/l/lastfm/lastfm_1.5.1.31879.dfsg-1.dsc
lastfm_1.5.1.31879.dfsg-1_i386.deb
  to pool/main/l/lastfm/lastfm_1.5.1.31879.dfsg-1_i386.deb
lastfm_1.5.1.31879.dfsg.orig.tar.gz
  to pool/main/l/lastfm/lastfm_1.5.1.31879.dfsg.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted linux-kernel-di-i386-2.6 1.63 (source i386)

2008-07-10 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 09:28:13 +0200
Source: linux-kernel-di-i386-2.6
Binary: kernel-image-2.6.25-2-486-di nic-modules-2.6.25-2-486-di 
nic-extra-modules-2.6.25-2-486-di nic-wireless-modules-2.6.25-2-486-di 
nic-shared-modules-2.6.25-2-486-di serial-modules-2.6.25-2-486-di 
usb-serial-modules-2.6.25-2-486-di ppp-modules-2.6.25-2-486-di 
ide-modules-2.6.25-2-486-di pata-modules-2.6.25-2-486-di 
ide-core-modules-2.6.25-2-486-di cdrom-core-modules-2.6.25-2-486-di 
firewire-core-modules-2.6.25-2-486-di scsi-core-modules-2.6.25-2-486-di 
scsi-modules-2.6.25-2-486-di scsi-common-modules-2.6.25-2-486-di 
scsi-extra-modules-2.6.25-2-486-di plip-modules-2.6.25-2-486-di 
floppy-modules-2.6.25-2-486-di loop-modules-2.6.25-2-486-di 
ipv6-modules-2.6.25-2-486-di nls-core-modules-2.6.25-2-486-di 
ext2-modules-2.6.25-2-486-di ext3-modules-2.6.25-2-486-di 
isofs-modules-2.6.25-2-486-di jfs-modules-2.6.25-2-486-di 
ntfs-modules-2.6.25-2-486-di reiserfs-modules-2.6.25-2-486-di 
xfs-modules-2.6.25-2-486-di fat-modules-2.6.25-2-486-di 
ufs-modules-2.6.25-2-486-di qnx4-modules-2.6.25-2-486-di 
md-modules-2.6.25-2-486-di multipath-modules-2.6.25-2-486-di 
usb-modules-2.6.25-2-486-di usb-storage-modules-2.6.25-2-486-di 
pcmcia-storage-modules-2.6.25-2-486-di fb-modules-2.6.25-2-486-di 
input-modules-2.6.25-2-486-di mouse-modules-2.6.25-2-486-di 
irda-modules-2.6.25-2-486-di parport-modules-2.6.25-2-486-di 
nic-pcmcia-modules-2.6.25-2-486-di pcmcia-modules-2.6.25-2-486-di 
nic-usb-modules-2.6.25-2-486-di sata-modules-2.6.25-2-486-di 
core-modules-2.6.25-2-486-di acpi-modules-2.6.25-2-486-di 
crc-modules-2.6.25-2-486-di crypto-core-modules-2.6.25-2-486-di 
crypto-modules-2.6.25-2-486-di crypto-dm-modules-2.6.25-2-486-di 
efi-modules-2.6.25-2-486-di ata-modules-2.6.25-2-486-di 
rtc-modules-2.6.25-2-486-di zlib-modules-2.6.25-2-486-di
Architecture: i386 source 
Version: 1.63
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Frans Pop [EMAIL PROTECTED]
Description:
 acpi-modules-2.6.25-2-486-di - ACPI support modules (udeb)
 ata-modules-2.6.25-2-486-di - ATA disk modules (udeb)
 cdrom-core-modules-2.6.25-2-486-di - CDROM support (udeb)
 core-modules-2.6.25-2-486-di - Core modules (udeb)
 crc-modules-2.6.25-2-486-di - CRC modules (udeb)
 crypto-core-modules-2.6.25-2-486-di - Core crypto modules (udeb)
 crypto-dm-modules-2.6.25-2-486-di - devicemapper crypto module (udeb)
 crypto-modules-2.6.25-2-486-di - crypto modules (udeb)
 efi-modules-2.6.25-2-486-di - EFI modules (udeb)
 ext2-modules-2.6.25-2-486-di - EXT2 filesystem support (udeb)
 ext3-modules-2.6.25-2-486-di - EXT3 filesystem support (udeb)
 fat-modules-2.6.25-2-486-di - FAT filesystem support (udeb)
 fb-modules-2.6.25-2-486-di - Frame buffer support (udeb)
 firewire-core-modules-2.6.25-2-486-di - Core FireWire drivers (udeb)
 floppy-modules-2.6.25-2-486-di - Floppy driver (udeb)
 ide-core-modules-2.6.25-2-486-di - IDE support (udeb)
 ide-modules-2.6.25-2-486-di - IDE drivers (udeb)
 input-modules-2.6.25-2-486-di - Input devices support (udeb)
 ipv6-modules-2.6.25-2-486-di - IPv6 driver (udeb)
 irda-modules-2.6.25-2-486-di - Infrared devices support (udeb)
 isofs-modules-2.6.25-2-486-di - ISOFS filesystem support (udeb)
 jfs-modules-2.6.25-2-486-di - JFS filesystem support (udeb)
 kernel-image-2.6.25-2-486-di - Linux kernel binary image for the Debian 
installer (udeb)
 loop-modules-2.6.25-2-486-di - Loopback filesystem support (udeb)
 md-modules-2.6.25-2-486-di - RAID and LVM support (udeb)
 mouse-modules-2.6.25-2-486-di - Mouse support (udeb)
 multipath-modules-2.6.25-2-486-di - Multipath support (udeb)
 nic-extra-modules-2.6.25-2-486-di - Rare NIC drivers (udeb)
 nic-modules-2.6.25-2-486-di - Common NIC drivers (udeb)
 nic-pcmcia-modules-2.6.25-2-486-di - Common PCMCIA NIC drivers (udeb)
 nic-shared-modules-2.6.25-2-486-di - Shared NIC drivers (udeb)
 nic-usb-modules-2.6.25-2-486-di - USB NIC drivers (udeb)
 nic-wireless-modules-2.6.25-2-486-di - Wireless NIC drivers (udeb)
 nls-core-modules-2.6.25-2-486-di - Core NLS support (udeb)
 ntfs-modules-2.6.25-2-486-di - NTFS filesystem support (udeb)
 parport-modules-2.6.25-2-486-di - Parallel port support (udeb)
 pata-modules-2.6.25-2-486-di - PATA drivers (udeb)
 pcmcia-modules-2.6.25-2-486-di - Common PCMCIA drivers (udeb)
 pcmcia-storage-modules-2.6.25-2-486-di - PCMCIA storage drivers (udeb)
 plip-modules-2.6.25-2-486-di - PLIP drivers (udeb)
 ppp-modules-2.6.25-2-486-di - PPP drivers (udeb)
 qnx4-modules-2.6.25-2-486-di - QNX4 filesystem support (udeb)
 reiserfs-modules-2.6.25-2-486-di - Reiser filesystem support (udeb)
 rtc-modules-2.6.25-2-486-di - RTC modules (udeb)
 sata-modules-2.6.25-2-486-di - SATA drivers (udeb)
 scsi-common-modules-2.6.25-2-486-di - Very common SCSI drivers (udeb)
 scsi-core-modules-2.6.25-2-486-di - Core SCSI subsystem (udeb)
 scsi-extra-modules-2.6.25-2-486-di - Uncommon SCSI 

Accepted postfix 2.5.2-2 (source all i386)

2008-07-10 Thread LaMont Jones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 10 Jul 2008 09:54:27 -0600
Source: postfix
Binary: postfix postfix-ldap postfix-cdb postfix-pcre postfix-mysql 
postfix-pgsql postfix-dev postfix-doc
Architecture: all i386 source 
Version: 2.5.2-2
Distribution: unstable
Urgency: low
Maintainer: LaMont Jones [EMAIL PROTECTED]
Changed-By: LaMont Jones [EMAIL PROTECTED]
Description: 
 postfix- High-performance mail transport agent
 postfix-cdb - CDB map support for Postfix
 postfix-dev - Loadable modules development environment for Postfix
 postfix-doc - Documentation for Postfix
 postfix-ldap - LDAP map support for Postfix
 postfix-mysql - MySQL map support for Postfix
 postfix-pcre - PCRE map support for Postfix
 postfix-pgsql - PostgreSQL map support for Postfix
Closes: 483511 483648 483652 483653 483720 483835 483978 484844 488052 490112
Changes: 
 postfix (2.5.2-2) unstable; urgency=low
 .
   [localization folks]
 .
   * l10n: Catalan debconf template update.  Closes: #490112 (Jordà Polo)
   * l10n: Vietnamese debconf templates translation update.  Closes: #483653
 (Clytie Siddall)
   * l10n: Korean postfix debconf PO translation update.  Closes: #484844
 (Sunjae Park)
   * l10n: Updated Japanese translations.  Closes: #483511 (Kenshi Muto)
   * l10n: Updated Russian translations (Sergey Alyoshin)
   * l10n: Updated German translations.  Closes: #483648 (Helge Kreutzmann)
   * l10n: Updated Finnish translation (Tommi Vainikainen)
   * l10n: Updated Dutch po-debconf translation.  Closes: #483652 (cobaco (aka
 Bart Cornelis))
   * l10n: French debconf templates translation update.  Closes: #483835
 (Christian Perrier)
   * l10n: Galician debconf template translation for postfix.  Closes: #483720
 (Jacobo Tarrio)
   * l10n: updated Czech translations.  Closes: #483978 (Miroslav Kure)
   * l10n: Portuguese translation for postfix's debconf messages (Miguel
 Figueiredo)
   * l10n: Updated Portuguese translation.  Closes: #488052 (Traduz -
 Portuguese Translation Team)
   * l10n: updated Italian translations. (Cristian Rigamonti)
Files: 
 336e1664500261288cbab100bd2db37f 1174112 mail extra postfix_2.5.2-2_i386.deb
 370bfcd30b38ab6ff08b27ff797af1bc 40600 mail extra postfix-cdb_2.5.2-2_i386.deb
 624068d62ef73465f2bef35808845c5c 914824 doc extra postfix-doc_2.5.2-2_all.deb
 700cc336edc5c9b9a9336778b6fc7d65 214754 mail extra postfix_2.5.2-2.diff.gz
 d9097c651a9086b3fd3cad61e3a5eb6b 1006 mail extra postfix_2.5.2-2.dsc
 b0cf9b6533de176fa150eb6b0c63f528 42184 mail extra 
postfix-mysql_2.5.2-2_i386.deb
 b69c8770cff811ffbaa443c63bc8a9f1 42152 mail extra postfix-pcre_2.5.2-2_i386.deb
 d144aa058d16dec60121734bc22bce32 140554 devel extra postfix-dev_2.5.2-2_all.deb
 d1680432c9c255597766fbca235ca08d 4 mail extra 
postfix-pgsql_2.5.2-2_i386.deb
 df27670dbf6e5baf803419877b364d48 48092 mail extra postfix-ldap_2.5.2-2_i386.deb

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

iD8DBQFIdlWxzN/kmwoKyScRAgygAKCDKbQ1ZoB1AdfX0erCJnhiS3ZoTwCgkkrh
YwBRN5+Jkx+t30ZSPyATbZg=
=cCi9
-END PGP SIGNATURE-


Accepted:
postfix-cdb_2.5.2-2_i386.deb
  to pool/main/p/postfix/postfix-cdb_2.5.2-2_i386.deb
postfix-dev_2.5.2-2_all.deb
  to pool/main/p/postfix/postfix-dev_2.5.2-2_all.deb
postfix-doc_2.5.2-2_all.deb
  to pool/main/p/postfix/postfix-doc_2.5.2-2_all.deb
postfix-ldap_2.5.2-2_i386.deb
  to pool/main/p/postfix/postfix-ldap_2.5.2-2_i386.deb
postfix-mysql_2.5.2-2_i386.deb
  to pool/main/p/postfix/postfix-mysql_2.5.2-2_i386.deb
postfix-pcre_2.5.2-2_i386.deb
  to pool/main/p/postfix/postfix-pcre_2.5.2-2_i386.deb
postfix-pgsql_2.5.2-2_i386.deb
  to pool/main/p/postfix/postfix-pgsql_2.5.2-2_i386.deb
postfix_2.5.2-2.diff.gz
  to pool/main/p/postfix/postfix_2.5.2-2.diff.gz
postfix_2.5.2-2.dsc
  to pool/main/p/postfix/postfix_2.5.2-2.dsc
postfix_2.5.2-2_i386.deb
  to pool/main/p/postfix/postfix_2.5.2-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted tellico 1.3.3-1 (source i386 all)

2008-07-10 Thread Regis Boudin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 19:20:51 +0100
Source: tellico
Binary: tellico tellico-data tellico-scripts
Architecture: source i386 all
Version: 1.3.3-1
Distribution: unstable
Urgency: low
Maintainer: Regis Boudin [EMAIL PROTECTED]
Changed-By: Regis Boudin [EMAIL PROTECTED]
Description: 
 tellico- collection manager for books, videos, music
 tellico-data - collection manager for books, videos, music [data]
 tellico-scripts - collection manager for books, videos, music [scripts]
Changes: 
 tellico (1.3.3-1) unstable; urgency=low
 .
   * New upstream release, mainly bug fixes.
Checksums-Sha1: 
 8d5dcddccfdea7b0870a8aaf61fc28b1891c54e5 1251 tellico_1.3.3-1.dsc
 78961a388a71e663bfe7ec69ac98407ba3fc096d 5099844 tellico_1.3.3.orig.tar.gz
 d36437f25f79b3d7b996b1ece92b27b96aec586b 10613 tellico_1.3.3-1.diff.gz
 6a421799dbc332b84f2b06bd70a350e8a65f47b5 1018068 tellico_1.3.3-1_i386.deb
 3700331a6a625fff3ca991de48995fb37d1826ce 3165340 tellico-data_1.3.3-1_all.deb
 d726e8b033d2c5fba72427e74a6857ee66f921b9 42266 tellico-scripts_1.3.3-1_all.deb
Checksums-Sha256: 
 032b062517b74443bf1a8fe4ca5f619a5ed8855a2fd64ad529085c177098e592 1251 
tellico_1.3.3-1.dsc
 eed0d2b29ec6d085c21fc7fa678f4f6aae5d135dbc28c80322bd9705878f2124 5099844 
tellico_1.3.3.orig.tar.gz
 20bcffa448c78642ff8ce1fcc88d617e19a67f0fdce86419b5329f5ee06901ba 10613 
tellico_1.3.3-1.diff.gz
 247654a4f3ab44ee61c198b4e1fb60dac44d28b4f762c2142b1866473b2ea1b4 1018068 
tellico_1.3.3-1_i386.deb
 5ce38ace735649d764217be74e7da79a77658ae24920ccc2e93b4bf7416f4776 3165340 
tellico-data_1.3.3-1_all.deb
 172e3bfe8a6272d35411dbcd066948ee3efe08cff50a9bd95bae07b11e65953b 42266 
tellico-scripts_1.3.3-1_all.deb
Files: 
 68850c3ed3a2de2d0e88d5e53764e157 1251 kde optional tellico_1.3.3-1.dsc
 6e08c3f96c5b2ca871b83dbaca41b2ae 5099844 kde optional tellico_1.3.3.orig.tar.gz
 a929b424aeb9e7ef0d3fc83e056ce81b 10613 kde optional tellico_1.3.3-1.diff.gz
 0313be9d55e92e21eaae14eb2b70bae8 1018068 kde optional tellico_1.3.3-1_i386.deb
 ca2dc4edebacfc71fe625a7cc622ea0a 3165340 kde optional 
tellico-data_1.3.3-1_all.deb
 0feec5deb850a0eace825768becaadab 42266 kde optional 
tellico-scripts_1.3.3-1_all.deb

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

iEYEARECAAYFAkh2WAUACgkQVE17sLEtWVotZwCfflifU8ExcF4etvfCGZOmFHjq
FZ4AniFoWb8ZzyiHbcMZsyy+bO4mT5BS
=28JU
-END PGP SIGNATURE-


Accepted:
tellico-data_1.3.3-1_all.deb
  to pool/main/t/tellico/tellico-data_1.3.3-1_all.deb
tellico-scripts_1.3.3-1_all.deb
  to pool/main/t/tellico/tellico-scripts_1.3.3-1_all.deb
tellico_1.3.3-1.diff.gz
  to pool/main/t/tellico/tellico_1.3.3-1.diff.gz
tellico_1.3.3-1.dsc
  to pool/main/t/tellico/tellico_1.3.3-1.dsc
tellico_1.3.3-1_i386.deb
  to pool/main/t/tellico/tellico_1.3.3-1_i386.deb
tellico_1.3.3.orig.tar.gz
  to pool/main/t/tellico/tellico_1.3.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted nvi 1.81.6-3 (source all i386)

2008-07-10 Thread Jan Christoph Nordholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 09 Jul 2008 12:21:40 +0200
Source: nvi
Binary: nvi nvi-doc
Architecture: source all i386
Version: 1.81.6-3
Distribution: unstable
Urgency: low
Maintainer: Jan Christoph Nordholz [EMAIL PROTECTED]
Changed-By: Jan Christoph Nordholz [EMAIL PROTECTED]
Description: 
 nvi- 4.4BSD re-implementation of vi
 nvi-doc- 4.4BSD re-implementation of vi - documentation files
Closes: 41768 189266 312286 330782 381995 437656 465727
Changes: 
 nvi (1.81.6-3) unstable; urgency=low
 .
   * Convert debian/copyright to proposed format and supplement it.
 .
 nvi (1.81.6-2) unstable; urgency=low
 .
   * The '-F' option is no longer supported - adapt the manpage
 accordingly. Closes: #381995.
   * Finally fix the trailing tab+'set number' - SEGV issue.
 Closes: #330782.
 .
 nvi (1.81.6-1) UNRELEASED; urgency=low
 .
   * New upstream version. Thanks to Bart Martens for spotting it!
 This package tracks the development branch of nvi now.
 See the copyright file for its new web location.
 Bugs closed by upstream:
 * Closes: #189266, #312286.
   * Add libdb4.2-dev as new build-dependency.
   * Rework the .diff.gz into a proper patchsystem, review, sort into logical
 units and rediff all contained patches.
   * Fix sendmail invocation in the initscript. Closes: #465727.
   * Heed DEB_BUILD_OPTIONS=nostrip. Closes: #437656.
   * Split off the documentation into its own nvi-doc package.
 Have nvi recommend nvi-doc.
   * Cherry-pick a few documentation files from the last stable release
 that are missing from later development branch releases and add
 them as a dpatch.
   * Inhibit the vi tutorial from being compressed because it is intended
 to be perused with the editor itself, not some z${pager} call.
   * Add the ex/vi reference manual, closes: #41768.
   * Bump Standards version to 3.8.0.
Checksums-Sha1: 
 780d840b4b9b22b3cc84eb768791b6c605758ced 1059 nvi_1.81.6-3.dsc
 ce3e0d7d476fb3bdcce9d547e170152290db0347 2324452 nvi_1.81.6.orig.tar.gz
 d861185cb2dc5bd19e5a3374b3dad2161d905b44 83662 nvi_1.81.6-3.diff.gz
 f69c36bc1d10ac3a958afbf29ab5646c883fc35e 115096 nvi-doc_1.81.6-3_all.deb
 4432c0f6cfe33f8e68acf034aebabbfdfd67cd78 258728 nvi_1.81.6-3_i386.deb
Checksums-Sha256: 
 f4623170ed55e75dd9fb8e36846f68a4b7ff9b81c0a05bd58a900199ca421dbd 1059 
nvi_1.81.6-3.dsc
 8bc348889159a34cf268f80720b26f459dbd723b5616107d36739d007e4c978d 2324452 
nvi_1.81.6.orig.tar.gz
 0c94b359cc99a7bcbf57e6e49d674e67b4751367a118b543d40f190a8b2d272c 83662 
nvi_1.81.6-3.diff.gz
 7c723646b0b8dac9dca1aee14355d70b009623bbac2c83b7dc05e5a2642b43a4 115096 
nvi-doc_1.81.6-3_all.deb
 9ad89c96676aab0f4f892f86923fad57e5f97b8cac12cad23377f1ae74de88fe 258728 
nvi_1.81.6-3_i386.deb
Files: 
 f222e85ddd556adf2d67be2dfade2d6d 1059 editors optional nvi_1.81.6-3.dsc
 f7e65a969045dafd53aea7e3e80b8cf2 2324452 editors optional 
nvi_1.81.6.orig.tar.gz
 d4a34d95a310f5788e31381d54b444ca 83662 editors optional nvi_1.81.6-3.diff.gz
 cb43a2d523dbd4637b1f7198ed301238 115096 doc optional nvi-doc_1.81.6-3_all.deb
 464fd3d07c93dc65da9e158f44eb932d 258728 editors optional nvi_1.81.6-3_i386.deb

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

iD8DBQFIdVu8SR+P2lQW5bgRAuATAKCLNS+F3pk+qWqomGxPffiFs3gAjQCbBVa/
QuDZ2rhTfmMP20kM8cF9nos=
=f8zV
-END PGP SIGNATURE-


Accepted:
nvi-doc_1.81.6-3_all.deb
  to pool/main/n/nvi/nvi-doc_1.81.6-3_all.deb
nvi_1.81.6-3.diff.gz
  to pool/main/n/nvi/nvi_1.81.6-3.diff.gz
nvi_1.81.6-3.dsc
  to pool/main/n/nvi/nvi_1.81.6-3.dsc
nvi_1.81.6-3_i386.deb
  to pool/main/n/nvi/nvi_1.81.6-3_i386.deb
nvi_1.81.6.orig.tar.gz
  to pool/main/n/nvi/nvi_1.81.6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted newlib 1.16.0-3 (source all amd64)

2008-07-10 Thread Arthur Loiret
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 09 Jul 2008 14:09:00 +
Source: newlib
Binary: libnewlib0 libnewlib-dev newlib-spu newlib-m68hc1x newlib-mingw32 
newlib-source
Architecture: source amd64 all
Version: 1.16.0-3
Distribution: experimental
Urgency: low
Maintainer: Arthur Loiret [EMAIL PROTECTED]
Changed-By: Arthur Loiret [EMAIL PROTECTED]
Description: 
 libnewlib-dev - newlib C library (devel)
 libnewlib0 - newlib C library (runtime)
 newlib-m68hc1x - newlib C library (win32)
 newlib-mingw32 - newlib C library (win32)
 newlib-source - newlib C library (source)
 newlib-spu - newlib C library (spu)
Changes: 
 newlib (1.16.0-3) experimental; urgency=low
 .
   * Upload to experimental.
   * Build a newlib-m68hc1x and a newlib-mingw32 package:
 - newlib-m68hc1x Recommends gcc-m68hc1x.
 - newlib-mingw32 Recommends mingw32.
 - Install m68hc1x in /usr/m68hc11/.
 - Install mingw32 in /usr/lib/newlib/i586-mingw32msvc/.
   * newlib-m68hc1x.overrides, newlib-mingw32.overrides: Add.
   * Build again main libnewlib0 and libnewlib-dev packages:
 - Install in /usr/lib/newlib/.
   * debian/control:
 - Add new packages.
 - Make newlib-spu Recommends gcc-spu.
 - Bump Standards-Version to 3.8.0.
   * debian/rules:
 - Update for new packages.
 - Support DEB_BUILD_OPTIONS=parallel=n.
 - Depect cpu number and run parallel build by default.
 - Some improvements.
   * debian/watch: Add.
Checksums-Sha1: 
 e60d1c137d0c126eadaf2f716344bed753fcb247 1178 newlib_1.16.0-3.dsc
 75c156aa1d7aca4eef4afbadb163f2fe1bc7ab67 11421 newlib_1.16.0-3.diff.gz
 443c7070ff145c8c1bb35bfdd68ebd181773f087 270830 libnewlib0_1.16.0-3_amd64.deb
 0a0581b5610d37cb95e6c9926109d27852a8d0cd 90164 libnewlib-dev_1.16.0-3_amd64.deb
 e3ee8f92886fbdb7353c66936cade3475a566881 4015404 newlib-source_1.16.0-3_all.deb
 0878e6559080d5d27f1d7a2cc5447f259e9d7b2b 2405140 
newlib-m68hc1x_1.16.0-3_all.deb
 6417b74464b02160bcea1a481cfb63f8ab2d02ad 285192 newlib-mingw32_1.16.0-3_all.deb
Checksums-Sha256: 
 de1855cd889ce84517b555f6ec5292dec4a506b19364f1b4bb905e2417ec1b85 1178 
newlib_1.16.0-3.dsc
 cdf461b19e4ca911e7af3436d87f9c40aeef3baeed6a88380f206241c70a6ff7 11421 
newlib_1.16.0-3.diff.gz
 4d6b44b14709414f69799d2d66b76a92ae4d2a96720a2cf70cf2d5b9d8e3969f 270830 
libnewlib0_1.16.0-3_amd64.deb
 9660c1909384f2f77da42bf2e2c7fddb927e18e65dbee0268404c0b7309a261f 90164 
libnewlib-dev_1.16.0-3_amd64.deb
 c12a48f0e32d11531672e8c3398f7825cdda8edafdb34125f67670dbad637753 4015404 
newlib-source_1.16.0-3_all.deb
 6a362606c19ffc6a9e7f8c22a84cf3578db6ea3df85178adeb256ec6c325d44e 2405140 
newlib-m68hc1x_1.16.0-3_all.deb
 566f8a913ef67b50ec62230da419d844cbab0081c5c714e8a83880561a3c5075 285192 
newlib-mingw32_1.16.0-3_all.deb
Files: 
 8126a73fecd91fd3e427d32238c8f94b 1178 devel extra newlib_1.16.0-3.dsc
 6c3d91efc429d758a0608d8a3c6eebcb 11421 devel extra newlib_1.16.0-3.diff.gz
 a723f8b73ec73bf6a4ebcb456fd380bd 270830 libs extra 
libnewlib0_1.16.0-3_amd64.deb
 25b3f2796f517e1db2775f0f75b679ed 90164 libdevel extra 
libnewlib-dev_1.16.0-3_amd64.deb
 c693137afc19f7d2cb6531b996f60512 4015404 devel extra 
newlib-source_1.16.0-3_all.deb
 ca9ac5016c2441515c8829b1021a2cf9 2405140 devel extra 
newlib-m68hc1x_1.16.0-3_all.deb
 c1ac21869b1c52c05b3eaecbca2a60ce 285192 devel extra 
newlib-mingw32_1.16.0-3_all.deb

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

iD8DBQFIdMtLeW7Lc5tEHqgRAuMmAKCL0wSF8i63vsDG4/2kYDeBfIzLNQCfeAEu
rj+05n4zzJDKQAuRuFDMY2o=
=JbRY
-END PGP SIGNATURE-


Accepted:
libnewlib-dev_1.16.0-3_amd64.deb
  to pool/main/n/newlib/libnewlib-dev_1.16.0-3_amd64.deb
libnewlib0_1.16.0-3_amd64.deb
  to pool/main/n/newlib/libnewlib0_1.16.0-3_amd64.deb
newlib-m68hc1x_1.16.0-3_all.deb
  to pool/main/n/newlib/newlib-m68hc1x_1.16.0-3_all.deb
newlib-mingw32_1.16.0-3_all.deb
  to pool/main/n/newlib/newlib-mingw32_1.16.0-3_all.deb
newlib-source_1.16.0-3_all.deb
  to pool/main/n/newlib/newlib-source_1.16.0-3_all.deb
newlib_1.16.0-3.diff.gz
  to pool/main/n/newlib/newlib_1.16.0-3.diff.gz
newlib_1.16.0-3.dsc
  to pool/main/n/newlib/newlib_1.16.0-3.dsc


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted pynifti 0.20080710.1-1 (source i386)

2008-07-10 Thread Michael Hanke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 17:30:22 +0200
Source: pynifti
Binary: python-nifti
Architecture: source i386
Version: 0.20080710.1-1
Distribution: unstable
Urgency: low
Maintainer: Yaroslav Halchenko [EMAIL PROTECTED]
Changed-By: Michael Hanke [EMAIL PROTECTED]
Description: 
 python-nifti - Python interface to the NIfTI I/O libraries
Closes: 490141
Changes: 
 pynifti (0.20080710.1-1) unstable; urgency=low
 .
   * New upstream release (Closes: #490141).
   * Change email address of Yaroslav Halchenko in uploaders field to
 '[EMAIL PROTECTED]'.
   * Bumped Debian Standards-version to 3.8.0, no changes necessary.
   * Converted debian/copyright into a machine readable format.
Checksums-Sha1: 
 898024278972389cd743e5204908200cccb94d20 1341 pynifti_0.20080710.1-1.dsc
 d329cbd5455387d455ca7d3a9a54136b2fe5b6f7 609951 
pynifti_0.20080710.1.orig.tar.gz
 d93343769e1666840cb69cc0b5f12065abcff51b 4557 pynifti_0.20080710.1-1.diff.gz
 de49101bc16cc4bb5537d7326a800a2d983febfb 294412 
python-nifti_0.20080710.1-1_i386.deb
Checksums-Sha256: 
 d14a6b9b5348104681be1223f85cec25c10ca42e70aa4bf26d23c952ac5afaec 1341 
pynifti_0.20080710.1-1.dsc
 824ba94f330e7b9b33be7bed37d5a72d2766ee235e5882287e17260970b768a2 609951 
pynifti_0.20080710.1.orig.tar.gz
 606b5cca4809a431bb6d21c01ff00065d407fd056e8560ffcf3f0cef12c7099e 4557 
pynifti_0.20080710.1-1.diff.gz
 e64cf11e10d99cb7e0e43bfd933cdc56e446bfe10d7d9851cfd7a72d07d1eca3 294412 
python-nifti_0.20080710.1-1_i386.deb
Files: 
 c3684c37de9f5765e2eda4f7768548fe 1341 python optional 
pynifti_0.20080710.1-1.dsc
 b634d2186eaca7d20815ae2fb1c23d96 609951 python optional 
pynifti_0.20080710.1.orig.tar.gz
 4ea94218c7b9edbe0366de414b122de0 4557 python optional 
pynifti_0.20080710.1-1.diff.gz
 0e6558386c3d2dfce6ee34914634aa73 294412 python optional 
python-nifti_0.20080710.1-1_i386.deb

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

iD8DBQFIdmA6jRFFY3XAJMgRAtZOAJ4889tXkzDj8nNH0tHFOrjBlEbhmgCgiw6I
RPsBscTmhHt3AhQGCJlsxoE=
=QNIs
-END PGP SIGNATURE-


Accepted:
pynifti_0.20080710.1-1.diff.gz
  to pool/main/p/pynifti/pynifti_0.20080710.1-1.diff.gz
pynifti_0.20080710.1-1.dsc
  to pool/main/p/pynifti/pynifti_0.20080710.1-1.dsc
pynifti_0.20080710.1.orig.tar.gz
  to pool/main/p/pynifti/pynifti_0.20080710.1.orig.tar.gz
python-nifti_0.20080710.1-1_i386.deb
  to pool/main/p/pynifti/python-nifti_0.20080710.1-1_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted gv 1:3.6.5-1 (source sparc)

2008-07-10 Thread Bernhard R. Link
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 20:59:18 CEST
Source: gv
Binary: gv
Architecture: source sparc
Version: 1:3.6.5-1
Distribution: unstable
Urgency: low
Maintainer: Bernhard R. Link [EMAIL PROTECTED]
Changed-By: Bernhard R. Link [EMAIL PROTECTED]
Description: 
 gv - PostScript and PDF viewer for X
Changes: 
 gv (1:3.6.5-1) unstable; urgency=low
 .
   * new upstream release
   - dropped patches as merged upstream:
 commentappdefaults.diff
Checksums-Sha256: 
 45cfaf3c2f3c78d565b20ee97f2649b0ac846694361a65ba3adbb791a4333504 1108 
gv_3.6.5-1.dsc
 edd4fe40f65e4722736fc1d6f6d3b9c9f1f919e5da4835873d65e95b92c1bd73 537336 
gv_3.6.5.orig.tar.gz
 663aaab962c3fe0794a60534fa0cb8f75f9aadf720e61679f455066f163f3138 13610 
gv_3.6.5-1.diff.gz
 598481ca1d0c63b6cb2c2431dce97b3541075f889e12faa8f9b2b1f002d466f1 188816 
gv_3.6.5-1_sparc.deb
Checksums-Sha1: 
 a292def9aea5aa12244e7eb8ae0ef4ef97446f77 1108 gv_3.6.5-1.dsc
 90d0bd5b8243108925d46ddf478c7499b475df3a 537336 gv_3.6.5.orig.tar.gz
 35258014f5c17e35a9a0b937a92887b451edfb74 13610 gv_3.6.5-1.diff.gz
 31db4cec83bbcafb3cdb81f7aa6f0677f708935c 188816 gv_3.6.5-1_sparc.deb
Files: 
 6dd3124d9b348eef7cc73b66fa32d53e 1108 text optional gv_3.6.5-1.dsc
 ce3081b1b3e6258607f2de70f39cbcd2 537336 text optional gv_3.6.5.orig.tar.gz
 5bf3f5f25e05628af15d0aca46f70586 13610 text optional gv_3.6.5-1.diff.gz
 25b9936bed7e5e76541cf47895a2b11a 188816 text optional gv_3.6.5-1_sparc.deb

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

iQCVAwUBSHZcDFsyKVgPHZLaAQKU+gP+PZveTajel9P3jfWRwiTi8sW7ntoTHfPQ
X40X02BK+m1PP+adsS6lxkdvRMQxHdUyl1fDcgmpxHQROyJbXpqjBOIWOHOYLKI4
u3/Av+HEJPB6zHwf5RznjjmQ07SZFqw2ZvFs0N8SuPUbTtrgC2eTUsmPA6GeNM2/
WeZIEKHrdV4=
=Bxyi
-END PGP SIGNATURE-


Accepted:
gv_3.6.5-1.diff.gz
  to pool/main/g/gv/gv_3.6.5-1.diff.gz
gv_3.6.5-1.dsc
  to pool/main/g/gv/gv_3.6.5-1.dsc
gv_3.6.5-1_sparc.deb
  to pool/main/g/gv/gv_3.6.5-1_sparc.deb
gv_3.6.5.orig.tar.gz
  to pool/main/g/gv/gv_3.6.5.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted libfile-remove-perl 1.42-1 (source all)

2008-07-10 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 21:00:37 +0200
Source: libfile-remove-perl
Binary: libfile-remove-perl
Architecture: source all
Version: 1.42-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libfile-remove-perl - remove files and directories, accepts wildcards
Changes: 
 libfile-remove-perl (1.42-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/copyright: adjust to wording in upstream README; add
 copyright/license information for files under inc/.
Checksums-Sha1: 
 cb2620e8c9acecb0177e1b7a85498fbac66c2127 1542 libfile-remove-perl_1.42-1.dsc
 09d2bf0d6a86155e17fe4a82e177d5f1c31d39e2 27592 
libfile-remove-perl_1.42.orig.tar.gz
 f8ef8af96957c5ebf2e5d71ee76ef4f6d8642123 3328 
libfile-remove-perl_1.42-1.diff.gz
 738b7085d9b574722457e96b1597146950d14e7a 12856 
libfile-remove-perl_1.42-1_all.deb
Checksums-Sha256: 
 ded41fddb53b6e46472656d067480999d5a2975e93470710a15c8a1e681d9aac 1542 
libfile-remove-perl_1.42-1.dsc
 2ec2643c4e1a721965ed70ce184b72ae831c82b577420612a59eba8a0ce2a504 27592 
libfile-remove-perl_1.42.orig.tar.gz
 119c0fa9ae4b5e83c31f5d8469b8ea5e5c45e78e90e07ab6a0d8b8756e00fa2a 3328 
libfile-remove-perl_1.42-1.diff.gz
 96b19be7a63a95d399707330f746c6d7ef4cdc02229289780ffb80ea763fa0bc 12856 
libfile-remove-perl_1.42-1_all.deb
Files: 
 49314a764bc8cb5bd132b16eefcd5ffb 1542 perl optional 
libfile-remove-perl_1.42-1.dsc
 7eef25044fc3cc60b6faf0522f865ed5 27592 perl optional 
libfile-remove-perl_1.42.orig.tar.gz
 6048481436100264d7f48a54975d8819 3328 perl optional 
libfile-remove-perl_1.42-1.diff.gz
 cec6c1cde69457bc96a24a5e732e6a89 12856 perl optional 
libfile-remove-perl_1.42-1_all.deb

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

iEYEARECAAYFAkh2XI8ACgkQOzKYnQDzz+Q68gCgyzAbqevBWho3wlCDxxB4joxB
q7AAoMANUd/u8rIKEY0WM+61AGTZGCtY
=2654
-END PGP SIGNATURE-


Accepted:
libfile-remove-perl_1.42-1.diff.gz
  to pool/main/libf/libfile-remove-perl/libfile-remove-perl_1.42-1.diff.gz
libfile-remove-perl_1.42-1.dsc
  to pool/main/libf/libfile-remove-perl/libfile-remove-perl_1.42-1.dsc
libfile-remove-perl_1.42-1_all.deb
  to pool/main/libf/libfile-remove-perl/libfile-remove-perl_1.42-1_all.deb
libfile-remove-perl_1.42.orig.tar.gz
  to pool/main/libf/libfile-remove-perl/libfile-remove-perl_1.42.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted webkit 1.0.1-2 (source all amd64)

2008-07-10 Thread Mike Hommey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 21:10:27 +0200
Source: webkit
Binary: libwebkit-1.0-1 libwebkit-dev libwebkit-1.0-1-dbg
Architecture: source all amd64
Version: 1.0.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian WebKit Maintainers [EMAIL PROTECTED]
Changed-By: Mike Hommey [EMAIL PROTECTED]
Description: 
 libwebkit-1.0-1 - Web content engine library for Gtk+
 libwebkit-1.0-1-dbg - Web content engine library for Gtk+ - Debugging symbols
 libwebkit-dev - Web content engine library for Gtk+ - Development files
Changes: 
 webkit (1.0.1-2) unstable; urgency=low
 .
   * symbols.filter: As a workaround for #490173, hide all C++ mangled symbols.
 This will be enough for now, while fixing FTBFS on ARM.
   * debian/rules: Build with -Wl,--no-relax on alpha, to work around a
 binutils bug causing FTBFS.
Checksums-Sha1: 
 4287776bf817171e8a0c52bfaca64b954f837ff2 1410 webkit_1.0.1-2.dsc
 b9a3fe523a453c2835df95cb88b19d58fe0fc175 19875 webkit_1.0.1-2.diff.gz
 3fb855c1de8d516d07b32cd209edbbf2c7c42d09 33784 libwebkit-dev_1.0.1-2_all.deb
 5bf7f61e97bb4b13232eed50a50a73b7e559e6da 3502048 
libwebkit-1.0-1_1.0.1-2_amd64.deb
 dccd2d4aac25273d0ffbcba8887d331739909788 62633690 
libwebkit-1.0-1-dbg_1.0.1-2_amd64.deb
Checksums-Sha256: 
 bd83ddf78e18bff868c1a8e087171bdcac541015191c1eb75ec670af09d27737 1410 
webkit_1.0.1-2.dsc
 539a6a5c24358156285d3372eb61fb8180d8573275b64618abe9551da1557092 19875 
webkit_1.0.1-2.diff.gz
 268ae6070e03b5c5040c391af51f7e2b822a4871d0236f002dd0931914810b49 33784 
libwebkit-dev_1.0.1-2_all.deb
 4c6ec516f9c0b854dc376aca482e2abdaf2fc3e1e59858c27be840aec0c32e1c 3502048 
libwebkit-1.0-1_1.0.1-2_amd64.deb
 47c3ee94d54d6ffc3c98f5d946b746f6f7abc4edfc225d424eee78d6fe4d8412 62633690 
libwebkit-1.0-1-dbg_1.0.1-2_amd64.deb
Files: 
 ec6ad62d5944e90ea5f191b9bf343816 1410 web optional webkit_1.0.1-2.dsc
 467aa9ccd75001f9bdbbd902990a7189 19875 web optional webkit_1.0.1-2.diff.gz
 992788c9b6a391f680fb7c68a9eaf09d 33784 libdevel extra 
libwebkit-dev_1.0.1-2_all.deb
 7cac61f621fa24880a47d2228fc86115 3502048 libs optional 
libwebkit-1.0-1_1.0.1-2_amd64.deb
 020b68816b888fce28c1bbe7f3b4f2b7 62633690 libdevel extra 
libwebkit-1.0-1-dbg_1.0.1-2_amd64.deb

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

iD8DBQFIdmom3kvaLFT9KlgRApMTAJ4nf4qI1/TQG9ZDqKJeEx/JVxHJFgCeOlEW
IIygr52NoQBRHRsvHXfsgJg=
=fICh
-END PGP SIGNATURE-


Accepted:
libwebkit-1.0-1-dbg_1.0.1-2_amd64.deb
  to pool/main/w/webkit/libwebkit-1.0-1-dbg_1.0.1-2_amd64.deb
libwebkit-1.0-1_1.0.1-2_amd64.deb
  to pool/main/w/webkit/libwebkit-1.0-1_1.0.1-2_amd64.deb
libwebkit-dev_1.0.1-2_all.deb
  to pool/main/w/webkit/libwebkit-dev_1.0.1-2_all.deb
webkit_1.0.1-2.diff.gz
  to pool/main/w/webkit/webkit_1.0.1-2.diff.gz
webkit_1.0.1-2.dsc
  to pool/main/w/webkit/webkit_1.0.1-2.dsc


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted libdevice-cdio-perl 0.2.4-5 (source i386)

2008-07-10 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 22:11:28 +0200
Source: libdevice-cdio-perl
Binary: libdevice-cdio-perl
Architecture: source i386
Version: 0.2.4-5
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libdevice-cdio-perl - CD Input and control library
Closes: 487008
Changes: 
 libdevice-cdio-perl (0.2.4-5) unstable; urgency=medium
 .
   [ gregor herrmann ]
   * Change patch system from dpatch to quilt.
 .
   [ Martín Ferrari ]
   * Updating my email address
 .
   [ gregor herrmann ]
   * Call test suite in debian/rules with TZ=UTC, this finally fixes a FTBFS
 bug (closes: #487008). Set urgency to medium.
   * debian/control:
 - add /me to Uploaders
 - remove XS-DM-Upload-Allowed field, not needed any more, since Martín
   Ferrari has become a Debian Developer
 - wrap long line
   * Set Standards-Version to 3.8.0; add debian/README.source to document quilt
 usage.
   * Refresh debian/rules, no functional changes; except: don't install almost
 empty README any more.
Checksums-Sha1: 
 55225a0b01b1df7f9021d1de38b663cf4a65 1528 libdevice-cdio-perl_0.2.4-5.dsc
 68d79d8e85c939b1dd5ae7a5b49bd59dc721052d 7068 
libdevice-cdio-perl_0.2.4-5.diff.gz
 b7414e3930d511814761c9cf73fe8209dc058d5f 175630 
libdevice-cdio-perl_0.2.4-5_i386.deb
Checksums-Sha256: 
 b01a529113baef1b179da564b258ce65ca6de9dc650c05e84872e6849397e081 1528 
libdevice-cdio-perl_0.2.4-5.dsc
 358934fd821d698305c4776aaa393bcdff3418793e60d71e3068af587ff618c9 7068 
libdevice-cdio-perl_0.2.4-5.diff.gz
 3b96179231b9e912331ce63a42abaf439dc1f205bb1c0d84e3fc090a131a99a3 175630 
libdevice-cdio-perl_0.2.4-5_i386.deb
Files: 
 2d06b29b6ca28a3d8854d71a5b0ef02c 1528 perl optional 
libdevice-cdio-perl_0.2.4-5.dsc
 f3b3f5ad6539ec191c6d07c349d39f4d 7068 perl optional 
libdevice-cdio-perl_0.2.4-5.diff.gz
 4faf45687ac25ab73f3b09f3842c44db 175630 perl optional 
libdevice-cdio-perl_0.2.4-5_i386.deb

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

iEYEARECAAYFAkh2bUYACgkQOzKYnQDzz+T/vwCg6nyBuzSbt2bWkKFxnBkWy8xP
zmUAn3rg78zgZglKTBtX3JS72h4Ea9Gb
=rGqs
-END PGP SIGNATURE-


Accepted:
libdevice-cdio-perl_0.2.4-5.diff.gz
  to pool/main/libd/libdevice-cdio-perl/libdevice-cdio-perl_0.2.4-5.diff.gz
libdevice-cdio-perl_0.2.4-5.dsc
  to pool/main/libd/libdevice-cdio-perl/libdevice-cdio-perl_0.2.4-5.dsc
libdevice-cdio-perl_0.2.4-5_i386.deb
  to pool/main/libd/libdevice-cdio-perl/libdevice-cdio-perl_0.2.4-5_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted xfburn 0.3.1-1 (source amd64)

2008-07-10 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 22:26:22 +0200
Source: xfburn
Binary: xfburn
Architecture: source amd64
Version: 0.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers [EMAIL PROTECTED]
Changed-By: Yves-Alexis Perez [EMAIL PROTECTED]
Description: 
 xfburn - CD-burner application for Xfce Desktop Environment
Closes: 486424 489336
Changes: 
 xfburn (0.3.1-1) unstable; urgency=low
 .
   * New upstream release:
 - correctly support joliet and rock-ridge extensions.   closes: #489336
   * call dh_icons in binary-post-install.   closes: #486424
   * debian/control:
 - update standards version.
 - update versioned build-dep on debhelper for dh_icons support.
   * debian/patches:
 - 01_blank-speed-selection added, fix warning about not being able to find
   drive speed.
Checksums-Sha1: 
 0c5444c17758d1967a152c846bdccbb75e55c16d 1339 xfburn_0.3.1-1.dsc
 99e759e6e4ad2d7117f2b7f43c9271ec7e0bbcbe 605973 xfburn_0.3.1.orig.tar.gz
 6aa077aff2cfa5d554daafba45a9a4db584da267 1910 xfburn_0.3.1-1.diff.gz
 50df8ddc53f3c24a1c35ebeb45600055222c8069 254090 xfburn_0.3.1-1_amd64.deb
Checksums-Sha256: 
 79d89546bae63c4c54a0a4fa06b856f5948c5a795fad54792fb09d1447183d9f 1339 
xfburn_0.3.1-1.dsc
 94cb39a418f9d7d1f5eaf178a5a83cd662281707fcbbf6b80602030ddf9e8313 605973 
xfburn_0.3.1.orig.tar.gz
 835b995872668daa18d189b06a5494e38120694a817e1198399d732a349ce702 1910 
xfburn_0.3.1-1.diff.gz
 5e3e2305c3bccb1b1ada9d404d81f514f6496d3cbe698ca05d54ef49731cf00c 254090 
xfburn_0.3.1-1_amd64.deb
Files: 
 3f5b9e5ed2e0306c33f12439718124a7 1339 x11 optional xfburn_0.3.1-1.dsc
 dd7fb91e98babfba290708245ab5ce81 605973 x11 optional xfburn_0.3.1.orig.tar.gz
 2bbc420cb4f1f378e543e9ecfbbd1e2e 1910 x11 optional xfburn_0.3.1-1.diff.gz
 61a2a4373c21b73680908dce3a6f5ddd 254090 x11 optional xfburn_0.3.1-1_amd64.deb

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

iEYEARECAAYFAkh2cbwACgkQTUTAIMXAW64dsACgmwgOkMHoq1T6bVemEKJQQuFb
s84AoITcS/iZX9keK4zAXCxecFwGMDDE
=8htB
-END PGP SIGNATURE-


Accepted:
xfburn_0.3.1-1.diff.gz
  to pool/main/x/xfburn/xfburn_0.3.1-1.diff.gz
xfburn_0.3.1-1.dsc
  to pool/main/x/xfburn/xfburn_0.3.1-1.dsc
xfburn_0.3.1-1_amd64.deb
  to pool/main/x/xfburn/xfburn_0.3.1-1_amd64.deb
xfburn_0.3.1.orig.tar.gz
  to pool/main/x/xfburn/xfburn_0.3.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted e2fsprogs 1.41.0-1 (source i386)

2008-07-10 Thread Theodore Y. Ts'o
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 17:25:32 -0400
Source: e2fsprogs
Binary: e2fsck-static libcomerr2 comerr-dev libss2 ss-dev libuuid1 uuid-runtime 
libuuid1-udeb uuid-dev libblkid1 libblkid1-udeb libblkid-dev e2fsprogs-udeb 
e2fslibs e2fslibs-dev e2fsprogs e2fsprogs-dbg uuid-runtime-dbg e2fslibs-dbg 
libcomerr2-dbg libss2-dbg libblkid1-dbg libuuid1-dbg
Architecture: source i386
Version: 1.41.0-1
Distribution: unstable
Urgency: medium
Maintainer: Theodore Y. Ts'o [EMAIL PROTECTED]
Changed-By: Theodore Y. Ts'o [EMAIL PROTECTED]
Description: 
 comerr-dev - common error description library - headers and static libraries
 e2fsck-static - statically-linked version of the ext2 filesystem checker
 e2fslibs   - ext2 filesystem libraries
 e2fslibs-dbg - Debugging information for e2fslibs
 e2fslibs-dev - ext2 filesystem libraries - headers and static libraries
 e2fsprogs  - ext2/ext3/ext4 file system utilities
 e2fsprogs-dbg - Debugging information for e2fsprogs
 e2fsprogs-udeb - stripped-down versions of e2fsprogs, for debian-installer
 libblkid-dev - block device id library - headers and static libraries
 libblkid1  - block device id library
 libblkid1-dbg - Debugging information for libblkid1
 libblkid1-udeb - block device id library
 libcomerr2 - common error description library
 libcomerr2-dbg - Debugging information for libcomerr2
 libss2 - command-line interface parsing library
 libss2-dbg - Debugging information for libss2
 libuuid1   - universally unique id library
 libuuid1-dbg - Debugging information for libuuid1
 libuuid1-udeb - universally unique id library
 ss-dev - command-line interface parsing library - headers and static libra
 uuid-dev   - universally unique id library - headers and static libraries
 uuid-runtime - universally unique id library
 uuid-runtime-dbg - Debugging information for uuid-runtime
Closes: 440981 440983 471977 487849 490003
Changes: 
 e2fsprogs (1.41.0-1) unstable; urgency=medium
 .
   * New upstream version
   * Make e2fsck detect corrupted block group descriptors that would
 cause it to relocate inode tables, causing more damage to the
 filesystem, and make it try the backup superblock/block group
 descriptors first.
   * Fix resize2fs to clean up the resize_inode if all of the reserved
 gdt blocks are consumed during an off-line resize.
   * Enable huge_file, dir_nlink, extra_isize feautres for mke2fs and tune2fs.
   * Enable huge_file, dir_nlink, extra_isize, and uninit_bg by default
 in mke2fs.conf.
   * Fix badblocks terminology in man page and program output.
 (Closes: #440983, #440981)
   * Clarify stripe-width and stride-size in mke2fs man page.  (Closes: #487849)
   * mke2fs: Dumb down filesystems for GNU Hurd (Closes: #471977)
   * Add bash-static to the list of shells recommended for e2fsck-static
 (Closes: #490003)
   * mke2fs: Fix flex_bg metadata default layout to avoid a hole between
 the bitmaps and inode tables.
Checksums-Sha1: 
 558322595a124346c17a34c2047903474e9c42e9 1572 e2fsprogs_1.41.0-1.dsc
 651f14f64838019745173d587e028072a8e46a98 4260246 e2fsprogs_1.41.0.orig.tar.gz
 7246ac27856801ed44421b79ccbfd426cd5a027f 20 e2fsprogs_1.41.0-1.diff.gz
 fa6e65ad3228ce941ccf2b2e0c132b813856a74d 409100 e2fsck-static_1.41.0-1_i386.deb
 67ebed1bbe9e0b8031013b0dc5fb74464212612f 38522 libcomerr2_1.41.0-1_i386.deb
 a533b469e59a2d175d3568c79921a173581455e1 43770 libss2_1.41.0-1_i386.deb
 c7b5728a6a155a1fc6a53bfb9c71ad6dde2349e1 42218 libuuid1_1.41.0-1_i386.deb
 fcb5dbf7a2ecee0a158f88f9bd4191b26835d2b8 45898 uuid-runtime_1.41.0-1_i386.deb
 1332b9f12dd3978bcde36d440cda7ec62326a528 53482 libblkid1_1.41.0-1_i386.deb
 19cd6f92043c2ff1f3f42484b0b508168b218979 23436 libblkid-dev_1.41.0-1_i386.deb
 f34c92f57ddae5c4cb6bfa0d404dd8ba04adf489 124874 e2fslibs_1.41.0-1_i386.deb
 9c23747883658241435b745db597b6994ec87403 167354 e2fslibs-dev_1.41.0-1_i386.deb
 7c7f48aa362f691fa40222c0777612fa771f2a99 707532 e2fsprogs_1.41.0-1_i386.deb
 d340f5032addfbe41801ddf4fced23a3f60e6e83 474200 e2fsprogs-dbg_1.41.0-1_i386.deb
 be29297c2106d646ed2259a7f2e7a6219c7502ec 44194 
uuid-runtime-dbg_1.41.0-1_i386.deb
 f264c0fc9a436930835d10a181593c4de0c0e5a0 223934 e2fslibs-dbg_1.41.0-1_i386.deb
 d568fcc7bb213e50e67c5ae99c1ba0d46bb5eec1 40996 libcomerr2-dbg_1.41.0-1_i386.deb
 3f0106a99befd5037443f232ac6a52f20fcb94e1 50476 libss2-dbg_1.41.0-1_i386.deb
 6ace696739cf9d50c2dfa7573e756b5c0352491e 71308 libblkid1-dbg_1.41.0-1_i386.deb
 8ad71544cfcfc8867b53e7a9893caa26db0151d7 45754 libuuid1-dbg_1.41.0-1_i386.deb
 1bcc5e90e0393ab49ff37e4aecd2adffe3cb2877 41878 comerr-dev_2.1-1.41.0-1_i386.deb
 291f58e66935bd3d30fd817ce84e82d382a6689d 16862 ss-dev_2.0-1.41.0-1_i386.deb
 7c941bd833ddff69b6d6b5b37f7256c0b26bdaea 56612 uuid-dev_1.2-1.41.0-1_i386.deb
 071cd2e81a6ed8ff2720fbeaed65c58d59763d6c 207094 
e2fsprogs-udeb_1.41.0-1_i386.udeb
 9a69e33538c415dde81fe8c920ed3865f4f3a157 17092 
libblkid1-udeb_1.41.0-1_i386.udeb
 

Accepted ecryptfs-utils 50-2 (source i386)

2008-07-10 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 23:48:00 +0200
Source: ecryptfs-utils
Binary: ecryptfs-utils libecryptfs0 libecryptfs-dev
Architecture: source i386
Version: 50-2
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 ecryptfs-utils - ecryptfs cryptographic filesystem (utilities)
 libecryptfs-dev - ecryptfs cryptographic filesystem (development)
 libecryptfs0 - ecryptfs cryptographic filesystem (library)
Closes: 490233
Changes: 
 ecryptfs-utils (50-2) unstable; urgency=low
 .
   * Removing currently unused libgtk2.0-dev from build-depends 
(Closes:#490233).
   * Building ecryptfs-utils with TPM support on all supported Debian
 architectures, except s390.
   * Installing /sbin/mount.ecryptfs_private with suid root.
Checksums-Sha1: 
 67328096d28324b40e684ebdf879a3aae5d570c8 1504 ecryptfs-utils_50-2.dsc
 fe8738a29e4a206c26f9aa2fad25c66d7b4df26e 3963 ecryptfs-utils_50-2.diff.gz
 9b77b3eacced580bf8540da6abc2602639deab3a 60014 ecryptfs-utils_50-2_i386.deb
 d4bfd657d5ddb3db176dcf5ac64512e61acc0e86 62498 libecryptfs0_50-2_i386.deb
 5a4d95ca9eff650901be315abd4537b02439e5d2 44224 libecryptfs-dev_50-2_i386.deb
Checksums-Sha256: 
 cdcebbb2b4b3f74b3b72ff7b3046c2645b5591ac98a613309ad8283a7b4043a8 1504 
ecryptfs-utils_50-2.dsc
 dd1eca5e7b0bbe69f0b5708fd36d04e51706e341c68d9adb1b26278b402183d4 3963 
ecryptfs-utils_50-2.diff.gz
 60dbda3b1f3fd49a3d72e5d68c63d1446dde80fcf44cc8c4023e539943d499c0 60014 
ecryptfs-utils_50-2_i386.deb
 c9df2482e8e8d727555d74ed9a95c91f09a5dc285455f0d1648a5dbcba5969bb 62498 
libecryptfs0_50-2_i386.deb
 afae07b35ac116ebc5f060a26d76dc98afb21e5fc8a2252217a26a4434e2b9ec 44224 
libecryptfs-dev_50-2_i386.deb
Files: 
 7b58544fa235f9835d659739e1acc2a1 1504 misc optional ecryptfs-utils_50-2.dsc
 85028b2312d8ef10f531951109584eb3 3963 misc optional ecryptfs-utils_50-2.diff.gz
 c03defff131a2b583eab84b0c01db37a 60014 misc optional 
ecryptfs-utils_50-2_i386.deb
 7c31968663e568f88c84b54d3a8247b6 62498 libs optional libecryptfs0_50-2_i386.deb
 3d3cd89cc243dacab6bba57ef05f6c26 44224 libdevel optional 
libecryptfs-dev_50-2_i386.deb

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

iEYEARECAAYFAkh2hHcACgkQ+C5cwEsrK57wRgCdGBolEE+SZzinY7q92duQSGjH
JjwAoLn917D8bBq6OHPBdk0nD61aKyJL
=EzR3
-END PGP SIGNATURE-


Accepted:
ecryptfs-utils_50-2.diff.gz
  to pool/main/e/ecryptfs-utils/ecryptfs-utils_50-2.diff.gz
ecryptfs-utils_50-2.dsc
  to pool/main/e/ecryptfs-utils/ecryptfs-utils_50-2.dsc
ecryptfs-utils_50-2_i386.deb
  to pool/main/e/ecryptfs-utils/ecryptfs-utils_50-2_i386.deb
libecryptfs-dev_50-2_i386.deb
  to pool/main/e/ecryptfs-utils/libecryptfs-dev_50-2_i386.deb
libecryptfs0_50-2_i386.deb
  to pool/main/e/ecryptfs-utils/libecryptfs0_50-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted open-vm-tools 2008.07.01-102166-3 (source i386 all)

2008-07-10 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 23:24:00 +0200
Source: open-vm-tools
Binary: open-vm-tools open-vm-toolbox open-vm-tools-dbg open-vm-source
Architecture: source i386 all
Version: 2008.07.01-102166-3
Distribution: unstable
Urgency: medium
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 open-vm-source - Source for VMware guest systems driver
 open-vm-toolbox - tools and components for VMware guest systems (GUI tools)
 open-vm-tools - tools and components for VMware guest systems (CLI tools)
 open-vm-tools-dbg - tools and components for VMware guest systems (debug)
Changes: 
 open-vm-tools (2008.07.01-102166-3) unstable; urgency=medium
 .
   * Replacing /lib64 with /lib in /etc/pam.d/vmware-guestd-x64.
   * Fixing FTBFS on amd64 by renaming /etc/pam.d/vmware-guestd-x64 to
 /etc/pam.d/vmware-guestd.
Checksums-Sha1: 
 99e1a07e8bd797f75e4875dc8efad8f97e885d28 1430 
open-vm-tools_2008.07.01-102166-3.dsc
 e39b90b56deb312c0abaf3c9a0e895465423a7b8 14842 
open-vm-tools_2008.07.01-102166-3.diff.gz
 e4be992a38a6b52d02e1bebfd4717b65ec9782f2 375388 
open-vm-tools_2008.07.01-102166-3_i386.deb
 790d9fa93be7fd1cbb9190da5f520bb12ece10c5 301008 
open-vm-toolbox_2008.07.01-102166-3_i386.deb
 4d9b60f664d05da53c51546ffe0a36399e434163 1469898 
open-vm-tools-dbg_2008.07.01-102166-3_i386.deb
 2fbe2c1058a605219494f093f731c2ab5d1ad5ac 449238 
open-vm-source_2008.07.01-102166-3_all.deb
Checksums-Sha256: 
 22e4f3f86d70152265c62eb30e72407fd9f8623b04a049a15c8919fe08bf16b2 1430 
open-vm-tools_2008.07.01-102166-3.dsc
 bfb93ae6c301506a600219243728b7f9df0cd34f40b50c1f84e5aa518d9853d9 14842 
open-vm-tools_2008.07.01-102166-3.diff.gz
 ebcb37252dbe2a90740082022c648d49c1681b409fe0b5c5feee6f7df3812371 375388 
open-vm-tools_2008.07.01-102166-3_i386.deb
 613ef545ed539096269b9a612b48f8b0080cc02cfda2164530b01ca7a413f892 301008 
open-vm-toolbox_2008.07.01-102166-3_i386.deb
 f41d09aa74991ae67936785eddbe5d3d5b6e1c2f26005e775a5ba473616ff6b1 1469898 
open-vm-tools-dbg_2008.07.01-102166-3_i386.deb
 6738334ff25f74dcf217906a27d9f67fc9c73ccb335915ec624360f3c3b8eb83 449238 
open-vm-source_2008.07.01-102166-3_all.deb
Files: 
 81e1e0400f6cb0324cdfd4c513123842 1430 contrib/admin extra 
open-vm-tools_2008.07.01-102166-3.dsc
 6023eaf1e3ab416d60763401266ec0c5 14842 contrib/admin extra 
open-vm-tools_2008.07.01-102166-3.diff.gz
 f53fa0054cf884d7b266fab1ca6998b7 375388 contrib/admin extra 
open-vm-tools_2008.07.01-102166-3_i386.deb
 b38053fab75a99ebe760d4a636173f8f 301008 contrib/admin extra 
open-vm-toolbox_2008.07.01-102166-3_i386.deb
 ca99964eee4e75b4884335db1a195ece 1469898 contrib/devel extra 
open-vm-tools-dbg_2008.07.01-102166-3_i386.deb
 1b8743030d83d780e95672aaf4f4c087 449238 contrib/admin extra 
open-vm-source_2008.07.01-102166-3_all.deb

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

iEYEARECAAYFAkh2f7UACgkQ+C5cwEsrK54yawCgjIkPV7YA5914oxfCZNpp0pKY
al4An2pOmMkqqX2ySqM8f4bsuI/nZ1yp
=BZ+o
-END PGP SIGNATURE-


Accepted:
open-vm-source_2008.07.01-102166-3_all.deb
  to pool/contrib/o/open-vm-tools/open-vm-source_2008.07.01-102166-3_all.deb
open-vm-toolbox_2008.07.01-102166-3_i386.deb
  to pool/contrib/o/open-vm-tools/open-vm-toolbox_2008.07.01-102166-3_i386.deb
open-vm-tools-dbg_2008.07.01-102166-3_i386.deb
  to pool/contrib/o/open-vm-tools/open-vm-tools-dbg_2008.07.01-102166-3_i386.deb
open-vm-tools_2008.07.01-102166-3.diff.gz
  to pool/contrib/o/open-vm-tools/open-vm-tools_2008.07.01-102166-3.diff.gz
open-vm-tools_2008.07.01-102166-3.dsc
  to pool/contrib/o/open-vm-tools/open-vm-tools_2008.07.01-102166-3.dsc
open-vm-tools_2008.07.01-102166-3_i386.deb
  to pool/contrib/o/open-vm-tools/open-vm-tools_2008.07.01-102166-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted mysql-ruby 2.8~pre4-2 (source all i386)

2008-07-10 Thread Dmitry Borodaenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 08 Jul 2008 14:35:10 +0300
Source: mysql-ruby
Binary: libmysql-ruby libmysql-ruby1.8 libmysql-ruby1.9
Architecture: source all i386
Version: 2.8~pre4-2
Distribution: experimental
Urgency: low
Maintainer: Dmitry Borodaenko [EMAIL PROTECTED]
Changed-By: Dmitry Borodaenko [EMAIL PROTECTED]
Description: 
 libmysql-ruby - MySQL module for Ruby
 libmysql-ruby1.8 - MySQL module for Ruby 1.8
 libmysql-ruby1.9 - MySQL module for Ruby 1.9
Closes: 489744
Changes: 
 mysql-ruby (2.8~pre4-2) experimental; urgency=low
 .
   * Add build-depends on ruby1.9 and ruby1.9-dev (Closes: #489744).
Checksums-Sha1: 
 a17b3a69b20d8e77c8b227bee3b990f45f61bca2 1134 mysql-ruby_2.8~pre4-2.dsc
 6eb1659e3e046d7ac2618f80884be5e9c4ce703a 4865 mysql-ruby_2.8~pre4-2.diff.gz
 011ec449d15ea1bd6fe98da55aa365be8c6dbb66 5200 libmysql-ruby_2.8~pre4-2_all.deb
 7fddef410517a3bb8ad359e6593f782d04e3bc4d 52572 
libmysql-ruby1.8_2.8~pre4-2_i386.deb
 8f7cae5c4682284d205d527ea1908cff4205aa25 51844 
libmysql-ruby1.9_2.8~pre4-2_i386.deb
Checksums-Sha256: 
 2c6a4a4863f5690d32ba97da75ec4277f863c1a3d3238b84f3b1ffa23c1049ef 1134 
mysql-ruby_2.8~pre4-2.dsc
 6a8b65c600da1c7e318ee10bb9a0a4d4b13e0a7d3b66169871ff9e4ffd10752e 4865 
mysql-ruby_2.8~pre4-2.diff.gz
 4c79fc5308532db6eae2f1832b9ed1c39c9eb0c23525aeae7bf60083201d28ef 5200 
libmysql-ruby_2.8~pre4-2_all.deb
 4a1c525d26d306ed44606bbe5c1147dfd27d97690d8f52fdb5f8b9694afc6def 52572 
libmysql-ruby1.8_2.8~pre4-2_i386.deb
 e0bf7acc0c96c4d426ee3c00f9787aeaebe15d9b2191880cf60a9937cd9121c1 51844 
libmysql-ruby1.9_2.8~pre4-2_i386.deb
Files: 
 fd206aac13db7cd37f957a473900087c 1134 interpreters optional 
mysql-ruby_2.8~pre4-2.dsc
 4167a122e44a58e9301144c0a7407951 4865 interpreters optional 
mysql-ruby_2.8~pre4-2.diff.gz
 ccdbdea548c959d4c648af98e5c53879 5200 interpreters optional 
libmysql-ruby_2.8~pre4-2_all.deb
 c91576251138e935fdad4ecc6b02df1c 52572 interpreters optional 
libmysql-ruby1.8_2.8~pre4-2_i386.deb
 68371ad6bfdba9d37175d673b6d7afaf 51844 interpreters optional 
libmysql-ruby1.9_2.8~pre4-2_i386.deb

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

iEYEARECAAYFAkhzUcQACgkQxhqJXoXuPg4F0ACgykMaiTiRCafaEJKdnlBEtCt4
OyAAniyLpaIXLQ11crfep31E69lDR7Bl
=uhZO
-END PGP SIGNATURE-


Accepted:
libmysql-ruby1.8_2.8~pre4-2_i386.deb
  to pool/main/m/mysql-ruby/libmysql-ruby1.8_2.8~pre4-2_i386.deb
libmysql-ruby1.9_2.8~pre4-2_i386.deb
  to pool/main/m/mysql-ruby/libmysql-ruby1.9_2.8~pre4-2_i386.deb
libmysql-ruby_2.8~pre4-2_all.deb
  to pool/main/m/mysql-ruby/libmysql-ruby_2.8~pre4-2_all.deb
mysql-ruby_2.8~pre4-2.diff.gz
  to pool/main/m/mysql-ruby/mysql-ruby_2.8~pre4-2.diff.gz
mysql-ruby_2.8~pre4-2.dsc
  to pool/main/m/mysql-ruby/mysql-ruby_2.8~pre4-2.dsc


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted anyremote 4.6-1 (source amd64)

2008-07-10 Thread Juan Angulo Moreno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 16 Jun 2008 09:34:38 -0400
Source: anyremote
Binary: anyremote
Architecture: source amd64
Version: 4.6-1
Distribution: unstable
Urgency: low
Maintainer: Juan Angulo Moreno [EMAIL PROTECTED]
Changed-By: Juan Angulo Moreno [EMAIL PROTECTED]
Description: 
 anyremote  - Remote control service Bluetooth, IrDA, Wi-Fi connection
Closes: 471119
Changes: 
 anyremote (4.6-1) unstable; urgency=low
 .
   * New upstream release.
   * Fixed documentation path (Closes: #471119).
   * [debian/README.Debian]: minor changes.
   * Bumped Standards-Version to 3.8.0. No changes to package necessary.
Checksums-Sha1: 
 c0499649386dfe4f14910fa6385ddf7b6b22868c 1052 anyremote_4.6-1.dsc
 6572378cc44dcb773d8fba25577447fd9db510a5 1285878 anyremote_4.6.orig.tar.gz
 4d14098e2cc4612638c807d3ccead237b25157e8 2440 anyremote_4.6-1.diff.gz
 b80850ef462c889abd46d81ea802a7e668f0b911 791888 anyremote_4.6-1_amd64.deb
Checksums-Sha256: 
 25920aa98147335a72c6d827eaeabd54ce30e62c0b10194c8de3294da1917cc9 1052 
anyremote_4.6-1.dsc
 6d9f920151620cfcb48d8795faca0d68ac6edf5b21044ee7ef79bbb9102bd8aa 1285878 
anyremote_4.6.orig.tar.gz
 c208e8720ae623553f908c1eea3dc9cde42f02a094dd5294e27b7a53e1748c2c 2440 
anyremote_4.6-1.diff.gz
 41784cb547cd18f589aa56636facd594fb15ecd2b16635b4e9d46613fa71020e 791888 
anyremote_4.6-1_amd64.deb
Files: 
 a0135db20d5d08b75aeec68f8469a326 1052 utils extra anyremote_4.6-1.dsc
 7a98a9210d2e7cf9a6f8324470454e41 1285878 utils extra anyremote_4.6.orig.tar.gz
 e76239dfdfe0354fdb49d532ae948807 2440 utils extra anyremote_4.6-1.diff.gz
 6983081b684fcee40c3a97d469a36701 791888 utils extra anyremote_4.6-1_amd64.deb

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

iEYEARECAAYFAkh2htcACgkQBnqtBMk7/3ml3wCcCqXAP8vYH16cv7dUrMj7lBsm
sLoAoLJLtsMfR3d7eSXmMBwsiruuAvst
=25ET
-END PGP SIGNATURE-


Accepted:
anyremote_4.6-1.diff.gz
  to pool/main/a/anyremote/anyremote_4.6-1.diff.gz
anyremote_4.6-1.dsc
  to pool/main/a/anyremote/anyremote_4.6-1.dsc
anyremote_4.6-1_amd64.deb
  to pool/main/a/anyremote/anyremote_4.6-1_amd64.deb
anyremote_4.6.orig.tar.gz
  to pool/main/a/anyremote/anyremote_4.6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted lynkeos.app 1.2-3 (source i386)

2008-07-10 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 09 Jul 2008 19:07:22 +0300
Source: lynkeos.app
Binary: lynkeos.app
Architecture: source i386
Version: 1.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers [EMAIL PROTECTED]
Changed-By: Yavor Doganov [EMAIL PROTECTED]
Description: 
 lynkeos.app - Tool to process planetary astronomical images for GNUstep
Closes: 455771 489845
Changes: 
 lynkeos.app (1.2-3) unstable; urgency=low
 .
   * debian/patches/05_ffmpeg_build_fix.dpatch: Remove lots of useless
 libraries from ADDITIONAL_OBJC_LIBS.  This fixes FTBFS (Closes:
 #489845) and maybe will make the Ubuntu maintainer's life easier
 (Closes: #455771).
   * debian/control (Build-Depends): Wrap them and bump libgnustep-gui-dev
 to = 0.14.
 (Standards-Version): Set to 3.8.0; no changes required.
   * debian/rules: Use default and automatic variables where possible.
 (ADDITIONAL_OBJCFLAGS): Rename as...
 (OPTFLAG): ...as it is used only for the optimization flag.
Checksums-Sha1: 
 82eecf4ca1a2770b4682761329ac1739304734ec 1214 lynkeos.app_1.2-3.dsc
 90e7bd734677ef8fa3bc695478f47e536f59a59a 7815 lynkeos.app_1.2-3.diff.gz
 74b87d55c617a6a5d98c49ec769a9a01a2eefa3c 120698 lynkeos.app_1.2-3_i386.deb
Checksums-Sha256: 
 1bc9a40ae7e4857cd66f5901d9acffa3672a66ea7ba72efe14755354296bfcea 1214 
lynkeos.app_1.2-3.dsc
 e5885de784f0eb7718dfaf3b21dc35f6d64901b8271d376b165c391ff6b491cd 7815 
lynkeos.app_1.2-3.diff.gz
 6c31b694553a1ed9c0fb667d7568e889c80de5083920d1902b649f4fb79a9d10 120698 
lynkeos.app_1.2-3_i386.deb
Files: 
 365a43bda60a3a495b94e6260d0675e6 1214 science optional lynkeos.app_1.2-3.dsc
 effa4f7419aa8457cff8b815e4676115 7815 science optional 
lynkeos.app_1.2-3.diff.gz
 c94e3d6251d86b7657a7e49c2d7dca48 120698 science optional 
lynkeos.app_1.2-3_i386.deb

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

iD8DBQFIdonCrynHGRJLYfoRA2gtAJ930HJr4gi6Oi8jpWyHKKaKZeL8/QCggD5y
HxiHFZlrcfElM0fxFZQUlKs=
=b7Qy
-END PGP SIGNATURE-


Accepted:
lynkeos.app_1.2-3.diff.gz
  to pool/main/l/lynkeos.app/lynkeos.app_1.2-3.diff.gz
lynkeos.app_1.2-3.dsc
  to pool/main/l/lynkeos.app/lynkeos.app_1.2-3.dsc
lynkeos.app_1.2-3_i386.deb
  to pool/main/l/lynkeos.app/lynkeos.app_1.2-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted lusernet.app 0.4.2-4 (source i386)

2008-07-10 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 09 Jul 2008 20:20:58 +0300
Source: lusernet.app
Binary: lusernet.app
Architecture: source i386
Version: 0.4.2-4
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers [EMAIL PROTECTED]
Changed-By: Yavor Doganov [EMAIL PROTECTED]
Description: 
 lusernet.app - News Reader for GNUstep
Closes: 454274 489696 489879
Changes: 
 lusernet.app (0.4.2-4) unstable; urgency=low
 .
   * debian/control (Section): Set to `news' to match the override file.
 (Maintainer): Adopt package; set to the GNUstep team (Closes:
 #454274).
 (Uploaders): Change my email address.
 (Build-Depends): Wrap all dependencies and bump libgnustep-gui-dev to
 = 0.14.
 (Standards-Version): Package is compliant to 3.8.0 (no changes
 needed).
 (Conflicts, Replaces): Remove; not needed for the upgrade from Etch.
   * debian/rules: Do not indent the make conditional.
 (d_app): Define for convenience.
 (LDFLAGS): Define to -Wl,-z,defs -Wl,--as-needed.
 (build-stamp): Use gs_make and LDFLAGS.  Pass ADDITIONAL_OBJCFLAGS
 instead of OBJCFLAGS to make `noopt' DTRT.
 (clean): Likewise.  Move the commands to the `clean-patched' rule and
 reorder the prerequisites.
 (install): Use $(d_app) for DESTDIR and use gs_make directly.
 (binary-arch): Adjust the conditional to check for GS_USE_FHS.
   * debian/patches/07_missing-includes.dpatch: New, fixes FTBFS with the
 current core libraries (Closes: #489696).
   * debian/patches/05_pantomime1.2.dpach: Make viewing and posting
 articles work again following changes in the Pantomime decoding
 engine; previous NSString instances are always NSData instances now.
 (Closes: #489879).
   * debian/patches/00list: Update.
Checksums-Sha1: 
 b7e5d3d86b079a05b6cb646e467b2c517359fdbe 1208 lusernet.app_0.4.2-4.dsc
 76b52480a6fcf212d2334ca0a029c2989e5ae5ee 15595 lusernet.app_0.4.2-4.diff.gz
 607bfd6c7cb5e6e7dab24dea8910c01c9de6b257 144180 lusernet.app_0.4.2-4_i386.deb
Checksums-Sha256: 
 84504e9bccd20ce2f3592d9abd943a8f95300aa58813a8602c5e2bfd3441d6b8 1208 
lusernet.app_0.4.2-4.dsc
 b7e8cf48919d8c056b4b60deefcb2cea02708c2ce6738324be802bbf36b04d4f 15595 
lusernet.app_0.4.2-4.diff.gz
 a01c45fccafb3a352bcf95fb2becb43fa374f067e6478f2c1f210ce6685663c9 144180 
lusernet.app_0.4.2-4_i386.deb
Files: 
 6cb21ed3751aeceb775c881d41299dc0 1208 news optional lusernet.app_0.4.2-4.dsc
 fcb0ebbf513cf68bfc041ae286b391be 15595 news optional 
lusernet.app_0.4.2-4.diff.gz
 8365220277f50ad0a257330949835130 144180 news optional 
lusernet.app_0.4.2-4_i386.deb

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

iD8DBQFIdorlrynHGRJLYfoRA2GTAJ4nUZ72fRQ0MMZwyHG0Sdiamj4VVQCdGeqr
SR3nGShn3nfXRiyeaeuasPM=
=/6Eo
-END PGP SIGNATURE-


Accepted:
lusernet.app_0.4.2-4.diff.gz
  to pool/main/l/lusernet.app/lusernet.app_0.4.2-4.diff.gz
lusernet.app_0.4.2-4.dsc
  to pool/main/l/lusernet.app/lusernet.app_0.4.2-4.dsc
lusernet.app_0.4.2-4_i386.deb
  to pool/main/l/lusernet.app/lusernet.app_0.4.2-4_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted gtkpod 0.99.12-3 (source i386)

2008-07-10 Thread Frank Lichtenheld
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 23:45:04 +0200
Source: gtkpod
Binary: gtkpod
Architecture: source i386
Version: 0.99.12-3
Distribution: unstable
Urgency: low
Maintainer: gtkpod Maintainers [EMAIL PROTECTED]
Changed-By: Frank Lichtenheld [EMAIL PROTECTED]
Description: 
 gtkpod - manage songs and playlists on an Apple iPod
Closes: 489605
Changes: 
 gtkpod (0.99.12-3) unstable; urgency=low
 .
   * Add 20_scripts_bashisms. This fixes bashisms in
 the helper scripts or at least makes them explicetly
 bash scripts. Reported by Raphael Geissert. (Closes: #489605)
   * Remove the obsolete Suggest on recode, all scripts use
 iconv nowadays.
   * Add some new Recommends/Suggests for the convert-* scripts.
 Addresses at least part of LP #193722
   * Update copyright file.
Checksums-Sha1: 
 87ef2ea4c0ecc3de8daf24a9b3bc399ae1f06da1 1447 gtkpod_0.99.12-3.dsc
 8c12461bcc578f2e996ca2cda69c447e6d572205 13059 gtkpod_0.99.12-3.diff.gz
 5a94edf4eca41b6cc8e06178b4c3a7c8e53328ac 848106 gtkpod_0.99.12-3_i386.deb
Checksums-Sha256: 
 ea523e7eda7657ede5ccfa251f5a971911a9930f47cbbb0dd4e70d19577e7ddf 1447 
gtkpod_0.99.12-3.dsc
 80d90919f25df4e51a08fee58e7f2201e57f8cfe052924d4bbd122739333fc9c 13059 
gtkpod_0.99.12-3.diff.gz
 4704ded41ab1b9535474ba3e133f33506412cb6ab378efff23ebd910d8f0f3cc 848106 
gtkpod_0.99.12-3_i386.deb
Files: 
 8d2edbc365cfab44e8284a2da8cd16ea 1447 sound extra gtkpod_0.99.12-3.dsc
 fef8500102a01453022725327fe15f3e 13059 sound extra gtkpod_0.99.12-3.diff.gz
 e03f7d25564eddb9076acc395f2c4eb0 848106 sound extra gtkpod_0.99.12-3_i386.deb

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

iEYEARECAAYFAkh2hrUACgkQQbn06FtxPfAsKgCgnw6FCfu6nWbSoZysE0MA+i1w
ADgAn2R4d4CEd2PGPisoAmxFO5HeUX6d
=sj1M
-END PGP SIGNATURE-


Accepted:
gtkpod_0.99.12-3.diff.gz
  to pool/main/g/gtkpod/gtkpod_0.99.12-3.diff.gz
gtkpod_0.99.12-3.dsc
  to pool/main/g/gtkpod/gtkpod_0.99.12-3.dsc
gtkpod_0.99.12-3_i386.deb
  to pool/main/g/gtkpod/gtkpod_0.99.12-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted mpdcon.app 1.1.99-4 (source i386)

2008-07-10 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 09 Jul 2008 23:02:14 +0300
Source: mpdcon.app
Binary: mpdcon.app
Architecture: source i386
Version: 1.1.99-4
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers [EMAIL PROTECTED]
Changed-By: Yavor Doganov [EMAIL PROTECTED]
Description: 
 mpdcon.app - MPD controller for GNUstep
Closes: 490087
Changes: 
 mpdcon.app (1.1.99-4) unstable; urgency=low
 .
   * debian/control (Build-Depends): Wrap them and bump libgnustep-gui-dev
 to = 0.14 to ensure it gets built against the proper libs for m68k,
 hurd-i386 and kfreebsd-*.
 (Standards-Version): Claim compliance with 3.8.0 (no changes needed).
   * debian/rules (build-stamp): Use gs_make.
 (install): Define GNUSTEP_INSTALLATION_DIR to the empty string to
 override the value in upstream's makefile, hopefully preventing FTBFS
 on amd64 and s390 (Closes: #490087).
 (binary-arch): Invoke dh_desktop (fixes a lintian warning, although
 does nothing in practice).
Checksums-Sha1: 
 d3adf7133be5134c8dd6d55e11e6bbd05d59d041 1093 mpdcon.app_1.1.99-4.dsc
 7c693bd792b1b68551ee7788c52e8589270e6443 4355 mpdcon.app_1.1.99-4.diff.gz
 35f029dbb6ee7fb8627852abe5bb07cad9a5c1cc 84762 mpdcon.app_1.1.99-4_i386.deb
Checksums-Sha256: 
 d6054639bb5c818355c6df91be0057fd2c74cdce1445b70b9424704f68524dba 1093 
mpdcon.app_1.1.99-4.dsc
 f7ea87a61e266756cccab7d8339580764e1c9d4258f293d3f569f63a804e7fd6 4355 
mpdcon.app_1.1.99-4.diff.gz
 a3c6c314a30c38aa1f0de620d55b281c35aa9b6dd472c446e4f1d683a0d2912c 84762 
mpdcon.app_1.1.99-4_i386.deb
Files: 
 8e1122d47eed681dc4b07a12169352d3 1093 sound optional mpdcon.app_1.1.99-4.dsc
 01288f4e2232f63bdfb1f3e35f4fbfb8 4355 sound optional 
mpdcon.app_1.1.99-4.diff.gz
 421334d851831dae3d20d30160aedad2 84762 sound optional 
mpdcon.app_1.1.99-4_i386.deb

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

iD8DBQFIdorurynHGRJLYfoRA1k4AJ0UXytJYI6cY8kXaO87qMGpG63K4QCbB5Pt
Uc9J0bCfHoocZeRyOf7XkYA=
=tbXD
-END PGP SIGNATURE-


Accepted:
mpdcon.app_1.1.99-4.diff.gz
  to pool/main/m/mpdcon.app/mpdcon.app_1.1.99-4.diff.gz
mpdcon.app_1.1.99-4.dsc
  to pool/main/m/mpdcon.app/mpdcon.app_1.1.99-4.dsc
mpdcon.app_1.1.99-4_i386.deb
  to pool/main/m/mpdcon.app/mpdcon.app_1.1.99-4_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted syslinux 2:3.70+dfsg-2 (source i386)

2008-07-10 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Jul 2008 00:15:00 +0200
Source: syslinux
Binary: syslinux
Architecture: source i386
Version: 2:3.70+dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 syslinux   - Kernel loader which uses a FAT, ext2/3 or iso9660 filesystem or P
Closes: 484513
Changes: 
 syslinux (2:3.70+dfsg-2) unstable; urgency=low
 .
   * Stopping to build win32/syslinux.exe as it is of no real use on a Debian
 system. People interested in that very binary can get it from the upstream
 source tarball.
   * Updating package description (Closes: #484513).
Checksums-Sha1: 
 cc164ef6caf125a997a4415b4873a8a533be00eb 1269 syslinux_3.70+dfsg-2.dsc
 feb5f9c162b50870e30b8617b09933e4fdecde23 11659 syslinux_3.70+dfsg-2.diff.gz
 6d4065bc2b8a1959aa43ac218e1ec082f0350432 492510 syslinux_3.70+dfsg-2_i386.deb
Checksums-Sha256: 
 56cb1bf3bac2793ff28bf22c3fa6fc95d3535a62a4e486b2dcb0a9629cc74fdf 1269 
syslinux_3.70+dfsg-2.dsc
 7c824b86979402f2f2ca7ec3bfc51074acadee54a1a87967dc6f9c2c911e610b 11659 
syslinux_3.70+dfsg-2.diff.gz
 121100401bc11695392a8eebc33134ec8b6347deeda44a1782d42fb503007264 492510 
syslinux_3.70+dfsg-2_i386.deb
Files: 
 58758b1724f9aab7aaf4bec559bca1b5 1269 utils optional syslinux_3.70+dfsg-2.dsc
 caff0efffd5e423147f20f220ccce834 11659 utils optional 
syslinux_3.70+dfsg-2.diff.gz
 d07f6671b6337bded860a747a8402d48 492510 utils optional 
syslinux_3.70+dfsg-2_i386.deb

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

iEYEARECAAYFAkh2iuIACgkQ+C5cwEsrK56WhACcDgAoaFgANMQsC2riOefISRTZ
3HAAnjgiwqNzK9fawY6eNc7mcZUDTDzD
=m7q3
-END PGP SIGNATURE-


Accepted:
syslinux_3.70+dfsg-2.diff.gz
  to pool/main/s/syslinux/syslinux_3.70+dfsg-2.diff.gz
syslinux_3.70+dfsg-2.dsc
  to pool/main/s/syslinux/syslinux_3.70+dfsg-2.dsc
syslinux_3.70+dfsg-2_i386.deb
  to pool/main/s/syslinux/syslinux_3.70+dfsg-2_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted linux-modules-contrib-2.6 2.6.25-3 (source i386)

2008-07-10 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 23:54:00 +0200
Source: linux-modules-contrib-2.6
Binary: em8300-modules-2.6.25-2-alpha-generic em8300-modules-2.6-alpha-generic 
rt73-modules-2.6.25-2-alpha-generic rt73-modules-2.6-alpha-generic 
em8300-modules-2.6.25-2-alpha-smp em8300-modules-2.6-alpha-smp 
rt73-modules-2.6.25-2-alpha-smp rt73-modules-2.6-alpha-smp 
em8300-modules-2.6.25-2-alpha-legacy em8300-modules-2.6-alpha-legacy 
rt73-modules-2.6.25-2-alpha-legacy rt73-modules-2.6-alpha-legacy 
em8300-modules-2.6.25-2-amd64 em8300-modules-2.6-amd64 
rt73-modules-2.6.25-2-amd64 rt73-modules-2.6-amd64 
em8300-modules-2.6.25-2-vserver-amd64 em8300-modules-2.6-vserver-amd64 
rt73-modules-2.6.25-2-vserver-amd64 rt73-modules-2.6-vserver-amd64 
em8300-modules-2.6.25-2-footbridge em8300-modules-2.6-footbridge 
rt73-modules-2.6.25-2-footbridge rt73-modules-2.6-footbridge 
em8300-modules-2.6.25-2-iop32x em8300-modules-2.6-iop32x 
rt73-modules-2.6.25-2-iop32x rt73-modules-2.6-iop32x 
em8300-modules-2.6.25-2-ixp4xx em8300-modules-2.6-ixp4xx 
rt73-modules-2.6.25-2-ixp4xx rt73-modules-2.6-ixp4xx 
em8300-modules-2.6.25-2-orion5x em8300-modules-2.6-orion5x 
rt73-modules-2.6.25-2-orion5x rt73-modules-2.6-orion5x 
rt73-modules-2.6.25-2-versatile rt73-modules-2.6-versatile 
rt73-modules-2.6.25-2-parisc rt73-modules-2.6-parisc 
rt73-modules-2.6.25-2-parisc-smp rt73-modules-2.6-parisc-smp 
rt73-modules-2.6.25-2-parisc64 rt73-modules-2.6-parisc64 
rt73-modules-2.6.25-2-parisc64-smp rt73-modules-2.6-parisc64-smp 
em8300-modules-2.6.25-2-486 em8300-modules-2.6-486 rt73-modules-2.6.25-2-486 
rt73-modules-2.6-486 em8300-modules-2.6.25-2-686 em8300-modules-2.6-686 
rt73-modules-2.6.25-2-686 rt73-modules-2.6-686 
em8300-modules-2.6.25-2-686-bigmem em8300-modules-2.6-686-bigmem 
rt73-modules-2.6.25-2-686-bigmem rt73-modules-2.6-686-bigmem 
em8300-modules-2.6.25-2-vserver-686 em8300-modules-2.6-vserver-686 
rt73-modules-2.6.25-2-vserver-686 rt73-modules-2.6-vserver-686 
rt73-modules-2.6.25-2-xen-686 rt73-modules-2.6-xen-686 
em8300-modules-2.6.25-2-itanium em8300-modules-2.6-itanium 
rt73-modules-2.6.25-2-itanium rt73-modules-2.6-itanium 
em8300-modules-2.6.25-2-mckinley em8300-modules-2.6-mckinley 
rt73-modules-2.6.25-2-mckinley rt73-modules-2.6-mckinley 
em8300-modules-2.6.25-2-amiga em8300-modules-2.6-amiga 
rt73-modules-2.6.25-2-amiga rt73-modules-2.6-amiga 
em8300-modules-2.6.25-2-atari em8300-modules-2.6-atari 
rt73-modules-2.6.25-2-atari rt73-modules-2.6-atari 
em8300-modules-2.6.25-2-bvme6000 em8300-modules-2.6-bvme6000 
rt73-modules-2.6.25-2-bvme6000 rt73-modules-2.6-bvme6000 
em8300-modules-2.6.25-2-mac em8300-modules-2.6-mac rt73-modules-2.6.25-2-mac 
rt73-modules-2.6-mac em8300-modules-2.6.25-2-mvme147 em8300-modules-2.6-mvme147 
rt73-modules-2.6.25-2-mvme147 rt73-modules-2.6-mvme147 
em8300-modules-2.6.25-2-mvme16x em8300-modules-2.6-mvme16x 
rt73-modules-2.6.25-2-mvme16x rt73-modules-2.6-mvme16x 
em8300-modules-2.6.25-2-r4k-ip22 em8300-modules-2.6-r4k-ip22 
rt73-modules-2.6.25-2-r4k-ip22 rt73-modules-2.6-r4k-ip22 
em8300-modules-2.6.25-2-r5k-ip32 em8300-modules-2.6-r5k-ip32 
rt73-modules-2.6.25-2-r5k-ip32 rt73-modules-2.6-r5k-ip32 
em8300-modules-2.6.25-2-sb1-bcm91250a em8300-modules-2.6-sb1-bcm91250a 
rt73-modules-2.6.25-2-sb1-bcm91250a rt73-modules-2.6-sb1-bcm91250a 
em8300-modules-2.6.25-2-sb1a-bcm91480b em8300-modules-2.6-sb1a-bcm91480b 
rt73-modules-2.6.25-2-sb1a-bcm91480b rt73-modules-2.6-sb1a-bcm91480b 
em8300-modules-2.6.25-2-4kc-malta em8300-modules-2.6-4kc-malta 
rt73-modules-2.6.25-2-4kc-malta rt73-modules-2.6-4kc-malta 
em8300-modules-2.6.25-2-5kc-malta em8300-modules-2.6-5kc-malta 
rt73-modules-2.6.25-2-5kc-malta rt73-modules-2.6-5kc-malta 
rt73-modules-2.6.25-2-r5k-cobalt rt73-modules-2.6-r5k-cobalt 
em8300-modules-2.6.25-2-powerpc em8300-modules-2.6-powerpc 
rt73-modules-2.6.25-2-powerpc rt73-modules-2.6-powerpc 
em8300-modules-2.6.25-2-powerpc-smp em8300-modules-2.6-powerpc-smp 
rt73-modules-2.6.25-2-powerpc-smp rt73-modules-2.6-powerpc-smp 
em8300-modules-2.6.25-2-powerpc-miboot em8300-modules-2.6-powerpc-miboot 
rt73-modules-2.6.25-2-powerpc-miboot rt73-modules-2.6-powerpc-miboot 
em8300-modules-2.6.25-2-powerpc64 em8300-modules-2.6-powerpc64 
rt73-modules-2.6.25-2-powerpc64 rt73-modules-2.6-powerpc64 
em8300-modules-2.6.25-2-vserver-powerpc em8300-modules-2.6-vserver-powerpc 
rt73-modules-2.6.25-2-vserver-powerpc rt73-modules-2.6-vserver-powerpc 
em8300-modules-2.6.25-2-vserver-powerpc64 em8300-modules-2.6-vserver-powerpc64 
rt73-modules-2.6.25-2-vserver-powerpc64 rt73-modules-2.6-vserver-powerpc64 
em8300-modules-2.6.25-2-s390 em8300-modules-2.6-s390 rt73-modules-2.6.25-2-s390 
rt73-modules-2.6-s390 em8300-modules-2.6.25-2-s390x em8300-modules-2.6-s390x 
rt73-modules-2.6.25-2-s390x rt73-modules-2.6-s390x 
em8300-modules-2.6.25-2-sparc64 em8300-modules-2.6-sparc64 
rt73-modules-2.6.25-2-sparc64 rt73-modules-2.6-sparc64 
em8300-modules-2.6.25-2-sparc64-smp 

Accepted myspell.pt 20080705-1 (source all)

2008-07-10 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Jul 2008 00:51:24 +0200
Source: myspell.pt
Binary: myspell-pt-pt myspell-pt
Architecture: source all
Version: 20080705-1
Distribution: unstable
Urgency: low
Maintainer: Rafael Laboissiere [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 myspell-pt - Portuguese dictionaries for myspell
 myspell-pt-pt - European Portuguese dictionary for myspell
Changes: 
 myspell.pt (20080705-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 d83b1dc344d3b98add8f38be37ec69cb40d2eb51 1269 myspell.pt_20080705-1.dsc
 70ffcf3539da31d5246cbcef641d7cecfe7fb1bc 174349 myspell.pt_20080705.orig.tar.gz
 f51a9423eb464a2bc667db4f9383920ce87067d0 3042 myspell.pt_20080705-1.diff.gz
 57336aa0d604fbb90414a96f90abd751fe1ec9ad 157920 
myspell-pt-pt_20080705-1_all.deb
 cd655d3be287dcb56dc5c0e8609f8d42443e1f3c 2484 myspell-pt_20080705-1_all.deb
Checksums-Sha256: 
 aa1b88a20ae4983397b6750f7196ed0b983503f3474bae2dc024e7890ba55994 1269 
myspell.pt_20080705-1.dsc
 05eb1ebc41e0a03f3ff632389b0759b48326167662d89c1d2f751e13903c8b56 174349 
myspell.pt_20080705.orig.tar.gz
 cfb4055846cbd3364ee8233a728f50b473e27812fb412f034552b78ba9ca6618 3042 
myspell.pt_20080705-1.diff.gz
 b25fadfe10be39774d7966a9e423a80d8b34f1ed0e62125f83d03a73eb6cf9d1 157920 
myspell-pt-pt_20080705-1_all.deb
 077d787505ff6564279c8e9e5db329645df06d2baba7b232f13c334c926bd99e 2484 
myspell-pt_20080705-1_all.deb
Files: 
 5602aa318f4d555d5ed627c9ac83278a 1269 text optional myspell.pt_20080705-1.dsc
 666fd072700251f63146fb5c702dd843 174349 text optional 
myspell.pt_20080705.orig.tar.gz
 287008009def9b2c52a561dfd8185377 3042 text optional 
myspell.pt_20080705-1.diff.gz
 d7fe06b1836a4316e164f8a23ec7f918 157920 text optional 
myspell-pt-pt_20080705-1_all.deb
 dff59250f718f30887fdc5e72beafef8 2484 text optional 
myspell-pt_20080705-1_all.deb

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

iD8DBQFIdpL4k3oga0pdcv4RAnKXAJ9LiSirz23zR+eOpdlC9CvoybyZOwCeLvG7
IDshv8ESFDIBtQ/eEHEZv3w=
=oVGg
-END PGP SIGNATURE-


Accepted:
myspell-pt-pt_20080705-1_all.deb
  to pool/main/m/myspell.pt/myspell-pt-pt_20080705-1_all.deb
myspell-pt_20080705-1_all.deb
  to pool/main/m/myspell.pt/myspell-pt_20080705-1_all.deb
myspell.pt_20080705-1.diff.gz
  to pool/main/m/myspell.pt/myspell.pt_20080705-1.diff.gz
myspell.pt_20080705-1.dsc
  to pool/main/m/myspell.pt/myspell.pt_20080705-1.dsc
myspell.pt_20080705.orig.tar.gz
  to pool/main/m/myspell.pt/myspell.pt_20080705.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted taxbird 0.11-3 (source amd64)

2008-07-10 Thread Marvin Stark
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Jul 2008 00:20:43 +0200
Source: taxbird
Binary: taxbird
Architecture: source amd64
Version: 0.11-3
Distribution: unstable
Urgency: low
Maintainer: Marvin Stark [EMAIL PROTECTED]
Changed-By: Marvin Stark [EMAIL PROTECTED]
Description: 
 taxbird- The first free Elster client (German Tax Declarations)
Closes: 484089
Changes: 
 taxbird (0.11-3) unstable; urgency=low
 .
   * Fixed icon location in taxbird.glade (Closes: #484089)
 - Added taxbird.glade.diff patch
 - Added quilt as Build-Dependency
   * taxbird.desktop:
 - Added taxbird.desktop.diff patch
 - Removed the Encoding key it's now deprecated by the FreeDesktop standard
   * taxbird-print-helper.1:
 - Added taxbird-print-helper.1.diff
 - Fixed syntax errors
   * debian/copyright:
 - Updated Copyright years
   * debian/control:
 - Updated Standards-Version to 3.8.0
   * debian/rules:
 - update config.sub, config.guess at build process
   * Added debian/README.source
Checksums-Sha1: 
 2bd896bcb856bd694d783547c5bdefa34b62e484 1073 taxbird_0.11-3.dsc
 408115b4581cfcd398925cd83b417b709f6741fd 6665 taxbird_0.11-3.diff.gz
 f508aa6e30ec132845776290e71b94105dfdd33a 90486 taxbird_0.11-3_amd64.deb
Checksums-Sha256: 
 92ee941a07d568b32f3d2052de66f46d69a3b221253c88cdb8ff7c3a286f9e38 1073 
taxbird_0.11-3.dsc
 ad16714c70ae754e238cb234b71a08b5b585cb2e8200e010fe081bf880277026 6665 
taxbird_0.11-3.diff.gz
 ac83a4098fb49b0f4803a994ef94d863bbf4b19da427139dc5bcfc25b611d9e1 90486 
taxbird_0.11-3_amd64.deb
Files: 
 15f5028d739d257b2984cad77abc79d7 1073 gnome optional taxbird_0.11-3.dsc
 b484ef85fdb2ff25f013839ea8af535e 6665 gnome optional taxbird_0.11-3.diff.gz
 8e1c98a00bb75e04a0b07c56962c3c74 90486 gnome optional taxbird_0.11-3_amd64.deb

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

iEYEARECAAYFAkh2jIgACgkQBnqtBMk7/3kskQCeNa1vPtLIqJFdlZxkADtaUVr6
i3gAn1Naw1O6MROBs94TkbggbqmTl23s
=ADyE
-END PGP SIGNATURE-


Accepted:
taxbird_0.11-3.diff.gz
  to pool/main/t/taxbird/taxbird_0.11-3.diff.gz
taxbird_0.11-3.dsc
  to pool/main/t/taxbird/taxbird_0.11-3.dsc
taxbird_0.11-3_amd64.deb
  to pool/main/t/taxbird/taxbird_0.11-3_amd64.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted aspell6.pt 20080705.0-1 (source all)

2008-07-10 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 08 Jul 2008 21:42:53 +0200
Source: aspell6.pt
Binary: aspell-pt-pt
Architecture: source all
Version: 20080705.0-1
Distribution: unstable
Urgency: low
Maintainer: Rafael Laboissiere [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 aspell-pt-pt - European Portuguese dictionary for GNU Aspell
Changes: 
 aspell6.pt (20080705.0-1) unstable; urgency=low
 .
   * New upstream release
   * debian/rules: Use debian/clean instead of manually cleaning files
   * debian/compat, debian/control: Bump build-dependency on debhelper to
 = 7.0.0, otherwise debian/clean is moot
   * debian/clean: New file
Checksums-Sha1: 
 8fe858cd688c14da49ca7ead4b4833c2a52f248a 1273 aspell6.pt_20080705.0-1.dsc
 8a2ccf28720a5e6cd9133966039d5100280b01bf 121872 
aspell6.pt_20080705.0.orig.tar.gz
 e31d15abdde7aa73e9648daffae2bc193a1956b9 3392 aspell6.pt_20080705.0-1.diff.gz
 40da875d929cac67e7750fe43779ed224a42ac23 117888 
aspell-pt-pt_20080705.0-1_all.deb
Checksums-Sha256: 
 ca202055214dc77c3aea13c2d99224e12dfa32d2e70409830fd34c7021679a76 1273 
aspell6.pt_20080705.0-1.dsc
 a92a9b525bc545f1267507104887606fcbc389876b1389dc103ebfb221e2f078 121872 
aspell6.pt_20080705.0.orig.tar.gz
 a912eff3f9f4dada12241967fa95e4ab48a054677231aafb8c957ffcc379e411 3392 
aspell6.pt_20080705.0-1.diff.gz
 4fb8eaf12b42109540ae571e883e6ff327250e367403d68d31314f3bdd6dae10 117888 
aspell-pt-pt_20080705.0-1_all.deb
Files: 
 586a67a0022ca81699613d15f4911cfe 1273 text optional aspell6.pt_20080705.0-1.dsc
 84dde7a6c7dd39c46166f7ae15a072a3 121872 text optional 
aspell6.pt_20080705.0.orig.tar.gz
 17d3d738037e5777d570899efa72b5ef 3392 text optional 
aspell6.pt_20080705.0-1.diff.gz
 60cf51cc451be6ff7f55b459c79977d7 117888 text optional 
aspell-pt-pt_20080705.0-1_all.deb

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

iD8DBQFIdpFAk3oga0pdcv4RAmn+AKCVpmRi31MxMULfebD6Fb/YZDhMcwCfTEhb
vsKKyOqGurg7wjJ4WLw5zsw=
=smM8
-END PGP SIGNATURE-


Accepted:
aspell-pt-pt_20080705.0-1_all.deb
  to pool/main/a/aspell6.pt/aspell-pt-pt_20080705.0-1_all.deb
aspell6.pt_20080705.0-1.diff.gz
  to pool/main/a/aspell6.pt/aspell6.pt_20080705.0-1.diff.gz
aspell6.pt_20080705.0-1.dsc
  to pool/main/a/aspell6.pt/aspell6.pt_20080705.0-1.dsc
aspell6.pt_20080705.0.orig.tar.gz
  to pool/main/a/aspell6.pt/aspell6.pt_20080705.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted ispell.pt 20080705-1 (source all amd64)

2008-07-10 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 08 Jul 2008 21:57:38 +0200
Source: ispell.pt
Binary: iportuguese wportuguese
Architecture: source all amd64
Version: 20080705-1
Distribution: unstable
Urgency: low
Maintainer: Rafael Laboissiere [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 iportuguese - European Portuguese dictionary for ispell
 wportuguese - European Portuguese wordlist
Changes: 
 ispell.pt (20080705-1) unstable; urgency=low
 .
   * New upstream release
   * debian/rules: Use debian/clean instead of manually cleaning files
   * debian/compat, debian/control: Bump build-dependency on debhelper to
 = 7.0.0, otherwise debian/clean is moot
   * debian/clean: New file
Checksums-Sha1: 
 246ff3c219431fa074c1bdab05e5ff698874138f 1250 ispell.pt_20080705-1.dsc
 c55d9f919320c75ad5ca3e1b367c24cabc17f81b 179663 ispell.pt_20080705.orig.tar.gz
 573e2ffad5e3d64893f82e4398b998e77c542ff2 5713 ispell.pt_20080705-1.diff.gz
 dac28cc3118785607fe808a7ead6db202538212e 1046534 wportuguese_20080705-1_all.deb
 160d916c728184ef058010f3289e9a38504eb78f 396992 
iportuguese_20080705-1_amd64.deb
Checksums-Sha256: 
 d274a902bd7490804f012144c81499e05cdafffdc918bbdb07aaee2a438c3cbc 1250 
ispell.pt_20080705-1.dsc
 eb5888713f04a7b72a0d13439179c150c29f2060fc810e333aa252d43e720a1c 179663 
ispell.pt_20080705.orig.tar.gz
 56392092b07fe4c1a5f3ad02907bf05b2513dcd6e99a6d0d76a406d439520533 5713 
ispell.pt_20080705-1.diff.gz
 2674b95941e670b0703ffa4e8a7cc6a92af401d6c6570cfd76b2deaeb591ccb8 1046534 
wportuguese_20080705-1_all.deb
 eb33d458b45b85c8779898ae8a4761bafebc727c287a569ec5cfaf46c80fffe5 396992 
iportuguese_20080705-1_amd64.deb
Files: 
 2c320753c77fef9fd04b2d6a6ec2e988 1250 text optional ispell.pt_20080705-1.dsc
 d32cca973c08d962de97c770ecea0a7c 179663 text optional 
ispell.pt_20080705.orig.tar.gz
 66bb3b9e8d93d9d027340a140d0e9354 5713 text optional 
ispell.pt_20080705-1.diff.gz
 60a816ec119ae64bd97f846ef532d38d 1046534 text optional 
wportuguese_20080705-1_all.deb
 229b9aecec72eea639c9dfb895c59546 396992 text optional 
iportuguese_20080705-1_amd64.deb

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

iD8DBQFIdpKIk3oga0pdcv4RAq5mAJ9GzgSO/gnFSDWvaFf+338JGnzrDwCfRO5V
CowYFAATn03TfjkKRtAknGU=
=uK1q
-END PGP SIGNATURE-


Accepted:
iportuguese_20080705-1_amd64.deb
  to pool/main/i/ispell.pt/iportuguese_20080705-1_amd64.deb
ispell.pt_20080705-1.diff.gz
  to pool/main/i/ispell.pt/ispell.pt_20080705-1.diff.gz
ispell.pt_20080705-1.dsc
  to pool/main/i/ispell.pt/ispell.pt_20080705-1.dsc
ispell.pt_20080705.orig.tar.gz
  to pool/main/i/ispell.pt/ispell.pt_20080705.orig.tar.gz
wportuguese_20080705-1_all.deb
  to pool/main/i/ispell.pt/wportuguese_20080705-1_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted irssi-plugin-otr 0.1-3 (source i386)

2008-07-10 Thread David Spreen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 16:13:01 -0700
Source: irssi-plugin-otr
Binary: irssi-plugin-otr
Architecture: source i386
Version: 0.1-3
Distribution: unstable
Urgency: low
Maintainer: David Spreen [EMAIL PROTECTED]
Changed-By: David Spreen [EMAIL PROTECTED]
Description: 
 irssi-plugin-otr - Off-the-Record Messaging Plugin for Irssi
Closes: 490021
Changes: 
 irssi-plugin-otr (0.1-3) unstable; urgency=low
 .
   * The 'Okay-Okay-I-Am-Using-Pbuilder-Already' release.
   * CMakeLists.txt: Removed dependency on wget. Reported upstream.
 (Closes: #490021).
   * Added new website address to control file/copyright file.
Checksums-Sha1: 
 989abec7df177f34ba56c19e149a75cba6860b72 1142 irssi-plugin-otr_0.1-3.dsc
 2065acb85f5cbcecb531d425e228dee5fb8d79ad 3073 irssi-plugin-otr_0.1-3.diff.gz
 281fe491c4054423cf82a9d8659b2fa448d90a9f 18908 irssi-plugin-otr_0.1-3_i386.deb
Checksums-Sha256: 
 6173ba14f8b8145ae1829f67f7b9caba3ad49f0e700b7757eec85f712cebadf1 1142 
irssi-plugin-otr_0.1-3.dsc
 3a4cc5dbd8afe4933d101d0867ca169adf7a5bc2a6dee4c6394a495fa9b7712c 3073 
irssi-plugin-otr_0.1-3.diff.gz
 e8fa86563144ed348ea9446e91023816ab9b875ed21b8f629c699e5b4a26621d 18908 
irssi-plugin-otr_0.1-3_i386.deb
Files: 
 2a5429d2e03fabb0d5ed09d1210a6ef7 1142 net optional irssi-plugin-otr_0.1-3.dsc
 49f0917def5b975003a4dc8ec9aada1c 3073 net optional 
irssi-plugin-otr_0.1-3.diff.gz
 8996b0a14046255c39bb2e7e5e9ba2bc 18908 net optional 
irssi-plugin-otr_0.1-3_i386.deb

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

iEYEARECAAYFAkh2mNsACgkQdhEvvPyx3SM+SgCdGHMQDF/WIisf4EZ2gZtHtej3
xqsAoJDytkWUPlEC8AemoDXIXO5K+YeN
=q/1H
-END PGP SIGNATURE-


Accepted:
irssi-plugin-otr_0.1-3.diff.gz
  to pool/main/i/irssi-plugin-otr/irssi-plugin-otr_0.1-3.diff.gz
irssi-plugin-otr_0.1-3.dsc
  to pool/main/i/irssi-plugin-otr/irssi-plugin-otr_0.1-3.dsc
irssi-plugin-otr_0.1-3_i386.deb
  to pool/main/i/irssi-plugin-otr/irssi-plugin-otr_0.1-3_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted build-essential 11.4 (source i386)

2008-07-10 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Jul 2008 01:05:30 +0200
Source: build-essential
Binary: build-essential
Architecture: source i386
Version: 11.4
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 build-essential - Informational list of build-essential packages
Closes: 456549 480677
Changes: 
 build-essential (11.4) unstable; urgency=low
 .
   * Regenerate the essential packages lists, including armel.
   * Increased versioned dependency on gcc and g++ to 4.3.1 (not alpha),
 to 4.2.4 (alpha).
   * Depend on hurd-dev [hurd-i386]. Closes: #456549.
   * Update package description. Closes: #480677.
Checksums-Sha1: 
 7525fafef8ba584f794cd6aaad3da5a0f684cbbc 798 build-essential_11.4.dsc
 e6bf025bc52d82508aad6cc31df1b7a5ff233020 49480 build-essential_11.4.tar.gz
 611adce9798375c74de053e51efee77947e19812 7118 build-essential_11.4_i386.deb
Checksums-Sha256: 
 37c434f8b8c7b628e64dbe5e78dfa4a92a02ae6630f8ba4c942417e93a778ea0 798 
build-essential_11.4.dsc
 ff4b62eccb2709691ea6090bf5a5a5883a0a17eb57a77caf629e5d13b9d3bd0a 49480 
build-essential_11.4.tar.gz
 a0cc14664274f1eddf9772813a111e5f373c174e38113782417e2f31b088e0cd 7118 
build-essential_11.4_i386.deb
Files: 
 b87fa025c9bf11c4a9f501a6abdc2d9f 798 devel optional build-essential_11.4.dsc
 71b813b13df34478a13a9a016e93ac6e 49480 devel optional 
build-essential_11.4.tar.gz
 00f22c0a20f5cf2e30e31afa2eaee16e 7118 devel optional 
build-essential_11.4_i386.deb

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

iEYEARECAAYFAkh2lfkACgkQStlRaw+TLJzfQACguqpG2Bsp+LxRZi1/67w3hcAu
Xh4An12iOB+l3qoQ7IxAHxcSOXPJ4QXX
=CG5h
-END PGP SIGNATURE-


Accepted:
build-essential_11.4.dsc
  to pool/main/b/build-essential/build-essential_11.4.dsc
build-essential_11.4.tar.gz
  to pool/main/b/build-essential/build-essential_11.4.tar.gz
build-essential_11.4_i386.deb
  to pool/main/b/build-essential/build-essential_11.4_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted writer2latex 0.5-8 (source all)

2008-07-10 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Jul 2008 00:28:21 +0200
Source: writer2latex
Binary: writer2latex writer2latex-manual libwriter2latex-java-doc 
libwriter2latex-java openoffice.org-writer2latex
Architecture: source all
Version: 0.5-8
Distribution: unstable
Urgency: high
Maintainer: Debian OpenOffice Team [EMAIL PROTECTED]
Changed-By: Rene Engelhard [EMAIL PROTECTED]
Description: 
 libwriter2latex-java - OpenOffice.org Writer/Calc to LaTeX/XHTML converter -- 
library
 libwriter2latex-java-doc - OpenOffice.org Writer/Calc to LaTeX/XHTML converter 
-- javadoc
 openoffice.org-writer2latex - Writer/Calc to LaTeX/XHTML converter extension 
for OpenOffice.org
 writer2latex - OpenOffice.org Writer/Calc to LaTeX/XHTML converter
 writer2latex-manual - OpenOffice.org Writer/Calc to LaTeX/XHTML converter -- 
manual
Closes: 490138
Changes: 
 writer2latex (0.5-8) unstable; urgency=high
 .
   * add missing Depends: on ${misc:Depends} for writer2latex
 (closes: #490138)
Checksums-Sha1: 
 4b741a83b091b3aaab26ee3f0646749586ba15ba 1317 writer2latex_0.5-8.dsc
 2d58529d8a998abd64fe437a64bcfe871b17c042 4961 writer2latex_0.5-8.diff.gz
 4750ab5616f410489c2dc43462d95cc6de16de1f 64212 writer2latex_0.5-8_all.deb
 45ce7585d82216c57f714a7e7350825eb3bbf86f 657088 
writer2latex-manual_0.5-8_all.deb
 a27bebe878ffe785b734dcad6405221c2bbbaa26 287094 
libwriter2latex-java-doc_0.5-8_all.deb
 70b77624493b6da727153e69a0996660a2c8f500 380096 
libwriter2latex-java_0.5-8_all.deb
 d7214cc2646c58af8aaaba233a3045e23404f97b 383094 
openoffice.org-writer2latex_0.5-8_all.deb
Checksums-Sha256: 
 3ef256f9b3d578719c5e0de0747dbf07a3076a610806b7acfdc5a829b06d411f 1317 
writer2latex_0.5-8.dsc
 def092322564551fae2b400c2fe3c002365df29671c33423b1e1c2b01ba3c222 4961 
writer2latex_0.5-8.diff.gz
 d6433c14ca136e3e61262c7cd18dce0a71345658b56e2ba1f52ccac60e111eed 64212 
writer2latex_0.5-8_all.deb
 198bcf690a12f96cee645749240990e8974e0da7a2229bab585fee7b2889910e 657088 
writer2latex-manual_0.5-8_all.deb
 387b57ad575be9fc1daacfa2aec0ee355e473b1e06d710e8ac8264702e604e47 287094 
libwriter2latex-java-doc_0.5-8_all.deb
 af6ce7949314e4275902edb642de3b459bee383db5d6f2c9078d63ce8578e949 380096 
libwriter2latex-java_0.5-8_all.deb
 53492d59455ab658f3d1851e43ebcf23a7a22f3d2c2370fc3bd06516707b743c 383094 
openoffice.org-writer2latex_0.5-8_all.deb
Files: 
 b8089c1df5c71b975ffe8b5c82487a17 1317 text optional writer2latex_0.5-8.dsc
 989ad14aceb73ae57d5e47a60ceed0b4 4961 text optional writer2latex_0.5-8.diff.gz
 c9c32d48212c3116d07bbfabbc614c26 64212 text optional writer2latex_0.5-8_all.deb
 44c162c96f21bfa72b121952dca8fa03 657088 doc optional 
writer2latex-manual_0.5-8_all.deb
 2f80da692d0bab65e1d16b31a810c3a1 287094 doc optional 
libwriter2latex-java-doc_0.5-8_all.deb
 9633d86529b30d287d673707d1063b43 380096 text optional 
libwriter2latex-java_0.5-8_all.deb
 827edb3a8b8e97c0543b599c1f9bc8c8 383094 text optional 
openoffice.org-writer2latex_0.5-8_all.deb

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

iD8DBQFIdpZu+FmQsCSK63MRAm9jAJsFHn7d9X/VeZV5+UGbIadQDVlX3ACfcLhT
C4e4/cIYEiN+jAXMgcyW5vA=
=afl/
-END PGP SIGNATURE-


Accepted:
libwriter2latex-java-doc_0.5-8_all.deb
  to pool/main/w/writer2latex/libwriter2latex-java-doc_0.5-8_all.deb
libwriter2latex-java_0.5-8_all.deb
  to pool/main/w/writer2latex/libwriter2latex-java_0.5-8_all.deb
openoffice.org-writer2latex_0.5-8_all.deb
  to pool/main/w/writer2latex/openoffice.org-writer2latex_0.5-8_all.deb
writer2latex-manual_0.5-8_all.deb
  to pool/main/w/writer2latex/writer2latex-manual_0.5-8_all.deb
writer2latex_0.5-8.diff.gz
  to pool/main/w/writer2latex/writer2latex_0.5-8.diff.gz
writer2latex_0.5-8.dsc
  to pool/main/w/writer2latex/writer2latex_0.5-8.dsc
writer2latex_0.5-8_all.deb
  to pool/main/w/writer2latex/writer2latex_0.5-8_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted znc 0.058-1 (source i386)

2008-07-10 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 14:02:50 +0200
Source: znc
Binary: znc
Architecture: source i386
Version: 0.058-1
Distribution: unstable
Urgency: high
Maintainer: Patrick Matthäi [EMAIL PROTECTED]
Changed-By: Patrick Matthäi [EMAIL PROTECTED]
Description: 
 znc- advanced modular IRC bouncer
Changes: 
 znc (0.058-1) unstable; urgency=high
 .
   * New upstream release.
 - Bumping urgency to high, because this release fixes a local privilege
   escalation. For more informations see svn commit 1113 on the upstream
   subversion repository. This bug does not exist in the stable version.
   * Removed note on a not existing file in README.Debian.
   * Removed the indefinite article an from the short description.
Checksums-Sha1: 
 3e9268bc2bd720af3bf139893f6093341bf02a93 1004 znc_0.058-1.dsc
 1f20fa91db80b3ac870e3cc4e77b9e66c9113f49 340741 znc_0.058.orig.tar.gz
 3c196fe5e7c0255febed1f4396d6457b2f5856ed 6286 znc_0.058-1.diff.gz
 41296921afc8ce17c302a3164ac7d3e2e9270e8c 1010096 znc_0.058-1_i386.deb
Checksums-Sha256: 
 e0da0f1062a1c9da18641a2d1c4758f14b742c772a030699be6aa2a960dc37ba 1004 
znc_0.058-1.dsc
 f25a13e28f40546bf15c50f5a45e81206b8667329540af0a0d427afbef450714 340741 
znc_0.058.orig.tar.gz
 a938f42cc7714d1c056dd7841f3a54f785eb3a1468cc3d251e7d8c3c50b3d796 6286 
znc_0.058-1.diff.gz
 7f706984995b2cb3fe9c77d719fcbc1e00bcd9570727426e97520558762d7372 1010096 
znc_0.058-1_i386.deb
Files: 
 90d55cc679d508d42c3506e4002ae5a9 1004 net optional znc_0.058-1.dsc
 c02fd740c55d5b3a7912f7584344103e 340741 net optional znc_0.058.orig.tar.gz
 54624ac50b6e1fbadd910a4a3c9a3f9b 6286 net optional znc_0.058-1.diff.gz
 e071005162e704539c58f62667ad9bfa 1010096 net optional znc_0.058-1_i386.deb

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

iEYEARECAAYFAkh2mr0ACgkQ2XA5inpabMemDQCeNE4hP1K+ip/PcTmbWlEYqekb
AM0AoIz/zHW38uZBTQCYKzaqFrasXzqO
=xiD9
-END PGP SIGNATURE-


Accepted:
znc_0.058-1.diff.gz
  to pool/main/z/znc/znc_0.058-1.diff.gz
znc_0.058-1.dsc
  to pool/main/z/znc/znc_0.058-1.dsc
znc_0.058-1_i386.deb
  to pool/main/z/znc/znc_0.058-1_i386.deb
znc_0.058.orig.tar.gz
  to pool/main/z/znc/znc_0.058.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted curl 7.18.2-6 (source amd64)

2008-07-10 Thread Andreas Schuldei
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Jul 2008 02:05:16 +0200
Source: curl
Binary: curl libcurl3 libcurl3-gnutls libcurl4-openssl-dev libcurl4-gnutls-dev 
libcurl3-dbg
Architecture: source amd64
Version: 7.18.2-6
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Andreas Schuldei [EMAIL PROTECTED]
Description: 
 curl   - Get a file from an HTTP, HTTPS or FTP server
 libcurl3   - Multi-protocol file transfer library (OpenSSL)
 libcurl3-dbg - libcurl compiled with debug symbols
 libcurl3-gnutls - Multi-protocol file transfer library (GnuTLS)
 libcurl4-gnutls-dev - Development files and documentation for libcurl (GnuTLS)
 libcurl4-openssl-dev - Development files and documentation for libcurl 
(OpenSSL)
Changes: 
 curl (7.18.2-6) unstable; urgency=low
 .
   * enable c-ares support, with ipv6 support
Checksums-Sha1: 
 0ee08a27622788d80599830b89ced2b98960e18e 1401 curl_7.18.2-6.dsc
 f2e2867723473eb3b382e6b1dfa3d33499448d1c 24871 curl_7.18.2-6.diff.gz
 f3c2fbbe6131215509abcebfa6f58afba324d973 208642 curl_7.18.2-6_amd64.deb
 c1961453ec579c530de5fa2687cbd508c3fb00ef 230866 libcurl3_7.18.2-6_amd64.deb
 4e910d482fde6f2d8ebbe073e141e7deae514775 213796 
libcurl3-gnutls_7.18.2-6_amd64.deb
 41c3d800c5f62e2be1bbbf5d9c74ef5591e1878f 948654 
libcurl4-openssl-dev_7.18.2-6_amd64.deb
 63d109f68332e8576bd3e482ef2e82e70bd4710d 928318 
libcurl4-gnutls-dev_7.18.2-6_amd64.deb
 dc34f7e01e8793fbda22d22fd6da96615e459d47 1188368 
libcurl3-dbg_7.18.2-6_amd64.deb
Checksums-Sha256: 
 fb4293f3c82896a337521e10d5982fa7fef132259170378b171a5f4a1922520a 1401 
curl_7.18.2-6.dsc
 e7dfe77805f54f9f71a6a9894e525a36b08b37d5926965d2bc4ba48801f04c9b 24871 
curl_7.18.2-6.diff.gz
 241c2c641e2b673f71cb0981e0a3771e0a71a6788aac29642dfe371a8429e3cf 208642 
curl_7.18.2-6_amd64.deb
 0afb3f411b30bacef8c8f2eabb3cd4e36db84ba2d755bb2a391f6c7c66d00528 230866 
libcurl3_7.18.2-6_amd64.deb
 4ab38c04df5b5db5ceff5cdce742343e7c583cc90f23a8ec40b759bea9993e06 213796 
libcurl3-gnutls_7.18.2-6_amd64.deb
 5275b01ccf9481354820afb9510506a46d9142356c612df9256a83270ce03a8f 948654 
libcurl4-openssl-dev_7.18.2-6_amd64.deb
 7e4f9315195f80af0d90acd899b8642b8a5df974dd37e701d194e2cabd7997af 928318 
libcurl4-gnutls-dev_7.18.2-6_amd64.deb
 6f2c753350904f0b8d7014d588124a5ddbb87f51a80c1252033b1f54aa6b869e 1188368 
libcurl3-dbg_7.18.2-6_amd64.deb
Files: 
 86a955059076c245e5b4061fceb4b96d 1401 web optional curl_7.18.2-6.dsc
 1d1e1c1cffcae05f5fbd5933dfb8 24871 web optional curl_7.18.2-6.diff.gz
 f1ca74796d86786b9fb108f4e4833fc9 208642 web optional curl_7.18.2-6_amd64.deb
 ba62db2b3992ba981fde8be4f90a7d02 230866 libs optional 
libcurl3_7.18.2-6_amd64.deb
 294cbf1259319b4e07bd5e2c459a3301 213796 libs optional 
libcurl3-gnutls_7.18.2-6_amd64.deb
 2c9625063d3b5a179f57a2c253516aea 948654 libdevel optional 
libcurl4-openssl-dev_7.18.2-6_amd64.deb
 67545fbfb31e9d88a04a74fd8bdef80f 928318 libdevel optional 
libcurl4-gnutls-dev_7.18.2-6_amd64.deb
 ad1acdaa2b26b70f9c9dda591c274e8a 1188368 libdevel extra 
libcurl3-dbg_7.18.2-6_amd64.deb

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

iD8DBQFIdqhU8g+sC3uDV+URAhokAJ9jVZIJZeKoun+ZpSHFx6VpKZsNxgCeMk1C
G0hquLpJ+/aT0sWWB5aJQ1M=
=9RsQ
-END PGP SIGNATURE-


Accepted:
curl_7.18.2-6.diff.gz
  to pool/main/c/curl/curl_7.18.2-6.diff.gz
curl_7.18.2-6.dsc
  to pool/main/c/curl/curl_7.18.2-6.dsc
curl_7.18.2-6_amd64.deb
  to pool/main/c/curl/curl_7.18.2-6_amd64.deb
libcurl3-dbg_7.18.2-6_amd64.deb
  to pool/main/c/curl/libcurl3-dbg_7.18.2-6_amd64.deb
libcurl3-gnutls_7.18.2-6_amd64.deb
  to pool/main/c/curl/libcurl3-gnutls_7.18.2-6_amd64.deb
libcurl3_7.18.2-6_amd64.deb
  to pool/main/c/curl/libcurl3_7.18.2-6_amd64.deb
libcurl4-gnutls-dev_7.18.2-6_amd64.deb
  to pool/main/c/curl/libcurl4-gnutls-dev_7.18.2-6_amd64.deb
libcurl4-openssl-dev_7.18.2-6_amd64.deb
  to pool/main/c/curl/libcurl4-openssl-dev_7.18.2-6_amd64.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted libpam-krb5 3.11-1 (source i386)

2008-07-10 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 10 Jul 2008 17:07:15 -0700
Source: libpam-krb5
Binary: libpam-krb5
Architecture: source i386
Version: 3.11-1
Distribution: unstable
Urgency: low
Maintainer: Russ Allbery [EMAIL PROTECTED]
Changed-By: Russ Allbery [EMAIL PROTECTED]
Description: 
 libpam-krb5 - PAM module for MIT Kerberos
Changes: 
 libpam-krb5 (3.11-1) unstable; urgency=low
 .
   * New upstream release.
 - setcred, open_session, and acct_mgmt now return PAM_IGNORE instead
   of PAM_SUCCESS for ignored users or non-Kerberos logins.
 - New defer_pwchange option for fully correct expired password
   handling.  This is not the default because it will open security
   holes in badly written applications.
 - New force_pwchange option to force password change for expired
   accounts during the authentication step even if the Kerberos library
   doesn't support this.
 - Warn if more than one of use_authtok, use_first_pass, and
   try_first_pass are set and use the strongest.
 - Remove workaround for older MIT Kerberos that improperly initialized
   the credential option structure.  The workaround was causing
   problems for PKINIT with the current libraries (which fix this bug).
 - Set explicit hidden visibility for all local symbols and further
   restrict the visible symbols with a version script, removing leaks
   of symbols into the application namespace.
   * Install NEWS as the upstream changelog.  Upstream no longer includes a
 detailed CHANGES file.
   * Rewrite and expand debian/copyright based on the upstream LICENSE
 file.
   * Add Vcs-Git and Vcs-Browser control fields.
   * Update standards version to 3.8.0 (no changes required).
Checksums-Sha1: 
 f617689513ae2a2dc8c3135ac08eef68c5a3adbc 1214 libpam-krb5_3.11-1.dsc
 672fe51367c336bea93d67be41afb06bece63e4b 149399 libpam-krb5_3.11.orig.tar.gz
 529c87e5ab56e6083a4588ba9595dc8f35d21e59 13134 libpam-krb5_3.11-1.diff.gz
 5d1ce23f836ad7e440011a0b0028afe35ded2d68 61202 libpam-krb5_3.11-1_i386.deb
Checksums-Sha256: 
 08e025e1dc595c51bcf5ba61314c2c0c9bd34dccf05b0f8fd634af9e3de5c0a5 1214 
libpam-krb5_3.11-1.dsc
 8bfdbc7eeb4e9db781e8c37b8da3b8c7e546c357cc2973e0b92e2cb83555b2db 149399 
libpam-krb5_3.11.orig.tar.gz
 f3bcb189596c66c6e53441d3b8ab988cba2e07667980ccbf82d5dc7abd53bb12 13134 
libpam-krb5_3.11-1.diff.gz
 5b322ff28f742fbda3f180b07c21221fdf19043a28b42e05c244e67111c04d43 61202 
libpam-krb5_3.11-1_i386.deb
Files: 
 f1e868ee2d9ac1f9fdd46dd23abdef79 1214 net optional libpam-krb5_3.11-1.dsc
 ba94e7bfd5255705b6fc1c137834f79a 149399 net optional 
libpam-krb5_3.11.orig.tar.gz
 113dffcd309cebb979f7c49d00cf72e6 13134 net optional libpam-krb5_3.11-1.diff.gz
 953b9d1bfae5feba6bf28cb83f8bbb40 61202 net optional libpam-krb5_3.11-1_i386.deb

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

iEYEARECAAYFAkh2pMIACgkQ+YXjQAr8dHalCwCeIn5RFFDjw0mIlk+x+9KJ6SnL
ccEAoM/YXRttABBOUwNwkO0eWB6rldSb
=dp+h
-END PGP SIGNATURE-


Accepted:
libpam-krb5_3.11-1.diff.gz
  to pool/main/libp/libpam-krb5/libpam-krb5_3.11-1.diff.gz
libpam-krb5_3.11-1.dsc
  to pool/main/libp/libpam-krb5/libpam-krb5_3.11-1.dsc
libpam-krb5_3.11-1_i386.deb
  to pool/main/libp/libpam-krb5/libpam-krb5_3.11-1_i386.deb
libpam-krb5_3.11.orig.tar.gz
  to pool/main/libp/libpam-krb5/libpam-krb5_3.11.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted helpviewer.app 0.3-6 (source i386)

2008-07-10 Thread Yavor Doganov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Thu, 10 Jul 2008 19:30:11 +0300
Source: helpviewer.app
Binary: helpviewer.app
Architecture: source i386
Version: 0.3-6
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers [EMAIL PROTECTED]
Changed-By: Yavor Doganov [EMAIL PROTECTED]
Description: 
 helpviewer.app - Online help viewer for GNUstep programs
Closes: 450890 489695 489880
Changes: 
 helpviewer.app (0.3-6) unstable; urgency=low
 .
   * debian/compat: Set to 6.
   * debian/control (Maintainer): Adopt package, set to the GNUstep team
 (Closes: #450890).
 (Uploaders): Add myself.
 (Build-Depends): Bump debhelper to = 6.0.7 (for dh_lintian) and
 lignustep-gui-dev to = 0.14.  Drop gnustep-make.  Add quilt for the
 patch management and imagemagick for the icon conversion.
 (Standards-Version): Set to 3.8.0 (no changes needed).
 (Homepage): New field, moved from Description.
   * debian/docs: Delete; README is useless.
   * debian/dirs: Delete.
   * debian/menu: Add `longtitle' and `icon' sections.
   * debian/HelpViewer.desktop: Set the proper `Version'; set the full path
 for `Icon' and add Bulgarian `Name' and `Comment'.
   * debian/lintian-override: Rename as...
   * debian/lintian-overrides: ...to get it installed by dh_lintian.
   * debian/rules: Include quilt.make and adjust all rules accordingly.
 Use automatic variables where possible.  Use gs_make in all recipes.
 (GNUSTEP_MAKEFILES, MAKE): Do not define.
 (d_app, LDFLAGS): Define.
 (OPTFLAG): Define conditionally, based on the presence of `noopt' in
 DEB_BUILD_OPTIONS.
 (build-stamp): Pass OPTFLAG, LDFLAGS and messages=yes to gs_make.
 Convert the TIFF icon to XPM format.
 (clean-patched): Delete the XPM icon.
 (install): Don't invoke dh_installdirs.  Install the XPM icon.
 (binary-arch): Use dh_lintian to install the override.
   * debian/patches/05_compilation-fixes.patch: New; conditionally
 include GNUstep.h if GNUSTEP is not defined, so that the
 ASSIGN/RELEASE macros actually work.  Add a few more minor
 fixes to avoid compilation warnings with the current GNUstep
 libraries (Closes: #489695).  Incidentally, it appears that .xlp files
 render again (Closes: #489880).
   * debian/watch: New dummy file with comments only.
Checksums-Sha1: 
 e75ed37d4406135c45e725d29fca47038dac4e4c 1164 helpviewer.app_0.3-6.dsc
 11c90f27e333fb7e088e2030621c3b952caf9042 5638 helpviewer.app_0.3-6.diff.gz
 500e17e3d1bb8c192cc9791c2344b2407217 196438 helpviewer.app_0.3-6_i386.deb
Checksums-Sha256: 
 ca392d470bf539ef553c64ccdf6c6bf7dd3c89285c5148ea8007494d1ea1eca1 1164 
helpviewer.app_0.3-6.dsc
 94edebc5f4b9405d5d891e93c7dcb291a26bc0f3e6f6dc1ef30204ce60f9c5d4 5638 
helpviewer.app_0.3-6.diff.gz
 d15f37f0957b935d6cc31ef9fda330995385747c0a643de2d5a84954f1a52f41 196438 
helpviewer.app_0.3-6_i386.deb
Files: 
 4f78d536b1577f9796961ff5425e0633 1164 doc optional helpviewer.app_0.3-6.dsc
 fca2343fe98fd1a77ffb4a07b331df43 5638 doc optional helpviewer.app_0.3-6.diff.gz
 42a448a01177d9e8a5741f494aec4059 196438 doc optional 
helpviewer.app_0.3-6_i386.deb

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

iD8DBQFIdrJfrynHGRJLYfoRA3PmAJ9QGjXTquDUht8ri2R9KEutr5ueYQCfeHky
1lSK9J1jVXIeSoHafQFCXzQ=
=PA/x
-END PGP SIGNATURE-


Accepted:
helpviewer.app_0.3-6.diff.gz
  to pool/main/h/helpviewer.app/helpviewer.app_0.3-6.diff.gz
helpviewer.app_0.3-6.dsc
  to pool/main/h/helpviewer.app/helpviewer.app_0.3-6.dsc
helpviewer.app_0.3-6_i386.deb
  to pool/main/h/helpviewer.app/helpviewer.app_0.3-6_i386.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted swt-gtk 3.4-1 (source i386)

2008-07-10 Thread Shaun Jackman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 10 Jul 2008 18:44:51 -0700
Source: swt-gtk
Binary: libswt-gnome-gtk-3.4-jni libswt-gtk-3.4-java libswt-mozilla-gtk-3.4-jni 
libswt-gtk-3.4-jni libswt-gtk-3.4-java-gcj libswt-cairo-gtk-3.4-jni
Architecture: source i386
Version: 3.4-1
Distribution: unstable
Urgency: low
Maintainer: Shaun Jackman [EMAIL PROTECTED]
Changed-By: Shaun Jackman [EMAIL PROTECTED]
Description: 
 libswt-cairo-gtk-3.4-jni - Standard Widget Toolkit for GTK+ Cairo JNI library
 libswt-gnome-gtk-3.4-jni - Standard Widget Toolkit for GTK+ GNOME JNI library
 libswt-gtk-3.4-java - Standard Widget Toolkit for GTK+ Java library
 libswt-gtk-3.4-java-gcj - Standard Widget Toolkit for GTK+ native library
 libswt-gtk-3.4-jni - Standard Widget Toolkit for GTK+ JNI library
 libswt-mozilla-gtk-3.4-jni - Standard Widget Toolkit for GTK+ Mozilla JNI 
library
Closes: 490214
Changes: 
 swt-gtk (3.4-1) unstable; urgency=low
 .
   * New upstream release. Closes: #490214.
   * Update the policy to version 3.8.0.1. No changes were necessary.
Files: 
 3b9321c9fa181b32f4e64a09665c260c 806 libs optional swt-gtk_3.4-1.dsc
 3c03c9ef2453e71d3158d3f3260eaf49 1167734 libs optional swt-gtk_3.4.orig.tar.gz
 72d88575dacf2e6829eac27fab24b65e 361198 libs optional swt-gtk_3.4-1.diff.gz
 b26cdedfdb9130f23b6c3e6bd5bac681 1338242 libs optional 
libswt-gtk-3.4-java_3.4-1_i386.deb
 8aca5c60ffa1c381bdfc9b86f7aad8aa 123682 libs optional 
libswt-gtk-3.4-jni_3.4-1_i386.deb
 895e1ec8dde936224f7c80e65758d2f2 20822 libs optional 
libswt-gnome-gtk-3.4-jni_3.4-1_i386.deb
 bd98576b1d255ecbf1a729f6318353aa 59188 libs optional 
libswt-mozilla-gtk-3.4-jni_3.4-1_i386.deb
 d3b8c7f632e9703490b4de209067970b 29228 libs optional 
libswt-cairo-gtk-3.4-jni_3.4-1_i386.deb
 55fd10b74c8a9ae410500a3e3fac42b1 1808132 libs optional 
libswt-gtk-3.4-java-gcj_3.4-1_i386.deb

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

iD8DBQFIdsRTvFdYF1IwUUoRAm2qAJ4me67d6OgKMbtj4WXNd07L0Aqy5wCg3Tg5
BoO9wDrqpHXuZn98svSn8/c=
=9pik
-END PGP SIGNATURE-


Accepted:
libswt-cairo-gtk-3.4-jni_3.4-1_i386.deb
  to pool/main/s/swt-gtk/libswt-cairo-gtk-3.4-jni_3.4-1_i386.deb
libswt-gnome-gtk-3.4-jni_3.4-1_i386.deb
  to pool/main/s/swt-gtk/libswt-gnome-gtk-3.4-jni_3.4-1_i386.deb
libswt-gtk-3.4-java-gcj_3.4-1_i386.deb
  to pool/main/s/swt-gtk/libswt-gtk-3.4-java-gcj_3.4-1_i386.deb
libswt-gtk-3.4-java_3.4-1_i386.deb
  to pool/main/s/swt-gtk/libswt-gtk-3.4-java_3.4-1_i386.deb
libswt-gtk-3.4-jni_3.4-1_i386.deb
  to pool/main/s/swt-gtk/libswt-gtk-3.4-jni_3.4-1_i386.deb
libswt-mozilla-gtk-3.4-jni_3.4-1_i386.deb
  to pool/main/s/swt-gtk/libswt-mozilla-gtk-3.4-jni_3.4-1_i386.deb
swt-gtk_3.4-1.diff.gz
  to pool/main/s/swt-gtk/swt-gtk_3.4-1.diff.gz
swt-gtk_3.4-1.dsc
  to pool/main/s/swt-gtk/swt-gtk_3.4-1.dsc
swt-gtk_3.4.orig.tar.gz
  to pool/main/s/swt-gtk/swt-gtk_3.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Accepted python-dns 2.3.1-4 (source all)

2008-07-10 Thread Scott Kitterman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Jul 2008 00:54:16 -0400
Source: python-dns
Binary: python-dns
Architecture: source all
Version: 2.3.1-4
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Scott Kitterman [EMAIL PROTECTED]
Description: 
 python-dns - pydns - DNS client module for Python
Changes: 
 python-dns (2.3.1-4) unstable; urgency=low
 .
   * Add simple-patchsys.mk to debian/rules
 - Add README.source
   * Remove custom clean rule no longer needed
   * Switch to python-central (debian/rules and control)
 - Update DEB_PYTHON_SYSTEM
 - Update build-depends
 - Add XS/XB-Python-Versions
 - Remove pyversions
   * Update standards version to 3.8.0.1
 - Add Homepage: to debian/control
   * Add debian/patches/tid-random.patch to partially address #490217
 - Randomize TID for new DNS packets, but not for retries
 - Depend on kernel for port randomization (2.6.24 i386 does this)
   * Add DEB_COMPRESS_EXCLUDE := .py so sample scripts don't get compressed
   * Change build dep on python-dev to python
Checksums-Sha1: 
 83ddcc4879b57b86ba1e5511ba9c724da602d637 1355 python-dns_2.3.1-4.dsc
 09429482b90326473bf93e7e86a2195ea34f0778 6936 python-dns_2.3.1-4.diff.gz
 070d6e2b2895926623fb710763a8eeb96da59987 27448 python-dns_2.3.1-4_all.deb
Checksums-Sha256: 
 0cbc81c27e8c9bc674b9608103ea5df152b6cf0ea4d9716ba1ba0a8ab837986a 1355 
python-dns_2.3.1-4.dsc
 9b5aa8661d569613750e2915a303986a5365d703c24b9e0681c0362cb189d0f6 6936 
python-dns_2.3.1-4.diff.gz
 0bfde11671ccbbeb0ab4852ef08d1d089203cc4acf7cb8e19b9d62a38c11ff5d 27448 
python-dns_2.3.1-4_all.deb
Files: 
 7163269a9e08c01d9da38351bfafa364 1355 python optional python-dns_2.3.1-4.dsc
 b78c7cee09d2237eb707f8f5debb0242 6936 python optional 
python-dns_2.3.1-4.diff.gz
 4f50070fe1a419ac5b1634522fefc3db 27448 python optional 
python-dns_2.3.1-4_all.deb

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

iD8DBQFIduokHajaM93NaGoRAlOwAJ9KtBxgphci2TnFQX79eD9oXGPJbQCeJU9J
qPqSyuQ6SkUCr6633nclkMA=
=t/V0
-END PGP SIGNATURE-


Accepted:
python-dns_2.3.1-4.diff.gz
  to pool/main/p/python-dns/python-dns_2.3.1-4.diff.gz
python-dns_2.3.1-4.dsc
  to pool/main/p/python-dns/python-dns_2.3.1-4.dsc
python-dns_2.3.1-4_all.deb
  to pool/main/p/python-dns/python-dns_2.3.1-4_all.deb


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]