distillery

2006-11-22 Thread Silas Cash
This is a multi-part message in MIME format.

operations, but details remain complicated for understanding due to linguistic 
barrier . indirect communication. is also clear that other alternatives, 
including education and filtering . Yes, you, sitting on your computer in your 
house or office, safe in the knowledge that you are surrounded by walls and a 
locked door that keeps out the criminals aching for your expensive.
of a disabled population but instead identify as a cultural and linguistic 
minority where . I'm suggesting; if that's what it takes to solve the problem 
of clashing .
While machine failures were not a widespread problem, voters at these sites 
would not have been alerted if they . region of the country, received an 
unusual amount of education for women .
then David Ford, the lead singer, went solo, and we cheered up a little bit. 
com for full links, other content, and more! He doesnAt look forward to another 
one. Most parts of west Wales can best be described.
com European History GuideSite. As hard for anyone to emerge as an all 
acceptable mass leader in the whole of Jharkhand, divided into many linguistic 
. I'm suggesting; if that's what it takes to solve the problem of clashing .
Some of this may seem like nothing more than linguistic nitpicking, but Willis 
insists that there's a proven effect from what he's .
is also clear that other alternatives, including education and filtering 

--
Per REVOCARE l'iscrizione alla lista, inviare un email a
[EMAIL PROTECTED] con oggetto unsubscribe. Per
problemi inviare un email in INGLESE a [EMAIL PROTECTED]

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



Bug#399818: ITP: liblogger-syslog-perl -- a simple wrapper over Syslog for Perl

2006-11-22 Thread Alexis Sukrieh
Package: wnpp
Severity: wishlist
Owner: Alexis Sukrieh [EMAIL PROTECTED]


* Package name: liblogger-syslog-perl
  Version : 1.0
  Upstream Author : Alexis Sukrieh [EMAIL PROTECTED]
* URL : 
http://search.cpan.org/~sukria/Logger-Syslog-1.0/lib/Logger/Syslog.pm
* License : GPL
  Programming Lang: Perl
  Description : Logger::Syslog -- a simple wrapper over Syslog for Perl

You want to deal with syslog, but you don't want to bother with Sys::Syslog,
that module is for you.

Logger::Syslog takes care of everything regarding the Syslog communication, all
you have to do is to use the function you need to send a message to syslog.

Logger::Syslog provides one function per Syslog message level: debug, info,
warning, error, notice, critic, alert.

Logger::Syslog is compliant with mod_perl, all you have to do when using it in
such an environement is to call logger_init() at the beginning of your CGI,
that will garantee that everything will run smoothly (otherwise, issues with
the syslog socket can happen in mod_perl env).

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-2-686
Locale: LANG=fr_FR, LC_CTYPE=fr_FR (charmap=ISO-8859-1) (ignored: LC_ALL set to 
fr_FR)


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



Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Hendrik Sattler
Am Dienstag 21 November 2006 23:52 schrieb Kurt Roeckx:
 On Tue, Nov 21, 2006 at 04:50:29PM -0600, Peter Samuelson wrote:
  [Martin Zobel-Helas]
 
   gpg --recv-keys A70DAF536070D3A1  (gpg --export -a A70DAF536070D3A1 |
   apt-key add -)
 
  Uh, don't forget the part about verifying that the key is actually
  signed by the ftpmasters.  Skipping that step pretty much defeats the
  entire point.
 
gpg --list-sigs A70DAF536070D3A1

 Try gpg --check-sigs A70DAF536070D3A1 instead.

Or even better:
# gpg --keyring /usr/share/keyrings/debian-keyring.gpg --check-sigs 
A70DAF536070D3A1

I just assume that receiving the keys via the debian-keyring package ist more 
trustworthy than via a random public server. In the default configuration, it 
gives me:
# gpg --check-sigs A70DAF536070D3A1
pub   1024D/6070D3A1 2006-11-20 [expires: 2009-07-01]
uid  Debian Archive Automatic Signing Key (4.0/etch) 
[EMAIL PROTECTED]
sig!36070D3A1 2006-11-20  Debian Archive Automatic Signing Key 
(4.0/etch) [EMAIL PROTECTED]

2 signatures not checked due to missing keys


HS


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



Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Hamish Moffatt
On Wed, Nov 22, 2006 at 09:48:46AM +0100, Hendrik Sattler wrote:
 Or even better:
 # gpg --keyring /usr/share/keyrings/debian-keyring.gpg --check-sigs 
 A70DAF536070D3A1
 
 I just assume that receiving the keys via the debian-keyring package ist more 
 trustworthy than via a random public server. In the default configuration, it 

But you need to be able to validate that package in some fashion too.

Hamish
-- 
Hamish Moffatt VK3SB [EMAIL PROTECTED] [EMAIL PROTECTED]


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



bash features (Re: Question about Depends: bash)

2006-11-22 Thread Oleg Verych
On 2006-11-21, Ian Jackson wrote:
 Oleg Verych writes (Re: Question about Depends: bash):
 o `arrays'  bashizm - tmp=$@ ; set -- $ARRAY ; use_array $@ ; set -- $tmp

 This is another piece of bad advice: this approach is buggy if the
 arguments might contain whitespace, which is often the case (eg if
 they're filename arguments).

Who said, that it's without bugs, bugs of my usage or bugs in BaSH, dash?
NO WARRANTY message on every login (:?

(BTW, spaces in filenames are problem of those dual-boots, who have non
UTC BIOS time and such.)

IFS doesn't help there. Why?

Quotes can't help against _some_ contents of $ARRAY (in example above).
While i don't know how it should be, please, comment on below experiment,
which i think shows a bug:

,-*- bash -*-
|[EMAIL PROTECTED]:/tmp/b$ touch simple.file
|[EMAIL PROTECTED]:/tmp/b$ echo *
|simple.file
|[EMAIL PROTECTED]:/tmp/b$ echo '*'
|*
|[EMAIL PROTECTED]:/tmp/b$ set -- * ; echo $1
|simple.file
|[EMAIL PROTECTED]:/tmp/b$ set -- '*' ; echo $1
|simple.file
|[EMAIL PROTECTED]:/tmp/b$ set -- '\*' ; echo $1
|\*
|[EMAIL PROTECTED]:/tmp/b$ set -- \* ; echo $1
|simple.file
|[EMAIL PROTECTED]:/tmp/b$ set -- \\* ; echo $1
|\*
|[EMAIL PROTECTED]:/tmp/b$
`-*-

dash does the same way, `-f' option helps there, while its meaning for
`echo' and `set' seems to be different.



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



Re: bash features (Re: Question about Depends: bash)

2006-11-22 Thread Jean-Christophe Dubacq
On Wed, Nov 22, 2006 at 10:12:14AM +, Oleg Verych wrote:
 On 2006-11-21, Ian Jackson wrote:
  Oleg Verych writes (Re: Question about Depends: bash):
  o `arrays'  bashizm - tmp=$@ ; set -- $ARRAY ; use_array $@ ; set -- $tmp
 
  This is another piece of bad advice: this approach is buggy if the
  arguments might contain whitespace, which is often the case (eg if
  they're filename arguments).
 
 Who said, that it's without bugs, bugs of my usage or bugs in BaSH, dash?
 NO WARRANTY message on every login (:?
 
 (BTW, spaces in filenames are problem of those dual-boots, who have non
 UTC BIOS time and such.)

No. I use spaces in my filenames, and protect them accordingly in
scripts. For example, I remember a configuration file of KDE that used
to have a space in its names (something with color in it; it escapes my
mind right now).


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



Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Frans Pop
On Wednesday 22 November 2006 07:22, Andreas Tille wrote:
 But Hendrik Sattler is perfectly right and this knowledge has to be
 stored at prominant places like:

 a) installation manual
 b) apt-key.8
 c) perhaps somewhere else

 Could maintainers of a) and b) (and perhaps c) ;-)) acknowledge, that
 this will be done

I don't think the Installation Guide is the correct place for this 
information (rationale: it has nothing to do with installing a system, 
but rather with maintaining an installed system).
I would suggest the Debian Reference instead.

 or should we rather file bug reports (IMHO with severity important)
 to these packages? 

Well, you probably know that a bug report with a patch attached is most 
likely to produce positive results :-)


pgpiwJrhVLhef.pgp
Description: PGP signature


Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Hendrik Sattler
Am Mittwoch 22 November 2006 11:05 schrieb Hamish Moffatt:
 On Wed, Nov 22, 2006 at 09:48:46AM +0100, Hendrik Sattler wrote:
  Or even better:
  # gpg --keyring /usr/share/keyrings/debian-keyring.gpg --check-sigs
  A70DAF536070D3A1
 
  I just assume that receiving the keys via the debian-keyring package ist
  more trustworthy than via a random public server. In the default
  configuration, it

 But you need to be able to validate that package in some fashion too.

To run in circles, here, any proposals for a trust anchor for random users 
Alice and Bob?
Assuming, I use the keyring-debian package from an older installation CD. If 
the keys to validate did not change, I kind of trust it because if attacks 
are not found in such a time, the whole thing is lost, anyway ;)
The GPG signing does not make authentication a always-trust-it thing. It just 
makes it a bit harder for an attacker (creating a fake keyring and uploading 
it to a random keyserver is possible, I assume).

Noone answered, yet, why this key is not in debian-archive-keyring package.
I thought that the whole idea was to make it available before it gets used. 
That would be the easiest (install it at installation time) and
apt-key update could be used.

HS


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



Folder option + Text link on your home page

2006-11-22 Thread Murali

Dear Sir/Madam,

I represent a start up company called Evolgence an online marketing firm
that is into content. I have just visited your website
wwwhttp://www.askoxford.com/.debian.org
and have liked what I seen.

I would like a text link on your home page that leads to a content based
folder hosted at your end. Our folder would contain content on a variety of
topics.

What I needed to know was how much would a text link + content folder cost
us? We are looking at long mutually beneficial business relationship that
results in our combined growth.
Looking forward to your response and an opportunity to do business

--
With regards
Murali


Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Luca Capello
Hello!

On Wed, 22 Nov 2006 12:09:58 +0100, Hendrik Sattler wrote:
 Noone answered, yet, why this key is not in debian-archive-keyring
 package.

It's there since the last update:
=
debian-archive-keyring (2006.11.22) unstable; urgency=low

  * Non-maintainer upload.
  * Add Etch release key
  * Bump priority to important (Closes: Bug#397698)
  * Update FSF address in copyright.

 -- Anthony Towns aj@azure.humbug.org.au  Wed, 22 Nov 2006 01:30:50 +1000
=

 I thought that the whole idea was to make it available before it
 gets used. 
 That would be the easiest (install it at installation time) and
 apt-key update could be used.

Full ACK.

Thx, bye,
Gismo / Luca


pgp7nG6u7Yo8m.pgp
Description: PGP signature


Bug#399844: ITP: samba4wins -- a full featured replicating WINS server for UNIX

2006-11-22 Thread Michael Adam
Package: wnpp
Severity: wishlist
Owner: Michael Adam [EMAIL PROTECTED]


* Package name: samba4wins
  Version : 1.0.5
  Upstream Author : Stefan Metzmacher [EMAIL PROTECTED]
* URL : http://ftp.sernet.de/pub/samba4WINS/debian/
* License : GPL
  Programming Lang: C
  Description : a full featured replicating WINS server for UNIX

The Samba4WINS project provides a full featured replicating WINS server 
for UNIX. It is a spinoff of the Samba 4 project, the upcoming version of
the Samba software suite and will also be available as part of the Samba 
suite as soon as Samba 4 is released. 
 
This package contains the components necessary to turn your Debian 
GNU/Linux box into a full featured replicating WINS server.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-2-686
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


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



double GPG signature in Release files

2006-11-22 Thread A Mennucc
hi

I use amd64 here ; recently all tools (aptitude, debmirror)
started complaining that archives are not properly signed ;
here is a snippet of code to show the situation:

$ cd /var/lib/apt/lists
$ for i in *Release ; do echo === $i ; \
 gpg --verify $i.gpg $i  echo  OK ; done

=== ftp.debian.org_debian_dists_unstable_Release
gpg: Signature made Wed Nov 22 00:19:30 2006 CET using DSA key ID 2D230C5F
gpg: Good signature from Debian Archive Automatic Signing Key (2006)
[EMAIL PROTECTED]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to the
owner.
Primary key fingerprint: 0847 50FC 01A6 D388 A643  D869 0109 0831 2D23 0C5F
gpg: Signature made Wed Nov 22 00:19:30 2006 CET using DSA key ID 6070D3A1
gpg: Can't check signature: public key not found
=== ftp.it.debian.org_debian_dists_etch_Release
gpg: Signature made Wed Nov 22 00:18:42 2006 CET using DSA key ID 2D230C5F
gpg: Good signature from Debian Archive Automatic Signing Key (2006)
[EMAIL PROTECTED]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to the
owner.
Primary key fingerprint: 0847 50FC 01A6 D388 A643  D869 0109 0831 2D23 0C5F
gpg: Signature made Wed Nov 22 00:18:42 2006 CET using DSA key ID 6070D3A1
gpg: Can't check signature: public key not found
=== ftp.it.debian.org_debian_dists_unstable_Release
gpg: Signature made Wed Nov 22 00:19:30 2006 CET using DSA key ID 2D230C5F
gpg: Good signature from Debian Archive Automatic Signing Key (2006)
[EMAIL PROTECTED]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to the
owner.
Primary key fingerprint: 0847 50FC 01A6 D388 A643  D869 0109 0831 2D23 0C5F
gpg: Signature made Wed Nov 22 00:19:30 2006 CET using DSA key ID 6070D3A1
gpg: Can't check signature: public key not found
=== security.debian.org_dists_etch_updates_Release
gpg: Signature made Tue Nov 21 19:14:24 2006 CET using DSA key ID 2D230C5F
gpg: Good signature from Debian Archive Automatic Signing Key (2006)
[EMAIL PROTECTED]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to the
owner.
Primary key fingerprint: 0847 50FC 01A6 D388 A643  D869 0109 0831 2D23 0C5F
 OK


as you see many archives seem to be signed with two keys:
1st is key 2D230C5F
 Debian Archive Automatic Signing Key (2006) [EMAIL PROTECTED]
2nd is a key 6070D3A1

why this ?

where do I find the latter key ?

a.



signature.asc
Description: OpenPGP digital signature


Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Paul Cager
 On Tue, 21 Nov 2006, Kurt Roeckx wrote:
 But Hendrik Sattler is perfectly right and this knowledge has to be stored
 at prominant places like:

 a) installation manual
 b) apt-key.8
 c) perhaps somewhere else

Should the apt-get warning message be changed to refer to apt-key.8?


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



Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread A Mennucc
Martin Zobel-Helas ha scritto:

 gpg --recv-keys A70DAF536070D3A1  (gpg --export -a A70DAF536070D3A1 | 
 apt-key add -)
 

$ gpg --recv-keys A70DAF536070D3A1
gpg: requesting key 6070D3A1 from hkp server keyring.debian.org
gpgkeys: key A70DAF536070D3A1 not found on keyserver
gpg: no valid OpenPGP data found.
gpg: Total number processed: 0



signature.asc
Description: OpenPGP digital signature


C-x $ (Re: First draft of review of policy must usage)

2006-11-22 Thread Oleg Verych
On 2006-10-25, Manoj Srivastava wrote:
[]
 +   p
 +For arch dependent packages, ttbinary-arch/tt must
 +exist, since it is used by the build daemons to auto
  +*buld* packages. The ttbinary-indep/tt target should
 +also exist. If one of them has nothing to do (which
 +will always be the case if the source generates only a
 +single binary package, whether architecture-dependent
 +or not), it can be a no-op. In that case, the no-op
 +target should still be present and should still
 +succeed.
 +   /p

Don't forget to run spell checker (my catch, ispell in jed doesn't work on
this patch).



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



Re: double GPG signature in Release files

2006-11-22 Thread A Mennucc
uh I see that there is a thread on that

a.



signature.asc
Description: OpenPGP digital signature


Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Joey Hess
Hamish Moffatt wrote:
 But you need to be able to validate that package in some fashion too.

In this case it's validated using the other signature on the packages
file, which is made with a key that apt already knows about.

-- 
see shy jo


signature.asc
Description: Digital signature


Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread A Mennucc
Luca Capello ha scritto:
 Hello!
 
 On Wed, 22 Nov 2006 12:09:58 +0100, Hendrik Sattler wrote:
 Noone answered, yet, why this key is not in debian-archive-keyring
 package.
 
 It's there since the last update:
 =
 debian-archive-keyring (2006.11.22) unstable; urgency=low
 
   * Non-maintainer upload.
   * Add Etch release key
   * Bump priority to important (Closes: Bug#397698)
   * Update FSF address in copyright.
 
  -- Anthony Towns aj@azure.humbug.org.au  Wed, 22 Nov 2006 01:30:50 +1000
 =
 
 I thought that the whole idea was to make it available before it
 gets used. 
 That would be the easiest (install it at installation time) and
 apt-key update could be used.
 

that package is only 2 days old and did not transition to etch yet

so it is too early to start signing etch archives with it 

and it empties the whole idea : to restore my trust path , I
will have to manually download that package and install it

a.



signature.asc
Description: OpenPGP digital signature


Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Julien Cristau
On Wed, Nov 22, 2006 at 14:53:38 +0100, A Mennucc wrote:

 that package is only 2 days old and did not transition to etch yet
 
 so it is too early to start signing etch archives with it 
 
 and it empties the whole idea : to restore my trust path , I
 will have to manually download that package and install it
 
no, because the Release file is still signed with the 2006 key, which is
in apt's keyring already.

Cheers,
Julien


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



Re: Question about Depends: bash

2006-11-22 Thread Tollef Fog Heen
* Oleg Verych 

| o `arrays'  bashizm - tmp=$@ ; set -- $ARRAY ; use_array $@ ; set -- $tmp

This is in no way equivalent (with dash):

[EMAIL PROTECTED]:\w$ set -- abcd efg hij
[EMAIL PROTECTED]:\w$ echo $@
abcd efg hij
[EMAIL PROTECTED]:\w$ echo $1
abcd efg
[EMAIL PROTECTED]:\w$ tmp=$@
[EMAIL PROTECTED]:\w$ set -- blah
[EMAIL PROTECTED]:\w$ set -- $tmp
[EMAIL PROTECTED]:\w$ echo $1
abcd
[EMAIL PROTECTED]:\w$

If you need arrays, use bash or a proper programming language.

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


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



just wait more next time, Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread A Mennucc
actually, there is no need for tons of documentation:
 the usage of the package debian-archive-keyring should
 really automate the whole thing, as long as it is done correctly:

1) release team generates new key and new package debian-archive-keyring
2) users install it : in postinst, /usr/bin/apt-key update is run
3) after some time (10 days), release team starts using new key

If done that way, it really works, and we have a trust path,
since the new package debian-archive-keyring is certified by
the old key.

The problem is that , in this particular case,
the new package debian-archive-keyring was released 22 Nov,
and the new key was used almost immediately : so people
using testing did not have time to import it.

next time, they should just wait (at least 10 days -
but maybe 30days would be better)

a.

Andreas Tille ha scritto:
 On Tue, 21 Nov 2006, Kurt Roeckx wrote:
 
 On Tue, Nov 21, 2006 at 04:50:29PM -0600, Peter Samuelson wrote:

 [Martin Zobel-Helas]
 gpg --recv-keys A70DAF536070D3A1  (gpg --export -a
 A70DAF536070D3A1 | apt-key add -)

 Uh, don't forget the part about verifying that the key is actually
 signed by the ftpmasters.  Skipping that step pretty much defeats the
 entire point.

   gpg --list-sigs A70DAF536070D3A1

 Try gpg --check-sigs A70DAF536070D3A1 instead.
 
 But Hendrik Sattler is perfectly right and this knowledge has to be stored
 at prominant places like:
 
a) installation manual
b) apt-key.8
c) perhaps somewhere else
 
 Could maintainers of a) and b) (and perhaps c) ;-)) acknowledge, that this
 will be done or should we rather file bug reports (IMHO with severity
 important) to these packages?
 
 Kind regards
 
  Andreas.
 
 PS: debian-boot@lists.debian.org in CC because of the installation manual
 issue.  Forgive me if this should be off-topic there.
 




signature.asc
Description: OpenPGP digital signature


Re: p.d.o and f.d.o inconsistency

2006-11-22 Thread Michael Banck
On Tue, Nov 21, 2006 at 10:15:33PM +0100, Milan P. Stanic wrote:
 Question is: p.d.o doesn't reflect actual status of the packages?

It is always outdated by at least a day, due to mirroring/syncing etc.
issues.  There might be additional issues which makes it temporarily
outdated even more sometimes.


Michael


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



Re: azureus upload

2006-11-22 Thread Michael Banck
On Tue, Nov 21, 2006 at 01:25:54PM -0700, Shaun Jackman wrote:
 On 11/19/06, Joerg Jaspert [EMAIL PROTECTED] wrote:
  Simple fix for you: Upload a new one, ie slightly changing upstreams
  version number.
 
 Any comments on this migration from contrib to main?

You already got the above comment, if there have been no further
comments, it still stands I guess.


Michael


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



Re: Progress report on CodeFestAkihabara, macbook Debian installation experience

2006-11-22 Thread Junichi Uekawa
 I've just followed the instructions on the http://wiki.debian.org/MacBook wiki
 to install Debian etch RC1 (i386) on my new core 2 macbook.  I also tried
 installing etch RC1 (amd64), but I failed because the refit package isn't 
 built
 for amd64:

 
 admin/refit_0.7-3: Failed by buildd_ia64-caballero [optional:uncompiled]
   Reasons for failing:
 [Category: none]
 not ours
   Previous state was Building until 2006 Jul 13 17:45:14
 
 (from http://people.debian.org/~igloo/package-status.php?package=refit).
 
 Is someone already working on this, or should I poke at it and try to build it
 on an amd64 machine?

Short answer no.1: ia64 isn't amd64.

Short answer no.2: The following is the real information, we're
waiting for gnu-efi

amd64

admin/refit_0.7-3: Dep-Wait by buildd_i386-excelsior [optional:uncompiled]
  Dependencies: gnu-efi
  Previous state was Building until 2006 Aug 19 17:04:56



regards,
junichi
-- 
[EMAIL PROTECTED],netfort.gr.jp}   Debian Project


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



Re: Bug#398752: nvi package should provide virtual package editor

2006-11-22 Thread Eddy Petrișor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

(please keep me in CC)

Jan Christoph Nordholz wrote:
 Hi Eddy,
 (CCing d-devel, joining Christoph Haas' thread)
 
 The nvi package is an editor, but in spite of that it does not provide
 the virtual package editor.

 Please add this Provides.
 
 please see this discussion thread[1] back in 1996 about the virtual packages
 list that is included in the policy. AFAICT, the consensus was that al-
 though the editor virtual package wouldn't hurt, it wouldn't improve things
 either, so it was removed from the list again (after being on it for only
 a few months).

Well, some people provided some (good) counter examples, but they seem 
unreplied.
Look at [1], [2] and at this:

I am concerned about programs that might use $EDITOR as the means to
providing an editor. Pine, for instance, can be configured to call an
editor under certain circumstances. If no editor is available (due to
being removed) then, as we all know, pine will flash an error message for
all of 1/20th of a second and then stare at you. Emacs also has conditions
where it calls an outside editor, and I'm sure that there are others.
Problems of this type, caused by the lack of an editor will appear to be
bugs in other software. This is something to be avoided, in my estimation.


 OTOH, virtually every editor package out there seems to (still? yet?)
 provide it:
 
 ] [EMAIL PROTECTED]:~$ grep-available -n -FProvides editor -sPackage
 ] nano-tiny emacs-snapshot-nox emacs21-nox vim aee deutex emacs-snapshot
 ] emacs21 jed nano emacs xjed python-soya emacs-snapshot-gtk vim-tiny
 
 Personally, I'd be happy to add the Provides if it weren't for
 this paragraph:
 
 ] Packages MUST NOT use virtual package names (except privately, amongst
 ] a cooperating group of packages) unless they have been agreed upon and
 ] appear in this list.

It appears that is a fact that many package use/need/might use this virtual
package name. (Note that I haven't digged into each of the packages listed
to see the reasons, so I might be wrong on some of them).

Depends:
etpan-ng
ldapvi

Suggests:
udo-doc-de
udo-doc-en
xpaint

