Re: Font problem - Nimbus Sans L

2005-02-09 Thread Josselin Mouette
Jack Dodds wrote:
I believe this problem could be considered a bug - or at least an error 
in the installation of Debian.

I encountered it on Woody, and now have encountered the same problem on 
Sarge.

Specifically, the standard fonts that are installed include
Nimbus Sans L, and
Nimbus Sans L Condensed.
Nimbus Sans L is very similar to Helvetica or Arial and is important to 
have for interoperability with Windows machines.

However, when characters are formatted Nimbus Sans L in Abiword and in 
OpenOffice, it is actually Nimbus Sans L Condensed that is displayed and 
printed. This means that there is no Arial/Helvetica equivalent font 
available to the user.

On Woody, I deleted n019043l.pfb, n019044l.pfb, n019063l.pfb, 
n019064l.pfb from /usr/lib/X11/fonts/Type1.  Then I ran type1inst in 
that directory, ran xset fp rehash, deleted XftCache.  Atger rebooting, 
there were no more Condensed fonts and the real Nimbus Sans L was used 
in Abiword (I didn't have OpenOffice).

On Sarge, the behaviour is stranger.  I deleted the same files, which 
fixed the problem for Abiword but not OpenOffice.  Then I restored the 
files.  Still, Abiword used the correct Nimbus Sans L.

I have spent a significant amount of time trying to understand the font 
system, and all that happens is that I follow symbolic links in 
circles.  So perhaps someone more knowledgeable than I can identify the 
problem here.  I suspect it has something to do with inappropriate font 
substitutions being specifed in the configuration that is set up by 
Debian Installer.
This has nothing to do with debian-installer. See e.g. 
http://bugs.debian.org/243329

However, the fact that it also happens outside fontconfig suggests that 
this is a more general issue with these fonts. I'm CC-ing the fontconfig 
developers, in case they have a clue.
--
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
  `-  Debian GNU/Linux -- The power of freedom

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


Re: About valid and invalid user names

2005-02-09 Thread Christophe Chisogne
Marc Haber a écrit :
By default, adduser will verify the user against a configurable
regexp, default being the most conservative ^[a-z][a-z0-9\-]*$. The
--force-badname option will change the regexp to a hardcoded
^[-\._A-Za-z0-9]*\$?$, allowing users to happily hang themselves.
To use Samba as a windows (NT) PDC, you must create 'machine' accounts
ending with '$', like 'appolo$'. In that case, the --force-badname
is helpfull.
PS I guess useradd is more friendly to bad names, because I used it
   in my smb.conf:
   add machine script = /usr/sbin/useradd
-d /dev/null -s /bin/false -g machines -c Machine %u %u
Christophe


Re: Font problem - Nimbus Sans L

2005-02-09 Thread Josselin Mouette
(Also note that Mr Dodds' mail server is on crack and refused mail from 
my SMTP for a mysterious reason; that's why you didn't receive my reply 
in private.)
--
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
  `-  Debian GNU/Linux -- The power of freedom

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


Re: [installation-dev] OpenOffice2 on Debian

2005-02-09 Thread Oliver Braun
Drew Parsons wrote:
 Warnings:
 
 a) icons do not appear in the menus. They were appearing in 1.9.65,
 thanks to openofficeorg-redhat-menus, but changes since then have made
 them disappear again.  Can likely be fixed easily.

The menu rpms now use rpm trigger scripts to create a symlink from
/etc/openoffice.org-1.9 - /opt/openoffice.org-1.9.74, since this seems
the only way to handle module de-selection appropriatly without making
the OOo rpms non-relocatable or creating non packaged files in post
install scripts.

I suspect trigger scripts are not handled by alien. However, I hope
we'll see native debian menu packages some day.

Regards,
Oliver


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



Re: About valid and invalid user names

2005-02-09 Thread Marc Haber
On Wed, 09 Feb 2005 09:51:18 +0100, Christophe Chisogne
[EMAIL PROTECTED] wrote:
Marc Haber a écrit :
 By default, adduser will verify the user against a configurable
 regexp, default being the most conservative ^[a-z][a-z0-9\-]*$. The
 --force-badname option will change the regexp to a hardcoded
 ^[-\._A-Za-z0-9]*\$?$, allowing users to happily hang themselves.

To use Samba as a windows (NT) PDC, you must create 'machine' accounts
ending with '$', like 'appolo$'. In that case, the --force-badname
is helpfull.

Which is why --force-badname allows trailing $.

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834



Re: Bug#294347: mysql-server: Cannot run /etc/init.d/mysql start if $TMPDIR is set

2005-02-09 Thread Tollef Fog Heen
* Christian Hammers 

| On 2005-02-09 Gilbert Laycock wrote:
|  If you try to start/restart mysql-server as root, and root has TMPDIR
|  set to something not writable by the mysql user (eg if you are using
|  libpam-tmpdir, so TMPDIR is typically /tmp/user/0 during a login
|  session), then it fails to restart - you get errors like this:
| 
| Hm, generally spoken, environment variables exists for a reason, if you
| start a program with such a one, you want it to use it so I can't blame
| MySQL.
| 
| On the other hand, libpam-tmpdir seems to be a nice idea.
| 
| Do you have a suggestion how to solve this problem? Root often starts
| services that change their uids shortly after running i.e. do not
| use su or sudo which would give them the right env variables.
| 
| I Cc the libpam-tmpdir maintainer ;)

There's not much to do about it -- ideally, services should start a
new session (which would give them a new TMPDIR) and not just change
uids.  (From the PoV of a PAM maintainer at least. :)  However, this
can in practice be a bit icky, so I would just add something like 

[ -w $TMPDIR ] || { TMPDIR=/tmp; export TMPDIR }
  
to the init script.

This should probably be considered good practice for daemons which
change their UID, I think.

I'm Cc-ing debian-devel to see if anybody has any better suggestions;
Mail-Followup-To set there.

-- 
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]



Re: Font problem - Nimbus Sans L

2005-02-09 Thread Jack Dodds
Josselin Mouette wrote:
(Also note that Mr Dodds' mail server is on crack and refused mail from 
my SMTP for a mysterious reason; that's why you didn't receive my reply 
in private.)
Thanks for pointing me at bug 243329, Josselin.  Now I know that a) I am 
not alone; b) where to file this.  And perhaps another user searching 
the debian lists for the same problem will benefit, so a reply to the 
newsgroup is be good thing.

As for the mail server at aci.on.ca - they have a lot of anti-spam 
measures in effect.  Probably your ISP is on their blacklist because 
another user at your ISP is infected with a bot which is spamming 
through your ISP's mailserver; or because your mailserver allows forwarding.

In my email account at work (another ISP) I get about 200 spams per day. 
My personal account at aci.on.ca gets one or two.  It's a mixed blessing 
because sometimes good emails do get bounced.  On the whole I support 
aci.on.ca's efforts.  The other ISP's just don't seem to care about 
spam.  If more did, we wouldn't have a spam epidemic.

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


Re: Font problem - Nimbus Sans L

2005-02-09 Thread Josselin Mouette
Jack Dodds wrote:
Thanks for pointing me at bug 243329, Josselin.  Now I know that a) I am 
not alone; b) where to file this.  And perhaps another user searching 
the debian lists for the same problem will benefit, so a reply to the 
newsgroup is be good thing.
Could you please post additional information to the bug report? 
Especially about how you see this bug on woody.

