Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread John H. Robinson, IV
Cardenas wrote:
 On Tue, Jul 29, 2003 at 07:22:00PM -0500, Gunnar Wolf wrote:
  Some people were talking me into proposing Mexico for a future
  Debconf, but I don't think it would be that good an idea until we
  had some more developers in the country, but... Maybe for 2006? :-)
 
 Is this true?! I'm so glad! I can actually go! Yay!!!

Just say No to Tijuana.

NOW - if you say Ensenada - i have some contacts with ELUG[0] and they
may be interested in coordinating something.

[0] http://elug.ciberlinux.net/

i am still looking for an excuse to head down there. ;)

-john




Re: proposal: per-user temporary directories on by default?

2003-07-30 Thread Kevin Kreamer
Tollef Fog Heen [EMAIL PROTECTED] writes:
 ATM, TMPDIR is defined using #define in libpam-tmpdir's source.
 Patches for having that as a run-time configuration are accepted.

Attached is a patch to allow you to specify TMPDIR in the relevent
pam.d file, like so:

session   optional   pam_tmpdir.so tmpdir=/tmp/users

It does not (yet) expand ~, $HOME, or the like.  I'd like someone to
look it over to make sure I didn't open any security holes or cause
any stupid bugs.  (I do realise that it trusts the contents of the
pam.d file... not sure how paranoid to be about that.)

Thanks,
Kevin
Index: pam-tmpdir-helper.c
===
--- pam-tmpdir-helper.c	(revision 1)
+++ pam-tmpdir-helper.c	(working copy)
@@ -27,6 +27,8 @@
 
 #define SYSUSRTMP /tmp/user
 
+char *tmpdir;
+
 /* some syslogging */
 
 static void _log_err(int err, const char *format, ...)
@@ -47,48 +49,48 @@
   struct stat statbuf;
   mode_t old_umask;
 
-  ret = lstat(SYSUSRTMP,statbuf);
+  ret = lstat(tmpdir,statbuf);
   if (ret == -1  errno != ENOENT) {
-snprintf(logbuf,sizeof logbuf,lstat SYSUSRTMP failed: %s\n, strerror(errno));
+snprintf(logbuf,sizeof logbuf,lstat tmpdir failed: %s\n, strerror(errno));
 _log_err(LOG_NOTICE, %s, logbuf);
 return 1;
   } else if (ret != -1  statbuf.st_uid != 0) {
 /* Somebody else than root has grabbed /tmp/user.  Bad, bad, bad. */
 snprintf(logbuf,sizeof logbuf,%s is owned by uid %d instead of root  
-	(uid 0). Failed to create safe $TMPDIR\n, SYSUSRTMP, 
+	(uid 0). Failed to create safe $TMPDIR\n, tmpdir, 
  statbuf.st_uid);
 _log_err(LOG_ERR, %s, logbuf);
 return 1;
   } else if (ret != -1  !S_ISDIR(statbuf.st_mode)) {
-snprintf(logbuf,sizeof logbuf,%s is not a directory. Failed to create safe $TMPDIR\n, SYSUSRTMP);
+snprintf(logbuf,sizeof logbuf,%s is not a directory. Failed to create safe $TMPDIR\n, tmpdir);
 _log_err(LOG_NOTICE, %s, logbuf);
 return 1;
   } else if (ret != -1  ((statbuf.st_mode  S_IWGRP) || (statbuf.st_mode  S_IWOTH))) {
 snprintf(logbuf,sizeof logbuf,%s is group or world writable. 
-	 Failed to create safe $TMPDIR\n, SYSUSRTMP);
+	 Failed to create safe $TMPDIR\n, tmpdir);
 _log_err(LOG_NOTICE, %s, logbuf);
 return 1;
   } else if (ret != -1  !(statbuf.st_mode  S_IXOTH)) {
 snprintf(logbuf,sizeof logbuf,%s is not world searchable. 
-	 Failed to create safe $TMPDIR\n, SYSUSRTMP); 
+	 Failed to create safe $TMPDIR\n, tmpdir); 
 _log_err(LOG_NOTICE, %s, logbuf);
 return 1;
   } else if (ret == -1  errno == ENOENT) {
 old_umask = umask();
-if (mkdir(SYSUSRTMP,0711) == -1) {
-  snprintf(logbuf,sizeof logbuf,mkdir SYSUSRTMP failed: %s\n, strerror(errno));
+if (mkdir(tmpdir,0711) == -1) {
+  snprintf(logbuf,sizeof logbuf,mkdir tmpdir failed: %s\n, strerror(errno));
   _log_err(LOG_NOTICE, %s, logbuf);
   return 1;
 }
 umask(old_umask);
-if (chown(SYSUSRTMP,0,0) == -1) {
-  snprintf(logbuf,sizeof logbuf,chown 0:0 SYSUSRTMP failed: %s\n, strerror(errno));
+if (chown(tmpdir,0,0) == -1) {
+  snprintf(logbuf,sizeof logbuf,chown 0:0 tmpdir failed: %s\n, strerror(errno));
   _log_err(LOG_NOTICE, %s, logbuf);
   return 1;
 }
   }
 
-  if (snprintf(buf, sizeof buf, %s/%d,SYSUSRTMP,getuid()) == -1) {
+  if (snprintf(buf, sizeof buf, %s/%d,tmpdir,getuid()) == -1) {
 return 1;
   }
   ret = lstat(buf,statbuf);
@@ -131,5 +133,29 @@
 }
 
 int main(int argc, char **argv) {
+  /* Parse our command line arguments.  We assume that 
+   * we will either receive one argument (the tmpdir path),
+   * or none at all (in which case, we set tmpdir to be SYSUSRTMP).
+   */
+
+   if (argc == 2) {
+ if ((tmpdir = malloc(strlen(argv[1]) + 1)) == NULL) {
+   _log_err(LOG_ERR, malloc failed.  Out of memory.);
+   return 1;
+ }
+ strcpy(tmpdir, argv[1]);
+   } else if (argc == 1) {
+ if ((tmpdir = malloc(strlen(SYSUSRTMP) + 1)) == NULL) {
+   _log_err(LOG_ERR, malloc failed.  Out of memory.);
+   return 1;
+ }
+ strcpy(tmpdir, SYSUSRTMP);
+   } else {
+ _log_err(LOG_ERR, Incorrect number of arguments.  Giving up.);
+ return 1;
+   }
+
+  /* At this point, tmpdir should contain a valid TMPDIR path. */
+  
   return make_tmp_directory();
 }
Index: pam_tmpdir.c
===
--- pam_tmpdir.c	(revision 1)
+++ pam_tmpdir.c	(working copy)
@@ -43,7 +43,10 @@
 
 #define SYSUSRTMP /tmp/user
 #define PAM_TMPDIR_HELPER /sbin/pam-tmpdir-helper
+#define TMPDIR_INTRO tmpdir=
 
+char *tmpdir = NULL;
+
 static int set_environment(pam_handle_t *pamh);
 static int make_tmp_directory(pam_handle_t *pamh);
 
@@ -85,16 +88,45 @@
 #define PAM_ENV_SILENT  0x04
 #define PAM_NEW_ENV_FILE0x10
 
+static int set_tmpdir(int argc, const char **argv) {
+
+  int i;
+
+  /* Don't set tmpdir if it's already been set. */
+ 

Re: Bug#201769: gradm doesn't build on ia64

2003-07-30 Thread Joe Wreschnig
On Tue, 2003-07-29 at 18:20, martin f krafft wrote:
 gradm doesn't support ia64 yet. What are the implications that
 result from this. I don't think we should remove it from the
 distribution, as it is a very important and handy tool...

The usual course of action, then, is to only list the architectures it
builds on, rather than 'any.

 Can we provide ia64 development space for the guys at grsecurity?

http://testdrive.hp.com/ has limited (actually, unlimited, which is the
problem) free IA64 porting/testing facilities.
-- 
Joe Wreschnig [EMAIL PROTECTED]


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


Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Jonathan Walther
On Tue, Jul 29, 2003 at 10:23:16PM -0500, Gunnar Wolf wrote:
Cheap hotels, cheap booze, cheap food, and cheap whores. :-)
More or less like here... In fact, if you look hard enough, maybe you
can get them cheaper here ;-)
Two questions; where is here for you, and when is the debconf
happening in Vancouver, Canada?  I am here now, but don't know where
I'll be in the next three years.
Jonathan
--
   It's not true unless it makes you laugh,   
but you don't understand it until it makes you weep.  

   -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Geek House Productions, Ltd.
 Providing Unix  Internet Contracting and Consulting,
 QA Testing, Technical Documentation, Systems Design  Implementation,
 General Programming, E-commerce, Web  Mail Services since 1998
Phone:   604-435-1205
Email:   [EMAIL PROTECTED]
Webpage: http://reactor-core.org
Address: 2459 E 41st Ave, Vancouver, BC  V5R2W2


pgpgAP2YgQ3pj.pgp
Description: PGP signature


Debconf 3 - the experience

2003-07-30 Thread Tollef Fog Heen

This is a first attempt at summarizing Debconf3 and Debcamp (not sure
whether that is Debcamp3, Debcamp0 or just [EMAIL PROTECTED] or
something :)  Please contribute to this thread to share your
experiences and give feedback.

First, a huge thanks to all those who helped out, without you, there
wouldn't have been a conference at all.  Some names: Andreas Schuldei,
for pestering me and getting all the sponsors lined up.  Petter
Reinholdtsen for arranging all the local technical stuff, so we
actually had a working network and so on, Morten Kjelkenes for
arranging food and lots of practical details.  Thanks to the people
manning the information desk and those guarding the gym hall, and of
course thanks to all the rest of you who helped out.  It was
appreciated and made Debconf3 a success.

The first people started arriving on Friday July 18th, the last left
on July 28th.  Debcamp was about double the size of what I expected,
most of the time we were 50-60 people there, happily hacking on
various projects and doing small workshops/discussions.  Among the
discussions were one about what role SPI (baby SPIs?  Rename it to the
Debian Foundation?) should have and another one on how to solve the CD
mirroring problem (which, for those of you who don't know, is that we
haven't gotten any official CDs which are newer than 2.2r7.  Which is
a bit old.)  Debian-installer bounced a huge step forward, a lot of
small issues were ironed out and some features were added (we have
working PCMCIA and USB now).

On Thursday, we had a barbecue.  Or rather, NUUG had a barbecue which
most of Debcamp attended.  It was very nice, both the food and the
drinks.

The conference itself started on Friday July 25th with an SPI
workshop, a FAI workshop and a keysigning party.  The keysigning party
was a bit disorganized, it seems like organizing 100 people at once is
quite hard.  Many were disappointed about particularly the ID step,
since it was fairly hard to actually see the face of the
participants.

Saturday was packed with talks about everything from CDBS (Common
Debian Build System) to the ftp-masters explaining how katie works to
Bdale talking about the relationship between Debian and HP.  In
addition, we had a dinner on Saturday which was quite good (though not
enough meat, due to a misunderstanding with the chef).

Sunday started a bit chaotic when a power station blew up and left the
building dark, not that most geeks noticed. ;)  A problem was that our
first speaker, Javier Fernández-Sanguino Peña was stuck on a subway,
which didn't move (since it's electric).  So we rearranged the
schedule somewhat.  We had talks about Skolelinux and how it uses d-i
and base-config to set up a custom Debian installation with services
preconfigured using just three questions, and about the renaming of
«Internal projects» or «Flavours» or «Sub-distributions» to «Custom
Debian», and what Custom Debian is.  Branden talked about subversion
and at least raised my interest in looking into it.

Debcamp was a lot bigger (in terms of people attending) and was even
more fun than I thought it was.  The gym was a great place to hang out
and drink beer/whisk{,e}y/tequila/cognac/... People complained about
Norway being a bit hot, which we, unfortunately, could do nothing
about.  I was dead tired when it was over, but I had gotten myself a
few new friends and gotten to know some of the people I've been
IRC-ing with for years face to face.  Quite fun.  Debcamp should be a
part of the conference as it was now, it was _very_ productive.

I'd like to thank all of you for coming.  I had a great time, and I
know I will be at Debconf 4.

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




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Gerfried Fuchs
* Christian Perrier [EMAIL PROTECTED] [2003-07-29 17:37]:
 Quoting Sebastian D.B. Krause ([EMAIL PROTECTED]):
  July in Vienna!  More power to you!
 
 Well, but then try not to be on the same date as LinuxTag 2005. :)

 If you would have read the paragraph that was quoted you would have
seen that a conflict with other events (like LinuxTag) is a no way :)

 But close to it would be a good idea also. Dunno whether LinuxTag
 happens on a week-end or during the week, but it would be ideal to
 have Debconf one week after LinuxTag (so that people attending LT
 could come at DebCamp in the between).

 Yes, that's what I thought about initially, too.  Joey?  When does
LT 2k5 happen to be? ,)

 And, I definitely vote for Vienna. Wonderful city which I could easily
 convince wife and kids to plan a visit to...which could excuse a
 week-end geeking for myself just in the neighborhood.. :-)

 Which brings me to one point: My wife plans to do handling of children
during the stay.  She is about to start studying paedagogy and had one
test for her A-levels in paedagogy too, so I am quite confident that she
will do the right thing[tm].

 Another good argument for Vienna : being central in Europe, it is
 close to the most eastern countries of the continent...

 Yes, thats one major reason, too. So the travel for people from eastern
europe won't be too expensive and long.

 Gerfried, I guess you're crazy but this is a great idea.

 Of course I'm crazy :)   I wonder if that should be a check in the NM
process.

 So long,
ALfie
-- 
SILVER SERVER  \\ \\ \
[EMAIL PROTECTED]   www.sil.at
 
   keep your backbone tidy




Re: Debian 10th birthday gear

2003-07-30 Thread Anand Kumria
On Tue, Jul 08, 2003 at 12:58:01PM -0500, Adam Heath wrote:
 On Tue, 8 Jul 2003, Anand Kumria wrote:
 
  Hi all,
 
  [ forward as required ]
 
  I'm planning on doing some 10th birthday gear. I'm intending to get some
  t-shirts made up but if people would like something else instead/as well
  then let me know. Naturally you'll probably find it simpler to get your
  own made up if you don't live in Sydney, Australia.
 
 Hat?
 
 Is there a debian patch that can be applied to hats, shirts, backpacks?
 

Actually I was thinking about a red fedora - but that has been done
already. It turns out I'll be probably be doing some bags with a
embroided Debian logo on the front and the birthday text (10 Projects
... 1 packages) on the back.

I've got about 25 people interested in the first kind (b235) and only
5 in the second kind (b247). Minimum order is typically 50.

URL: http://www.progsoc.org/~wildfire/debian/bags/deb-b235.png
URL: http://www.progsoc.org/~wildfire/debian/bags/deb-b247a.png

The likely price would be AUD$30 for b235 and AUD$25 for b247. A
shipment will be headed to HP via Bdale; so overseas orders aren't out
of the question.

I've also been thinking about getting some glassware made up. Pint
glasses (left) or Schooners (right) for AUD$9 and AUD$16 respectively 
with a Debian logo, the words 'Debian' and '10 Years' on them. I've had 
about 15 people interested in the Pint (minimum number is 72) and none 
in the Schooners.

URL: http://www.progsoc.org/~wildfire/debian/mugs.png

If you, or anyone else, is interested shipping those overseas could be
arranged (with the caveat that glass might break in transit). I need to
know by this Friday to get them in time for Aug 16th so if you'd like
any of this stuff, let me know. 

Regards,
Anand

-- 
 `` We are shaped by our thoughts, we become what we think.
 When the mind is pure, joy follows like a shadow that never
 leaves. '' -- Buddha, The Dhammapada




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Christian Perrier
Quoting Karsten Merker ([EMAIL PROTECTED]):

  But close to it would be a good idea also. Dunno whether LinuxTag
  happens on a week-end or during the week, but it would be ideal to
  have Debconf one week after LinuxTag (so that people attending LT
  could come at DebCamp in the between).
 
 LinuxTag is usually from Thursday to Sunday.

I thought it was 1 day long.. :-)

Anyway, that could give the following schedule :

Thursday-Sunday : LinuxTag at WhereverHeim, Germany
Sunday evening : folks travel to Debcamp in Vienna, Austria
Monday-Friday : Debcamp
Saturday, Sunday : Debconf





Re: Umfrage Internet Portal fuer behinderte Menschen

2003-07-30 Thread Alexander Neumann
Andreas Riechmann wrote:
 [German Spam]


I just wrote some abuse-mails, just FYI.

- Alexander


pgp03FKZQ3M6A.pgp
Description: PGP signature


ITP: libapache2-mod-auth-pam -- module for Apache2 which authenticate using PAM

2003-07-30 Thread Piotr Roszatycki
Package: wnpp
Version: unavailable; reported 2003-07-30
Severity: wishlist

* Package name: libapache2-mod-auth-pam
  Version : 1.1.1
* URL : http://pam.sourceforge.net/mod_auth_pam/
* License : Apache
  Description : module for Apache2 which authenticate using PAM

Source: libapache2-mod-auth-pam
Maintainer: Piotr Roszatycki [EMAIL PROTECTED]
Section: web
Priority: extra
Standards-Version: 3.6.0
Build-Depends: apache2-dev, yada (= 0.16)
Origin: debian

Package: libapache2-mod-auth-pam
Architecture: any
Depends: apache2-common (= 2.0.47-1), ${libapache2-mod-auth-pam:Depends}
Description: Module for Apache2 which authenticate using PAM
 mod_auth_pam implements authentication routines using PAM (Plugable
 Authentication Modules) for apache's authentication protocol.
 .
 This package provides the module for Apache 2.0 server.

Package: libapache2-mod-auth-sys-group
Architecture: any
Depends: apache2-common (= 2.0.47-1), ${libapache2-mod-auth-sys-group:Depends}
Description: Module for Apache2 which checks user against system group
 mod_auth_sys_group implements 'require group' functionality against system
 group database.
 .
 This package provides the module for Apache 2.0 server.


-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux ginger 2.4.20-pld-9pl2-1.70.2.880-test-pentiumiii #1 Fri Jul 25 
12:06:03 CEST 2003 i686
Locale: LANG=pl_PL, LC_CTYPE=pl_PL


-- 
Piotr Roszatycki, Netia Telekom S.A..''`.
mailto:[EMAIL PROTECTED]   : :' :
mailto:[EMAIL PROTECTED]   `. `'
 `-




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Josip Rodin
On Tue, Jul 29, 2003 at 07:50:20PM -0700, Jonathan Walther wrote:
 Please, let's decide based on facts rather than some hopelessly obsolete
 sympathy for the so-called Eastern Europe(TM).
 
 What sympathy?  The Slavic nations should form their own union, and
 Canada, the USA, Australia, and New Zealand should be admitted to the
 EU.

If you have to spout nonsense, fine, but can you at least not Cc: it to me?

-- 
 2. That which causes joy or happiness.




Re: DebBugs and Bugzilla synchronization

2003-07-30 Thread Andrew Lau
On Tue, Jul 29, 2003 at 12:02:10PM -0500, Branden Robinson wrote:
 On Tue, Jul 29, 2003 at 05:52:07PM +0200, Erich Schubert wrote:
  This is just a small helper, some real integration of debbugs with
  bugzilla would be cool, like debbugs subscribing to the upstream bug and
  automatically tagging the bug pending when fixed upstream?
 
 Probably not a good idea; Anthony Towns would just strip them off
 again.[1]

How about new BTS tag like nextver?

Cheers,
Andrew Netsnipe Lau

-- 
--
* Andrew Netsnipe Lau Computer Science  Student Rep, UNSW *
*   # apt-get into itDebian GNU/Linux Package Maintainer *
*netsnipe(+)debianplanet.org\0   alau(+)cse.unsw.edu.au\0*
* 1024D/2E8B68BD: 0B77 73D0 4F3B F286 63F1  9F4A 9B24 C07D 2E8B 68BD *
--