Packages that could use the virtual package:
- - mutt and mutt-ng - could recomend an editor since there are many out
there using vim or another as an editor.
- - reportbug - obviously caould depend on editor
- - subversion - commit messages can invoke the editor
- - pida - could depend on editor (AFAICT, it can integrate it)
- - education-common - seems to recommend both vim and emacs packages - not sure
why, but it seems it would recommend an editor
- - junior-writing - maybe as a second alternative to nano, so nano is prefered
- - ocaml-tools - suggests vim
- - any configurable programming environment which allows choosing the editor

Also, the virtual package editor could be added as essential somehow allowing
the users to have the editor of choice on the system.

Note that any package that uses the alternative for editor could use this
virtual package.

 All opinions and clarifications welcome...

 [1] http://lists.debian.org/debian-devel/1996/08/msg4.html

This reply explains exactly my problem since there are packages which explicitly
depend on a certain editor while they desire just *an* editor:

[1] http://lists.debian.org/debian-devel/1996/08/msg00071.html
[2] http://lists.debian.org/debian-devel/1996/08/msg00067.html


- --
Regards,
EddyP
=
Imagination is more important than knowledge A.Einstein
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.5 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFZGiRY8Chqv3NRNoRApQ3AJ0fjKMkDhV8MrMuRuYGT4qrDz7asACaAshX
luaU9vqid98E6YCnAFNIh8I=
=0Zfv
-END PGP SIGNATURE-


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



Re: azureus upload

2006-11-22 Thread Shaun Jackman

On 11/22/06, Michael Banck [EMAIL PROTECTED] wrote:

On Tue, Nov 21, 2006 at 01:25:54PM -0700, Shaun Jackman wrote:
 On 11/19/06, Joerg Jaspert [EMAIL PROTECTED] wrote:
  Simple fix for you: Upload a new one, ie slightly changing upstreams
  version number.

 Any comments on this migration from contrib to main?

You already got the above comment, if there have been no further
comments, it still stands I guess.


Fine. Seems like a hack that should be fixed though. Perhaps for etch+1.

Cheers,
Shaun


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



Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread A Mennucc
Julien Cristau ha scritto:
 On Wed, Nov 22, 2006 at 14:53:38 +0100, A Mennucc wrote:
 
 that package is only 2 days old and did not transition to etch yet

 so it is too early to start signing etch archives with it 

 and it empties the whole idea : to restore my trust path , I
 will have to manually download that package and install it

 no, because the Release file is still signed with the 2006 key, which is
 in apt's keyring already.

you are right on that : I can check that at least one key is verifying OK
but gpgv returns an error for that;
so debmirror does not run : look

$ cd /var/lib/apt/lists
$ for i in *unstable*Release ; do echo === $i ; \
 gpg --verify $i.gpg $i  echo  OK ; done

=== ftp.debian.org_debian_dists_unstable_Release
gpg: Signature made Wed Nov 22 00:19:30 2006 CET using DSA key ID 2D230C5F
gpg: Good signature from Debian Archive Automatic Signing Key (2006)
[EMAIL PROTECTED]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:  There is no indication that the signature belongs to the
owner.
Primary key fingerprint: 0847 50FC 01A6 D388 A643  D869 0109 0831 2D23 0C5F
gpg: Signature made Wed Nov 22 00:19:30 2006 CET using DSA key ID 6070D3A1
gpg: Can't check signature: public key not found

as you see, no OK is printed.

a.





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



Re: azureus upload

2006-11-22 Thread Shaun Jackman

On 11/22/06, Shaun Jackman [EMAIL PROTECTED] wrote:

On 11/22/06, Michael Banck [EMAIL PROTECTED] wrote:
 On Tue, Nov 21, 2006 at 01:25:54PM -0700, Shaun Jackman wrote:
  On 11/19/06, Joerg Jaspert [EMAIL PROTECTED] wrote:
   Simple fix for you: Upload a new one, ie slightly changing upstreams
   version number.
 
  Any comments on this migration from contrib to main?

 You already got the above comment, if there have been no further
 comments, it still stands I guess.

Fine. Seems like a hack that should be fixed though. Perhaps for etch+1.


The relevant bug is dak #232730: orig tarball not moved when changing
from contrib to main. It is 2 years and 281 days old today.

Cheers,
Shaun


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



Bug#399893: ITP: flashrom -- A universal flash programming utility

2006-11-22 Thread Uwe Hermann
Package: wnpp
Severity: wishlist
Owner: Uwe Hermann [EMAIL PROTECTED]

* Package name: flashrom
  Version : svn-r2497
  Upstream Author : LinuxBIOS developers
* URL : 
http://tracker.linuxbios.org/trac/LinuxBIOS/browser/trunk/LinuxBIOSv2/util/flashrom
* License : GPL
  Programming Lang: C
  Description : A universal flash programming utility

Flashrom is a universal flash programming utility for flash chips
(e.g. in DIP or PLCC packaging). It can be used to flash BIOS images,
for example.


Uwe.
-- 
http://www.hermann-uwe.de  | http://www.holsham-traders.de
http://www.crazy-hacks.org | http://www.unmaintained-free-software.org


signature.asc
Description: Digital signature


Re: Question about Depends: bash

2006-11-22 Thread Michelle Konzack
Am 2006-11-20 02:48:10, schrieb Oleg Verych:
 On 2006-11-18, Michelle Konzack wrote:
  Hello,
 
  Regarding the discusion about POSIX and sh I have a grave problem.
 
  My scripts (or better programs) are using #!/bin/bash because I use
  BASH specific extensions.
 
 Please, list them *all*. I'm really concerned about GNU bash and getting
 _rid_ of it, providing users with tutorial on how do this without loosing
 *any* functionality.

I am using things like 

  Arrays
  ${#NAME}
  ${parameter:-word}
  ${parameter:=word}
  ${parameter:offset}
  ${parameter:offset:length}
  disown

OK, some of thease can be constructed but it takes some time longer.

I have already tested some of my scripts and tried to change it, but
the it works in one shell but not more in another...

So I stay with BASH.

Thanks, Greetings and nice Night
Michelle Konzack


-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
   50, rue de Soultz MSM LinuxMichi
0033/6/6192519367100 Strasbourg/France   IRC #Debian (irc.icq.com)


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



Re: Question about Depends: bash

2006-11-22 Thread David Weinehall
On Wed, Nov 22, 2006 at 07:31:37PM +0100, Michelle Konzack wrote:
[snip]
   ${#NAME}
   ${parameter:-word}
   ${parameter:=word}

These are supported in SuSv3 compliant shells too.

   ${parameter:offset}
   ${parameter:offset:length}

These are not.

   disown

You actually use job-control in your shell-scripts?  Interesting...


Regards: David
-- 
 /) David Weinehall [EMAIL PROTECTED] /) Rime on my window   (\
//  ~   //  Diamond-white roses of fire //
\)  http://www.acc.umu.se/~tao/(/   Beautiful hoar-frost   (/


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



Re: Question about Depends: bash

2006-11-22 Thread Oleg Verych
On 2006-11-22, Tollef Fog Heen wrote:
 * Oleg Verych 

| o `arrays'  bashizm - tmp=$@ ; set -- $ARRAY ; use_array $@ ; set -- $tmp

 This is in no way equivalent (with dash):

 [EMAIL PROTECTED]:\w$ set -- abcd efg hij
 [EMAIL PROTECTED]:\w$ echo $@
 abcd efg hij
 [EMAIL PROTECTED]:\w$ echo $1
 abcd efg
 [EMAIL PROTECTED]:\w$ tmp=$@
 [EMAIL PROTECTED]:\w$ set -- blah
 [EMAIL PROTECTED]:\w$ set -- $tmp
 [EMAIL PROTECTED]:\w$ echo $1
 abcd
 [EMAIL PROTECTED]:\w$

 If you need arrays, use bash or a proper programming language.

Guys. Once more. Spaces is your problem, not my.

In case of spaces in file names, what isn't such a synthetic test
case, i would use temp. file with them, and would read it by lines.

Array means you have some kind of index or iterator, i think, it's ok
with temp. file and ok 2 times if you deal with files.

Real problem is different 'set --' implementations. In bash it honors IFS in
dash it doesn't. Both don't honor quotes for pathname expansions (as
i've mentioned, -f helps). busybox has its own set --.

As big thread about POSIX shell shows, one must have a real documetation
to implement features. BaSH's man page doesn't have clear line between
shiny-features and a must for bourne shell. Many bashizms are right
from there.

As all this GFDL ... thing shows who is right, i will work towards
Debian Viva, GNU R.I.P., as development and answer to my footer.

--
-o--=O`C  info emacs : not found  /. .\ ( is there any reason to live? )
 #oo'L O  info make  : not found  o (R.I.P. Debian Operating System)
___=E M  man gcc: not found.-- (  TNX, RMS.   )


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



Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Bartosz Fenski aka fEnIo
On Wed, Nov 22, 2006 at 12:09:58PM +0100, Hendrik Sattler wrote:
 Noone answered, yet, why this key is not in debian-archive-keyring package.
 I thought that the whole idea was to make it available before it gets used. 
 That would be the easiest (install it at installation time) and
 apt-key update could be used.

Worse for me is that I couldn't find *any* official announcement about this
new key. I wonder what are our mailing lists and webpage for.

regards
fEnIo

-- 
  ,''`.  Bartosz Fenski | mailto:[EMAIL PROTECTED] | pgp:0x13fefc40 | irc:fEnIo
 : :' :   32-050 Skawina - Glowackiego 3/15 - malopolskie v. - Poland
 `. `'   phone:+48602383548 | proud Debian maintainer and user
   `-  http://skawina.eu.org | jid:[EMAIL PROTECTED] | rlu:172001


signature.asc
Description: Digital signature


Re: Bug#398752: nvi package should provide virtual package editor

2006-11-22 Thread Jan Christoph Nordholz
severity 398752 wishlist
clone 398752 -1
reassign -1 debian-policy
retitle -1 (Re-)Add editor to virtual package list
block 398752 by -1
thankyou

(adding CC:d-policy, last time to CC:d-devel)

Hi Eddy,

 Well, some people provided some (good) counter examples, but they seem 
 unreplied.
 Look at [1], [2] and at this:

yes, I know. Dale got no response in the end, while Ian argued that there is
no true dependency (pine can work fine without an editor, although somewhat
limited) and that users should be able to remove what(ever) they want to.

As I said, if it were for me only, I'd simply add the Provides. I had hoped
that this discussion could be resumed and brought to a true conclusion, but
it looks as if d-devel isn't very interested in the matter.

So, dear policy list:

Is there a good reason not to re-add editor to the list? This would just
acknowledge the present situation, as most editor-like packages provide this
virtual package anyway, disregarding its removal from the list.

 Also, the virtual package editor could be added as essential somehow allowing
 the users to have the editor of choice on the system.

I don't think an editor is essential to the functionality of a system.


Regards,

Jan


signature.asc
Description: Digital signature


Re: Question about Depends: bash