As for the mail server at aci.on.ca - they have a lot of anti-spam 
measures in effect.  Probably your ISP is on their blacklist because 
another user at your ISP is infected with a bot which is spamming 
through your ISP's mailserver; or because your mailserver allows 
forwarding.
I'm not using my ISP's mail server, and I am the sole user of this 
server for outgoing mail. Please fix this.
--
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
  `-  Debian GNU/Linux -- The power of freedom

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


Re: Bug#294084: ITP: life -- Linux Instrumentation for Enterprise - a set of WBEM management providers from Novell

2005-02-09 Thread Steve Greenland
On 09-Feb-05, 01:50 (CST), Rafal Lewczuk [EMAIL PROTECTED] wrote: 
 I'll try to rollback this ITP (dunno how to do it yet) and maybe post it
 after solving some issues (aside from naming/buzzwords there are also
 some technical things: build system, versioning etc.). 

If you intend to package it eventually, then there's no need to do
anything except perhaps add a note about the current state of not quite
ready for packaging, working on it.

The rollback mechanism is to simply close the report.

Steve

-- 
Steve Greenland
The irony is that Bill Gates claims to be making a stable operating
system and Linus Torvalds claims to be trying to take over the
world.   -- seen on the net


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



Bug#274137: ITA: mmm-mode -- multiple-major-mode for Emacsen

2005-02-09 Thread Zak B. Elep
package mmm-mode
retitle 274137 ITA: mmm-mode -- Multiple Major Mode for Emacs
thanks jijo

I'm interested in maintaining this package as I've been using this for quite
sometime now, and I'd also like to try my hand at maintaining another package.

-- 
ZAK B. ELEP [EMAIL PROTECTED]   -- Registered Linux User #327585
1024D/FA53851D  1486 7957 454D E529 E4F1  F75E 5787 B1FD FA53 851D
--  Running Debian GNU+Linux testing/unstable. GPG signed mail preferred.


pgpmeyUGbk32Z.pgp
Description: PGP signature


Re: scripts to download porn in Debian?

2005-02-09 Thread Sam Watkins
On Tue, Jan 25, 2005 at 05:22:23PM -0600, Ron Johnson wrote:
 On Tue, 2005-01-25 at 21:53 +0200, Tristan Seligmann wrote:
  After some discussion with the other upstream authors, the current plan
  of action is:
  
  The next release of Dosage will check both /etc/dosage/disabled, and
  ~/.dosage/disabled, and effectively disable any comics listed in either
  of the two locations. Sexy Losers will be included in the system-wide
  file by default, along with any other similarly offensive comics that
  are added in the future.
  
  Is this sufficient to deal with your concerns?
 
 Sounds pretty good to me...

Agreed.


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



what is /.udev for ?

2005-02-09 Thread Maykel Moya
I recently realized that I had /.dev, after that, I rm -fr it what
rendered my system unbootabled.

Can somebody point me to info regarding /.dev. I have dig
in /usr/share/doc/udev and Google but found nothing.

Regards
mike



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



Re: Please help test Snort 2.3.0 (experimental) packages

2005-02-09 Thread Ed Shornock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Javier Fernández-Sanguino Peña wrote:
| Hi everyone,
|
| I've recently uploaded (to experimental only) new Snort 2.3.0
| packages (based on the release made by the Snort team last January
| 25th).
Does this include snort-pgsql? I don't see for experimental (unless
the mirrors haven't all been updated yet).  I do see snort and
snort-mysql though...
| # apt-get install -t experimental snort-pgsql Reading Package
| Lists... Done Building Dependency Tree... Done snort-pgsql is
| already the newest version.
| # apt-cache policy snort-pgsql snort-pgsql: Installed: 2.2.0-9
| Candidate: 2.2.0-9 Version Table: *** 2.2.0-9 0 650
| http://ftp.nl.debian.org unstable/main Packages 600
| http://mirror.ox.ac.uk testing/main Packages 100
| /var/lib/dpkg/status
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org
iD8DBQFCCkdn3IV9jHsBFhMRAqKbAJ9zhVU2iBSfMtOws4++7ZTew5k2GACggQME
sVVxiyD/o8GQUteuBwik9l8=
=faGV
-END PGP SIGNATURE-
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: what is /.udev for ?

2005-02-09 Thread Pierre Habouzit
Le Mer 9 Février 2005 15:30, Maykel Moya a écrit :
 I recently realized that I had /.dev, after that, I rm -fr it what
 rendered my system unbootabled.

 Can somebody point me to info regarding /.dev. I have dig
 in /usr/share/doc/udev and Google but found nothing.

read your /etc/init.d/udev script
-- 
·O·  Pierre Habouzit
··O
OOOhttp://www.madism.org


pgphjoY5ZdXwa.pgp
Description: PGP signature


Re: what is /.udev for ?

2005-02-09 Thread Björn Krombholz
On Wed, 09 Feb 2005 10:30:12 -0400, Maykel Moya
[EMAIL PROTECTED] wrote:
 I recently realized that I had /.dev, after that, I rm -fr it what
 rendered my system unbootabled.

.dev is just a binding to the original (static) /dev/ that is created
before udev mounts it's dynamic /dev over the existing one. So if you
rm everything in /.dev you would delete everything in /dev which might
be needed at boot time before udev is initialized.

To solve your problem recreate /dev by copying it from another system,
f.e. debian boot/rescue disks, knoppix etc or simply recreate the
needing devices in /dev. AFAIR the only device needed on my system was
/dev/null.


Björn



Re: what is /.udev for ?

2005-02-09 Thread Sam Morris
Maykel Moya wrote:
I recently realized that I had /.dev, after that, I rm -fr it what
rendered my system unbootabled.
Can somebody point me to info regarding /.dev. I have dig
in /usr/share/doc/udev and Google but found nothing.
$ mount | grep \\.dev
/dev on /.dev type unknown (rw,bind)
When udev starts, your real /dev is bind mounted to /.dev so you can 
still access it for whatever reason. As you have noticed, wiping it out 
removes your real /dev, which means that your system won't be able to 
boot up to the point where it would normally start udev. :(

Some argue that this is one of the places where the old devfs is 
superior to udev. ;)

 Regards
 mike
--
Sam Morris
http://robots.org.uk/
PGP key id 5EA01078
Fingerprint 3412 EA18 1277 354B 991B  C869 B219 7FDB 5EA0 1078
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: what is /.udev for ?

2005-02-09 Thread Philipp Matthias Hahn
Hello!

On Wed, Feb 09, 2005 at 10:30:12AM -0400, Maykel Moya wrote:
 I recently realized that I had /.dev, after that, I rm -fr it what
 rendered my system unbootabled.

udev mounts a tmpfs over /dev to not disturb your (old) static /dev.
To make your old /dev available, udev bind-mounts it to /.dev, if that
mount-point exists.

BYtE
Philipp
-- 
Philipp Matthias Hahn [EMAIL PROTECTED]
 GPG/PGP: 9A540E39 @ keyrings.debian.org


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



Re: what is /.udev for ?

2005-02-09 Thread Ron Johnson
On Wed, 2005-02-09 at 17:30 +, Sam Morris wrote:
 Maykel Moya wrote:
  I recently realized that I had /.dev, after that, I rm -fr it what
  rendered my system unbootabled.
  
  Can somebody point me to info regarding /.dev. I have dig
  in /usr/share/doc/udev and Google but found nothing.
 
 $ mount | grep \\.dev
 /dev on /.dev type unknown (rw,bind)
 
 When udev starts, your real /dev is bind mounted to /.dev so you can 
 still access it for whatever reason. As you have noticed, wiping it out 
 removes your real /dev, which means that your system won't be able to 
 boot up to the point where it would normally start udev. :(
 
 Some argue that this is one of the places where the old devfs is 
 superior to udev. ;)

One thing I do know is that traditional apps like df (and anything
that uses stat(), I guess) don't know about /.dev, and so return
false information:

  $ df
  Filesystem 1K-blocks  Used Available Use% Mounted on
  /dev/hda39843308   5428016   3915272  59% /
  tmpfs 501936 0501936   0% /dev/shm
  /dev/hda2  46668 20415 23844  47% /boot
  /dev/hda52995936   1790220   1205716  60% /home
  /dev/hda6  105280504  78681360  21251108  79% /data
  /dev 9843308   5428016   3915272  59% /.dev
  none5120  2564  2556  51% /dev

-- 
-
Ron Johnson, Jr.
Jefferson, LA USA
PGP Key ID 8834C06B I prefer encrypted mail.

I take my children everywhere, but they always find their way
back home.
Robert Orben



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


Re: what is /.udev for ?

2005-02-09 Thread sean finney
On Wed, Feb 09, 2005 at 06:51:11PM +0100, Björn Krombholz wrote:
 .dev is just a binding to the original (static) /dev/ that is created
 before udev mounts it's dynamic /dev over the existing one. So if you
 rm everything in /.dev you would delete everything in /dev which might
 be needed at boot time before udev is initialized.

how does /.dev fit in with the fhs?


sean
-- 


signature.asc
Description: Digital signature


Re: what is /.udev for ?

2005-02-09 Thread Ben Pfaff
Ron Johnson [EMAIL PROTECTED] writes:

 One thing I do know is that traditional apps like df (and anything
 that uses stat(), I guess) don't know about /.dev, and so return
 false information:

   $ df
   Filesystem 1K-blocks  Used Available Use% Mounted on
   /dev/hda39843308   5428016   3915272  59% /
   tmpfs 501936 0501936   0% /dev/shm
   /dev/hda2  46668 20415 23844  47% /boot
   /dev/hda52995936   1790220   1205716  60% /home
   /dev/hda6  105280504  78681360  21251108  79% /data
   /dev 9843308   5428016   3915272  59% /.dev
   none5120  2564  2556  51% /dev

It's not really false, it's just that /.dev is a subtree of / and
so shows the same information as / does.
-- 
Whoever you are -- SGI, SCO, HP, or even Microsoft -- most of the
 smart people on the planet work somewhere else.
--Eric S. Raymond


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



Re: what is /.udev for ?

2005-02-09 Thread Thomas Bushnell BSG
Maykel Moya [EMAIL PROTECTED] writes:

 I recently realized that I had /.dev, after that, I rm -fr it what
 rendered my system unbootabled.

What led you to do such a thing?  The idea I don't know what this is,
so I should delete it is rampant, and disastrous.


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



Bug#294464: ITP: airt -- application for incident response teams

2005-02-09 Thread Kees Leune
Package: wnpp
Severity: wishlist
Owner: Kees Leune [EMAIL PROTECTED]

  Package name: airt
  Version : 20050209.1 (latest version will be uploaded)
  Upstream Author : Tilburg University, The Netherlands [EMAIL PROTECTED]
  URL : http://www.leune.org/airt/
  License : GPL
  Description : application for incident response teams

 Incident response teams need to track incidents as they develop. AIRT is a
 system to provide incident tracking capabilities with built-in support for

  * Comprehensive incident management console
  * IP based search of previous incidents
  * Email templates
  * Common AIRT export format for sharing incident data
  * Package-indepedent site configuration so upgrades do not invalidate work

AIRT is currently undergoing alpha testing by a closed group of participants.
Public release is expected in a few weeks. Interested testers can contact me
for more information.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-uvt
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to en_US.UTF-8)


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



Re: what is /.udev for ?

2005-02-09 Thread Norbert Tretkowski
* Maykel Moya wrote:
 I recently realized that I had /.dev, after that, I rm -fr it what
 rendered my system unbootabled.

File a bugreport... /etc/init.d/udev says:

# /.dev is used by /sbin/MAKEDEV to access the real /dev directory.
# if you don't like this, remove /.dev/.

Norbert


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



Re: what is /.udev for ?

2005-02-09 Thread Mowgli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hoi,

Am Mi den  9. Feb 2005 um 22:07 schriebst Du:
 What led you to do such a thing?  The idea I don't know what this is,
 so I should delete it is rampant, and disastrous.

I don't think so. Well, maybe not directely removing somethink but the
Systemadministrator ak root HAS to know about everythink on the system.
And a /.* directory on my system whould cause me to search for somethink
like a ijntruser...

Gruß
   Klaus
- -- 
Klaus Ethgenhttp://www.ethgen.de/
pub  2048R/D1A4EDE5 2000-02-26 Klaus Ethgen [EMAIL PROTECTED]
Fingerprint: D7 67 71 C4 99 A6 D4 FE  EA 40 30 57 3C 88 26 2B
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.0 (GNU/Linux)

iQEVAwUBQgqC75+OKpjRpO3lAQICowf+J7NZFKo517ZcAAcJedSQmwvQHSQQ+No5
nJkqUxndxpsIamDE/X1VYrmLDhXNeIUyZM1BFWJFfsXXRNvIT+ginSypZr2fQf7J
54wFPCR+fV3BvlsdwExPf/NTc6su9K8EZ64y75GGrh+GUefAjwOFASWFxTIRqhdX
WIhbL3MBOlSMwzm2QAJPPG663NyNJ1n4WAZ52IKsbjFPsOKY8fa/AoA6O01dKMeo
fCpOUYajrbKeTPeK6PedFFX4mmvgBC6TFvKlb7+ee9ihRkAs63xIApOhCFXDzhrv
+xVBoXv7AGWp0IbJ0yNNb0rA35AYbKrvhQuJRNTiQgkoI9S8xrlVxg==
=S+Ut
-END PGP SIGNATURE-


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



Re: what is /.udev for ?

2005-02-09 Thread Olaf Conradi
On Wed, 09 Feb 2005 13:07:33 -0800 (PST), Thomas Bushnell BSG
[EMAIL PROTECTED] wrote:
 Maykel Moya [EMAIL PROTECTED] writes:
  I recently realized that I had /.dev, after that, I rm -fr it what
  rendered my system unbootabled.
 
 What led you to do such a thing?  The idea I don't know what this is,
 so I should delete it is rampant, and disastrous.

He might not have read the following passage in /etc/init.d/udev, but
an extra comment to first unmount /.dev before removing it would help.

  # /.dev is used by /sbin/MAKEDEV to access the real /dev directory.   
  # if you don't like this, remove /.dev/.  
  [ -d /.dev ]  mount -n --bind /dev /.dev 

I've always found the existence of ./dev a bit weird in a directory
listing of /.
I'd rather have it in /var/lib/dev, but maybe that's just me ;)

It is handy to have one around, to make it possible to for devices to
be available before udev is loaded. MAKEDEV creates them in the static
location, if one is present.

 -Olaf


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



Re: what is /.udev for ?

2005-02-09 Thread Marco d'Itri
On Feb 09, sean finney [EMAIL PROTECTED] wrote:

 how does /.dev fit in with the fhs?
It does not, but there is no other place to put it. Just do not look at
it and it will not bother you.
If you really can't stand it, then unmount the bind mount and rmdir the
directory. It will not be created again.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: what is /.udev for ?

2005-02-09 Thread Marco d'Itri
On Feb 09, Norbert Tretkowski [EMAIL PROTECTED] wrote:

 File a bugreport... /etc/init.d/udev says:
Don't.

 # /.dev is used by /sbin/MAKEDEV to access the real /dev directory.
 # if you don't like this, remove /.dev/.
Remove /.dev/ does not mean rm -rf it.
Considering that the line above says to access the real /dev
directory, I think that the message is very clear.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: what is /.udev for ?

2005-02-09 Thread GOMBAS Gabor
On Wed, Feb 09, 2005 at 10:46:03PM +0100, Olaf Conradi wrote:

 I've always found the existence of ./dev a bit weird in a directory
 listing of /.
 I'd rather have it in /var/lib/dev, but maybe that's just me ;)

... which would mean that it would become unaccessible (and thus
meaningless) as the real /var gets mounted later in the boot process.
You cannot reliably put it under a directory that is not guaranteed to
be on the root file system; that leaves roughly /, /etc, /bin, /lib and
/sbin. Pick your favourite :-)

Gabor

-- 
 -
 MTA SZTAKI Computer and Automation Research Institute
Hungarian Academy of Sciences
 -


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



Re: what is /.udev for ?

2005-02-09 Thread Thomas Bushnell BSG
Mowgli [EMAIL PROTECTED] writes:

 Am Mi den  9. Feb 2005 um 22:07 schriebst Du:
  What led you to do such a thing?  The idea I don't know what this is,
  so I should delete it is rampant, and disastrous.
 
 I don't think so. Well, maybe not directely removing somethink but the
 Systemadministrator ak root HAS to know about everythink on the system.
 And a /.* directory on my system whould cause me to search for somethink
 like a ijntruser...

But just randomly deleting it isn't going to somehow thwart the
intruder.  So even if you think that I don't know what this is, so it
must be an intruder, it doesn't follow that removing it will do any
good.


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



Re: what is /.udev for ?

2005-02-09 Thread Olaf Conradi
On Wed, 9 Feb 2005 22:57:27 +0100, GOMBAS Gabor [EMAIL PROTECTED] wrote:
 On Wed, Feb 09, 2005 at 10:46:03PM +0100, Olaf Conradi wrote:
  I've always found the existence of ./dev a bit weird in a directory
  listing of /.
  I'd rather have it in /var/lib/dev, but maybe that's just me ;)
 
 ... which would mean that it would become unaccessible (and thus
 meaningless) as the real /var gets mounted later in the boot process.
 You cannot reliably put it under a directory that is not guaranteed to
 be on the root file system; that leaves roughly /, /etc, /bin, /lib and
 /sbin. Pick your favourite :-)

Ah, yes :)
Didn't think of that one.

 -Olaf


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



Re: what is /.udev for ?

2005-02-09 Thread David Mandelberg
GOMBAS Gabor wrote:
 ... which would mean that it would become unaccessible (and thus
 meaningless) as the real /var gets mounted later in the boot process.
 You cannot reliably put it under a directory that is not guaranteed to
 be on the root file system; that leaves roughly /, /etc, /bin, /lib and
 /sbin. Pick your favourite :-)
What about this:

TMPDEV=`mktemp -d /tmp/devXX || { mkdir /.dev; echo -n /.dev; }`
mount -o bind /dev $TMPDEV
mount -t tmpfs none /dev
mkdir /dev/orig
mount -o bind $TMPDEV /dev/orig
umount $TMPDEV
rm -rf $TMPDEV

This way there's no clutter in / and the original dev is mounted in a valid
place that won't get overmounted later. It's also fhs compliant I think.


signature.asc
Description: OpenPGP digital signature


Re: what is /.udev for ?

2005-02-09 Thread sean finney
On Wed, Feb 09, 2005 at 10:46:29PM +0100, Marco d'Itri wrote:
 On Feb 09, sean finney [EMAIL PROTECTED] wrote:
 
  how does /.dev fit in with the fhs?
 It does not, but there is no other place to put it. Just do not look at
 it and it will not bother you.

that's a great line of reasoning. :p

seriously though, is there really no where else that it can go?  i'm not
too familiar with udev, but i'm guessing that it has to go on the root
partition, or at the least it can't go under a directory that could
possibly be mounted over it.  so that precludes /var, which is too
bad.

 If you really can't stand it, then unmount the bind mount and rmdir the
 directory. It will not be created again.

must it be mounted for everyone, or is it merely a convenience/necessity
for a few people in specific situations?  if the latter is true, wouldn't
it be better to default to not having it mounted and give a way to have
it mounted for those who need it?


sean

-- 


signature.asc
Description: Digital signature


Re: what is /.udev for ?

2005-02-09 Thread Lucas de Sousa
To mount inside the /dev seems a very good idea.

Something like /dev/compatxx, /dev/stddev, /dev/old, /dev/original or else.

About the fhs ... standards can change.
But the unixes fhs is uglier enougth as it is.
:)

Em Qua 09 Fev 2005 20:42, David Mandelberg escreveu:

 GOMBAS Gabor wrote:
  ... which would mean that it would become unaccessible (and thus
  meaningless) as the real /var gets mounted later in the boot process.
  You cannot reliably put it under a directory that is not guaranteed to
  be on the root file system; that leaves roughly /, /etc, /bin, /lib and
  /sbin. Pick your favourite :-)

 What about this:

 TMPDEV=`mktemp -d /tmp/devXX || { mkdir /.dev; echo -n /.dev; }`
 mount -o bind /dev $TMPDEV
 mount -t tmpfs none /dev
 mkdir /dev/orig
 mount -o bind $TMPDEV /dev/orig
 umount $TMPDEV
 rm -rf $TMPDEV

 This way there's no clutter in / and the original dev is mounted in a valid
 place that won't get overmounted later. It's also fhs compliant I think.

-- 
Lucas de Sousa

e-mail: [EMAIL PROTECTED] / [EMAIL PROTECTED]
Cell: (48) 9102-6650 / Trabalho: (48) 216-9249 
msn: [EMAIL PROTECTED] / icq: 1859216 / aol: lcs589


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



Re: what is /.udev for ?

2005-02-09 Thread Marco d'Itri
On Feb 10, sean finney [EMAIL PROTECTED] wrote:

 seriously though, is there really no where else that it can go?  i'm not
No.

 too familiar with udev, but i'm guessing that it has to go on the root
 partition, or at the least it can't go under a directory that could
 possibly be mounted over it.  so that precludes /var, which is too
 bad.
Right.

 must it be mounted for everyone, or is it merely a convenience/necessity
 for a few people in specific situations?  if the latter is true, wouldn't
For people who want MAKEDEV to keep updating the static /dev.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: what is /.udev for ?

2005-02-09 Thread Marco d'Itri
On Feb 09, David Mandelberg [EMAIL PROTECTED] wrote:

 What about this:
Nice try, but:
- / is not writeable at the time this needs to run
- it's too much complex anyway to be worth implementing (even using bind
  --move)

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: what is /.udev for ?

2005-02-09 Thread Adam Heath
On Wed, 9 Feb 2005, David Mandelberg wrote:

 GOMBAS Gabor wrote:
  ... which would mean that it would become unaccessible (and thus
  meaningless) as the real /var gets mounted later in the boot process.
  You cannot reliably put it under a directory that is not guaranteed to
  be on the root file system; that leaves roughly /, /etc, /bin, /lib and
  /sbin. Pick your favourite :-)
 What about this:

 TMPDEV=`mktemp -d /tmp/devXX || { mkdir /.dev; echo -n /.dev; }`
 mount -o bind /dev $TMPDEV
 mount -t tmpfs none /dev
 mkdir /dev/orig
 mount -o bind $TMPDEV /dev/orig
 umount $TMPDEV
 rm -rf $TMPDEV

Unless of course /tmp is mounted /tmpfs later.


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



Bug#294491: RFA: povray -- Persistence of vision raytracer

2005-02-09 Thread Jeroen van Wolffelaar
Package: wnpp
Severity: normal

I request an adopter for the povray package. I don't really use this
package myself anymore, and there are some pending issues in the BTS I
keep procrastinating about -- so, I think it's better if someone else,
maybe more interested, takes over. Meanwhile, I'll remain trying to get
myself to updating the package and fixing outstanding issues.

--Jeroen

The package description is:
 POV-Ray is a free, full-featured ray tracer.  POV-Ray can run either
 in text-mode, or can optionally use the X Window System or the SVGA
 library to preview renderings.

-- 
Jeroen van Wolffelaar
[EMAIL PROTECTED]
http://jeroen.A-Eskwadraat.nl


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



Re: what is /.udev for ?

2005-02-09 Thread sean finney
On Thu, Feb 10, 2005 at 12:13:40AM +0100, Marco d'Itri wrote:
  must it be mounted for everyone, or is it merely a convenience/necessity
  for a few people in specific situations?  if the latter is true, wouldn't
 For people who want MAKEDEV to keep updating the static /dev.

that hardly sounds like a necessity then.  why not defualt it to
off, and put instructions or commented out code in the init script?


sean


-- 


signature.asc
Description: Digital signature


Re: what is /.udev for ?

2005-02-09 Thread Henrique de Moraes Holschuh
On Thu, 10 Feb 2005, Marco d'Itri wrote:
 On Feb 10, sean finney [EMAIL PROTECTED] wrote:
  seriously though, is there really no where else that it can go?  i'm not
 No.
 
  too familiar with udev, but i'm guessing that it has to go on the root
  partition, or at the least it can't go under a directory that could
  possibly be mounted over it.  so that precludes /var, which is too
  bad.
 Right.
 
  must it be mounted for everyone, or is it merely a convenience/necessity
  for a few people in specific situations?  if the latter is true, wouldn't
 For people who want MAKEDEV to keep updating the static /dev.

Which means pretty much every user that tries to go back to 2.4 for some
reason, and doesn't have enough knowledge to think of this gotcha.

Please keep it enabled by default, as it is right now...

OTOH, a README file in that dir might be a good idea :-P

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


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



Re: what is /.udev for ?

2005-02-09 Thread Henrique de Moraes Holschuh
On Wed, 09 Feb 2005, Marco d'Itri wrote:
 On Feb 09, Norbert Tretkowski [EMAIL PROTECTED] wrote:
  File a bugreport... /etc/init.d/udev says:
 Don't.
 
  # /.dev is used by /sbin/MAKEDEV to access the real /dev directory.
  # if you don't like this, remove /.dev/.
 Remove /.dev/ does not mean rm -rf it.
 Considering that the line above says to access the real /dev
 directory, I think that the message is very clear.

Please consider changing that to umount and remove it just to be in the
safe side...

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


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



Re: Bug#294491: RFA: povray -- Persistence of vision raytracer

2005-02-09 Thread Clément Stenac
Hello,
I'm interested in maintainership of PovRay.
I'm going to try to update the package to the latest upstream version 
and to work on some of the bugs

Regards,
--
Clément Stenac

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


Re: what is /.udev for ?

2005-02-09 Thread David Mandelberg
Adam Heath wrote:
 On Wed, 9 Feb 2005, David Mandelberg wrote:
TMPDEV=`mktemp -d /tmp/devXX || { mkdir /.dev; echo -n /.dev; }`
mount -o bind /dev $TMPDEV
mount -t tmpfs none /dev
mkdir /dev/orig
mount -o bind $TMPDEV /dev/orig
umount $TMPDEV
rm -rf $TMPDEV


 Unless of course /tmp is mounted /tmpfs later.
That's why nothing is used in /tmp for very long, the $TMPDEV dir is unmounted.


signature.asc
Description: OpenPGP digital signature


Re: what is /.udev for ?

2005-02-09 Thread Olaf Conradi
On Wed, 9 Feb 2005 19:01:00 -0500, sean finney [EMAIL PROTECTED] wrote:
 On Thu, Feb 10, 2005 at 12:13:40AM +0100, Marco d'Itri wrote:
   must it be mounted for everyone, or is it merely a convenience/necessity
   for a few people in specific situations?  if the latter is true, wouldn't
  For people who want MAKEDEV to keep updating the static /dev.
 
 that hardly sounds like a necessity then.  why not defualt it to
 off, and put instructions or commented out code in the init script?
 
 sean

You might need it for adding raid array devices and such. But if it's
not mounted the static /dev is hidden so you have to jump through
hoops to add them.

Isn't the /.dev thing a temporary workaround anyway. Isn't udev
supposed to be added to initrd images in the future? Then it wouldn't
be necessary.

 -Olaf


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



Re: what is /.udev for ?

2005-02-09 Thread Darren Salt
I demand that Marco d'Itri may or may not have written...

 On Feb 09, Norbert Tretkowski [EMAIL PROTECTED] wrote:
 File a bugreport... /etc/init.d/udev says:

 Don't.

 # /.dev is used by /sbin/MAKEDEV to access the real /dev directory.
 # if you don't like this, remove /.dev/.

 Remove /.dev/ does not mean rm -rf it.

Yes. It means rm -rf /.dev/ ;-)

Interpreting remove as delete is reasonable [1], and your average user
may well just delete it without looking (and, maybe, without thinking much
about it at all).

 Considering that the line above says to access the real /dev
 directory, I think that the message is very clear.

I also say s/remove/unmount and remove/.


[1] There's a RISC OS *command remove which will delete a file...

-- 
| Darren Salt   | linux (or ds) at | nr. Ashington,
| woody, sarge, | youmustbejoking  | Northumberland
| RISC OS   | demon co uk  | Toon Army
|   I don't ask for much, just untold riches...

Don't patch bad code; rewrite it.


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



Re: what is /.udev for ?

2005-02-09 Thread Ron Johnson
On Wed, 2005-02-09 at 12:43 -0800, Ben Pfaff wrote:
 Ron Johnson [EMAIL PROTECTED] writes:
 
  One thing I do know is that traditional apps like df (and anything
  that uses stat(), I guess) don't know about /.dev, and so return
  false information:
 
$ df
Filesystem 1K-blocks  Used Available Use% Mounted on
/dev/hda39843308   5428016   3915272  59% /
tmpfs 501936 0501936   0% /dev/shm
/dev/hda2  46668 20415 23844  47% /boot
/dev/hda52995936   1790220   1205716  60% /home
/dev/hda6  105280504  78681360  21251108  79% /data
/dev 9843308   5428016   3915272  59% /.dev
none5120  2564  2556  51% /dev
 
 It's not really false, it's just that /.dev is a subtree of / and
 so shows the same information as / does.

To me, reporting the same information 2 times means that one of
them should not be there.  These programs report duplicate info:
  df
  pydf
  gtkdiskfree

So what?, you say.  Well, data should only be listed once, not
twice.  gtkdiskfree sums up all total and free disk space, and
having /.dev in there totally distorts the truth.

-- 
-
Ron Johnson, Jr.
Jefferson, LA USA
PGP Key ID 8834C06B I prefer encrypted mail.

There never was a good war or a bad peace.
Benjamin Franklin
Well, I think I have to disagree with Mr. Franklin...



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


Re: what is /.udev for ?

2005-02-09 Thread Norbert Tretkowski
* Marco d'Itri wrote:
 On Feb 09, Norbert Tretkowski [EMAIL PROTECTED] wrote:
  # /.dev is used by /sbin/MAKEDEV to access the real /dev directory.
  # if you don't like this, remove /.dev/.

 Remove /.dev/ does not mean rm -rf it.

What does it mean instead?

 Considering that the line above says to access the real /dev
 directory, I think that the message is very clear.

It's not.

Norbert


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



Re: what is /.udev for ?

2005-02-09 Thread Cameron Hutchison
Once upon a time Ron Johnson said...
 On Wed, 2005-02-09 at 12:43 -0800, Ben Pfaff wrote:
  Ron Johnson [EMAIL PROTECTED] writes:
  
   One thing I do know is that traditional apps like df (and anything
   that uses stat(), I guess) don't know about /.dev, and so return
   false information:
   [df output snipped]
  It's not really false, it's just that /.dev is a subtree of / and
  so shows the same information as / does.
 
 To me, reporting the same information 2 times means that one of
 them should not be there. [...]

The information is not the same. Some of it is, some of it isn't.
If you remove the line entirely, you lose information about the bind
mount.

It could be argued that df (presumable short for Disk Free) should
somehow identify situations where the same device appears multiple
times and show only the one set of usage data, but that is probably
almost impossible to identify.

 So what?, you say.  Well, data should only be listed once, not
 twice.  gtkdiskfree sums up all total and free disk space, and
 having /.dev in there totally distorts the truth.

That's a problem with gtkdiskfree, not with having /.dev mounted.

The situation also occurs when you have a NFS server exporting a number
of disk trees from the one filesystem to a client that mounts those
multiple trees at different locations in its own filesystem. df (and
presumable gtkdiskfree) will display duplicate filesystem usage
information.

This situation has been around since long before gtkdiskfree existed
(even before linux existed), so if it does not accomodate it, it is a
deficiency in gtkdiskfree, not NFS mounts. Likewise for bind mounts.


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



Re: what is /.udev for ?

2005-02-09 Thread Steve Greenland
On 09-Feb-05, 19:12 (CST), Ron Johnson [EMAIL PROTECTED] wrote: 
 So what?, you say.  Well, data should only be listed once, not
 twice.  gtkdiskfree sums up all total and free disk space, and
 having /.dev in there totally distorts the truth.

If you don't have a fs mounted, df won't show it either. Is it lying
then, too?

Df et. al. show all the mounted filesystems. If the same filesystem is
mounted twice, then it shows it twice.

Steve

-- 
Steve Greenland
The irony is that Bill Gates claims to be making a stable operating
system and Linus Torvalds claims to be trying to take over the
world.   -- seen on the net


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



Re: Please help test Snort 2.3.0 (experimental) packages

2005-02-09 Thread Javier Fernández-Sanguino Peña
On Wed, Feb 09, 2005 at 12:24:55PM -0500, Ed Shornock wrote:
 
 Does this include snort-pgsql? I don't see for experimental (unless
 the mirrors haven't all been updated yet).  I do see snort and
 snort-mysql though...

Snort-pgsql was uploaded too, it's listed in packages.debian.org so your 
mirror probably did not catch up yet...

Regards

Javier


signature.asc
Description: Digital signature


Re: what is /.udev for ?

2005-02-09 Thread Anthony Towns
GOMBAS Gabor wrote:
You cannot reliably put it under a directory that is not guaranteed to
be on the root file system; that leaves roughly /, /etc, /bin, /lib and
/sbin. Pick your favourite :-)
So what's wrong with /lib/udev/pre-udev-dev or /lib/udev/real-rootfs-dev 
or similar?

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


Re: what is /.udev for ?

2005-02-09 Thread Ron Johnson
On Wed, 2005-02-09 at 19:24 -0600, Steve Greenland wrote:
 On 09-Feb-05, 19:12 (CST), Ron Johnson [EMAIL PROTECTED] wrote: 
  So what?, you say.  Well, data should only be listed once, not
  twice.  gtkdiskfree sums up all total and free disk space, and
  having /.dev in there totally distorts the truth.
 
 If you don't have a fs mounted, df won't show it either. Is it lying
 then, too?
 
 Df et. al. show all the mounted filesystems. If the same filesystem is
 mounted twice, then it shows it twice.

It's a PITA to have to manually subtract out /.dev.

http://lists.debian.org/debian-devel/2005/02/msg00402.html
For people who want MAKEDEV to keep updating the static /dev.

It's not the most essential thing in the world, so should be dropped,
and added when needed.

-- 
-
Ron Johnson, Jr.
Jefferson, LA USA
PGP Key ID 8834C06B I prefer encrypted mail.

You're a good example of why some animals eat their young.
Jim Samuels



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


Re: Bug#294491: RFA: povray -- Persistence of vision raytracer

2005-02-09 Thread Miles Bader
Clément Stenac [EMAIL PROTECTED] writes:
 I'm interested in maintainership of PovRay.

 I'm going to try to update the package to the latest upstream version
 and to work on some of the bugs

That would be cool.  At least one of the povray maintainers has a
giant stick up his butt about Debian, something along the lines of
The version of povray in Debian stable is old, so DEBIAN SUX0RS IN
EVERY IMAGINABLE WAY!@* YARGH#(*!!! LOL!

-Miles
-- 
Whatever you do will be insignificant, but it is very important that
 you do it.  Mahatma Ghandi



Re: Bug#294491: RFA: povray -- Persistence of vision raytracer

2005-02-09 Thread Pascal Hakim
On Thu, 2005-02-10 at 13:35 +0900, Miles Bader wrote:
 Clment Stenac [EMAIL PROTECTED] writes:
  I'm interested in maintainership of PovRay.
 
  I'm going to try to update the package to the latest upstream version
  and to work on some of the bugs
 
 That would be cool.  At least one of the povray maintainers has a
 giant stick up his butt about Debian, something along the lines of
 The version of povray in Debian stable is old, so DEBIAN SUX0RS IN
 EVERY IMAGINABLE WAY!@* YARGH#(*!!! LOL!

Would this be the same povray that's not in Debian?

Pasc



Re: Bug#294506: zope-textindexng2: Package builds incorrectly on amd64: Python site-packages files do not install

2005-02-09 Thread Andreas Tille
On Wed, 9 Feb 2005, Per Bojsen wrote:
Package: zope-textindexng2
Version: 1:2.0.8-4
Severity: normal
When this package is built on the amd64 architecture, the files that
are to go in the /usr/lib/python2.2/site-packages/zope-textindexng2
directory fail to be installed.  This is not obvious when the
package is being built, but leads to numerous test errors during
installation of the package [1].  I tracked this down to the
debian/install file.  The following patch allowed me to build
the package correctly on amd64 and it now installs with all tests
passing:
--- debian/install.orig 2005-02-09 22:25:08.575769172 -0500
+++ debian/install  2005-02-09 22:10:34.499301101 -0500
@@ -1,2 +1,3 @@
build/lib.linux-i686-2.2/*usr/lib/python2.2/site-packages/zope-textindexng2
+build/lib.linux-x86_64-2.2/* usr/lib/python2.2/site-packages/zope-textindexng2
debian/zope-textindexng2.pth  usr/lib/python2.2/site-packages/
I just added the line for the x86_64 architecture.  This works
because dh_install ignores patterns that do not match.  However,
if someone is building both the i386 and amd64 version of the
package in the same build directory and forgets to do a clean
between each build, then they could end up with a bad package
where the amd64 files overwrite the i386 ones.  The alternative
is to have one install file for each architecture.  Is this
even possible?  How is this situation handled in other packages?
... (see more details on the bug page)
I would like to foreward this problem to this list, because I have no idea
how to handle this bug right.  I guess the patch would solve the problem but
as the bug reporter mentioned it might lead to problems if you try to build
on different machines. I think forgetting to clean is not really in issue
if you use the default package building tools, but anyway I would rather fix
this in the build process and do report the problem upstream.
IMHO, the problem is caused by the fact that the package installs for instance
$ file /usr/lib/python2.2/site-packages/zope-textindexng2/Levenshtein.so 
/usr/lib/python2.2/site-packages/zope-textindexng2/Levenshtein.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), stripped

into /usr/lib/python2.2/site-packages where normally python files (and there
precompiled flavours) belong.  Any hint, how to circumvent this?
Kind regards
   Andreas.
--
http://fam-tille.de
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]


Re: Bug#293167: ITP: request-tracker3.4 -- Extensible trouble-ticket tracking system

2005-02-09 Thread Paul Hampson
On Thu, Feb 03, 2005 at 11:31:55AM +1100, Matthew Palmer wrote:
 On Wed, Feb 02, 2005 at 02:38:10PM +0100, Florian Weimer wrote:
  * Matthew Palmer:

   On Tue, Feb 01, 2005 at 06:27:30PM +0100, Florian Weimer wrote:
   * Lars Wirzenius:

ti, 2005-02-01 kello 15:25 +, Stephen Quinney kirjoitti:
 This is the 3.4 series of RT, it can be installed alongside the 3.0
 and 3.2 series without any problems. This release is a big
 improvement over previous versions and features many new features,
 substantial performance improvements and a significant cleanup and
 restructuring of the codebase.

What is the a reason every version series of Request Tracker needs to 
be
packaged, instead of having a single request-tracker package that gets
updated with newer versions?

   Request Tracker is a development framework for trouble ticket systems.
   Users are encouraged to add new code to its (Perl) packages, and
   there's an overlay mechanism to support this.

   Unfortunately, this makes updates non-trivial, at least sometimes.

   So you do a bit of testing before madly apt-get dist-upgrading your
   production servers.  What a concept.

I agree with this absolutely. Anything in production should be being
watched carefully when apt-get upgrading if it's not running stable.
If it is, you only have to watch it, not watch it carefully. ^_^

However, I think the sentiment is misplaced in this discussion. I
also think the next paragraph is equally misplaced. There's good
reasons for multiple libraries, and we have sonames to account for
that. There's _different_ (albeit parallellable) reasons for this
discussion, and here the waters are just being muddied.

  As Andrew noted, we already do similar things for library packages.
  There's a growing trend to provide different version which can be
  installed in parallel for other infrastructure packages, too (IIRC,
  PostgreSQL is heading in this direction, too).

  As a user, I think this is very convenient.  The ability to switch
  back to a known-to-work version by tweaking a few configuration files
  is reassuring, even if you've tested the new software version on an
  indepedent machine.

I have to say, I prefer the ability to parallel-deploy, so I can give
certain users (the ones who don't panic and start deleting things when
they get an error message) access to newer systems for acceptance
testing against production data.

 So archive bloat is not a problem for you, and apt-get dist-upgrade not
 actually providing upgrades to the latest versions of everything is
 perfectly fine?  Ability to switch back is provided by backups and planning,
 not by having a million versions of a package in the archive.  If you really
 want this, work out a way of installing multiple versions of the same
 package through path redirection.

I'd like apt-get dist-upgrade to fetch me the latest version of
something (in the Debian distribution I'm using, obviously) that's
either not going to break things, or will break things and has a
NEWS.Debian file that apt-listchanges can beat me with.

We could after all extend your arguement against multiple versions
of things in the archive to the Debian distribution itself. Instead,
I'm going to extend the argument for multiple Debian distributions
to request-tracker, since it is a large piece of software which is
highly locally-modified by many of its users, and which an automated
upgrade between releases is difficult.

I'm not saying this is true for all applications, or even most. For
FreeRADIUS, I'm currently in two minds as to whether I should put a
freeradius version into experimental or just move straight to 1.1.0
when it is released, and hope for the best. I will probably do the
latter, since we go to great lengths to be sure the upgrade is easy.

However, things like apache where configuration and APIs have changed
significantly are obviously easy candidates for this sort of thing. I
can't see _any_ circumstance I'd want apt-get -u dist-upgrade to replace
Apache 1 with Apache 2.

I think the line is best guided (only guided, not dictated) by the
upstream attitude. Is the older version deprecated/unsupported, or
is it stable (as compared to development) and actively supported
with bugfixes and security updates in parallel to the new version.
That should give a guide as to the usage patterns of the users of
that software, if nothing else.

I'm not gonna get stuck into archive-bloat. I consider it a risk
of unstable, and basically ignorable in stable (how often are you
dist-upgrading a stable machine?) but I was spoilt by living on
campus with an on-campus mirror for my unstable machines to beat
upon, so I can't say I've suffered at all from it.

 Libraries are the way they are because they are the way they are.  If they
 weren't the way they are they wouldn't be the way they are.  If RT's a
 library, start defining API compatibility and package it like a library --
 lib* prefix and all, so people 

Re: execturing libc

2005-02-09 Thread Paul Hampson
On Fri, Feb 04, 2005 at 10:37:03PM +0100, Goswin von Brederlow wrote:
 Henrique de Moraes Holschuh [EMAIL PROTECTED] writes:
 
  On Fri, 04 Feb 2005, Goswin von Brederlow wrote:
  The way to circumvent a noexec is to call the dynamic linker like I
  did for libc:
  
  /lib64/ld-linux-x86-64.so.2 any file
 
  Is it?  In sid, ia32:
  /lib/ld-linux.so.2 ./test
  ./test: error while loading shared libraries: ./test: failed to map segment
  from shared object: Operation not permitted
 
  This is a noexec partition.
 
  /lib/ld-linux.so.2 /bin/ls  
  test  test.c  test.sh
 
  This is an exec partition.
 
 
  The hole is/has being/been closed.
 
 It still lets you execute files that don't have the executable flag
 set like libc. It's a different bug but it's still there.

Is that a bug? I can run -x perl scripts with perl scriptname so
why not -x ELF scripts with /lib/ld-linux.so.2 ELFname

What stops me taking a copy of the binary, making it +x and running
that anyway? So I don't see any security concern...

-- 
---
Paul TBBle Hampson, MCSE
8th year CompSci/Asian Studies student, ANU
The Boss, Bubblesworth Pty Ltd (ABN: 51 095 284 361)
[EMAIL PROTECTED]

No survivors? Then where do the stories come from I wonder?
-- Capt. Jack Sparrow, Pirates of the Caribbean

This email is licensed to the recipient for non-commercial
use, duplication and distribution.
---


signature.asc
Description: Digital signature


Re: execturing libc

2005-02-09 Thread Steve Langasek
On Thu, Feb 10, 2005 at 06:17:01PM +1100, Paul Hampson wrote:
  It still lets you execute files that don't have the executable flag
  set like libc. It's a different bug but it's still there.

 Is that a bug? I can run -x perl scripts with perl scriptname so
 why not -x ELF scripts with /lib/ld-linux.so.2 ELFname

 What stops me taking a copy of the binary, making it +x and running
 that anyway? So I don't see any security concern...

Not having write access to any media that's not marked noexec?

But I agree that the security benefits are trivial on a system where
users have access to perl.

-- 
Steve Langasek
postmodern programmer


signature.asc
Description: Digital signature


Re: Bug#294209: ITP: reminiscence -- REminiscence is a rewrite of the engine used in the game Flashback from Delphine Software

2005-02-09 Thread Paul Hampson
On Tue, Feb 08, 2005 at 07:23:44PM +0100, Moritz Muehlenhoff wrote:
 In linux.debian.devel, you wrote:
  Description: free implementation of Delphine Software's FlashBack engine
REminiscence is an engine capable of runing any game based on the
FlashBackengine.
.
To actually make use of ScummVM, you currently need to get the orginal
FlashBack game data-files
  
  Did you mean ScummVM there?

 REminiscense follows the principle way ScummVM works, but it's an independant
 implementation in SDL.

 There has been a similar attempt to provide a free engine for Flashback, which
 the author withdrew after the original producer contacted him. (I forgot the 
 name
 of the project). Are there similar issues for REminiscense?

You're not thinking of Another World are you?
http://membres.lycos.fr/cyxdown/raw/
(That's the same person who's writing REminiscence)

I had them confused in my head, anyway. ^_^

-- 
---
Paul TBBle Hampson, MCSE
8th year CompSci/Asian Studies student, ANU
The Boss, Bubblesworth Pty Ltd (ABN: 51 095 284 361)
[EMAIL PROTECTED]

No survivors? Then where do the stories come from I wonder?
-- Capt. Jack Sparrow, Pirates of the Caribbean

This email is licensed to the recipient for non-commercial
use, duplication and distribution.
---


signature.asc
Description: Digital signature


Accepted dmake 4.3-2 (i386 source)

2005-02-09 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 09:17:12 +0100
Source: dmake
Binary: dmake
Architecture: source i386
Version: 4.3-2
Distribution: unstable
Urgency: high
Maintainer: Debian OpenOffice Team debian-openoffice@lists.debian.org
Changed-By: Rene Engelhard [EMAIL PROTECTED]
Description: 
 dmake  - make utility used to build OpenOffice.org
Changes: 
 dmake (4.3-2) unstable; urgency=high
 .
   * oops, readd dmakeroot-from-configure.diff and updated
 run-autogen-sh.diff, still needed.
Files: 
 233a359e2f2f0e98c461d028124e5de6 656 devel extra dmake_4.3-2.dsc
 bdf00b289cd3dfebcddca71bbafe4cc6 48402 devel extra dmake_4.3-2.diff.gz
 dd414404e5469b4d70877e90a3a54bd8 103246 devel extra dmake_4.3-2_i386.deb

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

iD8DBQFCCci2+FmQsCSK63MRAjyBAJ0VdSM34/QXycD5YXmzEMDaV3mWzwCfY8F1
DaqVrkYfkvT9Hzh2dpGMc+M=
=MJlh
-END PGP SIGNATURE-


Accepted:
dmake_4.3-2.diff.gz
  to pool/main/d/dmake/dmake_4.3-2.diff.gz
dmake_4.3-2.dsc
  to pool/main/d/dmake/dmake_4.3-2.dsc
dmake_4.3-2_i386.deb
  to pool/main/d/dmake/dmake_4.3-2_i386.deb


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



Accepted php4-ps 1.3.1-3 (powerpc source)

2005-02-09 Thread Uwe Steinmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005  9:21:03 +0100
Source: php4-ps
Binary: php4-ps
Architecture: source powerpc
Version: 1.3.1-3
Distribution: unstable
Urgency: low
Maintainer: Uwe Steinmann [EMAIL PROTECTED]
Changed-By: Uwe Steinmann [EMAIL PROTECTED]
Description: 
 php4-ps- An extension to create PostScript files
Closes: 294014
Changes: 
 php4-ps (1.3.1-3) unstable; urgency=low
 .
   * fixed stupid copy and paste error, 3nd trial (Closes: #294014)
Files: 
 22da04d156dcfa13f5a52d24a00ac61c 636 web optional php4-ps_1.3.1-3.dsc
 c0773de296c74e59f3f6d025fcd9f2ab 3515 web optional php4-ps_1.3.1-3.diff.gz
 fa9a4ffce27197435c8cba880ceb587f 139892 web optional 
php4-ps_1.3.1-3_powerpc.deb

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

iD8DBQFCCciBih2Zvw18pwERAibMAJ9d4babCWAQoVI01MFDF1gDXM92KACdFrrl
FHF/8htP9KSsl69DtQsNRPA=
=HcL6
-END PGP SIGNATURE-


Accepted:
php4-ps_1.3.1-3.diff.gz
  to pool/main/p/php4-ps/php4-ps_1.3.1-3.diff.gz
php4-ps_1.3.1-3.dsc
  to pool/main/p/php4-ps/php4-ps_1.3.1-3.dsc
php4-ps_1.3.1-3_powerpc.deb
  to pool/main/p/php4-ps/php4-ps_1.3.1-3_powerpc.deb


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



Accepted smbc 1.0.4-1 (i386 source)

2005-02-09 Thread Nol Kthe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 09 Feb 2005 08:51:22 +0100
Source: smbc
Binary: smbc
Architecture: source i386
Version: 1.0.4-1
Distribution: unstable
Urgency: low
Maintainer: Noèl Köthe [EMAIL PROTECTED]
Changed-By: Noèl Köthe [EMAIL PROTECTED]
Description: 
 smbc   - samba-commander - curses based samba network browser
Changes: 
 smbc (1.0.4-1) unstable; urgency=low
 .
   * new upstream from 2005-02-08
Files: 
 84718194847b4b6b7d9401628a667bc2 620 net optional smbc_1.0.4-1.dsc
 cf9302153f317631156d43dd072cfd96 716225 net optional smbc_1.0.4.orig.tar.gz
 80988bdc7d9f047c044fd024ba061608 23273 net optional smbc_1.0.4-1.diff.gz
 91e7f1b0ecb17d19c8f7609afe4f6a8d 113304 net optional smbc_1.0.4-1_i386.deb

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

iD4DBQFCCdHl9/DnDzB9Vu0RAijQAJjXC4bOy+LY/IuAZIh7L1xnkGxLAKCQILao
h/sDmXFFKqggM7T/zAs0Mg==
=q4wd
-END PGP SIGNATURE-


Accepted:
smbc_1.0.4-1.diff.gz
  to pool/main/s/smbc/smbc_1.0.4-1.diff.gz
smbc_1.0.4-1.dsc
  to pool/main/s/smbc/smbc_1.0.4-1.dsc
smbc_1.0.4-1_i386.deb
  to pool/main/s/smbc/smbc_1.0.4-1_i386.deb
smbc_1.0.4.orig.tar.gz
  to pool/main/s/smbc/smbc_1.0.4.orig.tar.gz


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



Accepted kvdr 0.63-2 (i386 source)

2005-02-09 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 09:28:35 +
Source: kvdr
Binary: kvdr
Architecture: source i386
Version: 0.63-2
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry [EMAIL PROTECTED]
Changed-By: Alastair McKinstry [EMAIL PROTECTED]
Description: 
 kvdr   - DVB (digital TV) Video Disk Recorder for KDE
Closes: 294326
Changes: 
 kvdr (0.63-2) unstable; urgency=low
 .
   *  Run autoconf before building; include autoconf changes in patch.
  Closes: #294326.
Files: 
 bc47983c144a42a5e8ce91843ee5c6de 593 misc extra kvdr_0.63-2.dsc
 a722e387a1785c70a861adf169d213d0 35815 misc extra kvdr_0.63-2.diff.gz
 8d46bc6d4f906163e7804b493fd22318 101068 misc extra kvdr_0.63-2_i386.deb

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

iD8DBQFCCdiKQTK/kCo4XFcRAj0vAKCGMQuJhPXAMErLqLA/vNm4G6QGeQCg26eJ
3JejEUs0VGjPdwmKjfC0UqE=
=Vl7y
-END PGP SIGNATURE-


Accepted:
kvdr_0.63-2.diff.gz
  to pool/main/k/kvdr/kvdr_0.63-2.diff.gz
kvdr_0.63-2.dsc
  to pool/main/k/kvdr/kvdr_0.63-2.dsc
kvdr_0.63-2_i386.deb
  to pool/main/k/kvdr/kvdr_0.63-2_i386.deb


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



Accepted kvdr 0.63-3 (i386 source)

2005-02-09 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 09:45:00 +
Source: kvdr
Binary: kvdr
Architecture: source i386
Version: 0.63-3
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry [EMAIL PROTECTED]
Changed-By: Alastair McKinstry [EMAIL PROTECTED]
Description: 
 kvdr   - DVB (digital TV) Video Disk Recorder for KDE
Changes: 
 kvdr (0.63-3) unstable; urgency=low
 .
   * Improved amd64 patch from Andreas Jochens.
   * Don't unnecessarily build twice (check build-stamp in debian/rules)
   * Typo in man page.
Files: 
 6c1c1848b0e874807429d66705847990 602 misc extra kvdr_0.63-3.dsc
 f06d191c8d178b97bf85979f363cdb77 8317 misc extra kvdr_0.63-3.diff.gz
 35b181765631aeccdb03ca653027a40e 101118 misc extra kvdr_0.63-3_i386.deb

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

iD8DBQFCCd12QTK/kCo4XFcRAuBaAKDZJR29vNIrOl89pIBhZEVp4kV1aQCfYxYz
va5aBAo4WTWJlrxMPwJ0Jig=
=slB1
-END PGP SIGNATURE-


Accepted:
kvdr_0.63-3.diff.gz
  to pool/main/k/kvdr/kvdr_0.63-3.diff.gz
kvdr_0.63-3.dsc
  to pool/main/k/kvdr/kvdr_0.63-3.dsc
kvdr_0.63-3_i386.deb
  to pool/main/k/kvdr/kvdr_0.63-3_i386.deb


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



Accepted frox 0.7.18-1 (i386 source)

2005-02-09 Thread Emmanuel le Chevoir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 11:06:24 +0100
Source: frox
Binary: frox
Architecture: source i386
Version: 0.7.18-1
Distribution: unstable
Urgency: low
Maintainer: Emmanuel le Chevoir [EMAIL PROTECTED]
Changed-By: Emmanuel le Chevoir [EMAIL PROTECTED]
Description: 
 frox   - Transparent caching ftp proxy
Changes: 
 frox (0.7.18-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 92900c8f3a614dee8e55fdaac470846e 629 net optional frox_0.7.18-1.dsc
 a9a1ef9f21c0f9e1455b214849e3c442 223825 net optional frox_0.7.18.orig.tar.gz
 39c1024641f3eaf5b7554884e59ee669 45898 net optional frox_0.7.18-1.diff.gz
 f04411698e2dd5c673f705bcdaf10692 95062 net optional frox_0.7.18-1_i386.deb

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

iD8DBQFCCeNt4i/Wdr6T0t4RAsZ4AJ4oWqIQuYQWV0Ygaj4ubLQXDtZdcwCfVIA/
Yu4kOgdRmbh4UlIjptjqv/A=
=E1po
-END PGP SIGNATURE-


Accepted:
frox_0.7.18-1.diff.gz
  to pool/main/f/frox/frox_0.7.18-1.diff.gz
frox_0.7.18-1.dsc
  to pool/main/f/frox/frox_0.7.18-1.dsc
frox_0.7.18-1_i386.deb
  to pool/main/f/frox/frox_0.7.18-1_i386.deb
frox_0.7.18.orig.tar.gz
  to pool/main/f/frox/frox_0.7.18.orig.tar.gz


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



Accepted piwi 0.8+20041206-1 (all source)

2005-02-09 Thread Mickael Profeta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 11:55:25 +0100
Source: piwi
Binary: piwi
Architecture: source all
Version: 0.8+20041206-1
Distribution: unstable
Urgency: low
Maintainer: Mickael Profeta [EMAIL PROTECTED]
Changed-By: Mickael Profeta [EMAIL PROTECTED]
Description: 
 piwi   - P(erl|relude) IDS Web Interface - A frontend to your Prelude data
Changes: 
 piwi (0.8+20041206-1) unstable; urgency=low
 .
   * New upstream release
   * fix permission of /etc/piwi/config.pl
Files: 
 ce5eb53f6252db29ee22101c4e5d 581 admin optional piwi_0.8+20041206-1.dsc
 6a41e2f352650c82f0b3b534851f78cb 162635 admin optional 
piwi_0.8+20041206.orig.tar.gz
 abc1216b5976b2485286238563748125 2682 admin optional 
piwi_0.8+20041206-1.diff.gz
 97c5a0e3f48e57b4e45fc10d82fce1ad 157696 admin optional 
piwi_0.8+20041206-1_all.deb

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

iD8DBQFCCexDbJef3kTiKs0RAt61AJ47mnHxPilsVIlctREOGvCNcXwTBwCeNBXm
xIzcyf7N/DEJxdAt9R/sPyg=
=JXGJ
-END PGP SIGNATURE-


Accepted:
piwi_0.8+20041206-1.diff.gz
  to pool/main/p/piwi/piwi_0.8+20041206-1.diff.gz
piwi_0.8+20041206-1.dsc
  to pool/main/p/piwi/piwi_0.8+20041206-1.dsc
piwi_0.8+20041206-1_all.deb
  to pool/main/p/piwi/piwi_0.8+20041206-1_all.deb
piwi_0.8+20041206.orig.tar.gz
  to pool/main/p/piwi/piwi_0.8+20041206.orig.tar.gz


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



Accepted linkchecker 2.4-1 (i386 source)

2005-02-09 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  7 Feb 2005 01:31:03 +0100
Source: linkchecker
Binary: linkchecker
Architecture: source i386
Version: 2.4-1
Distribution: unstable
Urgency: low
Maintainer: Bastian Kleineidam [EMAIL PROTECTED]
Changed-By: Bastian Kleineidam [EMAIL PROTECTED]
Description: 
 linkchecker - check HTML documents for broken links
Changes: 
 linkchecker (2.4-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 130474307bd9e53f399ab8aee540ecfd 615 web optional linkchecker_2.4-1.dsc
 1740f3f10e0543379d3cfb8bcaae449f 498105 web optional 
linkchecker_2.4.orig.tar.gz
 19e017d697f1b1d786378f2f4ff5d845 1085 web optional linkchecker_2.4-1.diff.gz
 c2566bcbd0f7132c7e22a3c4f306fa34 273836 web optional linkchecker_2.4-1_i386.deb

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

iD8DBQFCCe3WeBwlBDLsbz4RApu8AJ44bjHd0ELSk5fWSzrAEAweGDA7HQCgjYqX
/h9kBlySpgCWU5/sZur06Ck=
=MSY8
-END PGP SIGNATURE-


Accepted:
linkchecker_2.4-1.diff.gz
  to pool/main/l/linkchecker/linkchecker_2.4-1.diff.gz
linkchecker_2.4-1.dsc
  to pool/main/l/linkchecker/linkchecker_2.4-1.dsc
linkchecker_2.4-1_i386.deb
  to pool/main/l/linkchecker/linkchecker_2.4-1_i386.deb
linkchecker_2.4.orig.tar.gz
  to pool/main/l/linkchecker/linkchecker_2.4.orig.tar.gz


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



Accepted python2.3 2.3.5-1 (i386 source all)

2005-02-09 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  8 Feb 2005 16:30:54 +0100
Source: python2.3
Binary: python2.3-doc idle-python2.3 python2.3-dev python2.3-examples 
python2.3-mpz python2.3 python2.3-gdbm python2.3-tk
Architecture: source all i386
Version: 2.3.5-1
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 idle-python2.3 - An IDE for Python (v2.3) using Tkinter
 python2.3  - An interactive high-level object-oriented language (version 2.3)
 python2.3-dev - Header files and a static library for Python (v2.3)
 python2.3-doc - Documentation for the high-level object-oriented language 
Python 
 python2.3-examples - Examples for the Python language (v2.3)
 python2.3-gdbm - GNU dbm database support for Python (v2.3)
 python2.3-mpz - Multiple-precision arithmetic support for Python (v2.3)
 python2.3-tk - Tkinter - Writing Tk applications with Python (v2.3)
Closes: 293338 293932
Changes: 
 python2.3 (2.3.5-1) unstable; urgency=medium
 .
   * Final 2.3.5 release.
   * Replace md5 implementation with one having a DFSG conforming license.
   * Remove the profile.py and pstats.py modules from the source package,
 not having a DFSG conforming license. The modules can be found in
 the python2.x-profile package in the non-free section. Closes: #293932.
   * Fix bug in copy.deep_copy (closes: #293338).
Files: 
 80248fbcddbe7ee9ecc0313c47e2b528 1134 python optional python2.3_2.3.5-1.dsc
 9c35e5ca3c487e1c1f70f2fb1ccbfffe 8512566 python optional 
python2.3_2.3.5.orig.tar.gz
 ca365ab215db066e37278807954acd46 2350492 python optional 
python2.3_2.3.5-1.diff.gz
 e0637cfe3e37036951794875fd0369ee 512390 python optional 
python2.3-examples_2.3.5-1_all.deb
 5b4653579fa658d617ab01c5d958b61f 233568 python optional 
idle-python2.3_2.3.5-1_all.deb
 8617ef8b8dbbd53c629f9b73d8051441 2859330 doc optional 
python2.3-doc_2.3.5-1_all.deb
 00b5ae0d3a7c697bfa208c377d2c5d5f 2903254 python standard 
python2.3_2.3.5-1_i386.deb
 2dedeb6efd34149140365b4f8d20f952 107300 python optional 
python2.3-tk_2.3.5-1_i386.deb
 22ee68c424d6318fe92e270af95b4e96 26326 python optional 
python2.3-gdbm_2.3.5-1_i386.deb
 7d70c6d0c331fc1b072c2ac946009b1b 30342 python optional 
python2.3-mpz_2.3.5-1_i386.deb
 b6cb0c101eeb3365db97ff19b1913996 1480828 libdevel optional 
python2.3-dev_2.3.5-1_i386.deb

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

iD8DBQFCCVKbStlRaw+TLJwRAvliAJ4rvZNbTmJC5HaDb5R4wINvrpDo4ACZAXhz
r21Y6tQVkRcdkLDLftz3irQ=
=eb3n
-END PGP SIGNATURE-


Accepted:
idle-python2.3_2.3.5-1_all.deb
  to pool/main/p/python2.3/idle-python2.3_2.3.5-1_all.deb
python2.3-dev_2.3.5-1_i386.deb
  to pool/main/p/python2.3/python2.3-dev_2.3.5-1_i386.deb
python2.3-doc_2.3.5-1_all.deb
  to pool/main/p/python2.3/python2.3-doc_2.3.5-1_all.deb
python2.3-examples_2.3.5-1_all.deb
  to pool/main/p/python2.3/python2.3-examples_2.3.5-1_all.deb
python2.3-gdbm_2.3.5-1_i386.deb
  to pool/main/p/python2.3/python2.3-gdbm_2.3.5-1_i386.deb
python2.3-mpz_2.3.5-1_i386.deb
  to pool/main/p/python2.3/python2.3-mpz_2.3.5-1_i386.deb
python2.3-tk_2.3.5-1_i386.deb
  to pool/main/p/python2.3/python2.3-tk_2.3.5-1_i386.deb
python2.3_2.3.5-1.diff.gz
  to pool/main/p/python2.3/python2.3_2.3.5-1.diff.gz
python2.3_2.3.5-1.dsc
  to pool/main/p/python2.3/python2.3_2.3.5-1.dsc
python2.3_2.3.5-1_i386.deb
  to pool/main/p/python2.3/python2.3_2.3.5-1_i386.deb
python2.3_2.3.5.orig.tar.gz
  to pool/main/p/python2.3/python2.3_2.3.5.orig.tar.gz


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



Accepted linuxtv-dvb 1.1.1-6 (all source)

2005-02-09 Thread Debian VDR Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 09 Feb 2005 12:14:22 +0100
Source: linuxtv-dvb
Binary: dvb-dev dvb-driver-source
Architecture: source all
Version: 1.1.1-6
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Debian VDR Team [EMAIL PROTECTED]
Description: 
 dvb-dev- Dummy package for upgrade purposes only
 dvb-driver-source - sources for drivers for the Fujitsu Siemens DVB card
Closes: 292664
Changes: 
 linuxtv-dvb (1.1.1-6) unstable; urgency=low
 .
   * Thomas Schmidt [EMAIL PROTECTED]
 - The dvb-driver-package which is created when compiling the
   dvb-modules does not depend on kernel-package anymore
   (closes: #292664)
 - Do not suggest wget anymore in the dvb-driver-package
 - Changed maintainer of the resulting dvb-driver-package to
   Debian VDR Team
 - Changed my email-address to the new debian one
Files: 
 3eb23d3ce7936da2e9652bbf9c2c74da 736 misc extra linuxtv-dvb_1.1.1-6.dsc
 81285c89b028fda40ed8ecaa22d4104b 10685 misc extra linuxtv-dvb_1.1.1-6.diff.gz
 c84fe985079918e465291034a0dd47fb 5640 devel extra dvb-dev_1.1.1-6_all.deb
 5b18d445c28d1709dba9f3b9e651f1c4 287516 misc extra 
dvb-driver-source_1.1.1-6_all.deb

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

iD8DBQFCCfKFc9+NqwoydlIRAiuxAKDOOgCsVmA1WTIMrNX1NVNFTt7aRgCgypRo
QFc0fGRJdqaLEvuec/NRkHQ=
=805w
-END PGP SIGNATURE-


Accepted:
dvb-dev_1.1.1-6_all.deb
  to pool/main/l/linuxtv-dvb/dvb-dev_1.1.1-6_all.deb
dvb-driver-source_1.1.1-6_all.deb
  to pool/main/l/linuxtv-dvb/dvb-driver-source_1.1.1-6_all.deb
linuxtv-dvb_1.1.1-6.diff.gz
  to pool/main/l/linuxtv-dvb/linuxtv-dvb_1.1.1-6.diff.gz
linuxtv-dvb_1.1.1-6.dsc
  to pool/main/l/linuxtv-dvb/linuxtv-dvb_1.1.1-6.dsc


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



Accepted curl 7.13.0-1 (i386 source)

2005-02-09 Thread Domenico Andreoli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  5 Feb 2005 10:39:52 +0100
Source: curl
Binary: libcurl3-dbg libcurl2-dev libcurl3 libcurl3-dev libcurl3-gssapi 
libcurl2 curl
Architecture: source i386
Version: 7.13.0-1
Distribution: unstable
Urgency: low
Maintainer: Domenico Andreoli [EMAIL PROTECTED]
Changed-By: Domenico Andreoli [EMAIL PROTECTED]
Description: 
 curl   - Get a file from an HTTP, HTTPS, FTP or GOPHER server
 libcurl2   - Multi-protocol file transfer library, now with SSL support!
 libcurl2-dev - Development files and documentation for libcurl
 libcurl3   - Multi-protocol file transfer library, now with SSL support!
 libcurl3-dbg - libcurl compiled with debug symbols
 libcurl3-dev - Development files and documentation for libcurl
 libcurl3-gssapi - libcurl compiled with GSSAPI support
Changes: 
 curl (7.13.0-1) unstable; urgency=low
 .
   * New upstream release.
   * libcurl3 now suggests package libldap2-dev to enable support for
 LDAP protocol.
   * Bumped up shlibs version for libcurl3 because of new curl options.
Files: 
 c9031a3ffea78c103c4b8d8c00dd660b 823 web optional curl_7.13.0-1.dsc
 bad4e599a931a48894cfe99c700a8bd5 2165810 web optional curl_7.13.0.orig.tar.gz
 832feb04b4561a13f6ffeace3138300b 1309521 web optional curl_7.13.0-1.diff.gz
 cd706faac7f266965b75130080c1b4c2 172904 web optional curl_7.13.0-1_i386.deb
 26b34ab0cdcdb5b76208e1630b61fbaa 261018 libs optional 
libcurl3_7.13.0-1_i386.deb
 fc44e8eb7e993f8e6c784d8ad5e2238b 141256 libs extra 
libcurl3-gssapi_7.13.0-1_i386.deb
 9de0dd1eb9aaf2712ccb341be2f66722 1014140 libdevel extra 
libcurl3-dbg_7.13.0-1_i386.deb
 bae50781019368d63de0a0ca660c2ef1 1223662 libdevel optional 
libcurl3-dev_7.13.0-1_i386.deb
 375d29253c2b5b0581e1e4c283699f69 226128 libs optional 
libcurl2_7.11.2-13_i386.deb
 368a3dfa4575b0768a2fc05e8f756f42 334682 libdevel optional 
libcurl2-dev_7.11.2-13_i386.deb

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

iD8DBQFCCe/LBneQM6IOvFARAhmoAKDvFQQ65TwKjBYmj1xvqvgw05HOngCeLYQs
uLO3G7sBzpu9iPKwXMp9kqA=
=I0uN
-END PGP SIGNATURE-


Accepted:
curl_7.13.0-1.diff.gz
  to pool/main/c/curl/curl_7.13.0-1.diff.gz
curl_7.13.0-1.dsc
  to pool/main/c/curl/curl_7.13.0-1.dsc
curl_7.13.0-1_i386.deb
  to pool/main/c/curl/curl_7.13.0-1_i386.deb
curl_7.13.0.orig.tar.gz
  to pool/main/c/curl/curl_7.13.0.orig.tar.gz
libcurl2-dev_7.11.2-13_i386.deb
  to pool/main/c/curl/libcurl2-dev_7.11.2-13_i386.deb
libcurl2_7.11.2-13_i386.deb
  to pool/main/c/curl/libcurl2_7.11.2-13_i386.deb
libcurl3-dbg_7.13.0-1_i386.deb
  to pool/main/c/curl/libcurl3-dbg_7.13.0-1_i386.deb
libcurl3-dev_7.13.0-1_i386.deb
  to pool/main/c/curl/libcurl3-dev_7.13.0-1_i386.deb
libcurl3-gssapi_7.13.0-1_i386.deb
  to pool/main/c/curl/libcurl3-gssapi_7.13.0-1_i386.deb
libcurl3_7.13.0-1_i386.deb
  to pool/main/c/curl/libcurl3_7.13.0-1_i386.deb


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



Accepted linuxtv-dvb-apps 1.1.0-5 (i386 source)

2005-02-09 Thread Debian VDR Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 11:38:10 +0100
Source: linuxtv-dvb-apps
Binary: dvb-utils
Architecture: source i386
Version: 1.1.0-5
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Debian VDR Team [EMAIL PROTECTED]
Description: 
 dvb-utils  - Viewer programs for DVB cards
Closes: 294325
Changes: 
 linuxtv-dvb-apps (1.1.0-5) unstable; urgency=low
 .
   * The This is my first upload. release
   * Thomas Schmidt [EMAIL PROTECTED]
 - Added the new frequency-definitions for the scan-utility from
   the cvs-repository to dvb-utils (closes: #294325)
 - Changed my email-address to new debian one
Files: 
 401fd0e65a126654c5c31b16a9f79c53 720 misc extra linuxtv-dvb-apps_1.1.0-5.dsc
 0f9245fc8f595c6c91ca2f6ddb7e2113 16214 misc extra 
linuxtv-dvb-apps_1.1.0-5.diff.gz
 e2dc8aaa5952619887464925209b3d05 76238 misc extra dvb-utils_1.1.0-5_i386.deb

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

iD8DBQFCCe1Fc9+NqwoydlIRAkMoAJ4ryl0pIjiH4C0ViRwLpKbaWhIvMgCfYfl4
xfdWJuM3Lb1q5jkwAVbVmFI=
=Yp+W
-END PGP SIGNATURE-


Accepted:
dvb-utils_1.1.0-5_i386.deb
  to pool/main/l/linuxtv-dvb-apps/dvb-utils_1.1.0-5_i386.deb
linuxtv-dvb-apps_1.1.0-5.diff.gz
  to pool/main/l/linuxtv-dvb-apps/linuxtv-dvb-apps_1.1.0-5.diff.gz
linuxtv-dvb-apps_1.1.0-5.dsc
  to pool/main/l/linuxtv-dvb-apps/linuxtv-dvb-apps_1.1.0-5.dsc


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



Accepted python2.1 2.1.3dfsg-1 (i386 source all)

2005-02-09 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 12:04:24 +0100
Source: python2.1
Binary: python2.1-gdbm python2.1 python2.1-dev idle-python2.1 
python2.1-examples python2.1-xmlbase python2.1-tk python2.1-mpz python2.1-doc
Architecture: source i386 all
Version: 2.1.3dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Gregor Hoffleit [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 idle-python2.1 - An IDE for Python (v2.1) using Tkinter
 python2.1  - An interactive high-level object-oriented language (version 2.1)
 python2.1-dev - Header files and a static library for Python (v2.1)
 python2.1-doc - Documentation for the high-level object-oriented language 
Python
 python2.1-examples - Examples for the Python language (v2.1)
 python2.1-gdbm - GNU dbm database support for Python (v2.1)
 python2.1-mpz - Multiple-precision arithmetic support for Python (v2.1)
 python2.1-tk - Tkinter - Writing Tk applications with Python (v2.1)
 python2.1-xmlbase - XML support included in Python (v2.1)
Changes: 
 python2.1 (2.1.3dfsg-1) unstable; urgency=medium
 .
   * Remove the profile.py and pstats.py modules from the source package,
 not having a DFSG conforming license. The modules can be found in
 the python2.x-profile package in the non-free section.
 Addresses: #293932.
Files: 
 2338ebef7b50b5b918de37918da79f50 1172 python optional python2.1_2.1.3dfsg-1.dsc
 205410785a66a8ac8baedddc0a951688 6175656 python optional 
python2.1_2.1.3dfsg.orig.tar.gz
 03eef5b6116662853bdd161660166e4e 2109543 python optional 
python2.1_2.1.3dfsg-1.diff.gz
 5d5fe82da7ad6504f6dbbb74231e57e6 511320 python optional 
python2.1-examples_2.1.3dfsg-1_all.deb
 36a2f0f9ded4b222ac85d66e5f3a47d8 119750 python optional 
idle-python2.1_2.1.3dfsg-1_all.deb
 9c0f8bc7ca2bd8090bc9e433d2358f6a 1915132 doc optional 
python2.1-doc_2.1.3dfsg-1_all.deb
 bf8f21fa61947d006744a34da29479f9 1792138 python optional 
python2.1_2.1.3dfsg-1_i386.deb
 6331a153610785f922b67a29a850e276 93116 python optional 
python2.1-tk_2.1.3dfsg-1_i386.deb
 d1c32fb67784853cace291ea17aeef5d 54934 python optional 
python2.1-xmlbase_2.1.3dfsg-1_i386.deb
 be5e320b4e9ccc2e4f66986ef1d9ea3f 23880 python optional 
python2.1-gdbm_2.1.3dfsg-1_i386.deb
 45f86f764830cf7298692e38c43f2c8a 26866 python optional 
python2.1-mpz_2.1.3dfsg-1_i386.deb
 edca78b644ab3badb47e5f0447c6d8d2 832184 python optional 
python2.1-dev_2.1.3dfsg-1_i386.deb

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

iD8DBQFCCfPTStlRaw+TLJwRAtk0AKCwXhwaBTEvMK4eXu4yxstF8ojFigCfa8DJ
+VXiSsB60QbRrZoDtcZAPIg=
=I9Tb
-END PGP SIGNATURE-


Accepted:
idle-python2.1_2.1.3dfsg-1_all.deb
  to pool/main/p/python2.1/idle-python2.1_2.1.3dfsg-1_all.deb
python2.1-dev_2.1.3dfsg-1_i386.deb
  to pool/main/p/python2.1/python2.1-dev_2.1.3dfsg-1_i386.deb
python2.1-doc_2.1.3dfsg-1_all.deb
  to pool/main/p/python2.1/python2.1-doc_2.1.3dfsg-1_all.deb
python2.1-examples_2.1.3dfsg-1_all.deb
  to pool/main/p/python2.1/python2.1-examples_2.1.3dfsg-1_all.deb
python2.1-gdbm_2.1.3dfsg-1_i386.deb
  to pool/main/p/python2.1/python2.1-gdbm_2.1.3dfsg-1_i386.deb
python2.1-mpz_2.1.3dfsg-1_i386.deb
  to pool/main/p/python2.1/python2.1-mpz_2.1.3dfsg-1_i386.deb
python2.1-tk_2.1.3dfsg-1_i386.deb
  to pool/main/p/python2.1/python2.1-tk_2.1.3dfsg-1_i386.deb
python2.1-xmlbase_2.1.3dfsg-1_i386.deb
  to pool/main/p/python2.1/python2.1-xmlbase_2.1.3dfsg-1_i386.deb
python2.1_2.1.3dfsg-1.diff.gz
  to pool/main/p/python2.1/python2.1_2.1.3dfsg-1.diff.gz
python2.1_2.1.3dfsg-1.dsc
  to pool/main/p/python2.1/python2.1_2.1.3dfsg-1.dsc
python2.1_2.1.3dfsg-1_i386.deb
  to pool/main/p/python2.1/python2.1_2.1.3dfsg-1_i386.deb
python2.1_2.1.3dfsg.orig.tar.gz
  to pool/main/p/python2.1/python2.1_2.1.3dfsg.orig.tar.gz


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



Accepted rng-tools 2-unofficial-mt.9-1 (i386 source)

2005-02-09 Thread Henrique de Moraes Holschuh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  8 Feb 2005 23:05:24 -0200
Source: rng-tools
Binary: rng-tools
Architecture: source i386
Version: 2-unofficial-mt.9-1
Distribution: experimental
Urgency: low
Maintainer: Henrique de Moraes Holschuh [EMAIL PROTECTED]
Changed-By: Henrique de Moraes Holschuh [EMAIL PROTECTED]
Description: 
 rng-tools  - Daemon to use a Hardware TRNG
Changes: 
 rng-tools (2-unofficial-mt.9-1) experimental; urgency=low
 .
   * New unofficial version:
 * Support for different input drivers
 * Add new high-performance (several Mbit/s) VIA PadLock TRNG
   user-space driver.  This work was sponsored by mekensleep.com,
   in particular by Loic Dachary.  Mekensleep gave me unlimited
   access to a VIA Nehemiah system that they bought for this purpose,
   and which I am told will be available for the general community
   after the rngd work is stablized.
 * --trng=intel renamed to --trng=intelfwh (because Intel may show up
   with something to compete with VIA's PadLock security engine)
 * --trng=via renamed to --trng=viakernel
   * Add NEWS.Debian file to report user-visible changes in behaviour
   * Minor README.Debian improvements and fixes
   * Detect running kernel version, and work around kernel 2.4 bugs in
 entropy accounting
Files: 
 f4f30d87114dd5ea58db45e104348b89 628 utils optional 
rng-tools_2-unofficial-mt.9-1.dsc
 f1e53eabf2bd8e05971de5d62a29deca 133378 utils optional 
rng-tools_2-unofficial-mt.9.orig.tar.gz
 21428efda63c918df1ea38336c225e4c 16268 utils optional 
rng-tools_2-unofficial-mt.9-1.diff.gz
 51228e84c230619ca66cd08cba0882e5 43442 utils optional 
rng-tools_2-unofficial-mt.9-1_i386.deb

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

iD8DBQFCCfK37iXePxzbD+MRAu7hAJ0ZAT0tYoTCiuSChH/BqpqeJiPx0ACglVlh
e4rw0Jj3zxbrQj11SR8hvW8=
=Iqhi
-END PGP SIGNATURE-


Accepted:
rng-tools_2-unofficial-mt.9-1.diff.gz
  to pool/main/r/rng-tools/rng-tools_2-unofficial-mt.9-1.diff.gz
rng-tools_2-unofficial-mt.9-1.dsc
  to pool/main/r/rng-tools/rng-tools_2-unofficial-mt.9-1.dsc
rng-tools_2-unofficial-mt.9-1_i386.deb
  to pool/main/r/rng-tools/rng-tools_2-unofficial-mt.9-1_i386.deb
rng-tools_2-unofficial-mt.9.orig.tar.gz
  to pool/main/r/rng-tools/rng-tools_2-unofficial-mt.9.orig.tar.gz


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



Accepted python2.2 2.2.3dfsg-1 (i386 source all)

2005-02-09 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 12:16:44 +0100
Source: python2.2
Binary: python2.2-doc python2.2-xmlbase python2.2-examples python2.2-dev 
python2.2-tk python2.2 python2.2-gdbm python2.2-mpz idle-python2.2
Architecture: source i386 all
Version: 2.2.3dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 idle-python2.2 - An IDE for Python (v2.2) using Tkinter
 python2.2  - An interactive high-level object-oriented language (version 2.2)
 python2.2-dev - Header files and a static library for Python (v2.2)
 python2.2-doc - Documentation for the high-level object-oriented language 
Python
 python2.2-examples - Examples for the Python language (v2.2)
 python2.2-gdbm - GNU dbm database support for Python (v2.2)
 python2.2-mpz - Multiple-precision arithmetic support for Python (v2.2)
 python2.2-tk - Tkinter - Writing Tk applications with Python (v2.2)
 python2.2-xmlbase - XML support included in Python (v2.2)
Changes: 
 python2.2 (2.2.3dfsg-1) unstable; urgency=medium
 .
   * Remove the profile.py and pstats.py modules from the source package,
 not having a DFSG conforming license. The modules can be found in
 the python2.x-profile package in the non-free section.
 Addresses: #293932.
Files: 
 0b3c93eaf4d47ce617b17774a5dc3e2a 1176 python optional python2.2_2.2.3dfsg-1.dsc
 8ed6e66f125308f55115e7df8cc9f18a 6691331 python optional 
python2.2_2.2.3dfsg.orig.tar.gz
 de1f6a9845f2a96552f791a4827b6a84 1944494 python optional 
python2.2_2.2.3dfsg-1.diff.gz
 4b4eff55306ac97230ae3253d2f5f9b1 482798 python optional 
python2.2-examples_2.2.3dfsg-1_all.deb
 ad2404a8918e3fc4a97d7b869a3e8ae6 118296 python optional 
idle-python2.2_2.2.3dfsg-1_all.deb
 e055b1ac737ec7ae950a8e98b364bc69 2303500 doc optional 
python2.2-doc_2.2.3dfsg-1_all.deb
 2adfaa77007ce4d12b86a1ae04b67bb0 2273958 python optional 
python2.2_2.2.3dfsg-1_i386.deb
 a6a76147d96985ee882edfe8b4cca021 97866 python optional 
python2.2-tk_2.2.3dfsg-1_i386.deb
 74889efd9bca46e5df8b8b1713c1a8ef 56940 python optional 
python2.2-xmlbase_2.2.3dfsg-1_i386.deb
 bc5b241a9ca3983d22fdc73a2717d704 23620 python optional 
python2.2-gdbm_2.2.3dfsg-1_i386.deb
 43fd9e232bbcde266477aa3d6e7fb029 27540 python optional 
python2.2-mpz_2.2.3dfsg-1_i386.deb
 5dba51d5d6873bed3082d4cb1c24da7e 1156206 python optional 
python2.2-dev_2.2.3dfsg-1_i386.deb

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

iD8DBQFCCfZwStlRaw+TLJwRAq7dAJ9O2xydHV2TNoeoYjsJ2T5vdGNmsACgkixY
N247ztuY9rivztBehw1H5vA=
=gVdx
-END PGP SIGNATURE-


Accepted:
idle-python2.2_2.2.3dfsg-1_all.deb
  to pool/main/p/python2.2/idle-python2.2_2.2.3dfsg-1_all.deb
python2.2-dev_2.2.3dfsg-1_i386.deb
  to pool/main/p/python2.2/python2.2-dev_2.2.3dfsg-1_i386.deb
python2.2-doc_2.2.3dfsg-1_all.deb
  to pool/main/p/python2.2/python2.2-doc_2.2.3dfsg-1_all.deb
python2.2-examples_2.2.3dfsg-1_all.deb
  to pool/main/p/python2.2/python2.2-examples_2.2.3dfsg-1_all.deb
python2.2-gdbm_2.2.3dfsg-1_i386.deb
  to pool/main/p/python2.2/python2.2-gdbm_2.2.3dfsg-1_i386.deb
python2.2-mpz_2.2.3dfsg-1_i386.deb
  to pool/main/p/python2.2/python2.2-mpz_2.2.3dfsg-1_i386.deb
python2.2-tk_2.2.3dfsg-1_i386.deb
  to pool/main/p/python2.2/python2.2-tk_2.2.3dfsg-1_i386.deb
python2.2-xmlbase_2.2.3dfsg-1_i386.deb
  to pool/main/p/python2.2/python2.2-xmlbase_2.2.3dfsg-1_i386.deb
python2.2_2.2.3dfsg-1.diff.gz
  to pool/main/p/python2.2/python2.2_2.2.3dfsg-1.diff.gz
python2.2_2.2.3dfsg-1.dsc
  to pool/main/p/python2.2/python2.2_2.2.3dfsg-1.dsc
python2.2_2.2.3dfsg-1_i386.deb
  to pool/main/p/python2.2/python2.2_2.2.3dfsg-1_i386.deb
python2.2_2.2.3dfsg.orig.tar.gz
  to pool/main/p/python2.2/python2.2_2.2.3dfsg.orig.tar.gz


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



Accepted ncpfs 2.2.6-1 (i386 source)

2005-02-09 Thread Anibal Monsalve Salazar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 09 Feb 2005 21:58:40 +1100
Source: ncpfs
Binary: libncp-dev libncp ipx ncpfs libpam-ncp
Architecture: source i386
Version: 2.2.6-1
Distribution: unstable
Urgency: low
Maintainer: Eloy A. Paris [EMAIL PROTECTED]
Changed-By: Anibal Monsalve Salazar [EMAIL PROTECTED]
Description: 
 ipx- utilities to configure the kernel ipx interface
 libncp - shared library used by programs that use NetWare Core Protocol
 libncp-dev - libncp: Development Libraries and Header Files.
 libpam-ncp - PAM module allowing authentication from a NetWare server
 ncpfs  - utilities to use resources from NetWare servers
Closes: 162267 260020 260021 260024 267315 283617 284169 293446
Changes: 
 ncpfs (2.2.6-1) unstable; urgency=low
 .
   * New upstream version.
 Fixed CAN-2005-0013 and CAN-2005-0014 (Closes: #293446).
   * Previous release ncpfs-2.2.5 fixed ncpfs buffer overflow
 and is also fixed in ncpfs-2.2.6 (Closes: #283617).
   * Incorporate and acknowledge the changes from the non maintainer
 upload 2.2.4-1.1 (Closes: #260024).
   * Fixed Should suggest libpam-ncp?, it now depends on libpam-ncp
 (Closes: #162267).
   * Fixed upstream location in the copyright file is outdated
 (Closes: #260021).
   * Fixed ncpfs override disparity (Closes: #267315).
   * Fixed FTBFS (amd64/gcc-4.0) (Closes: #284169).
   * Fixed Please remove an outdated part of the package description
 (Closes: #260020).
Files: 
 ae4d3c094214601d1178a06d959c7a43 658 net extra ncpfs_2.2.6-1.dsc
 a9ab9f135d504440202069393dd9eb36 2100545 net extra ncpfs_2.2.6.orig.tar.gz
 a3c21bc93723fb75e7513c911eaeeaa0 10318 net extra ncpfs_2.2.6-1.diff.gz
 7e12cd06526976216890c95d8d757145 1005068 net extra ncpfs_2.2.6-1_i386.deb
 1dcd40730776421c1088930ae8656a30 36852 net optional ipx_2.2.6-1_i386.deb
 7994692431eda81bd3ad9d35a2cf62cc 149810 libs extra libncp_2.2.6-1_i386.deb
 2b6cc6b0bc0c602d7f932b33181133dd 224676 libdevel extra 
libncp-dev_2.2.6-1_i386.deb
 5236ec3d1f43efacffeafd443e364fb4 47460 admin extra libpam-ncp_2.2.6-1_i386.deb

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

iD8DBQFCCfO4gY5NIXPNpFURAlBUAJ49Shca0lDWSvKcR3Nxb6H0+v8THQCg0iF3
vTrXqOpsoWcsg/C7BHegmKc=
=GBHd
-END PGP SIGNATURE-


Accepted:
ipx_2.2.6-1_i386.deb
  to pool/main/n/ncpfs/ipx_2.2.6-1_i386.deb
libncp-dev_2.2.6-1_i386.deb
  to pool/main/n/ncpfs/libncp-dev_2.2.6-1_i386.deb
libncp_2.2.6-1_i386.deb
  to pool/main/n/ncpfs/libncp_2.2.6-1_i386.deb
libpam-ncp_2.2.6-1_i386.deb
  to pool/main/n/ncpfs/libpam-ncp_2.2.6-1_i386.deb
ncpfs_2.2.6-1.diff.gz
  to pool/main/n/ncpfs/ncpfs_2.2.6-1.diff.gz
ncpfs_2.2.6-1.dsc
  to pool/main/n/ncpfs/ncpfs_2.2.6-1.dsc
ncpfs_2.2.6-1_i386.deb
  to pool/main/n/ncpfs/ncpfs_2.2.6-1_i386.deb
ncpfs_2.2.6.orig.tar.gz
  to pool/main/n/ncpfs/ncpfs_2.2.6.orig.tar.gz


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



Accepted popa3d 0.6.4.1-3 (i386 source)

2005-02-09 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  7 Feb 2005 11:51:24 +0100
Source: popa3d
Binary: popa3d
Architecture: source i386
Version: 0.6.4.1-3
Distribution: unstable
Urgency: low
Maintainer: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]
Changed-By: Krzysztof Krzyzaniak (eloy) [EMAIL PROTECTED]
Description: 
 popa3d - A tiny POP3 daemon, designed with security as the primary goal
Changes: 
 popa3d (0.6.4.1-3) unstable; urgency=low
 .
   * Czech translation of templates file was added (#293602). Thanks
 goes to Miroslav Kure [EMAIL PROTECTED]
Files: 
 ea977a3352eec52854f71e9f427c5b90 591 mail extra popa3d_0.6.4.1-3.dsc
 a05f6e06c517696566f9ec95b8ee586e 8877 mail extra popa3d_0.6.4.1-3.diff.gz
 4258286c2ad23e0d5c0cf3f66142d91b 29922 mail extra popa3d_0.6.4.1-3_i386.deb

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

iD8DBQFCCgBw+NMfSd6w7DERAtlUAKCNRHOXDTgOOV+EfvtYiICUAN0yeQCfXtfj
7Aa9HzBh8jvwqiFo0vj5l4Y=
=nC7R
-END PGP SIGNATURE-


Accepted:
popa3d_0.6.4.1-3.diff.gz
  to pool/main/p/popa3d/popa3d_0.6.4.1-3.diff.gz
popa3d_0.6.4.1-3.dsc
  to pool/main/p/popa3d/popa3d_0.6.4.1-3.dsc
popa3d_0.6.4.1-3_i386.deb
  to pool/main/p/popa3d/popa3d_0.6.4.1-3_i386.deb


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



Accepted python2.4 2.4dfsg-1 (i386 source all)

2005-02-09 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  8 Feb 2005 19:13:10 +0100
Source: python2.4
Binary: python2.4-doc python2.4-dev python2.4-gdbm python2.4-dbg python2.4 
python2.4-tk idle-python2.4 python2.4-examples
Architecture: source all i386
Version: 2.4dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 idle-python2.4 - An IDE for Python (v2.4) using Tkinter
 python2.4  - An interactive high-level object-oriented language (version 2.4)
 python2.4-dbg - Debug Build of the Python Interpreter (version 2.4)
 python2.4-dev - Header files and a static library for Python (v2.4)
 python2.4-doc - Documentation for the high-level object-oriented language 
Python 
 python2.4-examples - Examples for the Python language (v2.4)
 python2.4-gdbm - GNU dbm database support for Python (v2.4)
 python2.4-tk - Tkinter - Writing Tk applications with Python (v2.4)
Changes: 
 python2.4 (2.4dfsg-1) unstable; urgency=medium
 .
   * Add licenses and acknowledgements for incorporated software in the
 debian/copyright file (addresses: #293932).
   * Replace md5 implementation with one having a DFSG conforming license.
   * Remove the profile.py and pstats.py modules from the source package,
 not having a DFSG conforming license. The modules can be found in
 the python2.x-profile package in the non-free section.
 Addresses: #293932.
   * Add missing norwegian locales (Tollef Fog Heen).
   * CVS updates of the release24-maint branch upto 2005-02-08 (date of
 the Python 2.3.5 release).
Files: 
 48f3b3b4b1e190f20d10d8f176dd9320 1069 python optional python2.4_2.4dfsg-1.dsc
 5adcb134940238d41c917ecb3da51c6d 9180004 python optional 
python2.4_2.4dfsg.orig.tar.gz
 9914fe849c0c07a12248a731608ec4e8 2685236 python optional 
python2.4_2.4dfsg-1.diff.gz
 417975eca869b2988745fe2989ce4183 577652 python optional 
python2.4-examples_2.4dfsg-1_all.deb
 e46a0b85c873d118e30d3cefc7e851a6 237660 python optional 
idle-python2.4_2.4dfsg-1_all.deb
 1eb1c2592108933d8ae0878e2cd787de 3219508 doc optional 
python2.4-doc_2.4dfsg-1_all.deb
 d91208041dec83899c0d2eea1af26716 3493050 python optional 
python2.4_2.4dfsg-1_i386.deb
 80f1f7a2b99fca2c05946c8e7c05810b 108352 python optional 
python2.4-tk_2.4dfsg-1_i386.deb
 a07fb28140cc91a438e201d90c6603a2 26150 python optional 
python2.4-gdbm_2.4dfsg-1_i386.deb
 8e3d88f1685a95b1863b9a03b5aa17ed 1559430 python optional 
python2.4-dev_2.4dfsg-1_i386.deb
 9cd17563fe0b4cc821acf75d91574b34 4173706 python extra 
python2.4-dbg_2.4dfsg-1_i386.deb

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

iD8DBQFCCf0JStlRaw+TLJwRAgG9AKCyvG3tVBFQhp7eNg4k4IxkpySveQCghTMh
T/X1GqKkBfRuG9wz0u4M97w=
=WYvd
-END PGP SIGNATURE-


Accepted:
idle-python2.4_2.4dfsg-1_all.deb
  to pool/main/p/python2.4/idle-python2.4_2.4dfsg-1_all.deb
python2.4-dbg_2.4dfsg-1_i386.deb
  to pool/main/p/python2.4/python2.4-dbg_2.4dfsg-1_i386.deb
python2.4-dev_2.4dfsg-1_i386.deb
  to pool/main/p/python2.4/python2.4-dev_2.4dfsg-1_i386.deb
python2.4-doc_2.4dfsg-1_all.deb
  to pool/main/p/python2.4/python2.4-doc_2.4dfsg-1_all.deb
python2.4-examples_2.4dfsg-1_all.deb
  to pool/main/p/python2.4/python2.4-examples_2.4dfsg-1_all.deb
python2.4-gdbm_2.4dfsg-1_i386.deb
  to pool/main/p/python2.4/python2.4-gdbm_2.4dfsg-1_i386.deb
python2.4-tk_2.4dfsg-1_i386.deb
  to pool/main/p/python2.4/python2.4-tk_2.4dfsg-1_i386.deb
python2.4_2.4dfsg-1.diff.gz
  to pool/main/p/python2.4/python2.4_2.4dfsg-1.diff.gz
python2.4_2.4dfsg-1.dsc
  to pool/main/p/python2.4/python2.4_2.4dfsg-1.dsc
python2.4_2.4dfsg-1_i386.deb
  to pool/main/p/python2.4/python2.4_2.4dfsg-1_i386.deb
python2.4_2.4dfsg.orig.tar.gz
  to pool/main/p/python2.4/python2.4_2.4dfsg.orig.tar.gz


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



Accepted apache2 2.0.53-2 (powerpc all source)

2005-02-09 Thread Adam Conrad
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 04:20:07 -0700
Source: apache2
Binary: apache2-utils apache2 apache2-prefork-dev apache2-mpm-prefork 
apache2-doc libapr0-dev apache2-mpm-threadpool apache2-mpm-worker libapr0 
apache2-threaded-dev apache2-common apache2-mpm-perchild
Architecture: source all powerpc
Version: 2.0.53-2
Distribution: unstable
Urgency: low
Maintainer: Debian Apache Maintainers debian-apache@lists.debian.org
Changed-By: Adam Conrad [EMAIL PROTECTED]
Description: 
 apache2- next generation, scalable, extendable web server
 apache2-common - next generation, scalable, extendable web server
 apache2-doc - documentation for apache2
 apache2-mpm-perchild - experimental high speed perchild threaded model for 
Apache2
 apache2-mpm-prefork - traditional model for Apache2
 apache2-mpm-threadpool - experimental high speed model for Apache2 
(transitional package)
 apache2-mpm-worker - high speed threaded model for Apache2
 apache2-prefork-dev - development headers for apache2
 apache2-threaded-dev - development headers for apache2
 apache2-utils - utility programs for webservers
 libapr0- the Apache Portable Runtime
 libapr0-dev - development headers for libapr
Closes: 294257
Changes: 
 apache2 (2.0.53-2) unstable; urgency=low
 .
   * Make apache2-threaded-dev and apache2-prefork-dev both arch:any
 as they contain architecture-dependant defines (closes: #294257)
Files: 
 52b2bc2a3f72ac2ba0b1420e70a83973 1141 net optional apache2_2.0.53-2.dsc
 57893fc3b86e8bbea82075789cbbe074 106331 net optional apache2_2.0.53-2.diff.gz
 ea81097df6b28e61dba2cbebe91d39b1 32064 net optional 
apache2-mpm-threadpool_2.0.53-2_all.deb
 ddb95574fb39ab4b2e72d789bd5c6064 3576696 doc optional 
apache2-doc_2.0.53-2_all.deb
 049360a99ca7a4f9e8ff6b667559a56a 853440 net optional 
apache2-common_2.0.53-2_powerpc.deb
 27d6f7d3b9acb43ef291ea0a43dedbc9 100458 net optional 
apache2-utils_2.0.53-2_powerpc.deb
 3d8d820519058d97840b344493763b0b 224598 net optional 
apache2-mpm-worker_2.0.53-2_powerpc.deb
 48f3e5ee4ac09a9485b65073a77cb8f5 225788 net optional 
apache2-mpm-perchild_2.0.53-2_powerpc.deb
 7080bbfe007ce05c9a29cb5a3c7c64fa 220716 net optional 
apache2-mpm-prefork_2.0.53-2_powerpc.deb
 873a2ef1e8b3b7fa96355dcaf0a0adae 165868 devel optional 
apache2-prefork-dev_2.0.53-2_powerpc.deb
 d889e6c363d09b4472197698f4312bc8 166656 devel optional 
apache2-threaded-dev_2.0.53-2_powerpc.deb
 e183727307093f6db9c5bc7404ac52b2 132838 net optional 
libapr0_2.0.53-2_powerpc.deb
 2ae0cd6c885e17ecf5275c95e216576a 270526 libdevel optional 
libapr0-dev_2.0.53-2_powerpc.deb
 1caba4815a469a571b6936038346aa18 31994 web optional 
apache2_2.0.53-2_powerpc.deb

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

iD4DBQFCCgRGvjztR8bOoMkRAsStAJjTTXVApxC45237tlLPXlnGl2YTAKDZdizq
IIYt1jHoKAqXXficrSjDUw==
=3NCw
-END PGP SIGNATURE-


Accepted:
apache2-common_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/apache2-common_2.0.53-2_powerpc.deb
apache2-doc_2.0.53-2_all.deb
  to pool/main/a/apache2/apache2-doc_2.0.53-2_all.deb
apache2-mpm-perchild_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/apache2-mpm-perchild_2.0.53-2_powerpc.deb
apache2-mpm-prefork_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/apache2-mpm-prefork_2.0.53-2_powerpc.deb
apache2-mpm-threadpool_2.0.53-2_all.deb
  to pool/main/a/apache2/apache2-mpm-threadpool_2.0.53-2_all.deb
apache2-mpm-worker_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/apache2-mpm-worker_2.0.53-2_powerpc.deb
apache2-prefork-dev_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/apache2-prefork-dev_2.0.53-2_powerpc.deb
apache2-threaded-dev_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/apache2-threaded-dev_2.0.53-2_powerpc.deb
apache2-utils_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/apache2-utils_2.0.53-2_powerpc.deb
apache2_2.0.53-2.diff.gz
  to pool/main/a/apache2/apache2_2.0.53-2.diff.gz
apache2_2.0.53-2.dsc
  to pool/main/a/apache2/apache2_2.0.53-2.dsc
apache2_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/apache2_2.0.53-2_powerpc.deb
libapr0-dev_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/libapr0-dev_2.0.53-2_powerpc.deb
libapr0_2.0.53-2_powerpc.deb
  to pool/main/a/apache2/libapr0_2.0.53-2_powerpc.deb


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



Accepted phpbb2 2.0.11-1 (all source)

2005-02-09 Thread Jeroen van Wolffelaar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 09 Feb 2005 13:57:26 +0100
Source: phpbb2
Binary: phpbb2-languages phpbb2-conf-mysql phpbb2
Architecture: source all
Version: 2.0.11-1
Distribution: unstable
Urgency: low
Maintainer: Jeroen van Wolffelaar [EMAIL PROTECTED]
Changed-By: Jeroen van Wolffelaar [EMAIL PROTECTED]
Description: 
 phpbb2 - A fully featured and skinneable flat (non-threaded) webforum
 phpbb2-conf-mysql - Automatic configurator for phpbb2 on MySQL database
 phpbb2-languages - phpBB2 additional languages
Closes: 282840 282994
Changes: 
 phpbb2 (2.0.11-1) unstable; urgency=low
 .
   * New upstream release (Closes: #282840)
 + Drop security fix from 2.0.10-3, is now in upstream
   * Updated a number of languages from upstream
   * Added Czech debconf translation, thanks Miroslav Kure! (Closes: #282994)
   * Include Debian-branded logo's, kindly provided by 'Wolven'
   * Fix location of Esperanto images, that language pack has broken
 directories upstream
   * Added patch to error out descriptively if the database module to connect
 is not available. Previous behaviour was to silently die and give a blank
 page, confusing quite a number of users
Files: 
 eddd47fabf120fd0e6c2a7eacd13ee67 714 web optional phpbb2_2.0.11-1.dsc
 349b38f3c84c4fe23656226d04e41767 3282404 web optional phpbb2_2.0.11.orig.tar.gz
 8335475628837e814c5cd395ffa0939b 58094 web optional phpbb2_2.0.11-1.diff.gz
 94d963fff51a19d28ca320c64f75694e 520348 web optional phpbb2_2.0.11-1_all.deb
 78cecab49284c41840ff391fabe34b48 34496 web optional 
phpbb2-conf-mysql_2.0.11-1_all.deb
 55028d81826228355b622bfd5cd22145 2795848 web optional 
phpbb2-languages_2.0.11-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.4 (GNU/Linux)
Comment: Signed by Jeroen van Wolffelaar [EMAIL PROTECTED]

iD8DBQFCCgvbl2uISwgTVp8RAuJ+AJ4hZpl+DRpoC/u/24itr2oIC4i9/wCgkYc0
oaXMk/B/jTg5ypkn7G0zcNc=
=z5bL
-END PGP SIGNATURE-


Accepted:
phpbb2-conf-mysql_2.0.11-1_all.deb
  to pool/main/p/phpbb2/phpbb2-conf-mysql_2.0.11-1_all.deb
phpbb2-languages_2.0.11-1_all.deb
  to pool/main/p/phpbb2/phpbb2-languages_2.0.11-1_all.deb
phpbb2_2.0.11-1.diff.gz
  to pool/main/p/phpbb2/phpbb2_2.0.11-1.diff.gz
phpbb2_2.0.11-1.dsc
  to pool/main/p/phpbb2/phpbb2_2.0.11-1.dsc
phpbb2_2.0.11-1_all.deb
  to pool/main/p/phpbb2/phpbb2_2.0.11-1_all.deb
phpbb2_2.0.11.orig.tar.gz
  to pool/main/p/phpbb2/phpbb2_2.0.11.orig.tar.gz


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



Accepted roundup 0.7.11-3 (all source)

2005-02-09 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 14:03:03 +0100
Source: roundup
Binary: roundup
Architecture: source all
Version: 0.7.11-3
Distribution: unstable
Urgency: low
Maintainer: Bastian Kleineidam [EMAIL PROTECTED]
Changed-By: Bastian Kleineidam [EMAIL PROTECTED]
Description: 
 roundup- issue-tracking system
Closes: 294333
Changes: 
 roundup (0.7.11-3) unstable; urgency=low
 .
   * Add detector examples (Closes: #294333)
Files: 
 f3e66ec9f1062997c635717200bf9f30 622 web optional roundup_0.7.11-3.dsc
 147cd87a9dfe7027929806a50386068e 15778 web optional roundup_0.7.11-3.diff.gz
 159efc93b31b93c8e4d984fa9f3b0039 693560 web optional roundup_0.7.11-3_all.deb

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

iD8DBQFCCgtoeBwlBDLsbz4RAuiuAJ9I9EpWLpKdkFUorhj95ShTkR1qVQCgsu7F
7X53oaRTZYi+0ghKkdHWA1w=
=xIgS
-END PGP SIGNATURE-


Accepted:
roundup_0.7.11-3.diff.gz
  to pool/main/r/roundup/roundup_0.7.11-3.diff.gz
roundup_0.7.11-3.dsc
  to pool/main/r/roundup/roundup_0.7.11-3.dsc
roundup_0.7.11-3_all.deb
  to pool/main/r/roundup/roundup_0.7.11-3_all.deb


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



Accepted php4-mcrypt 3:4.3.10-0.1 (powerpc source)

2005-02-09 Thread Adam Conrad
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  8 Feb 2005 15:20:41 -0700
Source: php4-mcrypt
Binary: php4-mcrypt
Architecture: source powerpc
Version: 3:4.3.10-0.1
Distribution: unstable
Urgency: medium
Maintainer: Christian Bayle [EMAIL PROTECTED]
Changed-By: Adam Conrad [EMAIL PROTECTED]
Description: 
 php4-mcrypt - MCrypt module for php4
Closes: 294007
Changes: 
 php4-mcrypt (3:4.3.10-0.1) unstable; urgency=medium
 .
   * NMU, with maintainer's consent.
   * New upstream, taken from php4's 4.3.10 sources
   * Remove build-dep on autoconf and use phpize from php4-dev
   * Bump php4-dev build-dep to (= 4:4.3.10-3)
   * Tack -zts on the end of phpapi (closes: #294007)
   * Add support for cli and caudium SAPIs
Files: 
 7ddbacd796f45378a1a97948286abe2d 644 web optional php4-mcrypt_4.3.10-0.1.dsc
 7b44c82f98c8f67663f7bcaaa064299b 399401 web optional 
php4-mcrypt_4.3.10.orig.tar.gz
 3f777400fa4133f567cbe7cb23658c1e 51747 web optional 
php4-mcrypt_4.3.10-0.1.diff.gz
 59d10461edcf319b9d180e53b6f58c91 23466 web optional 
php4-mcrypt_4.3.10-0.1_powerpc.deb

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

iD8DBQFCChHtvjztR8bOoMkRAhKDAKCMtm3Nh32PHNnMBADzhMbgnOqSdACgnYxp
DQ8CV3IBdwUABTgeKu/883c=
=4WW9
-END PGP SIGNATURE-


Accepted:
php4-mcrypt_4.3.10-0.1.diff.gz
  to pool/main/p/php4-mcrypt/php4-mcrypt_4.3.10-0.1.diff.gz
php4-mcrypt_4.3.10-0.1.dsc
  to pool/main/p/php4-mcrypt/php4-mcrypt_4.3.10-0.1.dsc
php4-mcrypt_4.3.10-0.1_powerpc.deb
  to pool/main/p/php4-mcrypt/php4-mcrypt_4.3.10-0.1_powerpc.deb
php4-mcrypt_4.3.10.orig.tar.gz
  to pool/main/p/php4-mcrypt/php4-mcrypt_4.3.10.orig.tar.gz


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



Accepted vdr 1.2.6-7 (i386 source all)

2005-02-09 Thread Debian VDR Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 09 Feb 2005 12:41:49 +0100
Source: vdr
Binary: vdr-kbd vdr-plugin-sky vdr-lirc vdr-daemon vdr-rcu vdr vdr-dev 
vdr-plugin-examples
Architecture: source i386 all
Version: 1.2.6-7
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team [EMAIL PROTECTED]
Changed-By: Debian VDR Team [EMAIL PROTECTED]
Description: 
 vdr- Video Disk Recorder for DVB cards
 vdr-daemon - Server version of Video Disk Recorder for DVB cards
 vdr-dev- Video Disk Recorder for DVB cards
 vdr-kbd- Video Disk Recorder for DVB cards with keyboard control
 vdr-lirc   - Video Disk Recorder for DVB cards with IR remote control
 vdr-plugin-examples - Plugins for vdr to show some possible features
 vdr-plugin-sky - Plugin for using a Sky Digibox with vdr
 vdr-rcu- Video Disk Recorder for DVB cards with RCU control
Closes: 293042 294041
Changes: 
 vdr (1.2.6-7) unstable; urgency=low
 .
   * Thomas Schmidt [EMAIL PROTECTED]
 - This is the first upload of vdr, i can do by myself, i want
   to thank Andreas Müller (amu) and Christoph Martin (chrism)
   for their help with sponsoring previous uploads
 - Only try to change capabilities when vdr is called by root
   (closes: #293042)
 - Added patch from Andreas Jochens to fix the FTBFS on amd64
   with gcc-4.0 (closes: #294041)
 - Changed my email-address to the new debian one
 - Make an entry in syslog when someone tries to shutdown vdr
   while the automatic shutdown is disabled
Files: 
 470d5012e3d6ba38a898c3fe61d48397 856 misc extra vdr_1.2.6-7.dsc
 2579a509d33f83d41922ccb6162eda5a 89682 misc extra vdr_1.2.6-7.diff.gz
 98ac6d7b5de4fb4c61abe27318c34e5a 86970 misc extra vdr-dev_1.2.6-7_all.deb
 fc4e87f92716c7efba05a93557dbf55d 160526 misc extra vdr_1.2.6-7_i386.deb
 235b4fa06f1d4f30b383e0fb55d601cd 273924 misc extra vdr-kbd_1.2.6-7_i386.deb
 28713acaa453c85d7261e1bdd2af5456 273960 misc extra vdr-lirc_1.2.6-7_i386.deb
 11e3fc1a03e7117c0eef3b36b590651c 273980 misc extra vdr-rcu_1.2.6-7_i386.deb
 ed911940dd562787cba4de442d505955 273970 misc extra vdr-daemon_1.2.6-7_i386.deb
 4ef3860916f42b4937bf5fcd69c780ea 18094 misc extra 
vdr-plugin-sky_1.2.6-7_i386.deb
 04f3d867422f6a3ad4a3b6a21ab5c878 12220 misc extra 
vdr-plugin-examples_1.2.6-7_i386.deb

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

iD8DBQFCChHYc9+NqwoydlIRArP8AJ9H/wM93l2DxuP1FMOrKhXtv30GrgCeMkMW
ePW5r0UZDkIv5frM1pvtJHA=
=AtDH
-END PGP SIGNATURE-


Accepted:
vdr-daemon_1.2.6-7_i386.deb
  to pool/main/v/vdr/vdr-daemon_1.2.6-7_i386.deb
vdr-dev_1.2.6-7_all.deb
  to pool/main/v/vdr/vdr-dev_1.2.6-7_all.deb
vdr-kbd_1.2.6-7_i386.deb
  to pool/main/v/vdr/vdr-kbd_1.2.6-7_i386.deb
vdr-lirc_1.2.6-7_i386.deb
  to pool/main/v/vdr/vdr-lirc_1.2.6-7_i386.deb
vdr-plugin-examples_1.2.6-7_i386.deb
  to pool/main/v/vdr/vdr-plugin-examples_1.2.6-7_i386.deb
vdr-plugin-sky_1.2.6-7_i386.deb
  to pool/main/v/vdr/vdr-plugin-sky_1.2.6-7_i386.deb
vdr-rcu_1.2.6-7_i386.deb
  to pool/main/v/vdr/vdr-rcu_1.2.6-7_i386.deb
vdr_1.2.6-7.diff.gz
  to pool/main/v/vdr/vdr_1.2.6-7.diff.gz
vdr_1.2.6-7.dsc
  to pool/main/v/vdr/vdr_1.2.6-7.dsc
vdr_1.2.6-7_i386.deb
  to pool/main/v/vdr/vdr_1.2.6-7_i386.deb


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



Accepted exmh 1:2.7.2-3 (all source)

2005-02-09 Thread Alexander Zangerl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 23:30:57 +1000
Source: exmh
Binary: exmh
Architecture: source all
Version: 1:2.7.2-3
Distribution: unstable
Urgency: low
Maintainer: Anders Hammarquist [EMAIL PROTECTED]
Changed-By: Alexander Zangerl [EMAIL PROTECTED]
Description: 
 exmh   - extensible X user interface for MH mail
Closes: 294019 294212
Changes: 
 exmh (1:2.7.2-3) unstable; urgency=low
 .
   * Added info re sequences display to README.Debian (closes: #294019)
   * exmh needs xterm in a fair number of spots and not so uncommon
 circumstances; I *think* that all x-terminal-emulator programs
 support -e and -title, but I'm not absolutely certain.
 Therefore added depends: xterm
 (This code review what triggered by #294062.)
   * changed audio playing command to run-mailcap for consistency.
   * fixed mime.tcl to properly handle dots in content-type (closes: #294212)
Files: 
 abe9e2f40d7f0a236ea7a495870deacc 592 mail optional exmh_2.7.2-3.dsc
 adaf550f5b6f1b270921ad142b78472e 14440 mail optional exmh_2.7.2-3.diff.gz
 374a7ddef24d7a3dd588cb5bb4e737e9 899232 mail optional exmh_2.7.2-3_all.deb

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

iD8DBQFCChCspy/2bEK9ZF0RArZZAJ4rAh8SJurENnuUgOnOimSJ7APmNwCdEcVK
SST4ys6cKML1cdUqGRFMF4M=
=vYB+
-END PGP SIGNATURE-


Accepted:
exmh_2.7.2-3.diff.gz
  to pool/main/e/exmh/exmh_2.7.2-3.diff.gz
exmh_2.7.2-3.dsc
  to pool/main/e/exmh/exmh_2.7.2-3.dsc
exmh_2.7.2-3_all.deb
  to pool/main/e/exmh/exmh_2.7.2-3_all.deb


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



Accepted matwrap 0.57-4 (all source)

2005-02-09 Thread Debian Octave Group
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 15:22:12 +0100
Source: matwrap
Binary: matwrap
Architecture: source all
Version: 0.57-4
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Debian Octave Group [EMAIL PROTECTED]
Description: 
 matwrap- wrapper generator for matrix languages
Changes: 
 matwrap (0.57-4) unstable; urgency=low
 .
   NOT YET RELEASED!
 .
   +++ Changes by Rafael Laboissiere
 .
   * debian/changelog: Added local variables for Emacs debian-changelog-mode
   * debian/control:
 - Set maintainer Debian Octave Group @ alioth.debian.org
 - Bumped Standards-Version to 3.6.1
 - Build-Depends on dpatch
   * debian/rules:
 - Removed debian/matwrap.1 in target clean, such that is does not end
   in the diff.gz file
 - Adjusted for use of dpatch
   * debian/patches: Added directory with patch for changing string into
 std::string in share/matwrap/wrap_octave.pl. This is necessary with
 modern g++ compilers (patch file: 50_namespace-std-for-string.dpatch).
Files: 
 004c84b84b85ac70c3de4dce6089175e 601 math optional matwrap_0.57-4.dsc
 c60837d7c7eae5e27061eb7b0801c9f7 17755 math optional matwrap_0.57-4.diff.gz
 ad1a30ae9045f36b2e39f404fa5b4376 98156 math optional matwrap_0.57-4_all.deb

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

iD8DBQFCCh1Wk3oga0pdcv4RAh4nAKCUPr6rSmP5sPHaHpA6wc5iGd9IwACeK5b6
1jTBai9Ewg8/ys8xD5feCME=
=F7T5
-END PGP SIGNATURE-


Accepted:
matwrap_0.57-4.diff.gz
  to pool/main/m/matwrap/matwrap_0.57-4.diff.gz
matwrap_0.57-4.dsc
  to pool/main/m/matwrap/matwrap_0.57-4.dsc
matwrap_0.57-4_all.deb
  to pool/main/m/matwrap/matwrap_0.57-4_all.deb


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



Accepted cdbs 0.4.26-4 (all source)

2005-02-09 Thread Robert Millan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  8 Feb 2005 17:11:42 +0100
Source: cdbs
Binary: cdbs
Architecture: source all
Version: 0.4.26-4
Distribution: unstable
Urgency: low
Maintainer: CDBS Hackers [EMAIL PROTECTED]
Changed-By: Robert Millan [EMAIL PROTECTED]
Description: 
 cdbs   - common build system for Debian packages
Changes: 
 cdbs (0.4.26-4) unstable; urgency=low
 .
   * Fix a nasty conflict between cdbs updating config.* files and patches
 attempting to modify them on their own.
 .
 WARNING:  Other patch systems based on cdbs are susceptible to this
 problem and might need similar modifications to the ones done to
 simple-patchsys.mk.
 .
 In buildcore.mk:
   - Move config.* updates to a separate update-config target.
   - Add reverse-config target that reverts update-config using *.cdbs-orig
   backups.
   - Make sure both update-config and reverse-config always keep a copy of
   the old file, and that such old file is in sync with the patch system.
   IOW, the old file can either be patched or unpatched and the patch
   system is responsible for tracking its state (just like for other files).
   - Add config.rpath to backup recovery routine.
 .
 In simple-patchsys.mk:
   - Always invoke reverse-config before anything else, and update-config
 after appliing/reverting patches.
   - Add weak dependency on patchutils and use lsdiff to issue a big
 warning if a patch is updating config.* files.
   - Handle debian/stamp-patched properly so that both apply-patches and
 reverse-patches targets are idempotent.
 .
 In dpatch.mk:
   - Always invoke reverse-config before anything else, and update-config
 after appliing/reverting patches.
   - Add weak dependency on patchutils and use lsdiff to issue a big
 warning if a patch is updating config.* files.
   - Assuming that dpatch itself is in charge of idempotency in the
 apply/reverse targets.
   - [OT]: add weak dependency on dpatch.
Files: 
 dd1920d8192124a7bbec75973c5a5120 929 devel optional cdbs_0.4.26-4.dsc
 86897dea0450294d4aff7ead1362f23f 214515 devel optional cdbs_0.4.26-4.tar.gz
 593fe1bc0f652440e31db9c4b943cbb0 64388 devel optional cdbs_0.4.26-4_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/kFreeBSD)

iD8DBQFCChzIC19io6rUCv8RArdGAJ0VgrtuojRD+eXA8erXw6qLhNMKWACcDes6
subU892Gn5vuYTnugoAQFyM=
=Z4BH
-END PGP SIGNATURE-


Accepted:
cdbs_0.4.26-4.dsc
  to pool/main/c/cdbs/cdbs_0.4.26-4.dsc
cdbs_0.4.26-4.tar.gz
  to pool/main/c/cdbs/cdbs_0.4.26-4.tar.gz
cdbs_0.4.26-4_all.deb
  to pool/main/c/cdbs/cdbs_0.4.26-4_all.deb


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



Accepted matwrap 0.57-5 (all source)

2005-02-09 Thread Debian Octave Group
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 15:34:41 +0100
Source: matwrap
Binary: matwrap
Architecture: source all
Version: 0.57-5
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Debian Octave Group [EMAIL PROTECTED]
Description: 
 matwrap- wrapper generator for matrix languages
Changes: 
 matwrap (0.57-5) unstable; urgency=low
 .
   * Removed obsolete file debian/matwrap.txt.
Files: 
 7e623cb9fd3e98a4e7996229f3fffacc 600 math optional matwrap_0.57-5.dsc
 2bb6ddb7f535f63f6b96074e9dee588f 2772 math optional matwrap_0.57-5.diff.gz
 f3239c975fb0db34a67f6a068ebe0803 98164 math optional matwrap_0.57-5_all.deb

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

iD4DBQFCCh++k3oga0pdcv4RAiyqAJjXOFBLpsJ9u9GpJ8pxyG0x/YMwAJ99ntKU
VICQW87gGoolD3ucsuvADQ==
=FrHN
-END PGP SIGNATURE-


Accepted:
matwrap_0.57-5.diff.gz
  to pool/main/m/matwrap/matwrap_0.57-5.diff.gz
matwrap_0.57-5.dsc
  to pool/main/m/matwrap/matwrap_0.57-5.dsc
matwrap_0.57-5_all.deb
  to pool/main/m/matwrap/matwrap_0.57-5_all.deb


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



Accepted request-tracker3 3.0.12-6 (all source)

2005-02-09 Thread Stephen Quinney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 14:20:12 +
Source: request-tracker3
Binary: rt3-clients request-tracker3
Architecture: source all
Version: 3.0.12-6
Distribution: unstable
Urgency: low
Maintainer: Stephen Quinney [EMAIL PROTECTED]
Changed-By: Stephen Quinney [EMAIL PROTECTED]
Description: 
 request-tracker3 - Extensible trouble-ticket tracking system
 rt3-clients - Mail gateway and command-line interface to request-tracker3
Changes: 
 request-tracker3 (3.0.12-6) unstable; urgency=low
 .
   * Put back the allowed alternate DBD dependencies on libdbd-sqlite-perl
 and libdbd-informix-perl, thanks to Jan Hudec for noting that they had
 gone missing.
Files: 
 74b3a142e0d3276d6117bb1941ad432b 705 misc optional 
request-tracker3_3.0.12-6.dsc
 3495086df0550cdc5bb2f7afcc6730ab 29262 misc optional 
request-tracker3_3.0.12-6.diff.gz
 1656719aef8b150421ce49aec802f766 884342 misc optional 
request-tracker3_3.0.12-6_all.deb
 1de425e3aef038353c3b9fe46d8d0ddb 58054 misc optional 
rt3-clients_3.0.12-6_all.deb

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

iD8DBQFCCh6qITGblEwaW+URAlJLAKDJb/r9G5PNxiwE+z4GWY++AkrNIQCfXTLv
WiCmdBA28poPM2FqMl4h/xk=
=ykZF
-END PGP SIGNATURE-


Accepted:
request-tracker3_3.0.12-6.diff.gz
  to pool/main/r/request-tracker3/request-tracker3_3.0.12-6.diff.gz
request-tracker3_3.0.12-6.dsc
  to pool/main/r/request-tracker3/request-tracker3_3.0.12-6.dsc
request-tracker3_3.0.12-6_all.deb
  to pool/main/r/request-tracker3/request-tracker3_3.0.12-6_all.deb
rt3-clients_3.0.12-6_all.deb
  to pool/main/r/request-tracker3/rt3-clients_3.0.12-6_all.deb


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



Accepted preview-latex 0.8.1+0-5 (all source)

2005-02-09 Thread OHURA Makoto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 23:48:29 +0900
Source: preview-latex
Binary: preview-latex preview-latex-style
Architecture: source all
Version: 0.8.1+0-5
Distribution: unstable
Urgency: low
Maintainer: OHURA Makoto [EMAIL PROTECTED]
Changed-By: OHURA Makoto [EMAIL PROTECTED]
Description: 
 preview-latex - render LaTeX environments within emacs
 preview-latex-style - LaTeX style files for editor embedded preview of some 
environment
Closes: 293353
Changes: 
 preview-latex (0.8.1+0-5) unstable; urgency=low
 .
   * debian/preview-latex.post*: Add and remove auto-load configuration to
 51preview-latex.el instead of putting and deleting it.
 (Closes: #293353).
Files: 
 ec8af6d91b943a7cd030089fe0acb52e 692 tex optional preview-latex_0.8.1+0-5.dsc
 3525f32e3e0a6a879aa213bb622a50e5 12271 tex optional 
preview-latex_0.8.1+0-5.diff.gz
 5c748a2890a6f7215fb643535158a542 632090 tex optional 
preview-latex_0.8.1+0-5_all.deb
 92297e75c5db1b8aaa981cb6e28b2866 89332 tex optional 
preview-latex-style_0.8.1+0-5_all.deb

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

iD8DBQFCCiPH7qLvonfc4IMRAnK1AKCzLWbD/9kHTKGGYNE6aVQ/fo3wEwCeNKUS
G26HPpmMkmZRpXz542OOQ4o=
=cVDz
-END PGP SIGNATURE-


Accepted:
preview-latex-style_0.8.1+0-5_all.deb
  to pool/main/p/preview-latex/preview-latex-style_0.8.1+0-5_all.deb
preview-latex_0.8.1+0-5.diff.gz
  to pool/main/p/preview-latex/preview-latex_0.8.1+0-5.diff.gz
preview-latex_0.8.1+0-5.dsc
  to pool/main/p/preview-latex/preview-latex_0.8.1+0-5.dsc
preview-latex_0.8.1+0-5_all.deb
  to pool/main/p/preview-latex/preview-latex_0.8.1+0-5_all.deb


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



Accepted evince 0.1.4-1 (i386 source)

2005-02-09 Thread Sebastien Bacher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 15:13:54 +0100
Source: evince
Binary: evince
Architecture: source i386
Version: 0.1.4-1
Distribution: unstable
Urgency: low
Maintainer: Sebastien Bacher [EMAIL PROTECTED]
Changed-By: Sebastien Bacher [EMAIL PROTECTED]
Description: 
 evince - Document (postscript, pdf) viewer
Closes: 294011 294348
Changes: 
 evince (0.1.4-1) unstable; urgency=low
 .
   * New upstream release:
 - epiphany like fullscreen mode.
 - save chromes state between sessions.
 - improve toolbar layout and icons.
 - really fix postscript rendering.
   * debian/control.in:
 - don't mention DVI in the description (Closes: #294011).
 - typos fix in the description (Closes: #294348).
Files: 
 f5f6b7b6f1cabcafa3aae7b707800d66 1575 gnome optional evince_0.1.4-1.dsc
 6270443130e7c8947d0fb7575d47e759 956400 gnome optional evince_0.1.4.orig.tar.gz
 2616b787d92d188580c05434eb3cb7cd 2029 gnome optional evince_0.1.4-1.diff.gz
 e218d187650efdeecc94fe40e598d1ff 517046 gnome optional evince_0.1.4-1_i386.deb

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

iD8DBQFCCiUdQxo87aLX0pIRAjSRAJ4/8au+b/O2m3SZMJjrLw5VHZWhigCgweFw
HEy5+owJDH2upN2e3J2ihCM=
=lXBU
-END PGP SIGNATURE-


Accepted:
evince_0.1.4-1.diff.gz
  to pool/main/e/evince/evince_0.1.4-1.diff.gz
evince_0.1.4-1.dsc
  to pool/main/e/evince/evince_0.1.4-1.dsc
evince_0.1.4-1_i386.deb
  to pool/main/e/evince/evince_0.1.4-1_i386.deb
evince_0.1.4.orig.tar.gz
  to pool/main/e/evince/evince_0.1.4.orig.tar.gz


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



Accepted libusb 1:0.1.9-2 (i386 source)

2005-02-09 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 16:05:15 +0100
Source: libusb
Binary: libusb-dev libusb-0.1-4
Architecture: source i386
Version: 1:0.1.9-2
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 libusb-0.1-4 - userspace USB programming library
 libusb-dev - userspace USB programming library development files
Closes: 294139
Changes: 
 libusb (1:0.1.9-2) unstable; urgency=low
 .
   * Add a fix to fetch the descriptors from the device is they are only
 partially provided by the kernel (closes: bug#294139).
Files: 
 61627207402b22757f0a08941766eacb 652 libs optional libusb_0.1.9-2.dsc
 1a25d4bfb963fd6042e1942bd6f82661 26621 libs optional libusb_0.1.9-2.diff.gz
 caf50309b20aa1167f1818d811b7c92f 19912 libs optional 
libusb-0.1-4_0.1.9-2_i386.deb
 8261061339c7f9434edd42f2f1ee4c4f 33812 libdevel optional 
libusb-dev_0.1.9-2_i386.deb

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

iD8DBQFCCiczw3ao2vG823MRAlivAJ9VvpLB7Ocl3weorzDv+jjbR55iowCfZASs
0nIhGXESmBunIP3xAlkkK6s=
=Y/QW
-END PGP SIGNATURE-


Accepted:
libusb-0.1-4_0.1.9-2_i386.deb
  to pool/main/libu/libusb/libusb-0.1-4_0.1.9-2_i386.deb
libusb-dev_0.1.9-2_i386.deb
  to pool/main/libu/libusb/libusb-dev_0.1.9-2_i386.deb
libusb_0.1.9-2.diff.gz
  to pool/main/libu/libusb/libusb_0.1.9-2.diff.gz
libusb_0.1.9-2.dsc
  to pool/main/libu/libusb/libusb_0.1.9-2.dsc


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



Accepted fluxconf 0.9.7-1 (i386 source)

2005-02-09 Thread Emmanuel le Chevoir
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 16:24:30 +0100
Source: fluxconf
Binary: fluxconf
Architecture: source i386
Version: 0.9.7-1
Distribution: unstable
Urgency: low
Maintainer: Emmanuel le Chevoir [EMAIL PROTECTED]
Changed-By: Emmanuel le Chevoir [EMAIL PROTECTED]
Description: 
 fluxconf   - FluxBox configuration utility
Closes: 262431
Changes: 
 fluxconf (0.9.7-1) unstable; urgency=low
 .
   * The 0.9.8 may never come, let's go for 0.9.7, eventually release
   * New upstream version (Closes: #262431)
   * Fixed quoting problems in the menu file
Files: 
 585bfd5cf15aebc24360ef834fa8cf74 633 x11 optional fluxconf_0.9.7-1.dsc
 207faf932e07642c779e54aba549c804 197481 x11 optional fluxconf_0.9.7.orig.tar.gz
 e51acd5a8bb3406782a7d9f91f5b53d3 17514 x11 optional fluxconf_0.9.7-1.diff.gz
 01d2f15c9d84b67b4ac80b4cc0ea0f2e 35388 x11 optional fluxconf_0.9.7-1_i386.deb

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

iD8DBQFCCi0a4i/Wdr6T0t4RAgEKAJ0YgoyZhaHhDbdTUfA+h+uZyQaoCgCfReRT
IL7+IE4UiiN8cowapcQBD0E=
=D0YL
-END PGP SIGNATURE-


Accepted:
fluxconf_0.9.7-1.diff.gz
  to pool/main/f/fluxconf/fluxconf_0.9.7-1.diff.gz
fluxconf_0.9.7-1.dsc
  to pool/main/f/fluxconf/fluxconf_0.9.7-1.dsc
fluxconf_0.9.7-1_i386.deb
  to pool/main/f/fluxconf/fluxconf_0.9.7-1_i386.deb
fluxconf_0.9.7.orig.tar.gz
  to pool/main/f/fluxconf/fluxconf_0.9.7.orig.tar.gz


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



Accepted tinysnmp 0.8.4 (i386 source all)

2005-02-09 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 17:50:15 +0200
Source: tinysnmp
Binary: tinysnmp-module-dvb tinysnmp-module-interfaces tinysnmp-tools 
tinysnmp-module-resources tinysnmp-agent-dev tinysnmp-manager-dev 
tinysnmp-module-ups tinysnmp-dev tinysnmp-agent
Architecture: source i386 all
Version: 0.8.4
Distribution: unstable
Urgency: low
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 tinysnmp-agent - A lightweight SNMPv1 implementation
 tinysnmp-agent-dev - Libraries and header files for developing TinySNMP plugins
 tinysnmp-dev - Files needed for developing TinySNMP programs and plugins
 tinysnmp-manager-dev - Libraries and header files for developing TinySNMP 
programs
 tinysnmp-module-dvb - DVB Data Receiver MIB module for TinySNMP
 tinysnmp-module-interfaces - Interfaces MIB module for TinySNMP
 tinysnmp-module-resources - Frogfoot Networks Resources MIB plugin for TinySNMP
 tinysnmp-module-ups - UPS MIB module for TinySNMP
 tinysnmp-tools - TinySNMP Utilities
Closes: 282260
Changes: 
 tinysnmp (0.8.4) unstable; urgency=low
 .
   * Compile with -O0 instead of -Os on sparc64 (Closes: #282260)
   * Link against latest libevent1
Files: 
 8f4c383274e5da3f4d6b4253b92dd07c 771 net optional tinysnmp_0.8.4.dsc
 892ddb02b74705e299ff0c69315b8943 171835 net optional tinysnmp_0.8.4.tar.gz
 7ab64fe50a977831f3eb1df771c70808 9306 devel optional 
tinysnmp-agent-dev_0.8.4_all.deb
 2d7e5ba47f148b199a258d82e32d9fd7 10580 devel optional 
tinysnmp-dev_0.8.4_i386.deb
 657101a074bab74f87d7bec040cab85e 11882 devel optional 
tinysnmp-manager-dev_0.8.4_i386.deb
 83bedd49f65ea72f775cf49003332601 20160 net optional 
tinysnmp-tools_0.8.4_i386.deb
 753744127dbcf851af9418302d5d3f50 49526 net optional 
tinysnmp-agent_0.8.4_i386.deb
 50314e594d8f3b1689c90ac8e3ddcb2d 28936 net optional 
tinysnmp-module-interfaces_0.8.4_i386.deb
 80d847e4ff6ebee411ca43758756ed6e 12108 net optional 
tinysnmp-module-resources_0.8.4_i386.deb
 d6bcbce4a54552255fc32c21d5231c72 22114 net optional 
tinysnmp-module-ups_0.8.4_i386.deb
 8dca3187677921e0128b5f8f97dee98d 19178 net optional 
tinysnmp-module-dvb_0.8.4_i386.deb

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

iD8DBQFCCjFxzvVjZitVWu4RAqRKAKCXXQjeTkobpixMa5a4A7+QJxKW4ACfehIo
p6S06EnHiMsbS8q/JzI1DoY=
=g6gW
-END PGP SIGNATURE-


Accepted:
tinysnmp-agent-dev_0.8.4_all.deb
  to pool/main/t/tinysnmp/tinysnmp-agent-dev_0.8.4_all.deb
tinysnmp-agent_0.8.4_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-agent_0.8.4_i386.deb
tinysnmp-dev_0.8.4_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-dev_0.8.4_i386.deb
tinysnmp-manager-dev_0.8.4_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-manager-dev_0.8.4_i386.deb
tinysnmp-module-dvb_0.8.4_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-module-dvb_0.8.4_i386.deb
tinysnmp-module-interfaces_0.8.4_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-module-interfaces_0.8.4_i386.deb
tinysnmp-module-resources_0.8.4_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-module-resources_0.8.4_i386.deb
tinysnmp-module-ups_0.8.4_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-module-ups_0.8.4_i386.deb
tinysnmp-tools_0.8.4_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-tools_0.8.4_i386.deb
tinysnmp_0.8.4.dsc
  to pool/main/t/tinysnmp/tinysnmp_0.8.4.dsc
tinysnmp_0.8.4.tar.gz
  to pool/main/t/tinysnmp/tinysnmp_0.8.4.tar.gz


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



Accepted smarteiffel 1.1-6 (i386 source)

2005-02-09 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 12:21:00 +0100
Source: smarteiffel
Binary: smarteiffel
Architecture: source i386
Version: 1.1-6
Distribution: unstable
Urgency: high
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 smarteiffel - GNU Eiffel compiler
Closes: 294306
Changes: 
 smarteiffel (1.1-6) unstable; urgency=high
 .
   * Fixed wrong permissions in /usr/lib/smarteiffel/bin made in previous
 revision (Closes: #294306).
Files: 
 c8c3ac415cf001998e754d1abcbd3604 691 devel optional smarteiffel_1.1-6.dsc
 90c5f2c7c8b50415df869a633c837e06 20658 devel optional smarteiffel_1.1-6.diff.gz
 ef60f3c409df3b4e223f7c1cb80467e3 2246604 devel optional 
smarteiffel_1.1-6_i386.deb

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

iEYEARECAAYFAkIKLYgACgkQELuA/Ba9d8b3CgCg02doa4dj5XLrEGcBL6Vsn/C9
lEAAnA4/mt0ZT+B8L4s2SzE8qBDKCFq6
=P9Lw
-END PGP SIGNATURE-


Accepted:
smarteiffel_1.1-6.diff.gz
  to pool/main/s/smarteiffel/smarteiffel_1.1-6.diff.gz
smarteiffel_1.1-6.dsc
  to pool/main/s/smarteiffel/smarteiffel_1.1-6.dsc
smarteiffel_1.1-6_i386.deb
  to pool/main/s/smarteiffel/smarteiffel_1.1-6_i386.deb


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



Accepted simpletal 3.11-1 (all source)

2005-02-09 Thread Igor Stroh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 8 Feb 2005 15:21:28 +0100
Source: simpletal
Binary: python-simpletal python2.3-simpletal python2.2-simpletal
Architecture: source all
Version: 3.11-1
Distribution: unstable
Urgency: low
Maintainer: Igor Stroh [EMAIL PROTECTED]
Changed-By: Igor Stroh [EMAIL PROTECTED]
Description: 
 python-simpletal - Simple TAL, TALES and METAL implementation
 python2.2-simpletal - Simple TAL, TALES and METAL implementation, python 2.2 
version
 python2.3-simpletal - Simple TAL, TALES and METAL implementation, python 2.3 
version
Closes: 282201
Changes: 
 simpletal (3.11-1) unstable; urgency=low
 .
   * New upstream version.
   * New maintainer (Closes: #282201)
   * Changed replaced debian/rules with a
 cdbs-enforced Version
   * Changed long-description slightly
   * Patched setup.py so it doesn't import 'simpletal'
 from 'lib/simpletal/__init__.py' anymore.
Files: 
 2d0df5d799d1ddc44abc3b95ada2eb55 666 python optional simpletal_3.11-1.dsc
 fe37ab089165625738a10736a573b0b3 84558 python optional 
simpletal_3.11.orig.tar.gz
 6c531c38d870c1610637a180486ec623 2281 python optional simpletal_3.11-1.diff.gz
 9695f51843bea4834e01a2bf53f60e4a 38370 python optional 
python-simpletal_3.11-1_all.deb
 8169a47683e3442e77d81d1df255402d 29776 python optional 
python2.2-simpletal_3.11-1_all.deb
 48698c219dbc88854266350f6db6b391 29784 python optional 
python2.3-simpletal_3.11-1_all.deb

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

iD8DBQFCCjQ1V6N/vVHPhBcRApLSAJ4pocoI1Ro/iW2707TNkdB+cNzfZQCfc4TA
r+HtwnkzVM1OT0MVPjdir/M=
=voag
-END PGP SIGNATURE-


Accepted:
python-simpletal_3.11-1_all.deb
  to pool/main/s/simpletal/python-simpletal_3.11-1_all.deb
python2.2-simpletal_3.11-1_all.deb
  to pool/main/s/simpletal/python2.2-simpletal_3.11-1_all.deb
python2.3-simpletal_3.11-1_all.deb
  to pool/main/s/simpletal/python2.3-simpletal_3.11-1_all.deb
simpletal_3.11-1.diff.gz
  to pool/main/s/simpletal/simpletal_3.11-1.diff.gz
simpletal_3.11-1.dsc
  to pool/main/s/simpletal/simpletal_3.11-1.dsc
simpletal_3.11.orig.tar.gz
  to pool/main/s/simpletal/simpletal_3.11.orig.tar.gz


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



Accepted potion 0.0.4 (i386 source)

2005-02-09 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 18:26:27 +0200
Source: potion
Binary: potion
Architecture: source i386
Version: 0.0.4
Distribution: unstable
Urgency: low
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 potion - IP Flow Monitor
Closes: 275604 293403
Changes: 
 potion (0.0.4) unstable; urgency=low
 .
   * Added syslog explanation and paragraph about network interface
 privileges to man page (Closes: #275604)
   * Linked against latest libevent library (Closes: #293403)
Files: 
 4068d10423bc222c54ac08cd6707d559 584 net optional potion_0.0.4.dsc
 07bb35d6f3921190a2c753acf4c8f57c 21161 net optional potion_0.0.4.tar.gz
 527efec0ce39595cd6161d7eedc0f6df 15212 net optional potion_0.0.4_i386.deb

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

iD8DBQFCCjnizvVjZitVWu4RAjsxAJ9rAl7jKxVKwrwRmEvYK3yUYSnVjQCgiqy9
WMNmu7z7kJ+LqCgod+uUNEs=
=eYM5
-END PGP SIGNATURE-


Accepted:
potion_0.0.4.dsc
  to pool/main/p/potion/potion_0.0.4.dsc
potion_0.0.4.tar.gz
  to pool/main/p/potion/potion_0.0.4.tar.gz
potion_0.0.4_i386.deb
  to pool/main/p/potion/potion_0.0.4_i386.deb


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



Accepted espa-nol 1.7-27 (all source)

2005-02-09 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 16:57:26 +0100
Source: espa-nol
Binary: myspell-es ispanish
Architecture: source all
Version: 1.7-27
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo [EMAIL PROTECTED]
Changed-By: Agustin Martin Domingo [EMAIL PROTECTED]
Description: 
 ispanish   - The Spanish dictionary for ispell
 myspell-es - The Spanish dictionary for myspell
Changes: 
 espa-nol (1.7-27) unstable; urgency=low
 .
   * debian/ispanish.config.in:
 - Removed extra whitespace in an open call. This only became
   evident in woody boxes when reconfiguring the package,
   causing compat file not being opened.
Files: 
 efed657e46834b6c97f0c4a166e7eefa 661 text optional espa-nol_1.7-27.dsc
 2ec334b7cf390aa0d0ac9cc553083abb 24886 text optional espa-nol_1.7-27.diff.gz
 7ee71ab5ca307a39573ba033c459e603 222322 text optional ispanish_1.7-27_all.deb
 b0a561af347946bd58abe7f3f9af3d51 206110 text optional myspell-es_1.7-27_all.deb

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

iD8DBQFCCjNEWMZwCEWXpZMRAupLAJ9z8qLUbuUxofDDCKwQ7+ftZiqjfwCeOnTE
z/qDVOMGOxLUTY4ZIC+1xJ0=
=6QSv
-END PGP SIGNATURE-


Accepted:
espa-nol_1.7-27.diff.gz
  to pool/main/e/espa-nol/espa-nol_1.7-27.diff.gz
espa-nol_1.7-27.dsc
  to pool/main/e/espa-nol/espa-nol_1.7-27.dsc
ispanish_1.7-27_all.deb
  to pool/main/e/espa-nol/ispanish_1.7-27_all.deb
myspell-es_1.7-27_all.deb
  to pool/main/e/espa-nol/myspell-es_1.7-27_all.deb


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



Accepted cron-apt 0.2.1 (all source)

2005-02-09 Thread Ola Lundqvist
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 17:40:53 +0100
Source: cron-apt
Binary: cron-apt
Architecture: source all
Version: 0.2.1
Distribution: unstable
Urgency: low
Maintainer: Ola Lundqvist [EMAIL PROTECTED]
Changed-By: Ola Lundqvist [EMAIL PROTECTED]
Description: 
 cron-apt   - automatic update of packages using apt-get
Closes: 294321
Changes: 
 cron-apt (0.2.1) unstable; urgency=low
 .
   * Fixed bashism in filtercrlf check, closes: #294321.
Files: 
 60135acbee149c21bbcbc37e10d9e067 513 admin optional cron-apt_0.2.1.dsc
 3ed4e0754ee3c45327bec94d552cbb5d 28924 admin optional cron-apt_0.2.1.tar.gz
 f450ac005923b511e504fbde096c8cfd 18794 admin optional cron-apt_0.2.1_all.deb

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

iD8DBQFCCj1WGKGxzw/lPdkRAtzwAJ4gHD3qaXTkK9gii0lOYTYIsQhZxgCeIYbV
92jazhlz6nMlB1FlB8d7yIA=
=FZbF
-END PGP SIGNATURE-


Accepted:
cron-apt_0.2.1.dsc
  to pool/main/c/cron-apt/cron-apt_0.2.1.dsc
cron-apt_0.2.1.tar.gz
  to pool/main/c/cron-apt/cron-apt_0.2.1.tar.gz
cron-apt_0.2.1_all.deb
  to pool/main/c/cron-apt/cron-apt_0.2.1_all.deb


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



Accepted eo-spell 2.1.2000.02.25-17 (all source)

2005-02-09 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 17:00:59 +0100
Source: eo-spell
Binary: myspell-eo iesperanto
Architecture: source all
Version: 2.1.2000.02.25-17
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo [EMAIL PROTECTED]
Changed-By: Agustin Martin Domingo [EMAIL PROTECTED]
Description: 
 iesperanto - The Esperanto dictionary for ispell
 myspell-eo - The Esperanto dictionary for myspell
Changes: 
 eo-spell (2.1.2000.02.25-17) unstable; urgency=low
 .
   * debian/iesperanto.config.in:
 - Removed extra whitespace in an open call. This only became
   evident in woody boxes when reconfiguring the package,
   causing compat file not being opened.
Files: 
 4cd91e71016a1a7537f7fb1298b30e8a 693 text optional 
eo-spell_2.1.2000.02.25-17.dsc
 13915616a1e64812f1e9e44e5779b443 4418 text optional 
eo-spell_2.1.2000.02.25-17.diff.gz
 824761296d5819f7025ad9fcf179ffac 100296 text optional 
iesperanto_2.1.2000.02.25-17_all.deb
 070ec9dad4d1687d8366173657b26d70 98112 text optional 
myspell-eo_2.1.2000.02.25-17_all.deb

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

iD8DBQFCCjQJWMZwCEWXpZMRAkOiAKCj8el7LF0qKu9ZZ070g1Nh8inTlgCglk/9
Obwd3kMoSvOI+RwmI+fE2nI=
=W8Sj
-END PGP SIGNATURE-


Accepted:
eo-spell_2.1.2000.02.25-17.diff.gz
  to pool/main/e/eo-spell/eo-spell_2.1.2000.02.25-17.diff.gz
eo-spell_2.1.2000.02.25-17.dsc
  to pool/main/e/eo-spell/eo-spell_2.1.2000.02.25-17.dsc
iesperanto_2.1.2000.02.25-17_all.deb
  to pool/main/e/eo-spell/iesperanto_2.1.2000.02.25-17_all.deb
myspell-eo_2.1.2000.02.25-17_all.deb
  to pool/main/e/eo-spell/myspell-eo_2.1.2000.02.25-17_all.deb


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



Accepted ispell-gl 0.5-12 (i386 source all)

2005-02-09 Thread Agustin Martin Domingo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 17:09:36 +0100
Source: ispell-gl
Binary: aspell-gl-minimos igalician-minimos myspell-gl-es wgalician-minimos
Architecture: source all i386
Version: 0.5-12
Distribution: unstable
Urgency: low
Maintainer: Agustin Martin Domingo [EMAIL PROTECTED]
Changed-By: Agustin Martin Domingo [EMAIL PROTECTED]
Description: 
 aspell-gl-minimos - Aspell dictionary for Galician (minimos)
 igalician-minimos - Ispell dictionary for Galician (minimos)
 myspell-gl-es - Galician dictionary for myspell
 wgalician-minimos - Wordlist for Galician (minimos)
Changes: 
 ispell-gl (0.5-12) unstable; urgency=low
 .
   * debian/igalician-minimos.config.in:
 - Removed extra whitespace in an open call. This only became
   evident in woody boxes when reconfiguring the package,
   causing compat file not being opened
Files: 
 2d8402541728476abd62c6f27013fda1 733 text optional ispell-gl_0.5-12.dsc
 426acaad2128d485d476c1699e154867 15832 text optional ispell-gl_0.5-12.diff.gz
 38ebaa8f9e9152fba586ba9477fa3f0c 128582 text optional 
igalician-minimos_0.5-12_all.deb
 1231c11da3d3e8564fa6570dc29ce7f7 1278494 text optional 
wgalician-minimos_0.5-12_all.deb
 3c1f8e05fa6bbe9baccdf2687f842d12 5226362 text optional 
aspell-gl-minimos_0.5-12_i386.deb
 d13d5487c8fae3eb5643a31c5b5a8853 123976 text optional 
myspell-gl-es_0.5-12_all.deb

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

iD8DBQFCCjcUWMZwCEWXpZMRAnPjAJ9cuZcQauOOe0AlPJNt1WZubFWvqwCdFWWy
B4fgHY8FYKWaWO/0wKCoWHo=
=7WrN
-END PGP SIGNATURE-


Accepted:
aspell-gl-minimos_0.5-12_i386.deb
  to pool/main/i/ispell-gl/aspell-gl-minimos_0.5-12_i386.deb
igalician-minimos_0.5-12_all.deb
  to pool/main/i/ispell-gl/igalician-minimos_0.5-12_all.deb
ispell-gl_0.5-12.diff.gz
  to pool/main/i/ispell-gl/ispell-gl_0.5-12.diff.gz
ispell-gl_0.5-12.dsc
  to pool/main/i/ispell-gl/ispell-gl_0.5-12.dsc
myspell-gl-es_0.5-12_all.deb
  to pool/main/i/ispell-gl/myspell-gl-es_0.5-12_all.deb
wgalician-minimos_0.5-12_all.deb
  to pool/main/i/ispell-gl/wgalician-minimos_0.5-12_all.deb


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



Accepted zsync 0.2.1-1 (i386 source)

2005-02-09 Thread Robert Lemmen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 15:54:55 +0100
Source: zsync
Binary: zsync
Architecture: source i386
Version: 0.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Robert Lemmen [EMAIL PROTECTED]
Changed-By: Robert Lemmen [EMAIL PROTECTED]
Description: 
 zsync  - client-side implementation of the rsync algorithm
Changes: 
 zsync (0.2.1-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 7a6b622fe3114eb2dd5315d578242889 616 net optional zsync_0.2.1-1.dsc
 6b60084dc58ed8f1e9fc38f1dcf24d72 174254 net optional zsync_0.2.1.orig.tar.gz
 18e9f9cca9818e1fcc3a42081bdad8b4 5492 net optional zsync_0.2.1-1.diff.gz
 2e27394b110179990ce5892286db6c60 78482 net optional zsync_0.2.1-1_i386.deb

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

iEYEARECAAYFAkIKPUwACgkQIgvIgzMMSnX4MgCg45jnv6HtB7GT/rnJ99D/cmoT
x6YAnA7pMoJKc3Etp/iYY+oIPlZmJkYw
=zPNo
-END PGP SIGNATURE-


Accepted:
zsync_0.2.1-1.diff.gz
  to pool/main/z/zsync/zsync_0.2.1-1.diff.gz
zsync_0.2.1-1.dsc
  to pool/main/z/zsync/zsync_0.2.1-1.dsc
zsync_0.2.1-1_i386.deb
  to pool/main/z/zsync/zsync_0.2.1-1_i386.deb
zsync_0.2.1.orig.tar.gz
  to pool/main/z/zsync/zsync_0.2.1.orig.tar.gz


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



Accepted floatbg 1.0-21 (i386 source)

2005-02-09 Thread Dave Holland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  9 Feb 2005 15:49:39 +
Source: floatbg
Binary: floatbg
Architecture: source i386
Version: 1.0-21
Distribution: unstable
Urgency: low
Maintainer: Dave Holland [EMAIL PROTECTED]
Changed-By: Dave Holland [EMAIL PROTECTED]
Description: 
 floatbg- slowly modify the color of the X root window
Closes: 17341 196153
Changes: 
 floatbg (1.0-21) unstable; urgency=low
 .
   * new maintainer (closes: #196153)
   * only one floatbg will run per X server (closes: #17341)
Files: 
 99ae9b51dbf0d3f223f2051f213f48de 570 x11 optional floatbg_1.0-21.dsc
 a0e2dae3bf96b785ab5d2ebfaa996e11 14629 x11 optional floatbg_1.0-21.diff.gz
 16c704dc24f3b03785cba2707935e32e 10680 x11 optional floatbg_1.0-21_i386.deb

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

iD8DBQFCCkX7KeFPmTkbOSgRAp1QAKCAIsX1rfAYFXfSaWulbpU1C3C2IQCbBlSC
OtT+A98i+gteFpAuMTqgQDE=
=9xLe
-END PGP SIGNATURE-


Accepted:
floatbg_1.0-21.diff.gz
  to pool/main/f/floatbg/floatbg_1.0-21.diff.gz
floatbg_1.0-21.dsc
  to pool/main/f/floatbg/floatbg_1.0-21.dsc
floatbg_1.0-21_i386.deb
  to pool/main/f/floatbg/floatbg_1.0-21_i386.deb


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



  1   2   >