pgp9bJ44rG8vv.pgp
Description: PGP signature


Re: Debian 10th birthday gear

2003-07-30 Thread Steve Langasek
On Wed, Jul 30, 2003 at 05:40:26PM +1000, Anand Kumria wrote:

 If you, or anyone else, is interested shipping those overseas could be
 arranged (with the caveat that glass might break in transit). I need to
 know by this Friday to get them in time for Aug 16th so if you'd like
 any of this stuff, let me know. 

What kind of shipping costs would be tacked on for overseas orders?

-- 
Steve Langasek
postmodern programmer


pgpJf1vqvKkSL.pgp
Description: PGP signature


Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Luca - De Whiskey's - De Vitis
On Wed, Jul 30, 2003 at 09:22:57AM +0200, Christian Perrier wrote:
 Anyway, that could give the following schedule :
 
 Thursday-Sunday : LinuxTag at WhereverHeim, Germany
 Sunday evening : folks travel to Debcamp in Vienna, Austria
 Monday-Friday : Debcamp
 Saturday, Sunday : Debconf

Just my 2 cents:
DebConf should no more end on sunday afternoon/evening but on morning by lunch
time. This is for a simple reason (i sow at DebConf 3): people start leaving
in the afternoon to be home by evening/night. It's better to let it start a
day before than make it end with people so in hurry.

Because of this i could not attend Branden talk about SubVersion at DebConf 3:
how am i supposed to live on this? Some time, life is really unfair.

ciao,
-- 
Luca - De Whiskey's - De Vitis  | Elegant or ugly code as well
aliases: Luca ^De [A-Z][A-Za-z\-]*[iy]'\?s$ | as fine or rude sentences have
Luca, a wannabe ``Good guy''.   | something in common: they
local LANG=[EMAIL PROTECTED] | don't depend on the 
language.




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Jesus Climent
On Wed, Jul 30, 2003 at 09:22:57AM +0200, Christian Perrier wrote:
 Quoting Karsten Merker ([EMAIL PROTECTED]):
 
 Anyway, that could give the following schedule :
 
 Thursday-Sunday : LinuxTag at WhereverHeim, Germany
 Sunday evening : folks travel to Debcamp in Vienna, Austria
 Monday-Friday : Debcamp
 Saturday, Sunday : Debconf

What about 
debcamp : saturday - thursday
debconf : friday - sunday morning
?

Some of us do not want/cannot go to linuxtag, but we could be in vienna
already friday evening or saturday morning.

data

-- 
Jesus Climent | Unix SysAdm | Helsinki, Finland | pumuki.hispalinux.es
GPG: 1024D/86946D69 BB64 2339 1CAA 7064 E429  7E18 66FC 1D7F 8694 6D69
--
 Registered Linux user #66350 proudly using Debian Sid  Linux 2.4.21

You're just jealous because I'm a real freak and you have to wear a mask.
--Penguin (Batman Returns)




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Christian Perrier
Quoting Gerfried Fuchs ([EMAIL PROTECTED]):

  Which brings me to one point: My wife plans to do handling of children
 during the stay.  She is about to start studying paedagogy and had one
 test for her A-levels in paedagogy too, so I am quite confident that she
 will do the right thing[tm].

Including 17, 15 and 13-year old children ? :-). About the oldest
one, he will maybe already be a DD at this time.so he may attend
the conference...




Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread rmh
Package: wnpp
Version: unavailable; reported 2003-07-30
Severity: wishlist

* Package name: decss
  Version : 0.06
  Upstream Author : Mr. Bad of Pigdog Journal [EMAIL PROTECTED]
* URL : http://www.pigdog.org/decss/
* License : Artistic
  Description : utility for stripping CSS tags from an HTML page.

DeCSS is a utility for stripping Cascading Style Sheet (CSS) tags from an
HTML page. That's all it does. It has no relationship whatsoever to
encryption, copy protection, movies, software freedom, oppressive industry
cartels, Web site witch hunts, or any other bad things that could get you
in trouble.

There are license problems. The Artistic license is not present in their
distribution. I'll ask the author about this.

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux aragorn 2.2.25 #1 Fri Jun 20 19:28:33 EST 2003 i686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]





Re: DebConf in Vancouver (Re: debconf 2005 in Vienna, Austria)

2003-07-30 Thread Joe Drew
On Tue, 2003-07-29 at 22:09, Matt Zimmerman wrote:
 On Tue, Jul 29, 2003 at 07:22:00PM -0500, Gunnar Wolf wrote:
 
  Next Debconf is scheduled to be held in Vancouver, Canada.
 
 That would be excellent.  Who is organizing it?

Me, if it ends up happening in Vancouver.




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Steve Langasek
On Tue, Jul 29, 2003 at 08:36:15PM -0500, Gunnar Wolf wrote:
   I have coordinated some Free Software conferences in Mexico, and I know
   I can easily get some universities to host us. Mexico is quite a cheap
   country, so that would be a very good point for us. 

  Oh, by the sounds of how DebConf 3 went, I figured Tijuana would be the
  first choice... ;)

  Me, I'm not picky.  I'm in favor of conferences, wherever they're held.

 Tijuana?!

 Being curious... What would you expect to find in Tijuana?

 The cities along the border are the most ugly and insecure places in
 Mexico. I have only been to Nuevo Laredo once, and it scared me - And a
 friend from that area told me it is among the best :-/

Yes, Tijuana is a notorious destination for US college students seeking
to evade certain legal prohibitions in this country, chosen for its
proximity to the border.  Not a serious suggestion :) -- I'd much prefer
the conference to be held somewhere that would accomodate an
archaeological daytrip...

-- 
Steve Langasek
postmodern programmer


pgpbYFBwyAADW.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Chad Walstrom
On Wed, Jul 30, 2003 at 03:52:51PM +, [EMAIL PROTECTED] wrote:
 Package: wnpp
 Version: unavailable; reported 2003-07-30
 Severity: wishlist
 
 * Package name: decss

Like that won't be a confusing package name. ;-p

-- 
Chad Walstrom [EMAIL PROTECTED]   http://www.wookimus.net/
   assert(expired(knowledge)); /* core dump */




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Keith Dunwoody
Chad Walstrom wrote:
On Wed, Jul 30, 2003 at 03:52:51PM +, [EMAIL PROTECTED] wrote:
Package: wnpp
Version: unavailable; reported 2003-07-30
Severity: wishlist
* Package name: decss

Like that won't be a confusing package name. ;-p
If you read the website, that was the point ;)
-- Keith



Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Sam Hocevar
On Wed, Jul 30, 2003, Keith Dunwoody wrote:
 * Package name: decss
 
 Like that won't be a confusing package name. ;-p
 
 If you read the website, that was the point ;)

   And what is the point of confusing our users and cluttering the package/
executable namespace with a useless program that could be replaced with
a sed one-liner?

   I object to this ITP. Not very strongly, but I still object.

-- 
Sam.




Re: volunteering accomodations for Vancouver debconf

2003-07-30 Thread Amaya
Jonathan Walther dijo:
 Hi.  When is this debconf that will be held in Vancouver?  I can
 provide free accomodations and organic homebrew beer for up to two
 developers, preferably ones who are on a tight budget and could not
 otherwise make it here.

This rises two questions for me:

- Debcamp @ vancouver?
- Possibility of a gym arrangement similar to Oslo's?

I really enjoyed the fact of sharing accomodation. 
 

-- 
 .''`.A woman must be a cute, cuddly, naive little thing,
: :' :   tender, sweet, and stupid-- Adolf Hitler
`. `' Proudly running Debian GNU/Linux (Sid 2.4.20 Ext3)
  `-   www.amayita.com  www.malapecora.com  www.chicasduras.com




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Emile van Bergen
Hi,

On Wed, Jul 30, 2003 at 04:56:15PM +0200, Sam Hocevar wrote:

 On Wed, Jul 30, 2003, Keith Dunwoody wrote:
  * Package name: decss
  
  Like that won't be a confusing package name. ;-p
  
  If you read the website, that was the point ;)
 
And what is the point of confusing our users and cluttering the package/
 executable namespace with a useless program that could be replaced with
 a sed one-liner?

Cluttering the namespace? The name isn't very generic, I'd say. A
moderately complex sed one-liner is probably all that's needed, but to
have it in a file is nice.

If it's so easy to type in, I'd have expected it in your response.

I object to this ITP. Not very strongly, but I still object.

I think it's a wonderful idea to have a decss package in Debian. If
Debian cannot distribute the decss that allows Debian users to view DVD
movies (yet), then distributing this one is a good alternative, I'd say.

Cheers,


Emile.

-- 
E-Advies - Emile van Bergen   [EMAIL PROTECTED]  
tel. +31 (0)70 3906153   http://www.e-advies.nl




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Brian Nelson
Keith Dunwoody [EMAIL PROTECTED] writes:

 Chad Walstrom wrote:
 On Wed, Jul 30, 2003 at 03:52:51PM +, [EMAIL PROTECTED] wrote:

Package: wnpp
Version: unavailable; reported 2003-07-30
Severity: wishlist

* Package name: decss
 Like that won't be a confusing package name. ;-p


 If you read the website, that was the point ;)

The website also says:

I wrote a small utility called DeCSS that strips Cascading Style
Sheet tags from an HTML document. Yes, agreed, that's pretty much
USELESS, but what the fuck. Maybe somebody wants to do that.

Why the hell should this be packaged for Debian?

-- 
I'm sick of being the guy who eats insects and gets the funny syphilis.


pgpHPgXF6pLdc.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Joshua Kwan
On Wed, Jul 30, 2003 at 09:07:19AM -0700, Brian Nelson wrote:
 I wrote a small utility called DeCSS that strips Cascading Style
 Sheet tags from an HTML document. Yes, agreed, that's pretty much
 USELESS, but what the fuck. Maybe somebody wants to do that.
 
 Why the hell should this be packaged for Debian?

Obviously because the ITPer wishes to play a prank on the people who
unwittingly install it hoping to crack all of their DVDs.

I object strongly too... this is like having one of those 'joke' shells
in the archive :)

-Josh

-- 
Using words to describe magic is like using a screwdriver to cut roast beef.
-- Tom Robbins


pgpCCly2EV5b0.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Steve Langasek
On Wed, Jul 30, 2003 at 05:56:32PM +0200, Emile van Bergen wrote:

 I object to this ITP. Not very strongly, but I still object.

 I think it's a wonderful idea to have a decss package in Debian. If
 Debian cannot distribute the decss that allows Debian users to view DVD
 movies (yet), then distributing this one is a good alternative, I'd say.

You're clearly quite mad.  Regardless of whether this script is trivial
to implement, it's not something anyone should be encouraged to actually
*use*.  CSS is the *best* feature of the HTML4 standard.  Why would
anyone in their right mind wish to strip nearly all the logical
structure markup out of a document?

-- 
Steve Langasek
postmodern programmer


pgpacsyjKuKou.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Steve Langasek
On Wed, Jul 30, 2003 at 09:33:15AM -0700, Joshua Kwan wrote:

 I object strongly too... this is like having one of those 'joke' shells
 in the archive :)

Unfortunately, there's a strong historical precedent for the inclusion
of csh, making it difficult to get rid of...  The same thing could
happen if we let this package into the archive.

;)

-- 
Steve Langasek
postmodern programmer


pgp1EHOE7c4T4.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Jim Penny
On Wed, 30 Jul 2003 11:38:12 -0500
Steve Langasek [EMAIL PROTECTED] wrote:

 On Wed, Jul 30, 2003 at 05:56:32PM +0200, Emile van Bergen wrote:
 
  I object to this ITP. Not very strongly, but I still object.
 
  I think it's a wonderful idea to have a decss package in Debian. If
  Debian cannot distribute the decss that allows Debian users to view
  DVD movies (yet), then distributing this one is a good alternative,
  I'd say.
 
 You're clearly quite mad.  Regardless of whether this script is
 trivial to implement, it's not something anyone should be encouraged
 to actually*use*.  CSS is the *best* feature of the HTML4 standard. 
 Why would anyone in their right mind wish to strip nearly all the
 logical structure markup out of a document?

Uhh, it is to tweak the international copyright cartel, and the RIAA in
particular.  They have written cease and desist letters to anyone who
has a file names deCSS on their system.  This is an attempt to make such
a filename so common that these letters are pointless, and possibly
evidence of illegal activity.

Jim Penny




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Martin List-Petersen
On Wed, 2003-07-30 at 09:22, Christian Perrier wrote:
 Quoting Karsten Merker ([EMAIL PROTECTED]):
 
   But close to it would be a good idea also. Dunno whether LinuxTag
   happens on a week-end or during the week, but it would be ideal to
   have Debconf one week after LinuxTag (so that people attending LT
   could come at DebCamp in the between).
  
  LinuxTag is usually from Thursday to Sunday.
 
 I thought it was 1 day long.. :-)
 
 Anyway, that could give the following schedule :
 
 Thursday-Sunday : LinuxTag at WhereverHeim, Germany
 Sunday evening : folks travel to Debcamp in Vienna, Austria
 Monday-Friday : Debcamp
 Saturday, Sunday : Debconf