2006-11-22 Thread Oleg Verych
On 2006-11-22, Michelle Konzack wrote:
[]
 I am using things like 

   Arrays
   ${#NAME}

In dash there is one, but i don't know about `*' and `@' there.

   ${parameter:-word}
   ${parameter:=word}

Both work.

   ${parameter:offset}
   ${parameter:offset:length}

Here you know what and where parameter has. Is it better to split it?

   disown

This one not needed, unless you are in x-terminal, AFAIK.

 OK, some of thease can be constructed but it takes some time longer.

 I have already tested some of my scripts and tried to change it, but
 the it works in one shell but not more in another...

 So I stay with BASH.

Yes... Kind of web-programming...

There's some documentation available, so will see. Hope it isn't kind of
undefined, implementation defined.



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



Seeking sponsor for MaxDB r-c upload

2006-11-22 Thread Martin Kittel
Hi,

as my regular sponsor is out of town I am looking for someone to sponsor
the upload of the latest maxdb-7.5.00 package that fixes a
release-critical bug for etch (#398413).
I would be very grateful if someone could take the time to upload the
package. The .dsc and .diff.gz as well as binary .debs for amd64 are
available at http://home.arcor.de/martin.kittel/

Many thanks in advance,

Martin.


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



Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread Bartosz Fenski aka fEnIo
On Tue, Nov 21, 2006 at 11:52:38PM +0100, Kurt Roeckx wrote:
   gpg --recv-keys A70DAF536070D3A1  (gpg --export -a A70DAF536070D3A1 | 
   apt-key add -)
  
  Uh, don't forget the part about verifying that the key is actually
  signed by the ftpmasters.  Skipping that step pretty much defeats the
  entire point.
  
gpg --list-sigs A70DAF536070D3A1
 
 Try gpg --check-sigs A70DAF536070D3A1 instead.

Very useful:

([EMAIL PROTECTED])~$gpg --check-sigs A70DAF536070D3A1
pub   1024D/6070D3A1 2006-11-20 [expires: 2009-07-01]
uid  Debian Archive Automatic Signing Key (4.0/etch) [EMAIL 
PROTECTED]
sig!36070D3A1 2006-11-20  Debian Archive Automatic Signing Key 
(4.0/etch) [EMAIL PROTECTED]

2 signatures not checked due to missing keys
([EMAIL PROTECTED])~$

Looks that it's signed by itself. 

regards
fEnIo

-- 
  ,''`.  Bartosz Fenski | mailto:[EMAIL PROTECTED] | pgp:0x13fefc40 | irc:fEnIo
 : :' :   32-050 Skawina - Glowackiego 3/15 - malopolskie v. - Poland
 `. `'   phone:+48602383548 | proud Debian maintainer and user
   `-  http://skawina.eu.org | jid:[EMAIL PROTECTED] | rlu:172001


signature.asc
Description: Digital signature


Re: Debian Archive Automatic Signing Key (4.0/etch)?

2006-11-22 Thread David Weinehall
On Wed, Nov 22, 2006 at 10:54:47PM +0100, Bartosz Fenski aka fEnIo wrote:
 On Tue, Nov 21, 2006 at 11:52:38PM +0100, Kurt Roeckx wrote:
gpg --recv-keys A70DAF536070D3A1  (gpg --export -a A70DAF536070D3A1 | 
apt-key add -)
   
   Uh, don't forget the part about verifying that the key is actually
   signed by the ftpmasters.  Skipping that step pretty much defeats the
   entire point.
   
 gpg --list-sigs A70DAF536070D3A1
  
  Try gpg --check-sigs A70DAF536070D3A1 instead.
 
 Very useful:
 
 ([EMAIL PROTECTED])~$gpg --check-sigs A70DAF536070D3A1
 pub   1024D/6070D3A1 2006-11-20 [expires: 2009-07-01]
 uid  Debian Archive Automatic Signing Key (4.0/etch) [EMAIL 
 PROTECTED]
 sig!36070D3A1 2006-11-20  Debian Archive Automatic Signing Key 
 (4.0/etch) [EMAIL PROTECTED]
 
 2 signatures not checked due to missing keys

^^^

Those signatures are:

sig  2A4E3EAA 2006-11-20  Anthony Towns [EMAIL PROTECTED]
sig  29982E5A 2006-11-21  Steve Langasek [EMAIL PROTECTED]

 ([EMAIL PROTECTED])~$
 
 Looks that it's signed by itself. 

Yes, aren't all keys self-signed?


Regards: David
-- 
 /) David Weinehall [EMAIL PROTECTED] /) Rime on my window   (\
//  ~   //  Diamond-white roses of fire //
\)  http://www.acc.umu.se/~tao/(/   Beautiful hoar-frost   (/


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



Re: Proposed new POSIX sh policy, version two

2006-11-22 Thread Jari Aalto
Russ Allbery [EMAIL PROTECTED] writes:

 Okay, here's try number two.  I tried to incorporate the feedback from
 various people.  Please critique.
 
 --- debian-policy-3.7.2.2/policy.sgml 2006-10-02 15:36:50.0 -0700
 +++ /home/eagle/dvl/policy/policy.sgml2006-11-20 22:35:59.0 
 -0800
 @@ -5662,7 +5670,7 @@
   file/etc/default/file, which typically will have the same
   base name as the fileinit.d/file script.  This extra file
   should be sourced by the script when the script runs.  It
 - must contain only variable settings and comments in POSIX
 + must contain only variable settings and comments in SUSv3
   prgnsh/prgn format.  It may either be a
   ttconffile/tt or a configuration file maintained by
   the package maintainer scripts.  See ref id=config-files
 @@ -6723,34 +6731,54 @@
   /p
  
   p
 -   The standard shell interpreter file/bin/sh/file can be a
 -   symbolic link to any POSIX compatible shell, if ttecho
 -   -n/tt does not generate a newline.footnote
 -   Debian policy specifies POSIX behavior for
 -   file/bin/sh/file, but ttecho -n/tt has widespread
 -   use in the Linux community (in particular including this
 -   policy, the Linux kernel source, many Debian scripts,
 -   etc.).  This ttecho -n/tt mechanism is valid but not
 -   required under POSIX, hence this explicit addition.
 -   Also, rumour has it that this shall be mandated under
 -   the LSB anyway.
 +   Scripts may assume that file/bin/sh/file implements the
 +   SUSv3 Shell Command Languagefootnote
 + Single UNIX Specification, version 3, which is also IEEE
 + 1003.1-2004 (POSIX), and is available on the World Wide Web
 + from url id=http://www.unix.org/version3/online.html;
 +   name=The Open Group after free
 + registration./footnote
 +   plus the following additional features not mandated by
 +   SUSv3:footnote
 + These features are in widespread use in the Linux community
 + and are implemented in all of bash, dash, and ksh, the most
 + common shells users may wish to use as file/bin/sh/file.
 /footnote
 -   Thus, shell scripts specifying file/bin/sh/file as
 -   interpreter must only use POSIX features. If a script
 -   requires non-POSIX features from the shell interpreter, the
 -   appropriate shell must be specified in the first line of the
 -   script (e.g., tt#!/bin/bash/tt) and the package must
 -   depend on the package providing the shell (unless the shell
 -   package is marked Essential, as in the case of
 -   prgnbash/prgn).
 +   list
 + itemttecho -n/tt, if implemented as a shell built-in,
 +   must not generate a newline./item
 + itemtttest/tt, if implemented as a shell built-in, must
 +   support tt-a/tt and tt-o/tt as binary logical
 +   operators./item
 + itemttlocal/tt to create a scoped variable must be
 +   supported; however, ttlocal/tt may or may not preserve
 +   the variable value from an outer scope and may or may not
 +   support arguments more complex than simple variable.  Only
 +  uses such as:
 +example compact
 +fname () {
 +local a
 +a=''
 +# ... use a ...
 +}
 +/example
 +  must be supported.
 +/item
 +   /list
 +   If a shell script requires non-SUSv3 features from the shell
 +   interpreter other than those listed above, the appropriate shell
 +   must be specified in the first line of the script (e.g.,
 +   tt#!/bin/bash/tt) and the package must depend on the package
 +   providing the shell (unless the shell package is marked
 +   Essential, as in the case of prgnbash/prgn).
   /p

I would drop that special case and always require explicit
requirement for the shell. It's more clear to see which packages
need bash to make them work. someone may then provide a patch to
make bash go away. I suggest removing the last 2 lines:

  If a shell script requires non-SUSv3 features from the shell
  interpreter other than those listed above, the appropriate shell
  must be specified in the first line of the script (e.g.,
  tt#!/bin/bash/tt) and the package must depend on the package
  providing the shell.
/p
  
   p
 -   You may wish to restrict your script to POSIX features when
 -   possible so that it may use file/bin/sh/file as its
 -   interpreter. If your script works with prgndash/prgn
 -   (originally called prgnash/prgn), it's probably POSIX
 -   compliant, but if you are in doubt, use
 +   You may wish to restrict your script to SUSv3 features plus the
 +   above set when possible so that it may use file/bin/sh/file
 +   as its interpreter. If your script 

Re: Proposed new POSIX sh policy, version two

2006-11-22 Thread Russ Allbery
Jari Aalto [EMAIL PROTECTED] writes:

 I would drop that special case and always require explicit requirement
 for the shell. It's more clear to see which packages need bash to make
 them work. someone may then provide a patch to make bash go away.

This would conflict with Policy 3.5, which says that packages should not
depend on any essential package unless they need a specific version.
Policy shouldn't contradict itself, so I think this would require further
discussion and justification for making an exception for bash.

In practice, I don't think it would ever be possible to remove any feature
from the set of essential packages in Debian.

-- 
Russ Allbery ([EMAIL PROTECTED])   http://www.eyrie.org/~eagle/


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



Re: Proposed new POSIX sh policy, version two

2006-11-22 Thread Thomas Bushnell BSG
On Thu, 2006-11-23 at 01:15 +0200, Jari Aalto wrote:
 
 I would drop that special case and always require explicit
 requirement for the shell. It's more clear to see which packages
 need bash to make them work. someone may then provide a patch to
 make bash go away. I suggest removing the 

Russ has already explained why this would violate other parts of policy.

I'm interested in why we should care at all.  Perl is a far bigger space
hog than bash.

Someone somewhere told a Big Lie: bash isn't essential to Debian.
Lots of people perhaps believe this lie, and have a Grand Quest to make
bash go away.  What is the reason?  Why is it worth energy on the part
of *everyone else*?

Thomas



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


Re: ITP: PySparse - a sparse linear algebra extension for Python

2006-11-22 Thread Andrew Donnellan

On 11/20/06, Adam C Powell IV [EMAIL PROTECTED] wrote:


Second, I may need some advice on the license:

Copyright (c) 2001-2003, ETH Zurich and Roman Geus
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright
  notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
  copyright notice, this list of conditions and the following
  disclaimer in the documentation and/or other materials provided
  with the distribution.
* Neither the name of the ETH Zurich nor the names of its
  contributors may be used to endorse or promote products derived
  from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
AS IS AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

I believe this allows redistribution by Debian, but can't tell whether
this restricts this package to non-free.



BSDish AFAICS. OK for main.

--
Andrew Donnellan
-- Email - ajdlinuxATgmailDOTcom (primary)
-- Email - ajdlinuxATexemailDOTcomDOTau (secure)
http://andrewdonnellan.com
http://ajdlinux.wordpress.com
Jabber - [EMAIL PROTECTED]
GPG - hkp://subkeys.pgp.net 0x5D4C0C58
---
Member of Linux Australia - http://linux.org.au
Debian user - http://debian.org
Get free rewards - http://ezyrewards.com/?id=23484
OpenNIC user - http://www.opennic.unrated.net


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



Bug#399958: ITP: tclap -- Templated command-line argument parser

2006-11-22 Thread Dirk Eddelbuettel

Package: wnpp
Owner: Dirk Eddelbuettel [EMAIL PROTECTED]
Severity: wishlist

* Package name: libtclap-dev
  Version : 1.1-0
  Upstream Author : Mike Smoot [EMAIL PROTECTED]
* URL or Web page : http://tclap.sourceforge.net/
* License : BSD (see below)
  Description : Templated command-line argument parser

This package provides a simple C++ library that facilitates parsing
command-line arguments in a type-independent manner.  The functionality is
provided via template header files, so no actual library is included.

I started using tclap to provide simple, elegant and featureful command-line
parsing routines for my C++ programs. The packages is pretty well documented,
has numerous examples and a large number of unit tests (and I include
examples and tests in the .deb).

A draft package is at http://dirk.eddelbuettel.com/code/tmp/

Comments and suggestions are welcome (and please CC me as I'm no longer on
debian-devel). We do have a few similar packages, but nothing had quite this
feature set.

Regards, Dirk

PS The original COPYING file is below. It is my understanding that this
BSD-alike, no?



Copyright (c) 2003 Michael E. Smoot 

Permission is hereby granted, free of charge, to any person 
obtaining a copy of this software and associated documentation 
files (the Software), to deal in the Software without restriction, 
including without limitation the rights to use, copy, modify, merge, 
publish, distribute, sublicense, and/or sell copies of the Software, 
and to permit persons to whom the Software is furnished to do so, 
subject to the following conditions:

The above copyright notice and this permission notice shall be 
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, 
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES 
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN 
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR 
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 
THE SOFTWARE.




-- 
Hell, there are no rules here - we're trying to accomplish something. 
  -- Thomas A. Edison


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



RFH: linux-2.6 patch needs tester

2006-11-22 Thread Goswin von Brederlow
Hi,

I wrote a patch for the linux-2.6 source top enable 64bit kernels for
i386 as we had in sarge. I've tested the patch on amd64 and i386 so I
know native builds will work.

What I can't properly test (for lack of hardware) is cross compiling
linux-2.6.


I'm looking for someone with !i386,!amd64 and a cross-compiler for
i386 that could give that patch at the end of

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=379090
http://bugs.debian.org/cgi-bin/bugreport.cgi/64bit_i386_kernels.patch?bug=379090;msg=94;att=1

a spin around the block.

apt-get source linux-2.6, apply patch, debuild -ai386

MfG
Goswin


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



Re: Accepted jokosher 0.2-1 (source all)

2006-11-22 Thread Daniel Holbach
Hello Florian,

Am Mittwoch, den 22.11.2006, 17:17 + schrieb Florian Ragwitz:
  jokosher (0.2-1) unstable; urgency=low
  .
* New upstream release.
* Update 10_desktop_file for 0.2.
* Location of installed files changed slightly.
  + Modify debian/jokosher.sh and debian/jokosher.install according to 
 that.
* Some docs have been removed from the upstream tarball. Remove then from
  the Debian package as well.

good work on the package. With my next upload of jokosher, I'll merge
our efforts in Ubuntu again.

I'm a bit curious about your upload though. Did you test recording
something or adding an instrument? It failed for me, because it uses
'audiopanorama' (newer gstreamer) and 'gnloperation' (newer gnonlin).
That's the reason, why I didn't upload jokosher yet. Does that work in
Debian?

Have a nice day,
 Daniel



signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Re: Accepted jokosher 0.2-1 (source all)

2006-11-22 Thread Daniel Holbach
Am Donnerstag, den 23.11.2006, 07:45 +0100 schrieb Daniel Holbach:
 Hello Florian,

Sorry everybody. I woke up too early today to recognize the forced
Reply-To.

Have a nice day,
 Daniel



signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Re: RFH: linux-2.6 patch needs tester

2006-11-22 Thread Hendrik Sattler
Am Donnerstag 23 November 2006 07:43 schrieb Goswin von Brederlow:
 I wrote a patch for the linux-2.6 source top enable 64bit kernels for
 i386 as we had in sarge. I've tested the patch on amd64 and i386 so I
 know native builds will work.

You wrote in #379090:
Without that flag the build tries to use x86_64-linux-gnu-gcc, which
is not available on i386. Only gcc -m64 is.

Well, why isn't this changed, then? A small script on i386 like:
- /usr/bin/x86_64-linux-gnu-gcc -
#!/bin/sh
exec `basename $0 | cut -f 4 -d -` -m64 $@
-
with links from others should be not problem and would remove all special 
cases.
Simply fake the cross-compilation and you have no special case anymore. This 
might also be good for other situations where you want to compile for amd64 
on i386 but must omit the runtime checks.

HS


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



Accepted smtpguard 1.1.3-1.1 (source amd64)

2006-11-22 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 15 Nov 2006 09:54:57 +0100
Source: smtpguard
Binary: postfix-smtpguard libsmtpguard-dev libsmtpguard1 smtpguard
Architecture: source amd64
Version: 1.1.3-1.1
Distribution: unstable
Urgency: medium
Maintainer: Takuo KITAME [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 libsmtpguard-dev - Development files for smtpguard
 libsmtpguard1 - Shared library of smtpguard
 postfix-smtpguard - smtpguard policy service daemon for Postfix
 smtpguard  - smtp flow control
Closes: 398547
Changes: 
 smtpguard (1.1.3-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * debian/control: add missing dependency on adduser
 Closes: #398547
Files: 
 d58d954f3fd66f2efdb7716d0aba3c7c 708 mail optional smtpguard_1.1.3-1.1.dsc
 d9b7f257554aa3596c56cc0d76b033c2 4806 mail optional smtpguard_1.1.3-1.1.diff.gz
 0554762ee9dd99b2896e523228dfa028 32102 mail optional 
smtpguard_1.1.3-1.1_amd64.deb
 aaa172207efef3e08549417b47f3bd8a 7840 mail optional 
postfix-smtpguard_1.1.3-1.1_amd64.deb
 64da687b68a42d934190024a94282df4 20030 libs optional 
libsmtpguard1_1.1.3-1.1_amd64.deb
 caf277b78d8714451801bb14b3133772 23622 libdevel optional 
libsmtpguard-dev_1.1.3-1.1_amd64.deb

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

iD8DBQFFZAlLEFV7g4B8rCURAm/QAJ9eI8m6QoNgvgYine3qC0ZLMWeFiACcCg5r
kRaN3zDUVQwuzdu6XQPfudY=
=BX1L
-END PGP SIGNATURE-


Accepted:
libsmtpguard-dev_1.1.3-1.1_amd64.deb
  to pool/main/s/smtpguard/libsmtpguard-dev_1.1.3-1.1_amd64.deb
libsmtpguard1_1.1.3-1.1_amd64.deb
  to pool/main/s/smtpguard/libsmtpguard1_1.1.3-1.1_amd64.deb
postfix-smtpguard_1.1.3-1.1_amd64.deb
  to pool/main/s/smtpguard/postfix-smtpguard_1.1.3-1.1_amd64.deb
smtpguard_1.1.3-1.1.diff.gz
  to pool/main/s/smtpguard/smtpguard_1.1.3-1.1.diff.gz
smtpguard_1.1.3-1.1.dsc
  to pool/main/s/smtpguard/smtpguard_1.1.3-1.1.dsc
smtpguard_1.1.3-1.1_amd64.deb
  to pool/main/s/smtpguard/smtpguard_1.1.3-1.1_amd64.deb


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



Accepted octaviz 0.4.5-3 (source i386)

2006-11-22 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 21 Nov 2006 11:14:07 +0100
Source: octaviz
Binary: octaviz
Architecture: source i386
Version: 0.4.5-3
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 octaviz- 3D visualization system for Octave
Closes: 399576
Changes: 
 octaviz (0.4.5-3) unstable; urgency=low
 .
   [ Thomas Weber ]
   * Add missing directories to build system (Closes: 399576)
Files: 
 6a592cb871ecb436c8dbf92c2bb6a2b3 727 math optional octaviz_0.4.5-3.dsc
 46c22ab10f847dac5c29f45d7c9b9c76 12880 math optional octaviz_0.4.5-3.diff.gz
 5ac72b77023dda798cbe41e57e6a 15078492 math optional 
octaviz_0.4.5-3_i386.deb

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

iD8DBQFFYxxVk3oga0pdcv4RArycAJ9lNatQBfQMznSuTYuy7EnhCB8MZgCdGj5e
Ezfq99PLvpCnc+sY7i+q+qc=
=a+T5
-END PGP SIGNATURE-


Accepted:
octaviz_0.4.5-3.diff.gz
  to pool/main/o/octaviz/octaviz_0.4.5-3.diff.gz
octaviz_0.4.5-3.dsc
  to pool/main/o/octaviz/octaviz_0.4.5-3.dsc
octaviz_0.4.5-3_i386.deb
  to pool/main/o/octaviz/octaviz_0.4.5-3_i386.deb


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



Accepted gnome-utils 2.14.0.dfsg-3 (source i386)

2006-11-22 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 09:28:54 +0100
Source: gnome-utils
Binary: gnome-utils
Architecture: source i386
Version: 2.14.0.dfsg-3
Distribution: unstable
Urgency: high
Maintainer: Marco Cabizza [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 gnome-utils - GNOME desktop utilities
Changes: 
 gnome-utils (2.14.0.dfsg-3) unstable; urgency=high
 .
   * Update all *.po files; rename 10_fr-po-too-fuzzy-cvs to
 10_po-too-fuzzy-cvs; thanks Simon Paillard; update LINGUAS in configure.in
 and configure.
Files: 
 8db1fb2e57cfdcf09b8ebe0fb10e20ea 1809 gnome optional 
gnome-utils_2.14.0.dfsg-3.dsc
 8553dcb1e1531b924bf204b79eef19c2 382340 gnome optional 
gnome-utils_2.14.0.dfsg-3.diff.gz
 20e12561674f325d7f51e5ab3a2ae04f 2243410 gnome optional 
gnome-utils_2.14.0.dfsg-3_i386.deb

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

iD8DBQFFZBOl4VUX8isJIMARAvp5AJ95uPzkJkdhjV2fnKrbjXEetTBUWQCcCWcC
PEhVcq1mBuntsnRUyjKA+hs=
=JZA2
-END PGP SIGNATURE-


Accepted:
gnome-utils_2.14.0.dfsg-3.diff.gz
  to pool/main/g/gnome-utils/gnome-utils_2.14.0.dfsg-3.diff.gz
gnome-utils_2.14.0.dfsg-3.dsc
  to pool/main/g/gnome-utils/gnome-utils_2.14.0.dfsg-3.dsc
gnome-utils_2.14.0.dfsg-3_i386.deb
  to pool/main/g/gnome-utils/gnome-utils_2.14.0.dfsg-3_i386.deb


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



Accepted tex-common 0.39 (source all)

2006-11-22 Thread Frank Küster
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 21 Nov 2006 18:32:32 +0100
Source: tex-common
Binary: tex-common
Architecture: source all
Version: 0.39
Distribution: unstable
Urgency: low
Maintainer: Debian TeX maintainers [EMAIL PROTECTED]
Changed-By: Frank Küster [EMAIL PROTECTED]
Description: 
 tex-common - Common infrastructure for using and building TeX in Debian
Closes: 397717
Changes: 
 tex-common (0.39) unstable; urgency=low
 .
   * changelog editing: fix wrong bugnumber in last upload [frank]
   * Add a more verbose explanation to the warning when updmap-sys failed
 (closes: #397717), and echo errors to stderr. [frank]
   * Change default priority for dh_installtex to 20, and document in the
 TeX Policy that 10 is reserved for Basic TeX packages.  This would
 have avoided bug #399447. [frank]
Files: 
 8ca16023b0603dd6a5ab7c545eb8ade8 756 tex optional tex-common_0.39.dsc
 aab9b5d4813ed6dcbf8c240556de4434 481919 tex optional tex-common_0.39.tar.gz
 d564a506be0527ce501b2510140b58d6 474992 tex optional tex-common_0.39_all.deb

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

iD8DBQFFZBw3+xs9YyJS+hoRAgo7AJ0bfDbHdwWAn1sLgutTth+fj5TRCACgjn09
306BhxgsZpYgY9dF6ebp6gA=
=LBZ8
-END PGP SIGNATURE-


Accepted:
tex-common_0.39.dsc
  to pool/main/t/tex-common/tex-common_0.39.dsc
tex-common_0.39.tar.gz
  to pool/main/t/tex-common/tex-common_0.39.tar.gz
tex-common_0.39_all.deb
  to pool/main/t/tex-common/tex-common_0.39_all.deb


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



Accepted curator 2.1-8 (source all)

2006-11-22 Thread Sven Hoexter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 10:13:51 +0100
Source: curator
Binary: curator
Architecture: source all
Version: 2.1-8
Distribution: unstable
Urgency: low
Maintainer: Sven Hoexter [EMAIL PROTECTED]
Changed-By: Sven Hoexter [EMAIL PROTECTED]
Description: 
 curator- Turn directories of images into static web content
Changes: 
 curator (2.1-8) unstable; urgency=low
 .
   * Rip out the complete Python policy changes and go back to
 a simple dependency on the python package.
 - Removed dh_pysupport call from debian/rules.
 - Removed Build-Indep-Depends on python-dev and python-support.
 - Substitude ${python:Depends} with python.
Files: 
 4e6a3a8b476fb4013adb5b1d7399be60 611 web optional curator_2.1-8.dsc
 254c8d53414b5d359bd6a55c4062ad24 9498 web optional curator_2.1-8.diff.gz
 06101d5c5dee62a6502939885f51a096 36122 web optional curator_2.1-8_all.deb

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

iD8DBQFFZB9FYDBbMcCf01oRArVXAJ9VFwcwIzm+x/aDgynPcmwVd5igdwCgmov2
Jd5HOEhi2BDvcfOy0dCuPkA=
=7SGc
-END PGP SIGNATURE-


Accepted:
curator_2.1-8.diff.gz
  to pool/main/c/curator/curator_2.1-8.diff.gz
curator_2.1-8.dsc
  to pool/main/c/curator/curator_2.1-8.dsc
curator_2.1-8_all.deb
  to pool/main/c/curator/curator_2.1-8_all.deb


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



Accepted icedove 1.5.0.8-2 (source i386 all)

2006-11-22 Thread Alexander Sack
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 21 Nov 2006 19:35:00 +0100
Source: icedove
Binary: icedove-inspector icedove-dev thunderbird-dbg thunderbird-inspector 
icedove-typeaheadfind mozilla-thunderbird-typeaheadfind icedove-dbg 
thunderbird-gnome-support thunderbird-typeaheadfind icedove 
mozilla-thunderbird-inspector icedove-gnome-support thunderbird 
mozilla-thunderbird-dev thunderbird-dev mozilla-thunderbird
Architecture: source i386 all
Version: 1.5.0.8-2
Distribution: unstable
Urgency: low
Maintainer: Alexander Sack [EMAIL PROTECTED]
Changed-By: Alexander Sack [EMAIL PROTECTED]
Description: 
 icedove- free/unbranded thunderbird mail client
 icedove-dbg - debugging symbols for icedove/thunderbird
 icedove-dev - development files for icedove/thunderbird
 icedove-gnome-support - GNOME support package for icedove/thunderbird
 icedove-inspector - DOM inspector extension for icedove/thunderbird
 icedove-typeaheadfind - typeaheadfind extension for icedove/thunderbird
 mozilla-thunderbird - Transition package for icedove rename
 mozilla-thunderbird-dev - Transition package for icedove-dev rename
 mozilla-thunderbird-inspector - Transition package for icedove-inspector rename
 mozilla-thunderbird-typeaheadfind - Transition package for 
icedove-typeaheadfind rename
 thunderbird - Transition package for icedove rename
 thunderbird-dbg - Transition package for icedove-dbg rename
 thunderbird-dev - Transition package for icedove-dev rename
 thunderbird-gnome-support - Transition package for icedove-gnome-support rename
 thunderbird-inspector - Transition package for icedove-inspector rename
 thunderbird-typeaheadfind - Transition package for icedove-typeaheadfind rename
Closes: 363865 378360 384359 393123 398037 398468 399083 399692 399723
Changes: 
 icedove (1.5.0.8-2) unstable; urgency=low
 .
   * fix mozilla.in for real (for transitional thunderbird link
 (Closes: 393123, 398037)
   * apply basque debconf translation (eu.po) for real
 (Closes: 398468)
   * included nl.po provided by Nick Niktaris [EMAIL PROTECTED]
 renaming as icedove first (Closes: 378360)
   * include greek translation in icedove.desktop provided by
 Nick Niktaris [EMAIL PROTECTED] (Closes: 384359)
   * include updated de.po translation provided by
 Alwin Meschede [EMAIL PROTECTED] (Closes: 399083)
   * apply FTBFS on GNU/kFreeBSD porters patch provided by
 Petr Salinger [EMAIL PROTECTED] (Closes: 399692),
 which is claimed to provide a fix for ppc64 ftbfs too
 (Closes: 363865)
   * remove debug echo from icedove.preinst (Closes: 399723)
Files: 
 b1d9d51bba0a2483d5a321ec2c823b7f 1846 mail optional icedove_1.5.0.8-2.dsc
 32bdc593b4010a881f01a2eec01e435a 466282 mail optional icedove_1.5.0.8-2.diff.gz
 8eb055bc8b32691385d69f7522d57674 10798400 mail optional 
icedove_1.5.0.8-2_i386.deb
 7400529ab7ce7cfc952c4df01c6b0c0c 188398 mail optional 
icedove-inspector_1.5.0.8-2_i386.deb
 b0cfe9e92ed48f57a21d655a6d998fd5 45620 mail optional 
icedove-gnome-support_1.5.0.8-2_i386.deb
 82d0ec4ce0df385a841f1763073b9b5d 26492 mail optional 
thunderbird-gnome-support_1.5.0.8-2_all.deb
 8d1d704836433e4e7ae7a5cfccc9b51d 55958 mail optional 
icedove-typeaheadfind_1.5.0.8-2_i386.deb
 0ef038581fee3c81e58a1d4bfd06b213 3612632 mail optional 
icedove-dev_1.5.0.8-2_i386.deb
 00d67ad6f859651165acd395b62791a9 50490030 mail optional 
icedove-dbg_1.5.0.8-2_i386.deb
 75ffc65d5a7db888b80fd2a6f4bebc82 26468 mail optional 
thunderbird-dbg_1.5.0.8-2_all.deb
 dbe726cc857fabb3f7031eafb938d5e4 26464 mail optional 
thunderbird_1.5.0.8-2_all.deb
 a8f91ddfb28d668c31287a15699b8955 26476 mail optional 
mozilla-thunderbird_1.5.0.8-2_all.deb
 87a62401fcb2d632bd849377bdc7ebc2 26502 mail optional 
mozilla-thunderbird-inspector_1.5.0.8-2_all.deb
 104c839edb973d591e90f4163c6d54f8 26484 mail optional 
thunderbird-inspector_1.5.0.8-2_all.deb
 da17076c8386dcb782c14b9308f58da4 26504 mail optional 
mozilla-thunderbird-typeaheadfind_1.5.0.8-2_all.deb
 1940154ab806f5218f203dc00d11e776 26502 mail optional 
thunderbird-typeaheadfind_1.5.0.8-2_all.deb
 1235e0b4406b449d477462142e44a33a 26476 mail optional 
thunderbird-dev_1.5.0.8-2_all.deb
 a7ae23259f317c5b42e98e30c41d598a 26488 mail optional 
mozilla-thunderbird-dev_1.5.0.8-2_all.deb

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

iQIVAwUBRWN53MjxMGWNdiHmAQId/w/9FB0xgrd+R4rYrG8RZ9bK3/GCqvj/Bwqf
0qgCV5DYGtkd7o6hQS0A/Nyqtblqi6jkTc88siY1rI+gl6vkYoFY7Nnn2ZJxP51X
S9bflEDXq5ZrlmIMjfQOfzHypngzgJSIktYV+gMdum4zf+5iUVdUTrxCdb4fsIc+
fTkshqQavVwZDORXoe0mL9LN3S3Ya6ScdSh3/aDJZt3KjFZL5vwTd/TxsQh8Se8g
lIgLa6sqgfs2gPViNlkQ5SWLfWjNYZj/sSD4vgOBMwHIQFbuRErLM4ahx3ysmDut
AlId1AMNNLY4OJtAyLLK8d3hIB1GclwmGNbBt5ThuPHUvdNQkgB7WRU7wWbfAAa/
5W7pY6X+rM6nKv8+pkBetWKtklq9dw8vXczkUuLSzptD8e34tB48YqK8h+2KCZrM
X34qY6Sz3gvtK6+0pPDshAG81gJebUvZrqBZ8D1DgEqi/6WZIFY06gr5pqy70AFo
KWhpEYg7VI2qaMLEO4BvOu2ihE+JhL6H2hW9tt6bPaS6AVaLKRqz4pM4TOHIPys3
unE6iGoeAwTjr6EIcD0NAgX225ZPe6YjpNM3eSZLZiJNhmPtiXfEdbviBgJXEAoz

Accepted phpgacl 3.3.7-3.2 (source all)

2006-11-22 Thread Steinar H. Gunderson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 11:35:00 +0100
Source: phpgacl
Binary: phpgacl
Architecture: all source 
Version: 3.3.7-3.2
Distribution: unstable
Urgency: high
Maintainer: Steinar H. Gunderson [EMAIL PROTECTED]
Changed-By: Steinar H. Gunderson [EMAIL PROTECTED]
Description: 
 phpgacl- PHP Generic Access Control Lists
Closes: 398634
Changes: 
 phpgacl (3.3.7-3.2) unstable; urgency=high
 .
   * Non-maintainer upload.
   * Also depend on mysql-client, as it is also supported.
 (Really Closes: #398634)
Files: 
 d7d131de08aa78a939e7e299b85858af 639 web optional phpgacl_3.3.7-3.2.dsc
 ba0c4f14e82780f2829f9f7250294d0a 1812208 web optional phpgacl_3.3.7-3.2_all.deb
 e7d7f1fd79a7c3eb894370b5299f7f5f 11362 web optional phpgacl_3.3.7-3.2.diff.gz

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

iD8DBQFFZCh8XKRQ3lK3SH4RAizEAKCjGaZelGzIk6S0i/s1/zoSjF6PVACfbSRV
npmmEV8gGw7q79KABNEt+G4=
=hViF
-END PGP SIGNATURE-


Accepted:
phpgacl_3.3.7-3.2.diff.gz
  to pool/main/p/phpgacl/phpgacl_3.3.7-3.2.diff.gz
phpgacl_3.3.7-3.2.dsc
  to pool/main/p/phpgacl/phpgacl_3.3.7-3.2.dsc
phpgacl_3.3.7-3.2_all.deb
  to pool/main/p/phpgacl/phpgacl_3.3.7-3.2_all.deb


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



Accepted libcalendar-simple-perl 1.17-2 (source all)

2006-11-22 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 11:46:28 +0100
Source: libcalendar-simple-perl
Binary: libcalendar-simple-perl
Architecture: source all
Version: 1.17-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]
Description: 
 libcalendar-simple-perl - Perl extension to create simple calendars
Changes: 
 libcalendar-simple-perl (1.17-2) unstable; urgency=low
 .
   * Adopted for Debian Perl Group
   * debian/control: Build-Depends: debhelper increased to (= 5)
   * debian/compat: updated to 5
Files: 
 56db31e575cb424250d7f656987d8c3f 809 perl optional 
libcalendar-simple-perl_1.17-2.dsc
 bebfc38c3aa06acd35eaab4f69ba1882 2490 perl optional 
libcalendar-simple-perl_1.17-2.diff.gz
 199232f78e1f2de36b25911cb1b32d73 10756 perl optional 
libcalendar-simple-perl_1.17-2_all.deb

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

iD8DBQFFZCuP+NMfSd6w7DERAvBuAJ4tdNCMzua6xp+Ze+AhLFMWvU7G8gCeNxoC
1iTArv6QxOKpsrawdZS5WJI=
=M5rk
-END PGP SIGNATURE-


Accepted:
libcalendar-simple-perl_1.17-2.diff.gz
  to 
pool/main/libc/libcalendar-simple-perl/libcalendar-simple-perl_1.17-2.diff.gz
libcalendar-simple-perl_1.17-2.dsc
  to pool/main/libc/libcalendar-simple-perl/libcalendar-simple-perl_1.17-2.dsc
libcalendar-simple-perl_1.17-2_all.deb
  to 
pool/main/libc/libcalendar-simple-perl/libcalendar-simple-perl_1.17-2_all.deb


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



Accepted texinfo 4.8.dfsg.1-4 (source i386)

2006-11-22 Thread Frank Küster
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 12:04:54 +0100
Source: texinfo
Binary: texinfo info
Architecture: source i386
Version: 4.8.dfsg.1-4
Distribution: unstable
Urgency: high
Maintainer: Norbert Preining [EMAIL PROTECTED]
Changed-By: Frank Küster [EMAIL PROTECTED]
Description: 
 info   - Standalone GNU Info documentation browser
 texinfo- Documentation system for on-line information and printed output
Changes: 
 texinfo (4.8.dfsg.1-4) unstable; urgency=high
 .
   * Apply patch by Josh Bressers [EMAIL PROTECTED] to fix
 CVE-2006-4810, added as 33_texindex_CVE-2006-4810.dpatch
   * Add myself to Uploaders so this doesn't look like an NMU.
Files: 
 2c233d2bf6627eac32deb9bb87726ea1 680 doc standard texinfo_4.8.dfsg.1-4.dsc
 e01520524bc114d90a2a1e5eefe71b50 101211 doc standard 
texinfo_4.8.dfsg.1-4.diff.gz
 2deac9cb56abe7d4559dcb956b037fab 680962 text standard 
texinfo_4.8.dfsg.1-4_i386.deb
 18f1155d88419daaf6a849475ede3b60 164870 doc important 
info_4.8.dfsg.1-4_i386.deb

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

iD8DBQFFZDZ1+xs9YyJS+hoRAv8jAKCJqHUcbaGkn3uTA1w1d84xVn69/ACfYw+g
B5gdnsoWthvy4f6/igxto0k=
=Mle0
-END PGP SIGNATURE-


Accepted:
info_4.8.dfsg.1-4_i386.deb
  to pool/main/t/texinfo/info_4.8.dfsg.1-4_i386.deb
texinfo_4.8.dfsg.1-4.diff.gz
  to pool/main/t/texinfo/texinfo_4.8.dfsg.1-4.diff.gz
texinfo_4.8.dfsg.1-4.dsc
  to pool/main/t/texinfo/texinfo_4.8.dfsg.1-4.dsc
texinfo_4.8.dfsg.1-4_i386.deb
  to pool/main/t/texinfo/texinfo_4.8.dfsg.1-4_i386.deb


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



Accepted mysql-dfsg-5.0 5.0.27-1 (source all i386)

2006-11-22 Thread Christian Hammers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Nov 2006 21:26:25 +0100
Source: mysql-dfsg-5.0
Binary: libmysqlclient15-dev mysql-client mysql-client-5.0 mysql-server 
mysql-server-4.1 mysql-server-5.0 mysql-common libmysqlclient15off
Architecture: source all i386
Version: 5.0.27-1
Distribution: unstable
Urgency: medium
Maintainer: Christian Hammers [EMAIL PROTECTED]
Changed-By: Christian Hammers [EMAIL PROTECTED]
Description: 
 libmysqlclient15-dev - mysql database development files
 libmysqlclient15off - mysql database client library
 mysql-client - mysql database client (meta package depending on the latest 
versi
 mysql-client-5.0 - mysql database client binaries
 mysql-common - mysql database common files (e.g. /etc/mysql/my.cnf)
 mysql-server - mysql database server (meta package depending on the latest 
versi
 mysql-server-4.1 - mysql database server (transitional package)
 mysql-server-5.0 - mysql database server binaries
Closes: 390889 394607 398186 398784 399045 399074 399087
Changes: 
 mysql-dfsg-5.0 (5.0.27-1) unstable; urgency=medium
 .
   * New upstream version (but no codechange, the only difference to 5.0.26
 was a patch to the ABI change which Debian already included.
   * When dist-upgrading from mysql-server-4.1/sarge dpkg does not longer
 ask unnecessary config file has changed questions regarding
 /etc/init.d/mysql, /etc/logrotate.d/mysql-server and
 /etc/mysql/debian-start just because these files previously belonged
 to mysql-server-4.1 and not to mysql-server-5.0.
 To archive this mysql-server-5.0 now pre-depends on mysql-common which
 provides current versions of those files.
   * The automatic run mysql_upgrade now works with non-standard datadir
 settings, too (thanks to Benjami Villoslada). Closes: #394607
   * Debconf now asks if the old_passwords option is really needed.
   * Improved explanations of the old_passwords variable in my.cnf.
   * Removed possibly leftover cron script from MySQL-4.1 (thanks to
 Mario Oyorzabal Salgado). Closes: #390889
   * Postrm ignores failed userdel mysql.
   * Updated Danish Debconf translation (thanks to Claus Hindsgaul).
 Closes: #398784
   * Added Euskarian Debconf translation (thanks to Piarres Beobide).
 Closes: #399045
   * Updated Japanese Debconf translation (thanks to Hideki Yamane).
 Closes: #399074
   * Updated German Debconf translation (thanks to Alwin Meschede).
 Closes: #399087
   * New Portuguese debconf translations from Miguel Figueiredo.
 Closes: #398186
Files: 
 ba3d1fa235b65f76f6ca403b9cddb778 1108 misc optional mysql-dfsg-5.0_5.0.27-1.dsc
 a7b5c50fca7b5ef78cd9b555d9180a60 19025198 misc optional 
mysql-dfsg-5.0_5.0.27.orig.tar.gz
 444737ca93b428c07ac145b70e3a644b 139996 misc optional 
mysql-dfsg-5.0_5.0.27-1.diff.gz
 7f2c0be967095e34c95c8092e1c63efd 50552 misc optional 
mysql-common_5.0.27-1_all.deb
 dcd01e167f0a53a6ce6cd9f81b189f3e 44108 misc optional 
mysql-server_5.0.27-1_all.deb
 6bff1324c81c414e11b34b5aab69d58e 42034 misc optional 
mysql-client_5.0.27-1_all.deb
 324ccd5e6f654d36a5f26204c6843366 1767376 libs optional 
libmysqlclient15off_5.0.27-1_i386.deb
 94132fa9fee26928fc53c4f8002b4393 6883704 libdevel optional 
libmysqlclient15-dev_5.0.27-1_i386.deb
 1cdfb9f2787d1527048618a890ba249c 7119576 misc optional 
mysql-client-5.0_5.0.27-1_i386.deb
 ed627e3a9c3aa9719ec87194abc1253a 25012900 misc optional 
mysql-server-5.0_5.0.27-1_i386.deb
 95830e55c3f9cd81109be9f517e5499f 44132 misc optional 
mysql-server-4.1_5.0.27-1_i386.deb

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

iEYEARECAAYFAkVkI84ACgkQkR9K5oahGObRxQCdHx5yhgEkHORTP/UQOhAkNGKW
lYUAn0ufS+ms5TtRUSoQnHPFyDnn7Ofd
=7ibw
-END PGP SIGNATURE-


Accepted:
libmysqlclient15-dev_5.0.27-1_i386.deb
  to pool/main/m/mysql-dfsg-5.0/libmysqlclient15-dev_5.0.27-1_i386.deb
libmysqlclient15off_5.0.27-1_i386.deb
  to pool/main/m/mysql-dfsg-5.0/libmysqlclient15off_5.0.27-1_i386.deb
mysql-client-5.0_5.0.27-1_i386.deb
  to pool/main/m/mysql-dfsg-5.0/mysql-client-5.0_5.0.27-1_i386.deb
mysql-client_5.0.27-1_all.deb
  to pool/main/m/mysql-dfsg-5.0/mysql-client_5.0.27-1_all.deb
mysql-common_5.0.27-1_all.deb
  to pool/main/m/mysql-dfsg-5.0/mysql-common_5.0.27-1_all.deb
mysql-dfsg-5.0_5.0.27-1.diff.gz
  to pool/main/m/mysql-dfsg-5.0/mysql-dfsg-5.0_5.0.27-1.diff.gz
mysql-dfsg-5.0_5.0.27-1.dsc
  to pool/main/m/mysql-dfsg-5.0/mysql-dfsg-5.0_5.0.27-1.dsc
mysql-dfsg-5.0_5.0.27.orig.tar.gz
  to pool/main/m/mysql-dfsg-5.0/mysql-dfsg-5.0_5.0.27.orig.tar.gz
mysql-server-4.1_5.0.27-1_i386.deb
  to pool/main/m/mysql-dfsg-5.0/mysql-server-4.1_5.0.27-1_i386.deb
mysql-server-5.0_5.0.27-1_i386.deb
  to pool/main/m/mysql-dfsg-5.0/mysql-server-5.0_5.0.27-1_i386.deb
mysql-server_5.0.27-1_all.deb
  to pool/main/m/mysql-dfsg-5.0/mysql-server_5.0.27-1_all.deb


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



Accepted gtkdialog 2:0.7.9-1 (source i386)

2006-11-22 Thread Fabio Tranchitella
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 20 Nov 2006 23:30:24 +0100
Source: gtkdialog
Binary: gtkdialog
Architecture: source i386
Version: 2:0.7.9-1
Distribution: unstable
Urgency: low
Maintainer: Fabio Tranchitella [EMAIL PROTECTED]
Changed-By: Fabio Tranchitella [EMAIL PROTECTED]
Description: 
 gtkdialog  - GUI-creation command-line utility based on GTK+ library
Changes: 
 gtkdialog (2:0.7.9-1) unstable; urgency=low
 .
   * New upstream release.
   * Starting a new epoch, as upstream changed version numbering.
Files: 
 bddb0b72aa7a298f0769391c09ac7f97 670 interpreters optional 
gtkdialog_0.7.9-1.dsc
 e0eebb5a1d2301738c34c8b5b692cf7a 278341 interpreters optional 
gtkdialog_0.7.9.orig.tar.gz
 e85a18d32dcc43cd1564adb7c83cc610 26652 interpreters optional 
gtkdialog_0.7.9-1.diff.gz
 6f645032426369d5745a9f50f900bb7b 77218 interpreters optional 
gtkdialog_0.7.9-1_i386.deb

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

iD8DBQFFZDx3K/juK3+WFWQRAs2HAJ9dy11GWxJN99DA1n6g6lg6sY8iswCgiDfA
H4qJvcgVYsMRFBYddMHF3uo=
=488k
-END PGP SIGNATURE-


Accepted:
gtkdialog_0.7.9-1.diff.gz
  to pool/main/g/gtkdialog/gtkdialog_0.7.9-1.diff.gz
gtkdialog_0.7.9-1.dsc
  to pool/main/g/gtkdialog/gtkdialog_0.7.9-1.dsc
gtkdialog_0.7.9-1_i386.deb
  to pool/main/g/gtkdialog/gtkdialog_0.7.9-1_i386.deb
gtkdialog_0.7.9.orig.tar.gz
  to pool/main/g/gtkdialog/gtkdialog_0.7.9.orig.tar.gz


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



Accepted image-size 3.01-1 (source all)

2006-11-22 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 12:58:21 +0100
Source: image-size
Binary: libimage-size-perl
Architecture: source all
Version: 3.01-1
Distribution: unstable
Urgency: low
Maintainer: Christoph Berg [EMAIL PROTECTED]
Changed-By: Christoph Berg [EMAIL PROTECTED]
Description: 
 libimage-size-perl - determine the size of images in several common formats
Changes: 
 image-size (3.01-1) unstable; urgency=low
 .
   * New upstream release.
   * Uses libmodule-build-perl.
   * Install example script.
Files: 
 68a45e561b7c75842ccd2ac037f76339 657 perl optional image-size_3.01-1.dsc
 1487850535c2425fa0efdc70269376e2 140960 perl optional 
image-size_3.01.orig.tar.gz
 96665c89e57476b95a490493679aabe6 3141 perl optional image-size_3.01-1.diff.gz
 fa403117c4a474a58d814d218d88fd2a 42068 perl optional 
libimage-size-perl_3.01-1_all.deb

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

iD8DBQFFZD9kxa93SlhRC1oRAtNNAKDGga96pYhd4XNfAV1dfQXiyibWDACgku7W
UNTQDqNs6Z/XbED1cdHyQRU=
=keLN
-END PGP SIGNATURE-


Accepted:
image-size_3.01-1.diff.gz
  to pool/main/i/image-size/image-size_3.01-1.diff.gz
image-size_3.01-1.dsc
  to pool/main/i/image-size/image-size_3.01-1.dsc
image-size_3.01.orig.tar.gz
  to pool/main/i/image-size/image-size_3.01.orig.tar.gz
libimage-size-perl_3.01-1_all.deb
  to pool/main/i/image-size/libimage-size-perl_3.01-1_all.deb


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



Accepted tzsetup 1:0.13 (source all)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 13:16:54 +0100
Source: tzsetup
Binary: tzsetup-udeb
Architecture: source all
Version: 1:0.13
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 tzsetup-udeb - choose timezone (udeb)
Closes: 395524 397576 397649
Changes: 
 tzsetup (1:0.13) unstable; urgency=low
 .
   * Make /target/etc/localtime a copy of instead of a symlink to the timezone
 in line with what tzconfig now does (see #346342). Closes: #395524.
 I suspect this also fixes the occasional reports we've had of the clock
 being wrong after reboot. Closes: #397576, #397649.
 .
   [ Updated translations ]
   * Bosnian (bs.po) by Safir Secerovic
   * Georgian (ka.po) by Aiet Kolkhi
   * Kurdish (ku.po) by rizoye-xerzi
Files: 
 354915db049d553658930346f0369d19 740 debian-installer standard tzsetup_0.13.dsc
 9798252870acccad20cd1b3fbe0d5b30 78750 debian-installer standard 
tzsetup_0.13.tar.gz
 71eb232ac17f8b4b90749f5e00d901cf 51806 debian-installer standard 
tzsetup-udeb_0.13_all.udeb
Package-Type: udeb

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

iD8DBQFFZEAFgm/Kwh6ICoQRAhYJAKCTElu4zc0vUTKU7S+iFndP9AiluwCfbLUy
1R9LOwz5yTH8Ag8W0/vuUTw=
=8ger
-END PGP SIGNATURE-


Accepted:
tzsetup-udeb_0.13_all.udeb
  to pool/main/t/tzsetup/tzsetup-udeb_0.13_all.udeb
tzsetup_0.13.dsc
  to pool/main/t/tzsetup/tzsetup_0.13.dsc
tzsetup_0.13.tar.gz
  to pool/main/t/tzsetup/tzsetup_0.13.tar.gz


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



Accepted libtemplate-plugin-calendar-simple-perl 0.02-3 (source all)

2006-11-22 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 13:22:55 +0100
Source: libtemplate-plugin-calendar-simple-perl
Binary: libtemplate-plugin-calendar-simple-perl
Architecture: source all
Version: 0.02-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]
Description: 
 libtemplate-plugin-calendar-simple-perl - Simple calendar plugin for perl 
Template Toolkit
Changes: 
 libtemplate-plugin-calendar-simple-perl (0.02-3) unstable; urgency=low
 .
   * Adopted for Debian Perl Group
   * debian/control:
+ Standards-Version: increased to 3.7.2.1
+ debhelper (= 5) moved to Build-Depends:
   * debian/compat: increased to 5
Files: 
 ad97dbf3d7fc56d2eb3c505ea7f593bd 912 perl optional 
libtemplate-plugin-calendar-simple-perl_0.02-3.dsc
 94c8909c584ac5d146ea3e0fa38861a7 2332 perl optional 
libtemplate-plugin-calendar-simple-perl_0.02-3.diff.gz
 58bd6d530fe9c953d5369c695b01141c 7462 perl optional 
libtemplate-plugin-calendar-simple-perl_0.02-3_all.deb

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

iD8DBQFFZEX2+NMfSd6w7DERAvwmAJ0T5QIKBCpFZqFyIBox6ekih3NkRACcCw8X
Z+q3fiYhfPXdF9Eu+pU7lt0=
=Ll+0
-END PGP SIGNATURE-


Accepted:
libtemplate-plugin-calendar-simple-perl_0.02-3.diff.gz
  to 
pool/main/libt/libtemplate-plugin-calendar-simple-perl/libtemplate-plugin-calendar-simple-perl_0.02-3.diff.gz
libtemplate-plugin-calendar-simple-perl_0.02-3.dsc
  to 
pool/main/libt/libtemplate-plugin-calendar-simple-perl/libtemplate-plugin-calendar-simple-perl_0.02-3.dsc
libtemplate-plugin-calendar-simple-perl_0.02-3_all.deb
  to 
pool/main/libt/libtemplate-plugin-calendar-simple-perl/libtemplate-plugin-calendar-simple-perl_0.02-3_all.deb


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



Accepted aplus-fsf 4.20.2-5 (source i386 all)

2006-11-22 Thread Neil Roeth
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 18 Nov 2006 09:23:17 -0500
Source: aplus-fsf
Binary: aplus-fsf-el aplus-fsf-dev aplus-fsf xfonts-kapl aplus-fsf-doc
Architecture: source i386 all
Version: 4.20.2-5
Distribution: unstable
Urgency: medium
Maintainer: Neil Roeth [EMAIL PROTECTED]
Changed-By: Neil Roeth [EMAIL PROTECTED]
Description: 
 aplus-fsf  - A+ programming language run-time environment
 aplus-fsf-dev - A+ programming language development environment
 aplus-fsf-doc - A+ programming language documentation
 aplus-fsf-el - XEmacs lisp for A+ development
 xfonts-kapl - APL fonts for A+ development
Closes: 398832
Changes: 
 aplus-fsf (4.20.2-5) unstable; urgency=medium
 .
   * Move xfonts-kapl.postrm to .prerm, it depends on fc-cache which could
 get removed before this package, making the removal of xfonts-kapl
 fail.  Thanks to Lucas Nussbaum. (closes: #398832)
Files: 
 e045ae815210dbddb9733dec5810c9b1 669 interpreters optional 
aplus-fsf_4.20.2-5.dsc
 b62a7b055a01b6a32b17ef12762510fd 347035 interpreters optional 
aplus-fsf_4.20.2-5.diff.gz
 834fa53b3da221d0f3bd31884bb8d3c0 51626 x11 optional 
xfonts-kapl_4.20.2-5_all.deb
 4cfc296aaf35259fdcc976cfd8828638 23794 editors optional 
aplus-fsf-el_4.20.2-5_all.deb
 e01ec629a1d6f972bca8fab158185816 2875716 doc optional 
aplus-fsf-doc_4.20.2-5_all.deb
 2e00869f38b1c769312f4e7610976245 2663518 interpreters optional 
aplus-fsf_4.20.2-5_i386.deb
 a9c6440dfdb0b52c1c0d0f21f634670c 5438 devel optional 
aplus-fsf-dev_4.20.2-5_i386.deb

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

iD8DBQFFZD3S6j+skPrutKkRAq1SAKCxj9+WDaOQLyjhUQFPrdZ3Tl+YWgCgibSM
PUbaaueGfI2Ji1/QYCMbLHk=
=TiY9
-END PGP SIGNATURE-


Accepted:
aplus-fsf-dev_4.20.2-5_i386.deb
  to pool/main/a/aplus-fsf/aplus-fsf-dev_4.20.2-5_i386.deb
aplus-fsf-doc_4.20.2-5_all.deb
  to pool/main/a/aplus-fsf/aplus-fsf-doc_4.20.2-5_all.deb
aplus-fsf-el_4.20.2-5_all.deb
  to pool/main/a/aplus-fsf/aplus-fsf-el_4.20.2-5_all.deb
aplus-fsf_4.20.2-5.diff.gz
  to pool/main/a/aplus-fsf/aplus-fsf_4.20.2-5.diff.gz
aplus-fsf_4.20.2-5.dsc
  to pool/main/a/aplus-fsf/aplus-fsf_4.20.2-5.dsc
aplus-fsf_4.20.2-5_i386.deb
  to pool/main/a/aplus-fsf/aplus-fsf_4.20.2-5_i386.deb
xfonts-kapl_4.20.2-5_all.deb
  to pool/main/a/aplus-fsf/xfonts-kapl_4.20.2-5_all.deb


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



Accepted debian-installer-utils 1.40 (source i386 all)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 13:57:00 +0100
Source: debian-installer-utils
Binary: di-utils-terminfo di-utils-mapdevfs di-utils-shell di-utils-reboot 
di-utils di-utils-exit-installer
Architecture: source i386 all
Version: 1.40
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 di-utils   - Miscellaneous utilities for the debian installer (udeb)
 di-utils-exit-installer - Exit installer (udeb)
 di-utils-mapdevfs - mapdevfs utility for the debian installer (udeb)
 di-utils-reboot - Reboot (udeb)
 di-utils-shell - Execute a shell (udeb)
 di-utils-terminfo - Terminfo entries needed by newt/slang in debian installer 
(udeb)
Closes: 395920 398696
Changes: 
 debian-installer-utils (1.40) unstable; urgency=low
 .
   [ Joey Hess ]
   * user-params: skip items in preseed_aliases. Closes: #395920.
 .
   [ Frans Pop ]
   * Remove Thorsten Sauter from uploaders as requested by MIA team.
 .
   [ Colin Watson ]
   * list-devices: Look for ID_CDROM= in udevinfo output rather than
 ID_TYPE=cd when looking for CD devices. Closes: #398696.
 .
   [ Updated translations ]
   * Bulgarian (bg.po) by Damyan Ivanov
   * Bosnian (bs.po) by Safir Secerovic
   * Kurdish (ku.po) by rizoye-xerzi
   * Romanian (ro.po) by Eddy Petrișor
   * Slovenian (sl.po) by Matej Kovačič
Files: 
 b7eeb54615125c83b7b90f4668d545b8 1041 debian-installer standard 
debian-installer-utils_1.40.dsc
 91a05ee33a50c14de8e07f3cd1388f47 62284 debian-installer standard 
debian-installer-utils_1.40.tar.gz
 e92c56a972c3ad00df626d851450ecf6 16714 debian-installer standard 
di-utils-shell_1.40_all.udeb
 9f1719c427c341705dccd2d1aa920d5d 7534 debian-installer standard 
di-utils-reboot_1.40_all.udeb
 aab58808a86696acb3e76fb87954b237 2670 debian-installer extra 
di-utils-exit-installer_1.40_all.udeb
 beee69dce3b010cc82b00871e6cf8805 2390 debian-installer standard 
di-utils-terminfo_1.40_all.udeb
 42332e255783f214516cc4001dd579ad 9288 debian-installer standard 
di-utils_1.40_i386.udeb
 ea7ac6b24d9b083515bea09e104e9bca 2180 debian-installer standard 
di-utils-mapdevfs_1.40_i386.udeb
Package-Type: udeb

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

iD8DBQFFZEl4gm/Kwh6ICoQRAqV0AJ4rBEGbgT8CLVlH9vEm3P3+FwdMEACgx5uk
+1l2/tfUF932E5llojpKqmw=
=olV3
-END PGP SIGNATURE-


Accepted:
debian-installer-utils_1.40.dsc
  to pool/main/d/debian-installer-utils/debian-installer-utils_1.40.dsc
debian-installer-utils_1.40.tar.gz
  to pool/main/d/debian-installer-utils/debian-installer-utils_1.40.tar.gz
di-utils-exit-installer_1.40_all.udeb
  to pool/main/d/debian-installer-utils/di-utils-exit-installer_1.40_all.udeb
di-utils-mapdevfs_1.40_i386.udeb
  to pool/main/d/debian-installer-utils/di-utils-mapdevfs_1.40_i386.udeb
di-utils-reboot_1.40_all.udeb
  to pool/main/d/debian-installer-utils/di-utils-reboot_1.40_all.udeb
di-utils-shell_1.40_all.udeb
  to pool/main/d/debian-installer-utils/di-utils-shell_1.40_all.udeb
di-utils-terminfo_1.40_all.udeb
  to pool/main/d/debian-installer-utils/di-utils-terminfo_1.40_all.udeb
di-utils_1.40_i386.udeb
  to pool/main/d/debian-installer-utils/di-utils_1.40_i386.udeb


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



Accepted amavisd-new 1:2.4.2-5 (source all i386)

2006-11-22 Thread Henrique de Moraes Holschuh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 11:26:08 -0200
Source: amavisd-new
Binary: amavisd-new amavisd-new-milter
Architecture: source all i386
Version: 1:2.4.2-5
Distribution: unstable
Urgency: high
Maintainer: Brian May [EMAIL PROTECTED]
Changed-By: Henrique de Moraes Holschuh [EMAIL PROTECTED]
Description: 
 amavisd-new - Interface between MTA and virus scanner/content filters
 amavisd-new-milter - Interface between sendmail-milter and amavisd-new
Closes: 398978
Changes: 
 amavisd-new (1:2.4.2-5) unstable; urgency=high
 .
   * Update Brian May's email address (this needs to make it to Etch)
   * amavisd-new.postinst: Do not add amavis email aliases if a commented one
 is present (closes: #398978)
Files: 
 172e4e3405968f17e7339180125dd23c 999 mail extra amavisd-new_2.4.2-5.dsc
 638d178ba79338e0b950573e2c9eaf4f 71177 mail extra amavisd-new_2.4.2-5.diff.gz
 383e705096b16c90c9df9c17571fb9ba 593710 mail extra amavisd-new_2.4.2-5_all.deb
 98079a4018075cfc74d9fadf0504e189 30500 mail extra 
amavisd-new-milter_2.4.2-5_i386.deb

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

iQEVAwUBRWRRHIjztdzjjnrPAQLC8wf9EEtYhgpC/tvzdw9sD5xwo+1o6NFzf7Ss
2nPq8HsWBnzq7ve8Fyoq5ZdWFINt8gVb5oH96zy/2dglAETm51tuGHznXaJXpR61
Se2Ok61kWpsu9+YObtMsDjnH6hjgmDVOQGqIuaj1/m8We/NOkLqh+PNbdAx6/hyv
wDn40XVVShyRCq+EySs3MsSJze3UYRQZiUelZ2nkKuHnjPlu73JCGhu1v4f6eYMx
50Rh2raNR2jk20Sl/JpuE4gBlQ2Zerm3pBndk1orJ12XKxbU74gopcbzrmYIDot9
f/CRThnx00uPCL9rYqXkgutFzX1n/Obde4NrMVwiJe+rkFR6zbq0Zw==
=CUxI
-END PGP SIGNATURE-


Accepted:
amavisd-new-milter_2.4.2-5_i386.deb
  to pool/main/a/amavisd-new/amavisd-new-milter_2.4.2-5_i386.deb
amavisd-new_2.4.2-5.diff.gz
  to pool/main/a/amavisd-new/amavisd-new_2.4.2-5.diff.gz
amavisd-new_2.4.2-5.dsc
  to pool/main/a/amavisd-new/amavisd-new_2.4.2-5.dsc
amavisd-new_2.4.2-5_all.deb
  to pool/main/a/amavisd-new/amavisd-new_2.4.2-5_all.deb


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



Accepted cdebconf 0.109 (source i386 all)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 14:23:39 +0100
Source: cdebconf
Binary: cdebconf-slang-udeb libdebconfclient0 cdebconf-priority cdebconf 
libdebconfclient0-dev cdebconf-udeb libdebconfclient0-udeb cdebconf-gtk-udeb 
cdebconf-text-udeb cdebconf-newt-udeb
Architecture: source i386 all
Version: 0.109
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 cdebconf   - Debian Configuration Management System (C-implementation)
 cdebconf-gtk-udeb - Gtk+ frontend for Debian Configuration Management System 
(udeb)
 cdebconf-newt-udeb - Newt frontend for Debian Configuration Management System 
(udeb)
 cdebconf-priority - Change debconf priority (udeb)
 cdebconf-text-udeb - Plain text frontend for Debian Configuration Management 
System (udeb)
 cdebconf-udeb - Debian Configuration Management System (C-implementation) 
(udeb)
 libdebconfclient0 - Debian Configuration Management System (C-implementation)
 libdebconfclient0-dev - Development files for cdebconf
 libdebconfclient0-udeb - Debian Configuration Management System 
(C-implementation) (udeb)
Closes: 340007 395052 396071 397877
Changes: 
 cdebconf (0.109) unstable; urgency=low
 .
   [ Attilio Fiandrotti ]
   * Disable the screenshot button before gtk_go() returns. Closes: #396071.
   * Change handler for BOOLEAN questions in GTK frontend to use radiobuttons
 instead of a checkbox. Closes: #395052.
   * Make sure the default choice for countrychooser/country-name is correctly
 preselected by the GTK frontend's special handler. Closes: #397877.
   * Fixed scrolling to default option in GTK frontend for SELECT questions.
 Closes: #340007.
   * Remove code belonging to ancient SELECT and BOOLEAN handlers which are
 no longer used.
 .
   [ Updated translations ]
   * Bulgarian (bg.po) by Damyan Ivanov
   * Bosnian (bs.po) by Safir Secerovic
   * Esperanto (eo.po) by Serge Leblanc
   * Georgian (ka.po) by Aiet Kolkhi
   * Kurdish (ku.po) by rizoye-xerzi
   * Norwegian Bokmål (nb.po) by Bjørn Steensrud
   * Norwegian Nynorsk (nn.po) by HÃ¥vard Korsvoll
   * Swedish (sv.po) by Daniel Nylander
Files: 
 a6490224a090d9ec4520336b6453e06f 1217 utils optional cdebconf_0.109.dsc
 b7612843035aa0c1df74c4c678a668e3 234504 utils optional cdebconf_0.109.tar.gz
 f03bc8fda79b0f997d24031f3c8eb928 2624 debian-installer standard 
cdebconf-priority_0.109_all.udeb
 d263fb67626c6baa6ad810b73a105ea9 147444 utils extra cdebconf_0.109_i386.deb
 d5fa3c8e63750f1bfd5fd134e43ba5ed 31812 libs optional 
libdebconfclient0_0.109_i386.deb
 b887c330b8099a0e15f033420aa2916c 33212 libdevel optional 
libdebconfclient0-dev_0.109_i386.deb
 e1c5173e533778331b1eb64b7bcbf0da 66876 debian-installer standard 
cdebconf-udeb_0.109_i386.udeb
 1a74c37eca59fbc8df68215d9bb667db 2998 debian-installer optional 
libdebconfclient0-udeb_0.109_i386.udeb
 1f42049241c4bffd11a0de79767ed591 16576 debian-installer optional 
cdebconf-newt-udeb_0.109_i386.udeb
 b8ba46eedfa245bda171dd5a36d1d7a0 17826 debian-installer optional 
cdebconf-text-udeb_0.109_i386.udeb
 2dca9e753fef6d86fa7da71d47edccbe 22594 debian-installer optional 
cdebconf-gtk-udeb_0.109_i386.udeb
Package-Type: udeb

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

iD8DBQFFZFAugm/Kwh6ICoQRAm1NAKCkk9YJtC9iAXNgKNFCL7yPbfB4mQCgoJaU
C5KZY6hN+uTo0dJhIMb95ew=
=7OXL
-END PGP SIGNATURE-


Accepted:
cdebconf-gtk-udeb_0.109_i386.udeb
  to pool/main/c/cdebconf/cdebconf-gtk-udeb_0.109_i386.udeb
cdebconf-newt-udeb_0.109_i386.udeb
  to pool/main/c/cdebconf/cdebconf-newt-udeb_0.109_i386.udeb
cdebconf-priority_0.109_all.udeb
  to pool/main/c/cdebconf/cdebconf-priority_0.109_all.udeb
cdebconf-text-udeb_0.109_i386.udeb
  to pool/main/c/cdebconf/cdebconf-text-udeb_0.109_i386.udeb
cdebconf-udeb_0.109_i386.udeb
  to pool/main/c/cdebconf/cdebconf-udeb_0.109_i386.udeb
cdebconf_0.109.dsc
  to pool/main/c/cdebconf/cdebconf_0.109.dsc
cdebconf_0.109.tar.gz
  to pool/main/c/cdebconf/cdebconf_0.109.tar.gz
cdebconf_0.109_i386.deb
  to pool/main/c/cdebconf/cdebconf_0.109_i386.deb
libdebconfclient0-dev_0.109_i386.deb
  to pool/main/c/cdebconf/libdebconfclient0-dev_0.109_i386.deb
libdebconfclient0-udeb_0.109_i386.udeb
  to pool/main/c/cdebconf/libdebconfclient0-udeb_0.109_i386.udeb
libdebconfclient0_0.109_i386.deb
  to pool/main/c/cdebconf/libdebconfclient0_0.109_i386.deb


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



Accepted abntex 0.9~beta2-1 (source all)

2006-11-22 Thread Otavio Salvador
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 11:22:38 -0200
Source: abntex
Binary: abntex
Architecture: source all
Version: 0.9~beta2-1
Distribution: unstable
Urgency: low
Maintainer: Otavio Salvador [EMAIL PROTECTED]
Changed-By: Otavio Salvador [EMAIL PROTECTED]
Description: 
 abntex - LaTeX class for writing documents in ABNT standard
Closes: 380291
Changes: 
 abntex (0.9~beta2-1) unstable; urgency=low
 .
   * Removed latex2html from Depends and Build-Depends.
   * Include full LPPL license on debian/copyright.
   * Add support to build using texlive. Closes: #380291.
Files: 
 9b0892edd667372544894eb21d73af39 628 contrib/tex optional 
abntex_0.9~beta2-1.dsc
 0e0e594236b598bf8e8c65e5173acbd2 191491 contrib/tex optional 
abntex_0.9~beta2.orig.tar.gz
 ffe777e65c93c8169805a876fb3581d5 8582 contrib/tex optional 
abntex_0.9~beta2-1.diff.gz
 7009f869410f77822bcf662b5b8a124e 326480 contrib/tex optional 
abntex_0.9~beta2-1_all.deb

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

iD8DBQFFZFAMLqiZQEml+FURAqwBAJ4sKsLrsqvu/zJWWHgr1mmg2fybrwCfaEV2
ZnvKk2rdW6595V+Jhws9Cus=
=cT2R
-END PGP SIGNATURE-


Accepted:
abntex_0.9~beta2-1.diff.gz
  to pool/contrib/a/abntex/abntex_0.9~beta2-1.diff.gz
abntex_0.9~beta2-1.dsc
  to pool/contrib/a/abntex/abntex_0.9~beta2-1.dsc
abntex_0.9~beta2-1_all.deb
  to pool/contrib/a/abntex/abntex_0.9~beta2-1_all.deb
abntex_0.9~beta2.orig.tar.gz
  to pool/contrib/a/abntex/abntex_0.9~beta2.orig.tar.gz


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



Accepted autopartkit 1.21 (source i386)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:03:02 +0100
Source: autopartkit
Binary: autopartkit
Architecture: source i386
Version: 1.21
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 autopartkit - Automatically Partition Hard Drives (unsafe) (udeb)
Changes: 
 autopartkit (1.21) unstable; urgency=low
 .
   [ Frans Pop ]
   * Drop support for lvm10 as it was removed from the archive.
 .
   [ Colin Watson ]
   * Use update-dev rather than the sleep() hack to wait for udev. Requires
 di-utils 1.19.
   * Replace hardcoded ISO-8859-1 non-breaking space character with a numeric
 #define, since I keep accidentally losing this in UTF-8 editors.
   * Squash several (though not all) unused variable warnings.
 .
   [ Updated translations ]
   * Bulgarian (bg.po) by Damyan Ivaniv
   * Bosnian (bs.po) by Safir Secerovic
   * Georgian (ka.po) by Aiet Kolkhi
   * Kurdish (ku.po) by rizoye-xerzi
   * Norwegian Bokmål (nb.po) by Bjørn Steensrud
   * Polish (pl.po) by Bartosz Fenski
Files: 
 b7e4385f6b54cff1c505be20b9e6c499 828 debian-installer optional 
autopartkit_1.21.dsc
 4ba4e563d7ed09debd69606f83c4afaa 217848 debian-installer optional 
autopartkit_1.21.tar.gz
 93f72a12d38b2384023fbc5dea032d27 104032 debian-installer optional 
autopartkit_1.21_i386.udeb
Package-Type: udeb

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

iD8DBQFFZFvwgm/Kwh6ICoQRAnAeAJ9Wu4ECxRDOR8AZy2CdcrLG3DJQ4wCfYZbi
wEXZhDVjljOUeZiAoLhfQzw=
=DPAG
-END PGP SIGNATURE-


Accepted:
autopartkit_1.21.dsc
  to pool/main/a/autopartkit/autopartkit_1.21.dsc
autopartkit_1.21.tar.gz
  to pool/main/a/autopartkit/autopartkit_1.21.tar.gz
autopartkit_1.21_i386.udeb
  to pool/main/a/autopartkit/autopartkit_1.21_i386.udeb


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



Accepted preseed 1.21 (source all)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:16:04 +0100
Source: preseed
Binary: env-preseed file-preseed initrd-preseed network-preseed preseed-common
Architecture: source all
Version: 1.21
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 env-preseed - debconf preseeding via environment variables (udeb)
 file-preseed - load debconf preseed file (udeb)
 initrd-preseed - load debconf preseed file from /preseed.cfg on the initrd 
(udeb)
 network-preseed - download debconf preseed file (udeb)
 preseed-common - common files for preseeding (udeb)
Closes: 397668
Changes: 
 preseed (1.21) unstable; urgency=low
 .
   [ Joey Hess ]
   * Fix typoed name of /var/run/preseed-usedfloppy. Closes: #397668
 .
   [ Updated translations ]
   * Bulgarian (bg.po) by Damyan Ivanov
   * Bosnian (bs.po) by Safir Secerovic
   * Esperanto (eo.po) by Serge Leblanc
   * Georgian (ka.po) by Aiet Kolkhi
   * Kurdish (ku.po) by rizoye-xerzi
   * Norwegian Bokmål (nb.po) by Bjørn Steensrud
Files: 
 73e3c344ac155259a592dd8449b63053 727 debian-installer optional preseed_1.21.dsc
 35d5ef75a7c713cae71f46950e2d650e 39514 debian-installer optional 
preseed_1.21.tar.gz
 18277bb078439cf483139eae9b47cd2c 16250 debian-installer standard 
preseed-common_1.21_all.udeb
 2ab9f8ad4ece3df20e839eeb1481 3668 debian-installer standard 
network-preseed_1.21_all.udeb
 13a13b0ea449e6d48696e9817c115a02 3462 debian-installer optional 
file-preseed_1.21_all.udeb
 9baced4d25303a614b974cc494934320 828 debian-installer extra 
initrd-preseed_1.21_all.udeb
 b395977cc1a95a1087d5ef23aceef12b 1504 debian-installer extra 
env-preseed_1.21_all.udeb
Package-Type: udeb

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

iD8DBQFFZFvxgm/Kwh6ICoQRAgSPAKC6ZFfo5BektMIrG34OWAXko/ACpACdEjfS
xUIPykaLYfSIsHAms+afpuQ=
=gdqi
-END PGP SIGNATURE-


Accepted:
env-preseed_1.21_all.udeb
  to pool/main/p/preseed/env-preseed_1.21_all.udeb
file-preseed_1.21_all.udeb
  to pool/main/p/preseed/file-preseed_1.21_all.udeb
initrd-preseed_1.21_all.udeb
  to pool/main/p/preseed/initrd-preseed_1.21_all.udeb
network-preseed_1.21_all.udeb
  to pool/main/p/preseed/network-preseed_1.21_all.udeb
preseed-common_1.21_all.udeb
  to pool/main/p/preseed/preseed-common_1.21_all.udeb
preseed_1.21.dsc
  to pool/main/p/preseed/preseed_1.21.dsc
preseed_1.21.tar.gz
  to pool/main/p/preseed/preseed_1.21.tar.gz


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



Accepted partman-base 98 (source i386)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:14:13 +0100
Source: partman-base
Binary: partman-base
Architecture: source i386
Version: 98
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 partman-base - Partition the storage devices (partman) (udeb)
Changes: 
 partman-base (98) unstable; urgency=low
 .
   [ Thiemo Seufer ]
   * definitions.sh: Add support for qemu-mips32.
 .
   [ Joey Hess ]
   * parted_devices: Don't list floppy devices.
 .
   [ Martin Michlmayr ]
   * Remove the obsolete definition for nslu2.
 .
   [ Colin Watson ]
   * definitions.sh: Coalesce multiple sed calls for efficiency.
   * definitions.sh: Initialise formatted_previously at the right time.
   * init.d/update_partitions: Restore IFS even if a disk has no partitions.
 Fixes missing substitution into confirmation question.
 .
   [ Updated translations ]
   * Bulgarian (bg.po) by Damyan Ivanov
   * Bosnian (bs.po) by Safir Secerovic
   * Catalan (ca.po) by Jordi Mallach
   * Hungarian (hu.po) by SZERVÁC Attila
   * Georgian (ka.po) by Aiet Kolkhi
   * Kurdish (ku.po) by rizoye-xerzi
   * Norwegian Bokmål (nb.po) by Bjørn Steensrud
   * Norwegian Nynorsk (nn.po) by HÃ¥vard Korsvoll
   * Slovenian (sl.po) by Matej Kovačič
Files: 
 97f266355f3f16dfb1e614125b5860de 765 debian-installer standard 
partman-base_98.dsc
 4c065d07fd4f8ce2bd1325ba3bd2532c 169526 debian-installer standard 
partman-base_98.tar.gz
 730b62c4996c6f1590e12eb7dfcb34a1 155402 debian-installer standard 
partman-base_98_i386.udeb
Package-Type: udeb

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

iD8DBQFFZFvxgm/Kwh6ICoQRAu6DAJ0fxJxsnwZ48MNx2u6oPECVwoBvNgCfS2JZ
yKPB1NdCBR8pigWEF94FHXY=
=nIfp
-END PGP SIGNATURE-


Accepted:
partman-base_98.dsc
  to pool/main/p/partman-base/partman-base_98.dsc
partman-base_98.tar.gz
  to pool/main/p/partman-base/partman-base_98.tar.gz
partman-base_98_i386.udeb
  to pool/main/p/partman-base/partman-base_98_i386.udeb


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



Accepted libdebian-installer 0.46 (source i386)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:06:29 +0100
Source: libdebian-installer
Binary: libdebian-installer4 libdebian-installer-extra4 
libdebian-installer4-udeb libdebian-installer-extra4-udeb 
libdebian-installer4-dev
Architecture: source i386
Version: 0.46
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 libdebian-installer-extra4 - Library of some extra debian-installer functions
 libdebian-installer-extra4-udeb - Library of some extra debian-installer 
functions (udeb)
 libdebian-installer4 - Library of common debian-installer functions
 libdebian-installer4-dev - Library of common debian-installer functions
 libdebian-installer4-udeb - Library of common debian-installer functions (udeb)
Changes: 
 libdebian-installer (0.46) unstable; urgency=low
 .
   [ Thiemo Seufer ]
   * archdetect: Add mips/qemu-mips32 and mipsel/qemu-mips32.
 .
   [ Colin Watson ]
   * include/debian-installer/macros.h: Add DI_GNUC_PREREQ macro useful for
 making use of __attribute__ in various places throughout d-i.
Files: 
 8362e6257793ef1b9db3350d5df8db99 881 libs optional libdebian-installer_0.46.dsc
 9ed8bd2a9ed4e1251a78ede6b84bf09f 379340 libs optional 
libdebian-installer_0.46.tar.gz
 5d4997d8acdfba0868a9c8a924dbdf61 24208 libs optional 
libdebian-installer4_0.46_i386.deb
 679b6450e446cfb558bec65239fe2efc 153618 libdevel optional 
libdebian-installer4-dev_0.46_i386.deb
 e3aa968ec3f7700189a7b8c91d68fe42 17704 debian-installer optional 
libdebian-installer4-udeb_0.46_i386.udeb
 e9452262acb5ba6f4cd8dda4816815b6 9906 libs optional 
libdebian-installer-extra4_0.46_i386.deb
 4cebfb11db32491ac636f67346141a89 3522 debian-installer optional 
libdebian-installer-extra4-udeb_0.46_i386.udeb

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

iD8DBQFFZFvxgm/Kwh6ICoQRAhDHAJ4irFc5Cd2iJEcS9OGR7SqLnhERXQCfT3nx
bD3xVbnD76ILQBd6BXW684Q=
=5udK
-END PGP SIGNATURE-


Accepted:
libdebian-installer-extra4-udeb_0.46_i386.udeb
  to 
pool/main/libd/libdebian-installer/libdebian-installer-extra4-udeb_0.46_i386.udeb
libdebian-installer-extra4_0.46_i386.deb
  to pool/main/libd/libdebian-installer/libdebian-installer-extra4_0.46_i386.deb
libdebian-installer4-dev_0.46_i386.deb
  to pool/main/libd/libdebian-installer/libdebian-installer4-dev_0.46_i386.deb
libdebian-installer4-udeb_0.46_i386.udeb
  to pool/main/libd/libdebian-installer/libdebian-installer4-udeb_0.46_i386.udeb
libdebian-installer4_0.46_i386.deb
  to pool/main/libd/libdebian-installer/libdebian-installer4_0.46_i386.deb
libdebian-installer_0.46.dsc
  to pool/main/libd/libdebian-installer/libdebian-installer_0.46.dsc
libdebian-installer_0.46.tar.gz
  to pool/main/libd/libdebian-installer/libdebian-installer_0.46.tar.gz


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



Accepted nobootloader 1.15 (source all)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:12:22 +0100
Source: nobootloader
Binary: nobootloader
Architecture: source all
Version: 1.15
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 nobootloader - Don't install any bootloader. (udeb)
Changes: 
 nobootloader (1.15) unstable; urgency=low
 .
   [ Colin Watson ]
   * Fix broken sed invocation reported in #395259 in a better way, avoiding
 devfs path assumptions.
 .
   [ Updated translations ]
   * Bulgarian (bg.po) by Damyan Ivanov
   * Bosnian (bs.po) by Safir Secerovic
   * Esperanto (eo.po) by Serge Leblanc
   * Kurdish (ku.po) by rizoye-xerzi
   * Norwegian Bokmål (nb.po) by Bjørn Steensrud
   * Norwegian Nynorsk (nn.po) by HÃ¥vard Korsvoll
   * Polish (pl.po) by Bartosz Fenski
   * Slovenian (sl.po) by Matej Kovačič
Files: 
 501b23517ca5824b641fc11e918a40cc 708 debian-installer standard 
nobootloader_1.15.dsc
 1aa944add2320c56dbcd2315e4f3ef19 57871 debian-installer standard 
nobootloader_1.15.tar.gz
 646c2bfc3ea4845de90e4c1abbf33381 47966 debian-installer standard 
nobootloader_1.15_all.udeb
Package-Type: udeb

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

iD8DBQFFZFvxgm/Kwh6ICoQRAlACAKCVwXIECrvVy8ap9EY51fj87D0n7QCeP3+U
o8NsU73lWDmDOGvZQ1Ovb8I=
=fU6Y
-END PGP SIGNATURE-


Accepted:
nobootloader_1.15.dsc
  to pool/main/n/nobootloader/nobootloader_1.15.dsc
nobootloader_1.15.tar.gz
  to pool/main/n/nobootloader/nobootloader_1.15.tar.gz
nobootloader_1.15_all.udeb
  to pool/main/n/nobootloader/nobootloader_1.15_all.udeb


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



Accepted base-installer 1.69 (source i386)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:04:49 +0100
Source: base-installer
Binary: base-installer
Architecture: source i386
Version: 1.69
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 base-installer - Install the base system (udeb)
Changes: 
 base-installer (1.69) unstable; urgency=low
 .
   [ Thiemo Seufer ]
   * Add support for qemu on mips/mipsel, thanks to Aurelien Jarno.
 .
   [ Martin Michlmayr ]
   * nslu2 uses the ixp4xx kernel now - update the test suite.
 .
   [ Colin Watson ]
   * Use log-output for hook scripts rather than a temporary file.
 .
   [ Updated translations ]
   * Bulgarian (bg.po) by Damyan Ivanov
   * Bosnian (bs.po) by Safir Secerovic
   * Catalan (ca.po) by Jordi Mallach
   * Czech (cs.po) by Miroslav Kure
   * Esperanto (eo.po) by Serge Leblanc
   * Spanish (es.po) by Javier Fernández-Sanguino Peña
   * Georgian (ka.po) by Aiet Kolkhi
   * Kurdish (ku.po) by rizoye-xerzi
   * Norwegian Bokmål (nb.po) by Bjørn Steensrud
   * Polish (pl.po) by Bartosz Fenski
   * Romanian (ro.po) by Eddy Petrișor
Files: 
 db250dcdeb93e74dca950481d2d0dcf2 918 debian-installer required 
base-installer_1.69.dsc
 4cfb38f4697b6aa54c49649fb088919a 205075 debian-installer required 
base-installer_1.69.tar.gz
 f0a60b7273c0c4d199c8e0eee972adb3 160970 debian-installer required 
base-installer_1.69_i386.udeb
Package-Type: udeb

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

iD8DBQFFZFvwgm/Kwh6ICoQRAt9MAJ9L85K7k2WIOReTYLc+6NbFqvE9hwCeOg4v
Csi50uuHJyRKWkILNClQ8Co=
=gO+r
-END PGP SIGNATURE-


Accepted:
base-installer_1.69.dsc
  to pool/main/b/base-installer/base-installer_1.69.dsc
base-installer_1.69.tar.gz
  to pool/main/b/base-installer/base-installer_1.69.tar.gz
base-installer_1.69_i386.udeb
  to pool/main/b/base-installer/base-installer_1.69_i386.udeb


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



Accepted apt-listbugs 0.0.69 (source all)

2006-11-22 Thread Junichi Uekawa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 23 Nov 2006 00:10:10 +0900
Source: apt-listbugs
Binary: apt-listbugs
Architecture: source all
Version: 0.0.69
Distribution: unstable
Urgency: low
Maintainer: Junichi Uekawa [EMAIL PROTECTED]
Changed-By: Junichi Uekawa [EMAIL PROTECTED]
Description: 
 apt-listbugs - Lists critical bugs before each apt installation
Closes: 399504
Changes: 
 apt-listbugs (0.0.69) unstable; urgency=low
 .
   * Bug fix: apt-listbugs: minor correction in wording, thanks to
 [EMAIL PROTECTED] (Closes: #399504).
   * README.Debian: Document bug 399706.
Files: 
 0d917e0e25f42ea0c1c0b6bac675a6e6 561 admin optional apt-listbugs_0.0.69.dsc
 af694eea024870b5cbe66ee4040014aa 410620 admin optional 
apt-listbugs_0.0.69.tar.gz
 ce0aa313675c1f1338059fa7985dcee4 83496 admin optional 
apt-listbugs_0.0.69_all.deb

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

iD8DBQFFZGiB2Dd9TugeVcERAlzfAJ4phPI2L+RhJBIbi8FlmVNgDqXrmACcD4s0
KbJ6U/Apzt9HY/Uhlceyurg=
=B3Vv
-END PGP SIGNATURE-


Accepted:
apt-listbugs_0.0.69.dsc
  to pool/main/a/apt-listbugs/apt-listbugs_0.0.69.dsc
apt-listbugs_0.0.69.tar.gz
  to pool/main/a/apt-listbugs/apt-listbugs_0.0.69.tar.gz
apt-listbugs_0.0.69_all.deb
  to pool/main/a/apt-listbugs/apt-listbugs_0.0.69_all.deb


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



Accepted aatv 0.3-3 (source i386)

2006-11-22 Thread Uwe Hermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 13 Nov 2006 14:29:48 +0100
Source: aatv
Binary: aatv
Architecture: source i386
Version: 0.3-3
Distribution: unstable
Urgency: low
Maintainer: Uwe Hermann [EMAIL PROTECTED]
Changed-By: Uwe Hermann [EMAIL PROTECTED]
Description: 
 aatv   - A program to watch TV in a text-based console
Closes: 390844
Changes: 
 aatv (0.3-3) unstable; urgency=low
 .
   * Switch to cdbs.
   * Update debhelper compatibility to version 5.
   * Standards-Version: 3.7.2.2 (no changes required).
   * This upload should also fix a very strange bug... (Closes: #390844).
Files: 
 8252340f1806bb88b40c31d1a8c4d14c 568 graphics optional aatv_0.3-3.dsc
 b5ba4ed9540786503a531eb1a96d10ed 3265 graphics optional aatv_0.3-3.diff.gz
 0bf7083f4026a90fdebadaf843967923 15840 graphics optional aatv_0.3-3_i386.deb

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

iD8DBQFFZEfjXdVoV3jWIbQRAtYGAJ9YjxJXBa1Ply+h9rmUDbIL8iWwsACeLiEX
49gXr6fP6QpF9wEDSD2K/q8=
=pv/p
-END PGP SIGNATURE-


Accepted:
aatv_0.3-3.diff.gz
  to pool/main/a/aatv/aatv_0.3-3.diff.gz
aatv_0.3-3.dsc
  to pool/main/a/aatv/aatv_0.3-3.dsc
aatv_0.3-3_i386.deb
  to pool/main/a/aatv/aatv_0.3-3_i386.deb


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



Accepted rootskel 1.44 (source i386)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:44:25 +0100
Source: rootskel
Binary: rootskel-bootfloppy rootskel
Architecture: source i386
Version: 1.44
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 rootskel   - Skeleton root filesystem used by debian-installer (udeb)
 rootskel-bootfloppy - Skeleton root filesystem used by debian-installer boot 
floppy (udeb)
Changes: 
 rootskel (1.44) unstable; urgency=low
 .
   * Revert to previous known good version as upload was against agreement,
 violates basic NMU rules and patch was broken.
Files: 
 a50afa936cb121b0a891309351d6016d 909 debian-installer standard 
rootskel_1.44.dsc
 3a6e47bd40f2b6d4d26d43a6e83b7eb6 36627 debian-installer standard 
rootskel_1.44.tar.gz
 765d8c859008de8f9746d85d0705cec7 6120 debian-installer standard 
rootskel_1.44_i386.udeb
 d007eba86b5834ef93b09bfa43f8136c 88202 debian-installer extra 
rootskel-bootfloppy_1.44_i386.udeb
Package-Type: udeb

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

iD8DBQFFZGKvgm/Kwh6ICoQRAmdoAKDTle6l0sp3xFyyRFVLmAhTjJUG4QCfbQn7
mnslpWO6tmcTx/I4OrU5R+c=
=ekU6
-END PGP SIGNATURE-


Accepted:
rootskel-bootfloppy_1.44_i386.udeb
  to pool/main/r/rootskel/rootskel-bootfloppy_1.44_i386.udeb
rootskel_1.44.dsc
  to pool/main/r/rootskel/rootskel_1.44.dsc
rootskel_1.44.tar.gz
  to pool/main/r/rootskel/rootskel_1.44.tar.gz
rootskel_1.44_i386.udeb
  to pool/main/r/rootskel/rootskel_1.44_i386.udeb


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



Accepted libapache-mod-auth-kerb 5.3-1 (source i386)

2006-11-22 Thread Ghe Rivero
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 16:16:35 +0100
Source: libapache-mod-auth-kerb
Binary: libapache-mod-auth-kerb libapache2-mod-auth-kerb
Architecture: source i386
Version: 5.3-1
Distribution: unstable
Urgency: high
Maintainer: Ghe Rivero [EMAIL PROTECTED]
Changed-By: Ghe Rivero [EMAIL PROTECTED]
Description: 
 libapache-mod-auth-kerb - apache module for Kerberos authentication
 libapache2-mod-auth-kerb - apache2 module for Kerberos authentication
Changes: 
 libapache-mod-auth-kerb (5.3-1) unstable; urgency=high
 .
   * New upstream release
   * Fixes posible heap-based buffer overflow. CVE-2006-5989
Files: 
 ee3ca6da16f91e3702b48df74ea5c38c 785 web optional 
libapache-mod-auth-kerb_5.3-1.dsc
 a363588578050b3d320a2ceccf3ed666 73530 web optional 
libapache-mod-auth-kerb_5.3.orig.tar.gz
 ebb0c000cc6148bc5d5460da7d81fad3 7081 web optional 
libapache-mod-auth-kerb_5.3-1.diff.gz
 5fac0114c0636058310f40bba774c5c1 26486 web optional 
libapache-mod-auth-kerb_5.3-1_i386.deb
 5f939a9a9b67f2df988135ac069bc927 26700 web optional 
libapache2-mod-auth-kerb_5.3-1_i386.deb

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

iD8DBQFFZGpIZttaNibwIPcRAhIiAJ9fbg4rB1wRQu1PXoInQ4IUZIjs0ACePFXY
lpYxc7i2plOIFRSuFIwL1XI=
=uLGP
-END PGP SIGNATURE-


Accepted:
libapache-mod-auth-kerb_5.3-1.diff.gz
  to 
pool/main/liba/libapache-mod-auth-kerb/libapache-mod-auth-kerb_5.3-1.diff.gz
libapache-mod-auth-kerb_5.3-1.dsc
  to pool/main/liba/libapache-mod-auth-kerb/libapache-mod-auth-kerb_5.3-1.dsc
libapache-mod-auth-kerb_5.3-1_i386.deb
  to 
pool/main/liba/libapache-mod-auth-kerb/libapache-mod-auth-kerb_5.3-1_i386.deb
libapache-mod-auth-kerb_5.3.orig.tar.gz
  to 
pool/main/liba/libapache-mod-auth-kerb/libapache-mod-auth-kerb_5.3.orig.tar.gz
libapache2-mod-auth-kerb_5.3-1_i386.deb
  to 
pool/main/liba/libapache-mod-auth-kerb/libapache2-mod-auth-kerb_5.3-1_i386.deb


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



Accepted rootskel-gtk 1.01 (source i386)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 18:04:39 +0100
Source: rootskel-gtk
Binary: rootskel-gtk
Architecture: source i386
Version: 1.01
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 rootskel-gtk - Additions for graphical installs to skeleton root filesystem 
(deb (udeb)
Closes: 396463 396482
Changes: 
 rootskel-gtk (1.01) unstable; urgency=low
 .
   * Don't fail if evdev or psmouse modules cannot be loaded as they may be
 compiled into the kernel. Closes: #396482.
   * Add support for mouse/left boot parameter to enable left-handed mouse.
 Closes: #396463.
   * Remove workaround for fr-latin9 keymap from 0.14; keymap was modified.
Files: 
 d8f39d4cac90ffc28aa8403455c48d61 709 debian-installer optional 
rootskel-gtk_1.01.dsc
 4bdc66f5dab3bcac53e542ea0bd22093 37410 debian-installer optional 
rootskel-gtk_1.01.tar.gz
 25e2750a92a33291c2952a4cb9ed244b 32510 debian-installer optional 
rootskel-gtk_1.01_i386.udeb
Package-Type: udeb

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

iD8DBQFFZITrgm/Kwh6ICoQRAs55AJ4j0CIuHcmVV+OM5Rj1hYZ/EDG0jgCfSySV
RaZglmC1n4nso1RxDROxHaE=
=0E+F
-END PGP SIGNATURE-


Accepted:
rootskel-gtk_1.01.dsc
  to pool/main/r/rootskel-gtk/rootskel-gtk_1.01.dsc
rootskel-gtk_1.01.tar.gz
  to pool/main/r/rootskel-gtk/rootskel-gtk_1.01.tar.gz
rootskel-gtk_1.01_i386.udeb
  to pool/main/r/rootskel-gtk/rootskel-gtk_1.01_i386.udeb


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



Accepted libdebian-installer 0.47 (source mips)

2006-11-22 Thread Thiemo Seufer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:59:38 +
Source: libdebian-installer
Binary: libdebian-installer4 libdebian-installer-extra4 
libdebian-installer4-udeb libdebian-installer-extra4-udeb 
libdebian-installer4-dev
Architecture: source mips
Version: 0.47
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Thiemo Seufer [EMAIL PROTECTED]
Description: 
 libdebian-installer-extra4 - Library of some extra debian-installer functions
 libdebian-installer-extra4-udeb - Library of some extra debian-installer 
functions (udeb)
 libdebian-installer4 - Library of common debian-installer functions
 libdebian-installer4-dev - Library of common debian-installer functions
 libdebian-installer4-udeb - Library of common debian-installer functions (udeb)
Changes: 
 libdebian-installer (0.47) unstable; urgency=low
 .
   * Fix FTBFS on mips/mipsel.
Files: 
 5c42bec4e26f17e718960d00e9998ef7 881 libs optional libdebian-installer_0.47.dsc
 f8a77ed449bb49bd4439f1558276f10a 378236 libs optional 
libdebian-installer_0.47.tar.gz
 f224877c5902532a7c1c4f101a267e38 26436 libs optional 
libdebian-installer4_0.47_mips.deb
 5307c99870b08566752cba7b1716a3ac 159092 libdevel optional 
libdebian-installer4-dev_0.47_mips.deb
 e04262515963dbb77115fbf7bf470b52 19740 debian-installer optional 
libdebian-installer4-udeb_0.47_mips.udeb
 3c4a38b8bf0a4640c051397dd3c5f92e 10076 libs optional 
libdebian-installer-extra4_0.47_mips.deb
 0f2aaafed5cd60a23805dbea9b4632b0 3616 debian-installer optional 
libdebian-installer-extra4-udeb_0.47_mips.udeb

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

iD8DBQFFZIDnXNuq0tFCNaARAn21AKCD0sq6oPthVC1GzN+su6DlO/Ay7gCguREJ
Jx/9bYA/jD5HyLou23OXnrA=
=jZMs
-END PGP SIGNATURE-


Accepted:
libdebian-installer-extra4-udeb_0.47_mips.udeb
  to 
pool/main/libd/libdebian-installer/libdebian-installer-extra4-udeb_0.47_mips.udeb
libdebian-installer-extra4_0.47_mips.deb
  to pool/main/libd/libdebian-installer/libdebian-installer-extra4_0.47_mips.deb
libdebian-installer4-dev_0.47_mips.deb
  to pool/main/libd/libdebian-installer/libdebian-installer4-dev_0.47_mips.deb
libdebian-installer4-udeb_0.47_mips.udeb
  to pool/main/libd/libdebian-installer/libdebian-installer4-udeb_0.47_mips.udeb
libdebian-installer4_0.47_mips.deb
  to pool/main/libd/libdebian-installer/libdebian-installer4_0.47_mips.deb
libdebian-installer_0.47.dsc
  to pool/main/libd/libdebian-installer/libdebian-installer_0.47.dsc
libdebian-installer_0.47.tar.gz
  to pool/main/libd/libdebian-installer/libdebian-installer_0.47.tar.gz


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



Accepted python-central 0.5.11 (source all)

2006-11-22 Thread Raphael Hertzog
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 12:33:55 +0100
Source: python-central
Binary: python-central
Architecture: source all
Version: 0.5.11
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Raphael Hertzog [EMAIL PROTECTED]
Description: 
 python-central - register and build utility for Python packages
Closes: 395104
Changes: 
 python-central (0.5.11) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Only remove empty dirs in /usr/lib/pythonX.Y. Closes: #395104
Files: 
 834412bc74826c4d9c88dbb6a683fcff 600 python standard python-central_0.5.11.dsc
 89097f0a4644000d5a1375b1b555bb7f 29357 python standard 
python-central_0.5.11.tar.gz
 c49960a24908652518cb4edd173f258c 31630 python standard 
python-central_0.5.11_all.deb

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

iD8DBQFFZIKevPbGD26BadIRAtsbAKCZaRPFllmHPPUTxu4e7DKhWzcMrACdGAl8
yrJ0ixjZghSiPQlvKJvXGaI=
=q5eT
-END PGP SIGNATURE-


Accepted:
python-central_0.5.11.dsc
  to pool/main/p/python-central/python-central_0.5.11.dsc
python-central_0.5.11.tar.gz
  to pool/main/p/python-central/python-central_0.5.11.tar.gz
python-central_0.5.11_all.deb
  to pool/main/p/python-central/python-central_0.5.11_all.deb


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



Accepted jokosher 0.2-1 (source all)

2006-11-22 Thread Florian Ragwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 17:27:45 +0100
Source: jokosher
Binary: jokosher
Architecture: source all
Version: 0.2-1
Distribution: unstable
Urgency: low
Maintainer: Florian Ragwitz [EMAIL PROTECTED]
Changed-By: Florian Ragwitz [EMAIL PROTECTED]
Description: 
 jokosher   - simple and easy to use audio multi-tracker
Changes: 
 jokosher (0.2-1) unstable; urgency=low
 .
   * New upstream release.
   * Update 10_desktop_file for 0.2.
   * Location of installed files changed slightly.
 + Modify debian/jokosher.sh and debian/jokosher.install according to that.
   * Some docs have been removed from the upstream tarball. Remove then from
 the Debian package as well.
Files: 
 2aa1e726c657ee5ee9ea172276e68117 620 sound optional jokosher_0.2-1.dsc
 200fffa4cdc3c8d51794d0d5e4b85c8b 446848 sound optional jokosher_0.2.orig.tar.gz
 70a2f5a47280881896ba55f288b7aacd 3201 sound optional jokosher_0.2-1.diff.gz
 ad6367ef6f00f98b7d200e038eba152e 427780 sound optional jokosher_0.2-1_all.deb

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

iD8DBQFFZIKmdC8qQo5jWl4RAs+NAJsGBUG+Wab3aXjt1jLFRj1bUzHtngCeMiYs
6f0r1ADK6Hx5THePBskX5m8=
=j2Rb
-END PGP SIGNATURE-


Accepted:
jokosher_0.2-1.diff.gz
  to pool/main/j/jokosher/jokosher_0.2-1.diff.gz
jokosher_0.2-1.dsc
  to pool/main/j/jokosher/jokosher_0.2-1.dsc
jokosher_0.2-1_all.deb
  to pool/main/j/jokosher/jokosher_0.2-1_all.deb
jokosher_0.2.orig.tar.gz
  to pool/main/j/jokosher/jokosher_0.2.orig.tar.gz


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



Accepted python2.5 2.5-3.1 (source i386 all)

2006-11-22 Thread Raphael Hertzog
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 15:41:06 +0100
Source: python2.5
Binary: python2.5-dbg idle-python2.5 python2.5 python2.5-examples 
python2.5-minimal python2.5-doc python2.5-dev
Architecture: source i386 all
Version: 2.5-3.1
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Raphael Hertzog [EMAIL PROTECTED]
Description: 
 idle-python2.5 - An IDE for Python (v2.5) using Tkinter
 python2.5  - An interactive high-level object-oriented language (version 2.5)
 python2.5-dbg - Debug Build of the Python Interpreter (version 2.5)
 python2.5-dev - Header files and a static library for Python (v2.5)
 python2.5-examples - Examples for the Python language (v2.5)
 python2.5-minimal - A minimal subset of the Python language (version 2.5)
Closes: 397006
Changes: 
 python2.5 (2.5-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * python2.5-minimal depends on python-minimal (= 2.4.4-1) because it's the
 first version which lists python2.5 as an unsupported runtime (ie a
 runtime that is available but for which modules are not auto-compiled).
 And being listed there is required for python-central to accept the
 installation of python2.5-minimal. Closes: #397006
Files: 
 e4b6b112871affcc155c4ed662184b90 1342 python optional python2.5_2.5-3.1.dsc
 5f92a6e004c9a55ebe810ad08cab6e2a 243762 python optional 
python2.5_2.5-3.1.diff.gz
 dffe8551d3b3ae6c95720f1f9f631a17 643148 python optional 
python2.5-examples_2.5-3.1_all.deb
 70376caab8f3293d7ac0dff2a186c532 62944 python optional 
idle-python2.5_2.5-3.1_all.deb
 a34d6df666b96cf6ba27bfc93e73e440 3441490 python optional 
python2.5_2.5-3.1_i386.deb
 d160802072a6fe477d005f28ac457a45 783512 python optional 
python2.5-minimal_2.5-3.1_i386.deb
 cfb5f879d9e210c35355649371507d9b 1675288 python optional 
python2.5-dev_2.5-3.1_i386.deb
 44c09b15660f3ee9d4f5d062bdd09e74 5983228 python extra 
python2.5-dbg_2.5-3.1_i386.deb

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

iD8DBQFFZIUbvPbGD26BadIRAl2iAJ0fwASQyHRQvJMB0WvtpNbZBbQkpgCeL2wl
umtxvtn4Ly9UIS02rOCp8GY=
=2pV2
-END PGP SIGNATURE-


Accepted:
idle-python2.5_2.5-3.1_all.deb
  to pool/main/p/python2.5/idle-python2.5_2.5-3.1_all.deb
python2.5-dbg_2.5-3.1_i386.deb
  to pool/main/p/python2.5/python2.5-dbg_2.5-3.1_i386.deb
python2.5-dev_2.5-3.1_i386.deb
  to pool/main/p/python2.5/python2.5-dev_2.5-3.1_i386.deb
python2.5-examples_2.5-3.1_all.deb
  to pool/main/p/python2.5/python2.5-examples_2.5-3.1_all.deb
python2.5-minimal_2.5-3.1_i386.deb
  to pool/main/p/python2.5/python2.5-minimal_2.5-3.1_i386.deb
python2.5_2.5-3.1.diff.gz
  to pool/main/p/python2.5/python2.5_2.5-3.1.diff.gz
python2.5_2.5-3.1.dsc
  to pool/main/p/python2.5/python2.5_2.5-3.1.dsc
python2.5_2.5-3.1_i386.deb
  to pool/main/p/python2.5/python2.5_2.5-3.1_i386.deb


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



Accepted sbox-dtc 1.07-6 (source i386)

2006-11-22 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 21 Nov 2006 12:11:00 +0800
Source: sbox-dtc
Binary: sbox-dtc
Architecture: source i386
Version: 1.07-6
Distribution: unstable
Urgency: low
Maintainer: Thomas Goirand [EMAIL PROTECTED]
Changed-By: Thomas Goirand [EMAIL PROTECTED]
Description: 
 sbox-dtc   - A CGI wrapper script for chrooted environment for hosting
Closes: 399643
Changes: 
 sbox-dtc (1.07-6) unstable; urgency=low
 .
   * Added german de.po template translation (Closes: #399643)
Files: 
 41c8a0acda9d0e8efe5ce2797b03d7de 582 web optional sbox-dtc_1.07-6.dsc
 7fc3e5e97d1ae22becd0d863c9b28a42 3983 web optional sbox-dtc_1.07-6.diff.gz
 3617a3e4250cb132c230ae631f59388e 217898 web optional sbox-dtc_1.07-6_i386.deb

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

iD8DBQFFZI6b+C5cwEsrK54RAqcIAKDWoIodnlf5DWD6n2B2moct+cyewgCcCGtJ
Juk6oiErLuWzpaPXYA4jSSw=
=vALH
-END PGP SIGNATURE-


Accepted:
sbox-dtc_1.07-6.diff.gz
  to pool/main/s/sbox-dtc/sbox-dtc_1.07-6.diff.gz
sbox-dtc_1.07-6.dsc
  to pool/main/s/sbox-dtc/sbox-dtc_1.07-6.dsc
sbox-dtc_1.07-6_i386.deb
  to pool/main/s/sbox-dtc/sbox-dtc_1.07-6_i386.deb


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



Accepted tla-load-dirs 1.0.35 (source all)

2006-11-22 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 05:07:41 -0600
Source: tla-load-dirs
Binary: svk-load-dirs load-dirs-common tla-load-dirs darcs-load-dirs 
git-load-dirs baz-load-dirs
Architecture: source all
Version: 1.0.35
Distribution: unstable
Urgency: low
Maintainer: John Goerzen [EMAIL PROTECTED]
Changed-By: John Goerzen [EMAIL PROTECTED]
Description: 
 baz-load-dirs - Import upstream archives into baz
 darcs-load-dirs - Import upstream archives into darcs
 git-load-dirs - Import upstream archives into git
 load-dirs-common - Common files for tla-load-dirs and darcs-load-dirs
 svk-load-dirs - Import upstream archives into svk
 tla-load-dirs - Import upstream archives into tla/arch
Closes: 395128
Changes: 
 tla-load-dirs (1.0.35) unstable; urgency=low
 .
   * Merge and ACK NMU 1.0.33.1.  Closes: #395128.
Files: 
 59401384ce5e9e76346be475ac680889 724 devel optional tla-load-dirs_1.0.35.dsc
 1ba3b966d4dbeeb7dc9273b5a4304c08 44181 devel optional 
tla-load-dirs_1.0.35.tar.gz
 b7f5567804c70c8a271a5305e79306e1 10448 devel optional 
tla-load-dirs_1.0.35_all.deb
 dcd08330a00b4a9f7364d804956bbf3e 10496 devel optional 
darcs-load-dirs_1.0.35_all.deb
 3efaa1d10e81aa7cfda7dc5f75ec325a 10446 devel optional 
baz-load-dirs_1.0.35_all.deb
 abe6427c64d9083b0a1a4f402595e569 10436 devel optional 
svk-load-dirs_1.0.35_all.deb
 d2471734d09f75f9dfd987f941b39917 10484 devel optional 
git-load-dirs_1.0.35_all.deb
 94056625afa82c46840ecd373dc809fb 14502 devel optional 
load-dirs-common_1.0.35_all.deb

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

iD8DBQFFZJIrTvSuJuBy3ggRArp3AKCJok3Di95sg0gy7vTI+G7BwgpszACffu1l
SBW9svyU9UA1QjoaA6ZdR3c=
=v2Dj
-END PGP SIGNATURE-


Accepted:
baz-load-dirs_1.0.35_all.deb
  to pool/main/t/tla-load-dirs/baz-load-dirs_1.0.35_all.deb
darcs-load-dirs_1.0.35_all.deb
  to pool/main/t/tla-load-dirs/darcs-load-dirs_1.0.35_all.deb
git-load-dirs_1.0.35_all.deb
  to pool/main/t/tla-load-dirs/git-load-dirs_1.0.35_all.deb
load-dirs-common_1.0.35_all.deb
  to pool/main/t/tla-load-dirs/load-dirs-common_1.0.35_all.deb
svk-load-dirs_1.0.35_all.deb
  to pool/main/t/tla-load-dirs/svk-load-dirs_1.0.35_all.deb
tla-load-dirs_1.0.35.dsc
  to pool/main/t/tla-load-dirs/tla-load-dirs_1.0.35.dsc
tla-load-dirs_1.0.35.tar.gz
  to pool/main/t/tla-load-dirs/tla-load-dirs_1.0.35.tar.gz
tla-load-dirs_1.0.35_all.deb
  to pool/main/t/tla-load-dirs/tla-load-dirs_1.0.35_all.deb


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



Accepted gcin 1.3.0.1-1 (source i386)

2006-11-22 Thread Wen-Yen Chuang
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 20:09:43 +0800
Source: gcin
Binary: gcin-qt3-immodule gcin
Architecture: source i386
Version: 1.3.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Wen-Yen Chuang [EMAIL PROTECTED]
Changed-By: Wen-Yen Chuang [EMAIL PROTECTED]
Description: 
 gcin   - a GTK+ based input method platform for Chinese users
 gcin-qt3-immodule - a QT input method module with gcin as backend
Closes: 399800
Changes: 
 gcin (1.3.0.1-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/patches:
 - apply 50_fix-FTBFS-on-systems-with-lib64-directory.dpatch written by
   Ming Hua [EMAIL PROTECTED]. (Closes: #399800)
 - remove 40_make_noseeing-inst_a_shell_script.dpatch because upstream had
   fixed this bug.
 - modify 10_fix-directory-structure.dpatch to cope with upstream's
   changes.
Files: 
 de4cbf290717e05bd42a5c3e06357b52 621 utils optional gcin_1.3.0.1-1.dsc
 1ba33687c1cc53749ac21416b1796016 1658164 utils optional 
gcin_1.3.0.1.orig.tar.gz
 17b46ddc7313f215d52bd48b9000 8958 utils optional gcin_1.3.0.1-1.diff.gz
 ac17efd3769dde1aba4bcb6237bb1811 1423430 utils optional gcin_1.3.0.1-1_i386.deb
 4e0b6a2f5b0a793f2dc9199844f49e78 35866 utils optional 
gcin-qt3-immodule_1.3.0.1-1_i386.deb

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

iD8DBQFFZJl4+C5cwEsrK54RApbFAJ0ctlaB1GUtLCIvtr+WaXdOQQECmACfVpHv
cte03lKQTqlilZPtYc9XxD8=
=sVDp
-END PGP SIGNATURE-


Accepted:
gcin-qt3-immodule_1.3.0.1-1_i386.deb
  to pool/main/g/gcin/gcin-qt3-immodule_1.3.0.1-1_i386.deb
gcin_1.3.0.1-1.diff.gz
  to pool/main/g/gcin/gcin_1.3.0.1-1.diff.gz
gcin_1.3.0.1-1.dsc
  to pool/main/g/gcin/gcin_1.3.0.1-1.dsc
gcin_1.3.0.1-1_i386.deb
  to pool/main/g/gcin/gcin_1.3.0.1-1_i386.deb
gcin_1.3.0.1.orig.tar.gz
  to pool/main/g/gcin/gcin_1.3.0.1.orig.tar.gz


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



Accepted krb5 1.6.dfsg~alpha1-1 (source i386 all)

2006-11-22 Thread Sam Hartman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 10:28:13 -0500
Source: krb5
Binary: krb5-doc libkrb5-dev krb5-rsh-server krb5-user krb5-ftpd libkadm55 
libkrb53 krb5-clients krb5-telnetd krb5-kdc krb5-admin-server libkrb5-dbg
Architecture: source i386 all
Version: 1.6.dfsg~alpha1-1
Distribution: experimental
Urgency: low
Maintainer: Sam Hartman [EMAIL PROTECTED]
Changed-By: Sam Hartman [EMAIL PROTECTED]
Description: 
 krb5-admin-server - MIT Kerberos master server (kadmind)
 krb5-clients - Secure replacements for ftp, telnet and rsh using MIT Kerberos
 krb5-doc   - Documentation for MIT Kerberos
 krb5-ftpd  - Secure FTP server supporting MIT Kerberos
 krb5-kdc   - MIT Kerberos key server (KDC)
 krb5-rsh-server - Secure replacements for rshd and rlogind using MIT Kerberos
 krb5-telnetd - Secure telnet server supporting MIT Kerberos
 krb5-user  - Basic programs to authenticate using MIT Kerberos
 libkadm55  - MIT Kerberos administration runtime libraries
 libkrb5-dbg - Debugging files for MIT Kerberos
 libkrb5-dev - Headers and development libraries for MIT Kerberos
 libkrb53   - MIT Kerberos runtime libraries
Closes: 393380
Changes: 
 krb5 (1.6.dfsg~alpha1-1) experimental; urgency=low
 .
   * New upstream release
   * Remove IETF RFCs, Closes: #393380
   * Update copyright file based on new copyrights upstearm
Files: 
 157a53438cc8eb0f356f086962f4deef 896 net standard krb5_1.6.dfsg~alpha1-1.dsc
 9d03d004d8a1b16e40f2a075de4e1bc9 10385120 net standard 
krb5_1.6.dfsg~alpha1.orig.tar.gz
 c6bb3c64a1f0d7852a949dee392df16c 1872760 net standard 
krb5_1.6.dfsg~alpha1-1.diff.gz
 55a1d1d82d410102516eb3a1e272216f 2096048 doc optional 
krb5-doc_1.6.dfsg~alpha1-1_all.deb
 617ab0c96ddd1932eaa54a0fbb2c0063 143176 libs optional 
libkadm55_1.6.dfsg~alpha1-1_i386.deb
 5d0719c223bb407a7846d0673950881e 441004 libs standard 
libkrb53_1.6.dfsg~alpha1-1_i386.deb
 f701d6e789fd8486fb0bbeb57dd8f69f 119718 net optional 
krb5-user_1.6.dfsg~alpha1-1_i386.deb
 efc253930ef3575e506f91a0730e1c31 189782 net optional 
krb5-clients_1.6.dfsg~alpha1-1_i386.deb
 b7fe7c84a27d31b7ced868c2e2ac5be9 80306 net optional 
krb5-rsh-server_1.6.dfsg~alpha1-1_i386.deb
 e4cf7628fbdc01045c42f8bbbe636b6a 58854 net extra 
krb5-ftpd_1.6.dfsg~alpha1-1_i386.deb
 a338ed883e65bfde986d53988cb0cf41 63490 net extra 
krb5-telnetd_1.6.dfsg~alpha1-1_i386.deb
 6b4557982de8adc5d0d14c8ebbda0b75 169116 net optional 
krb5-kdc_1.6.dfsg~alpha1-1_i386.deb
 649360ce84ed7caf83b821e7607e8789 79864 net optional 
krb5-admin-server_1.6.dfsg~alpha1-1_i386.deb
 0a3425ab793d07d8666a7a0915e9eb1c 84824 libdevel extra 
libkrb5-dev_1.6.dfsg~alpha1-1_i386.deb
 18337235675b5556f2bebb42b246c430 1246506 libdevel extra 
libkrb5-dbg_1.6.dfsg~alpha1-1_i386.deb

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

iD8DBQFFZJdy/I12czyGJg8RAl3nAKDF13qkaFhQOErCMYeJCQ4HuLIbtwCg7ipb
XJ7v8iYYR/075VrRxo/TTFw=
=x2or
-END PGP SIGNATURE-


Accepted:
krb5-admin-server_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/krb5-admin-server_1.6.dfsg~alpha1-1_i386.deb
krb5-clients_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/krb5-clients_1.6.dfsg~alpha1-1_i386.deb
krb5-doc_1.6.dfsg~alpha1-1_all.deb
  to pool/main/k/krb5/krb5-doc_1.6.dfsg~alpha1-1_all.deb
krb5-ftpd_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/krb5-ftpd_1.6.dfsg~alpha1-1_i386.deb
krb5-kdc_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/krb5-kdc_1.6.dfsg~alpha1-1_i386.deb
krb5-rsh-server_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/krb5-rsh-server_1.6.dfsg~alpha1-1_i386.deb
krb5-telnetd_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/krb5-telnetd_1.6.dfsg~alpha1-1_i386.deb
krb5-user_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/krb5-user_1.6.dfsg~alpha1-1_i386.deb
krb5_1.6.dfsg~alpha1-1.diff.gz
  to pool/main/k/krb5/krb5_1.6.dfsg~alpha1-1.diff.gz
krb5_1.6.dfsg~alpha1-1.dsc
  to pool/main/k/krb5/krb5_1.6.dfsg~alpha1-1.dsc
krb5_1.6.dfsg~alpha1.orig.tar.gz
  to pool/main/k/krb5/krb5_1.6.dfsg~alpha1.orig.tar.gz
libkadm55_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/libkadm55_1.6.dfsg~alpha1-1_i386.deb
libkrb5-dbg_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/libkrb5-dbg_1.6.dfsg~alpha1-1_i386.deb
libkrb5-dev_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/libkrb5-dev_1.6.dfsg~alpha1-1_i386.deb
libkrb53_1.6.dfsg~alpha1-1_i386.deb
  to pool/main/k/krb5/libkrb53_1.6.dfsg~alpha1-1_i386.deb


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



Accepted gpsim-lcd-graphic 0.3.0-1 (source i386)

2006-11-22 Thread Steffen Joeris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 21 Nov 2006 23:57:15 +0100
Source: gpsim-lcd-graphic
Binary: gpsim-lcd-graphic
Architecture: source i386
Version: 0.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Steffen Joeris [EMAIL PROTECTED]
Changed-By: Steffen Joeris [EMAIL PROTECTED]
Description: 
 gpsim-lcd-graphic - LCD module for gpsim
Changes: 
 gpsim-lcd-graphic (0.3.0-1) unstable; urgency=low
 .
   * New upstream release
- Final release of the 0.3.0 version with enhancements to the rc1
   * Bump the versioned build-depends against gpsim-dev
Files: 
 91953d201e089c902ed48174108b8539 730 electronics optional 
gpsim-lcd-graphic_0.3.0-1.dsc
 855dc7d8932fd9648298684eca1cd02f 526123 electronics optional 
gpsim-lcd-graphic_0.3.0.orig.tar.gz
 426886122397f7d36204a724aaf9f342 17973 electronics optional 
gpsim-lcd-graphic_0.3.0-1.diff.gz
 e61be41f19b1fa3181f8383c858330f2 242602 electronics optional 
gpsim-lcd-graphic_0.3.0-1_i386.deb

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

iD8DBQFFZKED+C5cwEsrK54RAkz3AJ9AyBuQlyYAzmjBbeVDE51UhtXwwwCg0nZr
H0BapVBpCquuG8aMlK5ojdM=
=dD7o
-END PGP SIGNATURE-


Accepted:
gpsim-lcd-graphic_0.3.0-1.diff.gz
  to pool/main/g/gpsim-lcd-graphic/gpsim-lcd-graphic_0.3.0-1.diff.gz
gpsim-lcd-graphic_0.3.0-1.dsc
  to pool/main/g/gpsim-lcd-graphic/gpsim-lcd-graphic_0.3.0-1.dsc
gpsim-lcd-graphic_0.3.0-1_i386.deb
  to pool/main/g/gpsim-lcd-graphic/gpsim-lcd-graphic_0.3.0-1_i386.deb
gpsim-lcd-graphic_0.3.0.orig.tar.gz
  to pool/main/g/gpsim-lcd-graphic/gpsim-lcd-graphic_0.3.0.orig.tar.gz


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



Accepted ejabberd 1.1.2-4 (source i386)

2006-11-22 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 13:44:13 +0300
Source: ejabberd
Binary: ejabberd
Architecture: source i386
Version: 1.1.2-4
Distribution: unstable
Urgency: medium
Maintainer: Torsten Werner [EMAIL PROTECTED]
Changed-By: Torsten Werner [EMAIL PROTECTED]
Description: 
 ejabberd   - Distributed, fault-tolerant Jabber/XMPP server written in Erlang
Closes: 399659
Changes: 
 ejabberd (1.1.2-4) unstable; urgency=medium
 .
   [ Sergei Golovan ]
   * Fixed bug with LDAP support, thanks to Evgeniy Khramtsov. (Closes: #399659)
   * Documented quilt patches in patches/ directory.
Files: 
 c2fabc7dfc04dc9d70201117219e7fb2 748 net optional ejabberd_1.1.2-4.dsc
 cfde073e3775d2935d419cbd3be79dca 28415 net optional ejabberd_1.1.2-4.diff.gz
 9967de494f76581fa0c7cd8520cc8611 874924 net optional ejabberd_1.1.2-4_i386.deb

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

iD8DBQFFZKAEfY3dicTPjsMRAijhAJ9OkuikvvoDutX+P6gDc7c+EFkHfgCbBYs5
D2QFoYCL5UBxEc2UpZWfKyc=
=RRcu
-END PGP SIGNATURE-


Accepted:
ejabberd_1.1.2-4.diff.gz
  to pool/main/e/ejabberd/ejabberd_1.1.2-4.diff.gz
ejabberd_1.1.2-4.dsc
  to pool/main/e/ejabberd/ejabberd_1.1.2-4.dsc
ejabberd_1.1.2-4_i386.deb
  to pool/main/e/ejabberd/ejabberd_1.1.2-4_i386.deb


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



Accepted 915resolution 0.5.2-7 (source i386)

2006-11-22 Thread Steffen Joeris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 18:29:53 +0100
Source: 915resolution
Binary: 915resolution
Architecture: source i386
Version: 0.5.2-7
Distribution: unstable
Urgency: medium
Maintainer: Steffen Joeris [EMAIL PROTECTED]
Changed-By: Steffen Joeris [EMAIL PROTECTED]
Description: 
 915resolution - resolution modification tool for Intel graphic chipset
Closes: 399221
Changes: 
 915resolution (0.5.2-7) unstable; urgency=medium
 .
   * Include patch for 946GZ, 965G and 965Q chipsets (Closes: #399221)
 Thanks to Jeremy Bobbio
   * Add dpatch to build-depends and adjust debian/rules file for
 patching
Files: 
 69c7d01178d40c45bd4f1b00e6feafff 635 x11 extra 915resolution_0.5.2-7.dsc
 bf114b9cea459f4235ca33231c69a962 6086 x11 extra 915resolution_0.5.2-7.diff.gz
 8a96f034c16e53a705cf401dc278f9ed 13368 x11 extra 915resolution_0.5.2-7_i386.deb

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

iD8DBQFFZKFT+C5cwEsrK54RAphnAJwLYyogi/pGCbkRMWId6bG3KiOvPACcCpw4
8VIcCdzyhGb9V+mMtPX6EJ8=
=Npmy
-END PGP SIGNATURE-


Accepted:
915resolution_0.5.2-7.diff.gz
  to pool/main/9/915resolution/915resolution_0.5.2-7.diff.gz
915resolution_0.5.2-7.dsc
  to pool/main/9/915resolution/915resolution_0.5.2-7.dsc
915resolution_0.5.2-7_i386.deb
  to pool/main/9/915resolution/915resolution_0.5.2-7_i386.deb


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



Accepted feedparser 4.1-6 (source all)

2006-11-22 Thread Carlos Galisteo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 19 Nov 2006 19:59:49 +
Source: feedparser
Binary: python-feedparser
Architecture: source all
Version: 4.1-6
Distribution: unstable
Urgency: low
Maintainer: Carlos Galisteo [EMAIL PROTECTED]
Changed-By: Carlos Galisteo [EMAIL PROTECTED]
Description: 
 python-feedparser - Universal Feed Parser for Python
Closes: 397688 397798 397800 397801
Changes: 
 feedparser (4.1-6) unstable; urgency=low
 .
   * Author email fixed in debian/copyright (Closes: #397688)
   * Recommends python-chardet in debian/control (Closes: #397798)
   * Recommends python-libxml2 in debian/control (Closes: #397800)
   * Recommends python-iconvcodec in debian/control (Closes: #397801)
   * Removed dh_python in debian/rules.
   * feedparser.py is now executable (acording to #368792)
Files: 
 5b7594cba092f9b0ba6420173fbd0332 634 python optional feedparser_4.1-6.dsc
 53635fa7fdda5798562cf38e59dc3489 2534 python optional feedparser_4.1-6.diff.gz
 9bce9ac3fe891a5f09b54700580664be 121324 python optional 
python-feedparser_4.1-6_all.deb

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

iD8DBQFFZJyT+C5cwEsrK54RAjyNAJ45mwMlmM4pEj/DHhx+sVEqjY91pwCdFq7e
APOkrptHGLv92PrECMh0rQ4=
=fCJ5
-END PGP SIGNATURE-


Accepted:
feedparser_4.1-6.diff.gz
  to pool/main/f/feedparser/feedparser_4.1-6.diff.gz
feedparser_4.1-6.dsc
  to pool/main/f/feedparser/feedparser_4.1-6.dsc
python-feedparser_4.1-6_all.deb
  to pool/main/f/feedparser/python-feedparser_4.1-6_all.deb


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



Accepted monotone 0.31-2 (source i386 all)

2006-11-22 Thread Shaun Jackman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 09:53:37 -0700
Source: monotone
Binary: monotone monotone-doc monotone-server
Architecture: source i386 all
Version: 0.31-2
Distribution: unstable
Urgency: medium
Maintainer: Shaun Jackman [EMAIL PROTECTED]
Changed-By: Shaun Jackman [EMAIL PROTECTED]
Description: 
 monotone   - A distributed version (revision) control system
 monotone-doc - A distributed version (revision) control system
 monotone-server - A distributed version (revision) control system
Closes: 384565
Changes: 
 monotone (0.31-2) unstable; urgency=medium
 .
   *  Remove -DBOOST_SP_DISABLE_THREADS. Closes: #384565.
Files: 
 cdde86fac7d196ff8e755c808d00f939 803 devel optional monotone_0.31-2.dsc
 c4faecfcdd46dbea2427ab2a89e81dc2 2321 devel optional monotone_0.31-2.diff.gz
 6e22f355a28e3d966839358c59e2822c 230672 devel optional 
monotone-server_0.31-2_all.deb
 22b7253cbbab7871df64da383f8799f5 3200758 doc optional 
monotone-doc_0.31-2_all.deb
 27c082c1b268dd1257c8a1b5add94701 2854824 devel optional 
monotone_0.31-2_i386.deb

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

iD8DBQFFZI79vFdYF1IwUUoRAuLOAKDGHA2W9JKsm2bkr8y1UOWDLh4fVACg7RLZ
4mQugdBqfSb7M+avmzCgsr4=
=uC3f
-END PGP SIGNATURE-


Accepted:
monotone-doc_0.31-2_all.deb
  to pool/main/m/monotone/monotone-doc_0.31-2_all.deb
monotone-server_0.31-2_all.deb
  to pool/main/m/monotone/monotone-server_0.31-2_all.deb
monotone_0.31-2.diff.gz
  to pool/main/m/monotone/monotone_0.31-2.diff.gz
monotone_0.31-2.dsc
  to pool/main/m/monotone/monotone_0.31-2.dsc
monotone_0.31-2_i386.deb
  to pool/main/m/monotone/monotone_0.31-2_i386.deb


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



Accepted autopartkit 1.22 (source i386)

2006-11-22 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 20:54:28 +0100
Source: autopartkit
Binary: autopartkit
Architecture: source i386
Version: 1.22
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 autopartkit - Automatically Partition Hard Drives (unsafe) (udeb)
Changes: 
 autopartkit (1.22) unstable; urgency=low
 .
   * acinclude.m4: properly quote definition of JAPHAR_GREP_CFLAGS.
   * Run commands as documented in HACKING to fix FTBFS.
Files: 
 2ec9c024b5872eeb159a4ff67ac0b0c0 828 debian-installer optional 
autopartkit_1.22.dsc
 3b0f3ff364ea34e9acb4be21b53e0bdd 221096 debian-installer optional 
autopartkit_1.22.tar.gz
 7c268404f2a68b89ac9014a187803307 104052 debian-installer optional 
autopartkit_1.22_i386.udeb
Package-Type: udeb

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

iD8DBQFFZKu3gm/Kwh6ICoQRAkSBAJ4jnkIKkmH1Av5rLpOF5SDPiEZw8gCfYqkI
xkySV0xfG/Qsu9ZhZJo6cMY=
=0JWK
-END PGP SIGNATURE-


Accepted:
autopartkit_1.22.dsc
  to pool/main/a/autopartkit/autopartkit_1.22.dsc
autopartkit_1.22.tar.gz
  to pool/main/a/autopartkit/autopartkit_1.22.tar.gz
autopartkit_1.22_i386.udeb
  to pool/main/a/autopartkit/autopartkit_1.22_i386.udeb


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



Accepted serendipity 1.0.3-4 (source all)

2006-11-22 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 21:20:28 +0100
Source: serendipity
Binary: serendipity
Architecture: source all
Version: 1.0.3-4
Distribution: unstable
Urgency: low
Maintainer: Thijs Kinkhorst [EMAIL PROTECTED]
Changed-By: Thijs Kinkhorst [EMAIL PROTECTED]
Description: 
 serendipity - Weblog manager with extensive theming and plugin support
Changes: 
 serendipity (1.0.3-4) unstable; urgency=low
 .
   * Add note to README.Debian about register_globals and it needing
 to be off.
   * Enclose php_flag statements in apache.conf in IfModules.
   * Correct serendipity_config_local.php for PostgreSQL when setting
 a port number. Document that Serendipity does not currently support
 running with a PostgreSQL on a non-default port number.
Files: 
 781b278022d757c0bfa51142a90e177b 584 web optional serendipity_1.0.3-4.dsc
 e2d1bbf3b934bc471e8b118eb4e294b2 17415 web optional serendipity_1.0.3-4.diff.gz
 74ec7455bf75cadaaa953474f6d6479b 2769296 web optional 
serendipity_1.0.3-4_all.deb

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

iD8DBQFFZLFIJdKMxZV9WM8RArdOAJ9jOoOjYbgdjHTWzP++sh6HugucbACgmABo
36akgLEmkfn0XFmO9qdpmgk=
=Ch7k
-END PGP SIGNATURE-


Accepted:
serendipity_1.0.3-4.diff.gz
  to pool/main/s/serendipity/serendipity_1.0.3-4.diff.gz
serendipity_1.0.3-4.dsc
  to pool/main/s/serendipity/serendipity_1.0.3-4.dsc
serendipity_1.0.3-4_all.deb
  to pool/main/s/serendipity/serendipity_1.0.3-4_all.deb


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



Accepted haskell-filepath 0.11-1 (source all i386)

2006-11-22 Thread Arjan Oosting
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 21:46:33 +0100
Source: haskell-filepath
Binary: libghc6-filepath-dev haskell-filepath-doc libhugs-filepath 
libghc6-filepath-prof
Architecture: source all i386
Version: 0.11-1
Distribution: unstable
Urgency: low
Maintainer: Arjan Oosting [EMAIL PROTECTED]
Changed-By: Arjan Oosting [EMAIL PROTECTED]
Description: 
 haskell-filepath-doc - API documentation of the Haskell FilePath library
 libghc6-filepath-dev - GHC 6 library for manipulating FilePath's
 libghc6-filepath-prof - GHC 6 profiling library for manipulating FilePath's
 libhugs-filepath - Hugs library for manipulating FilePath's
Changes: 
 haskell-filepath (0.11-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/mk-haskell-depends: update script to take installed package
 configuration files as arguments.
   * debian/watch: added uscan watch file.
Files: 
 e96efd80a29f4a3fea0b2abd77949e41 867 devel extra haskell-filepath_0.11-1.dsc
 6fcab4bc88489cc2d93fd71c91aae57b 14950 devel extra 
haskell-filepath_0.11.orig.tar.gz
 6a3f111620a4222e4a04a91222b94de2 4726 devel extra 
haskell-filepath_0.11-1.diff.gz
 6452aa50c09a353f0d9bb54b4005791a 217696 devel extra 
libghc6-filepath-dev_0.11-1_i386.deb
 a97ca243de3590034aea8f524609b2f4 241356 devel extra 
libghc6-filepath-prof_0.11-1_i386.deb
 579b5721c367ac07e15ec19e10d2deae 15768 devel extra 
libhugs-filepath_0.11-1_all.deb
 fc03562fbaf14539a505810506a845b6 26892 doc extra 
haskell-filepath-doc_0.11-1_all.deb

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

iD8DBQFFZLqFUALvsZYuOJARAmSTAJ0e83fCzBSQLRESCS+4KOdo5Kl4oACghrFO
jUDWMswPGo+8l5n9pchUSLY=
=XS9l
-END PGP SIGNATURE-


Accepted:
haskell-filepath-doc_0.11-1_all.deb
  to pool/main/h/haskell-filepath/haskell-filepath-doc_0.11-1_all.deb
haskell-filepath_0.11-1.diff.gz
  to pool/main/h/haskell-filepath/haskell-filepath_0.11-1.diff.gz
haskell-filepath_0.11-1.dsc
  to pool/main/h/haskell-filepath/haskell-filepath_0.11-1.dsc
haskell-filepath_0.11.orig.tar.gz
  to pool/main/h/haskell-filepath/haskell-filepath_0.11.orig.tar.gz
libghc6-filepath-dev_0.11-1_i386.deb
  to pool/main/h/haskell-filepath/libghc6-filepath-dev_0.11-1_i386.deb
libghc6-filepath-prof_0.11-1_i386.deb
  to pool/main/h/haskell-filepath/libghc6-filepath-prof_0.11-1_i386.deb
libhugs-filepath_0.11-1_all.deb
  to pool/main/h/haskell-filepath/libhugs-filepath_0.11-1_all.deb


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



Accepted debian-edu-install 0.659 (source all)

2006-11-22 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 22:15:57 +0100
Source: debian-edu-install
Binary: debian-edu-install-udeb debian-edu-install debian-edu-profile-udeb
Architecture: source all
Version: 0.659
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-edu@lists.debian.org
Changed-By: Luk Claes [EMAIL PROTECTED]
Description: 
 debian-edu-install - Set d-i values to install Debian-Edu without questions
 debian-edu-install-udeb - Execute Debian-Edu debian-installer profile (udeb)
 debian-edu-profile-udeb - Choose Debian-Edu profile (udeb)
Changes: 
 debian-edu-install (0.659) unstable; urgency=low
 .
   [ Petter Reinholdtsen ]
   * Prepare few new release.
 .
   [ Luk Claes ]
   * Added myself to uploaders.
Files: 
 828da458378ea6b3c490cee797dcd3c7 848 misc optional debian-edu-install_0.659.dsc
 3fe67e7b70047a8497dd04fb55b83a05 104630 misc optional 
debian-edu-install_0.659.tar.gz
 77c9d3426938e5190f3ccca21d39abcc 74084 misc optional 
debian-edu-install_0.659_all.deb
 4e2d16fa06f243f60a7b7a0f4a12b899 1808 debian-installer optional 
debian-edu-install-udeb_0.659_all.udeb
 40d60793afefc7cb29932b54f7084c7d 48912 debian-installer optional 
debian-edu-profile-udeb_0.659_all.udeb

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

iD8DBQFFZMEt5UTeB5t8Mo0RAqFXAKCsBZsdiqtF0ojMpQfYxcfT+/KUiQCcCsbm
7tA7ZvnIJzZtHMxXhMYspn0=
=diST
-END PGP SIGNATURE-


Accepted:
debian-edu-install-udeb_0.659_all.udeb
  to pool/main/d/debian-edu-install/debian-edu-install-udeb_0.659_all.udeb
debian-edu-install_0.659.dsc
  to pool/main/d/debian-edu-install/debian-edu-install_0.659.dsc
debian-edu-install_0.659.tar.gz
  to pool/main/d/debian-edu-install/debian-edu-install_0.659.tar.gz
debian-edu-install_0.659_all.deb
  to pool/main/d/debian-edu-install/debian-edu-install_0.659_all.deb
debian-edu-profile-udeb_0.659_all.udeb
  to pool/main/d/debian-edu-install/debian-edu-profile-udeb_0.659_all.udeb


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



Accepted fglrx-driver 8.28.8-4 (source i386)

2006-11-22 Thread Flavio Stanchina
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 16 Nov 2006 23:53:16 +0100
Source: fglrx-driver
Binary: fglrx-driver-dev fglrx-kernel-src fglrx-driver fglrx-control
Architecture: source i386
Version: 8.28.8-4
Distribution: unstable
Urgency: low
Maintainer: Flavio Stanchina [EMAIL PROTECTED]
Changed-By: Flavio Stanchina [EMAIL PROTECTED]
Description: 
 fglrx-control - control panel for the ATI graphics accelerators
 fglrx-driver - display driver for the ATI graphics accelerators
 fglrx-driver-dev - display driver for the ATI graphics accelerators 
(development fil
 fglrx-kernel-src - kernel module source for the ATI graphics accelerators
Closes: 368802 398980
Changes: 
 fglrx-driver (8.28.8-4) unstable; urgency=low
 .
   * Add patch 12-CONFIG_X86_XEN to allow building on Xen-enabled kernels;
 thanks to Loic Minier.
 (Closes: #368802)
 .
   * Add patch 13-config_h-is-gone to allow building on Linux 2.6.19-rc2:
 linux/config.h is no longer generated, include linux/autoconf.h instead;
 thanks to Julien BLACHE.
 (Closes: #398980)
Files: 
 5a1c31ff641cc226262e9129484dcb90 972 non-free/x11 extra 
fglrx-driver_8.28.8-4.dsc
 a6b2c2a682787b93f1f3f46732e1d970 132836 non-free/x11 extra 
fglrx-driver_8.28.8-4.diff.gz
 0c28aedbee5c4451ea6fb9475b8dd9f1 7552130 non-free/x11 extra 
fglrx-driver_8.28.8-4_i386.deb
 0769f78f6fe5b3239bb5ec91f54a7055 102974 non-free/devel extra 
fglrx-driver-dev_8.28.8-4_i386.deb
 64b14415e5a84c5cd23f8bb51ab54036 493588 non-free/x11 extra 
fglrx-kernel-src_8.28.8-4_i386.deb
 448b8ab8d5ba0ace475f6b7d1abcd488 61234 non-free/x11 extra 
fglrx-control_8.28.8-4_i386.deb

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

iQCVAwUBRWTCSX7hqgLJpbVOAQI7OQP/dve+AuKUj+u42ibgQYpH2QlUstvDA/vv
FxVXHY9cI+Rvv8Ivf90r/5AYSCOrWYJABjA6p7BGRRWLyGniJp3KfmL2gPFrKSyS
K/QLWNLF0hDhOD6JWWuhRxU7Lw1nihPXN/F+jnngzAH2HPUK2RCIPHGl4RnSxxdG
mWUESv+DDYA=
=o6US
-END PGP SIGNATURE-


Accepted:
fglrx-control_8.28.8-4_i386.deb
  to pool/non-free/f/fglrx-driver/fglrx-control_8.28.8-4_i386.deb
fglrx-driver-dev_8.28.8-4_i386.deb
  to pool/non-free/f/fglrx-driver/fglrx-driver-dev_8.28.8-4_i386.deb
fglrx-driver_8.28.8-4.diff.gz
  to pool/non-free/f/fglrx-driver/fglrx-driver_8.28.8-4.diff.gz
fglrx-driver_8.28.8-4.dsc
  to pool/non-free/f/fglrx-driver/fglrx-driver_8.28.8-4.dsc
fglrx-driver_8.28.8-4_i386.deb
  to pool/non-free/f/fglrx-driver/fglrx-driver_8.28.8-4_i386.deb
fglrx-kernel-src_8.28.8-4_i386.deb
  to pool/non-free/f/fglrx-driver/fglrx-kernel-src_8.28.8-4_i386.deb


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



Accepted debian-edu-config 0.409 (source all)

2006-11-22 Thread Luk Claes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 22:31:59 +0100
Source: debian-edu-config
Binary: debian-edu-config
Architecture: source all
Version: 0.409
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-edu@lists.debian.org
Changed-By: Luk Claes [EMAIL PROTECTED]
Description: 
 debian-edu-config - Configuration files for Skolelinux systems
Changes: 
 debian-edu-config (0.409) unstable; urgency=low
 .
   [ Luk Claes ]
   * Added myself to uploaders.
 .
   [ Petter Reinholdtsen ]
   * Adjust cfengine test for detecting etch, to look for '4.0' and not
 'testing', to match the current version.
   * Change testsuite/bind9-dns to not report missing Internet
 connectivity as an error.
   * Change testsuite/ispell-dict-default to handle locales with UTF-8 or
 other non-ISO-8859-1 charmaps properly.
Files: 
 5a42238b3162aecfb4eefe708c73a75c 750 misc optional debian-edu-config_0.409.dsc
 16205fbea909e2bb15b16e3c33a14806 244582 misc optional 
debian-edu-config_0.409.tar.gz
 c35323efbb2fa266f86c9a600fbc6507 228130 misc optional 
debian-edu-config_0.409_all.deb

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

iD8DBQFFZML+5UTeB5t8Mo0RAhbJAJwL8fTtxGlxF5hvwybQZ1z4YYLndgCgqEvc
vp/YyuhYzkOpFLB45MiWUNg=
=9Esl
-END PGP SIGNATURE-


Accepted:
debian-edu-config_0.409.dsc
  to pool/main/d/debian-edu-config/debian-edu-config_0.409.dsc
debian-edu-config_0.409.tar.gz
  to pool/main/d/debian-edu-config/debian-edu-config_0.409.tar.gz
debian-edu-config_0.409_all.deb
  to pool/main/d/debian-edu-config/debian-edu-config_0.409_all.deb


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



Accepted libima-dbi-perl 0.34-3 (source all)

2006-11-22 Thread Bart Martens
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 17:09:41 +0100
Source: libima-dbi-perl
Binary: libima-dbi-perl
Architecture: source all
Version: 0.34-3
Distribution: unstable
Urgency: low
Maintainer: Bart Martens [EMAIL PROTECTED]
Changed-By: Bart Martens [EMAIL PROTECTED]
Description: 
 libima-dbi-perl - Database connection caching and organization
Closes: 399309
Changes: 
 libima-dbi-perl (0.34-3) unstable; urgency=low
 .
   * debian/patches/01_still_Active.diff: Added.  Closes: #399309.
Files: 
 51defe55f641bce941143af6da48916b 774 perl optional libima-dbi-perl_0.34-3.dsc
 ce7878d529d30248440ae23460771c6e 2285 perl optional 
libima-dbi-perl_0.34-3.diff.gz
 7b7d9be7f5d7bdc5154941a8e03f5c57 29336 perl optional 
libima-dbi-perl_0.34-3_all.deb

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

iD8DBQFFZMPqipBneRiAKDwRAv0AAJ9v2mbk6xzVEJqsMuEHr7T70kiYagCeJw6g
h3ELF7Oi1F19Zbl1Xle6vp4=
=SO+/
-END PGP SIGNATURE-


Accepted:
libima-dbi-perl_0.34-3.diff.gz
  to pool/main/libi/libima-dbi-perl/libima-dbi-perl_0.34-3.diff.gz
libima-dbi-perl_0.34-3.dsc
  to pool/main/libi/libima-dbi-perl/libima-dbi-perl_0.34-3.dsc
libima-dbi-perl_0.34-3_all.deb
  to pool/main/libi/libima-dbi-perl/libima-dbi-perl_0.34-3_all.deb


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



Accepted gpsim-lcd 0.2.9-1 (source i386)

2006-11-22 Thread Steffen Joeris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 21 Nov 2006 22:57:26 +0100
Source: gpsim-lcd
Binary: gpsim-lcd
Architecture: source i386
Version: 0.2.9-1
Distribution: unstable
Urgency: medium
Maintainer: Steffen Joeris [EMAIL PROTECTED]
Changed-By: Steffen Joeris [EMAIL PROTECTED]
Description: 
 gpsim-lcd  - LCD module for gpsim
Changes: 
 gpsim-lcd (0.2.9-1) unstable; urgency=medium
 .
   * New upstream release
   * Bump the versioned build-depends against gpsim-dev
   * Update clean target in debian/rules
Files: 
 6d857882b4ae7ef19ec846f3883243af 661 electronics optional gpsim-lcd_0.2.9-1.dsc
 a0d19fb9597d99b0462496e8d95876aa 753146 electronics optional 
gpsim-lcd_0.2.9.orig.tar.gz
 84017d329a5171c7234faf0c71870e4b 3454 electronics optional 
gpsim-lcd_0.2.9-1.diff.gz
 1a74d70032063011a45e1f4e9e02aa95 43392 electronics optional 
gpsim-lcd_0.2.9-1_i386.deb

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

iD8DBQFFZL5s+C5cwEsrK54RAhn/AKDZ1teTHJ6AYVDYpKRuDdoiEuYUkwCgzv2z
dWNGZi/zy0i0bzc3CIfXgco=
=ESBT
-END PGP SIGNATURE-


Accepted:
gpsim-lcd_0.2.9-1.diff.gz
  to pool/main/g/gpsim-lcd/gpsim-lcd_0.2.9-1.diff.gz
gpsim-lcd_0.2.9-1.dsc
  to pool/main/g/gpsim-lcd/gpsim-lcd_0.2.9-1.dsc
gpsim-lcd_0.2.9-1_i386.deb
  to pool/main/g/gpsim-lcd/gpsim-lcd_0.2.9-1_i386.deb
gpsim-lcd_0.2.9.orig.tar.gz
  to pool/main/g/gpsim-lcd/gpsim-lcd_0.2.9.orig.tar.gz


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



Accepted php5 5.2.0-6 (source i386 all)

2006-11-22 Thread sean finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 22 Nov 2006 19:04:04 +0100
Source: php5
Binary: php5-gd php5-ldap php5 php5-xmlrpc php5-pspell libapache2-mod-php5 
php5-xsl php5-cgi php-pear php5-tidy php5-pgsql php5-cli php5-recode php5-mhash 
php5-sybase php5-curl php5-odbc php5-mcrypt php5-mysql php5-common php5-imap 
php5-snmp php5-dev php5-sqlite libapache-mod-php5 php5-interbase
Architecture: source i386 all
Version: 5.2.0-6
Distribution: unstable
Urgency: high
Maintainer: Debian PHP Maintainers [EMAIL PROTECTED]
Changed-By: sean finney [EMAIL PROTECTED]
Description: 
 libapache-mod-php5 - server-side, HTML-embedded scripting language (apache 1.3 
module)
 libapache2-mod-php5 - server-side, HTML-embedded scripting language (apache 
2.0 module)
 php-pear   - PEAR - PHP Extension and Application Repository
 php5   - server-side, HTML-embedded scripting language (meta-package)
 php5-cgi   - server-side, HTML-embedded scripting language (CGI binary)
 php5-cli   - command-line interpreter for the php5 scripting language
 php5-common - Common files for packages built from the php5 source
 php5-curl  - CURL module for php5
 php5-dev   - Files for PHP5 module development
 php5-gd- GD module for php5
 php5-imap  - IMAP module for php5
 php5-interbase - interbase/firebird module for php5
 php5-ldap  - LDAP module for php5
 php5-mcrypt - MCrypt module for php5
 php5-mhash - MHASH module for php5
 php5-mysql - MySQL module for php5
 php5-odbc  - ODBC module for php5
 php5-pgsql - PostgreSQL module for php5
 php5-pspell - pspell module for php5
 php5-recode - recode module for php5
 php5-snmp  - SNMP module for php5
 php5-sqlite - SQLite module for php5
 php5-sybase - Sybase / MS SQL Server module for php5
 php5-tidy  - tidy module for php5
 php5-xmlrpc - XML-RPC module for php5
 php5-xsl   - XSL module for php5
Closes: 399558
Changes: 
 php5 (5.2.0-6) unstable; urgency=high
 .
   [ sean finney ]
   * firebird2-dev (and thus php5-interbase) is only available on
 i386/amd64, so update the control/rules information accordingly.
 thanks to Bastian Blank for reporting this (closes: #399558).
Files: 
 6477ec51d62ddcd92d064e6ce8db093e 1963 web optional php5_5.2.0-6.dsc
 40c6c3428a52f7fe56e3ca583f932308 93287 web optional php5_5.2.0-6.diff.gz
 cb23a659f999df320b45db9e4afeb05f 211634 web optional 
php5-common_5.2.0-6_i386.deb
 06768292ddcd2fb1f78b4736e577bdcb 2411348 web optional 
libapache-mod-php5_5.2.0-6_i386.deb
 13d1d51cb0532daecea7ba8abe68b12e 2412096 web optional 
libapache2-mod-php5_5.2.0-6_i386.deb
 37ad5eae06e47a4cd9aab56c6f46fe1c 4752560 web optional php5-cgi_5.2.0-6_i386.deb
 3be5fd8932c3262f5ada9963b60e7753 2395614 web optional php5-cli_5.2.0-6_i386.deb
 8d3226dd5c45844e5e131f3303f30bc3 341974 devel optional 
php5-dev_5.2.0-6_i386.deb
 547cb5e483a9674931a7e6cd1c058495 2 web optional php5-curl_5.2.0-6_i386.deb
 d9751c22007964baa66db74574e9fbe6 33376 web optional php5-gd_5.2.0-6_i386.deb
 d9119cb00c552b286331a5c7c32ecef2 34462 web optional php5-imap_5.2.0-6_i386.deb
 7ebe6f9e1db6715c2d06be804eb84645 44102 web optional 
php5-interbase_5.2.0-6_i386.deb
 f0bdb017e8ecc65cdec2a3d21f9d2092 17228 web optional php5-ldap_5.2.0-6_i386.deb
 45caef4706b0efccad08a1b874e14001 12816 web optional 
php5-mcrypt_5.2.0-6_i386.deb
 c8b23e64c2e663f2e7b3006f0cc0398f 5032 web optional php5-mhash_5.2.0-6_i386.deb
 710f0b41b86e51b179aebc687f19f33c 64898 web optional php5-mysql_5.2.0-6_i386.deb
 e9a6770d34601880941820e1b7a879e9 34044 web optional php5-odbc_5.2.0-6_i386.deb
 a60b7c5b0c07961bafb4bd7b62819dd4 50604 web optional php5-pgsql_5.2.0-6_i386.deb
 e187d3d22bb371efca7902f04cf64a53 8610 web optional php5-pspell_5.2.0-6_i386.deb
 0f6a52c0fa9b2fe05b67b10ae753df1a 4742 web optional php5-recode_5.2.0-6_i386.deb
 d57155a7f19b0090ef335538e35ff342 11292 web optional php5-snmp_5.2.0-6_i386.deb
 50ca15b11e491d0ca38656da76404006 34446 web optional 
php5-sqlite_5.2.0-6_i386.deb
 13f9a9fb1964a17d35d7d93ada4c15a4 18374 web optional 
php5-sybase_5.2.0-6_i386.deb
 87ddbd19c5824a2c362c7c886f5c8a17 16456 web optional php5-tidy_5.2.0-6_i386.deb
 ad9af4341993fee102717a7e6e37632a 36432 web optional 
php5-xmlrpc_5.2.0-6_i386.deb
 e288113acacac8b838861a8c96d46f97 12242 web optional php5-xsl_5.2.0-6_i386.deb
 c77acde54938c19f94a47428af4aad17 1036 web optional php5_5.2.0-6_all.deb
 7d76a021216b5041462f2de7c27241f3 306842 web optional php-pear_5.2.0-6_all.deb

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

iD8DBQFFZLs4ynjLPm522B0RAuyWAKCAcMJ/8G0yXGVmhTeRsgxZH/OsTQCeJPDf
xYfqxeajSIMs8RTCmdIMRMQ=
=JwRI
-END PGP SIGNATURE-


Accepted:
libapache-mod-php5_5.2.0-6_i386.deb
  to pool/main/p/php5/libapache-mod-php5_5.2.0-6_i386.deb
libapache2-mod-php5_5.2.0-6_i386.deb
  to pool/main/p/php5/libapache2-mod-php5_5.2.0-6_i386.deb
php-pear_5.2.0-6_all.deb
  to pool/main/p/php5/php-pear_5.2.0-6_all.deb
php5-cgi_5.2.0-6_i386.deb
  to pool/main/p/php5/php5-cgi_5.2.0-6_i386.deb
php5-cli_5.2.0-6_i386.deb
  

Accepted tomcat5.5 5.5.20-2 (source all)

2006-11-22 Thread Marcus Better
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 21 Nov 2006 12:06:17 +0100
Source: tomcat5.5
Binary: libtomcat5.5-java tomcat5.5 tomcat5.5-admin tomcat5.5-webapps
Architecture: source all
Version: 5.5.20-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 
pkg-java-maintainers@lists.alioth.debian.org
Changed-By: Marcus Better [EMAIL PROTECTED]
Description: 
 libtomcat5.5-java - Java Servlet engine -- core libraries
 tomcat5.5  - Java Servlet 2.4 engine with JSP 2.0 support
 tomcat5.5-admin - Java Servlet engine -- admin  manager web interfaces
 tomcat5.5-webapps - Java Servlet engine -- documentation and example web 
applications
Closes: 392569 393224 395167 397996 398044 399184
Changes: 
 tomcat5.5 (5.5.20-2) unstable; urgency=medium
 .
   * Now runs with java-gcj-compat. (Closes: #395167)
   * Add compatibility links for JDK 1.4. Thanks to Javier Serrano
 Polo. (Closes: #397996).
   * Fix accidental double removal of the tomcat55 user on purge in some
 cases. Thanks to Andreas Beckmann. (Closes: #393224)
   * Fix typo affecting /etc/init.d/tomcat5.5 status command. Thanks to
 Jhair Tocancipa Triana. (Closes: #398044)
   * Webapps are now installed in /usr/share/tomcat5.5-webapps. Their
 context definitions are copied into
 /var/lib/tomcat5.5/conf/Catalina/localhost on first install, but if
 removed they will no longer be re-enabled on every upgrade. Thanks to
 Adrian Bridgett. (Closes: #399184)
   * Change owner of various files from tomcat5 to tomcat55 on upgrade from
 release 5.5.17-1 or earlier. Thanks to Mike Whitaker. (Closes: #392569)
   * Don't use juli LogManager with java-gcj-compat, as workaround for bug
 #399251.
   * We no longer need xsltproc to generate documentation, since the
 required supporting functions are now available in main.
   * debian/ant.properties, debian/rules: Don't delete PureTLS code from
 the source. It will be ignored during build anyway.
   * Rebuild jkstatus-ant from source instead of using precompiled class
 files.
   * Simplified the .install files by grouping by directory.
   * Install forgotten files `catalina.properties', `logging.properties'
 and `context.xml' in /var/lib/tomcat5.5/conf.
   * Synchronized security policy files with upstream.
   * debian/rules: Don't use CDBS. Thus we no longer need a bogus ant xxx
 invocation in the clean target, and the script is simple enough
 anyway.
Files: 
 1c710b1ff38d1a4daee38dfc191b2734 1267 web optional tomcat5.5_5.5.20-2.dsc
 8a68e8c8bdf74ea3bc3ca0c636585a33 26561 web optional tomcat5.5_5.5.20-2.diff.gz
 0e08d7bd0134067c2b49e2596833909c 56018 web optional tomcat5.5_5.5.20-2_all.deb
 5544f264f8d3de61eea1c29e294d8c67 2385548 web optional 
libtomcat5.5-java_5.5.20-2_all.deb
 d92598ad481d7c2e9b2a231fdb467ffe 1465682 web optional 
tomcat5.5-webapps_5.5.20-2_all.deb
 e51ff8e691236eafc3e8c2414c13aef5 1158390 web optional 
tomcat5.5-admin_5.5.20-2_all.deb

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

iD8DBQFFZMkh+C5cwEsrK54RAptNAKCBnkoCFyfOI9tAIlI5lOI7qMnK0QCglXwY
RIJcaHBW3qSWQ9NkyGjAJU0=
=LlO6
-END PGP SIGNATURE-


Accepted:
libtomcat5.5-java_5.5.20-2_all.deb
  to pool/main/t/tomcat5.5/libtomcat5.5-java_5.5.20-2_all.deb
tomcat5.5-admin_5.5.20-2_all.deb
  to pool/main/t/tomcat5.5/tomcat5.5-admin_5.5.20-2_all.deb
tomcat5.5-webapps_5.5.20-2_all.deb
  to pool/main/t/tomcat5.5/tomcat5.5-webapps_5.5.20-2_all.deb
tomcat5.5_5.5.20-2.diff.gz
  to pool/main/t/tomcat5.5/tomcat5.5_5.5.20-2.diff.gz
tomcat5.5_5.5.20-2.dsc
  to pool/main/t/tomcat5.5/tomcat5.5_5.5.20-2.dsc
tomcat5.5_5.5.20-2_all.deb
  to pool/main/t/tomcat5.5/tomcat5.5_5.5.20-2_all.deb


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



  1   2   >