Re: [OT] Re: Bug#213897: ITP: libclass-dbi-abstractsearch-perl -- Abstract Class::DBI's SQL with SQL::Abstract

2003-10-07 Thread Graham Wilson
On Mon, Oct 06, 2003 at 08:49:25PM -0400, Joe Drew wrote:
 On Mon, 2003-10-06 at 18:06, Richard Braakman wrote:
It's::not::like::this::sort::of::jargon::is::difficult::to::understand,::or
::that::writing::package::descriptions::which::rely::entirely::on::one's
::understanding of::what::other::packages::do::is::uncommon.
   
   I really hope you used sed or some workalike to accomplish that.
  
  workalike?  sed is a workalike for the real editor.
  
  :%s/ /::/g
 
 For some reason, I had it in my mind that Branden used emacs, which
 spawned the 'workalike' comment. I have no evidence to back that up,
 though.
 
 Emacs would be a good editor for the Overfiend, though.

I think he uses vim. Check the comments in some of the X scripts at
least:

 $ tail -n1 /etc/X11/Xsession
 # vim:ai:et:sts=2:sw=2:tw=80:

-- 
gram


signature.asc
Description: Digital signature


Re: Debian should not modify the kernels!

2003-10-07 Thread Scott James Remnant
On Mon, 2003-10-06 at 21:19, martin f krafft wrote:

 I'd appreciate if you kept your opinions to yourself,
 
Can you do the same?

Scott