Something like that sounds sane. It gives even the possibility
organising a shuttle-bus or something likewise from LinuxTag to
Vienna, if we know, how many people would be interested and it probably
would cut the costs of travelling. (Unless people are in a hurry and
i've not checked the distance yet.)

Regards, 
Martin List-Petersen 
martin at list-petersen dot dk 
-- 
There is no delight the equal of dread. As long as it is somebody
else's. --Clive Barker


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


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Steve Langasek
On Wed, Jul 30, 2003 at 12:48:55PM -0400, Jim Penny wrote:
 On Wed, 30 Jul 2003 11:38:12 -0500
 Steve Langasek [EMAIL PROTECTED] wrote:
 
  On Wed, Jul 30, 2003 at 05:56:32PM +0200, Emile van Bergen wrote:
  
   I object to this ITP. Not very strongly, but I still object.
  
   I think it's a wonderful idea to have a decss package in Debian. If
   Debian cannot distribute the decss that allows Debian users to view
   DVD movies (yet), then distributing this one is a good alternative,
   I'd say.

  You're clearly quite mad.  Regardless of whether this script is
  trivial to implement, it's not something anyone should be encouraged
  to actually*use*.  CSS is the *best* feature of the HTML4 standard. 
  Why would anyone in their right mind wish to strip nearly all the
  logical structure markup out of a document?

 Uhh, it is to tweak the international copyright cartel, and the RIAA in
 particular.  They have written cease and desist letters to anyone who
 has a file names deCSS on their system.  This is an attempt to make such
 a filename so common that these letters are pointless, and possibly
 evidence of illegal activity.

If the intent is *only* as a political tool, I would agree that this
decss program achieves its aims fairly effectively; but it is in no way
a useful piece of *software*, which is what Emile seems to be arguing by
disagreeing that it's trivial to implement.  The question then is
whether we want to include programs in Debian which are useful only as
something other than software.

-- 
Steve Langasek
postmodern programmer


pgpWRpHDRkgPY.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Marc 'HE' Brockschmidt
Steve Langasek [EMAIL PROTECTED] writes:
 On Wed, Jul 30, 2003 at 05:56:32PM +0200, Emile van Bergen wrote:
 I object to this ITP. Not very strongly, but I still object.
 I think it's a wonderful idea to have a decss package in Debian. If
 Debian cannot distribute the decss that allows Debian users to view DVD
 movies (yet), then distributing this one is a good alternative, I'd say.
 You're clearly quite mad.  Regardless of whether this script is trivial
 to implement, it's not something anyone should be encouraged to actually
 *use*.  CSS is the *best* feature of the HTML4 standard.  Why would
 anyone in their right mind wish to strip nearly all the logical
 structure markup out of a document?

*cough*

CSS is *not* the logical structure markup of a html document. The main
feature of HTML4/XHTML and CSS(|2|3) is the separation of structure and
design (as you said): HTML should be used to structure content in a
usable way (ie one can extract the given information from the document
in every environment, with or without a CSS-capable display software)
while CSS is used to create a wonderful world for salesdroids.

Marc
-- 
$_=')(hBCdzVnS})3..0}_$;//::niam/s~=)]3[))_$(rellac(=_$({pam(esrever })e$.)4/3*
)e$(htgnel+23(rhc,u(kcapnu ,nioj ;|_- |/+9-0z-aZ-A|rt~=e$;_$=e${pam tnirp{y
V2ajFGabus} yV2ajFGa{gwmclBHIbus}gwmclBHI{yVGa09mbbus}yVGa09mb{hBCdzVnSbus';
s/\n//g;s/bus/\nbus/g;eval scalar reverse   # mailto:[EMAIL PROTECTED]




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Emile van Bergen
Hi,

On Wed, Jul 30, 2003 at 11:38:12AM -0500, Steve Langasek wrote:

 On Wed, Jul 30, 2003 at 05:56:32PM +0200, Emile van Bergen wrote:
 
  I object to this ITP. Not very strongly, but I still object.
 
  I think it's a wonderful idea to have a decss package in Debian. If
  Debian cannot distribute the decss that allows Debian users to view DVD
  movies (yet), then distributing this one is a good alternative, I'd say.
 
 You're clearly quite mad.  Regardless of whether this script is trivial
 to implement, it's not something anyone should be encouraged to actually
 *use*.  CSS is the *best* feature of the HTML4 standard.  Why would
 anyone in their right mind wish to strip nearly all the logical
 structure markup out of a document?

CSS is not the logical structure, it provides hints about the rendering
of the logical structure as given by the HTML tags.

Cheers,


Emile.

-- 
E-Advies - Emile van Bergen   [EMAIL PROTECTED]  
tel. +31 (0)70 3906153   http://www.e-advies.nl




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from

2003-07-30 Thread Christoph Berg
Re: Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from [Brian 
Nelson [EMAIL PROTECTED], Wed, Jul 30, 2003 at 09:07:19AM -0700, [EMAIL 
PROTECTED]]
 I wrote a small utility called DeCSS that strips Cascading Style
 Sheet tags from an HTML document. Yes, agreed, that's pretty much
 USELESS, but what the fuck. Maybe somebody wants to do that.
 
 Why the hell should this be packaged for Debian?

If you have an HTML page generated by M$ Word and want to extract only
the HTML part, you can either remove tons of useless CSS by hand or use
such a utility... However:

It is essentially a Perl-5-liner with glue code:
$content =~ s%link.*?rel=\stylesheet\.*?%%mg; # Strip stylesheet links
$content =~ s%style.*?/style%%mg; # Strip style blocks
$content =~ s%style=\.*?\%%mg; # Strip style attributes
$content =~ s%class=\.*?\%%mg; # Strip class attributes
$content =~ s%id=\.*?\%%mg; # Strip id attributes

Doesn't this remove strings looking like CSS from ordinary text, too?

Christoph
-- 
Christoph Berg [EMAIL PROTECTED], http://www.df7cb.de
Wohnheim D, 2405, Universität des Saarlandes, 0681/9657944


pgpMZITSUT41M.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Steve Langasek
On Wed, Jul 30, 2003 at 06:56:53PM +0200, Marc 'HE' Brockschmidt wrote:
 Steve Langasek [EMAIL PROTECTED] writes:
  On Wed, Jul 30, 2003 at 05:56:32PM +0200, Emile van Bergen wrote:
  I object to this ITP. Not very strongly, but I still object.
  I think it's a wonderful idea to have a decss package in Debian. If
  Debian cannot distribute the decss that allows Debian users to view DVD
  movies (yet), then distributing this one is a good alternative, I'd say.
  You're clearly quite mad.  Regardless of whether this script is trivial
  to implement, it's not something anyone should be encouraged to actually
  *use*.  CSS is the *best* feature of the HTML4 standard.  Why would
  anyone in their right mind wish to strip nearly all the logical
  structure markup out of a document?

 *cough*

 CSS is *not* the logical structure markup of a html document. The main
 feature of HTML4/XHTML and CSS(|2|3) is the separation of structure and
 design (as you said): HTML should be used to structure content in a
 usable way (ie one can extract the given information from the document
 in every environment, with or without a CSS-capable display software)
 while CSS is used to create a wonderful world for salesdroids.

In addition to removing style tags, the DeCSS script removes class and 
id attributes.  Therefore, strictly speaking, not everything removed is
CSS; and much of it is likely to be logical markup.

-- 
Steve Langasek
postmodern programmer


pgpOYoTWSElMF.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Tollef Fog Heen
* Sam Hocevar 

| On Wed, Jul 30, 2003, Keith Dunwoody wrote:
|  * Package name: decss
|  
|  Like that won't be a confusing package name. ;-p
|  
|  If you read the website, that was the point ;)
| 
|And what is the point of confusing our users and cluttering the package/
| executable namespace with a useless program that could be replaced with
| a sed one-liner?

oh?  what sed one-liner would that be?

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




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Tobias Wolter
On 2003-07-30T12:22:55-0500 (Wednesday), Steve Langasek wrote:

 In addition to removing style tags, the DeCSS script removes class and 
 id attributes.  Therefore, strictly speaking, not everything removed is
 CSS; and much of it is likely to be logical markup.

Removing the id attribute is downright stupid, because it serves as
what the name attribute was for HTML  XHTML in XHTML; i.e. for
usage with internal links and all that.

-towo
-- 
Words are the litmus paper of the minds. If you find yourself in the power of
someone who will use the word commence in cold blood, go somewhere else very
quickly. But if they say Enter, don't stop to pack.
- Terry Pratchett in «Small Gods»


pgpIntKFqNrEf.pgp
Description: PGP signature


Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Peter Makholm
Jim Penny [EMAIL PROTECTED] writes:

(Cc'ed the bug-report)

 Uhh, it is to tweak the international copyright cartel, and the RIAA in
 particular.  They have written cease and desist letters to anyone who
 has a file names deCSS on their system.

If this is the main reason to include it in Debian I would like to
voice my objections too (For what it is worth).

Given that the political statement is the reason for having this
package I belive it is unnecessary cluttering of the archive and added
extra confusion to our users. Our main priorities is Free Software and
our users and confusing them for a vauge political statement with no
real direct connection to free software is against our Social Contract.

Robert, I urge you to retract you ITP of this pacakge unless you can
come up with technical arguments for including the package.


I know the above is worded rather strong and I would probaly not go
any further if you decides to keep you ITP. One package doesn't in
itself lead to many problems but I would rather stop it before I
should fight a to strong precedence to keep useless political
statement out of Debian.

-- 
 Peter Makholm |   Why does the entertainment industry wants us to
 [EMAIL PROTECTED] |  believe that a society base on full surveillance
 http://hacking.dk |   is bad?
   |   Do they have something to hide?




Bug#203537: ITP: pyrex -- Compile native-code modules for Python from python-like syntax

2003-07-30 Thread Paul Brossier
Package: wnpp
Version: unavailable; reported 2003-07-30
Severity: wishlist

* Package name: pyrex
  Version : 0.8.1
  Upstream Author : Greg Ewing [EMAIL PROTECTED]
* URL : http://www.cosc.canterbury.ac.nz/~greg/python/Pyrex/
* License : GPL
  Description : Compile native-code modules for Python from python-like 
syntax

 Pyrex lets you write code that mixes Python and C data types any way
 you want, and compiles it into a C extension for Python.  You can get
 very large speedups for tasks that don't need all the dynamic features
 of python, with very small differences in syntax and much less hassle
 than writing your modules from scratch in C.  Pyrex was developed by
 Greg Ewing at the University of Canterbury, NZ

Notes : this package was first created by Peter Harris
[EMAIL PROTECTED], who has not enough time to maintain it.
i needed the last version, so i packaged it and made sure it was
linda and lintian clean. Packages are available here :
deb http://piem.homeip.net/~piem/debian binary/
deb-src http://piem.homeip.net/~piem/debian source/

-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux bastille 2.6.0-test1 #3 Thu Jul 17 15:05:42 BST 2003 i686
Locale: LANG=C, LC_CTYPE=C





Re: DebConf in Vancouver (Re: debconf 2005 in Vienna, Austria)

2003-07-30 Thread Andreas Schuldei
* Joe Drew ([EMAIL PROTECTED]) [030730 16:22]:
 On Tue, 2003-07-29 at 22:09, Matt Zimmerman wrote:
  On Tue, Jul 29, 2003 at 07:22:00PM -0500, Gunnar Wolf wrote:
  
   Next Debconf is scheduled to be held in Vancouver, Canada.
  
  That would be excellent.  Who is organizing it?
 
 Me, if it ends up happening in Vancouver.

the lesson learned from the debconfs so far is that a strong
local usergroup handling all the odd jobs and a good deal of the
other jobs in mandatory for a smooth event. You could see that in
bordeaux and oslo. You together with the two people that helped
you in Toronto were on the low side, i felt. This year were four
people more or less full time running the event, with 15 more
doing odd jobs here and there. Every day about
18h(gym)+3*12h(confernce)=66h of work in one or an other form
were spent.

On that note i heard from people in south america (with quite a
bit of local and national support) who wanted to hold next years
debconf/camp. This might be a good time for them to make their
preliminary plans heard.




Re: Debconf 3 - the experience

2003-07-30 Thread Thorsten Sauter
* Tollef Fog Heen [EMAIL PROTECTED] [2003-07-30 08:49]:
| Debcamp was a lot bigger (in terms of people attending) and was even
| more fun than I thought it was.  The gym was a great place to hang out
| and drink beer/whisk{,e}y/tequila/cognac/... People complained about
| Norway being a bit hot, which we, unfortunately, could do nothing
| about.  I was dead tired when it was over, but I had gotten myself a
| few new friends and gotten to know some of the people I've been
| IRC-ing with for years face to face.  Quite fun.  Debcamp should be a
| part of the conference as it was now, it was _very_ productive.

It was a very great meeting. It it was very funny to hanging aroung in
the uni or the gym. 
Thanks to all organisers!

| I'd like to thank all of you for coming.  I had a great time, and I
| know I will be at Debconf 4.

me too.


Bye
Thorsten

-- 
Thorsten Sauter
[EMAIL PROTECTED]

(Is there life after /sbin/halt -p?)



pgpOEptunU2F1.pgp
Description: PGP signature


Re: DebConf in Vancouver (Re: debconf 2005 in Vienna, Austria)

2003-07-30 Thread Joe Drew
On Wed, 2003-07-30 at 14:54, Andreas Schuldei wrote:
 On that note i heard from people in south america (with quite a
 bit of local and national support) who wanted to hold next years
 debconf/camp. This might be a good time for them to make their
 preliminary plans heard.

I've been waiting for them to speak up as they have said they would. I
am in favour of holding Debconf 4 in South America, but will organise it
in Vancouver if necessary.




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Joel Baker
On Wed, Jul 30, 2003 at 12:48:55PM -0400, Jim Penny wrote:
 On Wed, 30 Jul 2003 11:38:12 -0500
 Steve Langasek [EMAIL PROTECTED] wrote:
 
  On Wed, Jul 30, 2003 at 05:56:32PM +0200, Emile van Bergen wrote:
  
   I object to this ITP. Not very strongly, but I still object.
  
   I think it's a wonderful idea to have a decss package in Debian. If
   Debian cannot distribute the decss that allows Debian users to view
   DVD movies (yet), then distributing this one is a good alternative,
   I'd say.
  
  You're clearly quite mad.  Regardless of whether this script is
  trivial to implement, it's not something anyone should be encouraged
  to actually*use*.  CSS is the *best* feature of the HTML4 standard. 
  Why would anyone in their right mind wish to strip nearly all the
  logical structure markup out of a document?
 
 Uhh, it is to tweak the international copyright cartel, and the RIAA in
 particular.  They have written cease and desist letters to anyone who
 has a file names deCSS on their system.  This is an attempt to make such
 a filename so common that these letters are pointless, and possibly
 evidence of illegal activity.

It strikes me that even if Debian (or a Developer) wished to encourage such
a political statement, the vastly more efficient method would be to include
it in some other package to which it might have relevance (for example,
something that helped to generate CSS style information, or analyzed it,
or whatever). Just drop it into /usr/share/doc as an example program
(README.decss or somesuch), or as a helper app somewhere (though I'd be
careful of /usr/bin, frankly).

No new package, the (arguably useful) script goes into a place where it
is most likely to be seen by those to whom it actually *is* useful, and
everyone else doesn't have to try to figure out whether it's reasonable as
a standalone package, or is just a 'joke', or what.

(No, this isn't intended as how to get around doing an ITP, but rather,
as an alternative which assumes you can convince someone that the script
is, in fact, useful enough to put into an existing package to which it
might be applicable.)
-- 
Joel Baker [EMAIL PROTECTED]


pgpUFz9MND4T9.pgp
Description: PGP signature


Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Gunnar Wolf
Steve Langasek dijo [Wed, Jul 30, 2003 at 09:22:44AM -0500]:
 Yes, Tijuana is a notorious destination for US college students seeking
 to evade certain legal prohibitions in this country, chosen for its
 proximity to the border.  Not a serious suggestion :) -- I'd much prefer
 the conference to be held somewhere that would accomodate an
 archaeological daytrip...

Well, we have everything in The City! ;-)

...But I'm shutting up for at least one more year. 2006 is still far off.

Greetings,

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5630-9700 ext. 1366
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF


pgpBbFqInrHUw.pgp
Description: PGP signature


Re: More mailing from BTS?

2003-07-30 Thread Nikita V. Youshchenko


 On Tue, Jul 29, 2003 at 12:31:53AM +0400, Nikita V. Youshchenko wrote:
 Currently, BTS sends weekly two mails to debian-devel-announce - one
 about WNPP and one about RC bugs.
 
 I think it will help to improve Debian quality if several more lists will
 be broadcasted by BTS:
 
 I'm rather concerned that if you make the BTS send half a million things
 to debian-devel-announce then no-one will read them. The level of
 attention paid to the RC bug list has dropped significantly since I
 became a developer.

I don't think that no one. I will at least look through such lists :).
But maybe debian-qa is a better place than debian-devel-announce.

 I think it's better for interested parties to look at this information
 themselves:

IMHO having such mail in the mailbox is more likely to motivate people fix
bugs that having a knowledge that they can type cryptic URL to see what
they can do.

Recently I have to mail a package maintainer personally because a (trivial)
patch I submitted to fix segfault in his package was in BTS since November
and still not applied. I got a reply in several hours. I see this fact as a
proof that mail reminders are effective, at least sometimes and for some
people.




Re: More mailing from BTS?

2003-07-30 Thread Richard Braakman
On Wed, Jul 30, 2003 at 11:17:09PM +0400, Nikita V. Youshchenko wrote:
 Recently I have to mail a package maintainer personally because a (trivial)
 patch I submitted to fix segfault in his package was in BTS since November
 and still not applied. I got a reply in several hours. I see this fact as a
 proof that mail reminders are effective, at least sometimes and for some
 people.

But did you notice how your personal mail was much more effective than
the automated mail the BTS had sent about the bug?  People learn to
filter out automated mail :)

The bugscan lists seem much less effective now than when they started.
This might be because they're not eagerly being annotated anymore, though.

Richard Braakman




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Evan Prodromou
 SL == Steve Langasek [EMAIL PROTECTED] writes:

SL If the intent is *only* as a political tool, I would agree
SL that this decss program achieves its aims fairly effectively;
SL but it is in no way a useful piece of *software*, which is
SL what Emile seems to be arguing by disagreeing that it's
SL trivial to implement.  The question then is whether we want to
SL include programs in Debian which are useful only as something
SL other than software.

So, I'm the upstream author of Pigdog DeCSS
(http://www.pigdog.org/decss/), and I have received numerous emails
from people who actually use it for stripping cascading stylesheet
info from HTML pages.

So, unfortunately, it's not 100% useless.

~ESP

-- 
Evan Prodromou
[EMAIL PROTECTED]




Re: DebConf in Vancouver (Re: debconf 2005 in Vienna, Austria)

2003-07-30 Thread Michelle Ribeiro
Em 30 Jul 2003 15:09:51 -0400
Joe Drew [EMAIL PROTECTED] escreveu:

 I've been waiting for them to speak up as they have said they would. I
 am in favour of holding Debconf 4 in South America, but will organise it
 in Vancouver if necessary.

Yeah, we would like to host the next Debconf in Brazil, Porto Alegre, some days 
before the International Free Software Forum. Thus, devels can join us at this 
event, if they like.

Before make a official proposal, we are checking for free food and 
accommodations, plane tickets and some government support.  

As the dollar is 1,00 to 2.89 real (local money) this travel should be very 
cheap. :)


-- 
--
Michelle Ribeiro

Debian GNU/Linux - Your next Linux distribution
http://www.debian.org/ || http://www.spi-inc.org/




Re: Bug#203498: ITP: decss -- utility for stripping CSS tags from an HTML page.

2003-07-30 Thread Steve Langasek
On Wed, Jul 30, 2003 at 04:41:37PM -0400, Evan Prodromou wrote:
  SL == Steve Langasek [EMAIL PROTECTED] writes:

 SL If the intent is *only* as a political tool, I would agree
 SL that this decss program achieves its aims fairly effectively;
 SL but it is in no way a useful piece of *software*, which is
 SL what Emile seems to be arguing by disagreeing that it's
 SL trivial to implement.  The question then is whether we want to
 SL include programs in Debian which are useful only as something
 SL other than software.

 So, I'm the upstream author of Pigdog DeCSS
 (http://www.pigdog.org/decss/), and I have received numerous emails
 from people who actually use it for stripping cascading stylesheet
 info from HTML pages.

 So, unfortunately, it's not 100% useless.

For any stupid thing chosen at random, you'll find at least 5 people on
the Internet who thinks it's a good idea.  (Perhaps we could call this
the simian input phenomenon.)  As a result, the existence of users is
not in itself evidence that something is useful.

Since you're the upstream author, I'll ask:  have you ever actually used
this script yourself?  If so... why? :)  (And is the stripping of
class/id attributes a bug?)

-- 
Steve Langasek
postmodern programmer


pgpVszpx3ySYv.pgp
Description: PGP signature


package name change (moviemate - mediamate)

2003-07-30 Thread Jamin W. Collins
What is the preferred method of effecting a package rename and upgrade
between versions?

Movie Mate v0.9.2 is currently in the Debian archive.  Due to upstream
changes (added tracking for other media types), the name has been
changed to Media Mate.

Thus, Media Mate is the upgrade to Movie Mate.  This leaves me with the
question of how to properly change the package name and upgrade
installations of the older package.

In building the new Media Mate package, I've declared a Conflicts with
the moviemate package to effect moviemate's uninstall when the mediamate
package is installed.  However, this leaves the question of migrating
the moviemate's configuration to mediamate.  For this, I pull the
debconf answers for moviemate's questions and set them as the answers to
mediamate's questions (which are mostly the same), and set the _seen_
flag to true so the questions will not be asked (much like an upgrade
where the package name has not changed).

Since the package name has changed, the configuration and data files are
now stored in different locations.  So, I plan on moving the data files
to their new location.  But, what about the old configuration files, and
the old package's state in dpkg?  Should these be removed since the new
package is installed (more or less an upgrade) or should these be left
because the old package hasn't been purged and the new one has a
different name?  Also, moviemate has asks a question during install
about removing the DB on purge, with the answer stored in debconf's db.
During the upgrade would it be acceptable to clear this answer under
moviemate once it's been migrated to mediamate since the old DB is
upgraded and used by mediamate and a purge of moviemate would then
remove a database that's still in use?  Or, should mediamate copy the
old database and and leave it for moviemate to potentially purge?

Personally, I'm leaning toward having the new package manually remove
all the old packages configuration files and unsetting the DB purge
flag.  But, I can see how this may be seen as a bad thing.  Thus, I
figured I'd ask here for comments and suggestions on how to handle this
type of situation.

-- 
Jamin W. Collins

This is the typical unix way of doing things: you string together lots
of very specific tools to accomplish larger tasks. -- Vineet Kumar




Bug#203565: ITP: libclass-factory-util-perl -- Utility methods for factory classes

2003-07-30 Thread Jay Bonci
Package: wnpp
Version: unavailable; reported 2003-07-30
Severity: wishlist

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

* Package name: libclass-factory-util-perl
  Version : 1.4
  Upstream Author : Dave Rolsky [EMAIL PROTECTED]
* URL : 
http://search.cpan.org/author/DROLSKY/Class-Factory-Util-1.4/
* License : Perl (GPL/Artistic)
  Description : Utility methods for factory classes

Quick and easy utility for finding subclasses of the current class, 
useful in factory classes.

- -- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux starlite 2.4.19-686 #1 Mon Nov 18 23:59:03 EST 2002 i686
Locale: LANG=C, LC_CTYPE=C

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

iD8DBQE/KE3gZNh5D+C4st4RAnEZAJ9oF1teZfzageEi1uod6YjZhhyp0wCfRuK4
wZaeqDkp+hwcoqFUMjcszDQ=
=FD/J
-END PGP SIGNATURE-




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Amaya
Martin List-Petersen dijo:
 Something like that sounds sane. It gives even the possibility
 organising a shuttle-bus or something likewise from LinuxTag to
 Vienna

That sound so appealing that I would even consider also attendig
LinuxTag :-)

-- 
 .''`.A woman must be a cute, cuddly, naive little thing,
: :' :   tender, sweet, and stupid-- Adolf Hitler
`. `' Proudly running Debian GNU/Linux (Sid 2.4.20 Ext3)
  `-   www.amayita.com  www.malapecora.com  www.chicasduras.com




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Bernd Eckenfels
On Thu, Jul 31, 2003 at 02:12:08AM +0200, Amaya wrote:
 Martin List-Petersen dijo:
  Something like that sounds sane. It gives even the possibility
  organising a shuttle-bus or something likewise from LinuxTag to
  Vienna
 
 That sound so appealing that I would even consider also attendig
 LinuxTag :-)

Keep in mind, this is 730km and will take up to 8-12h

Wien is not exactly close to western europe.

Greetings
Bernd
-- 
  (OO)  -- [EMAIL PROTECTED] --
 ( .. )  [EMAIL PROTECTED],linux.de,debian.org} http://home.pages.de/~eckes/
  o--o *plush*  2048/93600EFD  [EMAIL PROTECTED]  +497257930613  BE5-RIPE
(OO)  When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl!




Re: debconf 2005 in Vienna, Austria

2003-07-30 Thread Artur R. Czechowski
On Thu, Jul 31, 2003 at 02:29:06AM +0200, Bernd Eckenfels wrote:
 On Thu, Jul 31, 2003 at 02:12:08AM +0200, Amaya wrote:
  Martin List-Petersen dijo:
   Something like that sounds sane. It gives even the possibility
   organising a shuttle-bus or something likewise from LinuxTag to
   Vienna
  That sound so appealing that I would even consider also attendig
  LinuxTag :-)
 Keep in mind, this is 730km and will take up to 8-12h
Never underestimate a prices of lowcost airlines ;)
I think it should not be significant more costly than other conveyances.
But travel time is significant shorter. It could be an interesting option.

Regards
Artur
-- 
Wrbelek Walerek mia may werbelek
Werbelek Walerka mia may felerek
Felerek werbelka naprawi Walerek
Wrbelek Walerek na werbelku swym gra




I would like to participate of the DDP project.

2003-07-30 Thread Rodrigo Tadeu Claro

Hi all,  would like to know as I can contribute for the project of
the DDP (Debian GNU/Linux Dictionary). I talked with the current
mantenedor Oliver and it it said me to send a message for this list. In
the truth, I am Brazilian and would like to contribute for the project
in our Portuguese language. The DDP would very help our community that
acts in the translations. It forgives will be off-topic, but I wait a
return!

I observed that link of the DDP in the URL of the project is without no
item. Does not exist there no word?

This is correct?

