Time to rethink ifupdown

2006-08-20 Thread Alexey Feldgendler


Greetings to everybody on this list, it's my first post here.

ifupdown, the official Debian network configuration tool, is great for  
configuring interfaces like Ethernet adapters. However, as time goes, more  
and more use cases occur which are hard to fulfill with ifupdown as it is.  
My guess is that it's time to rethink the philosophy behind ifupdown and  
give it some natural development.


First, I'll summarize the problems with the current ifupdown (use cases  
not covered).


1. When we run ifup, we express our intention to bring an interface up. In  
many cases, the fact that we wish the interface to come up is not enough.  
The interface can actually come or not come up, and significant amount of  
time can have passed between the user ordering the interface to come up  
and the interface actually starting working. A typical example is  
dial-on-demand, where the phone number can be redialled several times  
before actual connection. This is currently handled by either blocking  
ifup for an indefinite amount of time (bad: blocks handling of other  
interfaces with ifup -a, causes conflicts with other instances of ifup  
upon the ifstate file) or by forking off a process which tries to connect.  
The disadvantage of the latter approach is that ifup immediately considers  
the interface as being up, runs the up scripts and updates ifstate.  
Running the up scripts before their time has many negative consequences,  
such as putting unreachable DNS addresses into /etc/resolv.conf using  
resolvconf, setting up unusable routes etc.


2. While the interface is up from the ifupdown POV, it can periodically go  
down and up again because of network problems (a common example is pppd's  
automatic redialling). In these cases, the down and up scripts are not  
executed though they should (see above about routes, resolv.conf etc).


3. If the interface really dies and there is no way to revive it (e.g. an  
USB device has been physically disconnected), and the daemon like pppd  
exists even though it's been told to auto-reconnect, ifupdown will never  
know, so the interface state will remain inconsistent  
[http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=263749].


4. There is a number of supervisor daemons which monitor the media for  
the ability to connect, and try to connect when it's possible. An example  
is ifplugd which monitors for Ethernet link state. These are usually  
configured so as to control ifup/ifdown, but actually they need to be  
controlled from ifup/ifdown themselves: ifup should start the daemon for a  
device, and ifdown should stop it. This has the advantage of passing the  
information from /etc/network/interfaces to the daemon and not having to  
duplicate it elsewhere. This is especially the case for wpasupplicant.


5. Though ifupdown has a notion of mappers to resolve physical  
interfaces into their logical avatars, a mapper is required to be  
synchronous: it's supposed to give an answer and finish quickly. Acually,  
there are cases when the answer is not known at the time of expressing the  
intention to bring the interface up by running ifup. Sometimes, it's  
possible to find out the logical interface only when the interface  
actually goes up. This is the case with waproamd and wpasupplicant which  
monitor the media in hope of finding a usable WiFi network -- you can't  
know in advance which network it will be.


Having summarized the conceptual problems of the current ifupdown, I'll  
describe my vision of what it should look like.


In the /etc/network/interfaces file, there is a new method tristate (a  
better name is welcome) similar to manual. The difference is that the  
post-up commands are not run automatically after the up commands (ifup  
just exits after running the up commands). The up commands are supposed to  
start a background process whose responsibility is to invoke a callback by  
running ifup --notify $IFACE. This finalizes the transition and makes  
ifup run post-up commands and mark the interface as completely up. Between  
the user-initiated ifup invocation and this callback, the interface is  
thought to be half-up, i.e. indeterminate.


If the connection happens to disappear while the interface is up from the  
ifupdown POV, it's the responsibility of the background process to run  
ifdown --notify $IFACE. This marks the interface as half-up again and  
executes the pre-down commands.


Running ifdown executes the down, then post-down commands. It's the  
responsibility of background process to run ifdown --notify $IFACE (if  
the link was active), then die. The user-invoked ifdown doesn't run the  
pre-down commands.


ifup --notify and ifdown --notify should be idempotent, i.e. ifup  
--notify should not run the post-up commands if the interface is already  
marked as full-up.


The built-in methods involving external commands should be reformulated  
this way. This means that at least pon/poff should be given options to  
invoke the 

Re: Time to rethink ifupdown

2006-08-20 Thread Jon Dowland
On Sun, Aug 20, 2006 at 02:58:25PM +0700, Alexey Feldgendler
wrote:
 My guess is that it's time to rethink the philosophy
 behind ifupdown and  give it some natural development.

Interesting post. Many of these problems (and others not
listed) also apply to the ifup/down suite in other
distributions (e.g.  Fedora/Redhat).

There is a GUI tool called NetworkManager[1] (henceforth
NM) which is growing in popularity for configuring
networking (although it is only oriented towards the
desktop). 

I've been wondering for a while if it might not be possible
to develop a more up-to-date ifup/down that would a)
maintain suitability for non-graphical environments and b)
have enough functionality, cross-distro, to be useful as a
back-end for NM, as I'm pretty uncomfortable with having all
the logic in the same tool as the whizzy interface.

However, ifupdown is Priority: important and Section: base,
meaning that it shall be frozen [2] and that redevelopment
will have to target etch+1.


[1] http://www.gnome.org/projects/NetworkManager/
[2] (Or already is? it was to be Next week as of Aug 8
according to the last release update to d-d-a)

-- 
Jon Dowland
http://alcopop.org/


signature.asc
Description: Digital signature


Re: Time to rethink ifupdown

2006-08-20 Thread David Goodenough
On Sunday 20 August 2006 08:58, Alexey Feldgendler wrote:
 Greetings to everybody on this list, it's my first post here.

 ifupdown, the official Debian network configuration tool, is great for
 configuring interfaces like Ethernet adapters. However, as time goes, more
 and more use cases occur which are hard to fulfill with ifupdown as it is.
 My guess is that it's time to rethink the philosophy behind ifupdown and
 give it some natural development.

 First, I'll summarize the problems with the current ifupdown (use cases
 not covered).

 1. When we run ifup, we express our intention to bring an interface up. In
 many cases, the fact that we wish the interface to come up is not enough.
 The interface can actually come or not come up, and significant amount of
 time can have passed between the user ordering the interface to come up
 and the interface actually starting working. A typical example is
 dial-on-demand, where the phone number can be redialled several times
 before actual connection. This is currently handled by either blocking
 ifup for an indefinite amount of time (bad: blocks handling of other
 interfaces with ifup -a, causes conflicts with other instances of ifup
 upon the ifstate file) or by forking off a process which tries to connect.
 The disadvantage of the latter approach is that ifup immediately considers
 the interface as being up, runs the up scripts and updates ifstate.
 Running the up scripts before their time has many negative consequences,
 such as putting unreachable DNS addresses into /etc/resolv.conf using
 resolvconf, setting up unusable routes etc.

 2. While the interface is up from the ifupdown POV, it can periodically go
 down and up again because of network problems (a common example is pppd's
 automatic redialling). In these cases, the down and up scripts are not
 executed though they should (see above about routes, resolv.conf etc).

 3. If the interface really dies and there is no way to revive it (e.g. an
 USB device has been physically disconnected), and the daemon like pppd
 exists even though it's been told to auto-reconnect, ifupdown will never
 know, so the interface state will remain inconsistent
 [http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=263749].

 4. There is a number of supervisor daemons which monitor the media for
 the ability to connect, and try to connect when it's possible. An example
 is ifplugd which monitors for Ethernet link state. These are usually
 configured so as to control ifup/ifdown, but actually they need to be
 controlled from ifup/ifdown themselves: ifup should start the daemon for a
 device, and ifdown should stop it. This has the advantage of passing the
 information from /etc/network/interfaces to the daemon and not having to
 duplicate it elsewhere. This is especially the case for wpasupplicant.

 5. Though ifupdown has a notion of mappers to resolve physical
 interfaces into their logical avatars, a mapper is required to be
 synchronous: it's supposed to give an answer and finish quickly. Acually,
 there are cases when the answer is not known at the time of expressing the
 intention to bring the interface up by running ifup. Sometimes, it's
 possible to find out the logical interface only when the interface
 actually goes up. This is the case with waproamd and wpasupplicant which
 monitor the media in hope of finding a usable WiFi network -- you can't
 know in advance which network it will be.

 Having summarized the conceptual problems of the current ifupdown, I'll
 describe my vision of what it should look like.

 In the /etc/network/interfaces file, there is a new method tristate (a
 better name is welcome) similar to manual. The difference is that the
 post-up commands are not run automatically after the up commands (ifup
 just exits after running the up commands). The up commands are supposed to
 start a background process whose responsibility is to invoke a callback by
 running ifup --notify $IFACE. This finalizes the transition and makes
 ifup run post-up commands and mark the interface as completely up. Between
 the user-initiated ifup invocation and this callback, the interface is
 thought to be half-up, i.e. indeterminate.

 If the connection happens to disappear while the interface is up from the
 ifupdown POV, it's the responsibility of the background process to run
 ifdown --notify $IFACE. This marks the interface as half-up again and
 executes the pre-down commands.

 Running ifdown executes the down, then post-down commands. It's the
 responsibility of background process to run ifdown --notify $IFACE (if
 the link was active), then die. The user-invoked ifdown doesn't run the
 pre-down commands.

 ifup --notify and ifdown --notify should be idempotent, i.e. ifup
 --notify should not run the post-up commands if the interface is already
 marked as full-up.

 The built-in methods involving external commands should be reformulated
 this way. This means that at least pon/poff should be given options to
 invoke the 

Re: Time to rethink ifupdown

2006-08-20 Thread martin f krafft
also sprach Alexey Feldgendler [EMAIL PROTECTED] [2006.08.20.0858 +0100]:
 Having summarized the conceptual problems of the current ifupdown, I'll  
 describe my vision of what it should look like.

Please take a look at http://wiki.debian.org/netconf .

It would be great if you could help flesh out that page with your
excellent arguments and thoughts. Also, if you are interested in
working on netconf (which currently noone is), I'd be happy to
dedicate some time to it.

Can I forward your post to the netconf mailing list?

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system
 
(on the statement print 42 monkeys+1 snake) btw,
both perl and python get this wrong.
perl gives 43 and python gives 42 monkeys1 snake,
when the answer is clearly 41 monkeys and 1 fat snake.
 -- jim fulton


signature.asc
Description: Digital signature (GPG/PGP)


Re: Status of inetd for etch

2006-08-20 Thread Hendrik Sattler
Am Samstag 19 August 2006 15:25 schrieb Marc Haber:
 On Thu, 17 Aug 2006 19:21:22 +0200, Hendrik Sattler

 [EMAIL PROTECTED] wrote:
 The suggestion to use nodaemon as default for exim4 when only handling
  local mail will probably be rejected?

 Of course. You won't get any queue runs and thus mail that cannot be
 delivered right away will stay forever on your queue.

I meant the case for local delivery only, no incoming mail. The only case 
not to be able to deliver in this case is /var being full or other write 
problems, but that probably will make exim4 misbehave anyway.

HS


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



Re: using long long and printf(%m) in debian