(Unsigned as I've already packed my keyring for Linux Expo today)
-- 
Have you ever, ever felt like this?
Had strange things happen?  Are you going round the twist?




Hardcoding of .la file paths in .la files

2003-10-07 Thread Chris Cheney
Does anyone happen to know why .la files hardcode the paths to .la files
that they depend on?

For example:

dependency_libs=' -lm -L/usr/lib /usr/lib/libogg.la'

This is about to bite Debian hard with some of the XFree86 libraries
moving to /usr/lib.

Chris Cheney

---

# libvorbis.la - a libtool library file
# Generated by ltmain.sh - GNU libtool 1.4.2a (1.922.2.100 2002/06/26 07:25:14)
#
# Please DO NOT delete this file!
# It is necessary for linking the library.

# The name that we can dlopen(3).
dlname='libvorbis.so.0'

# Names of this library.
library_names='libvorbis.so.0.2.0 libvorbis.so.0 libvorbis.so'

# The name of the static archive.
old_library='libvorbis.a'

# Libraries that this one depends upon.
dependency_libs=' -lm -L/usr/lib /usr/lib/libogg.la'

# Version information for libvorbis.
current=2
age=2
revision=0

# Is this an already installed library?
installed=yes

# Files to dlopen/dlpreopen
dlopen=''
dlpreopen=''

# Directory that this library needs to be installed in:
libdir='/usr/lib'


signature.asc
Description: Digital signature


Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Marcelo E. Magallon
On Mon, Oct 06, 2003 at 08:26:44PM -0400, Marco Paganini wrote:

  I'm packaging a Python program called ask for distribution.
  Currently, the main executable is called ask.py.

 a. Whack upstream with a cluebat.

 b. Repeat a.

 c. What happens when the program gets reimplemented in another
language?

 d. Keep repeating a.

-- 
Marcelo




Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Marcelo E. Magallon
On Tue, Oct 07, 2003 at 01:33:01AM -0500, Chris Cheney wrote:

  Does anyone happen to know why .la files hardcode the paths to .la
  files that they depend on?

 Anal-retentiveness wrt using the exact same library originaly used.

  This is about to bite Debian hard with some of the XFree86 libraries
  moving to /usr/lib.

 Can you be more specific?

-- 
Marcelo




Re: Debian should not modify the kernels!

2003-10-07 Thread martin f krafft
also sprach Steve Langasek [EMAIL PROTECTED] [2003.10.07.0104 +0200]:
 As stated above, this is not a reasonable restriction.  An
 arbitrary kernel patch package might conflict with *any* changes
 made to the kernel-source package, including simple security
 fixes. 

A simple fix is easier to work around than a new IP stack.

-- 
Please do not CC me when replying to lists; I read them!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer, admin, and user
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP subkeys? Use subkeys.pgp.net as keyserver!


pgpjPGgp02UKl.pgp
Description: PGP signature


Re: Kernel source 2.4.22 and ipvs problems

2003-10-07 Thread Herbert Xu
Bao C. Ha [EMAIL PROTECTED] wrote:
 
 If I want both the freeswan module capability and IPVS, how should
 I proceed.  

If all you need is to run freeswan, then you can unapply the IPSEC patch,
and simply use KLIPS.

If you need the new stack, then you will need to fix the conflicts.
It shouldn't be difficult as IPVS is already part of 2.6.

Cheers,
-- 
Debian GNU/Linux 3.0 is out! ( http://www.debian.org/ )
Email:  Herbert Xu ~{PmVHI~} [EMAIL PROTECTED]
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt




Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Scott James Remnant
On Tue, 2003-10-07 at 07:33, Chris Cheney wrote:

 Does anyone happen to know why .la files hardcode the paths to .la files
 that they depend on?
 
To guarantee that you don't end up linking with something totally
different if the app being compiled happens to have a different search
path.

What's more of a problem here is that libtool actually links dependency
libraries of dependencies ... it's something I've been working on for a
while.

 This is about to bite Debian hard with some of the XFree86 libraries
 moving to /usr/lib.
 
How?  XFree86 doesn't use generally use libtool -- I only see
libXrender.la in my /usr/X11R6/lib

Scott

(Unsigned as keyring packed or Expo)
-- 
Have you ever, ever felt like this?
Had strange things happen?  Are you going round the twist?




Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Chris Cheney
On Tue, Oct 07, 2003 at 10:26:45AM +0200, Marcelo E. Magallon wrote:
 On Tue, Oct 07, 2003 at 01:33:01AM -0500, Chris Cheney wrote:
 
   Does anyone happen to know why .la files hardcode the paths to .la
   files that they depend on?
 
  Anal-retentiveness wrt using the exact same library originaly used.
 
   This is about to bite Debian hard with some of the XFree86 libraries
   moving to /usr/lib.
 
  Can you be more specific?

-rw-r--r--  22k  2003-10-07 01:49  libxrender1_0.8.3-1_i386.deb

The new version of libXrender moves from /usr/X11R6/lib to /usr/lib
which has already started to cause build failures... :\  I am not
certain if Branden plans to move any others to /usr/lib, but if he does
hopefully he will do it very soon.

Chris


signature.asc
Description: Digital signature


Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Marcelo E. Magallon
  What's more of a problem here is that libtool actually links
  dependency libraries of dependencies ... it's something I've been
  working on for a while.

 That's a bug, not a feature.  From libtool's perspective at least.

 You have to keep in mind that libtool is designed to work around
 extremely broken behaviour in legacy systems, and there *are* some
 systems where the behaviour you point out is required.  Libtool's
 general approach to the problem leaves something to be desired, that's
 correct.  It basically punishes every system it supports because of the
 sins of a few.

 I've always thought that the correct solution in Debian's context would
 be to have a ltmain.sh script *for* Debian, command-line compatible
 with upstream's, but implementing whatever's right for us:
 inter-library dependencies, no rpath, stuff like that.  The other
 option of course is to actually fix libtool to do the right thing on
 gnu-linux systems.  But that's a sizeable ammount of work.

-- 
Marcelo




Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Chris Cheney
On Tue, Oct 07, 2003 at 09:30:56AM +0100, Scott James Remnant wrote:
 On Tue, 2003-10-07 at 07:33, Chris Cheney wrote:
 
  Does anyone happen to know why .la files hardcode the paths to .la files
  that they depend on?
  
 To guarantee that you don't end up linking with something totally
 different if the app being compiled happens to have a different search
 path.
 
 What's more of a problem here is that libtool actually links dependency
 libraries of dependencies ... it's something I've been working on for a
 while.

I seem to recall you working on that earlier this year, how is it
coming along?

  This is about to bite Debian hard with some of the XFree86 libraries
  moving to /usr/lib.
  
 How?  XFree86 doesn't use generally use libtool -- I only see
 libXrender.la in my /usr/X11R6/lib

Which is the one moving to /usr/lib. (I am not sure if any others are
planning to be moved.)

Chris


signature.asc
Description: Digital signature


Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Chris Halls
On Mon, Oct 06, 2003 at 07:50:07PM -0500, John Hasler wrote:
 Besides, if dumb names were a problem we'd do something about
 openoffice.org.

$ ls /usr/bin/*openoffice*
/usr/bin/openoffice

What is dumb about that?  The thread is about naming of files within
/usr/bin.

Chris


pgpsBIj7fhkCn.pgp
Description: PGP signature


Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Robert Millan
  I'm packaging a Python program called ask for distribution.
  Currently, the main executable is called ask.py.
 
  a. Whack upstream with a cluebat.

Euh, I think you messed up.  Marco *is* upstream.

On the other hand, Marco being upstream defeats John's argument:

 Leave it.  The program will be known as ask.py everywhere outside
 Debian.  Changing the name is asking for confusion.

So perhaps the discussion should be retaken.

P.S: keep me on CC, i'm not subscribed.

-- 
Robert Millan

[..] but the delight and pride of Aule is in the deed of making, and in the
thing made, and neither in possession nor in his own mastery; wherefore he
gives and hoards not, and is free from care, passing ever on to some new work.

 -- J.R.R.T, Ainulindale (Silmarillion)




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Matthew Palmer
On Tue, Oct 07, 2003 at 01:24:37PM +, Robert Millan wrote:
   I'm packaging a Python program called ask for distribution.
   Currently, the main executable is called ask.py.
  
   a. Whack upstream with a cluebat.
 
 Euh, I think you messed up.  Marco *is* upstream.
 
 So perhaps the discussion should be retaken.

I'm pretty sure I remember a discussion earlier this year about this exact
same topic.  Basically, the result came down to scripts shouldn't have
language-specific extensions, because they add nothing useful, and because
the program could be rewritten in another language to do exactly the same
thing, and so the language extension would then be incorrect.

Unfortunately, I can't find the discussion, so I can't give more details. 
But, in this case, I'd suggest that the author find a better name.  If 'ask'
is a common word, and shouldn't be used as a command, then surely the same
applies to 'ask.py' - after all, someone else could write another 'ask'
script in Python, and apply the same logic - which would result in a name
clash again.  Oops.

 P.S: keep me on CC, i'm not subscribed.

Done.

- Matt




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread John Hasler
Chris writes:
 $ ls /usr/bin/*openoffice*
 /usr/bin/openoffice

 What is dumb about that?  The thread is about naming of files within
 /usr/bin.

Since the package is named openoffice.org supposedly for trademark reasons
I assumed that the binary was as well.
-- 
John Hasler
[EMAIL PROTECTED] (John Hasler)
Dancing Horse Hill
Elmwood, WI




Re: Debian should not modify the kernels!

2003-10-07 Thread Greg Folkert
On Mon, 2003-10-06 at 15:39, martin f krafft wrote:
 also sprach Eduard Bloch [EMAIL PROTECTED] [2003.09.22.1207 +0200]:
  Let's create a package called linux-2.4.22 or
  linux-2.4.22-pure-vanilla-source-for-you-to-patch with a script which
  does exactly this.
 
 I oppose. Let's get rid of kernel-{source,image,etc.} and provide
 linux-kernel-*. Then provide kernel-patch-debian and
 kernel-patch-ipsec as separate packages!

A-Freaking-MEN.

kernel-patch-2.4.x-debian would be rather large as well.
kernel-patch-2.4.x-ipsec makes things better.
kernel-source-2.4.x would then be able to be kernel.org schtuff

But, this would alleviate SOME of the problems. This would be NO DOUBT
very helpful. The Binary Kernel (as in the archives could have any an
all patches you see fit Herbert)

Would it NO doubt make entirely MUCH more sense, to only have to D/L the
Source Code once. It would definitely reduce the bandwidth needed for
making successive revisions of the patched kernel much less storage
required as well.

Please... At least consider the things that are being said(typed)...
that you patently refuse to even consider.
-- 
greg, [EMAIL PROTECTED]
REMEMBER ED CURRY! http://www.iwethey.org/ed_curry

Cher ami, votre tendre chapeau a heurte trois de mes phalanges avec une
grace incomparable.


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


Re: A new way to specify versionned dependencies may be needed

2003-10-07 Thread Anthony Towns
On Sat, Oct 04, 2003 at 01:46:08AM +0200, Nicolas Boullis wrote:
 Moreover, that does not answer to my real question: is there a good 
 reason not to implement such an extended syntax for versionned 
 relationships. 

Probably not; but there needs to be a good reason to do it. It has to
be implemented in dpkg, apt, testing, and everything else that worries
about conflicts, and to ensure upgrades work okay, can't be used for
a release after it's rolled out (so, assuming a release once a year,
not until early 2006). Do you care enough?

Cheers,
aj

-- 
Anthony Towns [EMAIL PROTECTED] http://azure.humbug.org.au/~aj/
I don't speak for anyone save myself. GPG signed mail preferred.

Australian DMCA (the Digital Agenda Amendments) Under Review!
-- http://azure.humbug.org.au/~aj/blog/copyright/digitalagenda


pgpf9xg4L1rQs.pgp
Description: PGP signature


Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Steve Langasek
On Tue, Oct 07, 2003 at 11:11:35AM +0200, Marcelo E. Magallon wrote:
   What's more of a problem here is that libtool actually links
   dependency libraries of dependencies ... it's something I've been
   working on for a while.

  That's a bug, not a feature.  From libtool's perspective at least.

No, it's still a damn bug; the problem is that libtool upstream
has always prioritized functionality on broken architectures above
correctness on non-broken architectures, so it's not a bug that's
gotten attention.  I'm grateful to Scott for daring to take it on.

-- 
Steve Langasek
postmodern programmer


pgpVownKUFJgb.pgp
Description: PGP signature


Re: Debian should not modify the kernels!

2003-10-07 Thread Colin Watson
On Tue, Oct 07, 2003 at 09:48:32AM -0400, Greg Folkert wrote:
 But, this would alleviate SOME of the problems. This would be NO DOUBT
 very helpful. The Binary Kernel (as in the archives could have any an
 all patches you see fit Herbert)
 
 Would it NO doubt make entirely MUCH more sense, to only have to D/L the
 Source Code once.

Would it be POSSIBLE to LOSE the Zippy-style CAPITALIZATION, please?

Thanks,

-- 
Colin Watson  [EMAIL PROTECTED]




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Marcelo E. Magallon
a. Whack upstream with a cluebat.
  
  Euh, I think you messed up.  Marco *is* upstream.

 That doesn't preclude whackig upstream with a cluebat :-)  Here, he can
 use mine.

-- 
Marcelo




RE: Package verification

2003-10-07 Thread Kim Lester

The comments about debsums are useful and contribute
to the whole issue butthey still miss one of my
key points/queries.

There is no way to verify/correct the MODE, USER, GROUP, TYPE
of any files installed in a pkg.
If I am wrong please point out where, with an installed pkg
(and preferably without having a copy of the .dpkg around)
once can tell if a pkg is _installed_correctly_.

This is a real issue in the enterprise world and I think
debian is a better system than Redhat but unless the developer
community becomes aware and proactive about meeting enterprise
needs we're going to lose out to a competing system which
_I_ believe is inferior, but which is getting a lot of commerical
support. I don't greatly care about competition per-se, but I do
care about improving debian to meet my needs and I'm sure those
of others too.

So is the developer community interested in working with me
to add these (and other important features) for a larger
commercial environments. Bear in mind I have real coded
solutions to many of these issues which I hope to be able
to share

One of the solutions I have implemented is a file containing:
type(eg Dir, Sym, File), path, mode, uid, gid, symlink destination
and in my case md5sum and file size (deb would use the sep md5sum file)
[correct size is useful for humans :-)]
This permits my command pkginfo -v to verify that a pkg is
installed correctly and can even fix certain errors (eg mode/uid/gid)
if requested.


regards
kim

 -Original Message-
 From: Brian May [mailto:[EMAIL PROTECTED]
 Sent: Sunday, October 05, 2003 9:39 AM
 To: Fabien Ninoles
 Cc: Kim Lester; debian-devel@lists.debian.org
 Subject: Re: Package verification and /usr/bin/install tool
 replacements
 
 
 On Sat, Oct 04, 2003 at 01:42:36PM -0400, Fabien Ninoles wrote:
  Although your proposition seems more complete, have you try
  debsums and checksecurity?  debsums with the following
  feature in /etc/apt/apt.conf
  
  DPkg::Post-Invoke {
  debsums --generate=nocheck -sp /var/cache/apt/archives;
  };




Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Richard Braakman
On Tue, Oct 07, 2003 at 09:30:56AM +0100, Scott James Remnant wrote:
 On Tue, 2003-10-07 at 07:33, Chris Cheney wrote:
 
  Does anyone happen to know why .la files hardcode the paths to .la files
  that they depend on?
  
 To guarantee that you don't end up linking with something totally
 different if the app being compiled happens to have a different search
 path.

Do they really believe that?

First, the filename of a .la file doesn't guarantee anything of the
sort, because the name isn't versioned.  It will be replaced with
an incompatible one with every major upgrade.

Second, if a distribution really wants to keep compatibility in such
a case, the best way is to move the old library to a special oldlibs
directory and tinker with the search path.  (This is better than
putting the new library in an unusual place, because the rest of
the world expects libraries to be in /usr/lib).

Thus, this approach breaks the best way in which compatibility CAN
be preserved.

Richard Braakman




Re: Package verification

2003-10-07 Thread Steve Kemp
On Wed, Oct 08, 2003 at 12:24:37AM +1000, Kim Lester wrote:

 There is no way to verify/correct the MODE, USER, GROUP, TYPE
 of any files installed in a pkg.

  That appears to be the case, partly because permissions may be changed
 from those files which are contained withing the .deb file via the
 postinst scripts.

  If you wanted to handle this yourself you could add a hook to apt,
 in the same way that 'apt-listchanges' does - so that new installations
 of packages would get their information logged somewhere.

  However if you're using this for a real enterprise system presumably
 you'd want all your sums/inode info/etc stored onto CD-ROM or of
 machine?

 One of the solutions I have implemented is a file containing:
 type(eg Dir, Sym, File), path, mode, uid, gid, symlink destination
 and in my case md5sum and file size (deb would use the sep md5sum file)
 [correct size is useful for humans :-)]

  Congratulations, you just reinvented tripwire.

  If this file can be updated, securely, at package install post your
 patch and we'll take it from there.

 This permits my command pkginfo -v to verify that a pkg is
 installed correctly and can even fix certain errors (eg mode/uid/gid)
 if requested.

   Tripwire's database, (and tiger's or any of the other systems which
  use a database like this), can also be used in such a way.

   I'd love to see dpkg be capable of doing this, but I really don't
  see that this is a huge stumbling block in the adoptation of Debian
  in the enterprise as your rant appears to suggest.

   I'd argue that the lack of Oracle support is more significant than
  the ability to natively verify package installs.

-- 
Steve
--
# Debian Security Audit Project
http://www.steve.org.uk/Debian/




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Daniel Burrows
On Mon, Oct 06, 2003 at 08:26:44PM -0400, Marco Paganini [EMAIL PROTECTED] 
was heard to say:
 I'm packaging a Python program called ask for distribution. Currently,
 the main executable is called ask.py. It seems unusual (and why not say,
 *ugly*) to have the language extension added to the program, but in this
 case, it was a deliberate decision to avoid clash with any other programs
 (ask is a pretty common name) under /usr/bin. What is the Debian policy
 on this? What would be the best approach, to leave the program as ask.py
 (unusual) or rename it to ask (possibility of name conflicts and breakage
 of existing installations)?

  I think it's worth pointing out that if a file called ask.py is in
/usr/bin, the statement:

import ask

  from a Python program in /usr/bin which hasn't modified its sys.path
will, unless I am terribly confused, pick up ask.py instead of whatever
module it was looking for.  I'm not aware of any module named ask
right now, but I can certainly imagine someone creating one.

  Daniel

-- 
/ Daniel Burrows [EMAIL PROTECTED] ---\
|  Put no trust in cryptic comments.  |
\-- A duck! -- http://www.python.org -/




Re: Which packages will hold up the release?

2003-10-07 Thread Björn Stenberg
Steve Langasek wrote:
 Hypothetical example:
 
 29 packages wait on (151 packages are stalled by) libxml2.  This package
 is too young, and should be a valid candidate in 8 days.
 
 Suppose that the libxml2 source package provided not only the
 libxml2-python2.3 binary package, but also a libxml2-python package that
 depended on python ( 2.3).  If that were the case, then even after
 libxml2 became a valid candidate in its own right, it would still be
 held up by the python2.3 transition.

Thank you. Some followup questions:

1) How are meta packages handled, such as libz-dev that libxml2 depends on. 
There is no package or binary with that name listed in Sources.

2) How is meta package versioning handled? The gcc-defaults package, version
1.9, is the only package providing the gcc binary (without -version suffix) of
which many packages require version = 2.95.

-- 
Björn




Bug#214601: ITP: r-cran-qtl -- [Biology] GNU R package for genetic marker linkage analysis

2003-10-07 Thread Steffen Moeller
Package: wnpp
Version: unavailable; reported 2003-10-07
Severity: wishlist


* Package name: r-cran-qtl
  Version : 0.9.7-21
  Upstream Author : Karl W. Broman [EMAIL PROTECTED], Hao Wu [EMAIL 
PROTECTED]
* URL : http://www.biostat.jhsph.edu/~kbroman/qtl/index.html
* License : GPL
  Description : [Biology] GNU R package for genetic marker linkage analysis

 From the tutorial: R/qtl is an extensible, interactive environment for
 mapping quantitative trait loci (QTLs) in experimental crosses. It is
 implemented as an add-on-package for the freely available and widely used
 statistical language/software R (see http://www.r-project.org). [...] The
 user will benefit from the seamless integration of the QTL mapping
 software into a general statistical analysis program.  [...]
 .
 The current version of R/qtl includes facilities for estimating
 genetic maps, identifying genotyping errors, and performing single-QTL
 genome scans and two-QTL, two-dimensional genome scans, by interval
 mapping (with EM algorithm), Haley-Knott regression, and multiple
 imputation. All of this may be done in the presence of covariates
 (such as sex, age or treatment). The fit of higher-order QTL models,
 with sophisticated techniques for model comparisons and model search,
 will be incorporated soon.


-- System Information:
Debian Release: testing/unstable
Architecture: i386
Kernel: Linux latitude 2.4.20 #11 Tue Jun 3 14:21:52 CEST 2003 i686
Locale: LANG=C, LC_CTYPE=C




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Bill Allombert
Marco Paganini wrote:

  I'm packaging a Python program called ask for distribution. Currently,
  the main executable is called ask.py. It seems unusual (and why not say,
  *ugly*) to have the language extension added to the program, but in this
  case, it was a deliberate decision to avoid clash with any other programs
  (ask is a pretty common name) under /usr/bin. What is the Debian policy
  on this? What would be the best approach, to leave the program as ask.py
  (unusual) or rename it to ask (possibility of name conflicts and breakage
  of existing installations)?

Please rename it to 'ask' or to something better.
 
See debian-policy thread (msgid [EMAIL PROTECTED])

policy should frown on programs in PATH with language extentions (ie, .pl)

Cheers,
-- 
Bill. [EMAIL PROTECTED]

Imagine a large red swirl here. 




Re: Which packages will hold up the release?

2003-10-07 Thread Steve Langasek
On Tue, Oct 07, 2003 at 05:23:32PM +0200, Björn Stenberg wrote:
 Steve Langasek wrote:
  Hypothetical example:
  
  29 packages wait on (151 packages are stalled by) libxml2.  This package
  is too young, and should be a valid candidate in 8 days.
  
  Suppose that the libxml2 source package provided not only the
  libxml2-python2.3 binary package, but also a libxml2-python package that
  depended on python ( 2.3).  If that were the case, then even after
  libxml2 became a valid candidate in its own right, it would still be
  held up by the python2.3 transition.

 Thank you. Some followup questions:

 1) How are meta packages handled, such as libz-dev that libxml2 
 depends on. There is no package or binary with that name listed in 
 Sources.

The testing scripts (barring any bugs) check to make sure that a given
candidate package would be *installable* on a system composed only of
testing packages.  This means that it treats virtual packages the same
way that dpkg does on install: by looking for available packages that
Provide: the needed virtual package.

 2) How is meta package versioning handled? The gcc-defaults package, 
 version 1.9, is the only package providing the gcc binary (without 
 -version suffix) of which many packages require version = 2.95.

The term metapackage is a gratuitous label, here.  There is a real
binary package (as opposed to a virtual package) in the archive named
gcc, which comes from the gcc-defaults source package; and its
versions are handled just like those of any other packages.

-- 
Steve Langasek
postmodern programmer


pgpT0ooAD1hMH.pgp
Description: PGP signature


gnucash-sql?

2003-10-07 Thread Carl B. Constantine
I think there used to be a packaged called gnucash-sql which allowed
gnucash to save data to a postgres database. That package doesn't seem
to exist any longer. Has the functionality of gnucash-sql been merged
into gnucash proper?

-- 
 .''`.  Carl B. Constantine
: :' : [EMAIL PROTECTED]
`. `'GnuPG: 135F FC30 7A02 B0EB 61DB  34E3 3AF1 DC6C 9F7A 3FF8
  `-  Debian GNU/Linux -- The power of freedom
  Claiming that your operating system is the best in the world because more
  people use it is like saying McDonalds makes the best food in the world.


pgp9zASCJ7Vrl.pgp
Description: PGP signature


Re: Debian should not modify the kernels!

2003-10-07 Thread Anthony DeRobertis
On Monday, Oct 6, 2003, at 16:20 US/Eastern, martin f krafft wrote:
It has existed in the freeswan patch for a while!
Let's be serious, FreeS/WAN has serious issues! Being at war with the 
kernel routing machinery, for example. 




Re: Which packages will hold up the release?

2003-10-07 Thread Matthias Klose
Björn Stenberg writes:
 2) How is meta package versioning handled? The gcc-defaults package, version
 1.9, is the only package providing the gcc binary (without -version suffix) of
 which many packages require version = 2.95.

gcc-defaults implements it's own version handling. see the source.




Re: Debian should not modify the kernels!

2003-10-07 Thread Anthony DeRobertis
On Monday, Oct 6, 2003, at 18:58 US/Eastern, Adam McKenna wrote:
I don't see how the package being in unstable affects any part of this
argument.  Will the feature backport be less desirable when the
kernel-source package is released in a stable revision of Debian?
The whole point of not doing feature backports to stable is to keep 
stable stable. You won't see a security upgrade in stable that also 
happens to replace the VFS layer, for example.

If I install woody on a system, I expect it to continue working 
essentially the same way --- minus security holes --- until I upgrade 
to sarge. Replacing the kernel IP stack in woody would thus be a no-no.

The argument doesn't apply if I'm tracking unstable. If I track 
unstable I should expect that stuff will change relatively routinely, 
possibly causing breakage. That is why it's called unstable, after 
all.

If the IPSec patched kernels make it into sarge, that's fine. Major 
changes are expected between woody and sarge as they are with ANY new 
stable release.




Re: Debian should not modify the kernels!

2003-10-07 Thread Greg Folkert
On Tue, 2003-10-07 at 09:51, Colin Watson wrote:
 On Tue, Oct 07, 2003 at 09:48:32AM -0400, Greg Folkert wrote:
  Would it NO doubt make entirely MUCH more sense, to only have to D/L the
  Source Code once.
 
 Would it be POSSIBLE to LOSE the Zippy-style CAPITALIZATION, please?

Would it be *POSSIBLE* for you to *CHOP* off your arms?

I have been posting like that for years. If you knew me personally,
you'd understand, it goes with the way I speak or tell stories. I can
provide you examples showing over 10 years of it being my norm. And you
are about the... first one to be annoyed and voice it.

Colin, this crap about the Kernel Source has gotten me wanting to
express my views with more notice in them. It has become more of a pain
to fix Herbert's proactive measures with feature enhancements rather
then just getting things done. Sure I like IPSEC in the stack... but
when I want to patch it in. 2.6.x is a different story.

kill-file me if you don't like the cApItIzAtIoN. (at least it is not
|-|4xX0rZ tYp3 and is readable.)

-- 
greg, [EMAIL PROTECTED]
REMEMBER ED CURRY! http://www.iwethey.org/ed_curry

You have the vocabulary of an aspidistra in panic.


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


Re: Debian should not modify the kernels!

2003-10-07 Thread martin f krafft
also sprach Anthony DeRobertis [EMAIL PROTECTED] [2003.10.07.1935 +0200]:
 It has existed in the freeswan patch for a while!
 
 Let's be serious, FreeS/WAN has serious issues! Being at war with the 
 kernel routing machinery, for example. 

Alright, I give you that. But it works.

-- 
Please do not CC me when replying to lists; I read them!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer, admin, and user
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
Invalid/expired PGP subkeys? Use subkeys.pgp.net as keyserver!


pgpuA82ITeDHP.pgp
Description: PGP signature


Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Branden Robinson
On Tue, Oct 07, 2003 at 03:40:18AM -0500, Chris Cheney wrote:
 On Tue, Oct 07, 2003 at 10:26:45AM +0200, Marcelo E. Magallon wrote:
  On Tue, Oct 07, 2003 at 01:33:01AM -0500, Chris Cheney wrote:
  
Does anyone happen to know why .la files hardcode the paths to .la
files that they depend on?
  
   Anal-retentiveness wrt using the exact same library originaly used.
  
This is about to bite Debian hard with some of the XFree86 libraries
moving to /usr/lib.
  
   Can you be more specific?
 
 -rw-r--r--  22k  2003-10-07 01:49  libxrender1_0.8.3-1_i386.deb
 
 The new version of libXrender moves from /usr/X11R6/lib to /usr/lib
 which has already started to cause build failures... :\  I am not
 certain if Branden plans to move any others to /usr/lib, but if he does
 hopefully he will do it very soon.

Xft and Xrender are no longer maintained by XFree86 directly.  The new
upstream sources for these libraries are at freedesktop.org.

Since they're no longer part of XFree86, they're getting moved to
/usr/lib.

Xft is stuck in queue/new at present.

I don't have any plans at present to move any of the libraries that are
in the library packages in XFree86 4.3.0-0pre1v3.

I think the problem with .la files may be solvable by updating
Build-Depends and -dev packages' dependencies to refer to libxrender-dev
(= 0.8.3-1), and/or libraries that are rebuilt against that version of
libxrender-dev.  I'm looking into it.

-- 
G. Branden Robinson| The Rehnquist Court has never
Debian GNU/Linux   | encountered a criminal statute it
[EMAIL PROTECTED] | did not like.
http://people.debian.org/~branden/ | -- John Dean


signature.asc
Description: Digital signature


Bug#213822: keymap be-latin1

2003-10-07 Thread Philippe Faes
tag 213822 moreinfo
thanks



Jan,

If I understand correctly, your keyboard doesn't work right, but the rest of 
the system is OK.
Are there other keys with AltGr that work? For example, can you type a curly 
brace '{' (AltGr-9)?

If you try to upgrade your system (with apt-get) it doesnt't install any more 
packages: is that because 

I use debian-unstable and I can't reproduce your keyboard's behaviour with the 
information you gave us.


BTW, try put your next bug reports in the message body, not in the subject.  :-)

grtz
Philippe


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


Re: gnucash-sql?

2003-10-07 Thread James A. Treacy
On Tue, Oct 07, 2003 at 10:35:40AM -0700, Carl B. Constantine wrote:
 I think there used to be a packaged called gnucash-sql which allowed
 gnucash to save data to a postgres database. That package doesn't seem
 to exist any longer. Has the functionality of gnucash-sql been merged
 into gnucash proper?

From /usr/share/doc/gnucash/README.Debian:
  The postgressql backend is not currently enabled. Upstream is updating
  this backend to support all the features in the 1.8.x series. Once
  that work is complete, postgresql support will be added back in.


-- 
James (Jay) Treacy
[EMAIL PROTECTED]




Re: Hardcoding of .la file paths in .la files

2003-10-07 Thread Chris Cheney
On Tue, Oct 07, 2003 at 02:58:25PM -0500, Branden Robinson wrote:
 I think the problem with .la files may be solvable by updating
 Build-Depends and -dev packages' dependencies to refer to libxrender-dev
 (= 0.8.3-1), and/or libraries that are rebuilt against that version of
 libxrender-dev.  I'm looking into it.

I think the problem is worse than that due to the recursive linking that
Scott mentioned. Once recursive linking is removed from libtool then it
would be a simple matter of recompiling only those libraries which
directly depend on libXrender/libXft. As it is any library that links
against a library using libXrender/libXft will need to be recompiled.

We need to get the new libXft into sid asap so the breakage doesn't
happen again.

Chris

---

The potential affected sources list is:

(106 sources)

abiword
anjuta
arson
avifile
bibletime
bookcase
brahms
cdbakeoven
celestia
control-center
drscheme
eel2
epiphany-browser
evas
facturalux
fltk1.1
fontilus
freesci
galeon
gnome-mag
gnome-system-tools
gnome-terminal
gnustep-back
gst-player
gthumb
gtk+2.0
guarddog
htmldoc
icewm
idesk
k3b
kbarcode
kbear
kcd
kcpuload
kdbg
kdeaddons
kdeadmin
kdeartwork
kdebase
kdegames
kdegraphics
kdelibs
kdenetwork
kdepim
kdesdk
kdetoys
kdeutils
kdirstat
kflog
kile
kimagemapeditor
klineakconfig
klog
kmymoney2
knapster2
knetload
knutclient
koffice
komba2
konq-speaker
kopete
kphone
kprof
ksensors
ksimus
ktrack
kvdr
kvirc
kwavecontrol
lesstif1-1
matchbox
mgp
mlterm
motv
mozilla
mozilla-firebird
mozilla-snapshot
nautilus
nautilus-cd-burner
nautilus-media
openbox
openexr
pango1.0
plptools
qt-x11-free
quanta
rosegarden4
sawfish
scribus
seaview
sim
slicker
sodipodi
spiralsynthmodular
superkaramba
unixodbc
vimpart
vte
waimea
xawtv
xcursor
xfree86
xft2
xrender
zynaddsubfx



signature.asc
Description: Digital signature


Processed: Re: Bug#213822: keymap be-latin1

2003-10-07 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 213822 moreinfo
Bug#213822: 
=?iso-8859-15?q?general=3A_keymap_be-latin1_doesn=27t_allow_typing_=5C_or?= 
=?iso-8859-15?q?_=40_by_using_AltGr=0D=0AThis_week_I_installed_knoppix_=28v3?= 
=?iso-8859-15?q?=2E2=29_on_the_computer_of_a_friend=2E=0D=0AYesterday_and_to?= 
=?iso-8859-15?q?day_I_upgraded_to_the_unstable_branch_via=0D=0Aftp=2Ekulnet?= 
=?iso-8859-15?q?=2Ekuleuven=2Eac=2Ebe=2C_and_also_configured_console-data?= 
=?iso-8859-15?q?_to_use=0D=0Abe-latin1=2E_After_that=2C_typing_=5C_or_=40_wa?= 
=?iso-8859-15?q?s_impossible_=28=5C_gave_a_=7C=0D=0Ainstead=29=2E_Even_playi?= 
=?iso-8859-15?q?ng_around_in_the_KDE_configuration_center_=28dutch=0D=0Akeym?= 
=?iso-8859-15?q?ap_or_fr-latin=29_gave_no_positive_result=2E_When_I_do_an?= 
=?iso-8859-15?q?_apt-get_update=0D=0Aupgrade=2C_no_packages_can_be_upgraded_?= 
=?iso-8859-15?q?according_to_apt=2E_Kernel_is=0D=0A2=2E4=2E22-686=2C_the_deb?= 
=?iso-8859-15?q?ian_packaged_one=2E?=
There were no tags set.
Tags added: moreinfo

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)




Bug#214654: ITP: ps2eps -- Convert PostScript to EPS (Encapsulated PostScript) files

2003-10-07 Thread Rafael Laboissiere
Package: wnpp
Version: unavailable; reported 2003-10-07
Severity: wishlist


* Package name: ps2eps
  Version : 1.47
  Upstream Author : Roland Bless [EMAIL PROTECTED]
* URL : 
http://www.telematik.informatik.uni-karlsruhe.de/~bless/ps2eps.html
* License : GPL
  Description : Convert PostScript to EPS (Encapsulated PostScript) files

ps2eps is a tool to produce Encapsulated PostScript Files (EPS/EPSF) from
usual one-paged Postscript documents. It calculates correct Bounding Boxes
for those EPS files and filters some special postscript command sequences
that can produce erroneous results on printers.  EPS files are needed for
including (scalable) graphics into TeX (or even Word) documents.  Other
programs like ps2epsi do not calculate the bounding box always correct
(because the values are put on the postscript stack which may get corrupted
by bad postscript code) or rounded it off so that clipping the EPS cut off
some part of the image. Therefore ps2eps uses a resolution of 144 dpi to get
the correct bounding box.

There is an experiemental apt-getable repository at:

http://people.debian.org/~rafael/ps2eps/

I am a bit concerned about namespace pollution, since this package contains
the files:

/usr/bin/ps2eps
/usr/bin/bbox

If there are no objections, I will upload the packages in the site above
without changes.


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





Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Marco Paganini
Hi Marcello,

   Euh, I think you messed up.  Marco *is* upstream.
 
  That doesn't preclude whackig upstream with a cluebat :-)  Here, he can
  use mine.

I tried whacking myself repeatedly with the cluebat. Unfortunately, it was
not as effective as whacking someone else. But I think I got the clue anyway.
:)

Regards,
Paga

-- 
Marco Paganini  | UNIX / Linux / Networking
[EMAIL PROTECTED]   | PGP: http://www.paganini.net/pgp/
http://www.paganini.net | Magnus Frater te spectat...




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Marco Paganini
Hi Daniel,

   I think it's worth pointing out that if a file called ask.py is in
 /usr/bin, the statement:
 
 import ask
 
   from a Python program in /usr/bin which hasn't modified its sys.path
 will, unless I am terribly confused, pick up ask.py instead of whatever
 module it was looking for.  I'm not aware of any module named ask
 right now, but I can certainly imagine someone creating one.

That would not be a problem, as no other program imports ask.py...

Regards,
Paga

 
   Daniel
 
 -- 
 / Daniel Burrows [EMAIL PROTECTED] ---\
 |  Put no trust in cryptic comments.  
 |
 \-- A duck! -- http://www.python.org 
 -/

-- 
Marco Paganini  | UNIX / Linux / Networking
[EMAIL PROTECTED]   | PGP: http://www.paganini.net/pgp/
http://www.paganini.net | Magnus Frater te spectat...




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Marco Paganini
On Tue, Oct 07, 2003 at 05:57:42PM -0400, Daniel Burrows wrote:

  That would not be a problem, as no other program imports ask.py...
 
   Are you confident that no other program will ever want to import ask?

Yes. ask.py is just the main executable. It imports all the other modules
(which have the .py extension and should be in /usr/lib/ask or something).

Regards,
Paga

 
 -- 
 / Daniel Burrows [EMAIL PROTECTED] ---\
 | We've got nothing to fear but the stuff that we're 
 |
 |  afraid of! -- Fluble  
 |
 \-Evil Overlord, Inc: planning your future today. 
 http://www.eviloverlord.com-/

-- 
Marco Paganini  | UNIX / Linux / Networking
[EMAIL PROTECTED]   | PGP: http://www.paganini.net/pgp/
http://www.paganini.net | Magnus Frater te spectat...




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Daniel Burrows
On Tue, Oct 07, 2003 at 05:48:17PM -0400, Marco Paganini [EMAIL PROTECTED] 
was heard to say:
 Hi Daniel,
 
I think it's worth pointing out that if a file called ask.py is in
  /usr/bin, the statement:
  
  import ask
  
from a Python program in /usr/bin which hasn't modified its sys.path
  will, unless I am terribly confused, pick up ask.py instead of whatever
  module it was looking for.  I'm not aware of any module named ask
  right now, but I can certainly imagine someone creating one.
 
 That would not be a problem, as no other program imports ask.py...

  Are you confident that no other program will ever want to import ask?

  Daniel

-- 
/ Daniel Burrows [EMAIL PROTECTED] ---\
| We've got nothing to fear but the stuff that we're |
|  afraid of! -- Fluble  |
\-Evil Overlord, Inc: planning your future today. http://www.eviloverlord.com-/




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Marco Paganini
Hi,

  Yes. ask.py is just the main executable. It imports all the other modules
  (which have the .py extension and should be in /usr/lib/ask or something).
 
 That'd be /usr/share (lib is for arch-dependant data, see FHS)

Oops, sorry! Slippery fingers. I meant /usr/share...

Regards,
Paga

 
 -- 
 Robert Millan
 
 [..] but the delight and pride of Aule is in the deed of making, and in the
 thing made, and neither in possession nor in his own mastery; wherefore he
 gives and hoards not, and is free from care, passing ever on to some new 
 work.
 
  -- J.R.R.T, Ainulindale (Silmarillion)

-- 
Marco Paganini  | UNIX / Linux / Networking
[EMAIL PROTECTED]   | PGP: http://www.paganini.net/pgp/
http://www.paganini.net | Magnus Frater te spectat...




Re: Done

2003-10-07 Thread Andreas Rottmann
Steve Langasek [EMAIL PROTECTED] writes:

 On Mon, Sep 15, 2003 at 01:24:11PM -0500, Manoj Srivastava wrote:
 On Mon, 15 Sep 2003 10:37:48 -0500, Steve Langasek [EMAIL PROTECTED] said: 

  There is a distinct difference between recognizing what is missing
  from a description, and being able to fill in the gap.  The two acts
  are complementary.  What helps maintainers is to understand what the
  questions *are* that users are going to ask about their package
  description.  It's hard to know what questions are going to be asked
  when you already know the answer yourself; this is not something
  that can be changed through expressions of disdain.

  How about these criteria?
  a) What does the package do? If it is an add-on to another package,
 then the short description of the package we are an add on to
 should be put in here
  b) Why should I want this package?  This is related  to the above,
 but not the same (this is a mail user agent; this is cool, fast,
 interfaces with pgp and ldap and imap, has features X, Y, and Z)
  c) If this package should not be installed directly, but is pulled in
 by another package, this should be mentioned
  d) If the package is experimental, or there are other reasons it
 should not be used, if there are other packages that should be
 used instead, it should be here as well
  e) How is this package different from the competition? Is it a better
 implementation? more features? different features? Why should I
 chose this package (b should talk about the class of packages, and
 e about this particular package, if you have both b and e related
 information).
  f) ???

 These seem like very reasonable and helpful criteria.  Perhaps they
 could be placed somewhere (developer's reference, policy footnote?)
 where they'll be generally visible to maintainers?

I strongly second that.

-- 
Andreas Rottmann | [EMAIL PROTECTED]  | [EMAIL PROTECTED] | [EMAIL 
PROTECTED]
http://www.8ung.at/rotty | GnuPG Key: http://www.8ung.at/rotty/gpg.asc
Fingerprint  | DFB4 4EB4 78A4 5EEE 6219  F228 F92F CFC5 01FD 5B62

Packages should build-depend on what they should build-depend.




Re: Language extensions in programs under /usr/bin

2003-10-07 Thread Daniel Burrows
On Tue, Oct 07, 2003 at 06:07:58PM -0400, Marco Paganini [EMAIL PROTECTED] 
was heard to say:
 On Tue, Oct 07, 2003 at 05:57:42PM -0400, Daniel Burrows wrote:
 
   That would not be a problem, as no other program imports ask.py...
  
Are you confident that no other program will ever want to import ask?
 
 Yes. ask.py is just the main executable. It imports all the other modules
 (which have the .py extension and should be in /usr/lib/ask or something).

  Sorry that I'm not letting this go, but I'm not sure you understand my
concern (I'm not sure that this is a showstopper, but I'd like to know
that you've at least considered it)

  Say next year I decide to write a new library of Python routines.
For whatever reason, I decide that I want to call it ask.  So I put my
code in ask.py, and distribute it as a standard Python module.

  Now, some programmer writes a program which uses my ask module.
When this program is run on a computer containing your ask.py
program, it will run your program instead of loading my module.

  The main reason that I see for not being concerned about this is that
no-one will write an ask module -- the name is too short, too generic,
and it's not obvious what an ask module would do.  On the other hand,
a few days ago I'd have said the same thing about an ask program.

  I hope that's clearer.

  Daniel

-- 
/ Daniel Burrows [EMAIL PROTECTED] ---\
|Witches and pickles went together like...she hesitated at   |
| the stomach-curdling addition of peaches and cream, and |
| mentally substituted 'things that went together very well' |
|  -- Terry Pratchett |
\-- A duck! -- http://www.python.org -/




Re: Package verification

2003-10-07 Thread Matthew Palmer
On Wed, Oct 08, 2003 at 12:24:37AM +1000, Kim Lester wrote:

 There is no way to verify/correct the MODE, USER, GROUP, TYPE
 of any files installed in a pkg.
 If I am wrong please point out where, with an installed pkg
 (and preferably without having a copy of the .dpkg around)
 once can tell if a pkg is _installed_correctly_.

Define correctly.  The permissions and ownerships as specified by the
package maintainer may be overridden by the sysadmin, and some files are
only created after installation (and permissions set by script).

Barring a break-in, I don't see how system file permissions would ever be
changed without admin knowledge, so verification would seem like a useless
overhead.  Post-intrusion, of course, is a different matter, but there are
already tools to deal with that if you need it.

Then again, I don't work in the enterprise world, just the real one, so
the pressures of CTO madness don't affect me.  grin

 So is the developer community interested in working with me
 to add these (and other important features) for a larger
 commercial environments. Bear in mind I have real coded
 solutions to many of these issues which I hope to be able
 to share

To be blunt: what's stopping you?  Package them up, find a sponsor,
demonstrate their utility, and away you go.  Get them integrated with dpkg
in whatever fashion is necessary, and make them an integral part of Debian.

You don't need debian-devel consensus to do that - and apart from any dpkg
changes that are needed, you only need one developer (to upload the packages
on your behalf until you become a DD yourself).

- Matt




Re: Re: Where are we now? (Was: Bits from the RM)

2003-10-07 Thread Joey Hess
Gunnar Wolf wrote:
 Maybe we should ask the user at first boot if he wishes to use tasksel,
 dselect, aptitude or none-of-the-above, instead of going just tasksel
 and dselect...

Maybe we should look at a current install of debian before posting to
-devel.

-- 
see shy jo


signature.asc
Description: Digital signature


Accepted reportbug 2.34 (all source)

2003-10-07 Thread Chris Lawrence
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 00:35:44 -0500
Source: reportbug
Binary: reportbug
Architecture: source all
Version: 2.34
Distribution: unstable
Urgency: low
Maintainer: Chris Lawrence [EMAIL PROTECTED]
Changed-By: Chris Lawrence [EMAIL PROTECTED]
Description: 
 reportbug  - Reports bugs in the Debian distribution
Closes: 214209 214212
Changes: 
 reportbug (2.34) unstable; urgency=low
 .
   * Don't go through the file search path if there is a package in the
 status file with the name (even if it's not installed).
 (Closes: #214209)
   * Remove spurious File: pseudo-header that would be inserted in some
 reports when find_packages_for() was called.  (Closes: #214212)
Files: 
 22fec6c4fd2dcd3b2c2762a08cd24346 814 utils standard reportbug_2.34.dsc
 77d450f6a1478789c19a8df56230d367 148149 utils standard reportbug_2.34.tar.gz
 1c5d92d902df88a3b30b3f723f5a7bcf 138772 utils standard reportbug_2.34_all.deb

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

iQEXAwUBP4JRrVxpg5e5AmZiFAKggwP/R2a2rGLJ/4JKf7fwAu1fPeWXXJMvQa/H
5wJ50KT+/2yAisKyHErFq6gq0nXmbsCC3CWdye589k0UcD1ibUcO1GgBzsMVaodL
YUwFvclbNjNrxshH83jGDOIUgXHuBQb+/cDyL8mXh+i3qz6I/zGyX+BvmJRXbFIU
iZo4Kl88I4ID/2a+h43FeFh26F6zKjCVgv87/DEoVn9Irqpp5sBRdLENmmfdqah/
cnk8RGCGdhh/Q+95QM7Krx8jLVzLprtPidRV84ugl2nrHkzW8pQpvVMx9Evg8OWL
fTzG4DMye1GZBx2ewXf6ENP4uRd7WeOowYB3/Ucd3YdkL/vcXUcyYaDd
=Hv2t
-END PGP SIGNATURE-


Accepted:
reportbug_2.34.dsc
  to pool/main/r/reportbug/reportbug_2.34.dsc
reportbug_2.34.tar.gz
  to pool/main/r/reportbug/reportbug_2.34.tar.gz
reportbug_2.34_all.deb
  to pool/main/r/reportbug/reportbug_2.34_all.deb


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



Accepted forg 0.5.1-5.2 (all source)

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

Format: 1.7
Date: Tue,  7 Oct 2003 08:17:22 +0200
Source: forg
Binary: forg
Architecture: source all
Version: 0.5.1-5.2
Distribution: unstable
Urgency: medium
Maintainer: John Goerzen [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 forg   - Graphical Gopher Browser
Closes: 213923
Changes: 
 forg (0.5.1-5.2) unstable; urgency=medium
 .
   * NMU.
   * Compensate for debhelper's missing dependency on python (closes: #213923).
Files: 
 f515840488d5aaac3598049618b70b15 564 net optional forg_0.5.1-5.2.dsc
 b6e4c2d086224b129b03f632a66be007 4795 net optional forg_0.5.1-5.2.diff.gz
 302bf40c03e5b38f3206ca928fc1352d 75348 net optional forg_0.5.1-5.2_all.deb

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

iD8DBQE/glryStlRaw+TLJwRAnIGAJ9WvwNGLTBPkjSQpaAJLUrhsSdGKwCgo+NA
v/gWO84StDOAJShj4GVJo54=
=A7mL
-END PGP SIGNATURE-


Accepted:
forg_0.5.1-5.2.diff.gz
  to pool/main/f/forg/forg_0.5.1-5.2.diff.gz
forg_0.5.1-5.2.dsc
  to pool/main/f/forg/forg_0.5.1-5.2.dsc
forg_0.5.1-5.2_all.deb
  to pool/main/f/forg/forg_0.5.1-5.2_all.deb


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



Accepted gorm 0.3.1-0.1 (i386 source)

2003-10-07 Thread doko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 25 Sep 2003 21:32:20 +0200
Source: gorm
Binary: gorm
Architecture: source i386
Version: 0.3.1-0.1
Distribution: unstable
Urgency: low
Maintainer: Evan Prodromou [EMAIL PROTECTED]
Changed-By: [EMAIL PROTECTED]
Description: 
 gorm   - Visual Interface Builder for GNUstep
Changes: 
 gorm (0.3.1-0.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * New upstream release.
   * Compile using new gnustep layout.
Files: 
 ed708d013fdecfc9463fcfc0a7f9288c 654 devel optional gorm_0.3.1-0.1.dsc
 e508e2bc545c5b537d77d5b3405fef17 359365 devel optional gorm_0.3.1.orig.tar.gz
 d8c9781d25c5d60054d72260bd7a729f 4807 devel optional gorm_0.3.1-0.1.diff.gz
 c94c8fc37e796bba26a63034b7f62ef4 599226 devel optional gorm_0.3.1-0.1_i386.deb

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

iD8DBQE/glxnStlRaw+TLJwRArTpAJ9JqPvjyigN7QT7ZsdH3CcNgSI4awCgjzWk
QKe3NjrKVrwEppA3/aByZrc=
=i73N
-END PGP SIGNATURE-


Accepted:
gorm_0.3.1-0.1.diff.gz
  to pool/main/g/gorm/gorm_0.3.1-0.1.diff.gz
gorm_0.3.1-0.1.dsc
  to pool/main/g/gorm/gorm_0.3.1-0.1.dsc
gorm_0.3.1-0.1_i386.deb
  to pool/main/g/gorm/gorm_0.3.1-0.1_i386.deb
gorm_0.3.1.orig.tar.gz
  to pool/main/g/gorm/gorm_0.3.1.orig.tar.gz


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



Accepted intlfonts 1.2.1-1 (all source)

2003-10-07 Thread Milan Zamazal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 08:52:24 +0200
Source: intlfonts
Binary: emacs-intl-fonts xfonts-intl-chinese-big xfonts-intl-japanese-big 
xfonts-intl-asian xfonts-intl-arabic xfonts-intl-european xfonts-intl-chinese 
xfonts-intl-japanese xfonts-intl-phonetic
Architecture: source all
Version: 1.2.1-1
Distribution: unstable
Urgency: high
Maintainer: Milan Zamazal [EMAIL PROTECTED]
Changed-By: Milan Zamazal [EMAIL PROTECTED]
Description: 
 emacs-intl-fonts - Fonts to allow multi-lingual PostScript printing from Emacs
 xfonts-intl-arabic - International fonts for X -- Arabic
 xfonts-intl-asian - International fonts for X -- Asian
 xfonts-intl-chinese - International fonts for X -- Chinese
 xfonts-intl-chinese-big - International fonts for X -- Chinese big
 xfonts-intl-european - International fonts for X -- European
 xfonts-intl-japanese - International fonts for X -- Japanese
 xfonts-intl-japanese-big - International fonts for X -- Japanese big
 xfonts-intl-phonetic - International fonts for X -- Phonetic Alphabet
Changes: 
 intlfonts (1.2.1-1) unstable; urgency=high
 .
   * New upstream release.
   * Upstream: Fonts with serious license violation removed; see bug
 #214401.
Files: 
 7aca0f1d4370c714db2998cff483bcdf 1058 x11 optional intlfonts_1.2.1-1.dsc
 89f5f3651fdc761c4fb87a1c4cea4c40 15186758 x11 optional intlfonts_1.2.1.orig.tar.gz
 c7b6cb9add176d2e35749b055888d4d4 6575 x11 optional intlfonts_1.2.1-1.diff.gz
 5592e670e03b600971e6746d8d9e7324 17076 x11 optional xfonts-intl-arabic_1.2.1-1_all.deb
 25c3c99c322f8834d686122a668eb6a2 104188 x11 optional xfonts-intl-asian_1.2.1-1_all.deb
 36f07540bb9f91810fc79be3801c2a59 5784668 x11 optional 
xfonts-intl-chinese_1.2.1-1_all.deb
 a4adf3d3ba5a2426fd23bd07be3540ac 1814596 x11 optional 
xfonts-intl-chinese-big_1.2.1-1_all.deb
 a3cf3780c60d950524a676b80ee50f80 156380 x11 optional 
xfonts-intl-european_1.2.1-1_all.deb
 9a6ad9fef55c031be9e9e0bd519b08e7 932780 x11 optional 
xfonts-intl-japanese_1.2.1-1_all.deb
 a6c716fa57fd56222583ce676f7a64ac 657718 x11 optional 
xfonts-intl-japanese-big_1.2.1-1_all.deb
 1e525e8d361814eb8588ee085da7a526 11624 x11 optional 
xfonts-intl-phonetic_1.2.1-1_all.deb
 ddc4fd8f842a25f0fffac90089808f80 2523946 x11 optional emacs-intl-fonts_1.2.1-1_all.deb

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

iQEXAwUBP4Jj+zc2zEuiCDLAFAKCUwQAgMmA5+lJJHH2BQJ2z1GKK7xpQ7NkNAoY
Fe0r0P2SIKI7j8zK+HBiAUeIXjQNfhqWPzn1E8Byi+/I4vBRZmvQAVvXi4MZTUFP
57vz7BpkwAgCX8xn4yYbvhUBYWPTltEidvJqw9zDPfbiljCJM1VCVdERv6ByUgVV
zL7mPTV3GRAEALjt/V3W7jVw9hI/cREFaMbFgRsuTtzjjZzRG78yfVxZyI0MjZCO
bRZtRGk4Lag/8YWpYIHL3F+9P6wmPVDtKm21Ij8JlsRfPR9v0xYcUesp5C3u6M9/
jdaXk7bjTea/BTQwN9M1xVSFNcIJCDynhXQpB1x8P/kzw8W+CeUnOTiZ
=qPLp
-END PGP SIGNATURE-


Accepted:
emacs-intl-fonts_1.2.1-1_all.deb
  to pool/main/i/intlfonts/emacs-intl-fonts_1.2.1-1_all.deb
intlfonts_1.2.1-1.diff.gz
  to pool/main/i/intlfonts/intlfonts_1.2.1-1.diff.gz
intlfonts_1.2.1-1.dsc
  to pool/main/i/intlfonts/intlfonts_1.2.1-1.dsc
intlfonts_1.2.1.orig.tar.gz
  to pool/main/i/intlfonts/intlfonts_1.2.1.orig.tar.gz
xfonts-intl-arabic_1.2.1-1_all.deb
  to pool/main/i/intlfonts/xfonts-intl-arabic_1.2.1-1_all.deb
xfonts-intl-asian_1.2.1-1_all.deb
  to pool/main/i/intlfonts/xfonts-intl-asian_1.2.1-1_all.deb
xfonts-intl-chinese-big_1.2.1-1_all.deb
  to pool/main/i/intlfonts/xfonts-intl-chinese-big_1.2.1-1_all.deb
xfonts-intl-chinese_1.2.1-1_all.deb
  to pool/main/i/intlfonts/xfonts-intl-chinese_1.2.1-1_all.deb
xfonts-intl-european_1.2.1-1_all.deb
  to pool/main/i/intlfonts/xfonts-intl-european_1.2.1-1_all.deb
xfonts-intl-japanese-big_1.2.1-1_all.deb
  to pool/main/i/intlfonts/xfonts-intl-japanese-big_1.2.1-1_all.deb
xfonts-intl-japanese_1.2.1-1_all.deb
  to pool/main/i/intlfonts/xfonts-intl-japanese_1.2.1-1_all.deb
xfonts-intl-phonetic_1.2.1-1_all.deb
  to pool/main/i/intlfonts/xfonts-intl-phonetic_1.2.1-1_all.deb


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



Accepted kbarcode 1.2.1-2 (i386 source)

2003-10-07 Thread Theodore Karkoulis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 24 Sep 2003 20:55:35 +0300
Source: kbarcode
Binary: kbarcode
Architecture: source i386
Version: 1.2.1-2
Distribution: unstable
Urgency: low
Maintainer: Theodore Karkoulis [EMAIL PROTECTED]
Changed-By: Theodore Karkoulis [EMAIL PROTECTED]
Description: 
 kbarcode   - A KDE Barcode Creation And Printing Application
Closes: 212501 212666 214034
Changes: 
 kbarcode (1.2.1-2) unstable; urgency=low
 .
   * Fixes the xlibs-dev build dependency, closes: #212501, #212666, #214034.
Files: 
 e694d787e13f5158f6d28a2b4ffb4bc3 643 x11 optional kbarcode_1.2.1-2.dsc
 847039045ad612de04be8a38d2ed6e8a 23237 x11 optional kbarcode_1.2.1-2.diff.gz
 e911aec810714139149134758fa13cd7 237624 x11 optional kbarcode_1.2.1-2_i386.deb

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

iD8DBQE/gnxdIU9oQVFfm3QRAk6mAKCHQbQh5eeWt+ofPUugv0UA6rdNVwCfU1zi
KOO9CSeT+XhfmF4q1kwRKK0=
=DxNB
-END PGP SIGNATURE-


Accepted:
kbarcode_1.2.1-2.diff.gz
  to pool/main/k/kbarcode/kbarcode_1.2.1-2.diff.gz
kbarcode_1.2.1-2.dsc
  to pool/main/k/kbarcode/kbarcode_1.2.1-2.dsc
kbarcode_1.2.1-2_i386.deb
  to pool/main/k/kbarcode/kbarcode_1.2.1-2_i386.deb


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



Accepted pidentd 3.0.16-4 (i386 source all)

2003-10-07 Thread Herbert Xu
-BEGIN PGP SIGNED MESSAGE-

Format: 1.7
Date: Tue,  7 Oct 2003 19:38:37 +1000
Source: pidentd
Binary: idecrypt pidentd-des pidentd
Architecture: source i386 all
Version: 3.0.16-4
Distribution: unstable
Urgency: low
Maintainer: Herbert Xu [EMAIL PROTECTED]
Changed-By: Herbert Xu [EMAIL PROTECTED]
Description: 
 idecrypt   - Decrypt an encrypted response from pidentd.
 pidentd- TCP/IP IDENT protocol server with DES support.
 pidentd-des - Compatibility package for pidentd.
Closes: 208290
Changes: 
 pidentd (3.0.16-4) unstable; urgency=low
 .
   * Use colon separator for chown in postinst.
   * Added TCPDIAG support based on patch from Paul Szabo (closes: #208290).
Files: 
 6c5fa4bc5c2f8bd2cf114b578b5d63eb 746 net standard pidentd_3.0.16-4.dsc
 1f2ae8c38334d0b09af43a3f0875fdb9 8651 net standard pidentd_3.0.16-4.diff.gz
 83e2750b9d1d0bbee7ad297bd6a366cd 3068 net optional pidentd-des_3.0.16-4_all.deb
 b56480d670c36618d4bcf95e105a9114 31654 net standard pidentd_3.0.16-4_i386.deb
 08e7d8a9b5d14f42b7f65f6f6b79bd9b 9452 utils optional idecrypt_3.0.16-4_i386.deb

-BEGIN PGP SIGNATURE-
Version: PGPfreeware 5.0i for non-commercial use
Charset: noconv

iQCVAwUBP4KKuofMnsf5AzQhAQFa5AP/cWgOKKOfpUeO6LjST1LwoHrkffPupyQK
i0WdYgKP/tXWsstcEfD3NRuqcJZ6+wfBJ8L9lkiSRQ5MlKDCyK9tMw1MHNVLghBq
ia/DaCsWDLbLGjBLh8KaQqQmu0IODnxCIZlsWRuYWIBWbWEYNTQ5Ezi/8UPCLtl0
N6CMaC30BLc=
=ehhc
-END PGP SIGNATURE-


Accepted:
idecrypt_3.0.16-4_i386.deb
  to pool/main/p/pidentd/idecrypt_3.0.16-4_i386.deb
pidentd-des_3.0.16-4_all.deb
  to pool/main/p/pidentd/pidentd-des_3.0.16-4_all.deb
pidentd_3.0.16-4.diff.gz
  to pool/main/p/pidentd/pidentd_3.0.16-4.diff.gz
pidentd_3.0.16-4.dsc
  to pool/main/p/pidentd/pidentd_3.0.16-4.dsc
pidentd_3.0.16-4_i386.deb
  to pool/main/p/pidentd/pidentd_3.0.16-4_i386.deb


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



Accepted linuxtrade 3.62-1 (i386 source)

2003-10-07 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 06:47:48 -0500
Source: linuxtrade
Binary: linuxtrade
Architecture: source i386
Version: 3.62-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel [EMAIL PROTECTED]
Changed-By: Dirk Eddelbuettel [EMAIL PROTECTED]
Description: 
 linuxtrade - A real-time stock market tracker and news console
Changes: 
 linuxtrade (3.62-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 5d89b0c02fdb536cf02625c048f0a845 639 misc optional linuxtrade_3.62-1.dsc
 0f7a25d573c24f32de1f259d05409625 852269 misc optional linuxtrade_3.62.orig.tar.gz
 209d73096f560fa489d0c7ead07f2ac7 7720 misc optional linuxtrade_3.62-1.diff.gz
 43f2b5734a7a0214177aa374ccbd889a 253198 misc optional linuxtrade_3.62-1_i386.deb

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

iD8DBQE/gqhICZSR95Gw07cRAsjWAJ0UA/8NnQEwFc9RXmnAfpGTjbc0ogCdGsrr
pivrPApXD7RK6M3w2mIHX6k=
=3aZd
-END PGP SIGNATURE-


Accepted:
linuxtrade_3.62-1.diff.gz
  to pool/main/l/linuxtrade/linuxtrade_3.62-1.diff.gz
linuxtrade_3.62-1.dsc
  to pool/main/l/linuxtrade/linuxtrade_3.62-1.dsc
linuxtrade_3.62-1_i386.deb
  to pool/main/l/linuxtrade/linuxtrade_3.62-1_i386.deb
linuxtrade_3.62.orig.tar.gz
  to pool/main/l/linuxtrade/linuxtrade_3.62.orig.tar.gz


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



Accepted pdftohtml 0.36-4 (i386 source)

2003-10-07 Thread Søren Boll Overgaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 11:42:35 +
Source: pdftohtml
Binary: pdftohtml
Architecture: source i386
Version: 0.36-4
Distribution: unstable
Urgency: low
Maintainer: Søren Boll Overgaard [EMAIL PROTECTED]
Changed-By: Søren Boll Overgaard [EMAIL PROTECTED]
Description: 
 pdftohtml  - Translates pdf documents into html format
Closes: 212824
Changes: 
 pdftohtml (0.36-4) unstable; urgency=low
 .
   * Fix segfault when specifying absolute path to input file
 (Closes: Bug#212824)
Files: 
 095cdc22094b800269bf9e138b74d155 593 text optional pdftohtml_0.36-4.dsc
 a9c6c85d2b66e6c95afff8c7ab11f422 5116 text optional pdftohtml_0.36-4.diff.gz
 23c110a2e77f932f2dd647b2f2b8ae8c 250682 text optional pdftohtml_0.36-4_i386.deb

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

iD8DBQE/griYPHuHUx6y3mYRAiHTAKC4DkZjsBlB411ZsY8Mm/Mfs13qrwCbBfs1
MyrY0J67q4FVMXHseQAqThQ=
=wMnK
-END PGP SIGNATURE-


Accepted:
pdftohtml_0.36-4.diff.gz
  to pool/main/p/pdftohtml/pdftohtml_0.36-4.diff.gz
pdftohtml_0.36-4.dsc
  to pool/main/p/pdftohtml/pdftohtml_0.36-4.dsc
pdftohtml_0.36-4_i386.deb
  to pool/main/p/pdftohtml/pdftohtml_0.36-4_i386.deb


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



Accepted quagga 0.96.2-9 (i386 source all)

2003-10-07 Thread Christian Hammers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 13:26:58 +0200
Source: quagga
Binary: quagga quagga-doc
Architecture: source all i386
Version: 0.96.2-9
Distribution: unstable
Urgency: medium
Maintainer: Christian Hammers [EMAIL PROTECTED]
Changed-By: Christian Hammers [EMAIL PROTECTED]
Description: 
 quagga - Unoff. successor of the Zebra BGP/OSPF/RIP routing daemon
 quagga-doc - Documentation files for quagga
Closes: 212614 212803 213125
Changes: 
 quagga (0.96.2-9) unstable; urgency=medium
 .
   * Removed /usr/share/info/dir.* which were accidently there and prevented
 the installation by dpkg (thanks to Simon Raven). Closes: #212614
   * Reworded package description (thanks to Anand Kumria). Closes: #213125
   * Added french debconf translation (thanks to Christian Perrier).
 Closes: #212803
Files: 
 2d9a9f024b84367859f10d289bc099f1 676 net optional quagga_0.96.2-9.dsc
 8335fb1740c364244fa66306f7a9dded 267131 net optional quagga_0.96.2-9.diff.gz
 a7cf20c5357f7e9b1eb1ef1e8a9400d9 336044 net optional quagga-doc_0.96.2-9_all.deb
 79742dfbfef4321236b2a23ebfc27822 1587546 net optional quagga_0.96.2-9_i386.deb

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

iEYEARECAAYFAj+Cun8ACgkQkR9K5oahGObvRQCgxzjNubPatFvcF2VAeaW8Z9e5
Mu4AnRlMGA6IbFBdUZ4Vc9Vqd+ssTR0P
=7Z1J
-END PGP SIGNATURE-


Accepted:
quagga-doc_0.96.2-9_all.deb
  to pool/main/q/quagga/quagga-doc_0.96.2-9_all.deb
quagga_0.96.2-9.diff.gz
  to pool/main/q/quagga/quagga_0.96.2-9.diff.gz
quagga_0.96.2-9.dsc
  to pool/main/q/quagga/quagga_0.96.2-9.dsc
quagga_0.96.2-9_i386.deb
  to pool/main/q/quagga/quagga_0.96.2-9_i386.deb


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



Accepted autotools-dev 20031007.1 (all source)

2003-10-07 Thread Henrique de Moraes Holschuh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 10:08:04 -0300
Source: autotools-dev
Binary: autotools-dev
Architecture: source all
Version: 20031007.1
Distribution: unstable
Urgency: high
Maintainer: Henrique de Moraes Holschuh [EMAIL PROTECTED]
Changed-By: Henrique de Moraes Holschuh [EMAIL PROTECTED]
Description: 
 autotools-dev - Update infrastructure for config.{guess,sub} files
Changes: 
 autotools-dev (20031007.1) unstable; urgency=high
 .
   * Sync to CVS 20031007 (config.sub 20031007; config.guess 20031007)
   * Changes needed by the *BSD group
Files: 
 f5534de2a5cee8f0e937c42954abe89e 535 devel optional autotools-dev_20031007.1.dsc
 f69bd18c97d2b72376bae0f1d8877957 50590 devel optional autotools-dev_20031007.1.tar.gz
 c22ac4b0c17defe7f532668ea042b434 53100 devel optional autotools-dev_20031007.1_all.deb

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

iD8DBQE/grsz7iXePxzbD+MRAsDmAKCLdgUARBN1AMXeBo7O5lN8fKDM9ACcD8DU
8KkmqVACAhkwJD6ZYE+a92U=
=S/Aq
-END PGP SIGNATURE-


Accepted:
autotools-dev_20031007.1.dsc
  to pool/main/a/autotools-dev/autotools-dev_20031007.1.dsc
autotools-dev_20031007.1.tar.gz
  to pool/main/a/autotools-dev/autotools-dev_20031007.1.tar.gz
autotools-dev_20031007.1_all.deb
  to pool/main/a/autotools-dev/autotools-dev_20031007.1_all.deb


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



Accepted gthumb 3:2.1.5-1 (i386 source)

2003-10-07 Thread Remco van de Meent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 14:16:34 +0200
Source: gthumb
Binary: gthumb
Architecture: source i386
Version: 3:2.1.5-1
Distribution: unstable
Urgency: low
Maintainer: Remco van de Meent [EMAIL PROTECTED]
Changed-By: Remco van de Meent [EMAIL PROTECTED]
Description: 
 gthumb - an image viewer and browser for GNOME2
Closes: 158437 176886 176886 201276 204285 204491 204741 205219 205245 205605 209621
Changes: 
 gthumb (3:2.1.5-1) unstable; urgency=low
 .
   * Accepting all changes by Christian Marillat (closes: #158437, #205605,
 #204285, #176886, #201276, #204741, #204491, #205219, #205245, #176886)
   * There is no much more to say about gthumb than a one-line description
 (closes: #209621)
Files: 
 d6ee84a284d311298acee5fdbdbee0b6 704 gnome optional gthumb_2.1.5-1.dsc
 eadbdf6ed31a5129240860e62e3986bf 1995982 gnome optional gthumb_2.1.5.orig.tar.gz
 ccb9041dee5acf792cd593d6b00db5f3 15125 gnome optional gthumb_2.1.5-1.diff.gz
 b8a9018d49b2930dfedb22c1fde7f571 1657540 gnome optional gthumb_2.1.5-1_i386.deb

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

iD8DBQE/gr8m2tWnGbzBMd4RAgpsAJsFuERi8jM0/a/ZBHo5Sc+yKFLbzgCgoBIS
46Rq0D5vc5nyUAFrBoYP5OU=
=VAT/
-END PGP SIGNATURE-


Accepted:
gthumb_2.1.5-1.diff.gz
  to pool/main/g/gthumb/gthumb_2.1.5-1.diff.gz
gthumb_2.1.5-1.dsc
  to pool/main/g/gthumb/gthumb_2.1.5-1.dsc
gthumb_2.1.5-1_i386.deb
  to pool/main/g/gthumb/gthumb_2.1.5-1_i386.deb


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



Accepted webalizer 2.01.10-20 (i386 source)

2003-10-07 Thread Remco van de Meent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 14:30:38 +0200
Source: webalizer
Binary: webalizer
Architecture: source i386
Version: 2.01.10-20
Distribution: unstable
Urgency: low
Maintainer: Remco van de Meent [EMAIL PROTECTED]
Changed-By: Remco van de Meent [EMAIL PROTECTED]
Description: 
 webalizer  - Web server log analysis program
Closes: 201710 202404 203496 206171
Changes: 
 webalizer (2.01.10-20) unstable; urgency=low
 .
   * Remove German translation, is it was actually Danish (closes:
 #202404)
   * Update configuration template (closes: #203496)
   * Updated Japanese translation, thanks to Tatsuki Sugiura (closes:
 #201710)
   * Fix problem with list of months, thanks to Brad Roberts  (closes:
 #206171)
Files: 
 3dd40cfa57f45900994dcd2f7672ecf9 686 web optional webalizer_2.01.10-20.dsc
 413003c20163366953aeae2ee9623af6 159840 web optional webalizer_2.01.10-20.diff.gz
 9eefb30b47cba9a18e302390cbedb97f 303746 web optional webalizer_2.01.10-20_i386.deb

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

iD8DBQE/gsK52tWnGbzBMd4RAnJuAJ4/XodnvoM/Z8XYo+2LdAyuqdFALwCeMF1z
ulMWHm3FVEKhyDSIRMaiLBo=
=45MS
-END PGP SIGNATURE-


Accepted:
webalizer_2.01.10-20.diff.gz
  to pool/main/w/webalizer/webalizer_2.01.10-20.diff.gz
webalizer_2.01.10-20.dsc
  to pool/main/w/webalizer/webalizer_2.01.10-20.dsc
webalizer_2.01.10-20_i386.deb
  to pool/main/w/webalizer/webalizer_2.01.10-20_i386.deb


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



Accepted pciutils 1:2.1.11-3 (i386 source)

2003-10-07 Thread Remco van de Meent
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 13:29:12 +0200
Source: pciutils
Binary: pciutils pciutils-dev
Architecture: source i386
Version: 1:2.1.11-3
Distribution: unstable
Urgency: low
Maintainer: Remco van de Meent [EMAIL PROTECTED]
Changed-By: Remco van de Meent [EMAIL PROTECTED]
Description: 
 pciutils   - Linux PCI Utilities (for 2.[123456].x kernels)
 pciutils-dev - Linux PCI Utilities (for 2.[123456].x kernels) (development files
Closes: 191468 191573 200340 207446 207450 212246
Changes: 
 pciutils (1:2.1.11-3) unstable; urgency=low
 .
   * Upgraded to Standards-Version: 3.6.1
   * Applied patch from Iustin Pop to have pciutils provide a shared
 library (closes: #212246)
   * Formatting problem for PCI-X capabilities fixed, thanks to Matthew
 Wilcox (closes: #191468)
   * Formatting problem for cache line size fixed, thanks to Grant
 Grundler (closes: #207446, #207450)
   * Applied patch from Matthieu Lochegnies to fix PCI configuration read
 (closes: #200340)
   * Applied patch from Matthew Wilcox to fix PCI-X capability reporting
 (closes: #191573)
   * Put lspci and setpci in /usr/bin
   * Updated pci.ids file
Files: 
 a67780238170d2c724b277e834dcce65 613 admin optional pciutils_2.1.11-3.dsc
 c043b87963bf203bef33dfd9f49881c1 30779 admin optional pciutils_2.1.11-3.diff.gz
 3170b3af65525044dccab910db8f5b5f 117838 admin optional pciutils_2.1.11-3_i386.deb
 31665423e93eaa489db92870f26d4ae0 19598 devel optional pciutils-dev_2.1.11-3_i386.deb

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

iD8DBQE/gsJS2tWnGbzBMd4RAlaeAKCOlSzFIkbfgDhpK61swVfSSzDAVACdHiQA
U8GVq4xIPkljIwc/GsvIKFg=
=NT9h
-END PGP SIGNATURE-


Accepted:
pciutils-dev_2.1.11-3_i386.deb
  to pool/main/p/pciutils/pciutils-dev_2.1.11-3_i386.deb
pciutils_2.1.11-3.diff.gz
  to pool/main/p/pciutils/pciutils_2.1.11-3.diff.gz
pciutils_2.1.11-3.dsc
  to pool/main/p/pciutils/pciutils_2.1.11-3.dsc
pciutils_2.1.11-3_i386.deb
  to pool/main/p/pciutils/pciutils_2.1.11-3_i386.deb


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



Accepted mysql-dfsg 4.0.15a-1 (i386 source all)

2003-10-07 Thread Christian Hammers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 15:10:26 +0200
Source: mysql-dfsg
Binary: mysql-server mysql-common libmysqlclient-dev libmysqlclient12 mysql-client
Architecture: source i386 all
Version: 4.0.15a-1
Distribution: unstable
Urgency: low
Maintainer: Christian Hammers [EMAIL PROTECTED]
Changed-By: Christian Hammers [EMAIL PROTECTED]
Description: 
 libmysqlclient-dev - mysql database development files
 libmysqlclient12 - mysql database client library
 mysql-client - mysql database client binaries
 mysql-common - mysql database common files (e.g. /etc/mysql/my.cnf)
 mysql-server - mysql database server binaries
Changes: 
 mysql-dfsg (4.0.15a-1) unstable; urgency=low
 .
   * Same package as 4.0.15-2 but I could not convince the Debian
 installer to move the packages out of incoming.
Files: 
 5d25289532a92e4b0ec5fd28d6ab8872 873 misc optional mysql-dfsg_4.0.15a-1.dsc
 3dd94a7adb5fbd2efbf582b84d0d31b6 9417817 misc optional mysql-dfsg_4.0.15a.orig.tar.gz
 e12d1350107ed720ef0befec5a2e8ba5 323866 misc optional mysql-dfsg_4.0.15a-1.diff.gz
 04cfce6c2a2554ab93a01954389e6e24 21506 misc optional mysql-common_4.0.15a-1_all.deb
 86e2c20ff87cf188bda07035426f6d5e 287792 libs optional 
libmysqlclient12_4.0.15a-1_i386.deb
 1026963ec260b4a171a8315d2b347988 2869422 libdevel optional 
libmysqlclient-dev_4.0.15a-1_i386.deb
 7db3c4978bf4a2783395a29b4485bdba 252816 misc optional mysql-client_4.0.15a-1_i386.deb
 a36e9c2e9c2b61d742f40d1c0c793f64 3588110 misc optional mysql-server_4.0.15a-1_i386.deb

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

iEYEARECAAYFAj+CyBAACgkQkR9K5oahGOaWMgCZAQLZGJH6yTzJ3xb0fbr3Fwur
he8AmwXZWV2Sj47FL1ocO1SUsxhgNs5A
=sKJ7
-END PGP SIGNATURE-


Accepted:
libmysqlclient-dev_4.0.15a-1_i386.deb
  to pool/main/m/mysql-dfsg/libmysqlclient-dev_4.0.15a-1_i386.deb
libmysqlclient12_4.0.15a-1_i386.deb
  to pool/main/m/mysql-dfsg/libmysqlclient12_4.0.15a-1_i386.deb
mysql-client_4.0.15a-1_i386.deb
  to pool/main/m/mysql-dfsg/mysql-client_4.0.15a-1_i386.deb
mysql-common_4.0.15a-1_all.deb
  to pool/main/m/mysql-dfsg/mysql-common_4.0.15a-1_all.deb
mysql-dfsg_4.0.15a-1.diff.gz
  to pool/main/m/mysql-dfsg/mysql-dfsg_4.0.15a-1.diff.gz
mysql-dfsg_4.0.15a-1.dsc
  to pool/main/m/mysql-dfsg/mysql-dfsg_4.0.15a-1.dsc
mysql-dfsg_4.0.15a.orig.tar.gz
  to pool/main/m/mysql-dfsg/mysql-dfsg_4.0.15a.orig.tar.gz
mysql-server_4.0.15a-1_i386.deb
  to pool/main/m/mysql-dfsg/mysql-server_4.0.15a-1_i386.deb


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



Accepted wlex 20030929-4 (powerpc source)

2003-10-07 Thread Stefano Zacchiroli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 16:49:26 +0200
Source: wlex
Binary: ocaml-wlex libwlexing-ocaml-dev libwlexing-ocaml
Architecture: source powerpc
Version: 20030929-4
Distribution: unstable
Urgency: low
Maintainer: Stefano Zacchiroli [EMAIL PROTECTED]
Changed-By: Stefano Zacchiroli [EMAIL PROTECTED]
Description: 
 libwlexing-ocaml - OCaml lexer generator for large encodings
 libwlexing-ocaml-dev - OCaml lexer generator for large encodings
 ocaml-wlex - OCaml lexer generator for large encodings
Changes: 
 wlex (20030929-4) unstable; urgency=low
 .
   * Bugfix: added build-dep on bzip2 needed to uncompress ocaml sources
 tarball
Files: 
 39c670e3880fa16caf0c5eb6cf7fa187 685 devel optional wlex_20030929-4.dsc
 42054be2bf448dfa2f8a35fed367e5d7 5834 devel optional wlex_20030929-4.diff.gz
 e5aecbd6a13cb40952c1f5fba5b056aa 42162 devel optional 
ocaml-wlex_20030929-4_powerpc.deb
 cc2a0ef98178e8fd3268aba2b255d313 8564 libs optional 
libwlexing-ocaml_20030929-4_powerpc.deb
 9fe45d5f7338c68b281558927725838a 7248 libdevel optional 
libwlexing-ocaml-dev_20030929-4_powerpc.deb

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

iD8DBQE/gtMA1cqbBPLEI7wRAtCQAJ9pR/RrPRTXK9ATWMsxELjrWYkqyACfVqrx
fBoJK/Al+UfpICilpjSveVw=
=GYDQ
-END PGP SIGNATURE-


Accepted:
libwlexing-ocaml-dev_20030929-4_powerpc.deb
  to pool/main/w/wlex/libwlexing-ocaml-dev_20030929-4_powerpc.deb
libwlexing-ocaml_20030929-4_powerpc.deb
  to pool/main/w/wlex/libwlexing-ocaml_20030929-4_powerpc.deb
ocaml-wlex_20030929-4_powerpc.deb
  to pool/main/w/wlex/ocaml-wlex_20030929-4_powerpc.deb
wlex_20030929-4.diff.gz
  to pool/main/w/wlex/wlex_20030929-4.diff.gz
wlex_20030929-4.dsc
  to pool/main/w/wlex/wlex_20030929-4.dsc


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



Accepted pxp 1.1.94-5 (powerpc source)

2003-10-07 Thread Stefano Zacchiroli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 16:53:20 +0200
Source: pxp
Binary: libpxp-ocaml-dev
Architecture: source powerpc
Version: 1.1.94-5
Distribution: unstable
Urgency: low
Maintainer: Stefano Zacchiroli [EMAIL PROTECTED]
Changed-By: Stefano Zacchiroli [EMAIL PROTECTED]
Description: 
 libpxp-ocaml-dev - OCaml library that implement an XML-1.0 validating parser
Changes: 
 pxp (1.1.94-5) unstable; urgency=low
 .
   * Bumped ocaml-wlex dependencies
Files: 
 efec53316d87f2b77b6a3f067c555ec4 688 libdevel optional pxp_1.1.94-5.dsc
 0aa24cc6aec9b17a29d513fbe79dc02c 4597 libdevel optional pxp_1.1.94-5.diff.gz
 4e34187117a91f11d93faf0144f1caa4 1736686 libdevel optional 
libpxp-ocaml-dev_1.1.94-5_powerpc.deb

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

iD8DBQE/gtgR1cqbBPLEI7wRAmYzAKC5kC8W++2cUu1O/uScv64YXUYzpACfe6G8
lY5cTcKJ5VkYCh0eHwZ0T1Q=
=F0cb
-END PGP SIGNATURE-


Accepted:
libpxp-ocaml-dev_1.1.94-5_powerpc.deb
  to pool/main/p/pxp/libpxp-ocaml-dev_1.1.94-5_powerpc.deb
pxp_1.1.94-5.diff.gz
  to pool/main/p/pxp/pxp_1.1.94-5.diff.gz
pxp_1.1.94-5.dsc
  to pool/main/p/pxp/pxp_1.1.94-5.dsc


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



Accepted lablgtk2 0.beta.20030828-2 (i386 source)

2003-10-07 Thread Sven Luther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 17:06:23 +0200
Source: lablgtk2
Binary: liblablgtk2-ocaml-dev liblablgtk2-ocaml
Architecture: source i386
Version: 0.beta.20030828-2
Distribution: unstable
Urgency: low
Maintainer: Sven Luther [EMAIL PROTECTED]
Changed-By: Sven Luther [EMAIL PROTECTED]
Description: 
 liblablgtk2-ocaml - Runtime libraries for ocaml bindings for Gtk+ version 2
 liblablgtk2-ocaml-dev - Ocaml bindings to Gtk+ version 2
Changes: 
 lablgtk2 (0.beta.20030828-2) unstable; urgency=low
 .
   * Applied notebook fix patch from Olivier Andrieu.
Files: 
 37d97a317e7ae68c7a60a5de96367164 795 libdevel optional lablgtk2_0.beta.20030828-2.dsc
 09d5de2d3d9f992312b126a905b889f1 15365 libdevel optional 
lablgtk2_0.beta.20030828-2.diff.gz
 18c8429f54b0a4a683ec016817019aee 117938 libs optional 
liblablgtk2-ocaml_0.beta.20030828-2_i386.deb
 c3116876f78ab88cfeee3107d595fd62 1986822 libdevel optional 
liblablgtk2-ocaml-dev_0.beta.20030828-2_i386.deb

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

iD8DBQE/gtc32WTeT3CRQaQRAsJYAKCaNM2NFrsCwG32PoAuutJH926xswCfUDu9
8BFiDdD6v30ioGAsXHAgiMY=
=p1b+
-END PGP SIGNATURE-


Accepted:
lablgtk2_0.beta.20030828-2.diff.gz
  to pool/main/l/lablgtk2/lablgtk2_0.beta.20030828-2.diff.gz
lablgtk2_0.beta.20030828-2.dsc
  to pool/main/l/lablgtk2/lablgtk2_0.beta.20030828-2.dsc
liblablgtk2-ocaml-dev_0.beta.20030828-2_i386.deb
  to pool/main/l/lablgtk2/liblablgtk2-ocaml-dev_0.beta.20030828-2_i386.deb
liblablgtk2-ocaml_0.beta.20030828-2_i386.deb
  to pool/main/l/lablgtk2/liblablgtk2-ocaml_0.beta.20030828-2_i386.deb


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



Accepted squirrelmail 1:1.4.2-1 (all source)

2003-10-07 Thread Sam Johnston
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  6 Oct 2003 07:44:12 +1000
Source: squirrelmail
Binary: squirrelmail
Architecture: source all
Version: 1:1.4.2-1
Distribution: unstable
Urgency: medium
Maintainer: Sam Johnston [EMAIL PROTECTED]
Changed-By: Sam Johnston [EMAIL PROTECTED]
Description: 
 squirrelmail - Webmail for nuts
Closes: 146416 150338 163995 165753 167471 173367 175773 178951 179166 180108 185602 
188143 188441 188631 189602 190315 190923 191028 191856 192239 193680 198747 200108 
201022 202368 204058 205572
Changes: 
 squirrelmail (1:1.4.2-1) unstable; urgency=medium
 .
   * New upstream release. Closes: #204058.
   * Significant improvements over (broken) 1.4.0-1 package.
   * PHP compatability fixes. Closes: #202368.
   * conf.pl corrupts theme paths issue resolved.
 Closes: #175773, #180108, #188441, #190315, #190923, #191028.
   * Backwards compatible with stripped path themes (previous debs).
   * Highlighting issue (1.4.0) resolved. Closes: #188631.
   * Rendering issues with problem emails resolved. Closes: #205572.
   * Resource utilisation improvements. Closes: #191856, #189602.
   * README reference to upstream INSTALL document updated.
 Closes: #173367, 178951.
   * All known XSS exploits resolved. Closes: #167471.
   * Folder list refreshes on login. Closes: #165753.
   * $domain variable set to contents of /etc/hostname. Closes: #198747.
   * Trims of HTTP_HOST port number for use in SMTP HELO. Closes: #200108.
   * Fails gracefully when IMAP server unavailable. Closes: #192239.
   * Recommends rather than depends on spell checker. Closes: #193680.
   * DirectoryIndex directive added to apache.conf. Closes: #201022.
   * Plugin config(s) moved to /etc. Closes: #146416.
   * Properly handles accents and tildes in To:, Subject: etc headers.
 Closes: #150338, #179166.
   * No (broken) 'Save' button in printable version. Closes: #185602.
   * Removes /usr/share/squirrelmail/data iff is is a symbolic link.
 Closes: #188143.
   * Resolves policy violation by replacing conf.pl (executable in /etc)
 with a symlink to /usr/sbin/squirrelmail-configure. Closes: #163995.
Files: 
 ad56c9f1ce04b69c732385c7f13af880 582 web optional squirrelmail_1.4.2-1.dsc
 b0c56513bb92936f5da392202553038d 2873562 web optional squirrelmail_1.4.2.orig.tar.gz
 50154c6194e295c551a9dd919f1904c8 11549 web optional squirrelmail_1.4.2-1.diff.gz
 abedcecac43a2516e52d3a6289ca8ea0 2876250 web optional squirrelmail_1.4.2-1_all.deb

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

iD8DBQE/gtKSj4XJViLpTR0RAhYdAKCBdhSIhfhfPJe5GIuBtRIvrYKTCACfdYtt
amjKRfbDtZYkid9K7FA0Wvk=
=k0KE
-END PGP SIGNATURE-


Accepted:
squirrelmail_1.4.2-1.diff.gz
  to pool/main/s/squirrelmail/squirrelmail_1.4.2-1.diff.gz
squirrelmail_1.4.2-1.dsc
  to pool/main/s/squirrelmail/squirrelmail_1.4.2-1.dsc
squirrelmail_1.4.2-1_all.deb
  to pool/main/s/squirrelmail/squirrelmail_1.4.2-1_all.deb
squirrelmail_1.4.2.orig.tar.gz
  to pool/main/s/squirrelmail/squirrelmail_1.4.2.orig.tar.gz


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



Accepted cl-ppcre 0.6.0-1 (all source)

2003-10-07 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 09:26:14 -0600
Source: cl-ppcre
Binary: cl-ppcre
Architecture: source all
Version: 0.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg [EMAIL PROTECTED]
Changed-By: Kevin M. Rosenberg [EMAIL PROTECTED]
Description: 
 cl-ppcre   - Portable Regular Express Library for Common Lisp
Changes: 
 cl-ppcre (0.6.0-1) unstable; urgency=low
 .
   * New upstream
Files: 
 1b50f99328ba11404449e66daa9e41e2 575 devel optional cl-ppcre_0.6.0-1.dsc
 56b2c2e67d2a7bc3f0b77c5a159f30ee 154069 devel optional cl-ppcre_0.6.0.orig.tar.gz
 89a16d42341e86f97630b689ab5f7e5e 3074 devel optional cl-ppcre_0.6.0-1.diff.gz
 d04b68f6218f289109239110ec54780a 86596 devel optional cl-ppcre_0.6.0-1_all.deb

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

iD8DBQE/gts0ES7N8sSjgj4RAvdGAJ9OlTo29X2slbfY0yvtolEwBeYLYQCgiRsH
3gfH1cVWuWU81WCpbZ+jBeo=
=rVS3
-END PGP SIGNATURE-


Accepted:
cl-ppcre_0.6.0-1.diff.gz
  to pool/main/c/cl-ppcre/cl-ppcre_0.6.0-1.diff.gz
cl-ppcre_0.6.0-1.dsc
  to pool/main/c/cl-ppcre/cl-ppcre_0.6.0-1.dsc
cl-ppcre_0.6.0-1_all.deb
  to pool/main/c/cl-ppcre/cl-ppcre_0.6.0-1_all.deb
cl-ppcre_0.6.0.orig.tar.gz
  to pool/main/c/cl-ppcre/cl-ppcre_0.6.0.orig.tar.gz


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



Accepted fortunes-debian-hints 1.5 (all source)

2003-10-07 Thread Joel Baker
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  6 Oct 2003 22:16:26 -0600
Source: fortunes-debian-hints
Binary: fortunes-debian-hints
Architecture: source all
Version: 1.5
Distribution: unstable
Urgency: low
Maintainer: Joel Baker [EMAIL PROTECTED]
Changed-By: Joel Baker [EMAIL PROTECTED]
Description: 
 fortunes-debian-hints - Debian Hints for fortune
Closes: 213973
Changes: 
 fortunes-debian-hints (1.5) unstable; urgency=low
 .
   * Added 1 hint. (Closes: #213973)
   * Upgraded to Policy 3.6.1
   * Correctly purge CVS files on release. Oops.
Files: 
 c0b135feeede24e56f09a917ee3c441e 539 games optional fortunes-debian-hints_1.5.dsc
 891f073353d6d11bed9a82309b8aee42 4060 games optional fortunes-debian-hints_1.5.tar.gz
 c1c6921811f54ca1da7a17e3bad82c13 4862 games optional fortunes-debian-hints_1.5_all.deb

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

iD8DBQE/gtpglZCPwGNtWe4RAuzXAJ0bSqlXkYBfFfCmGPbcBLGv2aHgMQCdFtE6
qA80uFCfHfP5KkLQ3W2s8u4=
=OMvY
-END PGP SIGNATURE-


Accepted:
fortunes-debian-hints_1.5.dsc
  to pool/main/f/fortunes-debian-hints/fortunes-debian-hints_1.5.dsc
fortunes-debian-hints_1.5.tar.gz
  to pool/main/f/fortunes-debian-hints/fortunes-debian-hints_1.5.tar.gz
fortunes-debian-hints_1.5_all.deb
  to pool/main/f/fortunes-debian-hints/fortunes-debian-hints_1.5_all.deb


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



Accepted dvd+rw-tools 5.13.4.7.4-1 (i386 source)

2003-10-07 Thread Keita Maehara
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  8 Oct 2003 00:48:44 +0900
Source: dvd+rw-tools
Binary: dvd+rw-tools
Architecture: source i386
Version: 5.13.4.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Keita Maehara [EMAIL PROTECTED]
Changed-By: Keita Maehara [EMAIL PROTECTED]
Description: 
 dvd+rw-tools - DVD+-RW/R tools
Changes: 
 dvd+rw-tools (5.13.4.7.4-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 3a80fe3a396612182bcdd93dbcb856cf 612 utils optional dvd+rw-tools_5.13.4.7.4-1.dsc
 6a3c3c2efe6616bb98b62ed6de31dd3c 73472 utils optional 
dvd+rw-tools_5.13.4.7.4.orig.tar.gz
 3f3e4c87623d56d2230c852356a1ab81 10356 utils optional 
dvd+rw-tools_5.13.4.7.4-1.diff.gz
 22cbf13ec7bec51b5c844270caba2597 78778 utils optional 
dvd+rw-tools_5.13.4.7.4-1_i386.deb

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

iD8DBQE/guEcJxItQqZ0o1kRArJKAJ99g13hhbtOpczodX1526QENWLU8wCgk7lD
/XyqUiA1XL+x3xvQb8utzek=
=dKTY
-END PGP SIGNATURE-


Accepted:
dvd+rw-tools_5.13.4.7.4-1.diff.gz
  to pool/main/d/dvd+rw-tools/dvd+rw-tools_5.13.4.7.4-1.diff.gz
dvd+rw-tools_5.13.4.7.4-1.dsc
  to pool/main/d/dvd+rw-tools/dvd+rw-tools_5.13.4.7.4-1.dsc
dvd+rw-tools_5.13.4.7.4-1_i386.deb
  to pool/main/d/dvd+rw-tools/dvd+rw-tools_5.13.4.7.4-1_i386.deb
dvd+rw-tools_5.13.4.7.4.orig.tar.gz
  to pool/main/d/dvd+rw-tools/dvd+rw-tools_5.13.4.7.4.orig.tar.gz


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



Accepted libnet-scp-expect-perl 0.10-2 (all source)

2003-10-07 Thread Jay Bonci
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  6 Oct 2003 13:29:56 -0400
Source: libnet-scp-expect-perl
Binary: libnet-scp-expect-perl
Architecture: source all
Version: 0.10-2
Distribution: unstable
Urgency: low
Maintainer: Jay Bonci [EMAIL PROTECTED]
Changed-By: Jay Bonci [EMAIL PROTECTED]
Description: 
 libnet-scp-expect-perl - Wrapper for scp to send passwords via Expect
Changes: 
 libnet-scp-expect-perl (0.10-2) unstable; urgency=low
 .
   * Updated maintainer email address in control file
Files: 
 74e663885a7c044e04e10dfdbd35d409 697 perl optional libnet-scp-expect-perl_0.10-2.dsc
 3775f8ee41edf85cbe29d317794dba52 1647 perl optional 
libnet-scp-expect-perl_0.10-2.diff.gz
 3b1332679cabadf453ea1198fb61ef46 17346 perl optional 
libnet-scp-expect-perl_0.10-2_all.deb

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

iD8DBQE/gt9bZNh5D+C4st4RAlG/AJ4z13OPvsYIR2KRQXCiVufCgnpmxgCfV4yQ
3aNEGLp+2ZOkTn1VBbD2jWc=
=5esC
-END PGP SIGNATURE-


Accepted:
libnet-scp-expect-perl_0.10-2.diff.gz
  to pool/main/libn/libnet-scp-expect-perl/libnet-scp-expect-perl_0.10-2.diff.gz
libnet-scp-expect-perl_0.10-2.dsc
  to pool/main/libn/libnet-scp-expect-perl/libnet-scp-expect-perl_0.10-2.dsc
libnet-scp-expect-perl_0.10-2_all.deb
  to pool/main/libn/libnet-scp-expect-perl/libnet-scp-expect-perl_0.10-2_all.deb


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



Accepted cpudyn 0.4.5-1 (i386 source)

2003-10-07 Thread Celso González
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 13:30:48 +0200
Source: cpudyn
Binary: cpudyn
Architecture: source i386
Version: 0.4.5-1
Distribution: unstable
Urgency: low
Maintainer: Celso González [EMAIL PROTECTED]
Changed-By: Celso González [EMAIL PROTECTED]
Description: 
 cpudyn - CPU dynamic frequency control for processors with scaling
Closes: 212557
Changes: 
 cpudyn (0.4.5-1) unstable; urgency=low
 .
   * New upstream release
 - debian tree is now integrated in source upstream
 - Include Nuno Ferreira's ACPI throttling patch (closes: #212557)
  Allow to choose the throttling state to use adding a new command
  line parameter (defaults to T3), man page and init script are
  also changed to reflect the new option
 - Check period performance to powersave is delayed at least 4
  seconds, sound is not always happy but is not a cpudyn problem.
Files: 
 5795dfe40aaa094211813613342843ca 556 admin optional cpudyn_0.4.5-1.dsc
 1cd765989b08786f22c5829c4aa4cd8d 25633 admin optional cpudyn_0.4.5.orig.tar.gz
 73af53b6ef8d2a78d5fcda36f7ad9e43 935 admin optional cpudyn_0.4.5-1.diff.gz
 e69c530aeef48b3454b91bb5b1d2694d 18598 admin optional cpudyn_0.4.5-1_i386.deb

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

iD8DBQE/guLXpdwBkPlyvgMRAkq1AJ92l7ChXWAQgifOnpzH0DMqFcQpMACfWjLw
rdbJIBEsVcfHKV04HXh/JCs=
=kxoD
-END PGP SIGNATURE-


Accepted:
cpudyn_0.4.5-1.diff.gz
  to pool/main/c/cpudyn/cpudyn_0.4.5-1.diff.gz
cpudyn_0.4.5-1.dsc
  to pool/main/c/cpudyn/cpudyn_0.4.5-1.dsc
cpudyn_0.4.5-1_i386.deb
  to pool/main/c/cpudyn/cpudyn_0.4.5-1_i386.deb
cpudyn_0.4.5.orig.tar.gz
  to pool/main/c/cpudyn/cpudyn_0.4.5.orig.tar.gz


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



Accepted fuse 1.0-1 (i386 source all)

2003-10-07 Thread Roland Bauerschmidt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 18:00:23 +0200
Source: fuse
Binary: fuse-source fuse-utils libfuse-dev
Architecture: source all i386
Version: 1.0-1
Distribution: unstable
Urgency: low
Maintainer: Roland Bauerschmidt [EMAIL PROTECTED]
Changed-By: Roland Bauerschmidt [EMAIL PROTECTED]
Description: 
 fuse-source - Filesystem in USErspace (source for kernel module)
 fuse-utils - Filesystem in USErspace (utilities)
 libfuse-dev - Filesystem in USErspace (development files)
Closes: 209358 212576
Changes: 
 fuse (1.0-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/genchanges.sh: Only run gpg/pgp if available. Closes: #209358.
   * debian/fuse-module.control: Fixed typo (fuse-module instead of
 fule-module). Closes: #212576.
Files: 
 80d04c6f7145de8073c1cabc73df07c6 537 - optional fuse_1.0-1.dsc
 6da270f05b1ba70781223f1275e50b67 96616 - optional fuse_1.0-1.tar.gz
 b697e434f75469a33ea20e10a0bc1d10 20790 devel optional libfuse-dev_1.0-1_i386.deb
 7217864332b885c89951a71f8315460a 9066 utils optional fuse-utils_1.0-1_i386.deb
 c6ae5f7ad358d161ad3e564260203d9d 140992 utils optional fuse-source_1.0-1_all.deb

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

iD8DBQE/guc9DpXnNan6F/8RAi4TAKDNjFh5IVhctpuBmHGeSqyTeMuB8gCghI0c
782rXZAx0ANSu2bPRVypeq8=
=cVBz
-END PGP SIGNATURE-


Accepted:
fuse-source_1.0-1_all.deb
  to pool/main/f/fuse/fuse-source_1.0-1_all.deb
fuse-utils_1.0-1_i386.deb
  to pool/main/f/fuse/fuse-utils_1.0-1_i386.deb
fuse_1.0-1.dsc
  to pool/main/f/fuse/fuse_1.0-1.dsc
fuse_1.0-1.tar.gz
  to pool/main/f/fuse/fuse_1.0-1.tar.gz
libfuse-dev_1.0-1_i386.deb
  to pool/main/f/fuse/libfuse-dev_1.0-1_i386.deb


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



Accepted xawtv 3.88.1 (powerpc source)

2003-10-07 Thread Gerd Knorr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 17:26:57 +0200
Source: xawtv
Binary: xawtv-plugins fbtv radio ttv webcam xawtv-plugin-qt pia xawtv-tools xawtv 
scantv streamer alevtd v4l-conf
Architecture: source powerpc
Version: 3.88.1
Distribution: unstable
Urgency: low
Maintainer: Gerd Knorr [EMAIL PROTECTED]
Changed-By: Gerd Knorr [EMAIL PROTECTED]
Description: 
 alevtd - http daemon for videotext pages
 fbtv   - linux console (fbcon) TV application
 pia- movie player
 radio  - ncurses-based radio application
 scantv - scan TV channels for stations
 streamer   - capture tool (images / movies)
 ttv- tty TV application
 v4l-conf   - tool to configure video4linux drivers
 webcam - capture and upload images
 xawtv  - X11 TV application
 xawtv-plugin-qt - quicktime plugin for xawtv and motv
 xawtv-plugins - plugins for xawtv and motv
 xawtv-tools - Miscellaneous tools distributed with xawtv
Closes: 198780 199982 214120
Changes: 
 xawtv (3.88.1) unstable; urgency=low
 .
   * bugfix release (closes: #214120).
   * updated debconf (closes: #198780, #199982).
Files: 
 2f80d47ee20620c513953f291c13ee9c 816 graphics extra xawtv_3.88.1.dsc
 2908b041e6cc4947bd3650e29667f43b 556277 graphics extra xawtv_3.88.1.tar.gz
 ccf53d77add8f2c0904eae8f873c3c00 295968 x11 extra xawtv_3.88.1_powerpc.deb
 0c989015c5093503ef5043f8ae3fcfa2 42730 x11 extra pia_3.88.1_powerpc.deb
 4f7d6fbe61d94f602513483302bad3fa 82442 graphics extra fbtv_3.88.1_powerpc.deb
 5d4048a28ae859bc8699ca800af901fb 52092 graphics extra ttv_3.88.1_powerpc.deb
 53cef753b0b3a981dadf966dd94a9b6f 57308 graphics extra scantv_3.88.1_powerpc.deb
 d1fdc7bf762daeedcd331b5fc0bde69f 53346 graphics extra streamer_3.88.1_powerpc.deb
 8693087e1f5c25a236442e67ebde0f4a 16870 sound extra radio_3.88.1_powerpc.deb
 7861b3796eb9e9fe755cf627913b7253 22118 graphics extra v4l-conf_3.88.1_powerpc.deb
 e5f723569afe712ccdb07545dcfe4a21 33466 graphics extra xawtv-tools_3.88.1_powerpc.deb
 1f1ddc08eef5a9cd218ee05c34e08a31 16810 graphics extra 
xawtv-plugin-qt_3.88.1_powerpc.deb
 af6d9da280f7c947facb66829cfd7094 105190 graphics extra 
xawtv-plugins_3.88.1_powerpc.deb
 75586d8f1c68f9357af2aa8c4ae9b570 36934 net extra webcam_3.88.1_powerpc.deb
 05a133383f7a60bd1da14e2155757203 31112 net extra alevtd_3.88.1_powerpc.deb

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

iD8DBQE/guzYAXyjIpYotQIRAjBpAJ9PdB8aQBr7/EgIpEqiTU2AxnU/RgCeLXKW
Ig15qSjck2VzLVuK8sFigXc=
=3zxG
-END PGP SIGNATURE-


Accepted:
alevtd_3.88.1_powerpc.deb
  to pool/main/x/xawtv/alevtd_3.88.1_powerpc.deb
fbtv_3.88.1_powerpc.deb
  to pool/main/x/xawtv/fbtv_3.88.1_powerpc.deb
pia_3.88.1_powerpc.deb
  to pool/main/x/xawtv/pia_3.88.1_powerpc.deb
radio_3.88.1_powerpc.deb
  to pool/main/x/xawtv/radio_3.88.1_powerpc.deb
scantv_3.88.1_powerpc.deb
  to pool/main/x/xawtv/scantv_3.88.1_powerpc.deb
streamer_3.88.1_powerpc.deb
  to pool/main/x/xawtv/streamer_3.88.1_powerpc.deb
ttv_3.88.1_powerpc.deb
  to pool/main/x/xawtv/ttv_3.88.1_powerpc.deb
v4l-conf_3.88.1_powerpc.deb
  to pool/main/x/xawtv/v4l-conf_3.88.1_powerpc.deb
webcam_3.88.1_powerpc.deb
  to pool/main/x/xawtv/webcam_3.88.1_powerpc.deb
xawtv-plugin-qt_3.88.1_powerpc.deb
  to pool/main/x/xawtv/xawtv-plugin-qt_3.88.1_powerpc.deb
xawtv-plugins_3.88.1_powerpc.deb
  to pool/main/x/xawtv/xawtv-plugins_3.88.1_powerpc.deb
xawtv-tools_3.88.1_powerpc.deb
  to pool/main/x/xawtv/xawtv-tools_3.88.1_powerpc.deb
xawtv_3.88.1.dsc
  to pool/main/x/xawtv/xawtv_3.88.1.dsc
xawtv_3.88.1.tar.gz
  to pool/main/x/xawtv/xawtv_3.88.1.tar.gz
xawtv_3.88.1_powerpc.deb
  to pool/main/x/xawtv/xawtv_3.88.1_powerpc.deb


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



Accepted wdiff 0.5-14 (i386 source all)

2003-10-07 Thread Santiago Vila
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 18:42:10 +0200
Source: wdiff
Binary: wdiff-doc wdiff
Architecture: source all i386
Version: 0.5-14
Distribution: unstable
Urgency: low
Maintainer: Santiago Vila [EMAIL PROTECTED]
Changed-By: Santiago Vila [EMAIL PROTECTED]
Description: 
 wdiff  - Compares two files word by word
 wdiff-doc  - Documentation for GNU wdiff
Changes: 
 wdiff (0.5-14) unstable; urgency=low
 .
   * Do not repeat the program name in the short description.
Files: 
 e6f2e4ef02f8aa18df17ff66beb30c89 638 text optional wdiff_0.5-14.dsc
 a15c1c7c3be2b4c64e2f3f071b430176 5272 text optional wdiff_0.5-14.diff.gz
 f074e2f11b2affa7b552b1dc3d83127f 18078 doc optional wdiff-doc_0.5-14_all.deb
 bef9aea63dcb6f42e33b87a8719959c2 32720 text optional wdiff_0.5-14_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE/gu3nd9Uuvj7yPNYRAkt8AJ9SGyTdXZeKOfjJL0LlecNuacuHqQCgpqNi
S6GxiHlu4OEc+jTWZGk2j7Y=
=DcmA
-END PGP SIGNATURE-


Accepted:
wdiff-doc_0.5-14_all.deb
  to pool/main/w/wdiff/wdiff-doc_0.5-14_all.deb
wdiff_0.5-14.diff.gz
  to pool/main/w/wdiff/wdiff_0.5-14.diff.gz
wdiff_0.5-14.dsc
  to pool/main/w/wdiff/wdiff_0.5-14.dsc
wdiff_0.5-14_i386.deb
  to pool/main/w/wdiff/wdiff_0.5-14_i386.deb


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



Accepted kernel-package 8.066 (all source)

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

Format: 1.7
Date: Tue,  7 Oct 2003 11:23:43 -0500
Source: kernel-package
Binary: kernel-package
Architecture: source all
Version: 8.066
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: 214529 214590
Changes: 
 kernel-package (8.066) unstable; urgency=low
 .
   * to default target for mips(el) changed between 2.4 and 2.5. Applied a
 patch from Guido Guenther [EMAIL PROTECTED] to fix this.
closes: Bug#214590
   * Disable the out of the way warning in image.preinst
 when these conditions are met:
1. This is an official kernel (perhaps a substitution in the preinst?)
2. This is an upgrade.
 The reason is that when I make bug fix releases that do not change the
 ABI, modules compiled for the previous kernel will continue to
 work. Unfortunately, the users tend to be scared off by the out of
 the way warning and end up aborting the install and filing a bug.
 Made it so.closes: Bug#214529
Files: 
 88eeb39fd58160ed6201e67834ca05f3 483 misc optional kernel-package_8.066.dsc
 732ccabfde797330b58fcab4bbf56d97 271230 misc optional kernel-package_8.066.tar.gz
 0c15d17b53ce33d18a97076f383bbb88 287406 misc optional kernel-package_8.066_all.deb

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

iD8DBQE/guvCIbrau78kQkwRAnKUAKC2mX3Zi9opC2jRpMOWCACb5rlCiwCg/KXu
tajz+XvqSdZn6s2wxxjKREM=
=oNZA
-END PGP SIGNATURE-


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


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



Accepted fiaif 1.17.2-1 (all source)

2003-10-07 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 18:55:36 +0200
Source: fiaif
Binary: fiaif
Architecture: source all
Version: 1.17.2-1
Distribution: unstable
Urgency: low
Maintainer: Bastian Kleineidam [EMAIL PROTECTED]
Changed-By: Bastian Kleineidam [EMAIL PROTECTED]
Description: 
 fiaif  - An easy to use, yet complex firewall
Changes: 
 fiaif (1.17.2-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 301b32e5029d9bbb191af56e8e2973b5 593 net optional fiaif_1.17.2-1.dsc
 40b705f83171b4c17b233a510b615874 326953 net optional fiaif_1.17.2.orig.tar.gz
 a5f851b4edf34d45548119e570c72802 7648 net optional fiaif_1.17.2-1.diff.gz
 497599dc393063b79510b967e2c3e32a 159918 net optional fiaif_1.17.2-1_all.deb

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

iD8DBQE/gvBaeBwlBDLsbz4RAqr2AKC4BJcLighdfwYY6Yjqz4mlPhVd/QCfSL2K
+Wi/8a98Nv/6/v2RFxjVDZU=
=NGIi
-END PGP SIGNATURE-


Accepted:
fiaif_1.17.2-1.diff.gz
  to pool/main/f/fiaif/fiaif_1.17.2-1.diff.gz
fiaif_1.17.2-1.dsc
  to pool/main/f/fiaif/fiaif_1.17.2-1.dsc
fiaif_1.17.2-1_all.deb
  to pool/main/f/fiaif/fiaif_1.17.2-1_all.deb
fiaif_1.17.2.orig.tar.gz
  to pool/main/f/fiaif/fiaif_1.17.2.orig.tar.gz


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



Accepted libdebug 0.3.1 (i386 source)

2003-10-07 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 18:18:30 +0200
Source: libdebug
Binary: libdebug0-dev libdebug0
Architecture: source i386
Version: 0.3.1
Distribution: unstable
Urgency: high
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 libdebug0  - Memory leak detection system and logging library
 libdebug0-dev - Development files for the debug library
Closes: 214168
Changes: 
 libdebug (0.3.1) unstable; urgency=high
 .
   * Changed libdebug0 section.
   * Added default fail stub.
   * Removed macros for mem_close and log_{open,close}.
   * Print correct date in logfile (Closes: #214168)
   * Changed date format in logfile to comply to ISO 8601 format.
   * Only print prefix if a logfile is used.
   * Added log_flush() function.
Files: 
 e206ac89f8f79ff9e161e02459c00cc7 552 devel optional libdebug_0.3.1.dsc
 100d9e1883721ccb8d1533764e5b383e 13085 devel optional libdebug_0.3.1.tar.gz
 959183c1285027c1322af8f8fe13c04d 9210 libs optional libdebug0_0.3.1_i386.deb
 e1f8a02dcae0c4ff1e96e445f90637ff 12576 libdevel optional libdebug0-dev_0.3.1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.5 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE/gudvzvVjZitVWu4RAlfsAJsGo1KhqOo5WuxVC8KTealC3Yrd8QCfa7ao
JKvr/CQgqtWGJtujh1Z5I8c=
=6riQ
-END PGP SIGNATURE-


Accepted:
libdebug0-dev_0.3.1_i386.deb
  to pool/main/libd/libdebug/libdebug0-dev_0.3.1_i386.deb
libdebug0_0.3.1_i386.deb
  to pool/main/libd/libdebug/libdebug0_0.3.1_i386.deb
libdebug_0.3.1.dsc
  to pool/main/libd/libdebug/libdebug_0.3.1.dsc
libdebug_0.3.1.tar.gz
  to pool/main/libd/libdebug/libdebug_0.3.1.tar.gz


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



Accepted libabz 0.2.2 (i386 source)

2003-10-07 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 18:56:07 +0200
Source: libabz
Binary: libabz0-dev libabz0
Architecture: source i386
Version: 0.2.2
Distribution: unstable
Urgency: low
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 libabz0- Miscellaneous useful routines
 libabz0-dev - Development files for the abz library
Closes: 214284 214291
Changes: 
 libabz (0.2.2) unstable; urgency=low
 .
   * Removed references to abz/compat/inttypes.h (Closes: #214284, #214291)
   * Updated dependencies.
Files: 
 9ce11464ba77a41bac5b2ac19e7a5642 570 devel optional libabz_0.2.2.dsc
 b9cbe07887c6522257d03ea440ab8abb 26414 devel optional libabz_0.2.2.tar.gz
 7f1b15ed876875213794acd56c2121b0 11158 libs optional libabz0_0.2.2_i386.deb
 f2be47f8f78b3ea1d7e7f24cd55dd84a 48092 libdevel optional libabz0-dev_0.2.2_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.5 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE/gvGCzvVjZitVWu4RAofJAJ96Fo4QcJomDJ1TlaLR7mvJKgo/nACdGAus
0SaZgCWcrOB23Yb8lLGDYfg=
=Qy7Y
-END PGP SIGNATURE-


Accepted:
libabz0-dev_0.2.2_i386.deb
  to pool/main/liba/libabz/libabz0-dev_0.2.2_i386.deb
libabz0_0.2.2_i386.deb
  to pool/main/liba/libabz/libabz0_0.2.2_i386.deb
libabz_0.2.2.dsc
  to pool/main/liba/libabz/libabz_0.2.2.dsc
libabz_0.2.2.tar.gz
  to pool/main/liba/libabz/libabz_0.2.2.tar.gz


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



Accepted libber 0.2.5 (i386 source)

2003-10-07 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 19:03:40 +0200
Source: libber
Binary: libber0-dev libber0
Architecture: source i386
Version: 0.2.5
Distribution: unstable
Urgency: low
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 libber0- A Basic Encoding Rules (ITU X.690) implementation
 libber0-dev - Development files for the ber library
Changes: 
 libber (0.2.5) unstable; urgency=low
 .
   * Updated dependencies.
Files: 
 db999defc84c38c0fbcaa6bd15818907 570 devel optional libber_0.2.5.dsc
 f191572b7b30b60accf9227a999b32f8 12973 devel optional libber_0.2.5.tar.gz
 475d87724d27b6512aa125d10d3ee26d 7314 libs optional libber0_0.2.5_i386.deb
 d51a6ea217397316fb050975bbad8057 12598 libdevel optional libber0-dev_0.2.5_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.5 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE/gvKfzvVjZitVWu4RAuMHAJ46Bl6jVIS3adyC5YNHebOWHZs7agCgrsNa
fLN1TKBvLd7YSIf3GgGCFZw=
=CWK0
-END PGP SIGNATURE-


Accepted:
libber0-dev_0.2.5_i386.deb
  to pool/main/libb/libber/libber0-dev_0.2.5_i386.deb
libber0_0.2.5_i386.deb
  to pool/main/libb/libber/libber0_0.2.5_i386.deb
libber_0.2.5.dsc
  to pool/main/libb/libber/libber_0.2.5.dsc
libber_0.2.5.tar.gz
  to pool/main/libb/libber/libber_0.2.5.tar.gz


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



Accepted libconfig 0.1.4 (i386 source)

2003-10-07 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 18:36:30 +0200
Source: libconfig
Binary: libconfig0-dev libconfig0
Architecture: source i386
Version: 0.1.4
Distribution: unstable
Urgency: low
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 libconfig0 - Configuration file parser library
 libconfig0-dev - Development files for the config library
Changes: 
 libconfig (0.1.4) unstable; urgency=low
 .
   * Changed libconfig0-dev section.
   * Updated package dependencies.
Files: 
 7f64cddc64bf00d001f2550e3b5bfcc7 582 devel optional libconfig_0.1.4.dsc
 aa37a03eb6264eafbe23d0137a57aad5 15058 devel optional libconfig_0.1.4.tar.gz
 4e89a35213321a5060e21e6f4d06e0e5 11120 devel optional libconfig0_0.1.4_i386.deb
 22239ecc4f36d0ef9f329dbec09d739c 15382 libdevel optional libconfig0-dev_0.1.4_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.5 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE/guugzvVjZitVWu4RAmbfAKCIak34M/DZIFxROt4J8a/jyErlwgCfaHTd
zRx4ovKs9pg5PuN9tINmlhU=
=DDJ1
-END PGP SIGNATURE-


Accepted:
libconfig0-dev_0.1.4_i386.deb
  to pool/main/libc/libconfig/libconfig0-dev_0.1.4_i386.deb
libconfig0_0.1.4_i386.deb
  to pool/main/libc/libconfig/libconfig0_0.1.4_i386.deb
libconfig_0.1.4.dsc
  to pool/main/libc/libconfig/libconfig_0.1.4.dsc
libconfig_0.1.4.tar.gz
  to pool/main/libc/libconfig/libconfig_0.1.4.tar.gz


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



Accepted rafkill 1.1.0-5 (source)

2003-10-07 Thread Debian packages
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 19:30:09 +0200
Source: rafkill
Binary: rafkill-data rafkill
Architecture: source
Version: 1.1.0-5
Distribution: unstable
Urgency: low
Maintainer: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
Changed-By: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
Description: 
 rafkill- vertical shoot'em-up similar to Raptor: Call of the Shadows
 rafkill-data - graphics and audio data for rafkill
Closes: 214605
Changes: 
 rafkill (1.1.0-5) unstable; urgency=low
 .
   * debian/rules:
 + Build the arch-indep packages in the binary-indep rule (Closes: #214605).
Files: 
 6c7ee1959d6eb4dae64461ab0276 640 games optional rafkill_1.1.0-5.dsc
 fc1ad6d5d0a1721ca7c1c05ae944ccb9 421598 games optional rafkill_1.1.0-5.diff.gz

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

iD8DBQE/gvimfPP1rylJn2ERAuLLAJ47AiF9aY21XNtZgWlqJWZ2kfDpigCgnqal
oLoYDLTMgxUhfRrSQEPtZNs=
=Ed5P
-END PGP SIGNATURE-


Accepted:
rafkill_1.1.0-5.diff.gz
  to pool/main/r/rafkill/rafkill_1.1.0-5.diff.gz
rafkill_1.1.0-5.dsc
  to pool/main/r/rafkill/rafkill_1.1.0-5.dsc


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



Accepted tinysnmp 0.5.6 (i386 source all)

2003-10-07 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat,  7 Oct 2003 19:28:21 +0200
Source: tinysnmp
Binary: tinysnmp-module-traffic tinysnmp-tools tinysnmp-module-resources 
tinysnmp-module-mib2 tinysnmp-agent-dev tinysnmp-manager-dev trafficd tinysnmp-dev 
tinysnmp-agent
Architecture: source i386 all
Version: 0.5.6
Distribution: unstable
Urgency: low
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 tinysnmp-agent - A lightweight SNMPv1 implementation
 tinysnmp-agent-dev - Libraries and header files for developing TinySNMP plugins
 tinysnmp-dev - Files needed for developing TinySNMP programs and plugins
 tinysnmp-manager-dev - Libraries and header files for developing TinySNMP programs
 tinysnmp-module-mib2 - MIB-2 (RFC 1450) plugin for TinySNMP
 tinysnmp-module-resources - Frogfoot Networks Resources MIB plugin for TinySNMP
 tinysnmp-module-traffic - Frogfoot Networks Quality of Service plugin for TinySNMP
 tinysnmp-tools - TinySNMP Utilities
 trafficd   - Frogfoot Networks Quality of Service daemon
Closes: 214560
Changes: 
 tinysnmp (0.5.6) unstable; urgency=low
 .
   * Updated dependencies (Closes: #214560)
Files: 
 a86cdd700b807d46a99440325b5a3906 799 net optional tinysnmp_0.5.6.dsc
 364ef638360039bb5ae77f9c7dba2bd5 88448 net optional tinysnmp_0.5.6.tar.gz
 9f58aa6871cf0a071172922c18ef600f 8128 devel optional tinysnmp-agent-dev_0.5.6_all.deb
 b06e1d2401d489438062eaa075b0248e 10164 devel optional tinysnmp-dev_0.5.6_i386.deb
 01194d4223264b1c6e5141ad15911901 12384 devel optional 
tinysnmp-manager-dev_0.5.6_i386.deb
 3858b1cc399bc84bbd5143b39d95d547 24298 net optional tinysnmp-tools_0.5.6_i386.deb
 8e1448b8a7637528accfc5ddad8aea40 26024 net optional tinysnmp-agent_0.5.6_i386.deb
 6040bd5fa0159fc225c5466f05896efb 13456 net optional 
tinysnmp-module-mib2_0.5.6_i386.deb
 c2b3c94fb6980997629b7f23f0466d68 9606 net optional 
tinysnmp-module-resources_0.5.6_i386.deb
 b7a401c75619ca16958021cd1f0ca58a 14004 net optional 
tinysnmp-module-traffic_0.5.6_i386.deb
 5d5c9e5699d3f0bebe1f606df1163f41 25062 net optional trafficd_0.5.6_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.5 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE/gvfjzvVjZitVWu4RAueeAJ9prDKOzUkx8Rs5l5ZpKkizQRf7nwCgpGRd
v6luKFKyHAeQ1vBHsNNeJEU=
=9YHu
-END PGP SIGNATURE-


Accepted:
tinysnmp-agent-dev_0.5.6_all.deb
  to pool/main/t/tinysnmp/tinysnmp-agent-dev_0.5.6_all.deb
tinysnmp-agent_0.5.6_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-agent_0.5.6_i386.deb
tinysnmp-dev_0.5.6_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-dev_0.5.6_i386.deb
tinysnmp-manager-dev_0.5.6_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-manager-dev_0.5.6_i386.deb
tinysnmp-module-mib2_0.5.6_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-module-mib2_0.5.6_i386.deb
tinysnmp-module-resources_0.5.6_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-module-resources_0.5.6_i386.deb
tinysnmp-module-traffic_0.5.6_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-module-traffic_0.5.6_i386.deb
tinysnmp-tools_0.5.6_i386.deb
  to pool/main/t/tinysnmp/tinysnmp-tools_0.5.6_i386.deb
tinysnmp_0.5.6.dsc
  to pool/main/t/tinysnmp/tinysnmp_0.5.6.dsc
tinysnmp_0.5.6.tar.gz
  to pool/main/t/tinysnmp/tinysnmp_0.5.6.tar.gz
trafficd_0.5.6_i386.deb
  to pool/main/t/tinysnmp/trafficd_0.5.6_i386.deb


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



Accepted muttprint 0.71-6 (all source)

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

Format: 1.7
Date: Tue,  7 Oct 2003 20:09:50 +0200
Source: muttprint
Binary: muttprint-manual ospics muttprint
Architecture: source all
Version: 0.71-6
Distribution: unstable
Urgency: low
Maintainer: Rene Engelhard [EMAIL PROTECTED]
Changed-By: Rene Engelhard [EMAIL PROTECTED]
Description: 
 muttprint  - Pretty printing of mails
 muttprint-manual - Manual for muttprint
 ospics - Some images of operating system logos/mascots
Closes: 204278 209104
Changes: 
 muttprint (0.71-6) unstable; urgency=low
 .
   * add dutch debconf template translation - thanks
 Tim Vandermeersch (closes: #209104)
   * do not use | in Enhances: (closes: #204278)
Files: 
 707eaa5257fa780d95fc62ba88ec0740 646 mail optional muttprint_0.71-6.dsc
 9fb6f9f7163dee85e8af5bf335f9a7c2 13327 mail optional muttprint_0.71-6.diff.gz
 6c0c8cda80c733b6f90d6ba9ad9830fe 80724 mail optional muttprint_0.71-6_all.deb
 b1fbc26511c0880e585b849603c183d8 403006 doc optional muttprint-manual_0.71-6_all.deb
 0cf02052ee821fd1dc84174ccf5e44fe 285372 graphics optional ospics_0.71-6_all.deb

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

iD8DBQE/gwR8+FmQsCSK63MRAt/UAJ9/hUfnooK+Ri5JSpn79zwi/BkyEgCeKEFy
D5C5l7cfUbD+S2Ep9ptOn6U=
=ChL/
-END PGP SIGNATURE-


Accepted:
muttprint-manual_0.71-6_all.deb
  to pool/main/m/muttprint/muttprint-manual_0.71-6_all.deb
muttprint_0.71-6.diff.gz
  to pool/main/m/muttprint/muttprint_0.71-6.diff.gz
muttprint_0.71-6.dsc
  to pool/main/m/muttprint/muttprint_0.71-6.dsc
muttprint_0.71-6_all.deb
  to pool/main/m/muttprint/muttprint_0.71-6_all.deb
ospics_0.71-6_all.deb
  to pool/main/m/muttprint/ospics_0.71-6_all.deb


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



Accepted cfengine 1.6.5-1 (i386 source all)

2003-10-07 Thread Tollef Fog Heen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  7 Oct 2002 12:40:47 +0200
Source: cfengine
Binary: cfengine-doc cfengine
Architecture: source all i386
Version: 1.6.5-1
Distribution: unstable
Urgency: low
Maintainer: Tollef Fog Heen [EMAIL PROTECTED]
Changed-By: Tollef Fog Heen [EMAIL PROTECTED]
Description: 
 cfengine   - Tool for configuring and maintaining network machines
 cfengine-doc - HTML and INFO documentation for cfengine
Closes: 147795 151807 184604 195658 198620 204973
Changes: 
 cfengine (1.6.5-1) unstable; urgency=low
 .
   * New upstream version (closes: #195658)
 - Fixes checksumdb sometimes null problem (closes: #151807)
   * Change section of cfengine-doc to doc
   * Change the description to note that you want cfengine2 if you are
 setting up cfengine for the first time (closes: #147795)
   * Up to libdb4.1 instead of libdb3.
   * Rerun auto* to get rid of some warnings in configure.
   * Fix cfenginge - cfengine in cfengine.8 (closes: #184604)
   * Fix edit on empty files due to a regfree on the wrong non-copied
 struct.  (closes: #198620)
   * Apply patch for having InsertFile not insert an extra newline after
 the file.  (closes: #204973)
Files: 
 2e6e3870c74c4c0031128a805bb1a81d 676 admin optional cfengine_1.6.5-1.dsc
 fc02d8d56433f32020c3030192cad66e 880066 admin optional cfengine_1.6.5.orig.tar.gz
 b335a616b6d3625b8c79618e569892fc 101541 admin optional cfengine_1.6.5-1.diff.gz
 e9be02d526a5a99b6e6f24c5beb09a3b 363794 admin extra cfengine-doc_1.6.5-1_all.deb
 92d5fab559d7c1d60456b0facc4a72d2 328652 doc optional cfengine_1.6.5-1_i386.deb

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

iD8DBQE/gwJrQSseMYF6mWoRAoPuAKDSC5QYNVtSPU4+1lo6/MSs8d8wkQCfRRDO
VbMbsuiYVJMGq10APpdA9DA=
=DaJn
-END PGP SIGNATURE-


Accepted:
cfengine-doc_1.6.5-1_all.deb
  to pool/main/c/cfengine/cfengine-doc_1.6.5-1_all.deb
cfengine_1.6.5-1.diff.gz
  to pool/main/c/cfengine/cfengine_1.6.5-1.diff.gz
cfengine_1.6.5-1.dsc
  to pool/main/c/cfengine/cfengine_1.6.5-1.dsc
cfengine_1.6.5-1_i386.deb
  to pool/main/c/cfengine/cfengine_1.6.5-1_i386.deb
cfengine_1.6.5.orig.tar.gz
  to pool/main/c/cfengine/cfengine_1.6.5.orig.tar.gz


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



Accepted glibc 2.3.2.ds1-3 (i386 source all)

2003-10-07 Thread Daniel Jacobowitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon,  6 Oct 2003 21:18:28 -0400
Source: glibc
Binary: libc6-dev-s390x libc0.3-prof libc6.1-prof libc6-dev libc6-dev-sparc64 
libc0.3-dev libc0.3-pic libc6.1 libc6-prof libc0.3 glibc-doc libc6-dbg libc-udeb 
libc6-sparcv9 libc6-pic libc1-pic libc1-dbg libc6 libc1-prof libc1-dev locales 
libc6-i686 libc6-s390x libc6.1-dev nscd libc6-sparc64 libc1 libc0.3-dbg libc6.1-pic 
libc6.1-dbg
Architecture: source i386 all
Version: 2.3.2.ds1-3
Distribution: experimental
Urgency: low
Maintainer: GNU Libc Maintainers [EMAIL PROTECTED]
Changed-By: Daniel Jacobowitz [EMAIL PROTECTED]
Description: 
 glibc-doc  - GNU C Library: Documentation
 libc-udeb  - GNU C Library: Shared libraries and Timezone data - udeb (udeb)
 libc6  - GNU C Library: Shared libraries and Timezone data
 libc6-dbg  - GNU C Library: Libraries with debugging symbols
 libc6-dev  - GNU C Library: Development Libraries and Header Files.
 libc6-i686 - GNU C Library: Shared libraries [i686 optimized]
 libc6-pic  - GNU C Library: PIC archive library
 libc6-prof - GNU C Library: Profiling Libraries.
 locales- GNU C Library: National Language (locale) data [support]
 nscd   - GNU C Library: Name Service Cache Daemon
Closes: 214468 214470 214504 214512
Changes: 
 glibc (2.3.2.ds1-3) experimental; urgency=low
 .
   * Daniel Jacobowitz [EMAIL PROTECTED]
 .
 - Use ldd* in debhelper.in/libc6, because non-i386 arches don't have
   lddlibc4.
 - Include gconv-modules in libc6.
 - Don't include some unnecessary generated kernel headers.
 - Merge previous .dpatch files (Closes: #214470).
 - Run depflags.pl again (Closes: #214468).
 - Don't include profiled libraries in libc-dev (Closes: #214504).
 - Ship /usr/include/asm-generic (Closes: #214512).
Files: 
 bd98f9d92dc2000ba319fd3442fe43ec 1723 libs required glibc_2.3.2.ds1-3.dsc
 70187e09389c744b547d9630ef780285 6625543 libs required glibc_2.3.2.ds1-3.diff.gz
 04c41571268d3b619d923ff149d364d2 1533078 doc optional glibc-doc_2.3.2.ds1-3_all.deb
 298875a8e9aaea2aa75abde445435cee 3890328 base standard locales_2.3.2.ds1-3_all.deb
 785fbfd7d5b2adb5cd036684bdedb942 4428166 base required libc6_2.3.2.ds1-3_i386.deb
 3bd6a890bc8f7e0ed1055df69be5af67 2899304 libdevel standard 
libc6-dev_2.3.2.ds1-3_i386.deb
 6ed28c0a0374dc9c9af7f4fce2442711 9528318 libdevel extra libc6-dbg_2.3.2.ds1-3_i386.deb
 0efd9d197e6052d35df352a54068cac8 1054902 libdevel extra 
libc6-prof_2.3.2.ds1-3_i386.deb
 aee050443c71b113f5a056e970c9c23d 1014976 libdevel optional 
libc6-pic_2.3.2.ds1-3_i386.deb
 1a4932e9301f1735a095048aee688ac9 938890 libs extra libc6-i686_2.3.2.ds1-3_i386.deb
 b3d3e81fb7550fe296033a4b3468f5f6 80184 admin optional nscd_2.3.2.ds1-3_i386.deb
 317ed9eb87e0d2301008419d057d9df7 798 debian-installer required 
libc-udeb_2.3.2.ds1-3_i386.udeb

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

iD8DBQE/gweebgOPXuCjg3cRAqVpAJ9yQuKT4cRVnwTKnh6WGcjLsJOIzQCgn23M
NGlI+crweAOtEZ6hDMjnrt8=
=ATzL
-END PGP SIGNATURE-


Accepted:
glibc-doc_2.3.2.ds1-3_all.deb
  to pool/main/g/glibc/glibc-doc_2.3.2.ds1-3_all.deb
glibc_2.3.2.ds1-3.diff.gz
  to pool/main/g/glibc/glibc_2.3.2.ds1-3.diff.gz
glibc_2.3.2.ds1-3.dsc
  to pool/main/g/glibc/glibc_2.3.2.ds1-3.dsc
libc-udeb_2.3.2.ds1-3_i386.udeb
  to pool/main/g/glibc/libc-udeb_2.3.2.ds1-3_i386.udeb
libc6-dbg_2.3.2.ds1-3_i386.deb
  to pool/main/g/glibc/libc6-dbg_2.3.2.ds1-3_i386.deb
libc6-dev_2.3.2.ds1-3_i386.deb
  to pool/main/g/glibc/libc6-dev_2.3.2.ds1-3_i386.deb
libc6-i686_2.3.2.ds1-3_i386.deb
  to pool/main/g/glibc/libc6-i686_2.3.2.ds1-3_i386.deb
libc6-pic_2.3.2.ds1-3_i386.deb
  to pool/main/g/glibc/libc6-pic_2.3.2.ds1-3_i386.deb
libc6-prof_2.3.2.ds1-3_i386.deb
  to pool/main/g/glibc/libc6-prof_2.3.2.ds1-3_i386.deb
libc6_2.3.2.ds1-3_i386.deb
  to pool/main/g/glibc/libc6_2.3.2.ds1-3_i386.deb
locales_2.3.2.ds1-3_all.deb
  to pool/main/g/glibc/locales_2.3.2.ds1-3_all.deb
nscd_2.3.2.ds1-3_i386.deb
  to pool/main/g/glibc/nscd_2.3.2.ds1-3_i386.deb


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



Accepted prebaseconfig 0.038 (all source)

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

Format: 1.7
Date: Tue,  7 Oct 2003 20:20:51 +0200
Source: prebaseconfig
Binary: prebaseconfig
Architecture: source all
Version: 0.038
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 prebaseconfig - Finish the installation and reboot (udeb)
Closes: 211069 214351
Changes: 
 prebaseconfig (0.038) unstable; urgency=low
 .
   * Steinar H. Gunderson
 - Move fset seen false to after the reboot question, to smooth out
   unattended installs. (Closes: #211069)
   * Petter Reinholdtsen
 - Add menu entry template.
 - Update ru.po, patch from Ilgiz Kalmetev. (Closes: #214351)
   * Pierre Machard
 - Update French translation [Pierre Machard  Christian Perrier]
   * Kenshi Muto
 - Update Japanese po (ja.po)
   * André Luís Lopes
 - Update pt_BR (Brazilian Portuguese) translation.
Files: 
 98214cbfd51f8eacf77db31d6dda060b 716 debian-installer required prebaseconfig_0.038.dsc
 5853334ab33f7152eb1aa1d615056ef6 16136 debian-installer required 
prebaseconfig_0.038.tar.gz
 29b557705969671dce80481d48187e0a 7106 debian-installer required 
prebaseconfig_0.038_all.udeb

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

iD8DBQE/gwQv20zMSyow1ykRAru6AKCVD377q5FwNzgVr8Xmk/4200AyvQCfR9Tk
tadP5eOMpHLKxf0FLs/qG1I=
=Zp0K
-END PGP SIGNATURE-


Accepted:
prebaseconfig_0.038.dsc
  to pool/main/p/prebaseconfig/prebaseconfig_0.038.dsc
prebaseconfig_0.038.tar.gz
  to pool/main/p/prebaseconfig/prebaseconfig_0.038.tar.gz
prebaseconfig_0.038_all.udeb
  to pool/main/p/prebaseconfig/prebaseconfig_0.038_all.udeb


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



Accepted lilo-installer 0.20 (i386 source)

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

Format: 1.7
Date: Tue,  7 Oct 2003 20:24:49 +0200
Source: lilo-installer
Binary: lilo-installer
Architecture: source i386
Version: 0.20
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 lilo-installer - Install LILO on a hard disk (udeb)
Changes: 
 lilo-installer (0.20) unstable; urgency=low
 .
   * Petter Reinholdtsen
 - Make menu entry translatable.
 - Add error detection and reporting.
   * Pierre Machard
 - Update French po-debconf translation.
   * Alastair McKinstry
 - Fixed broken UTF-8 in changelog
   * Kenshi Muto
 - Update Japanese po (ja.po)
   * André Luís Lopes
 - Update pt_BR (Brazilian Portuguese) translation.
Files: 
 6fe3ed2c953f5c3ca202585de853289c 677 debian-installer standard lilo-installer_0.20.dsc
 a2b8c23d3988b33e604388974020e6aa 11912 debian-installer standard 
lilo-installer_0.20.tar.gz
 f59e1bbc640163cd338a42b9a88b07a3 5676 debian-installer standard 
lilo-installer_0.20_i386.udeb

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

iD8DBQE/gwUf20zMSyow1ykRAvuGAKC4iOeQ+A403xUCv9kz1sgNFyhZawCgxnRk
zURkbJM5zdebZICAUXlLYAs=
=53ZR
-END PGP SIGNATURE-


Accepted:
lilo-installer_0.20.dsc
  to pool/main/l/lilo-installer/lilo-installer_0.20.dsc
lilo-installer_0.20.tar.gz
  to pool/main/l/lilo-installer/lilo-installer_0.20.tar.gz
lilo-installer_0.20_i386.udeb
  to pool/main/l/lilo-installer/lilo-installer_0.20_i386.udeb


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



Accepted grub-installer 0.20 (i386 source)

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

Format: 1.7
Date: Tue,  7 Oct 2003 20:26:30 +0200
Source: grub-installer
Binary: grub-installer
Architecture: source i386
Version: 0.20
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 grub-installer - Install GRUB on a hard disk (udeb)
Changes: 
 grub-installer (0.20) unstable; urgency=low
 .
   * Kenshi Muto
- Update Japanese po (ja.po)
   * André Luís Lopes
- Update pt_BR (Brazilian Portuguese) translation.
Files: 
 8a661a652ead60332a2dba6269f74537 687 debian-installer optional grub-installer_0.20.dsc
 05af862ff0bc6a8583cbe96715529625 23671 debian-installer optional 
grub-installer_0.20.tar.gz
 418701c08823309fa389e884daeee554 6910 debian-installer optional 
grub-installer_0.20_i386.udeb

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

iD8DBQE/gwWe20zMSyow1ykRAoAZAJ9O84Mm1M96shyGmursmTt35GxdTwCg3lgc
0PxtWW1M169W3K7CrGgtRME=
=7nLz
-END PGP SIGNATURE-


Accepted:
grub-installer_0.20.dsc
  to pool/main/g/grub-installer/grub-installer_0.20.dsc
grub-installer_0.20.tar.gz
  to pool/main/g/grub-installer/grub-installer_0.20.tar.gz
grub-installer_0.20_i386.udeb
  to pool/main/g/grub-installer/grub-installer_0.20_i386.udeb


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



Accepted ddetect 0.44 (i386 source all)

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

Format: 1.7
Date: Tue,  7 Oct 2003 20:29:41 +0200
Source: ddetect
Binary: ethdetect archdetect hw-detect hw-detect-full
Architecture: source all i386
Version: 0.44
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 archdetect - Hardware architect detector (udeb)
 ethdetect  - Detect network hardware and load kernel drivers for it (udeb)
 hw-detect  - Detect hardware and load kernel drivers for it (udeb)
 hw-detect-full - Detect hardware and load kernel drivers for it (full version) (udeb)
Closes: 214295
Changes: 
 ddetect (0.44) unstable; urgency=low
 .
   * Matt Kraai
 - Add libdebconfclient0-dev to the build-depends (closes: #214295).
Files: 
 c636106aeda8f5e70e41d080253326a1 670 debian-installer standard ddetect_0.44.dsc
 c8bd140631e96f8f1afe53b88007136c 39876 debian-installer standard ddetect_0.44.tar.gz
 f9f2992d6721aec1bff1b2d073593d84 7208 debian-installer standard 
hw-detect_0.44_all.udeb
 20d319eacb887a77401b0810ea7775c0 8364 debian-installer optional 
ethdetect_0.44_all.udeb
 0706d9b752a742d2c5eb7468e7344c43 750 debian-installer standard 
hw-detect-full_0.44_all.udeb
 c8e27be4712e136496989099be16a619 2282 debian-installer standard 
archdetect_0.44_i386.udeb

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

iD8DBQE/gwZN20zMSyow1ykRAkq8AKCnbDdAFEneA94U47S6yYpcxwXvZgCgu3S/
mi5PlpcA4xNF65UK3JIC1Tg=
=INC4
-END PGP SIGNATURE-


Accepted:
archdetect_0.44_i386.udeb
  to pool/main/d/ddetect/archdetect_0.44_i386.udeb
ddetect_0.44.dsc
  to pool/main/d/ddetect/ddetect_0.44.dsc
ddetect_0.44.tar.gz
  to pool/main/d/ddetect/ddetect_0.44.tar.gz
ethdetect_0.44_all.udeb
  to pool/main/d/ddetect/ethdetect_0.44_all.udeb
hw-detect-full_0.44_all.udeb
  to pool/main/d/ddetect/hw-detect-full_0.44_all.udeb
hw-detect_0.44_all.udeb
  to pool/main/d/ddetect/hw-detect_0.44_all.udeb


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



Accepted dict-bouvier 6.revised-2 (all source)

2003-10-07 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 13:21:34 -0500
Source: dict-bouvier
Binary: dict-bouvier
Architecture: source all
Version: 6.revised-2
Distribution: unstable
Urgency: low
Maintainer: John Goerzen [EMAIL PROTECTED]
Changed-By: John Goerzen [EMAIL PROTECTED]
Description: 
 dict-bouvier - John Bouvier's Law Dictionary for the USA
Closes: 212068
Changes: 
 dict-bouvier (6.revised-2) unstable; urgency=low
 .
   * Updated build process for Python 2.3.  Closes: #212068.
   * Dictzip is now in its own package instead of in dictd.  Updated
 build-depends-indep accordingly.
Files: 
 087fdff19ebddeb34bdeea99cf233d2e 655 text optional dict-bouvier_6.revised-2.dsc
 3d38d0a0922793f4c48341286c06eca3 11808 text optional dict-bouvier_6.revised-2.diff.gz
 14959fc64d4f0e46e1cb062eed886d24 2466342 text optional 
dict-bouvier_6.revised-2_all.deb

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

iD8DBQE/gwZxgxaZAmAh+EsRAtBHAKCG6oLQmd7ch87ckgfCxJL3FFxMHQCgmQDD
71qT+dq97aZ8XiQbimQx7tk=
=fIha
-END PGP SIGNATURE-


Accepted:
dict-bouvier_6.revised-2.diff.gz
  to pool/main/d/dict-bouvier/dict-bouvier_6.revised-2.diff.gz
dict-bouvier_6.revised-2.dsc
  to pool/main/d/dict-bouvier/dict-bouvier_6.revised-2.dsc
dict-bouvier_6.revised-2_all.deb
  to pool/main/d/dict-bouvier/dict-bouvier_6.revised-2_all.deb


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



Accepted dict-gazetteer2k 1.0.0-3 (all source)

2003-10-07 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 13:33:41 -0500
Source: dict-gazetteer2k
Binary: dict-gazetteer2k-places dict-gazetteer2k-counties dict-gazetteer2k 
dict-gazetteer2k-zips
Architecture: source all
Version: 1.0.0-3
Distribution: unstable
Urgency: low
Maintainer: John Goerzen [EMAIL PROTECTED]
Changed-By: John Goerzen [EMAIL PROTECTED]
Description: 
 dict-gazetteer2k - Placeholder package to install entire Gazetteer 2000
 dict-gazetteer2k-counties - Counties Database for the 2000 US Gazetteer
 dict-gazetteer2k-places - Places Database for the 2000 US Gazetteer
 dict-gazetteer2k-zips - ZIP and ZCTA database for the 2000 US Gazetteer
Closes: 212069
Changes: 
 dict-gazetteer2k (1.0.0-3) unstable; urgency=low
 .
   * Updated build process for Python 2.3.  Closes: #212069.
Files: 
 0aae40151f6f3b3bb6ffbca877beb7f5 755 text optional dict-gazetteer2k_1.0.0-3.dsc
 a3ce52b1d891ac705106205a893832c1 5758 text optional dict-gazetteer2k_1.0.0-3.diff.gz
 e5068928b1b3e22334bad2d4b2b93636 1796 text optional dict-gazetteer2k_1.0.0-3_all.deb
 97bc8be5751dca08b2405a30ce25402a 2087358 text optional 
dict-gazetteer2k-places_1.0.0-3_all.deb
 0e46e5abfcc702220f81c46103329bda 353414 text optional 
dict-gazetteer2k-counties_1.0.0-3_all.deb
 781238355b13b5e0bad6924e1fd64258 2408942 text optional 
dict-gazetteer2k-zips_1.0.0-3_all.deb

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

iD8DBQE/gwhtgxaZAmAh+EsRAh6EAJ4qEp1/Ohnjs6D7099hbZurric0VwCgpkAe
9Sry/YuiUbvDGNaFrVapCjY=
=WoM/
-END PGP SIGNATURE-


Accepted:
dict-gazetteer2k-counties_1.0.0-3_all.deb
  to pool/main/d/dict-gazetteer2k/dict-gazetteer2k-counties_1.0.0-3_all.deb
dict-gazetteer2k-places_1.0.0-3_all.deb
  to pool/main/d/dict-gazetteer2k/dict-gazetteer2k-places_1.0.0-3_all.deb
dict-gazetteer2k-zips_1.0.0-3_all.deb
  to pool/main/d/dict-gazetteer2k/dict-gazetteer2k-zips_1.0.0-3_all.deb
dict-gazetteer2k_1.0.0-3.diff.gz
  to pool/main/d/dict-gazetteer2k/dict-gazetteer2k_1.0.0-3.diff.gz
dict-gazetteer2k_1.0.0-3.dsc
  to pool/main/d/dict-gazetteer2k/dict-gazetteer2k_1.0.0-3.dsc
dict-gazetteer2k_1.0.0-3_all.deb
  to pool/main/d/dict-gazetteer2k/dict-gazetteer2k_1.0.0-3_all.deb


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



Accepted libabz 0.2.3 (i386 source)

2003-10-07 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 20:35:49 +0200
Source: libabz
Binary: libabz0-dev libabz0
Architecture: source i386
Version: 0.2.3
Distribution: unstable
Urgency: low
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 libabz0- Miscellaneous useful routines
 libabz0-dev - Development files for the abz library
Changes: 
 libabz (0.2.3) unstable; urgency=low
 .
   * Fixed tokens_destroy man page.
Files: 
 89043ecbb4fd8808e7c4cff161acdf3d 570 devel optional libabz_0.2.3.dsc
 c75c3b606f201a51a5dd98d089c98fea 34863 devel optional libabz_0.2.3.tar.gz
 735bb7dfaa2abfd32eeed8e924a7380c 11178 libs optional libabz0_0.2.3_i386.deb
 e8135263bb947527e8c625c04eea00d6 48096 libdevel optional libabz0-dev_0.2.3_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.5 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE/gwfMzvVjZitVWu4RAnOdAJ9Rvnt46kmT/t+VRDzd2kZiYU348ACfXZgw
e7OSipziKaQONapS9vQ9fEo=
=2iYK
-END PGP SIGNATURE-


Accepted:
libabz0-dev_0.2.3_i386.deb
  to pool/main/liba/libabz/libabz0-dev_0.2.3_i386.deb
libabz0_0.2.3_i386.deb
  to pool/main/liba/libabz/libabz0_0.2.3_i386.deb
libabz_0.2.3.dsc
  to pool/main/liba/libabz/libabz_0.2.3.dsc
libabz_0.2.3.tar.gz
  to pool/main/liba/libabz/libabz_0.2.3.tar.gz


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



Accepted libproc-daemon-perl 0.03-2 (all source)

2003-10-07 Thread Marc Haber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 20:13:38 +
Source: libproc-daemon-perl
Binary: libproc-daemon-perl
Architecture: source all
Version: 0.03-2
Distribution: unstable
Urgency: low
Maintainer: Marc Haber [EMAIL PROTECTED]
Changed-By: Marc Haber [EMAIL PROTECTED]
Description: 
 libproc-daemon-perl - Run Perl program as a daemon process
Changes: 
 libproc-daemon-perl (0.03-2) unstable; urgency=low
 .
   * first package version for unstable, no other changes
   * Standards-Version: 3.6.1
   * Build-Depend on debhelper 4
Files: 
 3d7b485cc4f9e6ced0690236339a30cb 636 perl optional libproc-daemon-perl_0.03-2.dsc
 7103c7d4f4409658aca16a19a5753df6 1821 perl optional libproc-daemon-perl_0.03-2.diff.gz
 3430c06cd9885a56b689af5f6a35369b 8248 perl optional libproc-daemon-perl_0.03-2_all.deb

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

iD8DBQE/gx6/gZalRGu6PIQRAuOxAJ4+MIIU9FWA9NJsZwFyOZZ5Zyv3uQCeMNRs
95XvFR99mNFoLvNck/Aq1sE=
=ZXCk
-END PGP SIGNATURE-


Accepted:
libproc-daemon-perl_0.03-2.diff.gz
  to pool/main/libp/libproc-daemon-perl/libproc-daemon-perl_0.03-2.diff.gz
libproc-daemon-perl_0.03-2.dsc
  to pool/main/libp/libproc-daemon-perl/libproc-daemon-perl_0.03-2.dsc
libproc-daemon-perl_0.03-2_all.deb
  to pool/main/libp/libproc-daemon-perl/libproc-daemon-perl_0.03-2_all.deb


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



Accepted dict-moby-thesaurus 1.0-5 (all source)

2003-10-07 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 13:43:43 -0500
Source: dict-moby-thesaurus
Binary: dict-moby-thesaurus
Architecture: source all
Version: 1.0-5
Distribution: unstable
Urgency: low
Maintainer: John Goerzen [EMAIL PROTECTED]
Changed-By: John Goerzen [EMAIL PROTECTED]
Description: 
 dict-moby-thesaurus - Largest and most comprehensive thesaurus
Closes: 212070
Changes: 
 dict-moby-thesaurus (1.0-5) unstable; urgency=low
 .
   * Build process updated for Python 2.3.  Closes: #212070.
   * Changed dep on dictd to dictzip, as it moved out of that package.
Files: 
 ed6371eac094333feb9593b367759309 664 text optional dict-moby-thesaurus_1.0-5.dsc
 224c2ef3fab795cd80c5fced6d0e3c1c 3329 text optional dict-moby-thesaurus_1.0-5.diff.gz
 ddc9f012f78281d74664755c87efba36 11050272 text optional 
dict-moby-thesaurus_1.0-5_all.deb

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

iD8DBQE/gwprgxaZAmAh+EsRAtogAJ40MfAu9Mpbgv5jbk8SEdJ+SD1/dQCeOauM
w594lYpasmf+8tzCBDNwpFA=
=pFoA
-END PGP SIGNATURE-


Accepted:
dict-moby-thesaurus_1.0-5.diff.gz
  to pool/main/d/dict-moby-thesaurus/dict-moby-thesaurus_1.0-5.diff.gz
dict-moby-thesaurus_1.0-5.dsc
  to pool/main/d/dict-moby-thesaurus/dict-moby-thesaurus_1.0-5.dsc
dict-moby-thesaurus_1.0-5_all.deb
  to pool/main/d/dict-moby-thesaurus/dict-moby-thesaurus_1.0-5_all.deb


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



Accepted gnustep-gui 0.9.0-1 (i386 source all)

2003-10-07 Thread doko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu,  2 Oct 2003 08:49:17 +0200
Source: gnustep-gui
Binary: gnustep-ppd gnustep-gui0-dbg gnustep-gui-doc gnustep-gui0-dev gnustep-gui0
Architecture: source i386 all
Version: 0.9.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNUstep maintainers [EMAIL PROTECTED]
Changed-By: [EMAIL PROTECTED]
Description: 
 gnustep-gui-doc - Documentation for the GNUstep Gui Library
 gnustep-gui0 - The GNUstep Gui Library
 gnustep-gui0-dbg - The GNUstep gui library - debugging version
 gnustep-gui0-dev - GNUstep Gui header files and static libraries
 gnustep-ppd - The GNUstep Postscript Printer Description
Closes: 213586
Changes: 
 gnustep-gui (0.9.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Update debian/README.Debian file.
   * debian/control.m4 : Update Description fields (closes: #213586).
Files: 
 5a57567724106ee03facf3b1d6f300cc 911 devel optional gnustep-gui_0.9.0-1.dsc
 2c5e3c0a0905dd416376959ca6b717e3 2197340 devel optional gnustep-gui_0.9.0.orig.tar.gz
 47007381cea1977d9c4c5db6e209ce5d 10075 devel optional gnustep-gui_0.9.0-1.diff.gz
 c95ed062d453cf5c0e1d6d9824190aba 532558 libs optional gnustep-ppd_0.9.0-1_all.deb
 07f00071637d7f17c2fbaa1387b9413c 575484 doc optional gnustep-gui-doc_0.9.0-1_all.deb
 73f2e017ea06588aee9b60482e149e82 1266228 libs optional gnustep-gui0_0.9.0-1_i386.deb
 5b882bde694ae23a4091d82430e0603d 1674220 libdevel optional 
gnustep-gui0-dev_0.9.0-1_i386.deb
 3e15a8b5eac3f6ad5b1b2602cb8c85d0 3238520 libdevel optional 
gnustep-gui0-dbg_0.9.0-1_i386.deb

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

iD8DBQE/gxgTStlRaw+TLJwRAj07AJ9nm3HPkXa+aMZCjZVqQ7bj9ZyIPwCeOTKo
OkJnffwIrBvoueDUcbfTd2c=
=2MNC
-END PGP SIGNATURE-


Accepted:
gnustep-gui-doc_0.9.0-1_all.deb
  to pool/main/g/gnustep-gui/gnustep-gui-doc_0.9.0-1_all.deb
gnustep-gui0-dbg_0.9.0-1_i386.deb
  to pool/main/g/gnustep-gui/gnustep-gui0-dbg_0.9.0-1_i386.deb
gnustep-gui0-dev_0.9.0-1_i386.deb
  to pool/main/g/gnustep-gui/gnustep-gui0-dev_0.9.0-1_i386.deb
gnustep-gui0_0.9.0-1_i386.deb
  to pool/main/g/gnustep-gui/gnustep-gui0_0.9.0-1_i386.deb
gnustep-gui_0.9.0-1.diff.gz
  to pool/main/g/gnustep-gui/gnustep-gui_0.9.0-1.diff.gz
gnustep-gui_0.9.0-1.dsc
  to pool/main/g/gnustep-gui/gnustep-gui_0.9.0-1.dsc
gnustep-gui_0.9.0.orig.tar.gz
  to pool/main/g/gnustep-gui/gnustep-gui_0.9.0.orig.tar.gz
gnustep-ppd_0.9.0-1_all.deb
  to pool/main/g/gnustep-gui/gnustep-ppd_0.9.0-1_all.deb


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



Accepted dbf2mysql 1.14a-3 (i386 source)

2003-10-07 Thread Francesco Paolo Lovergine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 20:50:07 +0200
Source: dbf2mysql
Binary: dbf2mysql
Architecture: source i386
Version: 1.14a-3
Distribution: unstable
Urgency: low
Maintainer: Francesco Paolo Lovergine [EMAIL PROTECTED]
Changed-By: Francesco Paolo Lovergine [EMAIL PROTECTED]
Description: 
 dbf2mysql  - xBase -- MySQL
Closes: 213958 213959
Changes: 
 dbf2mysql (1.14a-3) unstable; urgency=low
 .
   * Policy updated to 3.6.1
   * Patch applied for umlauts.
 (closes: #213958,#213959)
   * Using dpatch support now for current and past patches.
Files: 
 d0caf848875bb2418cc82c64fede83f3 560 misc optional dbf2mysql_1.14a-3.dsc
 8fbc1269c6a838c79f0011ee3119de8b 28282 misc optional dbf2mysql_1.14a-3.tar.gz
 f5ddf8d24a3522d6d90e054c32b7271e 28540 misc optional dbf2mysql_1.14a-3_i386.deb

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

iD8DBQE/gws3pFNRmenyx0cRAkqkAJ9o1idCLlQ7qG0qWuYEPhgGU42cAwCgtGV/
dB22PBqqgXuF0f5fELNaH2A=
=aj1r
-END PGP SIGNATURE-


Accepted:
dbf2mysql_1.14a-3.dsc
  to pool/main/d/dbf2mysql/dbf2mysql_1.14a-3.dsc
dbf2mysql_1.14a-3.tar.gz
  to pool/main/d/dbf2mysql/dbf2mysql_1.14a-3.tar.gz
dbf2mysql_1.14a-3_i386.deb
  to pool/main/d/dbf2mysql/dbf2mysql_1.14a-3_i386.deb


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



Accepted mysql-ruby 2.4.5-4 (i386 source all)

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

Format: 1.7
Date: Tue,  7 Oct 2003 21:25:53 +0300
Source: mysql-ruby
Binary: libmysql-ruby libmysql-ruby1.6 libmysql-ruby1.8
Architecture: source all i386
Version: 2.4.5-4
Distribution: unstable
Urgency: low
Maintainer: Dmitry Borodaenko [EMAIL PROTECTED]
Changed-By: Dmitry Borodaenko [EMAIL PROTECTED]
Description: 
 libmysql-ruby - MySQL module for Ruby
 libmysql-ruby1.6 - MySQL module for Ruby 1.6
 libmysql-ruby1.8 - MySQL module for Ruby 1.8
Closes: 214609
Changes: 
 mysql-ruby (2.4.5-4) unstable; urgency=low
 .
   * Build architecture-independent packages (dummy libmysql-ruby) in
 binary-indep target of debian/rules. Closes: #214609
Files: 
 68d08e9750fad0d4a18b8723ce113231 704 interpreters optional mysql-ruby_2.4.5-4.dsc
 2337e653f9b100c2e15e76a09703b614 5269 interpreters optional mysql-ruby_2.4.5-4.diff.gz
 f3c05969eb944a05c064a7543f812054 4070 interpreters optional 
libmysql-ruby_2.4.5-4_all.deb
 b9b0dd22aabfce4e14463355635b4a6d 29312 interpreters optional 
libmysql-ruby1.6_2.4.5-4_i386.deb
 7a41a26a0118507f47bfd1389e0a5658 29280 interpreters optional 
libmysql-ruby1.8_2.4.5-4_i386.deb

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

iEYEARECAAYFAj+DDBsACgkQxhqJXoXuPg4+twCeJ2mo+h0uKuH/y6wYdnPezAnM
hvAAn36qwPwWWRiCeKjFo349zvhLglG+
=XoUL
-END PGP SIGNATURE-


Accepted:
libmysql-ruby1.6_2.4.5-4_i386.deb
  to pool/main/m/mysql-ruby/libmysql-ruby1.6_2.4.5-4_i386.deb
libmysql-ruby1.8_2.4.5-4_i386.deb
  to pool/main/m/mysql-ruby/libmysql-ruby1.8_2.4.5-4_i386.deb
libmysql-ruby_2.4.5-4_all.deb
  to pool/main/m/mysql-ruby/libmysql-ruby_2.4.5-4_all.deb
mysql-ruby_2.4.5-4.diff.gz
  to pool/main/m/mysql-ruby/mysql-ruby_2.4.5-4.diff.gz
mysql-ruby_2.4.5-4.dsc
  to pool/main/m/mysql-ruby/mysql-ruby_2.4.5-4.dsc


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



Accepted libconfig 0.1.5 (i386 source)

2003-10-07 Thread Abraham vd Merwe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 20:40:05 +0200
Source: libconfig
Binary: libconfig0-dev libconfig0
Architecture: source i386
Version: 0.1.5
Distribution: unstable
Urgency: low
Maintainer: Abraham vd Merwe [EMAIL PROTECTED]
Changed-By: Abraham vd Merwe [EMAIL PROTECTED]
Description: 
 libconfig0 - Configuration file parser library
 libconfig0-dev - Development files for the config library
Changes: 
 libconfig (0.1.5) unstable; urgency=low
 .
   * Changed sections.
Files: 
 0271017a5dee4cf84d64006bdb75d3a6 582 devel optional libconfig_0.1.5.dsc
 a1d3c67f515fe0431fe3e8ddeccd56f9 15095 devel optional libconfig_0.1.5.tar.gz
 64e67e0c8d42a09f261ae892885a3a01 11140 libs optional libconfig0_0.1.5_i386.deb
 74abc898715d34acc721638c62a74291 15414 libdevel optional libconfig0-dev_0.1.5_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.5 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE/gwzUzvVjZitVWu4RAvhJAJ9mXSFWA4MfqtzFkZmIHTkbO+InxACeONbM
dFgOTBqg6bW6TWLrob4/AhY=
=REKG
-END PGP SIGNATURE-


Accepted:
libconfig0-dev_0.1.5_i386.deb
  to pool/main/libc/libconfig/libconfig0-dev_0.1.5_i386.deb
libconfig0_0.1.5_i386.deb
  to pool/main/libc/libconfig/libconfig0_0.1.5_i386.deb
libconfig_0.1.5.dsc
  to pool/main/libc/libconfig/libconfig_0.1.5.dsc
libconfig_0.1.5.tar.gz
  to pool/main/libc/libconfig/libconfig_0.1.5.tar.gz


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



Accepted smake 1.2a19pre-2-1 (i386 source)

2003-10-07 Thread Joerg Jaspert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Tue,  7 Oct 2003 21:02:33 +0200
Source: smake
Binary: smake
Architecture: source i386
Version: 1.2a19pre-2-1
Distribution: unstable
Urgency: low
Maintainer: Joerg Jaspert [EMAIL PROTECTED]
Changed-By: Joerg Jaspert [EMAIL PROTECTED]
Description: 
 smake  - Schily make. Portable, extensible make
Changes: 
 smake (1.2a19pre-2-1) unstable; urgency=low
 .
   * New upstream release
   * Newer Standards 3.6.1
   * Corrected Download URL in copyright file and README.Debian
Files: 
 1b46644542b34ff050625807dc76707d 632 devel optional smake_1.2a19pre-2-1.dsc
 2c70d9075e465eb9bd50f005bcf12196 336623 devel optional smake_1.2a19pre-2.orig.tar.gz
 35ed5b89d777a439b45155587761fa67 1979 devel optional smake_1.2a19pre-2-1.diff.gz
 46608c7f3382b3f8e4e687aea2453bba 71420 devel optional smake_1.2a19pre-2-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.3 (GNU/Linux)
Comment: Joerg Jaspert [EMAIL PROTECTED] -- Debian Developer

iD8DBQE/gw7JcV7WoH57iskRApi+AJ9lauQHc2xJHWdu+msBLiqPiP3BKACgispL
NgFTw999JsbXtjxvPul/OSM=
=i5xs
-END PGP SIGNATURE-


Accepted:
smake_1.2a19pre-2-1.diff.gz
  to pool/main/s/smake/smake_1.2a19pre-2-1.diff.gz
smake_1.2a19pre-2-1.dsc
  to pool/main/s/smake/smake_1.2a19pre-2-1.dsc
smake_1.2a19pre-2-1_i386.deb
  to pool/main/s/smake/smake_1.2a19pre-2-1_i386.deb
smake_1.2a19pre-2.orig.tar.gz
  to pool/main/s/smake/smake_1.2a19pre-2.orig.tar.gz


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



  1   2   >