Regards,

-- 

  .''`.  Rodrigo Tadeu Claro (rlinux)
 : :'  : Debian-SP - irc.freenode.net - #debian-sp
 `. `'`  email - [EMAIL PROTECTED]
   `-www.rodrigoclaro.cjb.net - UIN168799234
 --
 Linux User Registered #301748  Debian-BR User #504
 GPGkey ID D33084F2  --  http://www.keyserver.net
 Duvidas sobre Debian? Visite o Rau-tu do CIPSGA:
http://rautu.cipsga.org.br


pgpyfVbAjLty7.pgp
Description: PGP signature


Re: package name change (moviemate - mediamate)

2003-07-30 Thread Sean 'Shaleh' Perry
On Wednesday 30 July 2003 15:56, Jamin W. Collins wrote:

 In building the new Media Mate package, I've declared a Conflicts with
 the moviemate package to effect moviemate's uninstall when the mediamate
 package is installed.  However, this leaves the question of migrating
 the moviemate's configuration to mediamate.  For this, I pull the
 debconf answers for moviemate's questions and set them as the answers to
 mediamate's questions (which are mostly the same), and set the _seen_
 flag to true so the questions will not be asked (much like an upgrade
 where the package name has not changed).


you should Conflict, Replace, and provide MovieMate.  This will ensure a 
smooth transition.  You instead (may) want to upload a package called 
moviemate which is a dummy package that depends on MediaMate.

Remember, if the user has MovieMate installed they will not get MediaMate 
without actually asking for it.

 Since the package name has changed, the configuration and data files are
 now stored in different locations.  So, I plan on moving the data files
 to their new location.  But, what about the old configuration files, and
 the old package's state in dpkg?  Should these be removed since the new
 package is installed (more or less an upgrade) or should these be left
 because the old package hasn't been purged and the new one has a
 different name?  Also, moviemate has asks a question during install
 about removing the DB on purge, with the answer stored in debconf's db.
 During the upgrade would it be acceptable to clear this answer under
 moviemate once it's been migrated to mediamate since the old DB is
 upgraded and used by mediamate and a purge of moviemate would then
 remove a database that's still in use?  Or, should mediamate copy the
 old database and and leave it for moviemate to potentially purge?


how much work is involved in hiding this from the user?  In general you should 
try to just make things work.  The packaging details are something our users 
should not need to know about.  Remember from their perspective nothing 
changed.

if you can scarf in the old db and make the upgrade just work, that is the 
preferred approach.  Of course that may prove to be too complicated or you 
may just not have enough time.




Re: package name change (moviemate - mediamate)

2003-07-30 Thread Jamin W. Collins
On Wed, Jul 30, 2003 at 06:17:17PM -0700, Sean 'Shaleh' Perry wrote:

 you should Conflict, Replace, and provide MovieMate.  This will ensure
 a smooth transition.  You instead (may) want to upload a package
 called moviemate which is a dummy package that depends on MediaMate.
 
 Remember, if the user has MovieMate installed they will not get
 MediaMate without actually asking for it.

I was thinking about the dummy package approach, but then the dummy
package would just hang around indefinitely, right?

 how much work is involved in hiding this from the user?  In general
 you should try to just make things work.  The packaging details are
 something our users should not need to know about.  Remember from
 their perspective nothing changed.

Not a whole lot, I've got the answers being migrated already.

 if you can scarf in the old db and make the upgrade just work, that is
 the preferred approach.  Of course that may prove to be too
 complicated or you may just not have enough time.

The old DB works fine after the upgrade against it.  The questions are.
Whether removing the configuration files (/etc/moviemate) is a taboo,
even though the configuration is migrated (/etc/mediamate). And, whether
blanking the answer to the DB purge from moviemate's install is seen as
a problem.

I think if I do the above two items I can provide a very smooth
transition from moviemate to mediamate that a user really won't notice
(as far as the backend changes).  I'd just like to know if anything I'm
planning is frowned upon or can be done better.

-- 
Jamin W. Collins

Linux is not The Answer. Yes is the answer. Linux is The Question. - Neo




Re: package name change (moviemate - mediamate)

2003-07-30 Thread Aaron M. Ucko
Sean 'Shaleh' Perry [EMAIL PROTECTED] writes:

 you should Conflict, Replace, and provide MovieMate.  This will ensure a 
 smooth transition.  You instead (may) want to upload a package called 
 moviemate which is a dummy package that depends on MediaMate.

I'd say as well as rather than instead, though of course you'll
need to limit the conflict to pre-transition versions so that the
dummy package is actually installable

Otherwise, yeah, just make the change as smooth and transparent as you
can.

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
Finger [EMAIL PROTECTED] (NOT a valid e-mail address) for more info.




Re: package name change (moviemate - mediamate)

2003-07-30 Thread Aaron M. Ucko
Jamin W. Collins [EMAIL PROTECTED] writes:

 I was thinking about the dummy package approach, but then the dummy
 package would just hang around indefinitely, right?

Well, until the user removes it; the description usually hints at
that, and deborphan will also optionally point out dummy packages you
can safely remove.  At any rate, having a dummy package installed
isn't a big deal; they aren't exactly huge.

-- 
Aaron M. Ucko, KB1CJC (amu at alum.mit.edu, ucko at debian.org)
Finger [EMAIL PROTECTED] (NOT a valid e-mail address) for more info.




Re: May packages rm -rf subdirectories of /etc/ ?

2003-07-30 Thread Chris Cheney
On Mon, Jul 21, 2003 at 07:06:17AM +0200, Thomas Hood wrote:
 Recently I purged a package foo which had a configuration directory
 /etc/foo/.  The package contained a number of conffiles in /etc/foo/ .
 I backed up some of these before the purge by copying them to other
 names, but leaving them in /etc/foo/ .  To my surprise, the package
 postrm did a rm -rf on the whole /etc/foo/ directory, thus 
 deleting my backups.
 
 Looking at the postrms of other packages I have installed, I see that
 a handful of them do likewise.
 
 Now, on one hand I can see that given the current state of Debian's
 packaging tools, removing an entire directory can be the convenient
 thing to do.  If a package maintains a bunch of configuration files
 (not conffiles -- dpkg knows how to delete those) in the directory
 then rm -rf is sure to remove them all.
 
 However, rm -rf is always a dangerous command to use.  Configuration
 directories are often shared; add-on packages may store things in the
 configuration directories of the packages to which they add things on,
 especially if the latter uses run-parts to run hook scripts.  Sometimes
 one package Replaces another and hijacks the latter's configuration
 files; but these will be improperly deleted if the admin later purges
 the original package.  And admins may store things in /etc/
 subdirectories.  I think it would be better if packages removed only
 files that they have created.
 
 One may want to treat /etc/foo/ differently from, e.g., /var/lib/foo/ .
 I would never store anything additional in /var/lib/foo/ because it
 wouldn't surprise me if a package did rm -rf /var/lib/foo/ on purge.
 
 I know of no policy section that pronounces on this.  Am I overlooking
 one?
 
 If not, what do think of this?  When is it OK for a package to
 rm -rf /etc/foo/ on purge?

rm -rf /etc/foo really shouldn't be needed except in the cruft related
cases other people have brought up, which just as easily could be done
by removing with wildcards for particular types of tempfiles.

There is one glaring problem though... dpkg does not remove empty dirs
under /etc on purge.  This is a long standing bug in dpkg. [0]

Personally I just leave the /etc dirs my packages create on purge, its a
f*cking bug in dpkg and I don't feel like trying to hack around it.

Chris

[0] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=58878 (24 Feb 2000)




Re: May packages rm -rf subdirectories of /etc/ ?

2003-07-30 Thread Bernd Eckenfels
On Wed, Jul 30, 2003 at 10:27:34PM -0500, Chris Cheney wrote:
 There is one glaring problem though... dpkg does not remove empty dirs
 under /etc on purge.  This is a long standing bug in dpkg. [0]

well, even if it would do, most likely you have stuff like editor or hand
mady backup files (*~, *.old) or packaging related stuff (*.dpkg-new) which
might need removing, before the dir can be emoved.

Anyway, if you ust want to mae sure that the empty dir is removed, you can
do rmdir

Greetings
Bernd
-- 
  (OO)  -- [EMAIL PROTECTED] --
 ( .. )  [EMAIL PROTECTED],linux.de,debian.org} http://home.pages.de/~eckes/
  o--o *plush*  2048/93600EFD  [EMAIL PROTECTED]  +497257930613  BE5-RIPE
(OO)  When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl!




Accepted kdelibs 4:3.1.3-1 (i386 source all)

2003-07-30 Thread Christopher L Cheney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 29 Jul 2003 20:00:00 -0500
Source: kdelibs
Binary: kdelibs4 kdelibs-bin kdelibs kdelibs4-doc kdelibs-data kdelibs4-dev
Architecture: source i386 all
Version: 4:3.1.3-1
Distribution: unstable
Urgency: low
Maintainer: Christopher L Cheney [EMAIL PROTECTED]
Changed-By: Christopher L Cheney [EMAIL PROTECTED]
Description: 
 kdelibs- KDE core libraries metapackage
 kdelibs-bin - KDE core binaries
 kdelibs-data - KDE core shared data
 kdelibs4   - KDE core libraries
 kdelibs4-dev - KDE core libraries (development files)
 kdelibs4-doc - KDE core library documentation
Changes: 
 kdelibs (4:3.1.3-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 2dc73379ca922c56349087fbb95784d0 997 libs optional kdelibs_3.1.3-1.dsc
 4cfa7c0633f3d4fe5df101fdc4303d21 10740790 libs optional kdelibs_3.1.3.orig.tar.gz
 e3fc425712f13dbab57cc2c4ce41e1d2 1025870 libs optional kdelibs_3.1.3-1.diff.gz
 38578a13c6e14f2d4342d125393a98dd 14648 kde optional kdelibs_3.1.3-1_all.deb
 f071adfb5c32cd66ee2a1f1602f431c1 5060330 libs optional kdelibs-data_3.1.3-1_all.deb
 32d006f107bfe60860040261fcd68e4d 9102566 doc optional kdelibs4-doc_3.1.3-1_all.deb
 9afa993f1c29539563d9dc252ca2f0ac 575374 libs optional kdelibs-bin_3.1.3-1_i386.deb
 dab9fdf01eab7000c87ff9e41a13c00e 5966138 libs optional kdelibs4_3.1.3-1_i386.deb
 a729911cdb59c8fe4ff5940afc0e1480 944438 libdevel optional 
kdelibs4-dev_3.1.3-1_i386.deb

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

iD8DBQE/J1RT0QZas444SvIRArUzAKDAVmzh4GOoCYUhto42TBeq1ywASgCgtwCk
3xWS8M3lE3tJFP/65rOLb28=
=tjGR
-END PGP SIGNATURE-


Accepted:
kdelibs-bin_3.1.3-1_i386.deb
  to pool/main/k/kdelibs/kdelibs-bin_3.1.3-1_i386.deb
kdelibs-data_3.1.3-1_all.deb
  to pool/main/k/kdelibs/kdelibs-data_3.1.3-1_all.deb
kdelibs4-dev_3.1.3-1_i386.deb
  to pool/main/k/kdelibs/kdelibs4-dev_3.1.3-1_i386.deb
kdelibs4-doc_3.1.3-1_all.deb
  to pool/main/k/kdelibs/kdelibs4-doc_3.1.3-1_all.deb
kdelibs4_3.1.3-1_i386.deb
  to pool/main/k/kdelibs/kdelibs4_3.1.3-1_i386.deb
kdelibs_3.1.3-1.diff.gz
  to pool/main/k/kdelibs/kdelibs_3.1.3-1.diff.gz
kdelibs_3.1.3-1.dsc
  to pool/main/k/kdelibs/kdelibs_3.1.3-1.dsc
kdelibs_3.1.3-1_all.deb
  to pool/main/k/kdelibs/kdelibs_3.1.3-1_all.deb
kdelibs_3.1.3.orig.tar.gz
  to pool/main/k/kdelibs/kdelibs_3.1.3.orig.tar.gz


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



Accepted balsa 2.0.13-1 (i386 source)

2003-07-30 Thread Andrew Lau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 29 Jul 2003 01:04:10 +1000
Source: balsa
Binary: balsa
Architecture: source i386
Version: 2.0.13-1
Distribution: unstable
Urgency: low
Maintainer: Andrew Lau [EMAIL PROTECTED]
Changed-By: Andrew Lau [EMAIL PROTECTED]
Description: 
 balsa  - An e-mail client for GNOME 2
Closes: 193994 194673 200426 201092 201124 202461 202580
Changes: 
 balsa (2.0.13-1) unstable; urgency=low
 .
   * New upstream release.
 - Window Manager icon now displaying.
   (closes: #193994)
 - Config not found warning removed.
   (closes: #194673)
 - Saves and restores printing settings between sessions.
   (closes: #200426)
 - README now notes that GnuPG passphrase with national characters must be
   UTF-8 encoded.
   (closes: #201092)
 - Fixed password prompt crash on POP3 startup check.
   (closes: #201124)
 - External editor now selected in GNOME's Control Center.
   (closes: #202461)
 - Timestamps now default to user's locale.
   (closes: #202580)
   * Debian Standards-Version: 3.6.0
Files: 
 c9122f3e4b5c920a2d1f2e6b27929c25 787 gnome optional balsa_2.0.13-1.dsc
 cda01ce97f29b2874725403f6f0773fe 4246146 gnome optional balsa_2.0.13.orig.tar.gz
 3a4b0c7b68c9d69cb918a1c04b847a98 4889 gnome optional balsa_2.0.13-1.diff.gz
 b6b0dfed273dde373d93fb6079d91ac1 1915152 gnome optional balsa_2.0.13-1_i386.deb

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

iD8DBQE/J1YdVNQJTPEhm4QRAherAJ0Sk1JYmcUdV0fiiXFfnE/mn1kxkQCeLdGa
Z8sOIeAJLEovDkI0X7rszzc=
=Rdli
-END PGP SIGNATURE-


Accepted:
balsa_2.0.13-1.diff.gz
  to pool/main/b/balsa/balsa_2.0.13-1.diff.gz
balsa_2.0.13-1.dsc
  to pool/main/b/balsa/balsa_2.0.13-1.dsc
balsa_2.0.13-1_i386.deb
  to pool/main/b/balsa/balsa_2.0.13-1_i386.deb
balsa_2.0.13.orig.tar.gz
  to pool/main/b/balsa/balsa_2.0.13.orig.tar.gz


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



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

2003-07-30 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 08:12:28 +0200
Source: python2.3
Binary: python2.3-doc idle-python2.3 python2.3-dev python-elisp python2.3-examples 
python2.3-mpz python2.3 python2.3-gdbm python2.3-tk
Architecture: source i386 all
Version: 2.3-1
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 idle-python2.3 - An IDE for Python (v2.3) using Tkinter
 python-elisp - Emacs-lisp python-mode for the Python language (v2.3)
 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)
Changes: 
 python2.3 (2.3-1) unstable; urgency=low
 .
   * Python 2.3 final release.
Files: 
 58a7cefc4052a2747e276e62e7dc25d8 1132 python optional python2.3_2.3-1.dsc
 ae6d23a3e6ab2a934d932ee21db0d311 8439441 python optional python2.3_2.3.orig.tar.gz
 b4e0bb5e637c9ca6b0b302abee7a4388 38505 python optional python2.3_2.3-1.diff.gz
 923b22c9abe3afc8d698ceccc599fad4 504548 python optional 
python2.3-examples_2.3-1_all.deb
 b7b2a3f21de8634b2945f36a3fba7636 5 python optional python-elisp_2.3-1_all.deb
 31394bb121c8750f151773c45142031c 222420 python optional idle-python2.3_2.3-1_all.deb
 a10f3f89412d14807342d410de478c97 2781064 doc optional python2.3-doc_2.3-1_all.deb
 d7cb216a409691f79658a9333d47cd42 2656618 python optional python2.3_2.3-1_i386.deb
 b8fe984739469f3e34089e5a271cad62 98338 python optional python2.3-tk_2.3-1_i386.deb
 d18364a3fc79e1929d24065fad393499 18502 python optional python2.3-gdbm_2.3-1_i386.deb
 e60794066f33e34698a716bc6dc10cb6 22458 python optional python2.3-mpz_2.3-1_i386.deb
 05a9c9fe40f0b95303c22857d4675200 1389864 python optional python2.3-dev_2.3-1_i386.deb

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

iD8DBQE/J2pZStlRaw+TLJwRApJJAKCZTWAO47Cp7YBAVKoJK6fLTfeM4ACfUAjA
LzWWH9o8upPGSJ8l+zarAg4=
=ZHBf
-END PGP SIGNATURE-


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


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



Accepted console-tools 1:0.2.3dbs-40 (i386 source all)

2003-07-30 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 29 Jul 2003 20:52:13 +0100
Source: console-tools
Binary: kbd-compat console-tools-dev libconsole console-tools
Architecture: source all i386
Version: 1:0.2.3dbs-40
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry [EMAIL PROTECTED]
Changed-By: Alastair McKinstry [EMAIL PROTECTED]
Description: 
 console-tools - Linux console and font utilities
 console-tools-dev - Development files for Linux console and font manipulation
 kbd-compat - Wrappers around console-tools for backward compatibility with `kb
 libconsole - Shared libraries for Linux console and font manipulation
Closes: 160677 202290 202860
Changes: 
 console-tools (1:0.2.3dbs-40) unstable; urgency=low
 .
   * Changed maintainer email to [EMAIL PROTECTED]
   * Move to Standards-Version 3.6.0; no change required.
   * Don't do 'rm -rf /etc/console-tools on' purge. Closes: #202860.
   * Remove misleading example from openvt manpage. Closes: #202290.
   * Make writevt --text work. Closes: #160677.
Files: 
 3ad043ef5e39fd583777e77e7fb25ef4 640 base important console-tools_0.2.3dbs-40.dsc
 636698d83e603802dfde65e6dcb45e09 913009 base important 
console-tools_0.2.3dbs-40.tar.gz
 3f50c8486071d70717ce01902e95641b 39680 utils optional kbd-compat_0.2.3dbs-40_all.deb
 5a6600bcf3a526f6c69873f133f8ab9d 291874 utils important 
console-tools_0.2.3dbs-40_i386.deb
 5c0bd234e6d32062d66feb6ab5b5bef2 105632 libs important libconsole_0.2.3dbs-40_i386.deb
 afdf4f06113328c3aa8338eb8458edaa 77792 devel optional 
console-tools-dev_0.2.3dbs-40_i386.deb

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

iD8DBQE/J3RS+o43kJBROPQRAj8QAKCXU1Pm10XYvzLa8KnEhVuwMZk0nQCgrpla
ayRjyyiBxRpnK1kmuFZO/sA=
=7J0G
-END PGP SIGNATURE-


Accepted:
console-tools-dev_0.2.3dbs-40_i386.deb
  to pool/main/c/console-tools/console-tools-dev_0.2.3dbs-40_i386.deb
console-tools_0.2.3dbs-40.dsc
  to pool/main/c/console-tools/console-tools_0.2.3dbs-40.dsc
console-tools_0.2.3dbs-40.tar.gz
  to pool/main/c/console-tools/console-tools_0.2.3dbs-40.tar.gz
console-tools_0.2.3dbs-40_i386.deb
  to pool/main/c/console-tools/console-tools_0.2.3dbs-40_i386.deb
kbd-compat_0.2.3dbs-40_all.deb
  to pool/main/c/console-tools/kbd-compat_0.2.3dbs-40_all.deb
libconsole_0.2.3dbs-40_i386.deb
  to pool/main/c/console-tools/libconsole_0.2.3dbs-40_i386.deb


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



Accepted manpages-pl 20030729-1 (all source)