2006-08-20 Thread Hendrik Sattler
Am Samstag 19 August 2006 17:28 schrieb Steve Greenland:
 On 18-Aug-06, 16:48 (CDT), Hendrik Sattler [EMAIL PROTECTED] wrote:
  No, %m is, according to printf(2) manpage:
  m  (Glibc extension.)  Print output of strerror(errno).  No argument
  is required.
 
  So why isn't
   printf(%s\n,strerror(errno));
  used instead of
   printf(%m\n);
  ?
  Not like a problem in Debian GNU/* but you should tell upstream about
  questionable coding style and portability.

 The %m idiom is pretty widespread, actually, and not only a Glibc
 extension. But the strerror(errno) form is definitely superior for
 portability.

And there is always perror() which is something like:
  printf(%s%s%s\n,(s?s:),(s?: :),strerror(errno));
So, using something like:
  perror(__FUNCTION__);
of
  perror(NULL);
is probably a good idea.

HS


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



Re: Time to rethink ifupdown

2006-08-20 Thread Jamin W. Collins

Alexey Feldgendler wrote:


Greetings to everybody on this list, it's my first post here.

ifupdown, the official Debian network configuration tool, is great for 
configuring interfaces like Ethernet adapters. However, as time goes, 
more and more use cases occur which are hard to fulfill with ifupdown as 
it is. My guess is that it's time to rethink the philosophy behind 
ifupdown and give it some natural development.


Beyond the need to potentially rethink its development is the existence 
of a rather obscure and frustrating bug #253472.  The short of this bug 
is the ifup calls dhclient with the -e switch.  This means that if at 
any point in the interfaces life the dhclient is unable to acquire a 
functional IP lease for the interface, dchclient will error and exit. 
This can leave a system completely unreachable.


A check of the latest ifupdown sources in unstalbe (0.6.7) shows that 
the use of the -e switch is still present.


--
Jamin W. Collins


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



Re: using long long and printf(%m) in debian

2006-08-20 Thread Lars Wirzenius
su, 2006-08-20 kello 12:48 +0200, Hendrik Sattler kirjoitti:
 And there is always perror() which is something like:
   printf(%s%s%s\n,(s?s:),(s?: :),strerror(errno));
 So, using something like:
   perror(__FUNCTION__);
 of
   perror(NULL);
 is probably a good idea.

Not if you care about the quality of your error messages.

__FUNCTION__ isn't useful at all to the user, unless the user happens to
be a programmer and looks up the function in the source code.

fprintf(stderr, Could not read file: %s: %s\n, filename,
strerror(errno));

Please consider the above a minimal requirement for an error message: it
reports the operation that was attempted (reading a file), the target of
the operation (the filename), and the error message.

perror is, on the whole, useful only in throwaway programs, or programs
whose users like guessing.

PS. Be careful of preserving the value of errno, if you call any other
functions between the failed operation and strerror. This is wrong:

if (fgets(buf, sizeof(buf), f) == NULL) {
fclose(f);
fprintf(..., strerror(errno));
}

Any library function may change the value of errno. Do this instead:

if (fgets(buf, sizeof(buf), f) == NULL) {
int e = errno;
fclose(f);
fprintf(..., strerror(e));
}

PPS. This is getting off-topic for debian-devel, but I don't know where
to redirect further discussion, either. I'm not on any general
programming mailing lists.

-- 
Boilerplate programming mean tools lack power.


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



Re: These new diffs are great, but...

2006-08-20 Thread Florian Weimer
* Goswin von Brederlow:

 What code do you need there? If the rred method keeps the full Index
 file in memory during patching it can just be fed all the patches one
 after another and only write out the final result at the
 end. Combining the patches is a simple cat.

#383881 suggests that I/O bandwidth is not the issue.  In fact, if you
keep the file in memory and repeatedly patch it, you won't get away
from the O(n*m) complexity (n being the file size, m the number of
hunks in the patches), or whatever complexity it is.  Shuffling
pointers instead of full lines only saves a constant factor, which
might not be enough.

However, patching rred to apply patches in a single run would be a
good start because all further optimizations will need it.


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



Re: using long long and printf(%m) in debian

2006-08-20 Thread Wouter Verhelst
On Sun, Aug 20, 2006 at 03:59:17PM +0300, Lars Wirzenius wrote:
[...]
 fprintf(stderr, Could not read file: %s: %s\n, filename,
 strerror(errno));
 
 Please consider the above a minimal requirement for an error message: it
 reports the operation that was attempted (reading a file), the target of
 the operation (the filename), and the error message.
 
 perror is, on the whole, useful only in throwaway programs, or programs
 whose users like guessing.

Bullshit. The above could also have been done as

sprintf(buf, Could not read file %s, filename)
perror(buf);

or, perhaps (depending on what the file actually was):

perror(Could not read configuration file);

It's all a question of what exactly you specify as the string in the
call to perror. Of course using __FUNCTION__ is hardly ever useful to
the end-user, at least if you use it on its own. If properly used,
however, there's nothing wrong with perror.

-- 
Fun will now commence
  -- Seven Of Nine, Ashes to Ashes, stardate 53679.4


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



Re: using long long and printf(%m) in debian

2006-08-20 Thread Russ Allbery
Wouter Verhelst [EMAIL PROTECTED] writes:

 Bullshit. The above could also have been done as

 sprintf(buf, Could not read file %s, filename)
 perror(buf);

There's a buffer overflow waiting to happen.

 or, perhaps (depending on what the file actually was):

 perror(Could not read configuration file);

 It's all a question of what exactly you specify as the string in the
 call to perror. Of course using __FUNCTION__ is hardly ever useful to
 the end-user, at least if you use it on its own. If properly used,
 however, there's nothing wrong with perror.

The main drawback to perror is that it doesn't use stdargs, which means
that while it's fine for those errors that don't take any variable data,
you have to jump through hoops to handle the other cases.  fprintf with
stderr works, but for succinctness, I prefer rolling my own:

static void
sysdie(const char *format, ...)
{
int oerrno;
va_list args;

oerrno = errno;
fflush(stdout);
va_start(args, format);
vfprintf(stderr, format, args);
va_end(args);
fprintf(stderr, : %s\n, strerror(oerrno));
exit(1);
}

syswarn is the same without the exit.

Rolling one's own has the advantage of being portable.

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


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



Re: using long long and printf(%m) in debian

2006-08-20 Thread Lars Wirzenius
su, 2006-08-20 kello 18:08 +0200, Wouter Verhelst kirjoitti:
 On Sun, Aug 20, 2006 at 03:59:17PM +0300, Lars Wirzenius wrote:
 [...]
  fprintf(stderr, Could not read file: %s: %s\n, filename,
  strerror(errno));
  
  Please consider the above a minimal requirement for an error message: it
  reports the operation that was attempted (reading a file), the target of
  the operation (the filename), and the error message.
  
  perror is, on the whole, useful only in throwaway programs, or programs
  whose users like guessing.
 
 Bullshit.

Your version is a common mistake. Calling sprintf may change errno.
perror uses errno, so at the very least you need to save and then
restore errno just before calling perror. Using strerror is just easier.

-- 
It's 1978! Things should be round by now -- Michael Kelso (That 70's
show)


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



Bug#383913: RFA: xdiskusage -- Displays a graphic of your disk usage with du

2006-08-20 Thread Cyril Bouthors
Package: wnpp
Severity: normal

I'm asking for someone else to maintain xdiskusage because I'm not
using it anymore because I've switched to fsview (package
konq-plugins).
-- 
Cyril Bouthors


pgpITfCDyLs0z.pgp
Description: PGP signature


Re: Question about different kernel versions included on Etch

2006-08-20 Thread Goswin von Brederlow
carlopmart [EMAIL PROTECTED] writes:

 Hi all,

  I need to deploy several xen servers under Debia nEtch next week, and
 I have one doubt. Which is the difference between these kernels:
 linux-image-2.6.16-2-xen-686 and linux-image-2.6.16-2-xen-vserver-686?
 What does it means -vserver suffix?? Can I install third party kernel
 modules to these kernel like as I can do with normal kernels??

 Many thanks.

 P.D: sorry for the cross posting.

The -xen means xen support is included, the -vserver means vserver
support is included and -xen-vserver means both of those are included.

As to what vserver entails RTFM or google. :)

MfG
Goswin


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



Re: Packaging software which does not use autotools

2006-08-20 Thread Guillem Jover
On Mon, 2006-08-14 at 23:10:04 +0200, Michael Rasmussen wrote:
 On 2006-08-14 22:33:49, Hendrik Sattler wrote:
  Do you plan to support other system than linux in a fork? If no, there
  is

 Well, the software is already prepared to support *BSD, Solaris and
 Linux, but I only intent to support Linux - the only thing I use on a
 day to day basis.

If the current build system supports those arches, and yours does not,
it seems a step back. Also consider that we have non-Linux based Debian
ports as well, so if it does not build on those, bugs with patches will
have to be submitted for the package...

regards,
guillem


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



Bug#383940: ITP: aa -- astronomical almanac - calculate planet and star positions

2006-08-20 Thread James R. Van Zandt
Package: wnpp
Severity: wishlist
Owner: James R. Van Zandt [EMAIL PROTECTED]


* Package name: aa
  Version : 5.6
  Upstream Author : Steve Moshier [EMAIL PROTECTED]
* URL : http://www.moshier.net/
* License : under discussion (probably GPL)
  Programming Lang: C
  Description : astronomical almanac - calculate planet and star positions

aa computes the orbital positions of planetary bodies and performs
rigorous coordinate reductions to apparent geocentric and topocentric
place (local altitude and azimuth).  It also reduces star catalogue
positions given in either the FK4 or FK5 system.  Data for the 57
navigational stars is included.  Most of the algorithms employed are
from The Astronomical Almanac (AA) published by the U.S. Government
Printing Office.

aa.exe follows the rigorous algorithms for reduction of
celestial coordinates exactly as laid out in current editions of
the Astronomical Almanac.  The reduction to apparent geocentric
place has been checked by a special version of the program (aa200)
that takes planetary positions directly from the Jet Propulsion
Laboratory DE200 numerical integration of the solar system. The
results agree exactly with the Astronomical Almanac tables from
1987 onward (earlier Almanacs used slightly different reduction
methods).

Certain computations, such as the correction for nutation,
are not given explicitly in the AA but are referenced there. In
these cases the program performs the full computations that are
used to construct the Almanac tables (references are provided).


input to aa.exe is by single line responses to programmed prompts.
Output is written to stdout.

aa was used to generate the lunar distance tables at
http://www.math.uu.nl/people/wepster/ldtab.html

  - Jim Van Zandt

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'oldstable'), (500, 'testing'), (500, 
'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


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



Re: Packaging software which does not use autotools

2006-08-20 Thread Michael Rasmussen


On 2006-08-20 20:00:57, Guillem Jover wrote:


If the current build system supports those arches, and yours does
not,
You can hardly call it the Current build system as it is a number of  
Makefiles in which you need, manually, to add some defines.


What I have made is a generic package which just does not concerns  
itself with other arches than for GNU/Linux. If people wants to compile  
for *BSD or Solaris they can get the source tar-ball upstream. Also my  
package does not take into considerations to build clients for Windows  
or Mac OSX.


In my opinion it is a reasonable choice since the purpose of the  
package is to create deb-packages?



it seems a step back. Also consider that we have non-Linux based
Debian
ports as well, so if it does not build on those, bugs with patches
will
have to be submitted for the package...

For a test I have tried activating the other arch options but it did  
not make any difference - the ran as expected on Debian.


Which non-linux versions are you referring to? If the compile with  
option -std=c99 and -pedantic showing no warnings or errors the ought  
to be able to compile on any arch with gcc-4.1. Only dependency for  
building it is libc6.


--
Hilsen/Regards
Michael Rasmussen

Get my public GnuPG keys:
michael at rasmussen dot cc
http://keyserver.veridis.com:11371/pks/lookup?op=getsearch=0xD3C9A00E
mir at datanom dot net
http://keyserver.veridis.com:11371/pks/lookup?op=getsearch=0xE501F51C
mir at miras dot org
http://keyserver.veridis.com:11371/pks/lookup?op=getsearch=0xE3E80917
--
Reality is a crutch for people who can't handle drugs.


pgpSWZDoBpwec.pgp
Description: PGP signature


ITP: markup -- python XML-based template engine

2006-08-20 Thread Arnaud Fontaine
Package: wnpp
Owner: Arnaud Fontaine [EMAIL PROTECTED]
Severity: wishlist

* Package name: markup
  Version : 0.1.0
  Upstream Author : Edgewall Softwar [EMAIL PROTECTED]
* URL : http://markup.edgewall.org/
* License : BSD
  Programming Lang: Python
  Description : python XML-based template engine

Markup is a Python library that provides an integrated set of components
for parsing, generating, and processing HTML or XML content in a uniform
manner.  The major  feature is  a  template language,  which is  heavily
inspired by Kid.

Regards,
Arnaud Fontaine

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.4-maggie
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)


pgpBI9B09FKr4.pgp
Description: PGP signature


Re: Packaging software which does not use autotools

2006-08-20 Thread Michael Banck
On Sun, Aug 20, 2006 at 11:24:49PM +0200, Michael Rasmussen wrote:
 Which non-linux versions are you referring to? If the compile with  
 option -std=c99 and -pedantic showing no warnings or errors the ought  
 to be able to compile on any arch with gcc-4.1. Only dependency for  
 building it is libc6.

libc6 is only available on GNU/Linux, you probably mean glibc.  If that
is the case, then it should probably be fine


Michael


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



Re: Packaging software which does not use autotools

2006-08-20 Thread Michael Rasmussen


On 2006-08-21 00:40:09, Michael Banck wrote:


libc6 is only available on GNU/Linux, you probably mean glibc.  If
that
is the case, then it should probably be fine


Correct:-)

--
Hilsen/Regards
Michael Rasmussen

Get my public GnuPG keys:
michael at rasmussen dot cc
http://keyserver.veridis.com:11371/pks/lookup?op=getsearch=0xD3C9A00E
mir at datanom dot net
http://keyserver.veridis.com:11371/pks/lookup?op=getsearch=0xE501F51C
mir at miras dot org
http://keyserver.veridis.com:11371/pks/lookup?op=getsearch=0xE3E80917
--
Replace repetitive expressions by calls to a common function.
- The Elements of Programming Style (Kernighan  Plaugher)


pgpTyuJNWYXkc.pgp
Description: PGP signature


heimdal KCM

2006-08-20 Thread Brian May
Hello,

I have been requested to add KCM to the Debian packages - see bug #379245.

Based on my limited understanding, KCM is a system wide daemon that
keeps track of user's Kerberos tickets, in memory, so they don't need
to be stored in /tmp.

This presumably means an /etc/init.d/* script will be required to
start the daemon at boot.

I have several options, and I am not sure which one to use:

* include it in heimdal-servers.
  Pros: It is a server, natural choice.
  Cons: heimdal-servers conflicts with many other packages.

* include it in heimdal-clients.
  Pros: presumably everyone who installs heimdal-clients will probably
  want KCM, as it appears to be so much better then using /tmp.
  Might make it easier to have Debian package use KCM by default.
  Cons: ???

* create heimdal-kcm package.
  Pros: very flexible.
  Cons: users may not realise it exists.

I haven't investigated yet how to make KCM be used by default (I think
standard upstream might require setting an environment variable).

I am also not aware if KCM breaks compatibility with the MIT Kerberos
libraries or not.

Any suggestions?

This is something I would like to get right first go ;-).

Thanks.
-- 
Brian May [EMAIL PROTECTED]


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



Accepted postfix-policyd 1.80-2 (source i386)

2006-08-20 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 07:34:02 +0200
Source: postfix-policyd
Binary: postfix-policyd
Architecture: source i386
Version: 1.80-2
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý [EMAIL PROTECTED]
Changed-By: Ondřej Surý [EMAIL PROTECTED]
Description: 
 postfix-policyd - anti-spam plugin for Postfix
Changes: 
 postfix-policyd (1.80-2) unstable; urgency=low
 .
   * Added test for dbconfig-common in postinst: to be compliant with
 policy and don't assume dbconfig-common is installed in post-inst.
Files: 
 2ac52a9fecc5266d026918be9a6fc9a9 649 mail optional postfix-policyd_1.80-2.dsc
 d438803f4030c138cadc21829e0b3597 10470 mail optional 
postfix-policyd_1.80-2.diff.gz
 d4a5bc5e9a068b189462d1f044a736d9 69180 mail optional 
postfix-policyd_1.80-2_i386.deb

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

iD8DBQFE5/Z09OZqfMIN8nMRAgkeAJ9YfwHX0xORvIVVs8gvBiIpImn/4ACfdRIc
mW+CYeuIwhw9AIWHRBOhgQ0=
=Ui/R
-END PGP SIGNATURE-


Accepted:
postfix-policyd_1.80-2.diff.gz
  to pool/main/p/postfix-policyd/postfix-policyd_1.80-2.diff.gz
postfix-policyd_1.80-2.dsc
  to pool/main/p/postfix-policyd/postfix-policyd_1.80-2.dsc
postfix-policyd_1.80-2_i386.deb
  to pool/main/p/postfix-policyd/postfix-policyd_1.80-2_i386.deb


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



Accepted antiword 0.37-2 (source i386)

2006-08-20 Thread Anibal Monsalve Salazar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 15:32:21 +1000
Source: antiword
Binary: antiword
Architecture: source i386
Version: 0.37-2
Distribution: unstable
Urgency: low
Maintainer: Anibal Monsalve Salazar [EMAIL PROTECTED]
Changed-By: Anibal Monsalve Salazar [EMAIL PROTECTED]
Description: 
 antiword   - Converts MS Word files to text and ps
Closes: 383856
Changes: 
 antiword (0.37-2) unstable; urgency=low
 .
   * New maintainer. Closes: #383856.
   * Set Standards-Version to 3.7.2.
   * Added debian/watch.
Files: 
 f443ee435b3b3a6c6821707b718b3e4a 568 text optional antiword_0.37-2.dsc
 02e93251b428dcd9b8763a0504f2deaf 5930 text optional antiword_0.37-2.diff.gz
 56775f548da6c3356cb1ed0471d1c684 149698 text optional antiword_0.37-2_i386.deb

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

iD8DBQFE5/cjipBneRiAKDwRAiI9AJ9U6/2eIAUTbbMAGkrrYDmG5n0x/ACfRkbt
LJoha2hJ1D4+WgKlAphosH4=
=INO9
-END PGP SIGNATURE-


Accepted:
antiword_0.37-2.diff.gz
  to pool/main/a/antiword/antiword_0.37-2.diff.gz
antiword_0.37-2.dsc
  to pool/main/a/antiword/antiword_0.37-2.dsc
antiword_0.37-2_i386.deb
  to pool/main/a/antiword/antiword_0.37-2_i386.deb


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



Accepted rudiments 0.29-2 (source all i386)

2006-08-20 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 00:17:29 +
Source: rudiments
Binary: librudiments0.29 librudiments-dev librudiments-doc
Architecture: source all i386
Version: 0.29-2
Distribution: unstable
Urgency: low
Maintainer: Matthias Klose [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 librudiments-dev - C++ class library providing base classes
 librudiments-doc - C++ class library providing base classes
 librudiments0.29 - C++ class library providing base classes
Closes: 377756
Changes: 
 rudiments (0.29-2) unstable; urgency=low
 .
   * Update URL in the package descriptions. Closes: #377756.
Files: 
 1d664917c0e599eeb949163d4e2e61c1 621 libs optional rudiments_0.29-2.dsc
 7e962d30678cb183d752a6706726efe2 4481 libs optional rudiments_0.29-2.diff.gz
 ffecbbae083c551878af15ac2d41a2c8 99538 doc optional 
librudiments-doc_0.29-2_all.deb
 04d1b3cd6d5b63ce5b76e32bf8f2a898 149108 libs optional 
librudiments0.29_0.29-2_i386.deb
 6c02b6a4305b209b1b54249c9f20e3b8 237046 libdevel optional 
librudiments-dev_0.29-2_i386.deb

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

iD8DBQFE6AZhStlRaw+TLJwRAjWGAKCkc4KE6a/yeQS4ksWcNoS9pN0I6gCfcKMh
+UnZPaTuUcZY0OFu2mL9F/c=
=RZYy
-END PGP SIGNATURE-


Accepted:
librudiments-dev_0.29-2_i386.deb
  to pool/main/r/rudiments/librudiments-dev_0.29-2_i386.deb
librudiments-doc_0.29-2_all.deb
  to pool/main/r/rudiments/librudiments-doc_0.29-2_all.deb
librudiments0.29_0.29-2_i386.deb
  to pool/main/r/rudiments/librudiments0.29_0.29-2_i386.deb
rudiments_0.29-2.diff.gz
  to pool/main/r/rudiments/rudiments_0.29-2.diff.gz
rudiments_0.29-2.dsc
  to pool/main/r/rudiments/rudiments_0.29-2.dsc


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



Accepted cowdancer 0.21 (source amd64)

2006-08-20 Thread Junichi Uekawa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 15:08:43 +0900
Source: cowdancer
Binary: cowdancer
Architecture: source amd64
Version: 0.21
Distribution: unstable
Urgency: low
Maintainer: Junichi Uekawa [EMAIL PROTECTED]
Changed-By: Junichi Uekawa [EMAIL PROTECTED]
Description: 
 cowdancer  - Copy-on-write directory tree utility.
Changes: 
 cowdancer (0.21) unstable; urgency=low
 .
   * Do not clean up if return code from pbuilder looks wrong.
Files: 
 c19b0c6d2d6b7b4bccc99d932e4c1c04 495 utils optional cowdancer_0.21.dsc
 61a72d4163a2275ce8d19a1c419a8bf2 84737 utils optional cowdancer_0.21.tar.gz
 9cd45b8f0c14542ca0dce9a1f97c42ad 26764 utils optional cowdancer_0.21_amd64.deb

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

iD8DBQFE6AY92Dd9TugeVcERAmlZAJ9M+cj4YYSjFbvGZmv/Jl2X60mLBQCfR74E
zouKg5r3Tbx2a4tKyzb/Omw=
=C8TH
-END PGP SIGNATURE-


Accepted:
cowdancer_0.21.dsc
  to pool/main/c/cowdancer/cowdancer_0.21.dsc
cowdancer_0.21.tar.gz
  to pool/main/c/cowdancer/cowdancer_0.21.tar.gz
cowdancer_0.21_amd64.deb
  to pool/main/c/cowdancer/cowdancer_0.21_amd64.deb


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



Accepted gs-esp 8.15.2.dfsg.1-2 (source i386)

2006-08-20 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 10 Aug 2006 18:33:07 +0900
Source: gs-esp
Binary: gs-esp
Architecture: source i386
Version: 8.15.2.dfsg.1-2
Distribution: unstable
Urgency: medium
Maintainer: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Changed-By: Kenshi Muto [EMAIL PROTECTED]
Description: 
 gs-esp - The Ghostscript PostScript interpreter - ESP version
Closes: 381386 382250
Changes: 
 gs-esp (8.15.2.dfsg.1-2) unstable; urgency=medium
 .
   [Kenshi Muto]
   * gs-cjk-resource still needs for CJK people.
 Revert a dependency.
   * Apply revert patch 166:164. Upsream CJK patch broke umlaute.
 (closes: #381386, #382250)
Files: 
 9f493570797b85ce6320afb639423f09 851 text optional gs-esp_8.15.2.dfsg.1-2.dsc
 fdfa0996ea0691a35c9004ad6d64416d 166912 text optional 
gs-esp_8.15.2.dfsg.1-2.diff.gz
 6687cb5892ff34120ae5080cfdfeb884 3000740 text optional 
gs-esp_8.15.2.dfsg.1-2_i386.deb

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

iEYEARECAAYFAkToGr8ACgkQQKW+7XLQPLFB9QCgu5sBd9dACm2iK+csUPqgOyv5
9wQAnjALRDRueRjrl1pf90quzxDjgUlY
=JlRZ
-END PGP SIGNATURE-


Accepted:
gs-esp_8.15.2.dfsg.1-2.diff.gz
  to pool/main/g/gs-esp/gs-esp_8.15.2.dfsg.1-2.diff.gz
gs-esp_8.15.2.dfsg.1-2.dsc
  to pool/main/g/gs-esp/gs-esp_8.15.2.dfsg.1-2.dsc
gs-esp_8.15.2.dfsg.1-2_i386.deb
  to pool/main/g/gs-esp/gs-esp_8.15.2.dfsg.1-2_i386.deb


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



Accepted ggz-client-libs 0.0.13-2 (source i386)

2006-08-20 Thread Peter Eisentraut
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 10:31:13 +0200
Source: ggz-client-libs
Binary: libggzmod-dev ggzcore-bin libggzcore-dev libggzmod4 libggzcore7
Architecture: source i386
Version: 0.0.13-2
Distribution: unstable
Urgency: low
Maintainer: Debian GGZ Maintainers [EMAIL PROTECTED]
Changed-By: Peter Eisentraut [EMAIL PROTECTED]
Description: 
 ggzcore-bin - GGZ Gaming Zone: various command-line helper programs
 libggzcore-dev - GGZ Gaming Zone: core client frontend library - development 
files
 libggzcore7 - GGZ Gaming Zone: core client frontend library
 libggzmod-dev - GGZ Gaming Zone: game frontend library - development files
 libggzmod4 - GGZ Gaming Zone: game frontend library
Changes: 
 ggz-client-libs (0.0.13-2) unstable; urgency=low
 .
   [ Josef Spillner ]
   * Include ggzwrap into ggzcore-bin package (it's a dummy game client module).
   * Always depend on ggzcore-bin in ggzmod4, needed for compilation
 of external games and integration of their configuration files in binary
 packages.
 .
   [ Peter Eisentraut ]
   * Changed maintainer to mailing list
   * Updated standards version
   * Changed build system to CDBS
   * Updated to Debhelper level 5
   * Improved dependency information
   * Added watch file
   * Improved package description
Files: 
 d6fb0159046d199cf6e3a48cc0f04591 826 libs optional ggz-client-libs_0.0.13-2.dsc
 4d560f748c9f49074aba2f653847ab56 3148 libs optional 
ggz-client-libs_0.0.13-2.diff.gz
 3c1b37b71a843ad3d16a21939123a244 75044 libs optional 
libggzcore7_0.0.13-2_i386.deb
 074a7e353b4caf15149d242d8f2953b3 102314 libdevel optional 
libggzcore-dev_0.0.13-2_i386.deb
 d5e357aa83f281629ecae91ee8a8cce1 54262 utils optional 
ggzcore-bin_0.0.13-2_i386.deb
 23717f81c7ff03c46b91d5cc7ad537e6 36458 libs optional 
libggzmod4_0.0.13-2_i386.deb
 2f2381ff2d24662b71eac25757bef899 44350 libdevel optional 
libggzmod-dev_0.0.13-2_i386.deb

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

iD8DBQFE6CZSTTx8oVVPtMYRAtUjAKCDxZ+rawGmxeum9PPcinBcrLGBfwCdGymc
bRBr6ImiI3jk11+xaZ9xz1Y=
=yafg
-END PGP SIGNATURE-


Accepted:
ggz-client-libs_0.0.13-2.diff.gz
  to pool/main/g/ggz-client-libs/ggz-client-libs_0.0.13-2.diff.gz
ggz-client-libs_0.0.13-2.dsc
  to pool/main/g/ggz-client-libs/ggz-client-libs_0.0.13-2.dsc
ggzcore-bin_0.0.13-2_i386.deb
  to pool/main/g/ggz-client-libs/ggzcore-bin_0.0.13-2_i386.deb
libggzcore-dev_0.0.13-2_i386.deb
  to pool/main/g/ggz-client-libs/libggzcore-dev_0.0.13-2_i386.deb
libggzcore7_0.0.13-2_i386.deb
  to pool/main/g/ggz-client-libs/libggzcore7_0.0.13-2_i386.deb
libggzmod-dev_0.0.13-2_i386.deb
  to pool/main/g/ggz-client-libs/libggzmod-dev_0.0.13-2_i386.deb
libggzmod4_0.0.13-2_i386.deb
  to pool/main/g/ggz-client-libs/libggzmod4_0.0.13-2_i386.deb


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



Accepted acpi-support 0.86-1 (source i386)

2006-08-20 Thread Raphael Hertzog
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 10:43:59 +0200
Source: acpi-support
Binary: acpi-support
Architecture: source i386
Version: 0.86-1
Distribution: unstable
Urgency: low
Maintainer: Raphael Hertzog [EMAIL PROTECTED]
Changed-By: Raphael Hertzog [EMAIL PROTECTED]
Description: 
 acpi-support - scripts for handling many ACPI events
Closes: 381219 383326 383449 383691
Changes: 
 acpi-support (0.86-1) unstable; urgency=low
 .
   * New upstream version (from Ubuntu Edgy).
 * 0.86: Remove stop links from rc0 and rc6
 * 0.85: Don't unload nsc-ircc on suspend
   * Add ${shlibs:Depends} and call to dh_shlibdeps. Closes: #383449
   * 855resolution is no more in Debian, replaced by 915resolution.
 Closes: #381219
   * Improved description, thanks to Clément Stenac. Closes: #383691
   * Removed README.toshiba which doesn't apply to Debian (or which doesn't
 apply any more, the toshiba_acpi option indicated doesn't exist in
 2.6.17.7). Closes: #383326
Files: 
 2bd5fe6ec15966c050a28cce595b33d0 657 admin optional acpi-support_0.86-1.dsc
 cc35bcf88fc772d5636227cf236c749b 26859 admin optional 
acpi-support_0.86.orig.tar.gz
 ffba467dd70d72ad8b65022ae5f053ab 10302 admin optional 
acpi-support_0.86-1.diff.gz
 fea04965c19919d85a7e1cdb79118483 31076 admin optional 
acpi-support_0.86-1_i386.deb

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

iD8DBQFE6C6fvPbGD26BadIRAo2UAJ4g60mXEMAyZF385Xqan2f21/dY4ACdF3G+
xwcrolYYq/gPqiMS6I0GYL4=
=wWvA
-END PGP SIGNATURE-


Accepted:
acpi-support_0.86-1.diff.gz
  to pool/main/a/acpi-support/acpi-support_0.86-1.diff.gz
acpi-support_0.86-1.dsc
  to pool/main/a/acpi-support/acpi-support_0.86-1.dsc
acpi-support_0.86-1_i386.deb
  to pool/main/a/acpi-support/acpi-support_0.86-1_i386.deb
acpi-support_0.86.orig.tar.gz
  to pool/main/a/acpi-support/acpi-support_0.86.orig.tar.gz


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



Accepted sql-ledger 2.6.16-1 (source all)

2006-08-20 Thread Raphael Hertzog
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 11:52:42 +0200
Source: sql-ledger
Binary: sql-ledger
Architecture: source all
Version: 2.6.16-1
Distribution: unstable
Urgency: low
Maintainer: Finn-Arne Johansen [EMAIL PROTECTED]
Changed-By: Raphael Hertzog [EMAIL PROTECTED]
Description: 
 sql-ledger - A web based double-entry accounting program
Changes: 
 sql-ledger (2.6.16-1) unstable; urgency=low
 .
   * New upstream version:
 - added source field on drill-down list
 - changed random number generator to avoid overwriting existing partnumber
 - added hidden sales flag to employee screen
 - fixed menu to exclude phantom lines
Files: 
 2d29126f36a660e6a1453eac9893b413 706 web optional sql-ledger_2.6.16-1.dsc
 ecc42099b4ea0eebd1abb8896eb69c69 2955102 web optional 
sql-ledger_2.6.16.orig.tar.gz
 43058eb552aac953fb69c5f6aabf0b38 12637 web optional sql-ledger_2.6.16-1.diff.gz
 ce07cf129ed1ade5cb2ea0ad37662627 2701232 web optional 
sql-ledger_2.6.16-1_all.deb

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

iD8DBQFE6DGovPbGD26BadIRAnlDAJ46cG8OJXDc/AqL/qs9kBRCiviw2gCaAgiB
eAZ94sg/010mXuz2ynPPZxc=
=Qy9S
-END PGP SIGNATURE-


Accepted:
sql-ledger_2.6.16-1.diff.gz
  to pool/main/s/sql-ledger/sql-ledger_2.6.16-1.diff.gz
sql-ledger_2.6.16-1.dsc
  to pool/main/s/sql-ledger/sql-ledger_2.6.16-1.dsc
sql-ledger_2.6.16-1_all.deb
  to pool/main/s/sql-ledger/sql-ledger_2.6.16-1_all.deb
sql-ledger_2.6.16.orig.tar.gz
  to pool/main/s/sql-ledger/sql-ledger_2.6.16.orig.tar.gz


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



Accepted base-files 3.1.15 (source powerpc)

2006-08-20 Thread Santiago Vila
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 12:44:00 +0200
Source: base-files
Binary: base-files
Architecture: source powerpc
Version: 3.1.15
Distribution: unstable
Urgency: low
Maintainer: Santiago Vila [EMAIL PROTECTED]
Changed-By: Santiago Vila [EMAIL PROTECTED]
Description: 
 base-files - Debian base system miscellaneous files
Closes: 383493
Changes: 
 base-files (3.1.15) unstable; urgency=low
 .
   * Added /usr/local/etc, required by FHS (Closes: #383493).
 [ As usual, please note that this will only affect new installs ].
 This directory is also allowed to be a symlink to /etc/local, but that's
 a decision to be made by the end user after installing the system.
   * Standards-Version: 3.7.2.
Files: 
 2c5d77e100114f806bc32e115e097b70 466 admin required base-files_3.1.15.dsc
 cb7e4c9e81433c27c681a27581f41956 35548 admin required base-files_3.1.15.tar.gz
 59ced4577ec24f44ac7d76dbfbe9557d 34306 admin required 
base-files_3.1.15_powerpc.deb

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

iD8DBQFE6EBHd9Uuvj7yPNYRApMEAKCRcYiACpsqz2bJPrLQzKdEOqSfFQCfUAbs
CZwHP46l7Yr31QxFbff/KVw=
=ClUr
-END PGP SIGNATURE-


Accepted:
base-files_3.1.15.dsc
  to pool/main/b/base-files/base-files_3.1.15.dsc
base-files_3.1.15.tar.gz
  to pool/main/b/base-files/base-files_3.1.15.tar.gz
base-files_3.1.15_powerpc.deb
  to pool/main/b/base-files/base-files_3.1.15_powerpc.deb


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



Accepted slang-slirp 1.9.0-1-2 (source i386)

2006-08-20 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 17:11:52 +0200
Source: slang-slirp
Binary: slang-slirp
Architecture: source i386
Version: 1.9.0-1-2
Distribution: unstable
Urgency: low
Maintainer: Debian JED Group [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 slang-slirp - C code generator for the S-Lang scripting language
Closes: 383777 383779
Changes: 
 slang-slirp (1.9.0-1-2) unstable; urgency=low
 .
   * debian/rules: Build PIC code (closes: #383777, closes: #383779)
   * debian/patches/clean-config-log.patch: Clean config.log produced by
 configure
Files: 
 dc41d6a3d4748d05adc3636ba9df25fd 726 interpreters optional 
slang-slirp_1.9.0-1-2.dsc
 d96beef2a5526c8baa1e8aac2013264a 5456 interpreters optional 
slang-slirp_1.9.0-1-2.diff.gz
 b513e3c436a82e0b71c4c3f4c8e78c91 234612 interpreters optional 
slang-slirp_1.9.0-1-2_i386.deb

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

iD8DBQFE5y5ck3oga0pdcv4RAsLPAJ90HrDrXrCtu0NcuR/LYKkIbrPhqQCgkCto
PV1PxXaZD0LXx3012yHUNGs=
=shZr
-END PGP SIGNATURE-


Accepted:
slang-slirp_1.9.0-1-2.diff.gz
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-2.diff.gz
slang-slirp_1.9.0-1-2.dsc
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-2.dsc
slang-slirp_1.9.0-1-2_i386.deb
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-2_i386.deb


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



Accepted ggz-utils 0.0.13-2 (source i386)

2006-08-20 Thread Peter Eisentraut
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 13:01:41 +0200
Source: ggz-utils
Binary: ggz-utils
Architecture: source i386
Version: 0.0.13-2
Distribution: unstable
Urgency: low
Maintainer: Debian GGZ Maintainers [EMAIL PROTECTED]
Changed-By: Peter Eisentraut [EMAIL PROTECTED]
Description: 
 ggz-utils  - GGZ Gaming Zone: utilities
Changes: 
 ggz-utils (0.0.13-2) unstable; urgency=low
 .
   * Changed maintainer to mailing list
   * Updated standards version
   * Changed build system to CDBS
   * Updated to Debhelper level 5
   * Improved dependency information
   * Added watch file
   * Improved package description
Files: 
 d1853e8bfda7aae0d7f340d9861b32c9 727 net optional ggz-utils_0.0.13-2.dsc
 5f03318ecb51589c81484a016273e197 2133 net optional ggz-utils_0.0.13-2.diff.gz
 e98867eaff0aa3662ed8f9d49eae9c89 64334 net optional ggz-utils_0.0.13-2_i386.deb

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

iD8DBQFE6EGFTTx8oVVPtMYRArVlAJ0W6F+KEUF0jXJJheJmMA5VwMzfIgCfYaGv
WmlHFv5hV2oZfIb9p9JLq8g=
=Gxeo
-END PGP SIGNATURE-


Accepted:
ggz-utils_0.0.13-2.diff.gz
  to pool/main/g/ggz-utils/ggz-utils_0.0.13-2.diff.gz
ggz-utils_0.0.13-2.dsc
  to pool/main/g/ggz-utils/ggz-utils_0.0.13-2.dsc
ggz-utils_0.0.13-2_i386.deb
  to pool/main/g/ggz-utils/ggz-utils_0.0.13-2_i386.deb


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



Accepted slang-slirp 1.9.0-1-3 (source i386)

2006-08-20 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 18:35:12 +0200
Source: slang-slirp
Binary: slang-slirp
Architecture: source i386
Version: 1.9.0-1-3
Distribution: unstable
Urgency: low
Maintainer: Debian JED Group [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 slang-slirp - C code generator for the S-Lang scripting language
Changes: 
 slang-slirp (1.9.0-1-3) unstable; urgency=low
 .
   * debian/patches/clean-config-log.patch: Removed spurious part of this
 patch
Files: 
 4baf3c9e874430dfda8b933bb440304e 726 interpreters optional 
slang-slirp_1.9.0-1-3.dsc
 c242dae808fea22c181e0e15ffa3cdf1 3468 interpreters optional 
slang-slirp_1.9.0-1-3.diff.gz
 3361015f92ee6978a7e155e4fdbe31f6 234654 interpreters optional 
slang-slirp_1.9.0-1-3_i386.deb

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

iD8DBQFE6ELck3oga0pdcv4RAlTBAJ4wL/4l4kW43Qx3XfkMcuK3DyswNwCfeV9c
QkV2XZJuyN1ihGfjvY4qTWo=
=lFlc
-END PGP SIGNATURE-


Accepted:
slang-slirp_1.9.0-1-3.diff.gz
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-3.diff.gz
slang-slirp_1.9.0-1-3.dsc
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-3.dsc
slang-slirp_1.9.0-1-3_i386.deb
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-3_i386.deb


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



Accepted cipe 1.5.4free-10 (source all i386)

2006-08-20 Thread Michael Ablassmeier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 13:24:42 +0200
Source: cipe
Binary: pkcipe cipe-common cipe-source
Architecture: source all i386
Version: 1.5.4free-10
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Michael Ablassmeier [EMAIL PROTECTED]
Description: 
 cipe-common - common files for the CIPE VPN software
 cipe-source - lightweight encrypted IP tunnels over UDP (source)
 pkcipe - public key based configuration tool for the CIPE VPN software
Closes: 304918 313336 336702
Changes: 
 cipe (1.5.4free-10) unstable; urgency=low
 .
   * QA Upload
   * Set Maintainer to QA Group, Orphaned: #381162
   * Add Czech debconf translation (Closes: #304918)
   * Add Portuguese debconf translation (Closes: #336702)
   * Add Vietnamese debconf translation (Closes: #313336)
Files: 
 09b7102c44b77dceeead45667503fdaa 610 net optional cipe_1.5.4free-10.dsc
 19772d00e961b02f88d47c8f78c2b95e 54851 net optional cipe_1.5.4free-10.diff.gz
 77d654c6de4eb48e00c070e92f222ad7 189796 net optional 
cipe-source_1.5.4free-10_all.deb
 f22bcd3dd6ec10f8d3a61445deb7321e 68546 net optional 
cipe-common_1.5.4free-10_all.deb
 e02b43e46e5bd30c1139e106c1ed5bd5 33800 net optional 
pkcipe_1.5.4free-10_i386.deb

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

iD8DBQFE6EpCEFV7g4B8rCURAkgOAJ4+MDsBKUrW9tjW2Sb12EO5RAw+RQCdGP3f
ny7c2AT8kY1B+vRfRNnsZGE=
=17jR
-END PGP SIGNATURE-


Accepted:
cipe-common_1.5.4free-10_all.deb
  to pool/main/c/cipe/cipe-common_1.5.4free-10_all.deb
cipe-source_1.5.4free-10_all.deb
  to pool/main/c/cipe/cipe-source_1.5.4free-10_all.deb
cipe_1.5.4free-10.diff.gz
  to pool/main/c/cipe/cipe_1.5.4free-10.diff.gz
cipe_1.5.4free-10.dsc
  to pool/main/c/cipe/cipe_1.5.4free-10.dsc
pkcipe_1.5.4free-10_i386.deb
  to pool/main/c/cipe/pkcipe_1.5.4free-10_i386.deb


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



Accepted rt2x00 0cvs20060801-4 (source all)

2006-08-20 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 13:39:16 +0200
Source: rt2x00
Binary: rt2x00-source
Architecture: source all
Version: 0cvs20060801-4
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 rt2x00-source - RT2x00 wireless network drivers source
Closes: 383519
Changes: 
 rt2x00 (0cvs20060801-4) unstable; urgency=low
 .
   * Added a note that you need a 2.6.17 or later kernel (closes:
 bug#383519).
Files: 
 4c8fe7cc1c186aa158d06aef335d2ff3 637 net extra rt2x00_0cvs20060801-4.dsc
 36f7ca4d1da03668440446393a76196b 4404 net extra rt2x00_0cvs20060801-4.diff.gz
 6b7aedbd21c09a9c312012075ee476ef 296366 net extra 
rt2x00-source_0cvs20060801-4_all.deb

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

iD8DBQFE6Eoqw3ao2vG823MRApZDAJ9yoDvxQPZrv0gYON8gwJ00Pm75zgCcDkYu
4pRrmXXrFV2Yb2YloxqzBls=
=X3ns
-END PGP SIGNATURE-


Accepted:
rt2x00-source_0cvs20060801-4_all.deb
  to pool/main/r/rt2x00/rt2x00-source_0cvs20060801-4_all.deb
rt2x00_0cvs20060801-4.diff.gz
  to pool/main/r/rt2x00/rt2x00_0cvs20060801-4.diff.gz
rt2x00_0cvs20060801-4.dsc
  to pool/main/r/rt2x00/rt2x00_0cvs20060801-4.dsc


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



Accepted ggz-server 0.0.13-2 (source i386)

2006-08-20 Thread Peter Eisentraut
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 13:32:52 +0200
Source: ggz-server
Binary: ggzd ggz-game-servers libggzdmodpp0 libggzdmod4 libggzdmod-dev 
libggzdmodpp-dev
Architecture: source i386
Version: 0.0.13-2
Distribution: unstable
Urgency: low
Maintainer: Debian GGZ Maintainers [EMAIL PROTECTED]
Changed-By: Peter Eisentraut [EMAIL PROTECTED]
Description: 
 ggz-game-servers - GGZ Gaming Zone: game servers collection
 ggzd   - GGZ Gaming Zone: main server
 libggzdmod-dev - GGZ Gaming Zone: game backend library - development files
 libggzdmod4 - GGZ Gaming Zone: game backend library
 libggzdmodpp-dev - GGZ Gaming Zone: game backend class library - development 
files
 libggzdmodpp0 - GGZ Gaming Zone: game backend class library
Changes: 
 ggz-server (0.0.13-2) unstable; urgency=low
 .
   [ Peter Eisentraut ]
   * Changed maintainer to mailing list
   * Updated standards version
   * Changed build system to CDBS
   * Updated to Debhelper level 5
   * Improved dependency information
   * Added watch file
   * Improved package description
 .
   [ Josef Spillner ]
   * Header packages go to libdevel, not devel
Files: 
 b9b7175369e41fc5f75d8a11b5eab265 858 games optional ggz-server_0.0.13-2.dsc
 2513981325777e949d51308d92dbe734 4561 games optional 
ggz-server_0.0.13-2.diff.gz
 7ea4125af1c48e724937f0ce65dcbaa3 256050 games optional ggzd_0.0.13-2_i386.deb
 3a2f8c892a223babcdb1c9dea53b5b23 366404 games optional 
ggz-game-servers_0.0.13-2_i386.deb
 9d4559d8cf17513776c0629a4b0cef56 199340 libs optional 
libggzdmod4_0.0.13-2_i386.deb
 209115c02b507ed2801664cc405be09e 214018 libdevel optional 
libggzdmod-dev_0.0.13-2_i386.deb
 f9a09b007e81644ba1d3a7e3ef564248 197902 libs optional 
libggzdmodpp0_0.0.13-2_i386.deb
 ae61e8a72126bc4e8930643a6627be5a 200386 libdevel optional 
libggzdmodpp-dev_0.0.13-2_i386.deb

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

iD8DBQFE6EkbTTx8oVVPtMYRAt4uAJ4kgZj6T0Tg8DT5ofuyHsFCl7mdNgCgmW82
zXkDLbrQq1jqfWNfFZMK/WQ=
=9HmG
-END PGP SIGNATURE-


Accepted:
ggz-game-servers_0.0.13-2_i386.deb
  to pool/main/g/ggz-server/ggz-game-servers_0.0.13-2_i386.deb
ggz-server_0.0.13-2.diff.gz
  to pool/main/g/ggz-server/ggz-server_0.0.13-2.diff.gz
ggz-server_0.0.13-2.dsc
  to pool/main/g/ggz-server/ggz-server_0.0.13-2.dsc
ggzd_0.0.13-2_i386.deb
  to pool/main/g/ggz-server/ggzd_0.0.13-2_i386.deb
libggzdmod-dev_0.0.13-2_i386.deb
  to pool/main/g/ggz-server/libggzdmod-dev_0.0.13-2_i386.deb
libggzdmod4_0.0.13-2_i386.deb
  to pool/main/g/ggz-server/libggzdmod4_0.0.13-2_i386.deb
libggzdmodpp-dev_0.0.13-2_i386.deb
  to pool/main/g/ggz-server/libggzdmodpp-dev_0.0.13-2_i386.deb
libggzdmodpp0_0.0.13-2_i386.deb
  to pool/main/g/ggz-server/libggzdmodpp0_0.0.13-2_i386.deb


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



Accepted jed 0.99.18-4 (source all i386)

2006-08-20 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 13:19:11 +0200
Source: jed
Binary: jed jed-common xjed
Architecture: source all i386
Version: 0.99.18-4
Distribution: unstable
Urgency: low
Maintainer: Debian JED Group [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 jed- editor for programmers (textmode version)
 jed-common - S-Lang runtime files for jed and xjed
 xjed   - editor for programmers (x11 version)
Changes: 
 jed (0.99.18-4) unstable; urgency=low
 .
   * debian/watch: Added file [RL]
   * debian/po/fr.po: Reviewed version, thanks to Thomas Huriaux
 thomas.huriaux AT gmail DOT com and Christian Perrier
 bubulle AT debian DOT org [RL]
 .
   * piuparts complained about the left config files after the upgrade from
 sarge. Now they are handled like 00site.sl and 99defauls.sl before. [JS]
 .
   * Fixed the insufficient detection of block ends in pymode. [JS]
Files: 
 78eaeea69396ec7f644bd9281c7f6045 787 editors optional jed_0.99.18-4.dsc
 4f584096e637843ccd9b735af28a3f7e 28128 editors optional jed_0.99.18-4.diff.gz
 448c7747bd1e9ea31b2be7ddbbc0d4ec 116262 editors optional jed_0.99.18-4_i386.deb
 df2bf08042d0e133bab6df133cb8f5a4 131906 editors optional 
xjed_0.99.18-4_i386.deb
 a0558005486ffcf4e6f1f10d4c7e8b24 525084 editors optional 
jed-common_0.99.18-4_all.deb

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

iD8DBQFE6EyUk3oga0pdcv4RAjdfAJ9FpOBMtVnIRwWEdIB1r6OUyEjUXACfY1ud
gstzE1Le0x+ufpLCYGWkouo=
=9rIT
-END PGP SIGNATURE-


Accepted:
jed-common_0.99.18-4_all.deb
  to pool/main/j/jed/jed-common_0.99.18-4_all.deb
jed_0.99.18-4.diff.gz
  to pool/main/j/jed/jed_0.99.18-4.diff.gz
jed_0.99.18-4.dsc
  to pool/main/j/jed/jed_0.99.18-4.dsc
jed_0.99.18-4_i386.deb
  to pool/main/j/jed/jed_0.99.18-4_i386.deb
xjed_0.99.18-4_i386.deb
  to pool/main/j/jed/xjed_0.99.18-4_i386.deb


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



Accepted hwinfo 13.0-5 (source i386)

2006-08-20 Thread Morten Werner Olsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 13:34:08 +0200
Source: hwinfo
Binary: libhd13-dev libhd13 hwinfo
Architecture: source i386
Version: 13.0-5
Distribution: unstable
Urgency: low
Maintainer: Morten Werner Olsen [EMAIL PROTECTED]
Changed-By: Morten Werner Olsen [EMAIL PROTECTED]
Description: 
 hwinfo - Hardware identification system
 libhd13- Hardware identification system library
 libhd13-dev - Hardware identification system library and headers
Closes: 381387
Changes: 
 hwinfo (13.0-5) unstable; urgency=low
 .
   * Fixed a cut'n'paste error in sysfsutils2 patch which caused all the PCI
 interfaces to be reported as ISDN adapters. (Closes: #381387)
   * Corrected a typo in debian/copyright (URL to .src.rpm).
Files: 
 984c8f70ebe0d2da675e647a4f576b3f 679 admin optional hwinfo_13.0-5.dsc
 6702bbcba560d7c6571a985ed832f1d8 10417 admin optional hwinfo_13.0-5.diff.gz
 1a973ccc01786f2a5e79fb2d975dbcc9 39914 admin optional hwinfo_13.0-5_i386.deb
 56f38bba1a5018c16eba6b8062e939cc 557932 libs optional libhd13_13.0-5_i386.deb
 919c7653098ce4def68429b531076932 643056 libdevel optional 
libhd13-dev_13.0-5_i386.deb

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

iD8DBQFE6EyYw951rgNrq40RAiy+AJ4vK2ztrEgDqQkLhBJRHVhDXT+1WwCeNk/0
Psdka/0itAzb2eLS7HVY5PE=
=AYWG
-END PGP SIGNATURE-


Accepted:
hwinfo_13.0-5.diff.gz
  to pool/main/h/hwinfo/hwinfo_13.0-5.diff.gz
hwinfo_13.0-5.dsc
  to pool/main/h/hwinfo/hwinfo_13.0-5.dsc
hwinfo_13.0-5_i386.deb
  to pool/main/h/hwinfo/hwinfo_13.0-5_i386.deb
libhd13-dev_13.0-5_i386.deb
  to pool/main/h/hwinfo/libhd13-dev_13.0-5_i386.deb
libhd13_13.0-5_i386.deb
  to pool/main/h/hwinfo/libhd13_13.0-5_i386.deb


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



Accepted plptools 0.15-1 (source i386)

2006-08-20 Thread John Lines
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 07:22:41 +0100
Source: plptools
Binary: klipsi plptools-dev plptools-kde kpsion plptools libplpc2a
Architecture: source i386
Version: 0.15-1
Distribution: unstable
Urgency: low
Maintainer: John Lines [EMAIL PROTECTED]
Changed-By: John Lines [EMAIL PROTECTED]
Description: 
 klipsi - Remote CutPaste for Psion PDA
 kpsion - Backup and Restore of a Psion PDA
 libplpc2a  - Library functions for plptools Psion PDA access functions
 plptools   - Access a Psion PDA over a serial link
 plptools-dev - plptools (development files)
 plptools-kde - KDE integration of plptools
Closes: 341822 365031 371044
Changes: 
 plptools (0.15-1) unstable; urgency=low
 .
   * New upstream release (Closes: #371044)
   * Build with --with-serial=/dev/ttyS0 (Closes: #341822)
   * libplpc2a Replaces plptools =0.14-4 (Closes: #365031)
Files: 
 4ce101cb685bb262eb28c484571574a5 896 otherosfs optional plptools_0.15-1.dsc
 0fc1bf07e93620898a501e54f965b8dd 1277274 otherosfs optional 
plptools_0.15.orig.tar.gz
 9dee6e766a674cfb8da53272dd3aec65 48526 otherosfs optional 
plptools_0.15-1.diff.gz
 2fb488fe84d8a9d0e88d8dd4b3131ff6 221280 otherosfs optional 
plptools_0.15-1_i386.deb
 3ecc3e4963318f057e78db04c3761073 85430 libs optional libplpc2a_0.15-1_i386.deb
 7c09a99b097e0cf2385490916e765d74 269950 devel optional 
plptools-dev_0.15-1_i386.deb
 39c64b1a290838aa0129a5c16436a883 125148 otherosfs optional 
plptools-kde_0.15-1_i386.deb
 3a65d2855da12c93d00ea8118e94d74b 319188 otherosfs optional 
kpsion_0.15-1_i386.deb
 4a7677597ad4d94a670181b73afa9201 39936 otherosfs optional 
klipsi_0.15-1_i386.deb

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

iQCVAwUBROgRv50KIkah3rc9AQKHPgQAmQiFGecAVMfsK52yCFByZkPm8atVEfsO
X8lwMOhAvsjhBsqLYQ11f7YN3hcsEOLfppZMlq4jGlE1eZYni8sBB3TahHwENj2a
4VPXQ/SJHxwOtucR96W7253O0ngO5CeeMzstE4oijt8r2WZaV91lKXdPlVHU78SA
WMMJPglpYWw=
=Swov
-END PGP SIGNATURE-


Accepted:
klipsi_0.15-1_i386.deb
  to pool/main/p/plptools/klipsi_0.15-1_i386.deb
kpsion_0.15-1_i386.deb
  to pool/main/p/plptools/kpsion_0.15-1_i386.deb
libplpc2a_0.15-1_i386.deb
  to pool/main/p/plptools/libplpc2a_0.15-1_i386.deb
plptools-dev_0.15-1_i386.deb
  to pool/main/p/plptools/plptools-dev_0.15-1_i386.deb
plptools-kde_0.15-1_i386.deb
  to pool/main/p/plptools/plptools-kde_0.15-1_i386.deb
plptools_0.15-1.diff.gz
  to pool/main/p/plptools/plptools_0.15-1.diff.gz
plptools_0.15-1.dsc
  to pool/main/p/plptools/plptools_0.15-1.dsc
plptools_0.15-1_i386.deb
  to pool/main/p/plptools/plptools_0.15-1_i386.deb
plptools_0.15.orig.tar.gz
  to pool/main/p/plptools/plptools_0.15.orig.tar.gz


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



Accepted dirmngr 0.9.5-2 (source i386)

2006-08-20 Thread Peter Eisentraut
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 13:56:36 +0200
Source: dirmngr
Binary: dirmngr
Architecture: source i386
Version: 0.9.5-2
Distribution: unstable
Urgency: low
Maintainer: Peter Eisentraut [EMAIL PROTECTED]
Changed-By: Peter Eisentraut [EMAIL PROTECTED]
Description: 
 dirmngr- server for managing certificate revocation lists
Closes: 383764
Changes: 
 dirmngr (0.9.5-2) unstable; urgency=low
 .
   * Build depend against libksba = 0.9.16-1, which contains a corrected
 shlibs file (closes: #383764)
Files: 
 2f2bfbdbc0ccd7558649d2255074d95c 722 utils optional dirmngr_0.9.5-2.dsc
 b632655c2296eb585153d4c07c6f0c6f 8448 utils optional dirmngr_0.9.5-2.diff.gz
 d17adfd647d149319bdf32af04ac32c7 186542 utils optional dirmngr_0.9.5-2_i386.deb

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

iD8DBQFE6FAMTTx8oVVPtMYRAow9AJ44yPiWS3IoW0CJc3hUWu1PSy7B2ACggGMb
NA0ZA+GwBSbl6U0wlJWdU6I=
=WFFG
-END PGP SIGNATURE-


Accepted:
dirmngr_0.9.5-2.diff.gz
  to pool/main/d/dirmngr/dirmngr_0.9.5-2.diff.gz
dirmngr_0.9.5-2.dsc
  to pool/main/d/dirmngr/dirmngr_0.9.5-2.dsc
dirmngr_0.9.5-2_i386.deb
  to pool/main/d/dirmngr/dirmngr_0.9.5-2_i386.deb


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



Accepted bluez-utils 3.1-4 (source all powerpc)

2006-08-20 Thread Filippo Giunchedi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 14:18:19 +0200
Source: bluez-utils
Binary: bluez-pcmcia-support bluetooth bluez-bcm203x bluez-cups bluez-utils
Architecture: source powerpc all
Version: 3.1-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Bluetooth Maintainers [EMAIL PROTECTED]
Changed-By: Filippo Giunchedi [EMAIL PROTECTED]
Description: 
 bluetooth  - Bluetooth stack utilities
 bluez-bcm203x - Firmware loader for Broadcom 203x based Bluetooth devices
 bluez-cups - Bluetooth printer driver for CUPS
 bluez-pcmcia-support - PCMCIA support files for BlueZ 2.0 Bluetooth tools
 bluez-utils - Bluetooth tools and daemons
Closes: 379200 380283 380452 381582 382791 383188 383783
Changes: 
 bluez-utils (3.1-4) unstable; urgency=medium
 .
   * Acknowledge NMU by Marga, this closes: #379200
   * fixed udev rules accordingly with upstream
   * strip trailing \n if found in passkey (also closes: 383188)
   * fix /etc/default/bluetooth in README.Debian (closes: #383783)
   * add dbus to depends: for passkey management while discussing a better
 solution  (closes: #382791, #380283)
   * register_passkeys when doing an initscript restart (closes: 381582)
   * fix register-passkeys shell redirection (closes: #380452)
Files: 
 207d391c8da9507609fba8a3f29540ed 878 admin optional bluez-utils_3.1-4.dsc
 f1af5da279f552a1c0036eb6edd9a443 27907 admin optional bluez-utils_3.1-4.diff.gz
 a0deec959ca662a0e45e5940e9159391 16010 admin optional bluetooth_3.1-4_all.deb
 e771ab2061b4d2ebade2b1b70e32f74a 261870 admin optional 
bluez-utils_3.1-4_powerpc.deb
 0673fe2c0a18ae87cb65d3d07eae7859 17806 admin extra 
bluez-pcmcia-support_3.1-4_powerpc.deb
 e6cec796688a7fe6a324f1267b545787 23254 admin optional 
bluez-cups_3.1-4_powerpc.deb
 a549b53536aa86e45893739d68d1498e 21736 contrib/admin optional 
bluez-bcm203x_3.1-4_powerpc.deb

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

iD8DBQFE6FXXABzeamt51AERAlUTAJ9m6YnGO7hxWBYW2ZXPpD4G6TLN2gCbBbTI
cagJcf9pUywj2IY0HjsXcL0=
=JcvC
-END PGP SIGNATURE-


Accepted:
bluetooth_3.1-4_all.deb
  to pool/main/b/bluez-utils/bluetooth_3.1-4_all.deb
bluez-bcm203x_3.1-4_powerpc.deb
  to pool/contrib/b/bluez-utils/bluez-bcm203x_3.1-4_powerpc.deb
bluez-cups_3.1-4_powerpc.deb
  to pool/main/b/bluez-utils/bluez-cups_3.1-4_powerpc.deb
bluez-pcmcia-support_3.1-4_powerpc.deb
  to pool/main/b/bluez-utils/bluez-pcmcia-support_3.1-4_powerpc.deb
bluez-utils_3.1-4.diff.gz
  to pool/main/b/bluez-utils/bluez-utils_3.1-4.diff.gz
bluez-utils_3.1-4.dsc
  to pool/main/b/bluez-utils/bluez-utils_3.1-4.dsc
bluez-utils_3.1-4_powerpc.deb
  to pool/main/b/bluez-utils/bluez-utils_3.1-4_powerpc.deb


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



Accepted mayavi 1.5-2 (source all)

2006-08-20 Thread A. Maitland Bottoms
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 07:31:18 -0400
Source: mayavi
Binary: mayavi
Architecture: source all
Version: 1.5-2
Distribution: unstable
Urgency: low
Maintainer: A. Maitland Bottoms [EMAIL PROTECTED]
Changed-By: A. Maitland Bottoms [EMAIL PROTECTED]
Description: 
 mayavi - A scientific data visualization system
Changes: 
 mayavi (1.5-2) unstable; urgency=low
 .
   * Update for VTK5 and Python 2.4
Files: 
 bff4d9c548364ba87aee22e399e8c41d 622 science optional mayavi_1.5-2.dsc
 7444c991c9bcafe51254ba2f4be50cc9 5220 science optional mayavi_1.5-2.diff.gz
 76fd0ebbba84c6ac7417cd20e5b7d709 471930 science optional mayavi_1.5-2_all.deb

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

iD8DBQFE6EtrkwbJvNrxBUwRAl8jAJ9BWUY5dyg40nm6QJd7QVuxK6YVqACeJwgG
xb4gYYAbD2xgaFS+wyNFGEc=
=VyBy
-END PGP SIGNATURE-


Accepted:
mayavi_1.5-2.diff.gz
  to pool/main/m/mayavi/mayavi_1.5-2.diff.gz
mayavi_1.5-2.dsc
  to pool/main/m/mayavi/mayavi_1.5-2.dsc
mayavi_1.5-2_all.deb
  to pool/main/m/mayavi/mayavi_1.5-2_all.deb


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



Accepted netbase 4.26 (source all)

2006-08-20 Thread Marco d'Itri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 23:46:17 +0200
Source: netbase
Binary: netbase
Architecture: source all
Version: 4.26
Distribution: unstable
Urgency: medium
Maintainer: Anthony Towns [EMAIL PROTECTED]
Changed-By: Marco d'Itri [EMAIL PROTECTED]
Description: 
 netbase- Basic TCP/IP networking system
Closes: 360880 362094 373735 375370 377788 382687
Changes: 
 netbase (4.26) unstable; urgency=medium
 .
   * Removed the dependency on netkit-inetd. (Closes: #382687)
   * New debconf translation: gl, pt_PT. (Closes: #362094, #373735)
   * etc-services: added webmin (1/tcp), mdns (5353), sysrqd (4094).
 (Closes: #360880, #375370, #377788)
Files: 
 ad30a8ab548a21e9920eaae385f3071c 633 admin important netbase_4.26.dsc
 d42622f4a886069d476bbe18efbc6aea 62184 admin important netbase_4.26.tar.gz
 4a92d3bc499ec52d32afecf5c85d6c36 44280 admin important netbase_4.26_all.deb

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

iD8DBQFE54s2FGfw2OHuP7ERAttnAJ99r7IvrRFDrvICmwEOsf4+N4erhwCdH7nU
RwYEWKOvsdCiPz49Oo9S72c=
=z9jM
-END PGP SIGNATURE-


Accepted:
netbase_4.26.dsc
  to pool/main/n/netbase/netbase_4.26.dsc
netbase_4.26.tar.gz
  to pool/main/n/netbase/netbase_4.26.tar.gz
netbase_4.26_all.deb
  to pool/main/n/netbase/netbase_4.26_all.deb


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



Accepted udev 0.097-2 (source i386)

2006-08-20 Thread Marco d'Itri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 23:17:17 +0200
Source: udev
Binary: libvolume-id-dev udev libvolume-id0 udev-udeb
Architecture: source i386
Version: 0.097-2
Distribution: unstable
Urgency: medium
Maintainer: Marco d'Itri [EMAIL PROTECTED]
Changed-By: Marco d'Itri [EMAIL PROTECTED]
Description: 
 libvolume-id-dev - libvolume_id development headers
 libvolume-id0 - libvolume_id shared library
 udev   - /dev/ and hotplug management daemon
 udev-udeb  - /dev/ and hotplug management daemon (udeb)
Closes: 383555 383828
Changes: 
 udev (0.097-2) unstable; urgency=medium
 .
   * Suppressed more error messages about missing users/groups.
   * Added a temporary conflict with broken versions of klibc-utils.
 (Closes: #383555)
   * Do not start udevd on upgrades if it's not supported. (Closes: #383828)
   * permission.rules: added Epson SCSI scanners with group scanner.
Files: 
 e4ee8025bf5e16f9af6d216e1e262939 623 admin important udev_0.097-2.dsc
 099977719fb710a2940c6f9fc603b05f 49740 admin important udev_0.097-2.diff.gz
 66165b8582026814ada18ef3a225f30a 256928 admin important udev_0.097-2_i386.deb
 202a5263e11b51240dd5ad5124dee186 57642 libs important 
libvolume-id0_0.097-2_i386.deb
 be2a1e845a719bd343550e3f9162ebd1 15100 libdevel optional 
libvolume-id-dev_0.097-2_i386.deb
 fe1e6bfe36a421dd7d9fcd0781f7bf4b 77338 debian-installer important 
udev-udeb_0.097-2_i386.udeb
Package-Type: udeb

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

iD8DBQFE54YKFGfw2OHuP7ERAp6vAKCD5qF50Jwpzq6WBm1w25sMNpRy/ACggZZ6
fVRpFoYxn4tbxX9LAQJr9nE=
=rPBk
-END PGP SIGNATURE-


Accepted:
libvolume-id-dev_0.097-2_i386.deb
  to pool/main/u/udev/libvolume-id-dev_0.097-2_i386.deb
libvolume-id0_0.097-2_i386.deb
  to pool/main/u/udev/libvolume-id0_0.097-2_i386.deb
udev-udeb_0.097-2_i386.udeb
  to pool/main/u/udev/udev-udeb_0.097-2_i386.udeb
udev_0.097-2.diff.gz
  to pool/main/u/udev/udev_0.097-2.diff.gz
udev_0.097-2.dsc
  to pool/main/u/udev/udev_0.097-2.dsc
udev_0.097-2_i386.deb
  to pool/main/u/udev/udev_0.097-2_i386.deb


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



Accepted tin 1:1.9.2+20060621-1 (source i386)

2006-08-20 Thread Marco d'Itri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 00:24:02 +0200
Source: tin
Binary: tin
Architecture: source i386
Version: 1:1.9.2+20060621-1
Distribution: unstable
Urgency: low
Maintainer: Marco d'Itri [EMAIL PROTECTED]
Changed-By: Marco d'Itri [EMAIL PROTECTED]
Description: 
 tin- A full-screen easy to use Usenet newsreader
Closes: 374462 381370
Changes: 
 tin (1:1.9.2+20060621-1) unstable; urgency=low
 .
   * New upstream snapshot.
 + Fixes generation of by-Message-ID filters. (Closes: #374462)
   * New debconf translation: po. (Closes: #381370)
Files: 
 478dd10695d785be9b78a7fd502fcc12 649 news optional tin_1.9.2+20060621-1.dsc
 d07a31ecdce12fb765560f4a24c9611f 1406840 news optional 
tin_1.9.2+20060621.orig.tar.gz
 c5d5dc32a7275aa688c8137a6c74510c 15162 news optional 
tin_1.9.2+20060621-1.diff.gz
 27ee9c5bdbaa56ca6d8ab24bdb0da402 662264 news optional 
tin_1.9.2+20060621-1_i386.deb

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

iD8DBQFE55NZFGfw2OHuP7ERAlNrAJ98DbrV4sF+X5b03kGZGWK9b9br7wCbBKCO
fX4ArlAiPbO4Gp4X0HWegdI=
=gLO9
-END PGP SIGNATURE-


Accepted:
tin_1.9.2+20060621-1.diff.gz
  to pool/main/t/tin/tin_1.9.2+20060621-1.diff.gz
tin_1.9.2+20060621-1.dsc
  to pool/main/t/tin/tin_1.9.2+20060621-1.dsc
tin_1.9.2+20060621-1_i386.deb
  to pool/main/t/tin/tin_1.9.2+20060621-1_i386.deb
tin_1.9.2+20060621.orig.tar.gz
  to pool/main/t/tin/tin_1.9.2+20060621.orig.tar.gz


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



Accepted inn 1:1.7.2debian-31 (source i386)

2006-08-20 Thread Marco d'Itri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 18 Aug 2006 18:46:30 +0200
Source: inn
Binary: inn
Architecture: source i386
Version: 1:1.7.2debian-31
Distribution: unstable
Urgency: medium
Maintainer: Marco d'Itri [EMAIL PROTECTED]
Changed-By: Marco d'Itri [EMAIL PROTECTED]
Description: 
 inn- News transport system `InterNetNews' by the ISC and Rich Salz
Changes: 
 inn (1:1.7.2debian-31) unstable; urgency=medium
 .
   * Create /var/run/news in the init script if it does not exist.
   * New patch posix_arguments: makes innstat use tail -n.
   * Updated control.ctl.
Files: 
 e0f8c11aa8c3726040fe1ae62eb1efc8 608 news extra inn_1.7.2debian-31.dsc
 e7a9f9e9c5a94d49eb7093d1f107e267 177061 news extra inn_1.7.2debian-31.diff.gz
 d1b765d1428882d4301ed0d872458c92 817494 news extra inn_1.7.2debian-31_i386.deb

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

iD8DBQFE6GHZFGfw2OHuP7ERAlJoAJ95Clxiibkgw5L6LNhOLBetZ4LmAwCfadUY
ud6x2KJqD+Ox/dBSuLXrxjs=
=rLjH
-END PGP SIGNATURE-


Accepted:
inn_1.7.2debian-31.diff.gz
  to pool/main/i/inn/inn_1.7.2debian-31.diff.gz
inn_1.7.2debian-31.dsc
  to pool/main/i/inn/inn_1.7.2debian-31.dsc
inn_1.7.2debian-31_i386.deb
  to pool/main/i/inn/inn_1.7.2debian-31_i386.deb


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



Accepted quodlibet 0.23-1 (source all amd64)

2006-08-20 Thread Tristan Seligmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 18 Aug 2006 01:30:25 +0200
Source: quodlibet
Binary: quodlibet exfalso quodlibet-ext
Architecture: source amd64 all
Version: 0.23-1
Distribution: unstable
Urgency: low
Maintainer: Tristan Seligmann [EMAIL PROTECTED]
Changed-By: Tristan Seligmann [EMAIL PROTECTED]
Description: 
 exfalso- audio tag editor for GTK+
 quodlibet  - audio library manager and player for GTK+
 quodlibet-ext - extensions for the Quod Libet audio player
Closes: 367221 381393
Changes: 
 quodlibet (0.23-1) unstable; urgency=low
 .
   * New upstream release.
 - Version number is correct (closes: #381393).
   * Change dependencies to use python2.4-foo, as we are using a non-default
 python version (closes: #367221).
Files: 
 9002afd04952514d746aff7aef5179b5 775 sound optional quodlibet_0.23-1.dsc
 195c39433b4e2a5bf930af7570b61f3e 551773 sound optional 
quodlibet_0.23.orig.tar.gz
 ae3bc8575a248ab1accd50c3cb81c701 6766 sound optional quodlibet_0.23-1.diff.gz
 079823663f545409b9248fd922723318 458650 sound optional exfalso_0.23-1_all.deb
 b1e49e3c442764a2336f8687607e2e73 30970 sound optional quodlibet_0.23-1_all.deb
 f2507509fd73f992e6f048f9a695ac0d 24860 sound optional 
quodlibet-ext_0.23-1_amd64.deb

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

iD8DBQFE6GHTvJtHM4T7RtYRAspKAKCGPzuFUb0Fu52z2ptqmGaT1xT6FwCgq+WU
Dp57dcjV+6buNPm9xL/gBU0=
=k/Ri
-END PGP SIGNATURE-


Accepted:
exfalso_0.23-1_all.deb
  to pool/main/q/quodlibet/exfalso_0.23-1_all.deb
quodlibet-ext_0.23-1_amd64.deb
  to pool/main/q/quodlibet/quodlibet-ext_0.23-1_amd64.deb
quodlibet_0.23-1.diff.gz
  to pool/main/q/quodlibet/quodlibet_0.23-1.diff.gz
quodlibet_0.23-1.dsc
  to pool/main/q/quodlibet/quodlibet_0.23-1.dsc
quodlibet_0.23-1_all.deb
  to pool/main/q/quodlibet/quodlibet_0.23-1_all.deb
quodlibet_0.23.orig.tar.gz
  to pool/main/q/quodlibet/quodlibet_0.23.orig.tar.gz


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



Accepted hddtemp 0.3-beta15-25 (source amd64)

2006-08-20 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 15:00:15 +0200
Source: hddtemp
Binary: hddtemp
Architecture: source amd64
Version: 0.3-beta15-25
Distribution: unstable
Urgency: low
Maintainer: Aurelien Jarno [EMAIL PROTECTED]
Changed-By: Aurelien Jarno [EMAIL PROTECTED]
Description: 
 hddtemp- Utility to monitor the temperature of your hard drive
Closes: 383692
Changes: 
 hddtemp (0.3-beta15-25) unstable; urgency=low
 .
   * Added support for WD1200JD-00FYB0 (closes: bug#383692).
Files: 
 775c54fdb1a234408ff988389cf841be 618 utils extra hddtemp_0.3-beta15-25.dsc
 ad8b205f60da427cf44540262873b918 37887 utils extra 
hddtemp_0.3-beta15-25.diff.gz
 4494096adb781bbd49f17ea637e009cc 51222 utils extra 
hddtemp_0.3-beta15-25_amd64.deb

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

iD8DBQFE6GCWw3ao2vG823MRAj/sAKCPE0tLNUBfuie7ZO1qbpnLgyoXgQCdHMON
9lXRUoA369Y8rqfE5dDhFkE=
=0/yh
-END PGP SIGNATURE-


Accepted:
hddtemp_0.3-beta15-25.diff.gz
  to pool/main/h/hddtemp/hddtemp_0.3-beta15-25.diff.gz
hddtemp_0.3-beta15-25.dsc
  to pool/main/h/hddtemp/hddtemp_0.3-beta15-25.dsc
hddtemp_0.3-beta15-25_amd64.deb
  to pool/main/h/hddtemp/hddtemp_0.3-beta15-25_amd64.deb


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



Accepted gnubiff 2.2.2-1 (source i386)

2006-08-20 Thread Roland Stigge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 15:14:07 +0200
Source: gnubiff
Binary: gnubiff
Architecture: source i386
Version: 2.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Roland Stigge [EMAIL PROTECTED]
Changed-By: Roland Stigge [EMAIL PROTECTED]
Description: 
 gnubiff- A mail notification program for GNOME (and others)
Changes: 
 gnubiff (2.2.2-1) unstable; urgency=low
 .
   * New upstream release
Files: 
 368cec327921de26b3805102c03d2a4c 708 mail optional gnubiff_2.2.2-1.dsc
 54e026ed12571350dcf8965a090dfa45 812648 mail optional gnubiff_2.2.2.orig.tar.gz
 a91e34f7737e903497f697c7ba83d3cf 4700 mail optional gnubiff_2.2.2-1.diff.gz
 6efa6e76728502a8cb7f0ef13215fa98 510062 mail optional gnubiff_2.2.2-1_i386.deb

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

iD8DBQFE6GklcaH/YBv43g8RArBGAJ9cVLoi/zN2u/gv3lo/WWvvRpIbcwCeMVEZ
ys9M0aFWfKy7gg+CwqFNHhs=
=kr3T
-END PGP SIGNATURE-


Accepted:
gnubiff_2.2.2-1.diff.gz
  to pool/main/g/gnubiff/gnubiff_2.2.2-1.diff.gz
gnubiff_2.2.2-1.dsc
  to pool/main/g/gnubiff/gnubiff_2.2.2-1.dsc
gnubiff_2.2.2-1_i386.deb
  to pool/main/g/gnubiff/gnubiff_2.2.2-1_i386.deb
gnubiff_2.2.2.orig.tar.gz
  to pool/main/g/gnubiff/gnubiff_2.2.2.orig.tar.gz


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



Accepted linux-wlan-ng 0.2.4+svn20060808-2 (source all amd64)

2006-08-20 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 15:39:27 +0200
Source: linux-wlan-ng
Binary: linux-wlan-ng-firmware linux-wlan-ng-doc linux-wlan-ng-source 
linux-wlan-ng
Architecture: source all amd64
Version: 0.2.4+svn20060808-2
Distribution: unstable
Urgency: low
Maintainer: Victor Seva [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 linux-wlan-ng - utilities for wireless prism2 cards
 linux-wlan-ng-doc - documentation for wlan-ng
 linux-wlan-ng-firmware - firmware files used by the linux-wlan-ng driver
 linux-wlan-ng-source - linux-wlan-ng driver
Changes: 
 linux-wlan-ng (0.2.4+svn20060808-2) unstable; urgency=low
 .
   * removed udev rules, since ifup is called automatically bu wlan.agent
 (Thanks Marco d'Itri for reporting this bug)
Files: 
 5359ba95dbcfd96b38e7d1952f2e 762 admin extra 
linux-wlan-ng_0.2.4+svn20060808-2.dsc
 8c0ca18a23f1c946438e27b65863e886 41132 admin extra 
linux-wlan-ng_0.2.4+svn20060808-2.diff.gz
 d875e10f0d137de50927aa7ef565ec3c 462540 admin extra 
linux-wlan-ng-source_0.2.4+svn20060808-2_all.deb
 867dcd6087daf1a80c1d073bcfd6a5e3 83546 admin extra 
linux-wlan-ng-doc_0.2.4+svn20060808-2_all.deb
 ead42934bfd64b39d2e7886dee171252 46252 contrib/admin extra 
linux-wlan-ng-firmware_0.2.4+svn20060808-2_all.deb
 296c1885a4103bea9a3e75be514970cd 123240 admin extra 
linux-wlan-ng_0.2.4+svn20060808-2_amd64.deb

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

iD8DBQFE6GrD7kkcPgEj8vIRAmIVAKClQsVJ1067y9QrCUf9jN3BKJaoPACfQPgo
0vqUu4/JjjJYLll5xvLo1qk=
=eni/
-END PGP SIGNATURE-


Accepted:
linux-wlan-ng-doc_0.2.4+svn20060808-2_all.deb
  to pool/main/l/linux-wlan-ng/linux-wlan-ng-doc_0.2.4+svn20060808-2_all.deb
linux-wlan-ng-firmware_0.2.4+svn20060808-2_all.deb
  to 
pool/contrib/l/linux-wlan-ng/linux-wlan-ng-firmware_0.2.4+svn20060808-2_all.deb
linux-wlan-ng-source_0.2.4+svn20060808-2_all.deb
  to pool/main/l/linux-wlan-ng/linux-wlan-ng-source_0.2.4+svn20060808-2_all.deb
linux-wlan-ng_0.2.4+svn20060808-2.diff.gz
  to pool/main/l/linux-wlan-ng/linux-wlan-ng_0.2.4+svn20060808-2.diff.gz
linux-wlan-ng_0.2.4+svn20060808-2.dsc
  to pool/main/l/linux-wlan-ng/linux-wlan-ng_0.2.4+svn20060808-2.dsc
linux-wlan-ng_0.2.4+svn20060808-2_amd64.deb
  to pool/main/l/linux-wlan-ng/linux-wlan-ng_0.2.4+svn20060808-2_amd64.deb


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



Accepted grub2 1.94-5 (source i386)

2006-08-20 Thread Otavio Salvador
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 12:02:13 -0300
Source: grub2
Binary: grub2
Architecture: source i386
Version: 1.94-5
Distribution: unstable
Urgency: low
Maintainer: GRUB Maintainers [EMAIL PROTECTED]
Changed-By: Otavio Salvador [EMAIL PROTECTED]
Description: 
 grub2  - The next generation of GNU GRUB [EXPERIMENTAL]
Closes: 372934
Changes: 
 grub2 (1.94-5) unstable; urgency=low
 .
   [ Robert Millan ]
   * control (Build-Depends): s/any-amd64/amd64 kfreebsd-amd64/g (this seems to
 confuse buildds).
   * 02_not_remove_menu_lst.patch: New patch.  Skip menu.lst removal in
 grub-install.  (Closes: #372934)
Files: 
 d225558a2f20f9bed22572b2b90d211b 868 admin extra grub2_1.94-5.dsc
 e3a2a1cceb9ecc64d3701a5825b97602 15150 admin extra grub2_1.94-5.diff.gz
 c53865767c6b04f87312f236ce753159 325672 admin extra grub2_1.94-5_i386.deb

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

iD8DBQFE6HoALqiZQEml+FURAjOrAJwK5Mn9X73GiwxEd8Z52yQBQGai/gCcCgDG
xzbjPLcTxWSuWj5TMyp5ycs=
=CYK/
-END PGP SIGNATURE-


Accepted:
grub2_1.94-5.diff.gz
  to pool/main/g/grub2/grub2_1.94-5.diff.gz
grub2_1.94-5.dsc
  to pool/main/g/grub2/grub2_1.94-5.dsc
grub2_1.94-5_i386.deb
  to pool/main/g/grub2/grub2_1.94-5_i386.deb


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



Accepted qgo 1.5.1-1 (source i386)

2006-08-20 Thread Cyril Chaboisseau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 13 Jul 2006 19:45:05 +0200
Source: qgo
Binary: qgo
Architecture: source i386
Version: 1.5.1-1
Distribution: unstable
Urgency: low
Maintainer: Cyril Chaboisseau [EMAIL PROTECTED]
Changed-By: Cyril Chaboisseau [EMAIL PROTECTED]
Description: 
 qgo- Go client and full featured SGF editor
Closes: 375203 381919
Changes: 
 qgo (1.5.1-1) unstable; urgency=low
 .
   * New upstream release (closes: #381919)
   * forgot to change standards-version in control
   * patch from upstream CVS to fix segfault (closes: #375203)
Files: 
 d22917cf8463a15f1cf69d648aa0b67d 652 games optional qgo_1.5.1-1.dsc
 aded67db7be34129a531bd9c310d32bd 2335443 games optional qgo_1.5.1.orig.tar.gz
 9cc89833d928d6d3340fd497f6348a32 24184 games optional qgo_1.5.1-1.diff.gz
 6952e8451dee90d33409bf55c8aa700e 1681122 games optional qgo_1.5.1-1_i386.deb

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

iD8DBQFE6HiIlAuUx1tI/64RAqOrAJwLzpsZQThGMSf7rf4iLU6i/DM55wCfScnw
kS0QcmElKdLGqL8gv9KYOWA=
=HFrY
-END PGP SIGNATURE-


Accepted:
qgo_1.5.1-1.diff.gz
  to pool/main/q/qgo/qgo_1.5.1-1.diff.gz
qgo_1.5.1-1.dsc
  to pool/main/q/qgo/qgo_1.5.1-1.dsc
qgo_1.5.1-1_i386.deb
  to pool/main/q/qgo/qgo_1.5.1-1_i386.deb
qgo_1.5.1.orig.tar.gz
  to pool/main/q/qgo/qgo_1.5.1.orig.tar.gz


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



Accepted wipl 20020601-11.1 (source all powerpc)

2006-08-20 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 16:09:06 +0100
Source: wipl
Binary: wipl-client-exec wipl-daemon wipl-client-standard wipl-client-java 
wipl-client-inetd
Architecture: source powerpc all
Version: 20020601-11.1
Distribution: unstable
Urgency: low
Maintainer: Carlo Contavalli [EMAIL PROTECTED]
Changed-By: Roger Leigh [EMAIL PROTECTED]
Description: 
 wipl-client-exec - A client for wipl-daemon able to modify the available 
counters
 wipl-client-inetd - A client for wipl-daemon, run from inetd
 wipl-client-java - A client for wipl-daemon, usable through a web interface
 wipl-client-standard - The standard client for wipl-daemon to display 
statistics
 wipl-daemon - A daemon to maintain statistics on network usage
Changes: 
 wipl (20020601-11.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/control: wipl-client-inetd: Remove netkit-inetd dependency.  The
 inetd dependency is provided via the existing netbase dependency.
Files: 
 35f2641f2a6d315af636171d696e9c95 695 net optional wipl_20020601-11.1.dsc
 76ca33cc338d179c67492a6b294f3885 74505 net optional wipl_20020601-11.1.diff.gz
 6b8d31fed69389a402a495b5c2bd5b2f 54366 net optional 
wipl-daemon_20020601-11.1_powerpc.deb
 d6a3812934f20fe7e58aed9c50d9077f 32294 net optional 
wipl-client-exec_20020601-11.1_powerpc.deb
 1648b2ffe2b96ffd821e4dc77c979914 45384 net optional 
wipl-client-standard_20020601-11.1_powerpc.deb
 7425e2be9e7efe21dec80bbce0c98f8f 18090 net optional 
wipl-client-inetd_20020601-11.1_powerpc.deb
 0c50e5100c624a0baf21c6ac163eb21c 19154 net optional 
wipl-client-java_20020601-11.1_all.deb

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

iD8DBQFE6H3GVcFcaSW/uEgRAtmpAJ9PA18/FJ+ywgvepQjIM+YFrlBeJACgjfiM
YXENJ1e8iMchxSACHXCyKxc=
=M4Li
-END PGP SIGNATURE-


Accepted:
wipl-client-exec_20020601-11.1_powerpc.deb
  to pool/main/w/wipl/wipl-client-exec_20020601-11.1_powerpc.deb
wipl-client-inetd_20020601-11.1_powerpc.deb
  to pool/main/w/wipl/wipl-client-inetd_20020601-11.1_powerpc.deb
wipl-client-java_20020601-11.1_all.deb
  to pool/main/w/wipl/wipl-client-java_20020601-11.1_all.deb
wipl-client-standard_20020601-11.1_powerpc.deb
  to pool/main/w/wipl/wipl-client-standard_20020601-11.1_powerpc.deb
wipl-daemon_20020601-11.1_powerpc.deb
  to pool/main/w/wipl/wipl-daemon_20020601-11.1_powerpc.deb
wipl_20020601-11.1.diff.gz
  to pool/main/w/wipl/wipl_20020601-11.1.diff.gz
wipl_20020601-11.1.dsc
  to pool/main/w/wipl/wipl_20020601-11.1.dsc


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



Accepted lukemftpd 1.1-2.3 (source powerpc)

2006-08-20 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 16:33:19 +0100
Source: lukemftpd
Binary: lukemftpd
Architecture: source powerpc
Version: 1.1-2.3
Distribution: unstable
Urgency: low
Maintainer: Takuo KITAME [EMAIL PROTECTED]
Changed-By: Roger Leigh [EMAIL PROTECTED]
Description: 
 lukemftpd  - The enhanced ftp daemon from NetBSD.
Closes: 382680
Changes: 
 lukemftpd (1.1-2.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/control: Replace netkit-inetd dependency with a dependency on
 netbase.  netbase provides the necessary inetd dependency.
 Closes: #382680.
Files: 
 83fdebb2b3684394d2c746af2ba1ef0c 581 net optional lukemftpd_1.1-2.3.dsc
 06d78020cf8415835bb09de1f8d43792 21597 net optional lukemftpd_1.1-2.3.diff.gz
 2737114fdf5a6cc53260b067b8a1b144 81454 net optional 
lukemftpd_1.1-2.3_powerpc.deb

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

iD8DBQFE6IQ/VcFcaSW/uEgRAn9PAJ99cS/08yQQvs6r/ScgZxcuRN72sgCg19CF
7NyAcGlSL6XH9ag7BJetXJY=
=wuB8
-END PGP SIGNATURE-


Accepted:
lukemftpd_1.1-2.3.diff.gz
  to pool/main/l/lukemftpd/lukemftpd_1.1-2.3.diff.gz
lukemftpd_1.1-2.3.dsc
  to pool/main/l/lukemftpd/lukemftpd_1.1-2.3.dsc
lukemftpd_1.1-2.3_powerpc.deb
  to pool/main/l/lukemftpd/lukemftpd_1.1-2.3_powerpc.deb


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



Accepted ocaml-http 0.1.3-1 (source i386)

2006-08-20 Thread Stefano Zacchiroli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 18:07:41 +0200
Source: ocaml-http
Binary: libhttp-ocaml-dev
Architecture: source i386
Version: 0.1.3-1
Distribution: unstable
Urgency: low
Maintainer: Stefano Zacchiroli [EMAIL PROTECTED]
Changed-By: Stefano Zacchiroli [EMAIL PROTECTED]
Description: 
 libhttp-ocaml-dev - OCaml library for writing HTTP servers
Closes: 381915
Changes: 
 ocaml-http (0.1.3-1) unstable; urgency=low
 .
   * force bash as SHELL in Makefile, since we rely on bashisms
 (closes: bug#381915)
   * removed Http_daemon.{start,start'}, they have been deprecated a while ago
 in favour of Http_daemon.main
   * added 'auto_close' to daemon specifications. When set to true (defaults to
 false), makes ocaml-http close every connection with client just after
 having executed a callback, no matter if that callback succeeds or fails
 with an exception
Files: 
 c270f9fa8dd8f3d13e5ab29d1d361fa9 634 devel optional ocaml-http_0.1.3-1.dsc
 57e34dbb7c0e7498ece49c06f54b5a84 140923 devel optional 
ocaml-http_0.1.3-1.tar.gz
 e0b450cb1a2de540f9ae73bcc92b40a9 269014 devel optional 
libhttp-ocaml-dev_0.1.3-1_i386.deb

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

iD8DBQFE6Inn1cqbBPLEI7wRAlUwAJ9jO6l/bpNefpDOTVPaqiwsB0dGDQCgkkJf
qH81JM35njybfDpfGpFp6NA=
=+IX3
-END PGP SIGNATURE-


Accepted:
libhttp-ocaml-dev_0.1.3-1_i386.deb
  to pool/main/o/ocaml-http/libhttp-ocaml-dev_0.1.3-1_i386.deb
ocaml-http_0.1.3-1.dsc
  to pool/main/o/ocaml-http/ocaml-http_0.1.3-1.dsc
ocaml-http_0.1.3-1.tar.gz
  to pool/main/o/ocaml-http/ocaml-http_0.1.3-1.tar.gz


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



Accepted qbrew 0.3.9-1 (source i386)

2006-08-20 Thread Tobias Toedter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 12:43:17 +0200
Source: qbrew
Binary: qbrew
Architecture: source i386
Version: 0.3.9-1
Distribution: unstable
Urgency: low
Maintainer: Tobias Toedter [EMAIL PROTECTED]
Changed-By: Tobias Toedter [EMAIL PROTECTED]
Description: 
 qbrew  - Homebrewer's recipe calculator (uses Qt)
Closes: 343910
Changes: 
 qbrew (0.3.9-1) unstable; urgency=low
 .
   * New upstream release
 - Code has been rewritten to work with Qt 4
 - The Database Tool uses a new Qt view class, the segfault which
   existed in the Qt 3 version is no longer present. Closes: #343910
   * patches/ directory
 - All former code changes are integrated or obsolete after the
   upstream rewrite
 - The library linking is done much smarter now, so that the stripping
   of unneeded libraries (introduced in the previous upload) is no
   longer necessary.
 - New patch to drop a build dependency on libqt4-debug-dev
 - New patch to install the handbook and primer HTML files in a
   proper location
 - New patch to fix a typo in the copyright dialog box
   * Build-Depends on quilt to manage the patches
   * Remove Build-Depends on autotools-dev. The build system uses qmake,
 which does not need config.sub and config.guess.
   * Add new file install which is used to copy the qbrew handbook and
 brewing primer to the appropriate locations
   * Register the brewing primer with doc-base
   * Update Standards-Version to 3.7.2, no changes needed
Files: 
 4dd3a9abd9b52479ebb1b513ae18750a 573 x11 extra qbrew_0.3.9-1.dsc
 adfa96abb1e720cfcfdca197ac88d3de 243934 x11 extra qbrew_0.3.9.orig.tar.gz
 cb40e114966acd79b5e069a2d2be585a 9570 x11 extra qbrew_0.3.9-1.diff.gz
 83c4534565e14219c70ea67f6748f0d8 403296 x11 extra qbrew_0.3.9-1_i386.deb

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

iD8DBQFE6JB0pdwBkPlyvgMRAluhAJwKWM1kr2OOBIZjh9v62qJjd7WrIgCfWUNu
yYTbL2MKkLAvoRbg3KlqJNM=
=IZXH
-END PGP SIGNATURE-


Accepted:
qbrew_0.3.9-1.diff.gz
  to pool/main/q/qbrew/qbrew_0.3.9-1.diff.gz
qbrew_0.3.9-1.dsc
  to pool/main/q/qbrew/qbrew_0.3.9-1.dsc
qbrew_0.3.9-1_i386.deb
  to pool/main/q/qbrew/qbrew_0.3.9-1_i386.deb
qbrew_0.3.9.orig.tar.gz
  to pool/main/q/qbrew/qbrew_0.3.9.orig.tar.gz


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



Accepted bitlbee 1.0.3-1.1 (source powerpc)

2006-08-20 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 17:07:02 +0100
Source: bitlbee
Binary: bitlbee
Architecture: source powerpc
Version: 1.0.3-1.1
Distribution: unstable
Urgency: low
Maintainer: Wilmer van der Gaast [EMAIL PROTECTED]
Changed-By: Roger Leigh [EMAIL PROTECTED]
Description: 
 bitlbee- An IRC to other chat networks gateway
Closes: 382682
Changes: 
 bitlbee (1.0.3-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/control: Replace netkit-inetd dependency with a versioned
 dependency on netbase.  netbase provides the appropriate inetd
 dependency.  Closes: #382682.
Files: 
 e6166f6f588212eea930739652ffe93e 653 net optional bitlbee_1.0.3-1.1.dsc
 1d35f97c3de158af42b20bb221cf74c0 26417 net optional bitlbee_1.0.3-1.1.diff.gz
 ff0c41fcaf33c736738fc28b566177c5 324692 net optional 
bitlbee_1.0.3-1.1_powerpc.deb

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

iD8DBQFE6IrbVcFcaSW/uEgRAmk4AKCjp8T52+dU3j0fVWFIxoI5oxn3PwCg8SjS
U1hhAq6QpugeAbPcxuq65qo=
=xgFw
-END PGP SIGNATURE-


Accepted:
bitlbee_1.0.3-1.1.diff.gz
  to pool/main/b/bitlbee/bitlbee_1.0.3-1.1.diff.gz
bitlbee_1.0.3-1.1.dsc
  to pool/main/b/bitlbee/bitlbee_1.0.3-1.1.dsc
bitlbee_1.0.3-1.1_powerpc.deb
  to pool/main/b/bitlbee/bitlbee_1.0.3-1.1_powerpc.deb


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



Accepted openjade 1.4devel1-17 (source i386)

2006-08-20 Thread Neil Roeth
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 13:18:11 -0400
Source: openjade
Binary: libostyle-dev libostyle1c2 openjade
Architecture: source i386
Version: 1.4devel1-17
Distribution: unstable
Urgency: low
Maintainer: Neil Roeth [EMAIL PROTECTED]
Changed-By: Neil Roeth [EMAIL PROTECTED]
Description: 
 libostyle-dev - OpenJade libraries, developer support
 libostyle1c2 - Runtime libraries for OpenJade
 openjade   - Implementation of the DSSSL language
Closes: 383772
Changes: 
 openjade (1.4devel1-17) unstable; urgency=low
 .
   * debian/rules: Fix FTBFS, thanks to Julien Danjou (closes: #383772)
Files: 
 9921e35d63299f04c94eb98eb8cb5ec7 673 text optional openjade_1.4devel1-17.dsc
 528a78d9abadbf722a0e878b8a4d73fd 648601 text optional 
openjade_1.4devel1-17.diff.gz
 ea2ffa2220d885b579e486905066080c 344152 text optional 
openjade_1.4devel1-17_i386.deb
 a4a2c422266048e32d34767b71f23c14 786898 libs optional 
libostyle1c2_1.4devel1-17_i386.deb
 053f1072ac2eb6649b43dfeda4e79e53 1030064 libdevel optional 
libostyle-dev_1.4devel1-17_i386.deb

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

iD8DBQFE6EZD6j+skPrutKkRAgo0AJ96wTQK4w0PIO5rvue/BTa2DHhMbgCguV1m
XaXu9B+djOmAuokdmZYCCxw=
=9Stb
-END PGP SIGNATURE-


Accepted:
libostyle-dev_1.4devel1-17_i386.deb
  to pool/main/o/openjade/libostyle-dev_1.4devel1-17_i386.deb
libostyle1c2_1.4devel1-17_i386.deb
  to pool/main/o/openjade/libostyle1c2_1.4devel1-17_i386.deb
openjade_1.4devel1-17.diff.gz
  to pool/main/o/openjade/openjade_1.4devel1-17.diff.gz
openjade_1.4devel1-17.dsc
  to pool/main/o/openjade/openjade_1.4devel1-17.dsc
openjade_1.4devel1-17_i386.deb
  to pool/main/o/openjade/openjade_1.4devel1-17_i386.deb


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



Accepted slang-slirp 1.9.0-1-4 (source i386)

2006-08-20 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 16:56:46 +0200
Source: slang-slirp
Binary: slang-slirp
Architecture: source i386
Version: 1.9.0-1-4
Distribution: unstable
Urgency: low
Maintainer: Debian JED Group [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 slang-slirp - C code generator for the S-Lang scripting language
Changes: 
 slang-slirp (1.9.0-1-4) unstable; urgency=low
 .
   * debian/patches/debug-#383777.patch: Let make test produce verbose
 output, hoping to get some clue why Bug#383777 fails on the amd64
 autobuilder.
Files: 
 42a9aecaf4aa43974b125ee28cd9d780 726 interpreters optional 
slang-slirp_1.9.0-1-4.dsc
 b6f297d39256828a924f0b20065f2e54 3855 interpreters optional 
slang-slirp_1.9.0-1-4.diff.gz
 541df045fe4f9ec43a1237411efa8057 234738 interpreters optional 
slang-slirp_1.9.0-1-4_i386.deb

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

iD8DBQFE6JGTk3oga0pdcv4RApG4AKCIusZFskvM+Ci1D0Ibl6DIf8Th9ACfbcps
Qxqo6aRVdjuKLlKttemQvy8=
=eO3i
-END PGP SIGNATURE-


Accepted:
slang-slirp_1.9.0-1-4.diff.gz
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-4.diff.gz
slang-slirp_1.9.0-1-4.dsc
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-4.dsc
slang-slirp_1.9.0-1-4_i386.deb
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-4_i386.deb


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



Accepted apt-listchanges 2.62~experimental1 (source all)

2006-08-20 Thread Pierre Habouzit
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 19:10:25 +0200
Source: apt-listchanges
Binary: apt-listchanges
Architecture: source all
Version: 2.62~experimental1
Distribution: experimental
Urgency: low
Maintainer: Pierre Habouzit [EMAIL PROTECTED]
Changed-By: Pierre Habouzit [EMAIL PROTECTED]
Description: 
 apt-listchanges - Display change history from .deb archives
Closes: 199318 215045 238203 294420 309262 309470 318581 346053 362896 382537 
382600
Changes: 
 apt-listchanges (2.62~experimental1) experimental; urgency=low
 .
   * Experimental upload as there is quite many changes, and that I'm waiting
 for more translations to come in.
 .
   * debian/templates, use Christian Perrier's patch to make templates more
 compliant to usual practices (Closes: #346053).
 + update sv.po thanks to Daniel Nylander.
 + addpt.po thanks to Rui Pedro.
 + update fi.po thanks to Tommi Vainikainen.
 + update da.po thanks to Claus Hindsgaul (Closes: #382537).
 + update ja.po thanks to Kenshi Muto (Closes: #382600).
 + update vi.po thanks to Clytie Siddall.
 + update de.po thanks to Helge Kreutzmann.
 + update es.po thanks to Ricardo Mones.
 + update zh_TW.po thanks to Asho Yeh.
 .
   * Encoding problems:
 + Switch to python2.4 to use lgettext instead of gettext
   (Closes: #238203, #309470, #318581).
 + Use current locale to display the changelogs, based on a patch from
   Michael Piefel (Closes: #199318, #215045).
 + Specify encoding for the html generation (from the same patch).
 + Deal with badly encoded changelogs (assume latin1).
 .
   * Be sure that seen_new is always defined (Closes: #294420).
 .
   * Ignore when README.Debian/changelog.gz is a directory, just print a
 warning (Closes: #362896).
 .
   * Don't exit because quiet level is '2', use mail instead (Closes: #309262).
 .
   * Various code simplifications (using python2.4-isms).
 .
   * Make apt-listchanges modules private, move things to apt-listchanges
 instead of apt_listchanges directory.
Files: 
 d310684cf419a4fb114515db070b02a2 679 utils optional 
apt-listchanges_2.62~experimental1.dsc
 6fc88e3711ba8317948bbf9277134852 78350 utils optional 
apt-listchanges_2.62~experimental1.tar.gz
 54e7d84ebdf90abb75b44f88580b6688 54526 utils optional 
apt-listchanges_2.62~experimental1_all.deb

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

iD8DBQFE6JmuvGr7W6HudhwRAr2LAJ4hpb1sD+QivPnEA8H+8aLfc0W3bwCfYKTr
ZK0YBdp+QQYF6TiC4ss23m0=
=TTTU
-END PGP SIGNATURE-


Accepted:
apt-listchanges_2.62~experimental1.dsc
  to pool/main/a/apt-listchanges/apt-listchanges_2.62~experimental1.dsc
apt-listchanges_2.62~experimental1.tar.gz
  to pool/main/a/apt-listchanges/apt-listchanges_2.62~experimental1.tar.gz
apt-listchanges_2.62~experimental1_all.deb
  to pool/main/a/apt-listchanges/apt-listchanges_2.62~experimental1_all.deb


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



Accepted kernel-package 10.053 (source all)

2006-08-20 Thread Manoj Srivastava
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 12:13:36 -0500
Source: kernel-package
Binary: kernel-package
Architecture: source all
Version: 10.053
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: 381828 382743 383605 383751
Changes: 
 kernel-package (10.053) unstable; urgency=low
 .
   * Bug fix: Please allow ~ in sanity check, thanks to Norbert
 Tretkowski   (Closes: #383751).
   * Bug fix: initramfs generator reversed order dep, thanks to
 maximilian attems(Closes: #383605).
   * Make the question about whether or not to run the default bootloader a
 shared question. At this point, we still ask the question every time,
 though I am open to using the stored value -- but that would mean that
 if the admin has changed their mind since the question whether to run
 lilo or grub was asked, we would do the wrong thing, perhaps making
 the machine unbootable -- which is why the default is still to ask the
 human.
   * Bug fix: Package changelog for generated kernel packages uses
 kernel-package changelog, thanks to Andrew Meaden. Truncated, and
 repaced with a stub. (Closes: #382743).
   * Bug fix: kernel-package - please remove config target check from
 make-kpkg, thanks to Bastian Blank. The check has been disabled for
 official kernel images, but not for the general upstream sources.
  (Closes: #381828).
Files: 
 3ebe16ef5cf694e7370c8adfa6446876 485 misc optional kernel-package_10.053.dsc
 50c3d8b6d534f54e264fadd7861edb5c 837860 misc optional 
kernel-package_10.053.tar.gz
 a5282b146c2d4ae4db78540ffd16adaf 488962 misc optional 
kernel-package_10.053_all.deb

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

iD8DBQFE6JniIbrau78kQkwRApaQAJ9uEwqeiBDYRXbr8L1OLKql3TRlcQCfXXUw
F9rqtn8mZ+2UOKtdJBw2JSQ=
=VbEn
-END PGP SIGNATURE-


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


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



Accepted atftp 0.7.dfsg-0.2 (source powerpc)

2006-08-20 Thread Roger Leigh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 17:11:26 +0100
Source: atftp
Binary: atftpd atftp
Architecture: source powerpc
Version: 0.7.dfsg-0.2
Distribution: unstable
Urgency: low
Maintainer: Ludovic Drolez [EMAIL PROTECTED]
Changed-By: Roger Leigh [EMAIL PROTECTED]
Description: 
 atftp  - advanced TFTP client
 atftpd - advanced TFTP server
Closes: 382683
Changes: 
 atftp (0.7.dfsg-0.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/control: Remove netkit-inetd recommends, and make the netbase
 dependency versioned.  netbase provides the appropriate inetd
 dependency.  Closes: #382683.
Files: 
 852a016a8d33c955e109892f082b549d 635 net extra atftp_0.7.dfsg-0.2.dsc
 abdf8beb8a374fb6438d375caf540659 25897 net extra atftp_0.7.dfsg-0.2.diff.gz
 0c2d8e5eab1cbc7b419a71d64029114a 30706 net extra atftp_0.7.dfsg-0.2_powerpc.deb
 1a56b0c003bd73a97d9b4f7ca18f0fd0 57038 net extra 
atftpd_0.7.dfsg-0.2_powerpc.deb

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

iD8DBQFE6JEdVcFcaSW/uEgRAqt2AJsEaEg/357Oj4NQu6xcjP3zp+quZQCggD4s
Skf4UxtoboE/82W1hfuBNm8=
=Y/wV
-END PGP SIGNATURE-


Accepted:
atftp_0.7.dfsg-0.2.diff.gz
  to pool/main/a/atftp/atftp_0.7.dfsg-0.2.diff.gz
atftp_0.7.dfsg-0.2.dsc
  to pool/main/a/atftp/atftp_0.7.dfsg-0.2.dsc
atftp_0.7.dfsg-0.2_powerpc.deb
  to pool/main/a/atftp/atftp_0.7.dfsg-0.2_powerpc.deb
atftpd_0.7.dfsg-0.2_powerpc.deb
  to pool/main/a/atftp/atftpd_0.7.dfsg-0.2_powerpc.deb


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



Accepted csync2 1.33-2 (source i386)

2006-08-20 Thread Cyril Bouthors
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 20:27:27 +0300
Source: csync2
Binary: csync2
Architecture: source i386
Version: 1.33-2
Distribution: unstable
Urgency: low
Maintainer: Cyril Bouthors [EMAIL PROTECTED]
Changed-By: Cyril Bouthors [EMAIL PROTECTED]
Description: 
 csync2 - cluster synchronization tool
Closes: 359260
Changes: 
 csync2 (1.33-2) unstable; urgency=low
 .
   * put paper.pdf into /usr/share/doc/csync2/ (closes: 359260).
Files: 
 247617a1be7ae9a24d8b898de9bca5a7 614 admin optional csync2_1.33-2.dsc
 4c8ead926abff5e4ed28f6939ebd76e7 3239 admin optional csync2_1.33-2.diff.gz
 a73362faabfdd6318cc0426eef1bdf29 146292 admin optional csync2_1.33-2_i386.deb

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

iD8DBQFE6JzqZ1SJHeqsYt8RAn3KAJ48Szlv3GNapyUIjsWyFKfLHUq3WwCeMC5c
eoj4pf+84DPJiu6VoeeYXW0=
=aK6+
-END PGP SIGNATURE-


Accepted:
csync2_1.33-2.diff.gz
  to pool/main/c/csync2/csync2_1.33-2.diff.gz
csync2_1.33-2.dsc
  to pool/main/c/csync2/csync2_1.33-2.dsc
csync2_1.33-2_i386.deb
  to pool/main/c/csync2/csync2_1.33-2_i386.deb


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



Accepted slat 2.0-3 (source i386)

2006-08-20 Thread Manoj Srivastava
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 12:32:30 -0500
Source: slat
Binary: slat
Architecture: source i386
Version: 2.0-3
Distribution: unstable
Urgency: low
Maintainer: Manoj Srivastava [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 slat   - Tools for information flow analysis of SELinux policies
Closes: 382618
Changes: 
 slat (2.0-3) unstable; urgency=low
 .
   * Bug fix: slat: FTBFS: error: 'perm_datum_t' has no member named
 'value', thanks to Julien Danjou. This bug is obviously due to a
 change in sepol/policydb.h, the addition of an s member, which has
 the value member inside.  Thanks to Margarita Manterola for
 providing a patch.  (Closes: #382618).
   * Updated the build dependencies to match the fix above.
   * Updated standards version while at it.
Files: 
 4dca7b8144fda9690956d373fedb1084 570 admin optional slat_2.0-3.dsc
 ff26c1ae22c4b7dd3e5ca4d3c5c2b135 29561 admin optional slat_2.0-3.diff.gz
 496daed76b043482615307648b3399c6 163110 admin optional slat_2.0-3_i386.deb

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

iD8DBQFE6J4CIbrau78kQkwRAnj6AKDw0zoVQODi/DFPW+IXzA4wLiFuHQCdGwoa
PxFVX2x+CWiimnnG9llUW70=
=S8Bg
-END PGP SIGNATURE-


Accepted:
slat_2.0-3.diff.gz
  to pool/main/s/slat/slat_2.0-3.diff.gz
slat_2.0-3.dsc
  to pool/main/s/slat/slat_2.0-3.dsc
slat_2.0-3_i386.deb
  to pool/main/s/slat/slat_2.0-3_i386.deb


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



Accepted linux-kernel-di-m68k-2.6 0.77 (source m68k)

2006-08-20 Thread Stephen R. Marenka
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 17 Aug 2006 15:05:41 -0500
Source: linux-kernel-di-m68k-2.6
Binary: ppp-modules-2.6.17-2-amiga-di nic-shared-modules-2.6.17-2-amiga-di 
kernel-image-2.6.17-2-amiga-di fat-modules-2.6.17-2-amiga-di 
ppp-modules-2.6.17-2-mac-di reiserfs-modules-2.6.17-2-amiga-di 
reiserfs-modules-2.6.17-2-mac-di scsi-modules-2.6.17-2-amiga-di 
jfs-modules-2.6.17-2-amiga-di scsi-modules-2.6.17-2-mac-di 
crypto-modules-2.6.17-2-mac-di kernel-image-2.6.17-2-mac-di 
fat-modules-2.6.17-2-mac-di crypto-modules-2.6.17-2-amiga-di 
jfs-modules-2.6.17-2-mac-di nic-shared-modules-2.6.17-2-mac-di
Architecture: source m68k
Version: 0.77
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Stephen R. Marenka [EMAIL PROTECTED]
Description: 
 crypto-modules-2.6.17-2-amiga-di - crypto modules (udeb)
 crypto-modules-2.6.17-2-mac-di - crypto modules (udeb)
 fat-modules-2.6.17-2-amiga-di - FAT filesystem support (udeb)
 fat-modules-2.6.17-2-mac-di - FAT filesystem support (udeb)
 jfs-modules-2.6.17-2-amiga-di - JFS filesystem support (udeb)
 jfs-modules-2.6.17-2-mac-di - JFS filesystem support (udeb)
 kernel-image-2.6.17-2-amiga-di - Linux kernel binary image for the Debian 
installer (udeb)
 kernel-image-2.6.17-2-mac-di - Linux kernel binary image for the Debian 
installer (udeb)
 nic-shared-modules-2.6.17-2-amiga-di - Shared NIC drivers (udeb)
 nic-shared-modules-2.6.17-2-mac-di - Shared NIC drivers (udeb)
 ppp-modules-2.6.17-2-amiga-di - PPP drivers (udeb)
 ppp-modules-2.6.17-2-mac-di - PPP drivers (udeb)
 reiserfs-modules-2.6.17-2-amiga-di - Reiser filesystem support (udeb)
 reiserfs-modules-2.6.17-2-mac-di - Reiser filesystem support (udeb)
 scsi-modules-2.6.17-2-amiga-di - SCSI drivers (udeb)
 scsi-modules-2.6.17-2-mac-di - SCSI drivers (udeb)
Changes: 
 linux-kernel-di-m68k-2.6 (0.77) unstable; urgency=low
 .
   * Stephen R. Marenka
 - update to 2.6.17-6
Files: 
 d87d47ef2bbc5ddf844ca84b991fc312 1181 debian-installer optional 
linux-kernel-di-m68k-2.6_0.77.dsc
 39ba7ea1fcd9dfa5b46625d7fb9e4b7b 14545 debian-installer optional 
linux-kernel-di-m68k-2.6_0.77.tar.gz
 189a4581a54f8bcb611fcdbc2bf3e44c 1432480 debian-installer extra 
kernel-image-2.6.17-2-amiga-di_0.77_m68k.udeb
 8087f16aefd477cce68c4e66d450a1a7 19416 debian-installer standard 
nic-shared-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
 e0490c861e6eb7aee5fe47b89d03213b 50540 debian-installer optional 
ppp-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
 4e93b306736f5b15789eebb8f2595583 17666 debian-installer standard 
scsi-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
 9e6fe11dfc8345b2e6db733890130165 88934 debian-installer standard 
jfs-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
 8ed65ce8a2f8a4107e15a8585fc64f42 116942 debian-installer standard 
reiserfs-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
 861027a2760f395bc9be2bbd0f6b0e12 32454 debian-installer extra 
fat-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
 ced645722bbbfdb281f3acdd7dd47ae3 33852 debian-installer extra 
crypto-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
 cdc2664f0486b9398e804b0b41f79b3d 1422194 debian-installer extra 
kernel-image-2.6.17-2-mac-di_0.77_m68k.udeb
 5e9e13a94e778c9f6c9e24214d57bbde 2686 debian-installer standard 
nic-shared-modules-2.6.17-2-mac-di_0.77_m68k.udeb
 38ea6581e007d13b9bd6144a81f055fd 40210 debian-installer optional 
ppp-modules-2.6.17-2-mac-di_0.77_m68k.udeb
 350b2f03db93082fdaaba8c985a50166 17660 debian-installer standard 
scsi-modules-2.6.17-2-mac-di_0.77_m68k.udeb
 3a724a0655719bb25eccc77a78f90053 88924 debian-installer standard 
jfs-modules-2.6.17-2-mac-di_0.77_m68k.udeb
 62d045fce00787deb8cc5f49f8f15f80 116948 debian-installer standard 
reiserfs-modules-2.6.17-2-mac-di_0.77_m68k.udeb
 36d56e29d8759b833a65172df7dfe5df 32452 debian-installer extra 
fat-modules-2.6.17-2-mac-di_0.77_m68k.udeb
 33d79f2d4240b1c207b6c74e40baa7d1 33846 debian-installer extra 
crypto-modules-2.6.17-2-mac-di_0.77_m68k.udeb
Package-Type: udeb

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

iD8DBQFE5NFlVKM4J7YoSbMRAjUmAJsEsT9bKkoJIs+aWCypD6RWKYIcGgCghcfV
9fBhUdC9b6IuhNLnW6dXW7s=
=Yb21
-END PGP SIGNATURE-


Accepted:
crypto-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
  to 
pool/main/l/linux-kernel-di-m68k-2.6/crypto-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
crypto-modules-2.6.17-2-mac-di_0.77_m68k.udeb
  to 
pool/main/l/linux-kernel-di-m68k-2.6/crypto-modules-2.6.17-2-mac-di_0.77_m68k.udeb
fat-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
  to 
pool/main/l/linux-kernel-di-m68k-2.6/fat-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
fat-modules-2.6.17-2-mac-di_0.77_m68k.udeb
  to 
pool/main/l/linux-kernel-di-m68k-2.6/fat-modules-2.6.17-2-mac-di_0.77_m68k.udeb
jfs-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
  to 
pool/main/l/linux-kernel-di-m68k-2.6/jfs-modules-2.6.17-2-amiga-di_0.77_m68k.udeb
jfs-modules-2.6.17-2-mac-di_0.77_m68k.udeb
  to 

Accepted linux-kernel-di-ia64-2.6 1.9 (ia64 source)

2006-08-20 Thread dann frazier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 15:20:20 -0600
Source: linux-kernel-di-ia64-2.6
Binary: acpi-modules-2.6.17-2-itanium-di firmware-modules-2.6.17-2-itanium-di 
mouse-modules-2.6.17-2-itanium-di input-modules-2.6.17-2-itanium-di 
sata-modules-2.6.17-2-itanium-di nic-shared-modules-2.6.17-2-itanium-di 
ide-core-modules-2.6.17-2-itanium-di md-modules-2.6.17-2-itanium-di 
scsi-common-modules-2.6.17-2-itanium-di kernel-image-2.6.17-2-itanium-di 
crc-modules-2.6.17-2-itanium-di ide-modules-2.6.17-2-itanium-di 
loop-modules-2.6.17-2-itanium-di crypto-modules-2.6.17-2-itanium-di 
firewire-core-modules-2.6.17-2-itanium-di 
usb-storage-modules-2.6.17-2-itanium-di fat-modules-2.6.17-2-itanium-di 
plip-modules-2.6.17-2-itanium-di pcmcia-modules-2.6.17-2-itanium-di 
cdrom-core-modules-2.6.17-2-itanium-di scsi-core-modules-2.6.17-2-itanium-di 
nic-usb-modules-2.6.17-2-itanium-di reiserfs-modules-2.6.17-2-itanium-di 
irda-modules-2.6.17-2-itanium-di usb-modules-2.6.17-2-itanium-di 
scsi-modules-2.6.17-2-itanium-di ppp-modules-2.6.17-2-itanium-di 
ipv6-modules-2.6.17-2-itanium-di nic-modules-2.6.17-2-itanium-di 
ufs-modules-2.6.17-2-itanium-di jfs-modules-2.6.17-2-itanium-di 
parport-modules-2.6.17-2-itanium-di ntfs-modules-2.6.17-2-itanium-di 
fb-modules-2.6.17-2-itanium-di serial-modules-2.6.17-2-itanium-di 
ext3-modules-2.6.17-2-itanium-di xfs-modules-2.6.17-2-itanium-di
Architecture: source ia64
Version: 1.9
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: dann frazier [EMAIL PROTECTED]
Description: 
 acpi-modules-2.6.17-2-itanium-di - ACPI support modules (udeb)
 cdrom-core-modules-2.6.17-2-itanium-di - CDROM support (udeb)
 crc-modules-2.6.17-2-itanium-di - CRC modules (udeb)
 crypto-modules-2.6.17-2-itanium-di - crypto modules (udeb)
 ext3-modules-2.6.17-2-itanium-di - EXT3 filesystem support (udeb)
 fat-modules-2.6.17-2-itanium-di - FAT filesystem support (udeb)
 fb-modules-2.6.17-2-itanium-di - Frame buffer support (udeb)
 firewire-core-modules-2.6.17-2-itanium-di - Core FireWire drivers (udeb)
 firmware-modules-2.6.17-2-itanium-di - Firmware request modules (udeb)
 ide-core-modules-2.6.17-2-itanium-di - IDE support (udeb)
 ide-modules-2.6.17-2-itanium-di - IDE drivers (udeb)
 input-modules-2.6.17-2-itanium-di - Input devices support (udeb)
 ipv6-modules-2.6.17-2-itanium-di - IPv6 driver (udeb)
 irda-modules-2.6.17-2-itanium-di - Infrared devices support (udeb)
 jfs-modules-2.6.17-2-itanium-di - JFS filesystem support (udeb)
 kernel-image-2.6.17-2-itanium-di - Linux kernel binary image for the Debian 
installer (udeb)
 loop-modules-2.6.17-2-itanium-di - Loopback filesystem support (udeb)
 md-modules-2.6.17-2-itanium-di - RAID and LVM support (udeb)
 mouse-modules-2.6.17-2-itanium-di - Mouse support (udeb)
 nic-modules-2.6.17-2-itanium-di - Common NIC drivers (udeb)
 nic-shared-modules-2.6.17-2-itanium-di - Shared NIC drivers (udeb)
 nic-usb-modules-2.6.17-2-itanium-di - USB NIC drivers (udeb)
 ntfs-modules-2.6.17-2-itanium-di - NTFS filesystem support (udeb)
 parport-modules-2.6.17-2-itanium-di - Parallel port support (udeb)
 pcmcia-modules-2.6.17-2-itanium-di - Common PCMCIA drivers (udeb)
 plip-modules-2.6.17-2-itanium-di - PLIP drivers (udeb)
 ppp-modules-2.6.17-2-itanium-di - PPP drivers (udeb)
 reiserfs-modules-2.6.17-2-itanium-di - Reiser filesystem support (udeb)
 sata-modules-2.6.17-2-itanium-di - SATA drivers (udeb)
 scsi-common-modules-2.6.17-2-itanium-di - Very common SCSI drivers (udeb)
 scsi-core-modules-2.6.17-2-itanium-di - Core SCSI subsystem (udeb)
 scsi-modules-2.6.17-2-itanium-di - SCSI drivers (udeb)
 serial-modules-2.6.17-2-itanium-di - Serial drivers (udeb)
 ufs-modules-2.6.17-2-itanium-di - UFS filesystem support (udeb)
 usb-modules-2.6.17-2-itanium-di - USB support (udeb)
 usb-storage-modules-2.6.17-2-itanium-di - USB storage support (udeb)
 xfs-modules-2.6.17-2-itanium-di - XFS filesystem support (udeb)
Changes: 
 linux-kernel-di-ia64-2.6 (1.9) unstable; urgency=low
 .
   * Update to 2.6.17 (2.6.17-6)
   * Rebuild using kernel-wedge 2.26
   * Use the common scsi-common-modules
   * scsi-modules is now the common scsi-modules + scsi-extra-modules
   * nic-modules is now the common nic-modules + nic-extra-modules
Files: 
 e17ecec3a3e62d1378c063e0f39384a8 1916 debian-installer optional 
linux-kernel-di-ia64-2.6_1.9.dsc
 189ad3bf84c0e1e3e330f3b7d1c2060b 6506 debian-installer optional 
linux-kernel-di-ia64-2.6_1.9.tar.gz
 a8022c740162f98f95d07c2814ec39df 2857710 debian-installer extra 
kernel-image-2.6.17-2-itanium-di_1.9_ia64.udeb
 49c8b26aa14509654e4b03347d7edffc 1930708 debian-installer standard 
nic-modules-2.6.17-2-itanium-di_1.9_ia64.udeb
 be8e279212e52bcd685dda482ed40b69 16578 debian-installer standard 
nic-shared-modules-2.6.17-2-itanium-di_1.9_ia64.udeb
 bf24cadc5f7a4b312265eb24be72a2d7 26060 debian-installer optional 
serial-modules-2.6.17-2-itanium-di_1.9_ia64.udeb
 

Accepted linux-kernel-di-amd64-2.6 1.12 (source amd64)

2006-08-20 Thread Frederik Schüler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 18 Aug 2006 18:29:37 +0200
Source: linux-kernel-di-amd64-2.6
Binary: nic-usb-modules-2.6.17-2-amd64-di nic-shared-modules-2.6.17-2-amd64-di 
kernel-image-2.6.17-2-amd64-di scsi-common-modules-2.6.17-2-amd64-di 
nic-modules-2.6.17-2-amd64-di firewire-core-modules-2.6.17-2-amd64-di 
crypto-modules-2.6.17-2-amd64-di firmware-modules-2.6.17-2-amd64-di 
crc-modules-2.6.17-2-amd64-di md-modules-2.6.17-2-amd64-di 
ide-core-modules-2.6.17-2-amd64-di usb-modules-2.6.17-2-amd64-di 
pcmcia-storage-modules-2.6.17-2-amd64-di ufs-modules-2.6.17-2-amd64-di 
loop-modules-2.6.17-2-amd64-di cdrom-core-modules-2.6.17-2-amd64-di 
ntfs-modules-2.6.17-2-amd64-di sata-modules-2.6.17-2-amd64-di 
plip-modules-2.6.17-2-amd64-di usb-serial-modules-2.6.17-2-amd64-di 
mouse-modules-2.6.17-2-amd64-di floppy-modules-2.6.17-2-amd64-di 
xfs-modules-2.6.17-2-amd64-di ipv6-modules-2.6.17-2-amd64-di 
ext3-modules-2.6.17-2-amd64-di fb-modules-2.6.17-2-amd64-di 
nic-extra-modules-2.6.17-2-amd64-di acpi-modules-2.6.17-2-amd64-di 
ide-modules-2.6.17-2-amd64-di pcmcia-modules-2.6.17-2-amd64-di 
ppp-modules-2.6.17-2-amd64-di scsi-modules-2.6.17-2-amd64-di 
reiserfs-modules-2.6.17-2-amd64-di irda-modules-2.6.17-2-amd64-di 
input-modules-2.6.17-2-amd64-di scsi-core-modules-2.6.17-2-amd64-di 
jfs-modules-2.6.17-2-amd64-di fat-modules-2.6.17-2-amd64-di 
serial-modules-2.6.17-2-amd64-di nic-pcmcia-modules-2.6.17-2-amd64-di 
parport-modules-2.6.17-2-amd64-di scsi-extra-modules-2.6.17-2-amd64-di 
qnx4-modules-2.6.17-2-amd64-di usb-storage-modules-2.6.17-2-amd64-di
Architecture: source amd64
Version: 1.12
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frederik Schüler [EMAIL PROTECTED]
Description: 
 acpi-modules-2.6.17-2-amd64-di - ACPI support modules (udeb)
 cdrom-core-modules-2.6.17-2-amd64-di - CDROM support (udeb)
 crc-modules-2.6.17-2-amd64-di - CRC modules (udeb)
 crypto-modules-2.6.17-2-amd64-di - crypto modules (udeb)
 ext3-modules-2.6.17-2-amd64-di - EXT3 filesystem support (udeb)
 fat-modules-2.6.17-2-amd64-di - FAT filesystem support (udeb)
 fb-modules-2.6.17-2-amd64-di - Frame buffer support (udeb)
 firewire-core-modules-2.6.17-2-amd64-di - Core FireWire drivers (udeb)
 firmware-modules-2.6.17-2-amd64-di - Firmware request modules (udeb)
 floppy-modules-2.6.17-2-amd64-di - Floppy driver (udeb)
 ide-core-modules-2.6.17-2-amd64-di - IDE support (udeb)
 ide-modules-2.6.17-2-amd64-di - IDE drivers (udeb)
 input-modules-2.6.17-2-amd64-di - Input devices support (udeb)
 ipv6-modules-2.6.17-2-amd64-di - IPv6 driver (udeb)
 irda-modules-2.6.17-2-amd64-di - Infrared devices support (udeb)
 jfs-modules-2.6.17-2-amd64-di - JFS filesystem support (udeb)
 kernel-image-2.6.17-2-amd64-di - Linux kernel binary image for the Debian 
installer (udeb)
 loop-modules-2.6.17-2-amd64-di - Loopback filesystem support (udeb)
 md-modules-2.6.17-2-amd64-di - RAID and LVM support (udeb)
 mouse-modules-2.6.17-2-amd64-di - Mouse support (udeb)
 nic-extra-modules-2.6.17-2-amd64-di - Rare NIC drivers (udeb)
 nic-modules-2.6.17-2-amd64-di - Common NIC drivers (udeb)
 nic-pcmcia-modules-2.6.17-2-amd64-di - Common PCMCIA NIC drivers (udeb)
 nic-shared-modules-2.6.17-2-amd64-di - Shared NIC drivers (udeb)
 nic-usb-modules-2.6.17-2-amd64-di - USB NIC drivers (udeb)
 ntfs-modules-2.6.17-2-amd64-di - NTFS filesystem support (udeb)
 parport-modules-2.6.17-2-amd64-di - Parallel port support (udeb)
 pcmcia-modules-2.6.17-2-amd64-di - Common PCMCIA drivers (udeb)
 pcmcia-storage-modules-2.6.17-2-amd64-di - PCMCIA storage drivers (udeb)
 plip-modules-2.6.17-2-amd64-di - PLIP drivers (udeb)
 ppp-modules-2.6.17-2-amd64-di - PPP drivers (udeb)
 qnx4-modules-2.6.17-2-amd64-di - QNX4 filesystem support (udeb)
 reiserfs-modules-2.6.17-2-amd64-di - Reiser filesystem support (udeb)
 sata-modules-2.6.17-2-amd64-di - SATA drivers (udeb)
 scsi-common-modules-2.6.17-2-amd64-di - Very common SCSI drivers (udeb)
 scsi-core-modules-2.6.17-2-amd64-di - Core SCSI subsystem (udeb)
 scsi-extra-modules-2.6.17-2-amd64-di - Uncommon SCSI drivers (udeb)
 scsi-modules-2.6.17-2-amd64-di - SCSI drivers (udeb)
 serial-modules-2.6.17-2-amd64-di - Serial drivers (udeb)
 ufs-modules-2.6.17-2-amd64-di - UFS filesystem support (udeb)
 usb-modules-2.6.17-2-amd64-di - USB support (udeb)
 usb-serial-modules-2.6.17-2-amd64-di - USB serial drivers (udeb)
 usb-storage-modules-2.6.17-2-amd64-di - USB storage support (udeb)
 xfs-modules-2.6.17-2-amd64-di - XFS filesystem support (udeb)
Changes: 
 linux-kernel-di-amd64-2.6 (1.12) unstable; urgency=low
 .
   * Updated to 2.6.17-6.
   * Mark irda-modules/irport optional.
   * Rename packages from -amd64-generic to -amd64, following the flavour
 renaming in linux-2.6.
Files: 
 5bada4ec611f8395b69471cffd6ef095 2124 debian-installer optional 
linux-kernel-di-amd64-2.6_1.12.dsc
 e496b87ceb11504ad3a17d61be13bf8c 6380 debian-installer 

Accepted linux-kernel-di-sparc-2.6 1.13 (source sparc)

2006-08-20 Thread Jurij Smakov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 20:43:54 -0700
Source: linux-kernel-di-sparc-2.6
Binary: ext3-modules-2.6.17-2-sparc64-di scsi-core-modules-2.6.17-2-sparc32-di 
jfs-modules-2.6.17-2-sparc64-di plip-modules-2.6.17-2-sparc64-di 
cdrom-core-modules-2.6.17-2-sparc64-di crypto-modules-2.6.17-2-sparc64-di 
sata-modules-2.6.17-2-sparc64-di md-modules-2.6.17-2-sparc64-di 
kernel-image-2.6.17-2-sparc64-di fat-modules-2.6.17-2-sparc32-di 
ppp-modules-2.6.17-2-sparc32-di ppp-modules-2.6.17-2-sparc64-di 
ipv6-modules-2.6.17-2-sparc64-di scsi-common-modules-2.6.17-2-sparc32-di 
usb-modules-2.6.17-2-sparc64-di md-modules-2.6.17-2-sparc32-di 
xfs-modules-2.6.17-2-sparc32-di plip-modules-2.6.17-2-sparc32-di 
kernel-image-2.6.17-2-sparc32-di fat-modules-2.6.17-2-sparc64-di 
reiserfs-modules-2.6.17-2-sparc32-di ext3-modules-2.6.17-2-sparc32-di 
reiserfs-modules-2.6.17-2-sparc64-di scsi-extra-modules-2.6.17-2-sparc64-di 
ide-modules-2.6.17-2-sparc64-di scsi-common-modules-2.6.17-2-sparc64-di 
cdrom-core-modules-2.6.17-2-sparc32-di nic-modules-2.6.17-2-sparc64-di 
scsi-core-modules-2.6.17-2-sparc64-di ipv6-modules-2.6.17-2-sparc32-di 
nic-modules-2.6.17-2-sparc32-di xfs-modules-2.6.17-2-sparc64-di 
crypto-modules-2.6.17-2-sparc32-di
Architecture: source sparc
Version: 1.13
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Jurij Smakov [EMAIL PROTECTED]
Description: 
 cdrom-core-modules-2.6.17-2-sparc32-di - CDROM support (udeb)
 cdrom-core-modules-2.6.17-2-sparc64-di - CDROM support (udeb)
 crypto-modules-2.6.17-2-sparc32-di - crypto modules (udeb)
 crypto-modules-2.6.17-2-sparc64-di - crypto modules (udeb)
 ext3-modules-2.6.17-2-sparc32-di - EXT3 filesystem support (udeb)
 ext3-modules-2.6.17-2-sparc64-di - EXT3 filesystem support (udeb)
 fat-modules-2.6.17-2-sparc32-di - FAT filesystem support (udeb)
 fat-modules-2.6.17-2-sparc64-di - FAT filesystem support (udeb)
 ide-modules-2.6.17-2-sparc64-di - IDE drivers (udeb)
 ipv6-modules-2.6.17-2-sparc32-di - IPv6 driver (udeb)
 ipv6-modules-2.6.17-2-sparc64-di - IPv6 driver (udeb)
 jfs-modules-2.6.17-2-sparc64-di - JFS filesystem support (udeb)
 kernel-image-2.6.17-2-sparc32-di - Linux kernel binary image for the Debian 
installer (udeb)
 kernel-image-2.6.17-2-sparc64-di - Linux kernel binary image for the Debian 
installer (udeb)
 md-modules-2.6.17-2-sparc32-di - RAID and LVM support (udeb)
 md-modules-2.6.17-2-sparc64-di - RAID and LVM support (udeb)
 nic-modules-2.6.17-2-sparc32-di - Network card modules for Sparc kernels (udeb)
 nic-modules-2.6.17-2-sparc64-di - Network card modules for Sparc kernels (udeb)
 plip-modules-2.6.17-2-sparc32-di - PLIP drivers (udeb)
 plip-modules-2.6.17-2-sparc64-di - PLIP drivers (udeb)
 ppp-modules-2.6.17-2-sparc32-di - PPP drivers (udeb)
 ppp-modules-2.6.17-2-sparc64-di - PPP drivers (udeb)
 reiserfs-modules-2.6.17-2-sparc32-di - Reiser filesystem support (udeb)
 reiserfs-modules-2.6.17-2-sparc64-di - Reiser filesystem support (udeb)
 sata-modules-2.6.17-2-sparc64-di - SATA drivers (udeb)
 scsi-common-modules-2.6.17-2-sparc32-di - Very common SCSI drivers (udeb)
 scsi-common-modules-2.6.17-2-sparc64-di - Very common SCSI drivers (udeb)
 scsi-core-modules-2.6.17-2-sparc32-di - Core SCSI subsystem (udeb)
 scsi-core-modules-2.6.17-2-sparc64-di - Core SCSI subsystem (udeb)
 scsi-extra-modules-2.6.17-2-sparc64-di - Uncommon SCSI drivers (udeb)
 usb-modules-2.6.17-2-sparc64-di - USB support (udeb)
 xfs-modules-2.6.17-2-sparc32-di - XFS filesystem support (udeb)
 xfs-modules-2.6.17-2-sparc64-di - XFS filesystem support (udeb)
Closes: 382590
Changes: 
 linux-kernel-di-sparc-2.6 (1.13) unstable; urgency=low
 .
   * Rebuild against linux-image 2.6.17-6 (2.6.17-2):
 - Remove qlogicfc from scsi-common-modules, dropped upstream.
 - Add mptsas to scsi-common-modules, required for T2K boxes.
 - Move mptspi from scsi-extra-modules to scsi-common modules
   and remove scsi_transport_sas from scsi-extra-modules to
   avoid duplicate modules in udebs.
   * Add isofs to cdrom-core modules on sparc32. It is included in
 ide-modules in kernel-wedge, but we are not building ide-modules
 on sparc32, so it is missing, causing CD install failures.
 Closes: #382590
Files: 
 95d1abcbefeccb3778dee207ea0e6815 1935 debian-installer optional 
linux-kernel-di-sparc-2.6_1.13.dsc
 d2e97d7fb5fa82c5c6db6820d79acf80 4845 debian-installer optional 
linux-kernel-di-sparc-2.6_1.13.tar.gz
 437cf4ebc113257d7b3cb3a24bc3bd4f 1622498 debian-installer extra 
kernel-image-2.6.17-2-sparc64-di_1.13_sparc.udeb
 025d4e1ab43121bcb79a30fffc5ab944 752950 debian-installer standard 
nic-modules-2.6.17-2-sparc64-di_1.13_sparc.udeb
 a757805be6633dd61971dc667fad789f 53072 debian-installer optional 
ppp-modules-2.6.17-2-sparc64-di_1.13_sparc.udeb
 7692ad6b0487d28e4aaf753b23a1da0d 74558 debian-installer standard 

Accepted linux-kernel-di-alpha-2.6 0.08 (source alpha)

2006-08-20 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 15:47:20 -0700
Source: linux-kernel-di-alpha-2.6
Binary: scsi-modules-2.6.17-2-alpha-generic-di 
ide-modules-2.6.17-2-alpha-generic-di 
usb-storage-modules-2.6.17-2-alpha-generic-di 
parport-modules-2.6.17-2-alpha-generic-di jfs-modules-2.6.17-2-alpha-generic-di 
crypto-modules-2.6.17-2-alpha-generic-di 
usb-serial-modules-2.6.17-2-alpha-generic-di 
reiserfs-modules-2.6.17-2-alpha-generic-di 
usb-modules-2.6.17-2-alpha-generic-di 
scsi-common-modules-2.6.17-2-alpha-generic-di 
cdrom-core-modules-2.6.17-2-alpha-generic-di 
md-modules-2.6.17-2-alpha-generic-di fat-modules-2.6.17-2-alpha-generic-di 
firmware-modules-2.6.17-2-alpha-generic-di 
ppp-modules-2.6.17-2-alpha-generic-di fb-modules-2.6.17-2-alpha-generic-di 
ext3-modules-2.6.17-2-alpha-generic-di 
nic-extra-modules-2.6.17-2-alpha-generic-di 
srm-modules-2.6.17-2-alpha-generic-di 
scsi-core-modules-2.6.17-2-alpha-generic-di 
crc-modules-2.6.17-2-alpha-generic-di xfs-modules-2.6.17-2-alpha-generic-di 
kernel-image-2.6.17-2-alpha-generic-di 
ide-core-modules-2.6.17-2-alpha-generic-di 
plip-modules-2.6.17-2-alpha-generic-di 
nic-shared-modules-2.6.17-2-alpha-generic-di 
scsi-extra-modules-2.6.17-2-alpha-generic-di 
ipv6-modules-2.6.17-2-alpha-generic-di nic-modules-2.6.17-2-alpha-generic-di 
cdrom-modules-2.6.17-2-alpha-generic-di
Architecture: source alpha
Version: 0.08
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Steve Langasek [EMAIL PROTECTED]
Description: 
 cdrom-core-modules-2.6.17-2-alpha-generic-di - CDROM support (udeb)
 cdrom-modules-2.6.17-2-alpha-generic-di - Esoteric CDROM drivers (udeb)
 crc-modules-2.6.17-2-alpha-generic-di - CRC modules (udeb)
 crypto-modules-2.6.17-2-alpha-generic-di - crypto modules (udeb)
 ext3-modules-2.6.17-2-alpha-generic-di - EXT3 filesystem support (udeb)
 fat-modules-2.6.17-2-alpha-generic-di - FAT filesystem support (udeb)
 fb-modules-2.6.17-2-alpha-generic-di - Frame buffer support (udeb)
 firmware-modules-2.6.17-2-alpha-generic-di - Firmware request modules (udeb)
 ide-core-modules-2.6.17-2-alpha-generic-di - IDE support (udeb)
 ide-modules-2.6.17-2-alpha-generic-di - IDE drivers (udeb)
 ipv6-modules-2.6.17-2-alpha-generic-di - IPv6 driver (udeb)
 jfs-modules-2.6.17-2-alpha-generic-di - JFS filesystem support (udeb)
 kernel-image-2.6.17-2-alpha-generic-di - Linux kernel binary image for the 
Debian installer (udeb)
 md-modules-2.6.17-2-alpha-generic-di - RAID and LVM support (udeb)
 nic-extra-modules-2.6.17-2-alpha-generic-di - Rare NIC drivers (udeb)
 nic-modules-2.6.17-2-alpha-generic-di - Common NIC drivers (udeb)
 nic-shared-modules-2.6.17-2-alpha-generic-di - Shared NIC drivers (udeb)
 parport-modules-2.6.17-2-alpha-generic-di - Parallel port support (udeb)
 plip-modules-2.6.17-2-alpha-generic-di - PLIP drivers (udeb)
 ppp-modules-2.6.17-2-alpha-generic-di - PPP drivers (udeb)
 reiserfs-modules-2.6.17-2-alpha-generic-di - Reiser filesystem support (udeb)
 scsi-common-modules-2.6.17-2-alpha-generic-di - Very common SCSI drivers (udeb)
 scsi-core-modules-2.6.17-2-alpha-generic-di - Core SCSI subsystem (udeb)
 scsi-extra-modules-2.6.17-2-alpha-generic-di - Uncommon SCSI drivers (udeb)
 scsi-modules-2.6.17-2-alpha-generic-di - SCSI drivers (udeb)
 srm-modules-2.6.17-2-alpha-generic-di - SRM environment driver (udeb)
 usb-modules-2.6.17-2-alpha-generic-di - USB support (udeb)
 usb-serial-modules-2.6.17-2-alpha-generic-di - USB serial drivers (udeb)
 usb-storage-modules-2.6.17-2-alpha-generic-di - USB storage support (udeb)
 xfs-modules-2.6.17-2-alpha-generic-di - XFS filesystem support (udeb)
Changes: 
 linux-kernel-di-alpha-2.6 (0.08) unstable; urgency=low
 .
   [ Joey Hess ]
   * Re-merged nic-extra-modules with kernel-wedge 2.23.
 .
   [ Steve Langasek ]
   * Update to 2.6.17-2.
   * Don't let kernel-wedge put de2104x in nic-extra-modules.
   * e1000 and via-rhine are both now in the kernel-wedge
 nic-extra-modules, so drop them from our local list.
Files: 
 4416aeb581cfa8f64779eaffd708a180 1930 debian-installer optional 
linux-kernel-di-alpha-2.6_0.08.dsc
 3e924e4f421dc7b059beda3c09d9b6a5 16597 debian-installer optional 
linux-kernel-di-alpha-2.6_0.08.tar.gz
 0ac8ab4316701eb1bef417a72f0f34ae 1583472 debian-installer extra 
kernel-image-2.6.17-2-alpha-generic-di_0.08_alpha.udeb
 42b5c56e735763f2cba793c81c29782d 78720 debian-installer standard 
nic-modules-2.6.17-2-alpha-generic-di_0.08_alpha.udeb
 05368cc32d0d0a254115f214aaf6ab56 1815844 debian-installer standard 
nic-extra-modules-2.6.17-2-alpha-generic-di_0.08_alpha.udeb
 10df738f2fe0161ada6c04686fabc85e 12712 debian-installer standard 
nic-shared-modules-2.6.17-2-alpha-generic-di_0.08_alpha.udeb
 48b6d56a0c8c287af04a32fc021ce6cc 118756 debian-installer optional 
usb-serial-modules-2.6.17-2-alpha-generic-di_0.08_alpha.udeb
 7c7d87bea813f497fd29f9a03dda5506 67438 debian-installer optional 

Accepted harden 0.1.24 (source all)

2006-08-20 Thread Ola Lundqvist
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 17:54:32 +0200
Source: harden
Binary: harden-nids harden-environment harden-surveillance harden-development 
harden-clients harden-tools harden harden-servers harden-remoteaudit
Architecture: source all
Version: 0.1.24
Distribution: unstable
Urgency: low
Maintainer: Ola Lundqvist [EMAIL PROTECTED]
Changed-By: Ola Lundqvist [EMAIL PROTECTED]
Description: 
 harden - Makes your system hardened
 harden-clients - Avoid clients that are known to be insecure
 harden-development - Development tools for creating more secure programs
 harden-environment - Hardened system environment
 harden-nids - Harden a system by using a network intrusion detection system
 harden-remoteaudit - Audit your remote systems from this host
 harden-servers - Avoid servers that are known to be insecure
 harden-surveillance - Check services and/or servers automatically
 harden-tools - Tools to enhance or analyze the security of the local system
Closes: 383749
Changes: 
 harden (0.1.24) unstable; urgency=low
 .
   * Change suggest of ssh to openssh-client, closes: #383749.
Files: 
 b51c01db4d51b6a368b0687e17a3721f 654 admin extra harden_0.1.24.dsc
 6a3f65b19ddb4ca900108bf3ea88be82 38412 admin extra harden_0.1.24.tar.gz
 23c401c112758162f027f4c4585ee02a 7358 admin extra harden_0.1.24_all.deb
 bbe849f9c14af3c044208bfc0b3c20e5 9262 admin extra harden-servers_0.1.24_all.deb
 5c22a1ec4eaadaf0cff48357b3d9fc52 7504 admin extra harden-clients_0.1.24_all.deb
 6d4047581056c91f6771a7ce872e30db 5472 admin extra 
harden-surveillance_0.1.24_all.deb
 f4b05fa10adad8cb1974d97822abbdb9 5484 admin extra 
harden-development_0.1.24_all.deb
 abfa9a9d541cd367eb92fc4958fb65f2 5586 admin extra harden-tools_0.1.24_all.deb
 0b7e0d60609af60980c2c7412fd01a10 5692 admin extra 
harden-environment_0.1.24_all.deb
 943aa6ff0831c9192c6501d1773e9976 5550 admin extra harden-nids_0.1.24_all.deb
 07c0bd660631de5419459208e24ed82a 5782 admin optional 
harden-remoteaudit_0.1.24_all.deb

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

iD8DBQFE6IYhGKGxzw/lPdkRAo3RAJ9OrBENWKriZ480ts5B5e7AUDGz7ACglwRS
CCkk4nPXH336nsrCx966oms=
=fE0d
-END PGP SIGNATURE-


Accepted:
harden-clients_0.1.24_all.deb
  to pool/main/h/harden/harden-clients_0.1.24_all.deb
harden-development_0.1.24_all.deb
  to pool/main/h/harden/harden-development_0.1.24_all.deb
harden-environment_0.1.24_all.deb
  to pool/main/h/harden/harden-environment_0.1.24_all.deb
harden-nids_0.1.24_all.deb
  to pool/main/h/harden/harden-nids_0.1.24_all.deb
harden-remoteaudit_0.1.24_all.deb
  to pool/main/h/harden/harden-remoteaudit_0.1.24_all.deb
harden-servers_0.1.24_all.deb
  to pool/main/h/harden/harden-servers_0.1.24_all.deb
harden-surveillance_0.1.24_all.deb
  to pool/main/h/harden/harden-surveillance_0.1.24_all.deb
harden-tools_0.1.24_all.deb
  to pool/main/h/harden/harden-tools_0.1.24_all.deb
harden_0.1.24.dsc
  to pool/main/h/harden/harden_0.1.24.dsc
harden_0.1.24.tar.gz
  to pool/main/h/harden/harden_0.1.24.tar.gz
harden_0.1.24_all.deb
  to pool/main/h/harden/harden_0.1.24_all.deb


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



Accepted msmtp 1.4.7-1 (source amd64)

2006-08-20 Thread Julien Louis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 19:07:27 +0200
Source: msmtp
Binary: msmtp
Architecture: source amd64
Version: 1.4.7-1
Distribution: unstable
Urgency: low
Maintainer: Julien Louis [EMAIL PROTECTED]
Changed-By: Julien Louis [EMAIL PROTECTED]
Description: 
 msmtp  - light SMTP client with support for server profiles
Closes: 374610
Changes: 
 msmtp (1.4.7-1) unstable; urgency=low
 .
   * New upstream release (Closes: #374610).
Files: 
 d998161a49750df523f7334896abe5aa 605 mail extra msmtp_1.4.7-1.dsc
 fc712c95a8d130e48a5830dd90d37c53 615950 mail extra msmtp_1.4.7.orig.tar.gz
 d0f4f379cbf59d565df34e32bf75bab7 4346 mail extra msmtp_1.4.7-1.diff.gz
 f19e91479efe2951a217e76b76e1399f 101594 mail extra msmtp_1.4.7-1_amd64.deb

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

iD8DBQFE6JzovGr7W6HudhwRAnFnAKCOihIaJlTBKQ9IFxl3cnwKxKZ2tQCeLDXt
VR4M0pG7QC4Q1YjdVidcIj8=
=w2pQ
-END PGP SIGNATURE-


Accepted:
msmtp_1.4.7-1.diff.gz
  to pool/main/m/msmtp/msmtp_1.4.7-1.diff.gz
msmtp_1.4.7-1.dsc
  to pool/main/m/msmtp/msmtp_1.4.7-1.dsc
msmtp_1.4.7-1_amd64.deb
  to pool/main/m/msmtp/msmtp_1.4.7-1_amd64.deb
msmtp_1.4.7.orig.tar.gz
  to pool/main/m/msmtp/msmtp_1.4.7.orig.tar.gz


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



Accepted mailagent 3.73-22 (source i386)

2006-08-20 Thread Manoj Srivastava
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 12:57:57 -0500
Source: mailagent
Binary: mailagent
Architecture: source i386
Version: 3.73-22
Distribution: unstable
Urgency: low
Maintainer: Manoj Srivastava [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 mailagent  - An automatic mail-processing tool and filter.
Closes: 383245
Changes: 
 mailagent (3.73-22) unstable; urgency=low
 .
   * Bug fix: mailagent: false warning about 'bad host', thanks
 to Matt Swift (Closes: 
#383245).
   * Updated standards version.
Files: 
 2164caa49bc1423b5602050be10e945a 593 mail optional mailagent_3.73-22.dsc
 13cdb79371ac71ba7aea977549cfe406 93745 mail optional mailagent_3.73-22.diff.gz
 acaac3b13f6943791049c6b8ca1986ed 489304 mail optional 
mailagent_3.73-22_i386.deb

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

iD8DBQFE6KTWIbrau78kQkwRAsdsAKDPoDLnHEmrg+OUjh9d1ayRtV/3LwCfQsAM
tmcUKR1t8K31SQ5gJvFn0sk=
=Reft
-END PGP SIGNATURE-


Accepted:
mailagent_3.73-22.diff.gz
  to pool/main/m/mailagent/mailagent_3.73-22.diff.gz
mailagent_3.73-22.dsc
  to pool/main/m/mailagent/mailagent_3.73-22.dsc
mailagent_3.73-22_i386.deb
  to pool/main/m/mailagent/mailagent_3.73-22_i386.deb


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



Accepted wavsplit 1.1.0-3 (source i386)

2006-08-20 Thread Cyril Bouthors
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 21:16:54 +0300
Source: wavsplit
Binary: wavsplit
Architecture: source i386
Version: 1.1.0-3
Distribution: unstable
Urgency: low
Maintainer: Cyril Bouthors [EMAIL PROTECTED]
Changed-By: Cyril Bouthors [EMAIL PROTECTED]
Description: 
 wavsplit   - Splits wavfiles into tracks
Closes: 382736
Changes: 
 wavsplit (1.1.0-3) unstable; urgency=low
 .
   * wavsplit.h: applied patch from Volodymyr Poltavets
 [EMAIL PROTECTED] to fix PCM wave files recognition on AMD64
 (closes: 382736).
   * debian/rules: removed DH_COMPAT=3
   * debian/control: upgraded Standards-Version from 3.6.1 to 3.7.2
   * debian/copyright: updated FSF address
   * debian/compat: added
Files: 
 a1cd454de3abff7ef40557a1c60c3205 562 sound optional wavsplit_1.1.0-3.dsc
 4129d85122bcc5d143a0a562e07999c3 2065 sound optional wavsplit_1.1.0-3.diff.gz
 e857e8ced6eb7f3110d2172430c028f0 16804 sound optional wavsplit_1.1.0-3_i386.deb

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

iD8DBQFE6KecZ1SJHeqsYt8RAmYOAJ9bdoT5RJMU6uxyNsek2Pr4/ty17gCggDB7
yfibbkxtObMWRkOJrd9tkVQ=
=FuSn
-END PGP SIGNATURE-


Accepted:
wavsplit_1.1.0-3.diff.gz
  to pool/main/w/wavsplit/wavsplit_1.1.0-3.diff.gz
wavsplit_1.1.0-3.dsc
  to pool/main/w/wavsplit/wavsplit_1.1.0-3.dsc
wavsplit_1.1.0-3_i386.deb
  to pool/main/w/wavsplit/wavsplit_1.1.0-3_i386.deb


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



Accepted vserver-debiantools 0.2.10 (source all)

2006-08-20 Thread Ola Lundqvist
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 20:12:09 +0200
Source: vserver-debiantools
Binary: vserver-debiantools
Architecture: source all
Version: 0.2.10
Distribution: unstable
Urgency: low
Maintainer: Ola Lundqvist [EMAIL PROTECTED]
Changed-By: Ola Lundqvist [EMAIL PROTECTED]
Description: 
 vserver-debiantools - Tools to manage debian virtual servers
Closes: 383672 383675 383682 383699 383911 383914
Changes: 
 vserver-debiantools (0.2.10) unstable; urgency=low
 .
   * Allow hostnames of less than 5 characters, thanks to Miroslav Kure
 [EMAIL PROTECTED], closes: #383672.
   * Applied patch from Miroslav Kure [EMAIL PROTECTED], to make
 newvserver behave better regarding locales, closes: #383682.
 Applied this patch against newnfsvserver and stripserver as well.
   * Corrected usage instructions for dupvserver, closes: #383675.
   * Make etch default distribution, closes: #383914.
   * Applied patch from Miroslav Kure [EMAIL PROTECTED], to make
 sure that tzconfig is preferred over tzsetup and only executed if
 exists, closes: #383911.
   * Do not install non-us for sarge and later dists and also remove
 contrib and non-free by default, closes: #383699.
Files: 
 adad4d47a5e3ab59f6be3e15205e2e23 552 utils optional 
vserver-debiantools_0.2.10.dsc
 d7bdcd5856bdc9840a8630f49c26 30020 utils optional 
vserver-debiantools_0.2.10.tar.gz
 4b2fc86c4743ede6c2fa3f045e229ea6 29434 utils optional 
vserver-debiantools_0.2.10_all.deb

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

iD8DBQFE6KZbGKGxzw/lPdkRAhCAAKCBlfr5z9XgiTWY8u1SebXNquM2YwCeKfYi
xNYMxGRvUpDgJ1Zn69S16Kg=
=KwoY
-END PGP SIGNATURE-


Accepted:
vserver-debiantools_0.2.10.dsc
  to pool/main/v/vserver-debiantools/vserver-debiantools_0.2.10.dsc
vserver-debiantools_0.2.10.tar.gz
  to pool/main/v/vserver-debiantools/vserver-debiantools_0.2.10.tar.gz
vserver-debiantools_0.2.10_all.deb
  to pool/main/v/vserver-debiantools/vserver-debiantools_0.2.10_all.deb


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



Accepted ucf 2.0014 (source all)

2006-08-20 Thread Manoj Srivastava
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 13:26:29 -0500
Source: ucf
Binary: ucf
Architecture: source all
Version: 2.0014
Distribution: unstable
Urgency: low
Maintainer: Manoj Srivastava [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 ucf- Update Configuration File: preserves user changes to config files
Closes: 381736
Changes: 
 ucf (2.0014) unstable; urgency=low
 .
   * Bug fix: ucf: please document the files that should be removed,
 thanks to Torsten Werner   (Closes: #381736).
Files: 
 7c92e30285d9253730445adbfa5f414a 493 utils optional ucf_2.0014.dsc
 aeadeb5742d50ed6614f2ca98c302efe 123323 utils optional ucf_2.0014.tar.gz
 57c9e2f7bdd0c4626617afda550c570d 55522 utils optional ucf_2.0014_all.deb

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

iD8DBQFE6KunIbrau78kQkwRAqESAKDB0ofJiSI6iqjKFuVwIbWVw5VmUACgzf56
+mvY8cqf7GbcaTg76/C95hE=
=Tbcy
-END PGP SIGNATURE-


Accepted:
ucf_2.0014.dsc
  to pool/main/u/ucf/ucf_2.0014.dsc
ucf_2.0014.tar.gz
  to pool/main/u/ucf/ucf_2.0014.tar.gz
ucf_2.0014_all.deb
  to pool/main/u/ucf/ucf_2.0014_all.deb


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



Accepted php4-sqlite 1.0.2-12 (source i386)

2006-08-20 Thread Jose Carlos Medeiros
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 10:37:37 -0300
Source: php4-sqlite
Binary: php4-sqlite
Architecture: source i386
Version: 1.0.2-12
Distribution: unstable
Urgency: low
Maintainer: Jose Carlos Medeiros [EMAIL PROTECTED]
Changed-By: Jose Carlos Medeiros [EMAIL PROTECTED]
Description: 
 php4-sqlite - PHP4 bindings to SQLite, a file-based SQL engine
Closes: 374424
Changes: 
 php4-sqlite (1.0.2-12) unstable; urgency=low
 .
   * New Mantainer. (Closes: #374424)
Files: 
 cef9828a8b551452d5ee64300f68b269 627 web optional php4-sqlite_1.0.2-12.dsc
 972831b7f9b7c3a5e89a2140d53d0df7 22474 web optional 
php4-sqlite_1.0.2-12.diff.gz
 92681bb89c896b48b7c09a88540673f3 19900 web optional 
php4-sqlite_1.0.2-12_i386.deb

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

iD8DBQFE6K3UGKGxzw/lPdkRArjpAJ97vKLDuZkmxJgUQFOTZW3W14vJygCeKKyK
Iok4gnlyRgcXF4JK4bSWSPo=
=YLJX
-END PGP SIGNATURE-


Accepted:
php4-sqlite_1.0.2-12.diff.gz
  to pool/main/p/php4-sqlite/php4-sqlite_1.0.2-12.diff.gz
php4-sqlite_1.0.2-12.dsc
  to pool/main/p/php4-sqlite/php4-sqlite_1.0.2-12.dsc
php4-sqlite_1.0.2-12_i386.deb
  to pool/main/p/php4-sqlite/php4-sqlite_1.0.2-12_i386.deb


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



Accepted obby 0.4.0~rc4-2 (source i386)

2006-08-20 Thread Philipp Kern
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 22:20:57 +0200
Source: obby
Binary: libobby-0.4-0-dbg libobby-0.4-0 libobby-0.4-dev
Architecture: source i386
Version: 0.4.0~rc4-2
Distribution: experimental
Urgency: low
Maintainer: Philipp Kern [EMAIL PROTECTED]
Changed-By: Philipp Kern [EMAIL PROTECTED]
Description: 
 libobby-0.4-0 - Synced document buffers
 libobby-0.4-0-dbg - Synced document buffers - debugging symbols
 libobby-0.4-dev - Synced document buffers - development files
Changes: 
 obby (0.4.0~rc4-2) experimental; urgency=low
 .
   * Fixed `configure' flags: Enabled IPv6 and Zeroconf support
   * Run the tests after the build
Files: 
 e889df69b2229972d3c2691393105e7f 737 net optional obby_0.4.0~rc4-2.dsc
 f52ae97d86b910dfee1db3a02cd2b039 3330 net optional obby_0.4.0~rc4-2.diff.gz
 2844983675e40ce6618b03f2608fd715 246598 libdevel optional 
libobby-0.4-dev_0.4.0~rc4-2_i386.deb
 79250834e1a9e93980f25e37b291d3aa 126434 libs optional 
libobby-0.4-0_0.4.0~rc4-2_i386.deb
 b2541b85d77da2139808bfd303d050f3 700044 libdevel extra 
libobby-0.4-0-dbg_0.4.0~rc4-2_i386.deb

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

iD8DBQFE6MXz7Ro5M7LPzdgRAgcdAJ4j6Ka2zAqVl+jHcjRpWuI6ZIHy7gCcDWqk
5k6ZXn8X5GyO44ZqrKYI7Rk=
=yUq1
-END PGP SIGNATURE-


Accepted:
libobby-0.4-0-dbg_0.4.0~rc4-2_i386.deb
  to pool/main/o/obby/libobby-0.4-0-dbg_0.4.0~rc4-2_i386.deb
libobby-0.4-0_0.4.0~rc4-2_i386.deb
  to pool/main/o/obby/libobby-0.4-0_0.4.0~rc4-2_i386.deb
libobby-0.4-dev_0.4.0~rc4-2_i386.deb
  to pool/main/o/obby/libobby-0.4-dev_0.4.0~rc4-2_i386.deb
obby_0.4.0~rc4-2.diff.gz
  to pool/main/o/obby/obby_0.4.0~rc4-2.diff.gz
obby_0.4.0~rc4-2.dsc
  to pool/main/o/obby/obby_0.4.0~rc4-2.dsc


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



Accepted drbd0.7 0.7.21-2 (source i386 all)

2006-08-20 Thread Cyril Bouthors
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 22:36:58 +0300
Source: drbd0.7
Binary: drbd0.7-module-source drbd0.7-utils
Architecture: source i386 all
Version: 0.7.21-2
Distribution: unstable
Urgency: low
Maintainer: Cyril Bouthors [EMAIL PROTECTED]
Changed-By: Cyril Bouthors [EMAIL PROTECTED]
Description: 
 drbd0.7-module-source - RAID 1 over tcp/ip for Linux module source
 drbd0.7-utils - RAID 1 over tcp/ip for Linux utilities
Closes: 381765
Changes: 
 drbd0.7 (0.7.21-2) unstable; urgency=low
 .
   * debian/drbd8-module-_KVERS_.postinst.modules.in: take care of chroot
 environments when calling depmod (closes: #381765).
Files: 
 7627392bea1dfec8562d0aeb2d4318e2 725 admin extra drbd0.7_0.7.21-2.dsc
 afddf9023edae8993d84d51c4711d6c3 11251 admin extra drbd0.7_0.7.21-2.diff.gz
 62e7ab92de3c43d6451ac573ca15cf47 280124 admin extra 
drbd0.7-utils_0.7.21-2_i386.deb
 c172a13cf873875dbeafdcfb30fb308c 142132 admin extra 
drbd0.7-module-source_0.7.21-2_all.deb

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

iD8DBQFE6LoDZ1SJHeqsYt8RAhoUAJ0UoiYzSxbUPwlE/gQ3at8QSMEuWwCeMKvz
OUCsx0lljWGqZ3SxetFQgM8=
=Qouc
-END PGP SIGNATURE-


Accepted:
drbd0.7-module-source_0.7.21-2_all.deb
  to pool/main/d/drbd0.7/drbd0.7-module-source_0.7.21-2_all.deb
drbd0.7-utils_0.7.21-2_i386.deb
  to pool/main/d/drbd0.7/drbd0.7-utils_0.7.21-2_i386.deb
drbd0.7_0.7.21-2.diff.gz
  to pool/main/d/drbd0.7/drbd0.7_0.7.21-2.diff.gz
drbd0.7_0.7.21-2.dsc
  to pool/main/d/drbd0.7/drbd0.7_0.7.21-2.dsc


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



Accepted smarty-gettext 1.0b1-2 (source all)

2006-08-20 Thread Cyril Bouthors
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 22:42:09 +0300
Source: smarty-gettext
Binary: smarty-gettext
Architecture: source all
Version: 1.0b1-2
Distribution: unstable
Urgency: low
Maintainer: Cyril Bouthors [EMAIL PROTECTED]
Changed-By: Cyril Bouthors [EMAIL PROTECTED]
Description: 
 smarty-gettext - provides gettext support for smarty
Closes: 372265
Changes: 
 smarty-gettext (1.0b1-2) unstable; urgency=low
 .
   * Depends on php4-cli or php5-cli (closes: #372265).
   * debian/control: updated Standards-Version from 3.6.1 to 3.7.2.
   * debian/copyright: updated FSF address
Files: 
 5cc5009bc38aa6fa26e63debc588399c 590 web optional smarty-gettext_1.0b1-2.dsc
 4f38cf8c2329769e9512cc6c4ccf6343 1623 web optional 
smarty-gettext_1.0b1-2.diff.gz
 eefb3a97be0054ca0d1cd00376f05870 7904 web optional 
smarty-gettext_1.0b1-2_all.deb

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

iD8DBQFE6Lu0Z1SJHeqsYt8RAqA+AJ96Exb32782nUCMMmT7TkvGUVr0BgCeNrsk
L8UE9DBaRIhvmiLXVKP7wn0=
=1Z4H
-END PGP SIGNATURE-


Accepted:
smarty-gettext_1.0b1-2.diff.gz
  to pool/main/s/smarty-gettext/smarty-gettext_1.0b1-2.diff.gz
smarty-gettext_1.0b1-2.dsc
  to pool/main/s/smarty-gettext/smarty-gettext_1.0b1-2.dsc
smarty-gettext_1.0b1-2_all.deb
  to pool/main/s/smarty-gettext/smarty-gettext_1.0b1-2_all.deb


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



Accepted drbd8 8.0-pre4-2 (source i386 all)

2006-08-20 Thread Cyril Bouthors
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 22:13:01 +0300
Source: drbd8
Binary: drbd8-module-source drbd8-utils
Architecture: source i386 all
Version: 8.0-pre4-2
Distribution: unstable
Urgency: low
Maintainer: Cyril Bouthors [EMAIL PROTECTED]
Changed-By: Cyril Bouthors [EMAIL PROTECTED]
Description: 
 drbd8-module-source - RAID 1 over tcp/ip for Linux module source
 drbd8-utils - RAID 1 over tcp/ip for Linux utilities
Closes: 381767
Changes: 
 drbd8 (8.0-pre4-2) unstable; urgency=low
 .
   * debian/drbd8-module-_KVERS_.postinst.modules.in: take care of chroot
 environments when calling depmod (closes: 381767).
Files: 
 37f5ed11bdc36166e2610bcbb32573ba 721 admin extra drbd8_8.0-pre4-2.dsc
 0311e40ffe8688db78308c1801a95dfe 11242 admin extra drbd8_8.0-pre4-2.diff.gz
 7a959bb008603dae3ed1d0463270dca3 115488 admin extra 
drbd8-utils_8.0-pre4-2_i386.deb
 44a57c7fd732036408ce2892838fd7c7 147916 admin extra 
drbd8-module-source_8.0-pre4-2_all.deb

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

iD8DBQFE6LYxZ1SJHeqsYt8RAq1IAJ4uZ0+RlhRNVDeuF9eZoQh2zvuOqACeLLNu
IGACcq/WkGlqlMk8iXY7IAI=
=RtIJ
-END PGP SIGNATURE-


Accepted:
drbd8-module-source_8.0-pre4-2_all.deb
  to pool/main/d/drbd8/drbd8-module-source_8.0-pre4-2_all.deb
drbd8-utils_8.0-pre4-2_i386.deb
  to pool/main/d/drbd8/drbd8-utils_8.0-pre4-2_i386.deb
drbd8_8.0-pre4-2.diff.gz
  to pool/main/d/drbd8/drbd8_8.0-pre4-2.diff.gz
drbd8_8.0-pre4-2.dsc
  to pool/main/d/drbd8/drbd8_8.0-pre4-2.dsc


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



Accepted r-cran-pscl 0.61-1 (source amd64)

2006-08-20 Thread Chris Lawrence
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 12:55:48 -0500
Source: r-cran-pscl
Binary: r-cran-pscl
Architecture: source amd64
Version: 0.61-1
Distribution: unstable
Urgency: low
Maintainer: Chris Lawrence [EMAIL PROTECTED]
Changed-By: Chris Lawrence [EMAIL PROTECTED]
Description: 
 r-cran-pscl - GNU R package for discrete data models
Changes: 
 r-cran-pscl (0.61-1) unstable; urgency=low
 .
   * New upstream release.
Files: 
 31aedf9e22564fbb0ce4fd8a37e877fd 660 math optional r-cran-pscl_0.61-1.dsc
 d7515098470eb598a2192179377a00c1 146384 math optional 
r-cran-pscl_0.61.orig.tar.gz
 38310afa64e497124f26ac13759d1792 1857 math optional r-cran-pscl_0.61-1.diff.gz
 2f4aea8d53bfffd4c17d86da4d891ea7 279522 math optional 
r-cran-pscl_0.61-1_amd64.deb

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

iD8DBQFE51Qd2wQKE6PXubwRAt9TAJ9IQD9mgSmYXSt/GVl5IuY5naPR2gCg1gps
xPK5ZlzbgY+7TjTEyQEO2V0=
=PLET
-END PGP SIGNATURE-


Accepted:
r-cran-pscl_0.61-1.diff.gz
  to pool/main/r/r-cran-pscl/r-cran-pscl_0.61-1.diff.gz
r-cran-pscl_0.61-1.dsc
  to pool/main/r/r-cran-pscl/r-cran-pscl_0.61-1.dsc
r-cran-pscl_0.61-1_amd64.deb
  to pool/main/r/r-cran-pscl/r-cran-pscl_0.61-1_amd64.deb
r-cran-pscl_0.61.orig.tar.gz
  to pool/main/r/r-cran-pscl/r-cran-pscl_0.61.orig.tar.gz


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



Accepted vnc-java 3.3.3r2-7 (source all)

2006-08-20 Thread Ola Lundqvist
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 20:18:32 +0200
Source: vnc-java
Binary: vnc-java
Architecture: source all
Version: 3.3.3r2-7
Distribution: unstable
Urgency: low
Maintainer: Ola Lundqvist [EMAIL PROTECTED]
Changed-By: Ola Lundqvist [EMAIL PROTECTED]
Description: 
 vnc-java   - VNC java applet and command line program
Closes: 383324
Changes: 
 vnc-java (3.3.3r2-7) unstable; urgency=low
 .
   * Correction of bashism in jvncviewer, closes: #383324.
Files: 
 459f277d45470abdec7f888bd0d31e92 587 contrib/x11 optional 
vnc-java_3.3.3r2-7.dsc
 367a6565985ffc8ba85bf4a90ce4422c 21855 contrib/x11 optional 
vnc-java_3.3.3r2-7.diff.gz
 0dfc263cc4f48191bfc1ed0dad68f6c7 64112 contrib/x11 optional 
vnc-java_3.3.3r2-7_all.deb

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

iD8DBQFE6KeXGKGxzw/lPdkRAhs1AJ9BuhHFmL8vg0Dq1n5QI2y87aD3FQCdHZic
OBAOVRAfuK3HDW2P89QMhSg=
=NwI7
-END PGP SIGNATURE-


Accepted:
vnc-java_3.3.3r2-7.diff.gz
  to pool/contrib/v/vnc-java/vnc-java_3.3.3r2-7.diff.gz
vnc-java_3.3.3r2-7.dsc
  to pool/contrib/v/vnc-java/vnc-java_3.3.3r2-7.dsc
vnc-java_3.3.3r2-7_all.deb
  to pool/contrib/v/vnc-java/vnc-java_3.3.3r2-7_all.deb


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



Accepted gnuradio-core 2.8-4 (source all amd64)

2006-08-20 Thread Ramakrishnan Muthukrishnan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 23:56:33 +0530
Source: gnuradio-core
Binary: gnuradio-doc libgnuradio-core0c2a python-gnuradio libgnuradio-core0-dev
Architecture: source amd64 all
Version: 2.8-4
Distribution: unstable
Urgency: low
Maintainer: Ramakrishnan Muthukrishnan [EMAIL PROTECTED]
Changed-By: Ramakrishnan Muthukrishnan [EMAIL PROTECTED]
Description: 
 gnuradio-doc - Software Defined Radio
 libgnuradio-core0-dev - Software Defined Radio
 libgnuradio-core0c2a - Software Defined Radio
 python-gnuradio - Python bindings for GNURadio
Closes: 379487
Changes: 
 gnuradio-core (2.8-4) unstable; urgency=low
 .
   * Fixed the bashisms in debian/rules.
(Closes: #379487)
Files: 
 6c4c10b42aa9b57fe7bec780bdef1f50 890 libs optional gnuradio-core_2.8-4.dsc
 d32c6797dd915983d227cff9ac408098 9921 libs optional gnuradio-core_2.8-4.diff.gz
 8409d9f25ed2f93be7223b1dbbf055e6 944602 libdevel optional 
libgnuradio-core0-dev_2.8-4_amd64.deb
 1f7d01eb33cfdb9ebcb97585584a1edc 460736 libs optional 
libgnuradio-core0c2a_2.8-4_amd64.deb
 b9d84928be5fac20d0eb773b95b5710f 1203226 doc optional 
gnuradio-doc_2.8-4_all.deb
 230de5c89bc62a3ca3f1e8a04b22924b 3971830 python optional 
python-gnuradio_2.8-4_amd64.deb

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

iD8DBQFE6K1aFyn1hmqfPDgRAixQAJ9vP2trtTY2Zd1peO2v8GTzspxDiACgl54D
mjTh7lZm7uJSGBM2F5XK7HM=
=7IOr
-END PGP SIGNATURE-


Accepted:
gnuradio-core_2.8-4.diff.gz
  to pool/main/g/gnuradio-core/gnuradio-core_2.8-4.diff.gz
gnuradio-core_2.8-4.dsc
  to pool/main/g/gnuradio-core/gnuradio-core_2.8-4.dsc
gnuradio-doc_2.8-4_all.deb
  to pool/main/g/gnuradio-core/gnuradio-doc_2.8-4_all.deb
libgnuradio-core0-dev_2.8-4_amd64.deb
  to pool/main/g/gnuradio-core/libgnuradio-core0-dev_2.8-4_amd64.deb
libgnuradio-core0c2a_2.8-4_amd64.deb
  to pool/main/g/gnuradio-core/libgnuradio-core0c2a_2.8-4_amd64.deb
python-gnuradio_2.8-4_amd64.deb
  to pool/main/g/gnuradio-core/python-gnuradio_2.8-4_amd64.deb


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



Accepted netatalk 2.0.3-5 (source powerpc)

2006-08-20 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 13 Aug 2006 04:22:26 +0200
Source: netatalk
Binary: netatalk
Architecture: source powerpc
Version: 2.0.3-5
Distribution: unstable
Urgency: low
Maintainer: Sebastian Rittau [EMAIL PROTECTED]
Changed-By: Jonas Smedegaard [EMAIL PROTECTED]
Description: 
 netatalk   - AppleTalk user binaries
Changes: 
 netatalk (2.0.3-5) unstable; urgency=low
 .
   * Change back to unversioned build-dependency on heimdal-dev again
 (it was only a temporary need, and prevented backporting to sarge).
   * Add patches to fix a few missed sed replacements:
 + 101_fix_manpage_sed_replacements.patch
 + 208_fix_manpage_sed_replacements_for_automade_file.patch
   * Add patches to make upstream sysv init-file behave sanely:
 + 102_rename_initscript.patch
 + 103_initscript_background_off_by_default.patch
 + 104_initscript_load_module_only_if_intended.patch
 + 105_initscript_config_in_etc-default.patch
 + 106_papd_needs_atalk_and_fix_bashism.patch
 + 209_rename_initscript_for_automade_file.patch
 + 210_avoid_update-rc-d.patch
 + 211_avoid_update-rc-d_for_automade_file.patch
   * Add debian/patches/README explaining the patch numbering scheme.
   * Enable the use of upstream Debian-compliant init-file:
 + SysV daemons honours locale defaults.
 + SysV script handles new cnid daemon.
   * Have debhelper reinstall init-file, adding maintainer script hooks.
   * Rename NEWS.Debian to NEWS in source to get recognized by debhelper
 (yes, seems odd, but that's how it works).
   * Recommend procps, needed by macusers.
   * Fix default UAM list (upstream assumes openssl is compiled in).
   * Improve use of cdbs:
 + Add local snippet copyright-check.mk: Scan source for (c) changes.
 + Add local snippet auto-update.mk: auto-update build-dependencies.
   (enabled only when environment includes DEB_BUILD_OPTIONS=update).
 + Add local snippet buildinfo.mk: Include env info with binary pkgs
 + (instead of invoking buildinfo directly within debian/rules).
 + Switch to using patchsys-quilt (instead of simple-patchsys).
   * Add comments documenting the various parts of debian/rules, and
 avoid indentation, to not show them during build.
   * Fix my entry as package uploader.
   * Add netatalk_update.sh (found on upstream wiki) as example script.
   * Support autobuilding of ssl-enabled packages when DEB_BUILD_OPTIONS
 contains ssl:
 + Include ssl-related build-dependencies with cdbs auto-update (when
   environment contains DEB_BUILD_OPTIONS=update,ssl or similar).
 + Extend default UAM list handling to toggle SSL-enabled UAMs.
 + Safety-check: Refuse to build if build-depending on libssl but
   without ssl included in DEB_BUILD_OPTIONS (if auto-updated to
   use ssl but later incosistently built without it enabled).
   * Update note in README.Debian about unofficial ssl-enabled packages
 to refer to new netatalk-only repository:
 deb http://debian.jones.dk/ $DIST/netatalk main
   * Bump up standards-version to 3.7.2 (no changes needed).
   * Drop no longer relevant (pre-potato) dependencies:
 - Depended on libpam-runtime (= 0.76-14).
 - Conflicted with libatalk1 and netatalk-dev.
 - Replaced libatalk1.
Files: 
 bf5c7f47ab51f231f759066227de0086 857 net extra netatalk_2.0.3-5.dsc
 a997d0fa93d33be3cdc0ba9b8b3813c6 40377 net extra netatalk_2.0.3-5.diff.gz
 5cb669f6a62448f4c86b30ea0f50f1dd 759588 net extra netatalk_2.0.3-5_powerpc.deb

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

iD8DBQFE3p/cn7DbMsAkQLgRAmt5AJ9K3fJf9DIimvJkgVJKZLQsqykr3gCcCW2V
pcRg4U3V1lf7Ql34M8fdKUo=
=7iB9
-END PGP SIGNATURE-


Accepted:
netatalk_2.0.3-5.diff.gz
  to pool/main/n/netatalk/netatalk_2.0.3-5.diff.gz
netatalk_2.0.3-5.dsc
  to pool/main/n/netatalk/netatalk_2.0.3-5.dsc
netatalk_2.0.3-5_powerpc.deb
  to pool/main/n/netatalk/netatalk_2.0.3-5_powerpc.deb


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



Accepted slang-slirp 1.9.0-1-5 (source i386)

2006-08-20 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 20:11:29 +0200
Source: slang-slirp
Binary: slang-slirp
Architecture: source i386
Version: 1.9.0-1-5
Distribution: unstable
Urgency: low
Maintainer: Debian JED Group [EMAIL PROTECTED]
Changed-By: Rafael Laboissiere [EMAIL PROTECTED]
Description: 
 slang-slirp - C code generator for the S-Lang scripting language
Changes: 
 slang-slirp (1.9.0-1-5) unstable; urgency=low
 .
   * debian/rules: Add -FPIC to FCFLAGS.  This should fix the building
 problems in 64-bit architectures.  The patch debug-#383777 will be
 kept to see if there are further problems with the autobuilders and
 will be removed in the next upload.
Files: 
 96bf228e5df0558e9e9e123ae27365cb 726 interpreters optional 
slang-slirp_1.9.0-1-5.dsc
 6f9b70963390a592ef5d34074ba8bd76 3984 interpreters optional 
slang-slirp_1.9.0-1-5.diff.gz
 e3a321bb7bfe9ea31be1f26ffd26ed56 234854 interpreters optional 
slang-slirp_1.9.0-1-5_i386.deb

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

iD8DBQFE6LfTk3oga0pdcv4RAju3AKCDTTruYAULZ2DT+qckOqbEivJkdgCgnATE
5qzBGuUk8iBFZWqLGfqAbvU=
=m/wC
-END PGP SIGNATURE-


Accepted:
slang-slirp_1.9.0-1-5.diff.gz
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-5.diff.gz
slang-slirp_1.9.0-1-5.dsc
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-5.dsc
slang-slirp_1.9.0-1-5_i386.deb
  to pool/main/s/slang-slirp/slang-slirp_1.9.0-1-5_i386.deb


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



Accepted ikiwiki 1.21 (source all)

2006-08-20 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 16:42:54 -0400
Source: ikiwiki
Binary: ikiwiki
Architecture: source all
Version: 1.21
Distribution: unstable
Urgency: low
Maintainer: Joey Hess [EMAIL PROTECTED]
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 ikiwiki- a wiki compiler
Changes: 
 ikiwiki (1.21) unstable; urgency=low
 .
   * Add a tail fin^W^Wsidebar plugin by Tuomo Valkonen.
   * If a page links to itself, mark up the link text in a span with
 class=selflink so that it can be styled. I don't have a useful style
 defined for that though.
   * Call filter hooks on inlined page content.
   * Support inlining pages raw, rather than creating a blog.
   * Clean up yes/no parameter parsing in inline plugin.
   * Implemented better cycle detection in the inline plugin; nested inlines
 will now work.
   * Add a map plugin contributed by Alessandro Dotti Contra.
   * Add otl format plugin, which handles files as created by vimoutliner.
   * Fix ikiwiki-mass-rebuild to work in the way the postinst uses it.
   * Add first draft at a Restructured Text (rst) plugin, by Sergio
 Talens-Oliag. Note that this has many known issues -- see the caveats on
 the plugin's page.
   * Credit everyone who wrote a plugin on the plugins' wiki pages.
   * Fix utf-8 in blog post form.
Files: 
 2b28ae72963af35af19b0e158b879e9e 649 web optional ikiwiki_1.21.dsc
 f23a01e1c42570fc232a19c7457dde62 134995 web optional ikiwiki_1.21.tar.gz
 0ae0c619506535334742a1e83c680dc1 167576 web optional ikiwiki_1.21_all.deb

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

iD8DBQFE6MrG2tp5zXiKP0wRAv4CAJ0ZILL3LJBAvRpGt/vFchWLusviSACghkF0
uoeXJ0Qa7VG2BCgnckCCc1Y=
=WIBP
-END PGP SIGNATURE-


Accepted:
ikiwiki_1.21.dsc
  to pool/main/i/ikiwiki/ikiwiki_1.21.dsc
ikiwiki_1.21.tar.gz
  to pool/main/i/ikiwiki/ikiwiki_1.21.tar.gz
ikiwiki_1.21_all.deb
  to pool/main/i/ikiwiki/ikiwiki_1.21_all.deb


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



Accepted dhcp3 3.0.4-7 (source i386)

2006-08-20 Thread Andrew Pollock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 14:12:28 -0700
Source: dhcp3
Binary: dhcp3-client-udeb dhcp3-common dhcp3-relay dhcp3-dev dhcp3-client 
dhcp3-server
Architecture: source i386
Version: 3.0.4-7
Distribution: unstable
Urgency: low
Maintainer: Eloy A. Paris [EMAIL PROTECTED]
Changed-By: Andrew Pollock [EMAIL PROTECTED]
Description: 
 dhcp3-client - DHCP Client
 dhcp3-client-udeb - DHCP Client for debian-installer (udeb)
 dhcp3-common - Common files used by all the dhcp3* packages
 dhcp3-dev  - API for accessing and modifying the DHCP server and client state
 dhcp3-relay - DHCP Relay
 dhcp3-server - DHCP server for automatic IP address assignment
Closes: 162808 368922 374031 381830 383117 383122
Changes: 
 dhcp3 (3.0.4-7) unstable; urgency=low
 .
   * Added debconf templates to mention that dhclient doesn't get restarted
 (closes: #368922)
   * debian/patches/Makefile.dpatch: removed hunks that stopped manpage
 token substitution from occurring, modify value for ETC so manpage paths
 are all anatomically correct (closes: #162808)
   * Updated Brazilian Portuguese debconf template translation (closes:
 #374031)
   * Updated Turkish debconf template translation
   * Updated Japanese debconf template translation
   * Added Italian debconf template translation (grazie Luca Monducci) (closes:
 #381830)
   * Updated documentation patch to fix a couple of spelling mistakes in
 dhcpd3(8) and dhcpd.conf(5) (closes: #383117, #383122)
Files: 
 78a8789c5b09b09854b65170ebc3707d 751 net standard dhcp3_3.0.4-7.dsc
 b5f6a5e4adb3edd30eb6f6c98a182f59 126974 net standard dhcp3_3.0.4-7.diff.gz
 a307543c44d7128ccb39e99cc6ec401c 290610 net standard 
dhcp3-server_3.0.4-7_i386.deb
 54fbdaaa93e21a1a6e4618e1ea0db544 264360 net standard 
dhcp3-common_3.0.4-7_i386.deb
 bff3e3584b77021897f64bbf3c41a30b 116638 devel standard 
dhcp3-dev_3.0.4-7_i386.deb
 3a8e0a94b494e820045461fef99e4505 192520 net standard 
dhcp3-client_3.0.4-7_i386.deb
 482e6c60ad876d7e6d6fc3b09ff60656 150606 debian-installer standard 
dhcp3-client-udeb_3.0.4-7_i386.udeb
 3d8020ab237122ab53c1a151928205d3 91800 net standard 
dhcp3-relay_3.0.4-7_i386.deb
Package-Type: udeb

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

iD8DBQFE6NPJIblXXKfZFgIRAsPkAJwMEqQfdRDBTQcHLYbI9u2S9G9SdgCgs7R6
/nTe1LckuJlRfXZPcLihxbI=
=4bMg
-END PGP SIGNATURE-


Accepted:
dhcp3-client-udeb_3.0.4-7_i386.udeb
  to pool/main/d/dhcp3/dhcp3-client-udeb_3.0.4-7_i386.udeb
dhcp3-client_3.0.4-7_i386.deb
  to pool/main/d/dhcp3/dhcp3-client_3.0.4-7_i386.deb
dhcp3-common_3.0.4-7_i386.deb
  to pool/main/d/dhcp3/dhcp3-common_3.0.4-7_i386.deb
dhcp3-dev_3.0.4-7_i386.deb
  to pool/main/d/dhcp3/dhcp3-dev_3.0.4-7_i386.deb
dhcp3-relay_3.0.4-7_i386.deb
  to pool/main/d/dhcp3/dhcp3-relay_3.0.4-7_i386.deb
dhcp3-server_3.0.4-7_i386.deb
  to pool/main/d/dhcp3/dhcp3-server_3.0.4-7_i386.deb
dhcp3_3.0.4-7.diff.gz
  to pool/main/d/dhcp3/dhcp3_3.0.4-7.diff.gz
dhcp3_3.0.4-7.dsc
  to pool/main/d/dhcp3/dhcp3_3.0.4-7.dsc


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



Accepted cvsd 1.0.13 (source i386)

2006-08-20 Thread Arthur de Jong
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 14:22:58 +0200
Source: cvsd
Binary: cvsd
Architecture: source i386
Version: 1.0.13
Distribution: unstable
Urgency: low
Maintainer: Arthur de Jong [EMAIL PROTECTED]
Changed-By: Arthur de Jong [EMAIL PROTECTED]
Description: 
 cvsd   - chroot wrapper to run `cvs pserver' more securely
Closes: 383067
Changes: 
 cvsd (1.0.13) unstable; urgency=low
 .
   * cvsd-buildroot: further portability improvements on 64 bit platforms
   * added Portuguese debconf translation by Ricardo Silva (closes: #383067)
   * added warnings and errors on failing to close a socket
   * added LSB headers to init script
Files: 
 7899f66bb8516a74b50a157e10e2eba2 487 net optional cvsd_1.0.13.dsc
 1d5a0d06e42947ba7681c38423767fe0 247817 net optional cvsd_1.0.13.tar.gz
 c4d09b70545a4e38b7a29a8e2cf01fb2 86062 net optional cvsd_1.0.13_i386.deb

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

iD8DBQFE6M2WVYan35+NCKcRAhTjAKCz4h2H3D8bFCaBw/7A/aN0NHvssgCfQ/B7
rLJOe1X3dOhFpKgp9n56bwI=
=HTOg
-END PGP SIGNATURE-


Accepted:
cvsd_1.0.13.dsc
  to pool/main/c/cvsd/cvsd_1.0.13.dsc
cvsd_1.0.13.tar.gz
  to pool/main/c/cvsd/cvsd_1.0.13.tar.gz
cvsd_1.0.13_i386.deb
  to pool/main/c/cvsd/cvsd_1.0.13_i386.deb


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



Accepted debian-edu-install 0.653 (source all)

2006-08-20 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 23:10:29 +0200
Source: debian-edu-install
Binary: debian-edu-install-udeb debian-edu-install debian-edu-profile-udeb
Architecture: source all
Version: 0.653
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-edu@lists.debian.org
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 debian-edu-install - Override base-config to install Debian-Edu without 
questions
 debian-edu-install-udeb - Execute Debian-Edu debian-installer profile (udeb)
 debian-edu-profile-udeb - Choose Debian-Edu profile (udeb)
Closes: 275028
Changes: 
 debian-edu-install (0.653) unstable; urgency=low
 .
   [ Morten Werner Olsen and Steffen Joeris ]
   * Tested Barebone profile which installs as expected and
 can now be used (Closes: #275028)
 .
   [ Steffen Joeris ]
   * Avoid the kernel question during the installation by
 adding seen flags to the debian-edu-profile script
   * Avoid question for display modes, because this will be
 set later on by xdebconfigurator
   * Specify some standard display modes in defaults.common for now
   * Avoid message which shows up due to x11-common upgrade
 problems and which is unimportant us
   * Set manual partitioning for debian-edu-expert mode and do
 automatic partitioning during normal debian-edu installations
   * Change debhelper to build-depends as we need it during the clean
 target
   * Bump to debhelper level 4 and therefore create compat file and delete
 compat code in debian/rules
 .
   [ Petter Reinholdtsen ]
   * Always quote $tasksel in debian-edu-profile, to make sure
 the task name can contain () like the standalone task do.
   * Install our laptop task as well as the official
 debian laptop task if PCMCIA is detected.
   * Move code generating /etc/debian-edu/config to the hook executed
 just after the base system is installed, to make sure it is
 available when debian-edu-config is installed.
   * Drop old code to convert locale name no_NO to nb_NO.  nb_NO is the
 value used in debian/etch.
   * Drop old code to add se_NO to /usr/share/i18n/SUPPORTED.  The
 value is included in debian/etch.
   * Fix typo in debian-edu-profile introduced with the autopartitioning change.
   * Move away /sbin/tune2fs when asking the profile question, to force
 partman-ext3 to use mkfs.ext3 instead of libparted and tune2fs, and thus
 get -O resize_inode enabled on all created file systems.
   * Remove all traces of the standalone-extra task.  It is now merged with the
 standalone task.
   * Adjust the preseeding code to make sure debconf values are passed
 into /target/ by the post-base-installer hook from preseed when
 the base system is installed, by appending them to /var/lib/preseed/log.
   * Add dash preseeding to let it replace /bin/sh.
   * Use preseeding to install debian-edu-artwork-usplash before the
 kernel, to speed up the installation.
   * Update standards-version to 3.7.2.  No changes needed.
   * Remove obsolete debconf-save-answers and debconf-load-defaults,
 and use the replacement debconf-get-selections and
 debconf-set-selections from debconf-utils.  Add dependency to make
 sure they is available.
   * Move preseeding of samba-common/workgroup from the main-server to
 the common file, to avoid question when installing the
 workstation, thin-client-server and standalone task.
   * Preseed grub-installer/only_debian in d-i to avoid the question
 from grub.
   * Create /target/var/lib/nss-ldap/bind_policy_soft before packages
 are installed, to avoid hanging forever while installing the
 main-server profile.
Files: 
 361ba8d78152683e177414d7eaea6bf6 819 misc optional debian-edu-install_0.653.dsc
 9c73809a815f291baa3f73cdb58829c7 97693 misc optional 
debian-edu-install_0.653.tar.gz
 425202b460d6dac1748656b16849d803 71986 misc optional 
debian-edu-install_0.653_all.deb
 3467499c68d50b9aa6ee6cb9fc2a4e8b 8110 debian-installer optional 
debian-edu-install-udeb_0.653_all.udeb
 4f89288fe5635c6bea0d59372ea8a370 41068 debian-installer optional 
debian-edu-profile-udeb_0.653_all.udeb

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

iD8DBQFE6NDt20zMSyow1ykRAhFZAKC7NrnBPGf6bDwTZW3u1VQqR5KXRQCfW5Ka
dsgIIIhDR6gDoK9TpZsvEvs=
=yg9x
-END PGP SIGNATURE-


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


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

Accepted debian-edu 0.807 (source i386)

2006-08-20 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 23:05:35 +0200
Source: debian-edu
Binary: education-services education-main-server education-desktop-other 
education-common education-thin-client-server education-music 
education-mathematics education-desktop-kde education-tasks education-chemistry 
education-workstation education-logic-games education-electronics 
education-graphics education-language education-laptop education-geography 
education-physics education-networked education-standalone 
education-desktop-gnome education-astronomy education-misc
Architecture: source i386
Version: 0.807
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-edu@lists.debian.org
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 education-astronomy - DebianEdu astronomy related applications
 education-chemistry - DebianEdu chemistry related applications
 education-common - DebianEdu common packages
 education-desktop-gnome - DebianEdu GNOME desktop applications
 education-desktop-kde - DebianEdu KDE desktop applications
 education-desktop-other - DebianEdu desktop applications (non-GNOME and 
non-KDE)
 education-electronics - DebianEdu electronics related applications
 education-geography - DebianEdu applications for geography
 education-graphics - DebianEdu graphics related applications
 education-language - DebianEdu language related educational applications
 education-laptop - DebianEdu laptop packages
 education-logic-games - DebianEdu logic games
 education-main-server - DebianEdu main server packages
 education-mathematics - DebianEdu mathematical applications
 education-misc - DebianEdu miscellaneous applications for education
 education-music - DebianEdu music and sound applications
 education-networked - DebianEdu networked packages
 education-physics - DebianEdu physics related applications
 education-services - DebianEdu services for educational institutions
 education-standalone - DebianEdu standalone workstation packages
 education-tasks - Debian Edu tasks for tasksel
 education-thin-client-server - DebianEdu networked thin client server packages
 education-workstation - DebianEdu networked workstation packages
Changes: 
 debian-edu (0.807) unstable; urgency=low
 .
   [ Petter Reinholdtsen ]
   * Select kaffeine as the multimedia player of choice, and list the
 others (totem, vlc, xmms, xine) as recommends.
   * Recommend cpqarrayd in the common task.  It is useful with some
 RAID systems.
   * List ksmserver as a direct depend in the desktop-kde task, to
 make the task more robust against dependency problems in kdebase.
   * List pciutils explicitly in the common task, to increase the
 chance that it is installed when there are dependency problems.
   * Merge standalone-extra into standalone.  We only have one profile,
 so the standalone extra task is obsolete.  Removed the
 standalone-extra task.
   * Copy package list for winbind authentication and SMB mounted home
 directories from extrapkgs-etch-test.txt and list them as
 recommends in the networked task to increase the chance to get
 them on the CD.
   * Recommend subversion alongside cvs in the standalone task.
   * Reduce knotes and kscd to recommends.  Very few are using knotes,
 and other tools on the Cd can play music CDs.
   * Redice xpdf to suggest.  kghostview can view PDF files, so xpdf is
 redundant.
   * Remove nonexisting package gs-pdfencrypt from the standalone task.
   * Reduce gimp to recommends (the user interface is too complex to
 defend spending 15 MiB on the CD for it).  Promote sodipodi to
 depend in its place.  Need to find a proper and smaller replacement.
   * Reduce priority of quanta, as it has very few users.
   * Recommend the CD/DVD writer system k3b in the standalone task.
   * Add kaddressbook to the desktop-kde task, as it is needed by kmail to
 organise addresses.
   * Group all multimedia player related packages in the standalone
 task, and reduce depends to recommends for several of the
 xmms-related packages.
   * Add vlc to the list of possible media players in the standalone task.
 Recommend the mozilla plugin packages.
 .
   [ Steffen Joeris ]
   * Removed unneeded build-depends-indep against debhelper as we have it
 in build-depends
   * Hint debian-edu-artwork-usplash via the education-common package to make
 sure we have it included and can remove it from manual hinting lists
   * Change debhelper level to 4
Files: 
 b884ba38f42280653d2c3a61d9f98e86 1225 misc extra debian-edu_0.807.dsc
 d7489d381dfddcebcce24b6c96052884 28281 misc extra debian-edu_0.807.tar.gz
 23aa5696b142b14cad7d586925a03e4d 15540 misc extra 
education-tasks_0.807_i386.deb
 521fbf2e734c93cfd4ca27c5f13e886c 11016 misc extra 
education-astronomy_0.807_i386.deb
 efba86480a255db3e1033055d0ea0d23 10984 misc extra 
education-chemistry_0.807_i386.deb
 9ba736cf1c1131f494b09dfe4aaa70fd 11358 misc 

Accepted argus-client 3.0.0.rc.26-1 (source i386)

2006-08-20 Thread Andrew Pollock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 14:32:53 -0700
Source: argus-client
Binary: argus-client
Architecture: source i386
Version: 3.0.0.rc.26-1
Distribution: experimental
Urgency: low
Maintainer: Andrew Pollock [EMAIL PROTECTED]
Changed-By: Andrew Pollock [EMAIL PROTECTED]
Description: 
 argus-client - IP network transaction auditing tool
Changes: 
 argus-client (3.0.0.rc.26-1) experimental; urgency=low
 .
   * New upstream release
Files: 
 2ab72516581e6eb2df7d3f8fe605b7a4 678 net optional 
argus-client_3.0.0.rc.26-1.dsc
 b1b25c6e69559ca40b7367226edf09ef 699523 net optional 
argus-client_3.0.0.rc.26.orig.tar.gz
 2eeebcf1decab42079c6fd07d1a532a2 31832 net optional 
argus-client_3.0.0.rc.26-1.diff.gz
 b8797b500834f05bee52bd2532bf7c99 1754084 net optional 
argus-client_3.0.0.rc.26-1_i386.deb

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

iD8DBQFE6NumIblXXKfZFgIRAneMAJ94ilvdvNVPeBhhgShhhPbHTwRUcgCgwSJP
1hntBJS524oyskQt/JYHhf4=
=870u
-END PGP SIGNATURE-


Accepted:
argus-client_3.0.0.rc.26-1.diff.gz
  to pool/main/a/argus-client/argus-client_3.0.0.rc.26-1.diff.gz
argus-client_3.0.0.rc.26-1.dsc
  to pool/main/a/argus-client/argus-client_3.0.0.rc.26-1.dsc
argus-client_3.0.0.rc.26-1_i386.deb
  to pool/main/a/argus-client/argus-client_3.0.0.rc.26-1_i386.deb
argus-client_3.0.0.rc.26.orig.tar.gz
  to pool/main/a/argus-client/argus-client_3.0.0.rc.26.orig.tar.gz


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



Accepted bayonne 1.2.16-6 (source all powerpc)

2006-08-20 Thread Mark Purcell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 11:53:22 +0100
Source: bayonne
Binary: bayonne-prompts-en bayonne bayonne-doc bayonne-prompts-sys
Architecture: source all powerpc
Version: 1.2.16-6
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Team [EMAIL PROTECTED]
Changed-By: Mark Purcell [EMAIL PROTECTED]
Description: 
 bayonne- Telephony server of the GNU project
 bayonne-doc - bayonne documentation
 bayonne-prompts-en - bayonne voice library for US English speaker
 bayonne-prompts-sys - bayonne sys voice library
Changes: 
 bayonne (1.2.16-6) unstable; urgency=low
 .
   * configure --without-xml
Files: 
 a2b9a3b0398d337c84c74a5d37a7fd85  comm optional bayonne_1.2.16-6.dsc
 0e19c54b6226f3c654934fcaa6b226ad 31321 comm optional bayonne_1.2.16-6.diff.gz
 abab711ea8628afa30d55bc27c647047 1360604 comm optional 
bayonne-doc_1.2.16-6_all.deb
 eadda3d3b8ded5da1b334f652170acd2 1045476 comm optional 
bayonne-prompts-en_1.2.16-6_all.deb
 831cac6d03982b2e2dd67f679385bfbe 2223412 comm optional 
bayonne-prompts-sys_1.2.16-6_all.deb
 33e00ba35f528c0d7b5a33985781f6a2 446038 comm optional 
bayonne_1.2.16-6_powerpc.deb

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

iD8DBQFE6NMEoCzanz0IthIRAitEAJ9Bf6mSzbaHQLWgYcwJat/PiKuUKQCeOzME
Gct+kBUsIQb8xl/p0nnKpKA=
=wkH+
-END PGP SIGNATURE-


Accepted:
bayonne-doc_1.2.16-6_all.deb
  to pool/main/b/bayonne/bayonne-doc_1.2.16-6_all.deb
bayonne-prompts-en_1.2.16-6_all.deb
  to pool/main/b/bayonne/bayonne-prompts-en_1.2.16-6_all.deb
bayonne-prompts-sys_1.2.16-6_all.deb
  to pool/main/b/bayonne/bayonne-prompts-sys_1.2.16-6_all.deb
bayonne_1.2.16-6.diff.gz
  to pool/main/b/bayonne/bayonne_1.2.16-6.diff.gz
bayonne_1.2.16-6.dsc
  to pool/main/b/bayonne/bayonne_1.2.16-6.dsc
bayonne_1.2.16-6_powerpc.deb
  to pool/main/b/bayonne/bayonne_1.2.16-6_powerpc.deb


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



Accepted gnuplot 4.0.0-4 (source all i386)

2006-08-20 Thread Cyril Bouthors
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 21 Aug 2006 01:02:06 +0300
Source: gnuplot
Binary: gnuplot-doc gnuplot-x11 gnuplot-nox gnuplot
Architecture: source all i386
Version: 4.0.0-4
Distribution: unstable
Urgency: low
Maintainer: Cyril Bouthors [EMAIL PROTECTED]
Changed-By: Cyril Bouthors [EMAIL PROTECTED]
Description: 
 gnuplot- A command-line driven interactive plotting program
 gnuplot-doc - Documentation for gnuplot
 gnuplot-nox - A command-line driven interactive plotting program
 gnuplot-x11 - X11-terminal driver for gnuplot
Changes: 
 gnuplot (4.0.0-4) unstable; urgency=low
 .
   * debian/copyright: updated current and previous maintainers names and
 email adresses. Use http://gnuplot.info/ as URL.
   * removed useless debian/changelog.latin1
   * debian/control: updated standards-version from 3.6.2.2 to 3.7.2
Files: 
 5f1dc87941100166879e13ebc4ec6bc3 729 math optional gnuplot_4.0.0-4.dsc
 087efa006b74082d1657520423c686d5 35507 math optional gnuplot_4.0.0-4.diff.gz
 2a8a04f724f5a5ea39799c55f956516e 1386 math optional gnuplot_4.0.0-4_all.deb
 b95182b42ba6c3dbe1224e2121679e6f 1720344 doc optional 
gnuplot-doc_4.0.0-4_all.deb
 d68238d7be9da49e54a2ce9fd94ed21b 724158 math optional 
gnuplot-nox_4.0.0-4_i386.deb
 a99f69082d700272507c718801d9548c 180084 math optional 
gnuplot-x11_4.0.0-4_i386.deb

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

iD8DBQFE6NxiZ1SJHeqsYt8RArsqAKClYv3yf/pJOkvMqN7j+UU4vigAugCfTBCQ
RKSuAN71Cl1pZgqZDxc7Jt8=
=1XHk
-END PGP SIGNATURE-


Accepted:
gnuplot-doc_4.0.0-4_all.deb
  to pool/main/g/gnuplot/gnuplot-doc_4.0.0-4_all.deb
gnuplot-nox_4.0.0-4_i386.deb
  to pool/main/g/gnuplot/gnuplot-nox_4.0.0-4_i386.deb
gnuplot-x11_4.0.0-4_i386.deb
  to pool/main/g/gnuplot/gnuplot-x11_4.0.0-4_i386.deb
gnuplot_4.0.0-4.diff.gz
  to pool/main/g/gnuplot/gnuplot_4.0.0-4.diff.gz
gnuplot_4.0.0-4.dsc
  to pool/main/g/gnuplot/gnuplot_4.0.0-4.dsc
gnuplot_4.0.0-4_all.deb
  to pool/main/g/gnuplot/gnuplot_4.0.0-4_all.deb


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



Accepted lire 2:2.0.2-1 (source all)

2006-08-20 Thread Wolfgang Sourdeau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 08 Jun 2006 14:31:20 +0200
Source: lire
Binary: lire-doc lire lire-devel-doc
Architecture: source all
Version: 2:2.0.2-1
Distribution: unstable
Urgency: low
Maintainer: Wolfgang Sourdeau [EMAIL PROTECTED]
Changed-By: Wolfgang Sourdeau [EMAIL PROTECTED]
Description: 
 lire   - full-featured log analyzer and report generator
 lire-devel-doc - Developer's documentation for Lire
 lire-doc   - Documentation for Lire
Closes: 312504 312505 313545 313991 319932 332010 334996 351636 360957
Changes: 
 lire (2:2.0.2-1) unstable; urgency=low
 .
   * Debian package release prepared by Joost van Baal [EMAIL PROTECTED].
   * New upstream release:
 - (partial) fix for Bug #291063.
 - allow for extra  - : support new style cups page_log. Thanks Marco
   Gaiarin.  (Closes: #313545).
   * debian/{lr_vendor_cron,rules}: no longer use our own lr_vendor_cron
 script, but use the fixed upstream one.
   * debian/copyright: Fix FSF snailmail address.
   * debian/control: Fix Build-Depends-Indep: debhelper to Build-Depends.
 Update Standards-Version from 3.6.1 to 3.7.2 (no changes needed).
   * debian/control: Add | debconf-2.0 to hardcoded Depends: debconf (=
 1.0.32).  (We're not going with ${misc:Depends}, since that would use
 debconf (= 0.5) | which we can't guarantee.) (Closes: #332010).
   * debian/control: add Pre-Depends: adduser, since we're using that in
 lire.preinst.
   * debian/rules: don't use /usr/lib but /usr/share/lire/lib as libexecdir:
 adhere to FHS: architecture-independent files belong in /usr/share.
   * debian/lire.preinst: Fix deprecated chown(1) usage.
   * debian/apache2.cfg: added.  Thanks Vincent Danjean. (Closes: #360957).
   * debian/{lire.config,lire.postinst,templates}: drop support for upgrades
 from versions  2.0: Debian 3.1 Sarge, shipped june 2005, comes with
 2.0.1-4.  We've removed buggy (thanks Andrew Pollock for pointing this
 out) code which dealt with this, which Closes: #334996.
   * debian/templates: Improve phrasing of lire/lire_user_not_lire and
 lire/purge_user_files.
   * debian/templates: Fix 2 language bugs.  Thanks Clytie Siddall.
 (Closes: #312505).
   * debian/po/sv.po: Added Swedish translation, thanks to Daniel Nylander
 (Closes: #351636).
   * debian/po/cs.po: Added Czech translation, thanks to Martin Šín
 (Closes: #319932).
   * debian/po/vi.po: Added Vietnamese translation, thanks to Clytie Siddall
 (Closes: #312504).
   * debian/po/de.po: Minor German language corrections.  Thanks Jens Seidel
 (Closes: #313991).
Files: 
 b410984badede09b842982bfc1bd4260 803 admin optional lire_2.0.2-1.dsc
 9b3ece00dea98b3632f8113f0fd5900f 2787983 admin optional lire_2.0.2.orig.tar.gz
 ed51ec5c0c45f7e79ed1b0c2a4e3a227 31730 admin optional lire_2.0.2-1.diff.gz
 3ef0d81ba5dc7637271eba208d0d30d6 1160814 admin optional lire_2.0.2-1_all.deb
 9a883dfcc655539439ee9844da0b55ce 287348 doc optional lire-doc_2.0.2-1_all.deb
 a90c5d1c27aa3f5704ecb7d1ab76cbbd 1203112 doc optional 
lire-devel-doc_2.0.2-1_all.deb

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

iD8DBQFE6NBhUP8yyofKtg8RAjhbAJ9Au3h2rSE+IjXFYggmippDPm5w8QCffiZB
3yaHWKUyuA935/497xv8c7U=
=Z5l+
-END PGP SIGNATURE-


Accepted:
lire-devel-doc_2.0.2-1_all.deb
  to pool/main/l/lire/lire-devel-doc_2.0.2-1_all.deb
lire-doc_2.0.2-1_all.deb
  to pool/main/l/lire/lire-doc_2.0.2-1_all.deb
lire_2.0.2-1.diff.gz
  to pool/main/l/lire/lire_2.0.2-1.diff.gz
lire_2.0.2-1.dsc
  to pool/main/l/lire/lire_2.0.2-1.dsc
lire_2.0.2-1_all.deb
  to pool/main/l/lire/lire_2.0.2-1_all.deb
lire_2.0.2.orig.tar.gz
  to pool/main/l/lire/lire_2.0.2.orig.tar.gz


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



Accepted debian-edu-config 0.404 (source all)

2006-08-20 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 23:27:54 +0200
Source: debian-edu-config
Binary: debian-edu-config
Architecture: source all
Version: 0.404
Distribution: unstable
Urgency: low
Maintainer: Debian Edu Developers debian-edu@lists.debian.org
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 debian-edu-config - Configuration files for Skolelinux systems
Changes: 
 debian-edu-config (0.404) unstable; urgency=low
 .
   [ Petter Reinholdtsen ]
   * Remove the cron job bin/filehandle_ctl.sh.  It is no longer needed
 with linux 2.6 kernels.
   * Comment out cf.shell, as the same setting can be activated
 using preseeding now.
   * Update standards-version from 3.6.2 to 3.7.2.  No change needed.
   * Add depend on ${misc:Depends} to get a debconf dependency for the
 hidden debconf question available for preseeding.
 .
   [ Steffen Joeris ]
   * Change build-depends-indep to build-depends as debhelper is needed
 during the clean target
   * Increase debhelper level to 4
   * Remove obsolete calls for conffiles in Makefile
   * Cleanup debian/rules to remove the obsolete calls too
   * Adding md5sum file for package
   * Change DESTDIR to package name instead of tmp to adjust packaging
 to current debhelper level
Files: 
 eb98a0c9a468694cb331dcba83524b18 690 misc optional debian-edu-config_0.404.dsc
 1fc77215f45613f0782ebf65e0b61544 199184 misc optional 
debian-edu-config_0.404.tar.gz
 441856f0752d095520fc678ba7fc4cec 186940 misc optional 
debian-edu-config_0.404_all.deb

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

iD8DBQFE6NQx20zMSyow1ykRAqTLAKCyO6VlEa/e9zSNzmn5qjt5p9eQPQCeK91h
6gqqLuHbbdnXR4ABh/iiYRs=
=6d1F
-END PGP SIGNATURE-


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


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



Accepted libdebian-installer 0.44 (source i386)

2006-08-20 Thread Martin Michlmayr
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 21 Aug 2006 00:21:24 +0200
Source: libdebian-installer
Binary: libdebian-installer4 libdebian-installer-extra4 
libdebian-installer4-udeb libdebian-installer-extra4-udeb 
libdebian-installer4-dev
Architecture: source i386
Version: 0.44
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Martin Michlmayr [EMAIL PROTECTED]
Description: 
 libdebian-installer-extra4 - Library of some extra debian-installer functions
 libdebian-installer-extra4-udeb - Library of some extra debian-installer 
functions (udeb)
 libdebian-installer4 - Library of common debian-installer functions
 libdebian-installer4-dev - Library of common debian-installer functions
 libdebian-installer4-udeb - Library of common debian-installer functions (udeb)
Changes: 
 libdebian-installer (0.44) unstable; urgency=low
 .
   * archdetect: Add the arm/iop32x platform, listing a number if Intel
 evaluation boards, the Thecus N2100 and N4100 and the GLAN Tank.
   * archdetect: Add the arm/iop33x platform, listing a number if Intel
 evaluation boards.
   * archdetect: Add the arm/ixp4xx platform.
Files: 
 683013b371000434bb24a53e2566e584 812 libs optional libdebian-installer_0.44.dsc
 551ef6798de4b5366797707b95d519a4 373976 libs optional 
libdebian-installer_0.44.tar.gz
 1b1a3717a8411f8e55632f4541caf59c 23832 libs optional 
libdebian-installer4_0.44_i386.deb
 7f6705633e4d3162ba685c44e2b51ce9 137342 libdevel optional 
libdebian-installer4-dev_0.44_i386.deb
 58b349e9aed05109cc4ee26db436da76 17486 debian-installer optional 
libdebian-installer4-udeb_0.44_i386.udeb
 3391ed91fd8aef90680491dde9be5d4d 9618 libs optional 
libdebian-installer-extra4_0.44_i386.deb
 d215cb9382cdbc9a0d9d6b35a5371e36 3476 debian-installer optional 
libdebian-installer-extra4-udeb_0.44_i386.udeb

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

iD8DBQFE6OGnKb5dImj9VJ8RAgrsAKCKEXnUViOswe/gsWwzyx39O82btgCgiMiM
il3CMvV8kCK5h6m0asMUWag=
=8cEX
-END PGP SIGNATURE-


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


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



Accepted cvs 1:1.12.13-4 (i386 powerpc source sparc mips alpha)

2006-08-20 Thread Steve McIntyre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Thu, 17 Aug 2006 00:18:01 +0100
Source: cvs
Binary: cvs
Architecture: alpha i386 mips powerpc source sparc 
Version: 1:1.12.13-4
Distribution: unstable
Urgency: low
Maintainer: Steve McIntyre [EMAIL PROTECTED]
Changed-By: Steve McIntyre [EMAIL PROTECTED]
Description: 
 cvs- Concurrent Versions System
Closes: 372627 374964 378966 381742
Changes: 
 cvs (1:1.12.13-4) unstable; urgency=low
 .
   [ Zak B. Elep ]
   * debian/rules:
 + Copy config.{guess,sub} to the (new) right location for
   1.12.13, thanks to Petr Salinger. (Closes: #372627)
   * debian/patches:
 + Add 15_PATH_MAX_check to fix bad checking, thanks to Cyril
   Bruebois. (Closes: #378966)
 + Add 25_import-n-X fixing `import -X' failure, thanks to
   Florian Zschocke. (Closes: #374964)
   * debian/po:
 + Add pt.po for Portuguese translation of debconf messages,
   thanks to Miguel Figueiredo and Ricardo Silva.
   (Closes: #381742)
   [ Steve McIntyre ]
   * debian/patches:
 + Add 68_DSA_external_passwd_file: patch from the Debian DSA team to
   optionally use an external passwd file rather than CVSROOT/passwd
 + Fix 94_parseopts: parse old-style tag= and tagexpand=
   options in the options files properly, don't crash!
Files: 
 0059d5804a43d3c76532f7d02af981a8 1691766 devel optional 
cvs_1.12.13-4_powerpc.deb
 01a3b6765170be7ddeff1701118abd1f 1669674 devel optional cvs_1.12.13-4_i386.deb
 2152f96aae354ae91cd7c6c06d37931a 75833 devel optional cvs_1.12.13-4.diff.gz
 994a4240712980f556650910501e429e 1704018 devel optional cvs_1.12.13-4_mips.deb
 c1449cd353c32fe1e8d6e6862ee8c2e3 1741546 devel optional cvs_1.12.13-4_alpha.deb
 de6c6c5e31b0a159a4a6e6e5700712cf 1662944 devel optional cvs_1.12.13-4_sparc.deb
 9bc24e4dc82e01ad059d0e5e1e24f209 745 devel optional cvs_1.12.13-4.dsc

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

iD8DBQFE6NDBfDt5cIjHwfcRAmfgAKCkCSX7uHi/oAoeMkY0PXkp7foQFgCggM7f
UV9gbdFO+Yn2E+unklvHuTE=
=W/Gv
-END PGP SIGNATURE-


Accepted:
cvs_1.12.13-4.diff.gz
  to pool/main/c/cvs/cvs_1.12.13-4.diff.gz
cvs_1.12.13-4.dsc
  to pool/main/c/cvs/cvs_1.12.13-4.dsc
cvs_1.12.13-4_alpha.deb
  to pool/main/c/cvs/cvs_1.12.13-4_alpha.deb
cvs_1.12.13-4_i386.deb
  to pool/main/c/cvs/cvs_1.12.13-4_i386.deb
cvs_1.12.13-4_mips.deb
  to pool/main/c/cvs/cvs_1.12.13-4_mips.deb
cvs_1.12.13-4_powerpc.deb
  to pool/main/c/cvs/cvs_1.12.13-4_powerpc.deb
cvs_1.12.13-4_sparc.deb
  to pool/main/c/cvs/cvs_1.12.13-4_sparc.deb


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



Accepted cbrowser 0.8-4 (source all)

2006-08-20 Thread Bart Martens
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 19 Aug 2006 16:16:24 +0200
Source: cbrowser
Binary: cbrowser
Architecture: source all
Version: 0.8-4
Distribution: unstable
Urgency: low
Maintainer: Bart Martens [EMAIL PROTECTED]
Changed-By: Bart Martens [EMAIL PROTECTED]
Description: 
 cbrowser   - a C/C++ source code indexing, querying and browsing tool
Closes: 106189 378796
Changes: 
 cbrowser (0.8-4) unstable; urgency=low
 .
   * New maintainer.  Closes: #378796.
   * debian/control: Description.  Closes: #106189.
Files: 
 6bcd7778c224b588f5ee6911ea10f765 550 devel optional cbrowser_0.8-4.dsc
 0e2483f8675263435ed62bb47061a2e5 4625 devel optional cbrowser_0.8-4.diff.gz
 7f420dcb143dbff71c5336230f3523c0 66852 devel optional cbrowser_0.8-4_all.deb

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

iD8DBQFE6O0uipBneRiAKDwRAm5mAJ9v477WYWZKjsLBX3ZSGu3epm2pLwCcDEW6
QGpagLqzhRX0bJE4u+ZD5ps=
=6t6Q
-END PGP SIGNATURE-


Accepted:
cbrowser_0.8-4.diff.gz
  to pool/main/c/cbrowser/cbrowser_0.8-4.diff.gz
cbrowser_0.8-4.dsc
  to pool/main/c/cbrowser/cbrowser_0.8-4.dsc
cbrowser_0.8-4_all.deb
  to pool/main/c/cbrowser/cbrowser_0.8-4_all.deb


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



Accepted netcfg 1.29 (source i386)

2006-08-20 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 21 Aug 2006 01:06:55 +0200
Source: netcfg
Binary: netcfg-static netcfg
Architecture: source i386
Version: 1.29
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-boot@lists.debian.org
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 netcfg - Configure the network (udeb)
 netcfg-static - Configure a static network (udeb)
Closes: 381085
Changes: 
 netcfg (1.29) unstable; urgency=low
 .
   [ Christian Perrier ]
   * Unmark ${wifireconf} as translatable in templates
 .
   [ Frans Pop ]
   * Set up the loopback interface with address 127.0.0.1/8.
   * Also set up the loopback interface when doing static configuration.
 Closes: #381085.
   * Remove standards-version and add Lintian override for it.
 .
   [ Updated translations ]
   * Catalan (ca.po) by Jordi Mallach
   * German (de.po) by Jens Seidel
   * Spanish (es.po) by Javier Fernández-Sanguino Peña
   * Finnish (fi.po) by Tapio Lehtonen
   * Hungarian (hu.po) by SZERVÁC Attila
   * Panjabi (pa.po) by A S Alam
   * Portuguese (Brazil) (pt_BR.po) by André Luís Lopes
   * Swedish (sv.po) by Daniel Nylander
   * Ukrainian (uk.po) by Eugeniy Meshcheryakov
   * Traditional Chinese (zh_TW.po) by Tetralet
Files: 
 315638af0577fff9380dc0cd21bcb249 921 debian-installer optional netcfg_1.29.dsc
 78506f7759c15f602450b713932fd40e 313627 debian-installer optional 
netcfg_1.29.tar.gz
 15837e71f42add34eb096119687b3299 261020 debian-installer optional 
netcfg_1.29_i386.udeb
 5c542bda4d698e7522ccf68fafe68462 200928 debian-installer optional 
netcfg-static_1.29_i386.udeb
Package-Type: udeb

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

iD8DBQFE6O2bgm/Kwh6ICoQRAsvKAKDODVV6xbOe5FIFNIy+lcTipWNXOACgqAjo
rORi3OlNMJsR5cko6bTHgPo=
=H1Ac
-END PGP SIGNATURE-


Accepted:
netcfg-static_1.29_i386.udeb
  to pool/main/n/netcfg/netcfg-static_1.29_i386.udeb
netcfg_1.29.dsc
  to pool/main/n/netcfg/netcfg_1.29.dsc
netcfg_1.29.tar.gz
  to pool/main/n/netcfg/netcfg_1.29.tar.gz
netcfg_1.29_i386.udeb
  to pool/main/n/netcfg/netcfg_1.29_i386.udeb


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



Accepted argus 1:3.0.0.rc.26-1 (source i386)

2006-08-20 Thread Andrew Pollock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sun, 20 Aug 2006 15:06:55 -0700
Source: argus
Binary: argus-server
Architecture: source i386
Version: 1:3.0.0.rc.26-1
Distribution: experimental
Urgency: low
Maintainer: Andrew Pollock [EMAIL PROTECTED]
Changed-By: Andrew Pollock [EMAIL PROTECTED]
Description: 
 argus-server - IP network transaction auditing tool
Changes: 
 argus (1:3.0.0.rc.26-1) experimental; urgency=low
 .
   * New upstream release
   * debian/argus.conf: set ARGUS_SET_PID to yes
   * debian/argus-server.init: rework to handle new PID file behaviour
Files: 
 0a376533fea415a0d0b98930b4ea2de6 652 net optional argus_3.0.0.rc.26-1.dsc
 f8bb094a8434513cc1e181de372c287a 384423 net optional 
argus_3.0.0.rc.26.orig.tar.gz
 903ccd0c89c3da5f5556ada22a7603c0 32625 net optional argus_3.0.0.rc.26-1.diff.gz
 a480f26a5104f6da50f7ca5a65b83924 140644 net optional 
argus-server_3.0.0.rc.26-1_i386.deb

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

iD8DBQFE6PWxIblXXKfZFgIRAvTxAKCQc6XvOb9A6nPu0tVMaG6NHea9rACdGHuU
cDJl6MQp0UYtN+2Fm2bb93I=
=2Tos
-END PGP SIGNATURE-


Accepted:
argus-server_3.0.0.rc.26-1_i386.deb
  to pool/main/a/argus/argus-server_3.0.0.rc.26-1_i386.deb
argus_3.0.0.rc.26-1.diff.gz
  to pool/main/a/argus/argus_3.0.0.rc.26-1.diff.gz
argus_3.0.0.rc.26-1.dsc
  to pool/main/a/argus/argus_3.0.0.rc.26-1.dsc
argus_3.0.0.rc.26.orig.tar.gz
  to pool/main/a/argus/argus_3.0.0.rc.26.orig.tar.gz


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



  1   2   >