2003-07-30 Thread Robert Luberda
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 29 Jul 2003 11:15:08 +0200
Source: manpages-pl
Binary: manpages-pl manpages-pl-dev
Architecture: source all
Version: 20030729-1
Distribution: unstable
Urgency: low
Maintainer: Robert Luberda [EMAIL PROTECTED]
Changed-By: Robert Luberda [EMAIL PROTECTED]
Description: 
 manpages-pl - Polish man pages
 manpages-pl-dev - Polish man pages for developers
Closes: 193404
Changes: 
 manpages-pl (20030729-1) unstable; urgency=low
 .
   * New upstream version.
   * Don't install man.config(5) and suauth(5) (closes: #193404).
   * Install ncurses(3x) as ncurses(3ncurses).
   * Install openssl(1) as openssl(1ssl).
   * Link environ(5) to environ(7).
   * Standards-Version: 3.6.0 (no changes).
Files: 
 a77225cfdef0439d11ee8fbf869641c6 609 doc optional manpages-pl_20030729-1.dsc
 80b8d7dc693da8b9b1d832da58658e9d 2775716 doc optional manpages-pl_20030729.orig.tar.gz
 d23c070dd4d816b5218ef936f5b0d450 20 doc optional manpages-pl_20030729-1.diff.gz
 1c040b97d3240afeb499a552cad646dd 615952 doc optional 
manpages-pl-dev_20030729-1_all.deb
 63aa640754f922f23bd118af9afee0ea 2118224 doc optional manpages-pl_20030729-1_all.deb

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

iD8DBQE/JqipThh1cJ0wnDsRApBiAJ9gERJ29DWWyYYDxJUL9uBWKExNnQCghakL
fQZ3lro9Oe8S5IMyV9To5ZE=
=8IgV
-END PGP SIGNATURE-


Accepted:
manpages-pl-dev_20030729-1_all.deb
  to pool/main/m/manpages-pl/manpages-pl-dev_20030729-1_all.deb
manpages-pl_20030729-1.diff.gz
  to pool/main/m/manpages-pl/manpages-pl_20030729-1.diff.gz
manpages-pl_20030729-1.dsc
  to pool/main/m/manpages-pl/manpages-pl_20030729-1.dsc
manpages-pl_20030729-1_all.deb
  to pool/main/m/manpages-pl/manpages-pl_20030729-1_all.deb
manpages-pl_20030729.orig.tar.gz
  to pool/main/m/manpages-pl/manpages-pl_20030729.orig.tar.gz


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



Accepted lineakd 0.5.99.cvs20030726-4 (i386 source)

2003-07-30 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 10:19:37 +0200
Source: lineakd
Binary: lineakd
Architecture: source i386
Version: 0.5.99.cvs20030726-4
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 lineakd- LinEAK - GUI configurable support for multimedia keyboards
Closes: 203343
Changes: 
 lineakd (0.5.99.cvs20030726-4) unstable; urgency=low
 .
   * Updated /usr/share/doc/lineakd/README.Debian (closes: bug#203343).
   * Also provide README and TODO in /usr/share/doc/lineakd.
Files: 
 043d7bc8f5c71d1eeb384009b27b5eaf 653 x11 optional lineakd_0.5.99.cvs20030726-4.dsc
 4f3c7e8439d97106ed8f9b4d9c695c80 132231 x11 optional 
lineakd_0.5.99.cvs20030726-4.diff.gz
 97a64032c662b2546f61dd02894db9fc 69502 x11 optional 
lineakd_0.5.99.cvs20030726-4_i386.deb

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

iD8DBQE/J4FKw3ao2vG823MRAp0AAJ0QBDXtdD/Spz1K3h85u3NNM0v6EgCeNxjY
SYTpZ8EU6+TBT0NRH6+RlPI=
=mQ3O
-END PGP SIGNATURE-


Accepted:
lineakd_0.5.99.cvs20030726-4.diff.gz
  to pool/main/l/lineakd/lineakd_0.5.99.cvs20030726-4.diff.gz
lineakd_0.5.99.cvs20030726-4.dsc
  to pool/main/l/lineakd/lineakd_0.5.99.cvs20030726-4.dsc
lineakd_0.5.99.cvs20030726-4_i386.deb
  to pool/main/l/lineakd/lineakd_0.5.99.cvs20030726-4_i386.deb


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



Accepted gksu 0.9.14 (i386 source)

2003-07-30 Thread Gustavo Noronha Silva
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 29 Jul 2003 19:24:49 -0300
Source: gksu
Binary: gksu
Architecture: source i386
Version: 0.9.14
Distribution: unstable
Urgency: low
Maintainer: Gustavo Noronha Silva [EMAIL PROTECTED]
Changed-By: Gustavo Noronha Silva [EMAIL PROTECTED]
Description: 
 gksu   - Gtk+ Frontend to su
Closes: 203386 203387
Changes: 
 gksu (0.9.14) unstable; urgency=low
 .
   * New release
   - fixes problems with non-bash shells (Closes: #203386)
   - the -u for root problem seemed to be related to the
 non-bash shells stuff, I cannot reproduce it anymore
 (Closes: #203387)
Files: 
 2e04981a71d44672c68f2e29cdfb2c38 545 admin optional gksu_0.9.14.dsc
 9ca775b20a2fe5e14334d6f5baeb95b8 370262 admin optional gksu_0.9.14.tar.gz
 ba8f9a400dca4be7e178d98297b9380a 42206 admin optional gksu_0.9.14_i386.deb

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

iD8DBQE/J4lqt1anjIgqbEsRAlZmAJ9cbjfjntRPmxPMr4AVZHU9WM/WkwCfZX6x
qDnAxNsARVAS8UHQLK14KnY=
=APm1
-END PGP SIGNATURE-


Accepted:
gksu_0.9.14.dsc
  to pool/main/g/gksu/gksu_0.9.14.dsc
gksu_0.9.14.tar.gz
  to pool/main/g/gksu/gksu_0.9.14.tar.gz
gksu_0.9.14_i386.deb
  to pool/main/g/gksu/gksu_0.9.14_i386.deb


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



Accepted puredata 0.37.cvs-2 (i386 source)

2003-07-30 Thread Debian/GNU
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 10:41:01 +0200
Source: puredata
Binary: puredata
Architecture: source i386
Version: 0.37.cvs-2
Distribution: unstable
Urgency: low
Maintainer: Guenter Geiger (Debian/GNU) [EMAIL PROTECTED]
Changed-By: Guenter Geiger (Debian/GNU) [EMAIL PROTECTED]
Description: 
 puredata   - realtime computer music and graphics system
Closes: 203416
Changes: 
 puredata (0.37.cvs-2) unstable; urgency=low
 .
   * fixed build of extra -fPIC (closes: #203416)
   * changed t_int to long in m_pd.h
Files: 
 f89282eddd635fbf09294eaedf4d5321 631 sound optional puredata_0.37.cvs-2.dsc
 00cd90c82d8dab85fcb1dc837bb4f1c0 49836 sound optional puredata_0.37.cvs-2.diff.gz
 768adce342400afaddbad8568588c11f 1400780 sound optional puredata_0.37.cvs-2_i386.deb

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

iD8DBQE/J42f1pbKhmC2uVgRAtxCAJ9TDKgA2ax3o9J8T+8M1EtRGG9+SACfaZnN
a0Qx5GUeb1CZf3QaTfT21lc=
=dJUw
-END PGP SIGNATURE-


Accepted:
puredata_0.37.cvs-2.diff.gz
  to pool/main/p/puredata/puredata_0.37.cvs-2.diff.gz
puredata_0.37.cvs-2.dsc
  to pool/main/p/puredata/puredata_0.37.cvs-2.dsc
puredata_0.37.cvs-2_i386.deb
  to pool/main/p/puredata/puredata_0.37.cvs-2_i386.deb


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



Accepted openslp 1.0.11-4 (i386 source all)

2003-07-30 Thread Ganesan Rajagopal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 16:20:58 +0530
Source: openslp
Binary: libslp-dev slptool libslp1 openslp-doc slpd
Architecture: source i386 all
Version: 1.0.11-4
Distribution: unstable
Urgency: low
Maintainer: Ganesan Rajagopal [EMAIL PROTECTED]
Changed-By: Ganesan Rajagopal [EMAIL PROTECTED]
Description: 
 libslp-dev - OpenSLP development libraries
 libslp1- OpenSLP libraries
 openslp-doc - OpenSLP documentation
 slpd   - OpenSLP Server (slpd)
 slptool- SLP command line tool
Closes: 201888
Changes: 
 openslp (1.0.11-4) unstable; urgency=low
 .
   * Work-around timestamp skew problems for files patched from diff.gz
 on m68k (Closes: #201888).
Files: 
 b0a048d8d0922ba9cb42aa4a8200a123 638 net extra openslp_1.0.11-4.dsc
 a228f186fd1a3279335aa20450060513 143395 net extra openslp_1.0.11-4.diff.gz
 7069d5d428bcdb61fe254c8737f3e48a 95584 doc extra openslp-doc_1.0.11-4_all.deb
 7430996b162780992f13d64947cad22c 62786 net extra slpd_1.0.11-4_i386.deb
 d3f60eb27ee113860eb41561502e9e8c 44158 libs optional libslp1_1.0.11-4_i386.deb
 083625bc188c265ab76b48d35a872bae 25438 utils extra slptool_1.0.11-4_i386.deb
 af4aca473cf0d1696e9fcefe9cba504d 59898 libdevel extra libslp-dev_1.0.11-4_i386.deb

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

iD8DBQE/J6LlFeACul2MEuoRAu3+AKC2cmd2m+Rs4pjcfb7S5Ak5Grbl3ACeIBBv
vG0BHxNrgH0Dm4OpRRoHqAk=
=Y2t2
-END PGP SIGNATURE-


Accepted:
libslp-dev_1.0.11-4_i386.deb
  to pool/main/o/openslp/libslp-dev_1.0.11-4_i386.deb
libslp1_1.0.11-4_i386.deb
  to pool/main/o/openslp/libslp1_1.0.11-4_i386.deb
openslp-doc_1.0.11-4_all.deb
  to pool/main/o/openslp/openslp-doc_1.0.11-4_all.deb
openslp_1.0.11-4.diff.gz
  to pool/main/o/openslp/openslp_1.0.11-4.diff.gz
openslp_1.0.11-4.dsc
  to pool/main/o/openslp/openslp_1.0.11-4.dsc
slpd_1.0.11-4_i386.deb
  to pool/main/o/openslp/slpd_1.0.11-4_i386.deb
slptool_1.0.11-4_i386.deb
  to pool/main/o/openslp/slptool_1.0.11-4_i386.deb


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



Accepted quota 3.09-2 (i386 source)

2003-07-30 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 12:52:37 +0200
Source: quota
Binary: quota
Architecture: source i386
Version: 3.09-2
Distribution: unstable
Urgency: low
Maintainer: Michael Meskes [EMAIL PROTECTED]
Changed-By: Michael Meskes [EMAIL PROTECTED]
Description: 
 quota  - An implementation of the disk quota system
Closes: 200432 201722 201729
Changes: 
 quota (3.09-2) unstable; urgency=low
 .
   * Added upstream patches:
  fixed bug in -f option of edquota, closes: #201722
  fixed formatting bug in warnquota, closes: #200432
  added option -s to warnquota
  updated Polish messages and some manpages
   * Added Spanish debconf template, closes: #201729
   * Corrected packaging format
Files: 
 20e9d1fd94240a25c8997359894b3f65 905 admin optional quota_3.09-2.dsc
 68ec2b5afd2e6a6a4fff700c6d5c4576 189564 admin optional quota_3.09.orig.tar.gz
 81fc670059bdfaef5621376b2d0ec015 38936 admin optional quota_3.09-2.diff.gz
 40504c16e115b53e9cad2532c2e91497 379702 admin optional quota_3.09-2_i386.deb

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

iQEXAwUBPyencetBmxovbdBzFAI5JgQAzTz2c03eiT0eu2lNSU1FCSZqhCD9VWMb
KnNGPph1vGZjckfxfwHPv0PKvvwI/Z2VaJ1t8ZIgnM5WJekuCmbHIAzHx24XshMB
BSSeXMrd3s/FPAyTPoBk/3nu7kxW9KyEDoTprg0sLZlzJ3gB0golm1+0+WdXQ7//
tqR9/D09fj0D/2i1ciFcrOuGmF1W1C1rcNtuvtV4V5hJ/VlOKK0N0ylH3ZD2BKnB
/WfzPvFNCeC7fq4PRgQgV11eefYf+VvdMf7EmpNr0QwNQ6apWg0hDCEm3nAK7NY2
BwP50Fld+GMwiG17Avf7vcCxVaUsGz1EnWqOBstRI5bwGKKYSMgXgcBA
=w7rz
-END PGP SIGNATURE-


Accepted:
quota_3.09-2.diff.gz
  to pool/main/q/quota/quota_3.09-2.diff.gz
quota_3.09-2.dsc
  to pool/main/q/quota/quota_3.09-2.dsc
quota_3.09-2_i386.deb
  to pool/main/q/quota/quota_3.09-2_i386.deb
quota_3.09.orig.tar.gz
  to pool/main/q/quota/quota_3.09.orig.tar.gz


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



Accepted gem 0.87cvs20030708-3 (i386 source)

2003-07-30 Thread Debian/GNU
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 12:25:34 +0200
Source: gem
Binary: gem
Architecture: source i386
Version: 0.87cvs20030708-3
Distribution: unstable
Urgency: low
Maintainer: Guenter Geiger (Debian/GNU) [EMAIL PROTECTED]
Changed-By: Guenter Geiger (Debian/GNU) [EMAIL PROTECTED]
Description: 
 gem- Graphics Environment for Multimedia - OpenGL animation tools
Closes: 203455
Changes: 
 gem (0.87cvs20030708-3) unstable; urgency=low
 .
   * added quicktime and mpeg3 support
   * added -fPIC flag (closes: #203455)
Files: 
 85e7e3021c0f12ffac5c1908fdd52eb3 783 graphics optional gem_0.87cvs20030708-3.dsc
 476abb531293774983fd605f98e6b537 272589 graphics optional 
gem_0.87cvs20030708-3.diff.gz
 d7df300116f2089a5eaf9d45d9772719 1591980 graphics optional 
gem_0.87cvs20030708-3_i386.deb

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

iD8DBQE/J6fu1pbKhmC2uVgRAvEGAJ4ws9puMI9Um518ZGJg7VbJfJl/fgCfQinj
nej2uw7iCb7vIoTfYSoY+P4=
=st+U
-END PGP SIGNATURE-


Accepted:
gem_0.87cvs20030708-3.diff.gz
  to pool/main/g/gem/gem_0.87cvs20030708-3.diff.gz
gem_0.87cvs20030708-3.dsc
  to pool/main/g/gem/gem_0.87cvs20030708-3.dsc
gem_0.87cvs20030708-3_i386.deb
  to pool/main/g/gem/gem_0.87cvs20030708-3_i386.deb


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



Accepted dvbtune 0.3-3 (i386 source)

2003-07-30 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 13:03:58 +0100
Source: dvbtune
Binary: dvbtune
Architecture: source i386
Version: 0.3-3
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry [EMAIL PROTECTED]
Changed-By: Alastair McKinstry [EMAIL PROTECTED]
Description: 
 dvbtune- Simple tuning application for DVB cards
Changes: 
 dvbtune (0.3-3) unstable; urgency=low
 .
   * Change maintainer email to [EMAIL PROTECTED]
   * Move to Standards-Version: 3.6.0. No changes required.
Files: 
 42faf65858e25911c9003a10b527c69e 600 utils optional dvbtune_0.3-3.dsc
 eae18836cf29a193c6cf9c3a7e29de1b 8543 utils optional dvbtune_0.3-3.diff.gz
 4895591339cc07fbdd0021b1b1c2bd10 20368 utils optional dvbtune_0.3-3_i386.deb

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

iD8DBQE/J7Sc+o43kJBROPQRAgpfAJ0SWRQG8pfjrPxYTD8uZ0X/sqHB/wCgq+6R
91i2G8BgJjjNLNhaAwXaJwM=
=WJTe
-END PGP SIGNATURE-


Accepted:
dvbtune_0.3-3.diff.gz
  to pool/main/d/dvbtune/dvbtune_0.3-3.diff.gz
dvbtune_0.3-3.dsc
  to pool/main/d/dvbtune/dvbtune_0.3-3.dsc
dvbtune_0.3-3_i386.deb
  to pool/main/d/dvbtune/dvbtune_0.3-3_i386.deb


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



Accepted dvbstream 0.4pre2-2 (i386 source)

2003-07-30 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 13:07:26 +0100
Source: dvbstream
Binary: dvbstream
Architecture: source i386
Version: 0.4pre2-2
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry [EMAIL PROTECTED]
Changed-By: Alastair McKinstry [EMAIL PROTECTED]
Description: 
 dvbstream  - Broadcast a DVB Transport stream over a LAN
Changes: 
 dvbstream (0.4pre2-2) unstable; urgency=low
 .
   * Change maintainer email to [EMAIL PROTECTED]
   * Move to Standards-Version: 3.6.0; no changes required.
Files: 
 77394b5018a45aa3e9324503e488489a 591 misc optional dvbstream_0.4pre2-2.dsc
 f9f448467712ad9d49f3a56639e34c2e 5695 misc optional dvbstream_0.4pre2-2.diff.gz
 a34c0bfe988d8f93e660bef81b01f145 51136 misc optional dvbstream_0.4pre2-2_i386.deb

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

iD8DBQE/J7U7+o43kJBROPQRAkNaAKDAKWyUqWTxEzbNltwRAmQdVGkbBACgtW1N
61hIy2EMbSGuz3XMG6qV1Pc=
=3zmI
-END PGP SIGNATURE-


Accepted:
dvbstream_0.4pre2-2.diff.gz
  to pool/main/d/dvbstream/dvbstream_0.4pre2-2.diff.gz
dvbstream_0.4pre2-2.dsc
  to pool/main/d/dvbstream/dvbstream_0.4pre2-2.dsc
dvbstream_0.4pre2-2_i386.deb
  to pool/main/d/dvbstream/dvbstream_0.4pre2-2_i386.deb


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



Accepted ddtc 0.11 (all source)

2003-07-30 Thread Nicolas Bertolissio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 27 Jul 2003 16:03:43 +0200
Source: ddtc
Binary: ddtc
Architecture: source all
Version: 0.11
Distribution: unstable
Urgency: low
Maintainer: Nicolas Bertolissio [EMAIL PROTECTED]
Changed-By: Nicolas Bertolissio [EMAIL PROTECTED]
Description: 
 ddtc   - Deal with ddts mails
Changes: 
 ddtc (0.11) unstable; urgency=low
 .
   * clean `debian/' directory
 - add `Build-Depends-Indep: perl
 - clean `rules'
 thanks to Denis Barbier for all these
   * use `File::Spec::Functions' to deal with filenames and directories
   * add internationalisation
   * add French localisation
   * fix sending `noguide' to the server if no command to send
Files: 
 196e0291ebd6a16bd524ca68203e1834 508 text optional ddtc_0.11.dsc
 d833ab93b4eb54a32b46f09288b8476e 37698 text optional ddtc_0.11.tar.gz
 3a892e74653b4f0af351b8715eafc45f 49872 text optional ddtc_0.11_all.deb

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

iD8DBQE/J7mC+F6/RiWNh4ERAliuAJ4zUNGgm5CPHKWStYYHiVqIdLImPwCdH5Ev
GljQwFcAxd1u6YSsPWhEgS0=
=Inbg
-END PGP SIGNATURE-


Accepted:
ddtc_0.11.dsc
  to pool/main/d/ddtc/ddtc_0.11.dsc
ddtc_0.11.tar.gz
  to pool/main/d/ddtc/ddtc_0.11.tar.gz
ddtc_0.11_all.deb
  to pool/main/d/ddtc/ddtc_0.11_all.deb


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



Accepted gkrellm 2.1.15-1 (i386 source all)

2003-07-30 Thread Brian M. Almeida
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 08:19:04 -0400
Source: gkrellm
Binary: gkrellm-common gkrellmd gkrellm
Architecture: source i386 all
Version: 2.1.15-1
Distribution: unstable
Urgency: low
Maintainer: Brian M. Almeida [EMAIL PROTECTED]
Changed-By: Brian M. Almeida [EMAIL PROTECTED]
Description: 
 gkrellm- Multiple stacked system monitors: 1 process [client]
 gkrellm-common - Multiple stacked system monitors: 1 process [common files]
 gkrellmd   - Multiple stacked system monitors: 1 process [daemon]
Closes: 192480 193555 199460 201294 202397 202403
Changes: 
 gkrellm (2.1.15-1) unstable; urgency=low
 .
   * New upstream release
  - Support spaces in IMAP mailbox names, closes: #202403
  - Doesn't write translated strings to config file.
New configs not backwards compatible, so they have
been renamed to user-config and sensors-config.
Closes: #193555
  - Diskstats now work in 2.6.x and above, closes: #201294
  - Diskstats reported on more than IDE0/fd0 in 2.6.x and
above, closes: #192480
  - Internet connection clock now properly cycles, closes: #199460
  - Added note in README.Debian on how to add support for
polling pop3s/imaps mailservers, closes: #202397
   * Only add gkrellmd user if it doesn't exist
Files: 
 ad25d414446e7c50c8bd5ca9a9162ccd 658 x11 optional gkrellm_2.1.15-1.dsc
 fbd0b16cdde76cd93c6411428656690d 857883 x11 optional gkrellm_2.1.15.orig.tar.gz
 dc7100745bc4400c1e2fb03b9423a0ca 6538 x11 optional gkrellm_2.1.15-1.diff.gz
 cba2048e99c37675b82613ece9fd5008 335996 x11 optional gkrellm-common_2.1.15-1_all.deb
 f514a9a4b543ae18512cd52f4c28101c 367958 x11 optional gkrellm_2.1.15-1_i386.deb
 09c5c3102d38979c55536d387aa69fc0 75730 x11 optional gkrellmd_2.1.15-1_i386.deb

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

iD8DBQE/J8b7vN0db6ENkYwRApDjAJ9hQtKPzNe3ecEkXMQ4mGTvVaVyqwCffaQt
7pyrZ3p2/cgLJZJqcXy8v8M=
=hJ6o
-END PGP SIGNATURE-


Accepted:
gkrellm-common_2.1.15-1_all.deb
  to pool/main/g/gkrellm/gkrellm-common_2.1.15-1_all.deb
gkrellm_2.1.15-1.diff.gz
  to pool/main/g/gkrellm/gkrellm_2.1.15-1.diff.gz
gkrellm_2.1.15-1.dsc
  to pool/main/g/gkrellm/gkrellm_2.1.15-1.dsc
gkrellm_2.1.15-1_i386.deb
  to pool/main/g/gkrellm/gkrellm_2.1.15-1_i386.deb
gkrellm_2.1.15.orig.tar.gz
  to pool/main/g/gkrellm/gkrellm_2.1.15.orig.tar.gz
gkrellmd_2.1.15-1_i386.deb
  to pool/main/g/gkrellm/gkrellmd_2.1.15-1_i386.deb


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



Accepted base-installer 0.025 (i386 source all)

2003-07-30 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 15:43:44 +0200
Source: base-installer
Binary: kernel-installer base-installer
Architecture: source i386 all
Version: 0.025
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 base-installer - Install the base system (udeb)
 kernel-installer - Install the kernel (udeb)
Closes: 180753
Changes: 
 base-installer (0.025) unstable; urgency=low
 .
   * Matt Kraai
 - Add nl.po, thanks to Bart Cornelis.
   * Alastair McKinstry
 - Add lv.po, thanks to Aigars Mahinovs
   * Martin Sjögren
 - Implement progress bar thingy. (Closes: #180753)
   This requires version = 0.2.1 of debootstrap.
 - Bump standards version to 3.6.0
   * André Luís Lopes
 - Update Brazilian Portuguese (pt_BR) debconf template translation.
 - Run debconf-updatepo to feed more translatable strings to
   translators.
   * Petter Reinholdtsen
 - Update nb.po.
 - Convert changelog to UTF-8.
 - Stop kernel-installer from printing to stderr.
 - Add initial progress bar to kernel-installer.
 - Correct template names from old 'kernel-chooser' to new
   'kernel-installer'.
 - Add progress bar at the end of base-installer, when the APT
   database is updated and extra the packages are installed.
 - Updated nb.po.
   * Florian Lohoff
 - Updated de.po.  Thanks to from Maximilian Wilhelm.
Files: 
 e5d320671b739460954f4f230898caf7 645 debian-installer required 
base-installer_0.025.dsc
 9271db4e13f11462c670be1b8c4e808a 31396 debian-installer required 
base-installer_0.025.tar.gz
 57a569a2fbc631e5f16473a9c9a64641 6352 debian-installer required 
kernel-installer_0.025_all.udeb
 01c2d04e00f92ab468caf275d8b79559 9086 debian-installer required 
base-installer_0.025_i386.udeb

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

iD8DBQE/J8xN20zMSyow1ykRAjp5AKCjYNznNTcYIBBv8ZQJmWxXw/j7/ACgiVTt
babqCqM68FfAqMeI/Q3SZyI=
=O071
-END PGP SIGNATURE-


Accepted:
base-installer_0.025.dsc
  to pool/main/b/base-installer/base-installer_0.025.dsc
base-installer_0.025.tar.gz
  to pool/main/b/base-installer/base-installer_0.025.tar.gz
base-installer_0.025_i386.udeb
  to pool/main/b/base-installer/base-installer_0.025_i386.udeb
kernel-installer_0.025_all.udeb
  to pool/main/b/base-installer/kernel-installer_0.025_all.udeb


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



Accepted main-menu 0.036 (i386 source)

2003-07-30 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 15:48:25 +0200
Source: main-menu
Binary: main-menu
Architecture: source i386
Version: 0.036
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 main-menu  - Debian installer main menu (udeb)
Changes: 
 main-menu (0.036) unstable; urgency=low
 .
   * Petter Reinholdtsen
 - Completed the german translation.
Files: 
 bcbfbc96261aa54a2f13ab5b6b9e1e32 756 debian-installer standard main-menu_0.036.dsc
 aeae10e2f04c55703cbe413060da08fb 16914 debian-installer standard 
main-menu_0.036.tar.gz
 92e8941581c64fd95f506d5f5fc9616f 7416 debian-installer standard 
main-menu_0.036_i386.udeb

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

iD8DBQE/J8zu20zMSyow1ykRAjfQAJ9c1uqn90ONkhK0s8M7v4VYV92PyQCfUJbu
mSLxVbd9i+ZN+S8Y37bMSi0=
=+vG1
-END PGP SIGNATURE-


Accepted:
main-menu_0.036.dsc
  to pool/main/m/main-menu/main-menu_0.036.dsc
main-menu_0.036.tar.gz
  to pool/main/m/main-menu/main-menu_0.036.tar.gz
main-menu_0.036_i386.udeb
  to pool/main/m/main-menu/main-menu_0.036_i386.udeb


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



Accepted cdparanoia 3a9.8-10 (i386 source)

2003-07-30 Thread Aaron Lehmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 11:27:16 -0700
Source: cdparanoia
Binary: libcdparanoia0 cdparanoia libcdparanoia0-dev
Architecture: source i386
Version: 3a9.8-10
Distribution: unstable
Urgency: low
Maintainer: Aaron Lehmann [EMAIL PROTECTED]
Changed-By: Aaron Lehmann [EMAIL PROTECTED]
Description: 
 cdparanoia - An audio extraction tool for sampling CDs.
 libcdparanoia0 - Shared libraries for cdparanoia (runtime lib)
 libcdparanoia0-dev - Development files needed to compile programs that use libcdparano
Closes: 168683
Changes: 
 cdparanoia (3a9.8-10) unstable; urgency=low
 .
   * Check for a null pointer in the scanning routines to prevent a segfault
   (Closes:#168683)
Files: 
 ac295a77de4a86918cdb8f935b636f89 612 sound optional cdparanoia_3a9.8-10.dsc
 d49d882afb162e54af85e198a065ad0c 7103 sound optional cdparanoia_3a9.8-10.diff.gz
 830a3fe3c70a0bc08362d19a2d59b71d 62702 sound optional libcdparanoia0_3a9.8-10_i386.deb
 fc614abe8de8cc00d5d6f0b1510fca7b 48756 libdevel optional 
libcdparanoia0-dev_3a9.8-10_i386.deb
 8203b941d7a906c3530c4f4cdd33bbfc 19210 sound optional cdparanoia_3a9.8-10_i386.deb

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

iD8DBQE/KCn4dtqQf66JWJkRAp7HAJ4l9Muin0Ua+7qZOntBZdaJPy+cJgCgx5Uf
QqWSJxDkB6XrX7oHPi0H5fw=
=sELU
-END PGP SIGNATURE-


Accepted:
cdparanoia_3a9.8-10.diff.gz
  to pool/main/c/cdparanoia/cdparanoia_3a9.8-10.diff.gz
cdparanoia_3a9.8-10.dsc
  to pool/main/c/cdparanoia/cdparanoia_3a9.8-10.dsc
cdparanoia_3a9.8-10_i386.deb
  to pool/main/c/cdparanoia/cdparanoia_3a9.8-10_i386.deb
libcdparanoia0-dev_3a9.8-10_i386.deb
  to pool/main/c/cdparanoia/libcdparanoia0-dev_3a9.8-10_i386.deb
libcdparanoia0_3a9.8-10_i386.deb
  to pool/main/c/cdparanoia/libcdparanoia0_3a9.8-10_i386.deb


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



Accepted hearse 1.3 (all source)

2003-07-30 Thread Roderick Schertler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 15:44:47 -0400
Source: hearse
Binary: hearse
Architecture: source all
Version: 1.3
Distribution: unstable
Urgency: low
Maintainer: Roderick Schertler [EMAIL PROTECTED]
Changed-By: Roderick Schertler [EMAIL PROTECTED]
Description: 
 hearse - exchange Nethack bones files with other players
Closes: 197205
Changes: 
 hearse (1.3) unstable; urgency=low
 .
   * Oops, binmode() the bones being written out.  This is required both
 for non-Unix, and for Perl 5.8 with a UTF8 locale.
   * Choke if the bones received from the server doesn't have a CRC to
 check against.
   * Clarify that the .deb and .rpm versions already run from cron (closes:
 #197205).
   * Add the current directory to the list of possible bones directories
 (for the benefit of Windows).  Consequently validate a bones directory
 by checking if it has a record file in it.
Files: 
 4a2800a2cd5b7eab083164c4cda879be 517 games optional hearse_1.3.dsc
 840d631fab93065dcaecc5c6fb23840e 27331 games optional hearse_1.3.tar.gz
 f5186280e35878389b8db4e354e7cdd7 34252 games optional hearse_1.3_all.deb

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

iEYEARECAAYFAj8oJAsACgkQ6QESpysFtzorKgCcCWGT9rkxgMFXxsN419cImu3u
jK8AnjFT7X1+PmMTpEHcJ8NFtSPnC9RT
=7cOh
-END PGP SIGNATURE-


Accepted:
hearse_1.3.dsc
  to pool/main/h/hearse/hearse_1.3.dsc
hearse_1.3.tar.gz
  to pool/main/h/hearse/hearse_1.3.tar.gz
hearse_1.3_all.deb
  to pool/main/h/hearse/hearse_1.3_all.deb


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



Accepted bplay 0.991-7 (i386 source)

2003-07-30 Thread Carlos Laviola
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  7 Jun 2003 00:39:14 -0300
Source: bplay
Binary: bplay
Architecture: source i386
Version: 0.991-7
Distribution: unstable
Urgency: low
Maintainer: Carlos Laviola [EMAIL PROTECTED]
Changed-By: Carlos Laviola [EMAIL PROTECTED]
Description: 
 bplay  - Buffered audio file player/recorder
Closes: 193388 193714
Changes: 
 bplay (0.991-7) unstable; urgency=low
 .
   * Applied patch by Alexandre Belloni [EMAIL PROTECTED], which complements
 the LFS patch by Eduard Bloch and makes bplay work again.
 (Closes: #193388, #193714)
Files: 
 94dd59bf35505f51152d260fc6c4eb86 555 sound optional bplay_0.991-7.dsc
 0aebd4891c106fcf28fad7bdee7b4fd8 7856 sound optional bplay_0.991-7.diff.gz
 968536f5e34c0fa67e44abeabfdf3747 18134 sound optional bplay_0.991-7_i386.deb

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

iD8DBQE/IqohZAYCJzUW03IRAnUwAJ9NUUqlscNKpOftmy9/U22VQwPPPQCfUpRy
n70z+eOQhRLK3AQyiTc86fo=
=5J3h
-END PGP SIGNATURE-


Accepted:
bplay_0.991-7.diff.gz
  to pool/main/b/bplay/bplay_0.991-7.diff.gz
bplay_0.991-7.dsc
  to pool/main/b/bplay/bplay_0.991-7.dsc
bplay_0.991-7_i386.deb
  to pool/main/b/bplay/bplay_0.991-7_i386.deb


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



Accepted bakery1.3 1.3.10-2 (i386 source)

2003-07-30 Thread Bradley Bell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 10:57:40 -0700
Source: bakery1.3
Binary: libbakery1.3-10 libbakery1.3-dev
Architecture: source i386
Version: 1.3.10-2
Distribution: unstable
Urgency: low
Maintainer: Bradley Bell [EMAIL PROTECTED]
Changed-By: Bradley Bell [EMAIL PROTECTED]
Description: 
 libbakery1.3-10 - A C++ Application Framework (shared libraries)
 libbakery1.3-dev - A C++ Application Framework (development files)
Closes: 200533
Changes: 
 bakery1.3 (1.3.10-2) unstable; urgency=low
 .
   * Recompile with libxml++ 0.23.0-1 (Closes: #200533)
   * Don't build examples
Files: 
 ff4e1de1a8dbadf36a72de6cd45365d0 692 libs optional bakery1.3_1.3.10-2.dsc
 db87bc1b2ef1161e49f50d2d69e74d70 288490 libs optional bakery1.3_1.3.10-2.diff.gz
 c39baa990768d5f9adf1620c19fcfb0f 326468 libdevel optional 
libbakery1.3-dev_1.3.10-2_i386.deb
 239b8baf9167269eb56cd20772500e5f 86924 libs optional libbakery1.3-10_1.3.10-2_i386.deb

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

iD8DBQE/KCeqteAcXeZ40aERAnuDAJ0T1rdH+Kt7KNunNq1G3co70e6p8QCfaOsS
LyN8sKXyL826FUH8ZrmQLs0=
=rNLC
-END PGP SIGNATURE-


Accepted:
bakery1.3_1.3.10-2.diff.gz
  to pool/main/b/bakery1.3/bakery1.3_1.3.10-2.diff.gz
bakery1.3_1.3.10-2.dsc
  to pool/main/b/bakery1.3/bakery1.3_1.3.10-2.dsc
libbakery1.3-10_1.3.10-2_i386.deb
  to pool/main/b/bakery1.3/libbakery1.3-10_1.3.10-2_i386.deb
libbakery1.3-dev_1.3.10-2_i386.deb
  to pool/main/b/bakery1.3/libbakery1.3-dev_1.3.10-2_i386.deb


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



Accepted muh 1:2.1+2.2-beta1-2 (i386 source)

2003-07-30 Thread Norbert Tretkowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 07:14:51 +0100
Source: muh
Binary: muh
Architecture: source i386
Version: 1:2.1+2.2-beta1-2
Distribution: unstable
Urgency: low
Maintainer: Norbert Tretkowski [EMAIL PROTECTED]
Changed-By: Norbert Tretkowski [EMAIL PROTECTED]
Description: 
 muh- Full-featured IRC bouncing tool
Changes: 
 muh (1:2.1+2.2-beta1-2) unstable; urgency=low
 .
   * Disabled IPv6 support.
Files: 
 80e1e11a9d8917043cd83987dc76a2d2 565 net optional muh_2.1+2.2-beta1-2.dsc
 a5858e81cc64494801fcf7e4c6fe3631 4701 net optional muh_2.1+2.2-beta1-2.diff.gz
 318a4ce45118a3d22c3dc490ea3f 38596 net optional muh_2.1+2.2-beta1-2_i386.deb

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

iD8DBQE/J1S7r/RnCw96jQERAuD2AJ98M6HiwSxr/iikAVXK3XOLZEILOwCfWqEO
0kmgRVZSV8za2Bgz0gZajLY=
=PwU/
-END PGP SIGNATURE-


Accepted:
muh_2.1+2.2-beta1-2.diff.gz
  to pool/main/m/muh/muh_2.1+2.2-beta1-2.diff.gz
muh_2.1+2.2-beta1-2.dsc
  to pool/main/m/muh/muh_2.1+2.2-beta1-2.dsc
muh_2.1+2.2-beta1-2_i386.deb
  to pool/main/m/muh/muh_2.1+2.2-beta1-2_i386.deb


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



Accepted pam-dotfile 0.6-1 (i386 source)

2003-07-30 Thread Oliver Kurth
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 19:55:20 +0200
Source: pam-dotfile
Binary: libpam-dotfile
Architecture: source i386
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Oliver Kurth [EMAIL PROTECTED]
Changed-By: Oliver Kurth [EMAIL PROTECTED]
Description: 
 libpam-dotfile - A PAM module which allows users to have more than one password
Closes: 200051
Changes: 
 pam-dotfile (0.6-1) unstable; urgency=low
 .
   * new upstream version
   * fixed typo in description. Closes: #200051
Files: 
 65f55a519f1df71354a5d26db18f923e 594 admin optional pam-dotfile_0.6-1.dsc
 40d70111a9e0f7e5cfb8564f32d3860b 229036 admin optional pam-dotfile_0.6.orig.tar.gz
 792a71f5cd0c3655466fd0ecb0bb4e05 5464 admin optional pam-dotfile_0.6-1.diff.gz
 977cba8fe7ce781d82ee7cffae82b308 29946 admin optional libpam-dotfile_0.6-1_i386.deb

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

iD8DBQE/KBLKUmVSJkUeqxsRAgvjAKDLWHJfGiF8aqgYBKkxuHq9T4Zg6wCglxMu
8kEDmt2+bj1tcF3Fvprpp6k=
=1ZyQ
-END PGP SIGNATURE-


Accepted:
libpam-dotfile_0.6-1_i386.deb
  to pool/main/p/pam-dotfile/libpam-dotfile_0.6-1_i386.deb
pam-dotfile_0.6-1.diff.gz
  to pool/main/p/pam-dotfile/pam-dotfile_0.6-1.diff.gz
pam-dotfile_0.6-1.dsc
  to pool/main/p/pam-dotfile/pam-dotfile_0.6-1.dsc
pam-dotfile_0.6.orig.tar.gz
  to pool/main/p/pam-dotfile/pam-dotfile_0.6.orig.tar.gz


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



Accepted jnettop 0.9-1 (i386 source)

2003-07-30 Thread Ari Pollak
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 17:24:15 -0400
Source: jnettop
Binary: jnettop
Architecture: source i386
Version: 0.9-1
Distribution: unstable
Urgency: low
Maintainer: Ari Pollak [EMAIL PROTECTED]
Changed-By: Ari Pollak [EMAIL PROTECTED]
Description: 
 jnettop- View hosts/ports taking up the most network traffic
Changes: 
 jnettop (0.9-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 a34596b5284feb9a0f72874ea5a84196 596 net extra jnettop_0.9-1.dsc
 33ff9857b577c8d226639f55bb5cd69e 101431 net extra jnettop_0.9.orig.tar.gz
 3b7ab57c14e422e9127d5a67d1c17a40 22799 net extra jnettop_0.9-1.diff.gz
 216a6fe61db757c51a3a972fa9fa42ef 25768 net extra jnettop_0.9-1_i386.deb

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

iD8DBQE/KDjkwO+u47cOQDsRAnJEAJsG7bu434DKOxAIRzAqJb1uQ+5yRACcDMiH
8x5Osnvvrv4Gbr3D20kIaK4=
=TsZ7
-END PGP SIGNATURE-


Accepted:
jnettop_0.9-1.diff.gz
  to pool/main/j/jnettop/jnettop_0.9-1.diff.gz
jnettop_0.9-1.dsc
  to pool/main/j/jnettop/jnettop_0.9-1.dsc
jnettop_0.9-1_i386.deb
  to pool/main/j/jnettop/jnettop_0.9-1_i386.deb
jnettop_0.9.orig.tar.gz
  to pool/main/j/jnettop/jnettop_0.9.orig.tar.gz


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



Accepted modutils 2.4.21-3 (i386 source)

2003-07-30 Thread LaMont Jones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 15:18:47 -0600
Source: modutils
Binary: modutils-full modutils-basic modutils
Architecture: source i386
Version: 2.4.21-3
Distribution: unstable
Urgency: low
Maintainer: LaMont Jones [EMAIL PROTECTED]
Changed-By: LaMont Jones [EMAIL PROTECTED]
Description: 
 modutils   - Linux module utilities
 modutils-basic - Basic Linux module utilities for debian-installer (udeb)
 modutils-full - More complete Linux module utilities for debian-installer (udeb)
Closes: 155033 155909 171948 189695
Changes: 
 modutils (2.4.21-3) unstable; urgency=low
 .
   * Survive read failures in prerm.
   * Incorporate NMU's.  Closes: #189695, 171948, #155033, #155909.
Files: 
 45b029456fee6e9e4a773b77e060605e 628 base required modutils_2.4.21-3.dsc
 2d1bbae0b04dc2eb566f2f88aadb221f 23702 base required modutils_2.4.21-3.diff.gz
 cb987379ffa22d6fc60a2cd65fc430c9 68548 debian-installer standard 
modutils-full_2.4.21-3_i386.udeb
 3ac273c55f29ccecf689f2dc3f5742b2 43284 debian-installer standard 
modutils-basic_2.4.21-3_i386.udeb
 586e138aefab3c761970e0f80b0160b4 192518 base required modutils_2.4.21-3_i386.deb

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

iD8DBQE/KDeHzN/kmwoKyScRAmkZAJ4w8+pPnY3HQladUqW0r5K3v6FImQCeIlwH
55Yf/GyLPnYZdf4q8jA3HNc=
=qy9f
-END PGP SIGNATURE-


Accepted:
modutils-basic_2.4.21-3_i386.udeb
  to pool/main/m/modutils/modutils-basic_2.4.21-3_i386.udeb
modutils-full_2.4.21-3_i386.udeb
  to pool/main/m/modutils/modutils-full_2.4.21-3_i386.udeb
modutils_2.4.21-3.diff.gz
  to pool/main/m/modutils/modutils_2.4.21-3.diff.gz
modutils_2.4.21-3.dsc
  to pool/main/m/modutils/modutils_2.4.21-3.dsc
modutils_2.4.21-3_i386.deb
  to pool/main/m/modutils/modutils_2.4.21-3_i386.deb


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



Accepted fltk1.1 1.1.3+1.1.4rc2-1 (i386 source all)

2003-07-30 Thread Aaron M. Ucko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 14:32:56 -0400
Source: fltk1.1
Binary: libfltk1.1c102 fltk1.1-doc libfltk1.1-dev fluid
Architecture: source all i386
Version: 1.1.3+1.1.4rc2-1
Distribution: unstable
Urgency: low
Maintainer: Aaron M. Ucko [EMAIL PROTECTED]
Changed-By: Aaron M. Ucko [EMAIL PROTECTED]
Description: 
 fltk1.1-doc - The Fast Light Toolkit (documentation)
 fluid  - The Fast Light Toolkit user interface designer
 libfltk1.1-dev - The Fast Light Toolkit (development files)
 libfltk1.1c102 - The Fast Light Toolkit (shared libraries)
Changes: 
 fltk1.1 (1.1.3+1.1.4rc2-1) unstable; urgency=low
 .
   * New upstream release candidate, incorporating (among MANY other things)
 most of our changes, including support for Xft 2.
   * debian/control: Standards-Version increased to 3.6.0 (no changes needed).
Files: 
 abbceccfaab69b7721f89db6c3bbe2a2 792 libs optional fltk1.1_1.1.3+1.1.4rc2-1.dsc
 6cbe2fae5da16e4801a6e638655483ff 1538460 libs optional 
fltk1.1_1.1.3+1.1.4rc2.orig.tar.gz
 6c0fb2eff48ff6520030370f9e5bc42d 7671 libs optional fltk1.1_1.1.3+1.1.4rc2-1.diff.gz
 70678e49f9b46db74e0831c22950a11a 2136260 doc optional 
fltk1.1-doc_1.1.3+1.1.4rc2-1_all.deb
 4abd67cf1538f0d18a12854f119880e5 152858 devel optional fluid_1.1.3+1.1.4rc2-1_i386.deb
 5a504cb89ebb67369ec9694bfcd01f05 480006 libdevel optional 
libfltk1.1-dev_1.1.3+1.1.4rc2-1_i386.deb
 0a64cd0759a305a5ada4684ec34f706a 326886 libs optional 
libfltk1.1c102_1.1.3+1.1.4rc2-1_i386.deb

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

iD8DBQE/KETdWNCxsidXLEcRAtCNAJ9cm/zqp2QyABEku1NPod6kseaumgCeIZvK
C/2KmB7m9sYb8wRgFnOq5Io=
=bluN
-END PGP SIGNATURE-


Accepted:
fltk1.1-doc_1.1.3+1.1.4rc2-1_all.deb
  to pool/main/f/fltk1.1/fltk1.1-doc_1.1.3+1.1.4rc2-1_all.deb
fltk1.1_1.1.3+1.1.4rc2-1.diff.gz
  to pool/main/f/fltk1.1/fltk1.1_1.1.3+1.1.4rc2-1.diff.gz
fltk1.1_1.1.3+1.1.4rc2-1.dsc
  to pool/main/f/fltk1.1/fltk1.1_1.1.3+1.1.4rc2-1.dsc
fltk1.1_1.1.3+1.1.4rc2.orig.tar.gz
  to pool/main/f/fltk1.1/fltk1.1_1.1.3+1.1.4rc2.orig.tar.gz
fluid_1.1.3+1.1.4rc2-1_i386.deb
  to pool/main/f/fltk1.1/fluid_1.1.3+1.1.4rc2-1_i386.deb
libfltk1.1-dev_1.1.3+1.1.4rc2-1_i386.deb
  to pool/main/f/fltk1.1/libfltk1.1-dev_1.1.3+1.1.4rc2-1_i386.deb
libfltk1.1c102_1.1.3+1.1.4rc2-1_i386.deb
  to pool/main/f/fltk1.1/libfltk1.1c102_1.1.3+1.1.4rc2-1_i386.deb


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



Accepted man-db 2.4.1-11 (i386 source)

2003-07-30 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 22:52:05 +0100
Source: man-db
Binary: man-db
Architecture: source i386
Version: 2.4.1-11
Distribution: unstable
Urgency: high
Maintainer: Colin Watson [EMAIL PROTECTED]
Changed-By: Colin Watson [EMAIL PROTECTED]
Description: 
 man-db - The on-line manual pager
Closes: 203475
Changes: 
 man-db (2.4.1-11) unstable; urgency=high
 .
   * Fix several security problems reported on BugTraq (closes: #203475):
 - Limit sscanf() calls to the appropriate buffer size while reading
   configuration file.
 - Allocate strings dynamically while finding the ultimate source of man
   pages, avoiding a couple of buffer overflows.
 - Die gracefully if MANPATH contains too many elements, as a stopgap
   measure until proper list handling can be added.
Files: 
 031a1489b366d1aba2ecd3880e1f43dc 659 doc important man-db_2.4.1-11.dsc
 fd284d0886f97c32e7bec9c325b0c5ea 63062 doc important man-db_2.4.1-11.diff.gz
 69cffcf63a9128fde1912cb58c258af5 529622 doc important man-db_2.4.1-11_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.1 (GNU/Linux)
Comment: Colin Watson [EMAIL PROTECTED] -- Debian developer

iD8DBQE/KEs89t0zAhD6TNERAnrwAJwOAELBsRRoP6Jnq8eYBdbRLfR/oACff9a+
eB5onEUfr0EaGjDRumcDjMg=
=CgBE
-END PGP SIGNATURE-


Accepted:
man-db_2.4.1-11.diff.gz
  to pool/main/m/man-db/man-db_2.4.1-11.diff.gz
man-db_2.4.1-11.dsc
  to pool/main/m/man-db/man-db_2.4.1-11.dsc
man-db_2.4.1-11_i386.deb
  to pool/main/m/man-db/man-db_2.4.1-11_i386.deb


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



Accepted brickos 0.2.6.09-2.1 (source all alpha)

2003-07-30 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 26 Jul 2003 20:15:21 -0500
Source: brickos
Binary: brickos brickos-doc
Architecture: source alpha all
Version: 0.2.6.09-2.1
Distribution: unstable
Urgency: low
Maintainer: Stephen M Moraco [EMAIL PROTECTED]
Changed-By: Steve Langasek [EMAIL PROTECTED]
Description: 
 brickos- Alternative OS for LEGO Mindstorms. supports devel. in C/C++
 brickos-doc - Documentation for brickos
Closes: 198323
Changes: 
 brickos (0.2.6.09-2.1) unstable; urgency=low
 .
   * NMU.
   * Fix use of multi-line strings, so package compiles under gcc 3.3
 (closes: #198323).
Files: 
 635717f27d53d515fe21501486f5de74 652 devel extra brickos_0.2.6.09-2.1.dsc
 1662b51b640683b94635a46d902a9d96 16486 devel extra brickos_0.2.6.09-2.1.diff.gz
 fb3a1af1abc5a86e10ec2ed38662e06f 993220 devel extra brickos-doc_0.2.6.09-2.1_all.deb
 d0065d2077be7f0c3b053d0cd0d13231 134098 devel extra brickos_0.2.6.09-2.1_alpha.deb

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

iD8DBQE/I2dWKN6ufymYLloRAtV8AJ0VHGN4tuhTccqcaSC42KvW9bM6bgCeOsaD
f2SePAgLeWg4fv1ZT3Zo53Y=
=NXuB
-END PGP SIGNATURE-


Accepted:
brickos-doc_0.2.6.09-2.1_all.deb
  to pool/main/b/brickos/brickos-doc_0.2.6.09-2.1_all.deb
brickos_0.2.6.09-2.1.diff.gz
  to pool/main/b/brickos/brickos_0.2.6.09-2.1.diff.gz
brickos_0.2.6.09-2.1.dsc
  to pool/main/b/brickos/brickos_0.2.6.09-2.1.dsc
brickos_0.2.6.09-2.1_alpha.deb
  to pool/main/b/brickos/brickos_0.2.6.09-2.1_alpha.deb


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



Accepted kernel-package 8.043 (all source)

2003-07-30 Thread Manoj Srivastava
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 17:28:45 -0500
Source: kernel-package
Binary: kernel-package
Architecture: source all
Version: 8.043
Distribution: unstable
Urgency: low
Maintainer: Manoj Srivastava [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 kernel-package - A utility for building Linux kernel related Debian packages.
Closes: 202177 202406 203112
Changes: 
 kernel-package (8.043) unstable; urgency=low
 .
   * Changed rules to facilitate building 64 Bit kernels on spac32, and
 vice versa. Patch from Ben Collins
   * Do not compress files in kernel-doc marked as executable. This caused
 lintian warnings.   closes: Bug#202177
   * Optionally silence the warning message with interactive prompt for
 --initrd switch (set INITRD_OK).closes: Bug#202406
   * Document the fact that make-kpkg scans to configuration for some basic
 config detaisl, namely, whetrher modules are enabled or not, so that
 toggling the state in delayed configuration using the --config switch
 is unsupported andshall cause the build to fail. The correct solution
 is to create a .config file as close to the desired one using make
 {x,meny,}config before calling make-kpkg (the --config switch is
 mostly useful for answering any additional questions introduced by
 patches).closes: Bug#203112
Files: 
 d50c2425f74f2de800159657e7a1f33f 483 misc optional kernel-package_8.043.dsc
 00930489ef35be13c29057bc9b77a786 261271 misc optional kernel-package_8.043.tar.gz
 c7ff0801a9bef067705016f6fd07335e 274726 misc optional kernel-package_8.043_all.deb

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

iD8DBQE/KE4EIbrau78kQkwRAsBRAJ9kkr6QWe6ShTN0AmzG1dNF3xxtCQCdHpNG
nOTMfTbYbX6KWxgD5W/KDv8=
=TaUS
-END PGP SIGNATURE-


Accepted:
kernel-package_8.043.dsc
  to pool/main/k/kernel-package/kernel-package_8.043.dsc
kernel-package_8.043.tar.gz
  to pool/main/k/kernel-package/kernel-package_8.043.tar.gz
kernel-package_8.043_all.deb
  to pool/main/k/kernel-package/kernel-package_8.043_all.deb


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



Accepted orgadoc 0.7.1-1 (i386 source)

2003-07-30 Thread Julien LEMOINE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 Jul 2003 01:11:31 +0200
Source: orgadoc
Binary: orgadoc
Architecture: source i386
Version: 0.7.1-1
Distribution: unstable
Urgency: low
Maintainer: Julien LEMOINE [EMAIL PROTECTED]
Changed-By: Julien LEMOINE [EMAIL PROTECTED]
Description: 
 orgadoc- Organizes documents from XML descriptions
Changes: 
 orgadoc (0.7.1-1) unstable; urgency=low
 .
   * New upstream release
   * Updated to policy 3.6.0
Files: 
 18abae345e3a1f52c7eb34a8731af4f5 645 doc optional orgadoc_0.7.1-1.dsc
 57586922b6ab75229410ddeb7855fb36 28537 doc optional orgadoc_0.7.1.orig.tar.gz
 1f76f2fabce7d5f04ff790cd896a83bb 3558 doc optional orgadoc_0.7.1-1.diff.gz
 9b7cbce748480dcfd8067a57f5d2fe52 177356 doc optional orgadoc_0.7.1-1_i386.deb

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

iD8DBQE/KFPzc29c8N2YKnURAoRoAKCd2w3HQQP2BGPdlVCxEc1VDQwPCQCgyD+1
mmvWR+kA6dxTKlw4hxWjgX8=
=eagu
-END PGP SIGNATURE-


Accepted:
orgadoc_0.7.1-1.diff.gz
  to pool/main/o/orgadoc/orgadoc_0.7.1-1.diff.gz
orgadoc_0.7.1-1.dsc
  to pool/main/o/orgadoc/orgadoc_0.7.1-1.dsc
orgadoc_0.7.1-1_i386.deb
  to pool/main/o/orgadoc/orgadoc_0.7.1-1_i386.deb
orgadoc_0.7.1.orig.tar.gz
  to pool/main/o/orgadoc/orgadoc_0.7.1.orig.tar.gz


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



Accepted cyrus-imapd 1.5.19-13 (i386 source)

2003-07-30 Thread Matthew Palmer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 Jul 2003 09:55:26 +1000
Source: cyrus-imapd
Binary: cyrus-admin cyrus-pop3d cyrus-common cyrus-imapd cyrus-dev cyrus-nntp
Architecture: source i386
Version: 1.5.19-13
Distribution: unstable
Urgency: low
Maintainer: Matthew Palmer [EMAIL PROTECTED]
Changed-By: Matthew Palmer [EMAIL PROTECTED]
Description: 
 cyrus-admin - CMU Cyrus mail system (administration tool)
 cyrus-common - CMU Cyrus mail system (common files)
 cyrus-dev  - CMU Cyrus mail system (developer files)
 cyrus-imapd - CMU Cyrus mail system (IMAP support)
 cyrus-nntp - CMU Cyrus mail system (NNTP support)
 cyrus-pop3d - CMU Cyrus mail system (POP3 support)
Closes: 113792 203458
Changes: 
 cyrus-imapd (1.5.19-13) unstable; urgency=low
 .
   * Changed update-inetd test so it actually does what it's supposed to do.
   * Put the HTML docs in the right place.  (Closes: #203458)
   * Now building with newer versions of tcl and libdb.  (Closes: #113792)
 Compiling with tcl8.4 generates errors, and I'm not keen to go beyond
 libdb3 as I'm not sure as to libdb4.1's compatibility.
Files: 
 6a04ce0d0e7330215f843a45b645ac74 707 mail extra cyrus-imapd_1.5.19-13.dsc
 8c8794b4b63f35b18224b1c02ec08a1f 34906 mail extra cyrus-imapd_1.5.19-13.diff.gz
 8b3e6fd2eec79c227c6158ce23429986 368120 mail extra cyrus-common_1.5.19-13_i386.deb
 17fb0eac6328f3291442bd29e50dd92f 119572 mail extra cyrus-imapd_1.5.19-13_i386.deb
 964b29b52ba8c4609cfb684aff7088c4 57466 mail extra cyrus-pop3d_1.5.19-13_i386.deb
 c276c0a82f223979e8c2f6c5aba7c7fb 121064 mail extra cyrus-nntp_1.5.19-13_i386.deb
 cedc4fd0bb5395611c6949a652c542b4 40364 mail extra cyrus-admin_1.5.19-13_i386.deb
 b2d380fa616d55440ab2e18a057a3249 76788 devel extra cyrus-dev_1.5.19-13_i386.deb

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

iD8DBQE/KFvsBEnrTWk1E4cRAs65AJ95NtVOYFzpFLZd7p1B4/4W2aCVJACePTzD
/HWdIiIJxBpUrk/g4QD5eGw=
=KEcZ
-END PGP SIGNATURE-


Accepted:
cyrus-admin_1.5.19-13_i386.deb
  to pool/main/c/cyrus-imapd/cyrus-admin_1.5.19-13_i386.deb
cyrus-common_1.5.19-13_i386.deb
  to pool/main/c/cyrus-imapd/cyrus-common_1.5.19-13_i386.deb
cyrus-dev_1.5.19-13_i386.deb
  to pool/main/c/cyrus-imapd/cyrus-dev_1.5.19-13_i386.deb
cyrus-imapd_1.5.19-13.diff.gz
  to pool/main/c/cyrus-imapd/cyrus-imapd_1.5.19-13.diff.gz
cyrus-imapd_1.5.19-13.dsc
  to pool/main/c/cyrus-imapd/cyrus-imapd_1.5.19-13.dsc
cyrus-imapd_1.5.19-13_i386.deb
  to pool/main/c/cyrus-imapd/cyrus-imapd_1.5.19-13_i386.deb
cyrus-nntp_1.5.19-13_i386.deb
  to pool/main/c/cyrus-imapd/cyrus-nntp_1.5.19-13_i386.deb
cyrus-pop3d_1.5.19-13_i386.deb
  to pool/main/c/cyrus-imapd/cyrus-pop3d_1.5.19-13_i386.deb


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



Accepted vcr 1.10-1 (i386 source)

2003-07-30 Thread David LaBissoniere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue, 29 Jul 2003 23:27:39 -0400
Source: vcr
Binary: vcr
Architecture: source i386
Version: 1.10-1
Distribution: unstable
Urgency: low
Maintainer: David LaBissoniere [EMAIL PROTECTED]
Changed-By: David LaBissoniere [EMAIL PROTECTED]
Description: 
 vcr- v4l video capture program
Closes: 186314 203361
Changes: 
 vcr (1.10-1) unstable; urgency=low
 .
   * New upstream release. (closes: #186314, #203361)
Files: 
 96df9c8046ec16b29adf4d589773fa59 568 graphics optional vcr_1.10-1.dsc
 1c06ac4b1693c28f19dce8d3504e983a 179337 graphics optional vcr_1.10.orig.tar.gz
 18793256bca681d120e397f38f2423ff 3260 graphics optional vcr_1.10-1.diff.gz
 83b8b62328bd528e79b70c17c738f7db 66274 graphics optional vcr_1.10-1_i386.deb

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

iD8DBQE/KFwTBmWZRqooXDwRAg2YAKDQCdjJAFXBmySqTML3sOf7HE2kKQCdGxYz
+9PWPWTa4cWebLJsY86y5H4=
=DY4k
-END PGP SIGNATURE-


Accepted:
vcr_1.10-1.diff.gz
  to pool/main/v/vcr/vcr_1.10-1.diff.gz
vcr_1.10-1.dsc
  to pool/main/v/vcr/vcr_1.10-1.dsc
vcr_1.10-1_i386.deb
  to pool/main/v/vcr/vcr_1.10-1_i386.deb
vcr_1.10.orig.tar.gz
  to pool/main/v/vcr/vcr_1.10.orig.tar.gz


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



Accepted kdebase 4:3.1.3-1 (i386 source all)

2003-07-30 Thread Christopher L Cheney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 15:00:00 -0500
Source: kdebase
Binary: kdesktop ksplash kcontrol kdeprint libkonq4-dev kpersonalizer kwin kdm klipper 
kappfinder ksmserver kfind kpager kdebase-kio-plugins kdebase khelpcenter kmenuedit 
xfonts-konsole ksysguard kate kicker libkonq4 konqueror-nsplugins konqueror ktip 
ksysguardd kdebase-bin kdebase-data konsole kdebase-dev
Architecture: source i386 all
Version: 4:3.1.3-1
Distribution: unstable
Urgency: low
Maintainer: Christopher L Cheney [EMAIL PROTECTED]
Changed-By: Christopher L Cheney [EMAIL PROTECTED]
Description: 
 kappfinder - KDE Application Finder
 kate   - KDE Advanced Text Editor
 kcontrol   - KDE Control Center
 kdebase- KDE Base metapackage
 kdebase-bin - KDE Base (binaries)
 kdebase-data - KDE Base (shared data)
 kdebase-dev - KDE Base (development files)
 kdebase-kio-plugins - KDE I/O Slaves
 kdeprint   - KDE Print
 kdesktop   - KDE Desktop
 kdm- KDE Display Manager
 kfind  - KDE File Find Utility
 khelpcenter - KDE Help Center
 kicker - KDE Desktop Panel
 klipper- KDE Clipboard
 kmenuedit  - KDE Menu Editor
 konqueror  - KDE's advanced File Manager, Web Browser and Document Viewer
 konqueror-nsplugins - Netscape plugin support for Konqueror
 konsole- KDE X terminal emulator
 kpager - KDE Desktop Pager
 kpersonalizer - KDE Personalizer
 ksmserver  - KDE Session Manager
 ksplash- KDE Splash Screen
 ksysguard  - KDE System Guard
 ksysguardd - KDE System Guard Daemon
 ktip   - Kandalf's Useful Tips
 kwin   - KDE Window Manager
 libkonq4   - Core libraries for KDE's file manager
 libkonq4-dev - Core libraries for KDE's file manager (development files)
 xfonts-konsole - Fonts used by the KDE Konsole
Changes: 
 kdebase (4:3.1.3-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 839447f461c74aeda5aa819fb3d5b49b 1187 x11 optional kdebase_3.1.3-1.dsc
 60d8107320680d74a05149a94944943c 14301544 x11 optional kdebase_3.1.3.orig.tar.gz
 5e92280c3b846e8e8411e05360678b82 1673311 x11 optional kdebase_3.1.3-1.diff.gz
 91e20bb2759b1cf04d4efeebaa12e452 16982 kde optional kdebase_3.1.3-1_all.deb
 806aa39f9a2d08f951b8aa6f17c65171 2191628 utils optional kdebase-data_3.1.3-1_all.deb
 5a0587014c85db070d69f035e39c27e5 33916 x11 optional xfonts-konsole_3.1.3-1_all.deb
 02b6e669c8b030bf3e67eb556844dfed 181984 utils optional kappfinder_3.1.3-1_i386.deb
 fb33237452b074b8411fd0fdc7a698bf 499226 editors optional kate_3.1.3-1_i386.deb
 64ea6be115f298c3f3de9e4c5939db58 5861966 utils optional kcontrol_3.1.3-1_i386.deb
 e0e3faeee2d162d4b76947efa5cd9bef 478336 utils optional kdebase-bin_3.1.3-1_i386.deb
 2ca2ad10cce62cb3a79c3ef602b8a84c 45352 libdevel optional kdebase-dev_3.1.3-1_i386.deb
 2734b0ea70777e110bab3632e445ae15 599014 utils optional 
kdebase-kio-plugins_3.1.3-1_i386.deb
 eb5f7ef90ab5a6d6621823bb7882ade8 992160 utils optional kdeprint_3.1.3-1_i386.deb
 09563791f8398f004841eca674b1a033 608208 utils optional kdesktop_3.1.3-1_i386.deb
 371e9d08e0615aa1dd624fc6327e093c 276476 x11 optional kdm_3.1.3-1_i386.deb
 1ed84e8a8391c8b9ce981dc2d79d3ff8 147704 utils optional kfind_3.1.3-1_i386.deb
 baf2cf173e48b9e04207d4faab18700c 816114 utils optional khelpcenter_3.1.3-1_i386.deb
 c65dc63e05791314eb45408ae8758e87 1279478 utils optional kicker_3.1.3-1_i386.deb
 fc7adc0edece8d6c3f7983e12a217ed0 128710 utils optional klipper_3.1.3-1_i386.deb
 a5305f6ee16e8973de4b5c59d3cb8322 101574 utils optional kmenuedit_3.1.3-1_i386.deb
 c536fb4ae1bfcecc933813bba30608db 1878018 web optional konqueror_3.1.3-1_i386.deb
 1b67324e65d57b5ad6eb6428fdd56e75 105456 web optional 
konqueror-nsplugins_3.1.3-1_i386.deb
 ef31a5cea6285e897406aa5fa1342fc6 475232 x11 optional konsole_3.1.3-1_i386.deb
 6e9118c673259e6ec4f6ec0f121660cb 88614 utils optional kpager_3.1.3-1_i386.deb
 40e994736f7fa7ee39f57884db4189c3 463460 utils optional kpersonalizer_3.1.3-1_i386.deb
 bedeffd5916da5f428b58c10afbf0950 98704 utils optional ksmserver_3.1.3-1_i386.deb
 b3841dae80634cadc5a100a0723ea1af 162430 utils optional ksplash_3.1.3-1_i386.deb
 12679ff00344ed66f0d1209577632310 333970 utils optional ksysguard_3.1.3-1_i386.deb
 64014c0d938ac29ccfbae979c5e027e3 42152 utils optional ksysguardd_3.1.3-1_i386.deb
 f8fd4de70ca7122e0a5564fe48c6dbd4 74210 utils optional ktip_3.1.3-1_i386.deb
 f488d67aae424b2c04f46f957ca75cf9 711846 utils optional kwin_3.1.3-1_i386.deb
 3997b1f758945220448e2031ec704a96 219354 libs optional libkonq4_3.1.3-1_i386.deb
 385fe3b18046ba1239b4d52064fc0900 227958 libdevel optional 
libkonq4-dev_3.1.3-1_i386.deb

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

iD8DBQE/KGcp0QZas444SvIRAtIuAKCSvPY7BsniXdn4+Ao7DFWLv879rACfQLPW
C4BRGGs0sdQXaCYTK9B/RQI=
=easK
-END PGP SIGNATURE-


Accepted:
kappfinder_3.1.3-1_i386.deb
  to pool/main/k/kdebase/kappfinder_3.1.3-1_i386.deb
kate_3.1.3-1_i386.deb
  to pool/main/k/kdebase/kate_3.1.3-1_i386.deb
kcontrol_3.1.3-1_i386.deb
  to 

Accepted zblast 1.2.1-7 (i386 source all)

2003-07-30 Thread Oohara Yuuma
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 Jul 2003 10:27:28 +0900
Source: zblast
Binary: zblast-svgalib zblast-data zblast-x11
Architecture: source all i386
Version: 1.2.1-7
Distribution: unstable
Urgency: high
Maintainer: Oohara Yuuma [EMAIL PROTECTED]
Changed-By: Oohara Yuuma [EMAIL PROTECTED]
Description: 
 zblast-data - sound files for zblast game
 zblast-svgalib - svgalib version of zblast, shoot 'em up space game
 zblast-x11 - X11 version of zblast, shoot 'em up space game
Closes: 203511
Changes: 
 zblast (1.2.1-7) unstable; urgency=high
 .
   * urgency set to high because this version fixes the buffer overflow
 which can be exploited for privilege escalation up to GID games
   * hiscore.c: use strncpy() instead of strcpy() to avoid a buffer overflow
 when the user name is too long (thanks to Steve Kemp [EMAIL PROTECTED]
 for the patch) (closes: #203511)
Files: 
 a3e96ca1267c21952bd9dd59462d0433 622 games optional zblast_1.2.1-7.dsc
 fd7adcfba53c8b3aa512d886ce0d110d 8800 games optional zblast_1.2.1-7.diff.gz
 0b7f7448f6bc4d8f3fffbbf2213829cd 500168 games optional zblast-data_1.2.1-7_all.deb
 582db5389b940a6b7991bfe9856d40b6 43316 games optional zblast-x11_1.2.1-7_i386.deb
 8b578d71106d0cb3b5e7d1cfc2528a14 40080 games optional zblast-svgalib_1.2.1-7_i386.deb

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

iD8DBQE/KHMFQNb0LvRkppURAuJLAJ9/Ni+/ItpALBZDhIH0afJTKtwdGQCfXli+
oNKxtkreM6JG0cajqVM5B0s=
=0jjC
-END PGP SIGNATURE-


Accepted:
zblast-data_1.2.1-7_all.deb
  to pool/main/z/zblast/zblast-data_1.2.1-7_all.deb
zblast-svgalib_1.2.1-7_i386.deb
  to pool/main/z/zblast/zblast-svgalib_1.2.1-7_i386.deb
zblast-x11_1.2.1-7_i386.deb
  to pool/main/z/zblast/zblast-x11_1.2.1-7_i386.deb
zblast_1.2.1-7.diff.gz
  to pool/main/z/zblast/zblast_1.2.1-7.diff.gz
zblast_1.2.1-7.dsc
  to pool/main/z/zblast/zblast_1.2.1-7.dsc


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



Accepted gnuplot-mode 1:0.6.0-1 (all source)

2003-07-30 Thread Ryuichi Arafune
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 Jul 2003 11:14:49 +0900
Source: gnuplot-mode
Binary: gnuplot-mode
Architecture: source all
Version: 1:0.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Ryuichi Arafune [EMAIL PROTECTED]
Changed-By: Ryuichi Arafune [EMAIL PROTECTED]
Description: 
 gnuplot-mode - Yet another Gnuplot mode for Emacs
Closes: 203487
Changes: 
 gnuplot-mode (1:0.6.0-1) unstable; urgency=low
 .
   * New upstream version.
   * closes: fix typo in Description. closes: #203487
Files: 
 ae6d8e7c2ddbca1e97f9bb861e7a65ca 592 math optional gnuplot-mode_0.6.0-1.dsc
 0920a822f78625a321e0cf5ff1272722 305709 math optional gnuplot-mode_0.6.0.orig.tar.gz
 e7320ee99c89700fc300269a33b96f11 3873 math optional gnuplot-mode_0.6.0-1.diff.gz
 14ad96dd2b57629f670f6c3b8e8ff7c9 143100 math optional gnuplot-mode_0.6.0-1_all.deb

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

iD8DBQE/KH7ONfYaRw9fFnYRApuBAJ4q5SevJRXVUemr20PmQyPLsaqtnwCfQrLd
/xgxE/usf+wEIcxMqAP8e6g=
=T0fF
-END PGP SIGNATURE-


Accepted:
gnuplot-mode_0.6.0-1.diff.gz
  to pool/main/g/gnuplot-mode/gnuplot-mode_0.6.0-1.diff.gz
gnuplot-mode_0.6.0-1.dsc
  to pool/main/g/gnuplot-mode/gnuplot-mode_0.6.0-1.dsc
gnuplot-mode_0.6.0-1_all.deb
  to pool/main/g/gnuplot-mode/gnuplot-mode_0.6.0-1_all.deb
gnuplot-mode_0.6.0.orig.tar.gz
  to pool/main/g/gnuplot-mode/gnuplot-mode_0.6.0.orig.tar.gz


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



Accepted flac 1.1.0-10 (i386 source)

2003-07-30 Thread Matt Zimmerman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 30 Jul 2003 22:41:51 -0400
Source: flac
Binary: liboggflac++0c102 libflac++-dev liboggflac-dev libflac4 libflac++2c102 
libflac-dev xmms-flac liboggflac++-dev flac liboggflac1
Architecture: source i386
Version: 1.1.0-10
Distribution: unstable
Urgency: low
Maintainer: Matt Zimmerman [EMAIL PROTECTED]
Changed-By: Matt Zimmerman [EMAIL PROTECTED]
Description: 
 flac   - Free Lossless Audio Codec - command line tools
 libflac++-dev - Free Lossless Audio Codec - C++ development library
 libflac++2c102 - Free Lossless Audio Codec - C++ runtime library
 libflac-dev - Free Lossless Audio Codec - C development library
 libflac4   - Free Lossless Audio Codec - runtime C library
 liboggflac++-dev - Free Lossless Audio Codec - C++ development library (ogg)
 liboggflac++0c102 - Free Lossless Audio Codec - C++ runtime library (ogg)
 liboggflac-dev - Free Lossless Audio Codec - C development library (ogg)
 liboggflac1 - Free Lossless Audio Codec - runtime C library (ogg)
 xmms-flac  - Free Lossless Audio Codec - XMMS input plugin
Closes: 203580
Changes: 
 flac (1.1.0-10) unstable; urgency=low
 .
   * Touch man/flac.1, to avoid trying to build it even if the timestamp is
 skewed (Closes: #203580)
Files: 
 829f25e2d0cb50177f2b00652a0e2c3d 775 sound optional flac_1.1.0-10.dsc
 a98945ca46d317ac8ed7cb1b5d04c0e0 51326 sound optional flac_1.1.0-10.diff.gz
 816c638f09072c64765b0116038c3e03 479360 sound optional flac_1.1.0-10_i386.deb
 a4da8a040c2fba4f2633d2a735c18c71 92270 libs optional libflac4_1.1.0-10_i386.deb
 471e4d331c6cc89f5ab3996b3b12bac8 154128 libdevel optional 
libflac-dev_1.1.0-10_i386.deb
 6745cdbae05a4cf9cdc2c0a103adf94e 13622 libs optional liboggflac1_1.1.0-10_i386.deb
 9b58270443656701169fc1ebe7eec1e0 19716 libdevel optional 
liboggflac-dev_1.1.0-10_i386.deb
 2a86ba2a2c179208a9de6560db79db0b 37654 libs optional libflac++2c102_1.1.0-10_i386.deb
 6832cc236ab8e86790fba464783e0d6c 43366 libdevel optional 
libflac++-dev_1.1.0-10_i386.deb
 01854945ec6882266e3d223cfe82de7c 13934 libs optional 
liboggflac++0c102_1.1.0-10_i386.deb
 7a9be930c1c195d294b7115ada5ce014 15600 libdevel optional 
liboggflac++-dev_1.1.0-10_i386.deb
 c1ab7d4bb56d1c9d72e495bdd451145d 49566 sound optional xmms-flac_1.1.0-10_i386.deb

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

iD8DBQE/KISAArxCt0PiXR4RAoh3AKCRzIjTsnuoIv/qSyNh1TK5cSjGngCg2FMa
afbGfkkdv8FMu8xV7TV7xJ4=
=TvbS
-END PGP SIGNATURE-


Accepted:
flac_1.1.0-10.diff.gz
  to pool/main/f/flac/flac_1.1.0-10.diff.gz
flac_1.1.0-10.dsc
  to pool/main/f/flac/flac_1.1.0-10.dsc
flac_1.1.0-10_i386.deb
  to pool/main/f/flac/flac_1.1.0-10_i386.deb
libflac++-dev_1.1.0-10_i386.deb
  to pool/main/f/flac/libflac++-dev_1.1.0-10_i386.deb
libflac++2c102_1.1.0-10_i386.deb
  to pool/main/f/flac/libflac++2c102_1.1.0-10_i386.deb
libflac-dev_1.1.0-10_i386.deb
  to pool/main/f/flac/libflac-dev_1.1.0-10_i386.deb
libflac4_1.1.0-10_i386.deb
  to pool/main/f/flac/libflac4_1.1.0-10_i386.deb
liboggflac++-dev_1.1.0-10_i386.deb
  to pool/main/f/flac/liboggflac++-dev_1.1.0-10_i386.deb
liboggflac++0c102_1.1.0-10_i386.deb
  to pool/main/f/flac/liboggflac++0c102_1.1.0-10_i386.deb
liboggflac-dev_1.1.0-10_i386.deb
  to pool/main/f/flac/liboggflac-dev_1.1.0-10_i386.deb
liboggflac1_1.1.0-10_i386.deb
  to pool/main/f/flac/liboggflac1_1.1.0-10_i386.deb
xmms-flac_1.1.0-10_i386.deb
  to pool/main/f/flac/xmms-flac_1.1.0-10_i386.deb


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



Accepted tidy 20030716-2 (i386 source)

2003-07-30 Thread Jason Thomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 31 Jul 2003 13:27:52 +1000
Source: tidy
Binary: tidy
Architecture: source i386
Version: 20030716-2
Distribution: unstable
Urgency: low
Maintainer: Jason Thomas [EMAIL PROTECTED]
Changed-By: Jason Thomas [EMAIL PROTECTED]
Description: 
 tidy   - HTML syntax checker and reformatter
Closes: 194965 196053 200148
Changes: 
 tidy (20030716-2) unstable; urgency=low
 .
   * updated manpage
 (closes: #194965, #196053, #200148)
Files: 
 ddad40d34d1064a097c2944b7e66890f 557 web optional tidy_20030716-2.dsc
 379935e9706fe18ffb59e81ebcc45fd9 10610 web optional tidy_20030716-2.diff.gz
 67f1f1fde26db24fb0f879e317d4534c 103254 web optional tidy_20030716-2_i386.deb

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

iD8DBQE/KKK87cYwRJJSiL4RAmsqAJ98K3ls3mcBWazkwxUSI+pKn5C2SgCgv2Lr
duVU0gh0hjNhj6PKA/Aq+g0=
=JsSi
-END PGP SIGNATURE-


Accepted:
tidy_20030716-2.diff.gz
  to pool/main/t/tidy/tidy_20030716-2.diff.gz
tidy_20030716-2.dsc
  to pool/main/t/tidy/tidy_20030716-2.dsc
tidy_20030716-2_i386.deb
  to pool/main/t/tidy/tidy_20030716-2_i386.deb


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



sixpack

2003-07-30 Thread Daniel Martins

Sei que i Marcio testava trabalhando com sixpack e desistiu

De qq forma vi que ele tem uma pagian na sourceforge fixa

http://sourceforge.net/projects/sixpack

Par que mgosta de Perl e quiser fazer um muito util contribuicao para
a comunidade Debian eis uma boa pedida.

Daniel




Umbrello para a testing

2003-07-30 Thread Daniel Martins
Outra pedida eh o Umbrello que eh um pacote para UML (Unified
Modelling Language diagram program) 

http://uml.sourceforge.net/

Na pagina acima tem um link para o unstable da Debian mas este
necessita da kdelibs4 

De qq forma creio que este pacote se apresenta melhor que o ArgoUML
que eh aquela lentidao em Java ...

Daniel




  1   2   >