Re: How do I trace aptitude dependencies?

2008-04-28 Thread Russ Allbery
Bryan Donlan [EMAIL PROTECTED] writes:

 Currently I have a situation where attempting to upgrade imagemagick
 from version 7:6.2.4.5.dfsg1-1+lenny1 to version 7:6.3.7.9.dfsg1-2+b1
 pulls in over 200mb of dependencies, including mozilla-browser,
 iceape-browser, and half of gnome.

Both devscripts and djvulibre have some really unfortunate Recommends
right now.  I've been doing selected dist-upgrades with aptitude -R (make
sure that you use the unstable aptitude or -R doesn't work).

-- 
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: How do I trace aptitude dependencies?

2008-04-28 Thread Bryan Donlan
On Mon, Apr 28, 2008 at 2:14 AM, Russ Allbery [EMAIL PROTECTED] wrote:
 Bryan Donlan [EMAIL PROTECTED] writes:

   Currently I have a situation where attempting to upgrade imagemagick
   from version 7:6.2.4.5.dfsg1-1+lenny1 to version 7:6.3.7.9.dfsg1-2+b1
   pulls in over 200mb of dependencies, including mozilla-browser,
   iceape-browser, and half of gnome.

  Both devscripts and djvulibre have some really unfortunate Recommends
  right now.  I've been doing selected dist-upgrades with aptitude -R (make
  sure that you use the unstable aptitude or -R doesn't work).

That may be so, but why is aptitude claiming that www-browser is
pulling in things when www-browser is already satisfied?


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



Re: Using sgid binaries to defend against LD_PRELOAD/ptrace()

2008-04-28 Thread Martin Pitt
Colin Watson [2008-04-27 13:19 +0100]:
  Can't you do something against ptrace in the binary itself and only
  for critical sections?
 
 You can (use prctl() to disable PR_SET_DUMPABLE), but it's only checked
 on ptrace_attach so that would be racy.

That's what the current Ubuntu version of libpolkit does (patch
attached FYI). So far my feeling is that this is good enough for
PolicyKit and the applications that use it. It prevents passwords from
accidentally leaking to core dumps and programs which randomly
ptrace() other processes from silently abusing gained PK privileges.

In the end I did not worry too much about the startup race condition.
If there is already a Trojan in the user's session, it is trivial to
circumvent PR_SET_DUMPABLE, of course (by running the target
application through gdb right from the start). But it is easy to call
the PK dialog (or gksu/kdesu) with some crafted application
name/reason as well, i. e. do some social engineering/phishing.

So, having a standard group which sensitive applications could sgid to
would be handy and fix the race on startup, but I consider it
low-priority as long as we still have the 'fake UI' problem. A truly
good solution for this is the press Ctrl+Alt+Del before entering your
password schema, but even Windows abandonded it again, for usability
reasons I guess.

Thanks,

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)


signature.asc
Description: Digital signature


Re: Using sgid binaries to defend against LD_PRELOAD/ptrace()

2008-04-28 Thread Martin Pitt
Martin Pitt [2008-04-28  9:22 +0200]:
 That's what the current Ubuntu version of libpolkit does (patch
 attached FYI). 

*cough*
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)
# Description: Disable ptrace() and core dumping for programs using libpolkit
# Ubuntu: https://wiki.ubuntu.com/DesktopTeam/Specs/PolicyKitIntegration
# Upstream: https://bugs.freedesktop.org/show_bug.cgi?id=13742

--- policykit-0.7/src/polkit/polkit-policy-default.c	2007-11-28 22:22:52.0 +0100
+++ policykit-0.7.new/src/polkit/polkit-policy-default.c	2007-12-31 18:14:45.0 +0100
@@ -39,6 +39,7 @@
 #include grp.h
 #include unistd.h
 #include errno.h
+#include sys/prctl.h
 
 #include polkit-debug.h
 #include polkit-error.h
@@ -570,3 +571,14 @@
 };
 
 #endif /* POLKIT_BUILD_TESTS */
+
+/**
+ * Library constructor: Disable ptrace() and core dumping for applications
+ * which use this library, so that local trojans cannot silently abuse PK
+ * privileges. (This is a just a bandaid, not a robust solution).
+ */
+__attribute__ ((constructor))
+void init()
+{
+prctl(PR_SET_DUMPABLE, 0);
+}


signature.asc
Description: Digital signature


Re: How do I trace aptitude dependencies?

2008-04-28 Thread Adam D. Barratt

Russ Allbery wrote:

Bryan Donlan [EMAIL PROTECTED] writes:


Currently I have a situation where attempting to upgrade imagemagick
from version 7:6.2.4.5.dfsg1-1+lenny1 to version 7:6.3.7.9.dfsg1-2+b1
pulls in over 200mb of dependencies, including mozilla-browser,
iceape-browser, and half of gnome.


Both devscripts and djvulibre have some really unfortunate Recommends
right now.


Most of the worst offenders in devscripts's case should have been fixed by 
now.


Some of the remainder may not be ideal, but that mostly comes down to what 
one considers to be important functionality of the package, which we're 
well aware that there isn't exactly consensus on.


Adam 



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



Re: Using sgid binaries to defend against LD_PRELOAD/ptrace()

2008-04-28 Thread Bryan Donlan
On Fri, Dec 7, 2007 at 2:18 PM, Martin Pitt [EMAIL PROTECTED] wrote:
 Hi all,

  one thing that has bothered me for a long time already is the
  complete lack of a security boundary between processes of the same
  user. Things like LD_PRELOAD and ptrace() (IOW, gdb) are enabled by
  default for all users, and especially for developers this is a good
  thing.
[snip]
  One easy solution that comes to my mind is to install those affected
  programs setgid, and drop the additional group immediately after
  program start with setgid(getgid()). For this we should introduce a
  new static group into base-passwd, like noptrace, to not abuse
  existing groups and not confuse auditing tools.

What happens if a malicious whatever uses LD_PRELOAD to change the
exec* family of functions to check for this bit, and if set, make a
copy of the executable in question, without setgid, to execute? Same
applies for ptrace - it can alter the path to be executed on the fly
to point to a traceable (or even binary-patched) version.


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



Re: DEP1: Clarifying policies and workflows for Non Maintainer Uploads

2008-04-28 Thread Lucas Nussbaum
On 25/04/08 at 10:59 +0200, Holger Levsen wrote:
 Hi,
 
 thanks for starting an initiative to make NMs more useful and accepted!
 For now I just have two procedural remarks.
 
 On Thursday 24 April 2008 21:42, Bas Wijnen wrote:
  [0] http://dep.debian.net/deps/dep0/
  [1] http://wiki.debian.org/NmuDep
 
 Why isnt the second URL http://dep.debian.net/deps/dep1/ ? :)

DEP0 doesn't force use to use dep.debian.net directly. We prefered to
work on the DEP using the wiki, and it's also easier to track changes.
It will be moved dep.debian.net once it's approved.

 And secondly, if you had included the actual text in the mail, everybody 
 could 
 reply with proper quoting and I could also read it now.

I considered that, but thought that it would be better if people read
the wiki directly, so they read the latest version. We will include the
text in the email when we will send our second request for comments.
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


signature.asc
Description: Digital signature


Re: NMU rules for security fixes (was: DEP1: Clarifying policies and workflows for Non Maintainer Uploads)

2008-04-28 Thread Lucas Nussbaum
On 25/04/08 at 18:32 +0200, Nico Golde wrote:
 What about introducing a special case regarding the waiting 
 period before uploading an NMU for security bugs? There are 
 often cases in which we already have a patch handy to fix a 
 security issue but still wait a few days on the maintainers 
 reaction.

On 26/04/08 at 20:22 +0200, Thijs Kinkhorst wrote:
 On Saturday 26 April 2008 02:07, Don Armstrong wrote:
  On Sat, 26 Apr 2008, Paul Wise wrote:
   I'd prefer the security team did not delay fixes at all by default.
   Exceptions for specific maintainers, transitions or other reasons
   are fine too of course.
 
  For stable and testing, I agree. However, for unstable and
  experimental the maintainer should be at least given a chance to
  resolve the issue. [That is to say, I object to filing a bug and
  immediately NMUing for unstable; in almost all cases the bug should be
  a few days old before that happens.]
 
 I agree with that. The cases where the available patch for a security issue 
 was insufficient or broke other things are not quite rare. The maintainer of 
 a package is the first one responsible for it and should be given the 
 opportunity to comment on the patch and/or apply it himself. At least a few 
 days, and of course depending on the impact of the bug: no need to rush in 
 patches for low impact bugs.

I don't think that developers-reference is the good place to list
all the special cases. In the DEP, we include some example delays:
| While there are no general rules, it's recommended to upload to the
| DELAYED queue with a delay of at least a few days. Here are some
| examples that you could use as default values:
| # Upload fixing only release-critical bugs older than 7 days: 2 days
| # Upload fixing only release-critical and important bugs: 5 days
| # Other NMUs: 10 days

Those are example delays, not mandatory ones. If the uploader thinks
that he has a good reason to wait less time, he can still wait less
time.

I've added this sentence after the above examples to clarify this:
| Those delays are only examples. In some cases (uploads fixing security
| issues, trivial bugfixes blocking a transition, ...), it is desirable
| that the fixed package reaches unstable sooner.
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


signature.asc
Description: Digital signature


Re: Bug#478167: ITP: cowpoke -- Builds a single Debian source package with a remote cowbuilder

2008-04-28 Thread Bernd Zeimetz

   Programming Lang: bash
   Description : Builds a single Debian source package with a remote 
 cowbuilder
 
  The cowpoke script automates the task of sending a package to a remote

do we really need a package for a single script?! I think such stuff
could go into the pbuilder package, too.


-- 
 Bernd Zeimetz   Debian GNU/Linux Developer
 GPG Fingerprint: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79


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



Re: Using sgid binaries to defend against LD_PRELOAD/ptrace()

2008-04-28 Thread Goswin von Brederlow
Martin Pitt [EMAIL PROTECTED] writes:

 In the end I did not worry too much about the startup race condition.
 If there is already a Trojan in the user's session, it is trivial to
 circumvent PR_SET_DUMPABLE, of course (by running the target
 application through gdb right from the start). But it is easy to call
 the PK dialog (or gksu/kdesu) with some crafted application
 name/reason as well, i. e. do some social engineering/phishing.

Unless the trojan starts the application it is improbable that it will
get a ptrace attached before PR_SET_DUMPABLE is run in the
constructor. It would have to scan for new PIDs all the time leaving a
noticeable pu load.

Alternative: ptrace the gnome/kde session to catch the start of the
binary and then ptrace it from the start. But then they can also use
their own little crafty ld replacement that ignores suid/sgid bits for
aplications that just have it to prevent ptrace.

So if you do use the suid/sgid hack to prevent ptraces then please make
sure you check you actually got it to catch this line of exploit.

MfG
Goswin


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



Re: How do I trace aptitude dependencies?

2008-04-28 Thread Goswin von Brederlow
Bryan Donlan [EMAIL PROTECTED] writes:

 On Mon, Apr 28, 2008 at 2:14 AM, Russ Allbery [EMAIL PROTECTED] wrote:
 Bryan Donlan [EMAIL PROTECTED] writes:

   Currently I have a situation where attempting to upgrade imagemagick
   from version 7:6.2.4.5.dfsg1-1+lenny1 to version 7:6.3.7.9.dfsg1-2+b1
   pulls in over 200mb of dependencies, including mozilla-browser,
   iceape-browser, and half of gnome.

  Both devscripts and djvulibre have some really unfortunate Recommends
  right now.  I've been doing selected dist-upgrades with aptitude -R (make
  sure that you use the unstable aptitude or -R doesn't work).

 That may be so, but why is aptitude claiming that www-browser is
 pulling in things when www-browser is already satisfied?

This usualy happens if you have something like

Package: something
Depends: bar | foo

Package: something-else
Conflicts: libfoo ( 1.2-3)

Package: foo
Depends: libfoo

and the installed foo and libfoo is versions 1.1-1. Sometimes the
search then sees that foo needs to be removed, can't be updated just
jet or is plain too old and adds bar to the list of packages to
install. Only later in the process it finds is can actually update foo
and you end up with both.


I recommend to always do an upgrade before doing a dist-upgrade (or
install of something pulling in 200mb). The upgrade will never install
new or remove packages so it is save. It usualy reduces the number of
packages to something where the search algorithm doesn't go wrong.

MfG
Goswin


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



Bug#478251: ITP: libdata-stag-perl -- Structured Tags datastructures

2008-04-28 Thread Charles Plessy
Package: wnpp
Severity: wishlist
Owner: Charles Plessy [EMAIL PROTECTED]

  Package name: libdata-stag-perl
  Version : 0.10
  Upstream Author : Chris Mungall cjm AT fruitfly DOT org
  URL : http://stag.sourceforge.net
  License : Artistic | GPL-1+ (same terms as perl itself)
  Programming Lang: Perl
  Description : Structured Tags datastructures

 This module is for manipulating data as hierarchical tag/value
 pairs (Structured TAGs or Simple Tree AGgreggates). These
 datastructures can be represented as nested arrays, which have the
 advantage of being native to perl. A simple example is shown below:
 .
 [ person= [  [ family_name = $family_name ],
 [ given_name  = $given_name  ],
 [ phone_no= $phone_no] ] ],
 .
 Data::Stag uses a subset of XML for import and export. This
 means the module can also be used as a general XML parser/writer (with
 certain caveats).

The packaging is mostly the work of David Paleino and is almost finished.
http://svn.debian.org/wsvn/debian-med/trunk/packages/glam2/trunk/?rev=0sc=0

I am finishing to polish the details, and will sponsor the package after
getting the green light from David and the Debian Perl team. This package is
needed for libgo-perl, that is needed for a biological format (GFF3) validator.

-- 
Charles Plessy
Debian-Med packaging team



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



nss-ldapd init script sequence number

2008-04-28 Thread Arthur de Jong

Hi, I maintain nss-ldapd, a replacement for nss_ldap which uses a local
daemon (nslcd) to proxy name lookup requests (passwd/group/hosts/etc)
to an LDAP server. I have received a bug report (#475626) that I would
welcome some input on.

The problem is that a lot of daemons are started at sequence 20
(/etc/rc2.d/S20...) an may want to do name lookups (e.g. exim is
mentioned in the bugreport). This means that nslcd should probably be
started before sequence 20. However, slapd is started at sequence 19
and it would be best to start nslcd after slapd. Currently nslcd is
started at sequence 20.

The problem with starting nslcd before slapd is that slapd does name
lookups during startup which slow down slapd startup by about 5 seconds
(because slapd is not ready to handle lookups yet) and leaves nslcd in a
state where it believes the LDAP server is unreachable and will only
retry after some timeout has expired. This could in turn cause failed
lookups for processes that do name lookups just after slapd has been
started.

So, what would the best solution for this problem?

- request slapd to be started at sequence 18 and start nslcd at
  sequence 19 when this has changed (haven't extensively checked if that
  would cause problems for slapd)
- add some magic to nslcd to do more retries during startup and handle
  this case especially
- something else??

This also brings up the problem with what to do with existing
installations. If I understand correctly changing the parameter to
update-rc.d will not change any existing symlinks so any changes that
are made now will only affect existing installations.

Feedback is very much appreciated (also other feedback related to
nss-ldapd). Thanks.

-- 
-- arthur - [EMAIL PROTECTED] - http://people.debian.org/~adejong --


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


Re: How do I trace aptitude dependencies?

2008-04-28 Thread Daniel Burrows
On Mon, Apr 28, 2008 at 01:17:24AM -0400, Bryan Donlan [EMAIL PROTECTED] was 
heard to say:
 Currently I have a situation where attempting to upgrade imagemagick
 from version 7:6.2.4.5.dfsg1-1+lenny1 to version 7:6.3.7.9.dfsg1-2+b1
 pulls in over 200mb of dependencies, including mozilla-browser,
 iceape-browser, and half of gnome. Using aptitude's 'i' command to
 attempt to get information on why some of these are being installed
 results in things like:
 i   pbuilder   Recommends devscripts
 i A devscripts Recommends www-browser
 piA iceape-browser Provides   www-browser
 piA iceape-browser Recommends iceape-gnome-support

  This is *a* reason to install iceape-gnome-support, but perhaps not
the reason it's getting pulled in in your case.

 This makes no sense, as I already have links installed for
 www-browser. Even stranger are things like:
 
 i   pbuilder   Recommends devscripts
 i A devscripts Recommends www-browser
 p   konqueror  Provides   www-browser
 p   konqueror  Dependslibqt3-mt (= 3:3.3.8b)
 p   libqt3-mt  Dependslibaudio2

  It's saying that one reason you might want to install libaudio2 is if
you installed konqueror to fulfill the devscripts dependency.

  The general problem of why is this package being installed? is
NP-hard where it isn't unsolvable (the latter being because the
information aptitude would need isn't present in the package database,
but rather in the user's head or in the guts of some apt algorithm).
aptitude doesn't attempt to answer this question.  Instead, aptitude
tells you what installed or to-be-installed package (if any) depends
on this package? [0] This is useful for finding out why auto-removal
is behaving in a particular way, but as you discovered, it doesn't
answer all possible questions one might have.

  One option you have is to run aptitude why -v imagemagick iceape-browser,
which will show you all the possible dependency chains between those
packages.

  I'm happy to improve the algorithm if anyone has useful suggestions.

  Daniel

  [0] with the caveat that it tries to check dependencies that aren't
  virtual or ORed first, and looks for strong dependencies before
  weak ones.


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



Re: How do I trace aptitude dependencies?

2008-04-28 Thread Daniel Burrows
On Mon, Apr 28, 2008 at 07:05:24AM -0700, Daniel Burrows [EMAIL PROTECTED] 
was heard to say:
   One option you have is to run aptitude why -v imagemagick iceape-browser,
 which will show you all the possible dependency chains between those
 packages.

  On my computer, I get this (reformatted, why apparently doesn't deal
well with very long ORs):

i A imagemagick   Dependslibmagick10
i A libmagick10   Dependslibdjvulibre21 (= 3.5.20)
i A libdjvulibre21Recommends djvulibre-desktop
p   djvulibre-desktop Recommends djview4 | djview3 | djview | evince
p   djview4   Recommends djvulibre-plugin
p   djvulibre-plugin  Recommends mozilla-browser | mozilla | mozilla-firefox |
 iceweasel | iceape-browser | konqueror |
 galeon | netscape-base-4 | netscape

  It looks like djvulibre-plugin is a plugin for Netscape-style
browsers, so it recommends installing one.  Since links isn't,
mozilla-browser gets picked, which is really iceape-browser.

  Daniel


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



Re: Bug#475626: nss-ldapd init script sequence number

2008-04-28 Thread Petter Reinholdtsen

[Arthur de Jong]
 So, what would the best solution for this problem?

 - request slapd to be started at sequence 18 and start nslcd at
   sequence 19 when this has changed (haven't extensively checked if that
   would cause problems for slapd)
 - add some magic to nslcd to do more retries during startup and handle
   this case especially
 - something else??

This is exactly the kind of problems the dependency based boot
sequencing is supposed to solve.  See
URL:http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot for
information about this effort.  Almost all packages with init.d
scripts in Lenny now contain dependency information, and it is
definitely ready for more general testing.  You would then get away
with adding a reverse dependency on slapd, and the proper sequence
would be generated automatically.

Anyway, while we wait for Debian to switch to dependency based boot
sequencing, I believe the best option for you is to get slapd moved at
the start and end.  (note that when it moves earlier in the boot, it
should also move later in the shutdown.  If it should move to 18 or an
earlier number, depend on which other packages depend on it.  Perhaps
you can use the LSB-style dependency headers to track down packages
that need to start before slapd, in case any of those need to be moved
too.

 This also brings up the problem with what to do with existing
 installations. If I understand correctly changing the parameter to
 update-rc.d will not change any existing symlinks so any changes
 that are made now will only affect existing installations.

This is correct.  If you want to change the sequence number, the only
option provided by the update-rc.d interface is to remove all
start/stop symlinks and insert it again with new sequence numbers.  I
suspect we should extend the update-rc.d interface to make this easier
too, unless we just switch to dependency based boot sequencing and
thus can forget about these sequence numbers.

Happy hacking,
-- 
Petter Reinholdtsen


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



Re: [OT] Need old Packages.gz and Release Files

2008-04-28 Thread Michelle Konzack
Am 2008-04-25 16:07:51, schrieb Stefano Zacchiroli:
 You are asking generically Packages without specifying a mirror. Are
 they granted to be identically replicated among all mirrors?  Of course
 they *probably* are due to how mirroring works, but is it *granted* that
 there are no differences among mirrors?
 
 Would such difference inhibit proper installation due to the apt-secure
 stuff?

If you have for example the ORIGINAL CDs/DVD's of 3.1r4 I can build  the
package tree from there since I have all original packages I only do not
know which packages went included in the releases...

And yes, there is a problem with the signed release files, but  since  I
can check my packages agains packages on archive.debian.net I am sure,
I have the right an unaltered ones.

And IF I recreate the packages.gz/Sources.gz, I sign it with MY key  and
you CAN trust it or not...

And of course, you can pull down a couple of packages/files  out  of  my
several million (nearly 20 TByte or ninety SCSI  300 GByte  drives)  and
check it against packages/files from archive.debian.net...  :-)

Thanks, Greetings and nice Day
Michelle Konzack
Systemadministrator
24V Electronic Engineer
Tamay Dogan Network
Debian GNU/Linux Consultant


-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
+49/177/935194750, rue de Soultz MSN LinuxMichi
+33/6/61925193 67100 Strasbourg/France   IRC #Debian (irc.icq.com)


signature.pgp
Description: Digital signature


Re: How do I trace aptitude dependencies?

2008-04-28 Thread Russ Allbery
Goswin von Brederlow [EMAIL PROTECTED] writes:

 I recommend to always do an upgrade before doing a dist-upgrade (or
 install of something pulling in 200mb). The upgrade will never install
 new or remove packages so it is save. It usualy reduces the number of
 packages to something where the search algorithm doesn't go wrong.

This is what I used to do as well, but it doesn't seem to be working that
way any more.  upgrade (and safe-upgrade) was pulling in a bunch of new
packages due to devscripts's Recommends.

-- 
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: How do I trace aptitude dependencies?

2008-04-28 Thread Adam D. Barratt
On Mon, 2008-04-28 at 09:40 -0700, Russ Allbery wrote:
 Goswin von Brederlow [EMAIL PROTECTED] writes:
 
  I recommend to always do an upgrade before doing a dist-upgrade (or
  install of something pulling in 200mb). The upgrade will never install
  new or remove packages so it is save. It usualy reduces the number of
  packages to something where the search algorithm doesn't go wrong.
 
 This is what I used to do as well, but it doesn't seem to be working that
 way any more.  upgrade (and safe-upgrade) was pulling in a bunch of new
 packages due to devscripts's Recommends.

That should gradually be improving, as the Recommends have been trimmed
for the majority of the recent uploads (including the as-yet-unuploaded
2.10.27). Some of them (e.g. citadel-*) are side-effects of issues with
other packages. :-/

Adam


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



Re: [OT] Need old Packages.gz and Release Files

2008-04-28 Thread Goswin von Brederlow
Michelle Konzack [EMAIL PROTECTED] writes:

 Am 2008-04-25 16:07:51, schrieb Stefano Zacchiroli:
 You are asking generically Packages without specifying a mirror. Are
 they granted to be identically replicated among all mirrors?  Of course
 they *probably* are due to how mirroring works, but is it *granted* that
 there are no differences among mirrors?
 
 Would such difference inhibit proper installation due to the apt-secure
 stuff?

They have to be identical accross all mirrors.

Release.gpg safeguards Release
Release safeguards Packages.gz
Packages.gz safeguards foo_ver_arch.deb

If any checksum check along that line fails apt will complain.

And nobody can create the Release.gpg unless they have the key from
ftp-master. Somebody elses key won't be in apts keyring unless this is
intentionally.

 If you have for example the ORIGINAL CDs/DVD's of 3.1r4 I can build  the
 package tree from there since I have all original packages I only do not
 know which packages went included in the releases...

Did anyone mention http://archive.debian.org/README yet?

 And yes, there is a problem with the signed release files, but  since  I
 can check my packages agains packages on archive.debian.net I am sure,
 I have the right an unaltered ones.

 And IF I recreate the packages.gz/Sources.gz, I sign it with MY key  and
 you CAN trust it or not...

 And of course, you can pull down a couple of packages/files  out  of  my
 several million (nearly 20 TByte or ninety SCSI  300 GByte  drives)  and
 check it against packages/files from archive.debian.net...  :-)

If you get the Packages.gz, Release and Release.gpg files from a
CD/DVD set then you can verify them individually with the debian
archive key from that time and then merge them into a full list and
sign with your own key. You don't have to download anything from
archive.debian.net if you have those index file.

MfG
Goswin


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



Re: How do I trace aptitude dependencies?

2008-04-28 Thread Bryan Donlan
On Mon, Apr 28, 2008 at 10:05 AM, Daniel Burrows [EMAIL PROTECTED] wrote:
 On Mon, Apr 28, 2008 at 01:17:24AM -0400, Bryan Donlan [EMAIL PROTECTED] 
 was heard to say:

  Currently I have a situation where attempting to upgrade imagemagick
   from version 7:6.2.4.5.dfsg1-1+lenny1 to version 7:6.3.7.9.dfsg1-2+b1
   pulls in over 200mb of dependencies, including mozilla-browser,
   iceape-browser, and half of gnome. Using aptitude's 'i' command to
   attempt to get information on why some of these are being installed
   results in things like:
   i   pbuilder   Recommends devscripts
   i A devscripts Recommends www-browser
   piA iceape-browser Provides   www-browser
   piA iceape-browser Recommends iceape-gnome-support

   This is *a* reason to install iceape-gnome-support, but perhaps not
  the reason it's getting pulled in in your case.


   This makes no sense, as I already have links installed for
   www-browser. Even stranger are things like:
  
   i   pbuilder   Recommends devscripts
   i A devscripts Recommends www-browser
   p   konqueror  Provides   www-browser
   p   konqueror  Dependslibqt3-mt (= 3:3.3.8b)
   p   libqt3-mt  Dependslibaudio2

   It's saying that one reason you might want to install libaudio2 is if
  you installed konqueror to fulfill the devscripts dependency.

   The general problem of why is this package being installed? is
  NP-hard where it isn't unsolvable (the latter being because the
  information aptitude would need isn't present in the package database,
  but rather in the user's head or in the guts of some apt algorithm).
  aptitude doesn't attempt to answer this question.  Instead, aptitude
  tells you what installed or to-be-installed package (if any) depends
  on this package? [0] This is useful for finding out why auto-removal
  is behaving in a particular way, but as you discovered, it doesn't
  answer all possible questions one might have.

   One option you have is to run aptitude why -v imagemagick iceape-browser,
  which will show you all the possible dependency chains between those
  packages.

   I'm happy to improve the algorithm if anyone has useful suggestions.

Aha, why -v helped indeed. One note about it though:
[EMAIL PROTECTED] bd] aptitude why -v imagemagick iceape-browser
p   imagemagick   Dependslibmagick10
p   libmagick10   Dependslibdjvulibre21 (= 3.5.20)
p   libdjvulibre21Recommends djvulibre-desktop
p   djvulibre-desktop Recommends djview4 | djview3 | djview | evince
p   djview4   Recommends djvulibre-plugin
p   djvulibre-plugin  Recommends mozilla-browser | mozilla |
mozilla-firefox | iceweasel | iceape-browser | konqueror | galeon |
netscape-base-4 | netscape
[EMAIL PROTECTED] bd] aptitude why -v imagemagick mozilla-browser
p   imagemagick   Dependslibmagick10
p   libmagick10   Dependslibdjvulibre21 (= 3.5.20)
p   libdjvulibre21Recommends djvulibre-desktop
p   djvulibre-desktop Recommends djview4 | djview3 | djview | evince
p   djview4   Recommends djvulibre-plugin
p   djvulibre-plugin  Recommends mozilla-browser | mozilla |
mozilla-firefox | iceweasel | iceape-browser | konqueror | galeon |
netscape-base-4 | netscape

Since iceape-browser is really being pulled in via the mozilla-browser
depend, shouldn't that step be listed as well in the first command?
This confused me a bit, since I wasn't aware that mozilla-browser was
a transitional package, and thought it was taking two paths in an
alternative.

Also, when I disable djvulibre-desktop in the aptitude plan with -,
hal is still pulled in, even though:
[EMAIL PROTECTED] bd] aptitude why -v imagemagick hal
p   imagemagick   Dependslibmagick10
p   libmagick10   Dependslibdjvulibre21 (= 3.5.20)
p   libdjvulibre21Recommends djvulibre-desktop
p   djvulibre-desktop Recommends djview4 | djview3 | djview | evince
p   evinceDependslibgnomevfs2-0 (= 1:2.17.90)
p   libgnomevfs2-0Recommends gnome-mount
p   gnome-mount   Dependshal

p   imagemagick Dependslibmagick10
p   libmagick10 Dependslibdjvulibre21 (= 3.5.20)
p   libdjvulibre21  Recommends djvulibre-desktop
p   djvulibre-desktop   Dependsxdg-utils
p   xdg-utils   Suggests   konqueror
p   konqueror   Dependskdebase-kio-plugins (= 4:3.5.9.dfsg.1-2+b1)
p   kdebase-kio-plugins Recommends hal

p   imagemagick  Dependslibmagick10
p   libmagick10  Recommends ghostscript
p   ghostscript  Suggests   hpijs
p   hpijsDependshplip (= 2.7.10-5)
p   hplipSuggests   gksu | kdebase-bin
p   kdebase-bin  Dependskdebase-bin-kde3 |
kdebase-runtime-bin-kde4
p   kdebase-runtime-bin-kde4 Recommends hal | kfreebsd-gnu | hurd

(hpijs is /not/ being pulled in)
Shouldn't there be no path to hal, meaning it should be auto-removed
now? If it's pinned by a previously-installed package's recommends or
suggests, 

Bug#478328: ITP: samba4 -- LanManager-like fileserver and active directory server

2008-04-28 Thread Jelmer Vernooij
Package: wnpp
Severity: wishlist
Owner: Jelmer Vernooij [EMAIL PROTECTED]

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

* Package name: samba4
  Version : 4.0.0~alpha4~git20080428
  Upstream Author : Samba Team [EMAIL PROTECTED]
* URL : http://www.samba.org/
* License : GPLv3 or later, some parts LGPLv3 or later
  Programming Lang: C, Perl, Python
  Description : LanManager-like fileserver and active directory server

The Samba software suite is a collection of programs that
implements the SMB protocol for unix systems, allowing you to serve
files and printers to Windows, NT, OS/2 and DOS clients, as well as
run as a domain controller for Active Directory.

Samba 4 is quite stable but does not yet provide all the features that Samba 3
has. It also provides a number of important features that Samba 3 does not yet
have and is unlikely to support in the near future. For this reason, we 
will be uploading a separate source package.

- -- System Information:
Debian Release: lenny/sid
  APT prefers gutsy
  APT policy: (500, 'gutsy'), (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-1-686 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Re: heimdal and testing

2008-04-28 Thread Brian May
Filipus Klutiero wrote:
 One of the things you could do is wait one day, after which
 cyrus-imapd-2.2 would be old enough to transition. cyrus-imapd-2.2
 needs to be updated, otherwise cyrus-common-2.2 would become
 uninstallable due to its dependency on libkrb5-22-heimdal in testing.


Another day, and nothing happened. I can't help think it is more
complicated then that.

http://release.debian.org/migration/testing.pl?package=cyrus-imapd-2.2
 says cyrus-imapd is now 10 days old and is waiting for Heimdal.

e.g. have a look at
http://release.debian.org/migration/testing.pl?package=libsasl2-modules-gssapi-heimdal.

Then this is only one day old
http://release.debian.org/migration/testing.pl?package=kolab-cyrus-pop3d.

It seems like Heimdal can't get moved unto testing until every package
that links against the libkrb5 also gets moved into testing, and these
have to be moved at the same time Heimdal is moved. Am I correct?

I thought the rules were that libkrb5-22-heimdal (and the corresponding
source) would remain in testing until is is no longer used by testing.
As such a Heimdal source package that only build libkrb5-24-heimdal
could still enter testing without updating all users of the library at
the same time. Maybe this has changed.

Brian May


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



Re: heimdal and testing

2008-04-28 Thread Filipus Klutiero
Le April 28, 2008 06:17:10 pm Brian May, vous avez écrit :
 Filipus Klutiero wrote:
  One of the things you could do is wait one day, after which
  cyrus-imapd-2.2 would be old enough to transition. cyrus-imapd-2.2
  needs to be updated, otherwise cyrus-common-2.2 would become
  uninstallable due to its dependency on libkrb5-22-heimdal in testing.

 Another day, and nothing happened. I can't help think it is more
 complicated then that.

 http://release.debian.org/migration/testing.pl?package=cyrus-imapd-2.2
  says cyrus-imapd is now 10 days old and is waiting for Heimdal.

 e.g. have a look at
 http://release.debian.org/migration/testing.pl?package=libsasl2-modules-gs
sapi-heimdal.

 Then this is only one day old
 http://release.debian.org/migration/testing.pl?package=kolab-cyrus-pop3d.

 It seems like Heimdal can't get moved unto testing until every package
 that links against the libkrb5 also gets moved into testing, and these
 have to be moved at the same time Heimdal is moved. Am I correct?
Yes. So heimdal is still waiting for cyrus-imapd-2.2 to be ready to 
transition.

 I thought the rules were that libkrb5-22-heimdal (and the corresponding
 source) would remain in testing until is is no longer used by testing.
 As such a Heimdal source package that only build libkrb5-24-heimdal
 could still enter testing without updating all users of the library at
 the same time. Maybe this has changed.
It has never been like that. There can't be multiple versions of a source in a 
given suite simultaneously. The only way to workaround the impact when there 
are soname bumps is to have several source packages.


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



Re: New README.source documentation for Debian packages

2008-04-28 Thread Goswin von Brederlow
Russ Allbery [EMAIL PROTECTED] writes:

 This new recommendation is *not* RC for lenny, only a recommendation.
 However, it is still a recommendation that most affected packages don't
 currently follow, so I wanted to give the development community a heads-up
 on this change.

Can this be savely ignored when it is planed to switch over to the 3.0
(quilt) format as soon as it is allowed and thereby replacing the
current patch system?

MfG
Goswin


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



Re: New README.source documentation for Debian packages

2008-04-28 Thread Russ Allbery
Goswin von Brederlow [EMAIL PROTECTED] writes:
 Russ Allbery [EMAIL PROTECTED] writes:

 This new recommendation is *not* RC for lenny, only a recommendation.
 However, it is still a recommendation that most affected packages don't
 currently follow, so I wanted to give the development community a
 heads-up on this change.

 Can this be savely ignored when it is planed to switch over to the 3.0
 (quilt) format as soon as it is allowed and thereby replacing the
 current patch system?

Switching to the 3.0 (quilt) format will satisfy the requirement that one
can simply run dpkg-source -x on the source package, make changes, and run
dpkg-buildpackage, which means that, according to this new Policy, no
additional documentation is required.  So the short version is yes, unless
the transition to that format is expected to take some time.

If your package build system is particularly complicated, or if you have
to do another upload for lenny anyway, it may be nice for the security
team to include a README.source for the existing package layout for lenny,
but this is certainly *not* required and we are not expecting maintainers
to address this issue for lenny.

Due largely to lack of manpower, Policy changes are a bit desynchronized
from our release cycle right now.  In order for this to really be
something for lenny, the Policy update would have had to have been
published about six months ago; now, it's really too late to expect lenny
to be affected by this change.

-- 
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: New README.source documentation for Debian packages

2008-04-28 Thread Goswin von Brederlow
Russ Allbery [EMAIL PROTECTED] writes:

 Goswin von Brederlow [EMAIL PROTECTED] writes:
 Russ Allbery [EMAIL PROTECTED] writes:

 This new recommendation is *not* RC for lenny, only a recommendation.
 However, it is still a recommendation that most affected packages don't
 currently follow, so I wanted to give the development community a
 heads-up on this change.

 Can this be savely ignored when it is planed to switch over to the 3.0
 (quilt) format as soon as it is allowed and thereby replacing the
 current patch system?

 Switching to the 3.0 (quilt) format will satisfy the requirement that one
 can simply run dpkg-source -x on the source package, make changes, and run
 dpkg-buildpackage, which means that, according to this new Policy, no
 additional documentation is required.  So the short version is yes, unless
 the transition to that format is expected to take some time.

 If your package build system is particularly complicated, or if you have
 to do another upload for lenny anyway, it may be nice for the security
 team to include a README.source for the existing package layout for lenny,
 but this is certainly *not* required and we are not expecting maintainers
 to address this issue for lenny.

 Due largely to lack of manpower, Policy changes are a bit desynchronized
 from our release cycle right now.  In order for this to really be
 something for lenny, the Policy update would have had to have been
 published about six months ago; now, it's really too late to expect lenny
 to be affected by this change.

Ok, lets hope ftpmaster will allow 3.0 format soon after lenny then.
Meanwhile I will stick with adding a README.source if I need an upload
but not upload just to add it.

MfG
Goswin


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



Re: [pkg-boost-devel] Bug#473752: Bug#473752: Bug#473752: Boost 1.35 has been released

2008-04-28 Thread Steve M. Robbins
On Sat, Apr 19, 2008 at 03:43:35PM -0500, Steve M. Robbins wrote:
 On Fri, Apr 18, 2008 at 12:20:39PM +0200, Domenico Andreoli wrote:
 
  I think new and separate boost-1.35 package is the best option we have:
  
   1. It may be uploaded now and released with lenny without touching
  any reverse dependency
   2. Never more huge transitions, reverse dependencies take 1.35 as
  they like
 
 I think we might as well support multiple boost versions.  As you
 point out, there is a big advantage in not forcing a transition each
 time Boost releases.
 
 The remaining question is whether we support co-installation of
 multiple -dev packages.  The fact that Boost upstream *does* support
 this -- by embedding the boost version into both the link library and
 the include directory names -- makes me lean towards this option.

... but now that I've thought a little harder, I've realized it
brings several negatives:

* The simplified link library names (i.e. -lboost_wave rather than
  -lboost_wave-gcc42-1_35) are difficult to manage.  I can think of
  a couple of poor options: drop them completely; or use alternatives.

* Ditto for the simplified include directory structure: /usr/include/boost
  rather than /usr/include/boost-1_35/boost.

* The tools bcp and pyste suffer from a similar problem: they
  are currently installed into /usr/bin.  For these tools to coexist
  in 1.34.1 and 1.35.0 versions, they'd need a suffix added, or the
  like.


In contrast, the alternative strategy of having all the libfoo-dev
(1.34.1) packages conflict with libfoo1.35.0-dev packages has just a
single negative: that you can't develop simultaneously with 1.34.1 and
1.35.0.  On the positive side, however, you can install the 1.35 -devs
and the existing build scripts will work because the include path and
the simplified link library names are preserved.


So unless anyone (Domenico?) has a strong preference for the
first option, I'm planning to pursue the second.

Thanks,
-Steve


signature.asc
Description: Digital signature


Accepted base-installer 1.90 (source all amd64)

2008-04-28 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 Apr 2008 07:14:31 +0200
Source: base-installer
Binary: base-installer bootstrap-base
Architecture: source all amd64
Version: 1.90
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 base-installer - base system installation framework (udeb)
 bootstrap-base - Install the base system (udeb)
Closes: 475639
Changes: 
 base-installer (1.90) unstable; urgency=low
 .
   [ Jérémy Bobbio ]
   * Add versatile as known armel kernel flavour.
 .
   [ Frans Pop ]
   * Remove Bdale Garbee and Sven Luther as Uploaders with many thanks for
 their past contributions.
   * Revert to bind-mounting the installation CD in /target because in some
 cases the fact that the CD is already mounted on /cdrom can prevent the CD
 from being scanned. Closes: #475639.
 .
   [ Updated translations ]
   * Amharic (am.po) by tegegne tefera
   * Arabic (ar.po) by Ossama M. Khayat
   * Bulgarian (bg.po) by Damyan Ivanov
   * Czech (cs.po) by Miroslav Kure
   * German (de.po) by Jens Seidel
   * Spanish (es.po) by Javier Fernández-Sanguino Peña
   * Basque (eu.po) by Piarres Beobide
   * Finnish (fi.po) by Esko Arajärvi
   * French (fr.po) by Christian Perrier
   * Galician (gl.po) by Jacobo Tarrio
   * Gujarati (gu.po) by Kartik Mistry
   * Hebrew (he.po) by Lior Kaplan
   * Japanese (ja.po) by Kenshi Muto
   * Kurdish (ku.po) by Erdal Ronahi
   * Lithuanian (lt.po) by Kęstutis Biliūnas
   * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
   * Marathi (mr.po)
   * Dutch (nl.po) by Frans Pop
   * Panjabi (pa.po) by Amanpreet Singh Brar
   * Polish (pl.po) by Bartosz Fenski
   * Portuguese (Brazil) (pt_BR.po) by Felipe Augusto van de Wiel (faw)
   * Portuguese (pt.po) by Miguel Figueiredo
   * Romanian (ro.po) by Eddy Petrișor
   * Russian (ru.po) by Yuri Kozlov
   * Slovak (sk.po) by Ivan Masár
   * Swedish (sv.po) by Daniel Nylander
   * Thai (th.po) by Theppitak Karoonboonyanan
   * Vietnamese (vi.po) by Clytie Siddall
   * Simplified Chinese (zh_CN.po) by Ming Hua
   * Traditional Chinese (zh_TW.po) by Tetralet
Files: 
 3e5757d86f2d024bf0e70c4f27878bac 871 debian-installer required 
base-installer_1.90.dsc
 0e32932b8d5d13ac292b5cc498a25e3d 215894 debian-installer required 
base-installer_1.90.tar.gz
 116df03d4aa185859fd8caacea086711 38906 debian-installer required 
base-installer_1.90_all.udeb
 f2ec00ab63c4832b4c9b0be349191500 131696 debian-installer required 
bootstrap-base_1.90_amd64.udeb
Package-Type: udeb

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

iD8DBQFIFV5Qgm/Kwh6ICoQRApz2AJ91JhDKaLl8pi0UlD/4XnOyTmh0ywCfXgVS
VL1TC9fZGLF0KxGwqHyo2zg=
=ViJU
-END PGP SIGNATURE-


Accepted:
base-installer_1.90.dsc
  to pool/main/b/base-installer/base-installer_1.90.dsc
base-installer_1.90.tar.gz
  to pool/main/b/base-installer/base-installer_1.90.tar.gz
base-installer_1.90_all.udeb
  to pool/main/b/base-installer/base-installer_1.90_all.udeb
bootstrap-base_1.90_amd64.udeb
  to pool/main/b/base-installer/bootstrap-base_1.90_amd64.udeb


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



Accepted apt-setup 1:0.36 (source all)

2008-04-28 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 Apr 2008 07:20:55 +0200
Source: apt-setup
Binary: apt-setup-udeb apt-mirror-setup apt-cdrom-setup
Architecture: source all
Version: 1:0.36
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 apt-cdrom-setup - set up a CD in sources.list (udeb)
 apt-mirror-setup - set up a mirror in sources.list (udeb)
 apt-setup-udeb - Configure apt (udeb)
Changes: 
 apt-setup (1:0.36) unstable; urgency=low
 .
   * Don't scan the installation CD if it does not include base packages.
   * Because of reported issues with accessing the CD in the /target environment
 if it is already mounted in the D-I environment, base-installer has been
 reverted to loop-mounting the installation CD. In order to still allow
 CD-changing while avoiding these issues and keeping installs idempotent, we
 now need to allow apt-cdrom to manage mounting/unmounting for all types of
 CD images (except for hd-media installs). See: #474346, #475639.
 Requires: base-installer (= 1.90), pkgsel (= 0.19), di-utils (= 1.57).
 .
   [ Updated translations ]
   * Kurdish (ku.po) by Erdal Ronahi
   * Marathi (mr.po)
Files: 
 9fd1c5d999693624eafda139f8e700e9 705 debian-installer extra apt-setup_0.36.dsc
 f3b32597971099613c8a53eaa344c2ac 197596 debian-installer extra 
apt-setup_0.36.tar.gz
 f4df440d0b9cb176db4fa6b18f06a46c 36444 debian-installer standard 
apt-setup-udeb_0.36_all.udeb
 71aab54de79cfb6abe56689790b264d4 57764 debian-installer extra 
apt-mirror-setup_0.36_all.udeb
 e7608a17907c17f80b3b1d5d5eafe3e9 58996 debian-installer extra 
apt-cdrom-setup_0.36_all.udeb
Package-Type: udeb

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

iD8DBQFIFV7Vgm/Kwh6ICoQRAvI9AJ9tkpxtoY792KvJTxN6kD4e7WnNyQCffh4V
lvhTYFUlQy096PbQI4Gs1oc=
=7Kwi
-END PGP SIGNATURE-


Accepted:
apt-cdrom-setup_0.36_all.udeb
  to pool/main/a/apt-setup/apt-cdrom-setup_0.36_all.udeb
apt-mirror-setup_0.36_all.udeb
  to pool/main/a/apt-setup/apt-mirror-setup_0.36_all.udeb
apt-setup-udeb_0.36_all.udeb
  to pool/main/a/apt-setup/apt-setup-udeb_0.36_all.udeb
apt-setup_0.36.dsc
  to pool/main/a/apt-setup/apt-setup_0.36.dsc
apt-setup_0.36.tar.gz
  to pool/main/a/apt-setup/apt-setup_0.36.tar.gz


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



Accepted debian-installer-utils 1.57 (source all amd64)

2008-04-28 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 Apr 2008 07:11:36 +0200
Source: debian-installer-utils
Binary: di-utils-shell di-utils-reboot di-utils-exit-installer di-utils 
di-utils-mapdevfs di-utils-terminfo
Architecture: source all amd64
Version: 1.57
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 di-utils   - Miscellaneous utilities for the debian installer (udeb)
 di-utils-exit-installer - Exit installer (udeb)
 di-utils-mapdevfs - mapdevfs utility for the debian installer (udeb)
 di-utils-reboot - Reboot (udeb)
 di-utils-shell - Execute a shell (udeb)
 di-utils-terminfo - Terminfo entries needed by newt/slang in debian installer 
(udeb)
Changes: 
 debian-installer-utils (1.57) unstable; urgency=low
 .
   * Remove David Kimdon, Matt Kraai and Tollef Fog Heen as Uploaders with many
 thanks for their past contributions.
   * Unmount /cdrom during package installation even if the user did not scan
 additional CDs as otherwise accessing the CD may fail. See: #474346.
 .
   [ Updated translations ]
   * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
   * Marathi (mr.po)
Files: 
 9a26d6575e919d3f439378e7313227f4 938 debian-installer standard 
debian-installer-utils_1.57.dsc
 443d702e304e7f90b2527da8ccbe8939 69378 debian-installer standard 
debian-installer-utils_1.57.tar.gz
 5f91a6c411e78e126f3cab4d2f9c02ea 17916 debian-installer standard 
di-utils-shell_1.57_all.udeb
 1bf64d4fd7a23ca2adc30ecd3fa8e3cc 8092 debian-installer standard 
di-utils-reboot_1.57_all.udeb
 99de8ae98e9da879758926438066825d 2828 debian-installer extra 
di-utils-exit-installer_1.57_all.udeb
 4a41530656487c2c9241a7a4780aab4b 2420 debian-installer standard 
di-utils-terminfo_1.57_all.udeb
 9dfddba939acd953a60c02bcc642065f 10518 debian-installer standard 
di-utils_1.57_amd64.udeb
 e372b523ff68064e2fcd08591b6b7b5d 2374 debian-installer standard 
di-utils-mapdevfs_1.57_amd64.udeb
Package-Type: udeb

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

iD8DBQFIFVzLgm/Kwh6ICoQRAjnZAJ9ZrP+5hiGHZ1EgLHjcR4043zzPJACgon9Q
96THJky+YlYIbMTKK6dnQd8=
=usfR
-END PGP SIGNATURE-


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


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



Accepted pkgsel 0.19 (source all)

2008-04-28 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 Apr 2008 07:20:08 +0200
Source: pkgsel
Binary: pkgsel
Architecture: source all
Version: 0.19
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 pkgsel - Select and install packages (udeb)
Closes: 474346
Changes: 
 pkgsel (0.19) unstable; urgency=low
 .
   * Change back to using apt-install in pre-pkgsel.d/01laptop-detect now that
 it's safe to do so. Requires: di-utils (= 1.56).
   * Unmount /cdrom during package installation even if the user did not scan
 additional CDs as otherwise accessing the CD may fail. Closes: #474346.
 .
   [ Updated translations ]
   * Marathi (mr.po)
   * Panjabi (pa.po) by Amanpreet Singh Alam
Files: 
 5daccd315d47bbb58981cbedb0f187f9 611 debian-installer standard pkgsel_0.19.dsc
 835873adcf0c646fda030e39a4432922 25999 debian-installer standard 
pkgsel_0.19.tar.gz
 817194bb4179a340c2b35e26971a56c2 7956 debian-installer standard 
pkgsel_0.19_all.udeb
Package-Type: udeb

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

iD8DBQFIFV6kgm/Kwh6ICoQRAg7JAJ9UI60Wi9ATu31w2OmeYMis0sbpEACfX0G1
gQ71A1DMPyLrXoseKaY/4mM=
=3wD/
-END PGP SIGNATURE-


Accepted:
pkgsel_0.19.dsc
  to pool/main/p/pkgsel/pkgsel_0.19.dsc
pkgsel_0.19.tar.gz
  to pool/main/p/pkgsel/pkgsel_0.19.tar.gz
pkgsel_0.19_all.udeb
  to pool/main/p/pkgsel/pkgsel_0.19_all.udeb


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



Accepted tla-tools 2005.0.patch.29-2 (source all)

2008-04-28 Thread Manoj Srivastava
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 00:53:57 -0500
Source: tla-tools
Binary: tla-tools
Architecture: source all
Version: 2005.0.patch.29-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 tla-tools  - Utilities to make life with GNU Arch (tla) easier
Changes: 
 tla-tools (2005.0.patch.29-2) unstable; urgency=low
 .
   * Orphan the package. This is no longer maintained upstream, and I no
 longer use tla.
Checksums-Sha1: 
 c22d5647ccaad4994b68b8b4881ef996c16885f8 1040 tla-tools_2005.0.patch.29-2.dsc
 03b7a33a6b4af00f1b64932701bcc6b74e24100d 11408 
tla-tools_2005.0.patch.29-2.diff.gz
 f570e270e3cb32160805e97699612db399e79420 54754 
tla-tools_2005.0.patch.29-2_all.deb
Checksums-Sha256: 
 428e959779a435df4f18cd908085a8a58a418d5902d2f17bc43188426b0c 1040 
tla-tools_2005.0.patch.29-2.dsc
 9de18cdef9843afe2d6c89e0ee6d13be175959e8b1de0f52a6eb3053582654ac 11408 
tla-tools_2005.0.patch.29-2.diff.gz
 6a3bdb7471ff00926251ce0af0be62a523e505abaa33cf0033a46a6634ed8e0d 54754 
tla-tools_2005.0.patch.29-2_all.deb
Files: 
 3076fd87c86966b48518c6fe688d619b 1040 devel optional 
tla-tools_2005.0.patch.29-2.dsc
 0b35ad45d65992919b43aeb142c5d2be 11408 devel optional 
tla-tools_2005.0.patch.29-2.diff.gz
 78bb40796954f4c60ad9c204e8ef4b3b 54754 devel optional 
tla-tools_2005.0.patch.29-2_all.deb

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

iD8DBQFIFWhnIbrau78kQkwRApBmAJwKWAURj+mKj/n6EaDSx+SZkIIdAwCgtGwb
XUbTN3SnLRw2wwKKOzlMNsM=
=tNkJ
-END PGP SIGNATURE-


Accepted:
tla-tools_2005.0.patch.29-2.diff.gz
  to pool/main/t/tla-tools/tla-tools_2005.0.patch.29-2.diff.gz
tla-tools_2005.0.patch.29-2.dsc
  to pool/main/t/tla-tools/tla-tools_2005.0.patch.29-2.dsc
tla-tools_2005.0.patch.29-2_all.deb
  to pool/main/t/tla-tools/tla-tools_2005.0.patch.29-2_all.deb


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



Accepted cvs-buildpackage 5.22 (source all)

2008-04-28 Thread Manoj Srivastava
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 00:36:03 -0500
Source: cvs-buildpackage
Binary: cvs-buildpackage
Architecture: source all
Version: 5.22
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group [EMAIL PROTECTED]
Changed-By: Manoj Srivastava [EMAIL PROTECTED]
Description: 
 cvs-buildpackage - A set of Debian package scripts for CVS source trees.
Changes: 
 cvs-buildpackage (5.22) unstable; urgency=low
 .
   * Orphan the package. I no longer use CVS, and am unable to spend time
 maintaining this as well as this deserves.
Checksums-Sha1: 
 e8a25e9d3064d958bfeec39a21fb263632947653 702 cvs-buildpackage_5.22.dsc
 5bf92828148531640ce0e9d12fd5d10edcfc96d8 61920 cvs-buildpackage_5.22.tar.gz
 badcd22f8e3f938c767b0b756e71c372ea7bcfc8 65272 cvs-buildpackage_5.22_all.deb
Checksums-Sha256: 
 c4569cb96de21a8da0a65eba89dc7cb28a62c0940a477201c7935f803e5dc447 702 
cvs-buildpackage_5.22.dsc
 bce50f7499e7a3f65b2ac54aa629f8a4fca4de6c4b551e30d88372bc0aaefd96 61920 
cvs-buildpackage_5.22.tar.gz
 33508dd574ea787ea8b079921f8bef0ea4e7c77a37dfea473aa902deac20388e 65272 
cvs-buildpackage_5.22_all.deb
Files: 
 67efa42f18e91640563de24c7f68ac01 702 devel optional cvs-buildpackage_5.22.dsc
 07f00f826852053529b184b0393a863c 61920 devel optional 
cvs-buildpackage_5.22.tar.gz
 65a8d60ce6472067e0bfa5f61496e515 65272 devel optional 
cvs-buildpackage_5.22_all.deb

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

iD8DBQFIFWPhIbrau78kQkwRApV1AJ0b2BzP136aPRXPTT4pxoLnsl/XxwCg4MQb
z/5SN8bIFmz0uQiJ/5MRLBk=
=Ayd9
-END PGP SIGNATURE-


Accepted:
cvs-buildpackage_5.22.dsc
  to pool/main/c/cvs-buildpackage/cvs-buildpackage_5.22.dsc
cvs-buildpackage_5.22.tar.gz
  to pool/main/c/cvs-buildpackage/cvs-buildpackage_5.22.tar.gz
cvs-buildpackage_5.22_all.deb
  to pool/main/c/cvs-buildpackage/cvs-buildpackage_5.22_all.deb


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



Accepted partman-auto-raid 10 (source all)

2008-04-28 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 Apr 2008 08:16:51 +0200
Source: partman-auto-raid
Binary: partman-auto-raid
Architecture: source all
Version: 10
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 partman-auto-raid - Allow preseeded RAID installs (udeb)
Changes: 
 partman-auto-raid (10) unstable; urgency=low
 .
   * Use /dev/mdX instead of /dev/md/X while version 0 superblocks are default.
 .
   [ Updated translations ]
   * Amharic (am.po) by tegegne tefera
   * Kurdish (ku.po) by Erdal Ronahi
   * Marathi (mr.po)
   * Panjabi (pa.po) by Amanpreet Singh Alam
Files: 
 72ca22f072d8906cb8a8c9cf631dfaca 682 debian-installer standard 
partman-auto-raid_10.dsc
 0cd05b39174d22ae1368b505d6949412 32567 debian-installer standard 
partman-auto-raid_10.tar.gz
 020d55837886846ef06d50f9306bb7b5 16332 debian-installer standard 
partman-auto-raid_10_all.udeb
Package-Type: udeb

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

iD8DBQFIFWvrgm/Kwh6ICoQRAugOAKCZ0b5A9wbk57+JPRKgNaA3pyZcXwCg2OjG
YdmEg31A2YKtxc2lRdG3/Vg=
=/8k2
-END PGP SIGNATURE-


Accepted:
partman-auto-raid_10.dsc
  to pool/main/p/partman-auto-raid/partman-auto-raid_10.dsc
partman-auto-raid_10.tar.gz
  to pool/main/p/partman-auto-raid/partman-auto-raid_10.tar.gz
partman-auto-raid_10_all.udeb
  to pool/main/p/partman-auto-raid/partman-auto-raid_10_all.udeb


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



Accepted mdcfg 1.25 (source all)

2008-04-28 Thread Frans Pop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 Apr 2008 08:15:47 +0200
Source: mdcfg
Binary: mdcfg mdcfg-utils
Architecture: source all
Version: 1.25
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Frans Pop [EMAIL PROTECTED]
Description: 
 mdcfg  - Configure MD devices (udeb)
 mdcfg-utils - Configure MD devices (udeb)
Closes: 477356
Changes: 
 mdcfg (1.25) unstable; urgency=low
 .
   * Fix deletion of inactive RAID devices. Closes: #477356.
   * Use /dev/mdX instead of /dev/md/X while version 0 superblocks are default.
 This is also more consistent with the installed system.
 .
   [ Updated translations ]
   * Kurdish (ku.po) by Erdal Ronahi
   * Malayalam (ml.po) by Praveen|പ്രവീണ്‍ A|എ
   * Marathi (mr.po)
Files: 
 f739115a8b868e91ab516cd17d67731c 659 debian-installer optional mdcfg_1.25.dsc
 25a85cf8954ffdaacaf57ccbfd8b6d56 119985 debian-installer optional 
mdcfg_1.25.tar.gz
 c9a107f97974b60cabcd26ee12fa08ec 3984 debian-installer optional 
mdcfg_1.25_all.udeb
 0d42b6f3e87d2cacb5f524ceed09d69f 120152 debian-installer optional 
mdcfg-utils_1.25_all.udeb
Package-Type: udeb

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

iD8DBQFIFWurgm/Kwh6ICoQRAsgSAJ4w3W+3FCltldiE2kWPJrU0gIrpjwCeJGsL
OWccl/0b0pKomurS+OqJzio=
=Fx7l
-END PGP SIGNATURE-


Accepted:
mdcfg-utils_1.25_all.udeb
  to pool/main/m/mdcfg/mdcfg-utils_1.25_all.udeb
mdcfg_1.25.dsc
  to pool/main/m/mdcfg/mdcfg_1.25.dsc
mdcfg_1.25.tar.gz
  to pool/main/m/mdcfg/mdcfg_1.25.tar.gz
mdcfg_1.25_all.udeb
  to pool/main/m/mdcfg/mdcfg_1.25_all.udeb


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



Accepted tolua 5.1b-3 (source i386)

2008-04-28 Thread Jimmy Kaplowitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 01:42:42 -0400
Source: tolua
Binary: libtolua-dev
Architecture: source i386
Version: 5.1b-3
Distribution: unstable
Urgency: low
Maintainer: Jimmy Kaplowitz [EMAIL PROTECTED]
Changed-By: Jimmy Kaplowitz [EMAIL PROTECTED]
Description: 
 libtolua-dev - Tool to integrate C/C++ code with Lua - development files
Changes: 
 tolua (5.1b-3) unstable; urgency=low
 .
   * Converted debian/watch to format 3 (fixes tolua DEHS page)
   * Removed maintainer scripts, none of which did anything
   * Install MANIFEST file as documentation along with README, and
 reference it from debian/copyright as containing the date and time
 of upstream publication
Checksums-Sha1: 
 074117011e2dbfa33dbc96be5716f06e131e4f43 934 tolua_5.1b-3.dsc
 42491e67290e949595c9f42e382fc02a3c45a1d5 4372 tolua_5.1b-3.diff.gz
 8c8d2005a528f128443ab004619c8fe753912400 35328 libtolua-dev_5.1b-3_i386.deb
Checksums-Sha256: 
 880600adaeb914de74d4f25716cc1bf164316efac6f2f50cb1f95b159ffb2e77 934 
tolua_5.1b-3.dsc
 5866cefffc03588790fba2ef2b2a5b3bb767157115824100347739a52eeebd90 4372 
tolua_5.1b-3.diff.gz
 986cd88d60ef485955bec513f64ceb1c9d1c13843c0499cbb6dc944666d6ff95 35328 
libtolua-dev_5.1b-3_i386.deb
Files: 
 7be548dd9c3760479adebd776be6c933 934 libdevel optional tolua_5.1b-3.dsc
 3bd980fa64c66d702b4a18eb3ccd0db7 4372 libdevel optional tolua_5.1b-3.diff.gz
 c6841e2f8588a0c8303aadeb561ae03b 35328 libdevel optional 
libtolua-dev_5.1b-3_i386.deb

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

iD8DBQFIFWl+6uPcNfDX1EoRAo01AKChhUztAkWIydR8Oie8AxYR379MMQCeN8t2
SMQkCTfXRNeyFqRsjEkZHeQ=
=3NVI
-END PGP SIGNATURE-


Accepted:
libtolua-dev_5.1b-3_i386.deb
  to pool/main/t/tolua/libtolua-dev_5.1b-3_i386.deb
tolua_5.1b-3.diff.gz
  to pool/main/t/tolua/tolua_5.1b-3.diff.gz
tolua_5.1b-3.dsc
  to pool/main/t/tolua/tolua_5.1b-3.dsc


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



Accepted classpath 2:0.97.1-1 (source all amd64)

2008-04-28 Thread Michael Koch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 16 Apr 2008 07:46:14 +0200
Source: classpath
Binary: classpath classpath-gtkpeer classpath-qtpeer classpath-common 
classpath-common-unzipped classpath-doc jikes-classpath gcjwebplugin
Architecture: source all amd64
Version: 2:0.97.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers [EMAIL PROTECTED]
Changed-By: Michael Koch [EMAIL PROTECTED]
Description: 
 classpath  - clean room standard Java libraries
 classpath-common - clean room standard Java libraries - architecture 
independent fil
 classpath-common-unzipped - clean room standard Java libraries - architecture 
independent fil
 classpath-doc - clean room standard Java libraries - free Java API 
documentation
 classpath-gtkpeer - clean room standard Java libraries - GTK+ AWT peer
 classpath-qtpeer - clean room standard Java libraries - QT AWT peer
 gcjwebplugin - web browser plugin to execute Java (tm) applets
 jikes-classpath - clean room standard Java libraries - wrapper for jikes
Closes: 468851
Changes: 
 classpath (2:0.97.1-1) unstable; urgency=low
 .
   * New upstream release
 - Disable javadoc generation for jsr166 code. This breaks with current
   gjdoc.
   * Re-add conditional for Alsa dependencies. Closes: #468851.
   * Added patch from Petter Reinholdtsen to fix Swing buttons.
Checksums-Sha1: 
 a3393f5d1f8c0fc2c402264c0ff7e96daba0073e 1771 classpath_0.97.1-1.dsc
 04486b0ce8d4da1f4111d28ae03b149cc475d6dd 10275689 classpath_0.97.1.orig.tar.gz
 014b58cb89f4e49522e436ae11b886051a39ebd9 15276 classpath_0.97.1-1.diff.gz
 ff1b7a96803a3f9248e8bfb1b75f7edbe38a2aae 9196550 
classpath-common_0.97.1-1_all.deb
 e211c5c27b4eeda760481711133cbcab43c5ea31 6362128 
classpath-common-unzipped_0.97.1-1_all.deb
 9cb0ef91caa84c21aa1125a77e617b008f94051e 30210958 
classpath-doc_0.97.1-1_all.deb
 6af185d39e3a20c56d6d7a67a77487a9396c266a 20528 jikes-classpath_0.97.1-1_all.deb
 8de6586c345a4de2ebdbca2625650f02b5b39381 219472 classpath_0.97.1-1_amd64.deb
 160a2b55eb5b04ad0bc4579b251a57e0ba188d61 99740 
classpath-gtkpeer_0.97.1-1_amd64.deb
 ca1e700659539c63b2875fcf57c8f72114b5de48 102974 
classpath-qtpeer_0.97.1-1_amd64.deb
 822331224691f4ca18caa794929c621d2d04d590 36894 gcjwebplugin_0.97.1-1_amd64.deb
Checksums-Sha256: 
 68ff8b54746a9fd6aff54a51f341a8c13f59e758dba1571328388a2fdfa65adb 1771 
classpath_0.97.1-1.dsc
 6d03fc6ee0e33a32d6bf9c4b1114505ac568ba17e7c7eef6c76918e53174b7c5 10275689 
classpath_0.97.1.orig.tar.gz
 32a79e35e3100b9a1903b0611437e62677b565eac59fcb2dbb2e9f1a8df71c40 15276 
classpath_0.97.1-1.diff.gz
 4a52eaf1c9c4714621e10e6ce4f0cab4cbd68deffbdd01c4c07546f2b6fe69f4 9196550 
classpath-common_0.97.1-1_all.deb
 e146f769d456e3e53c4f13c1fe6a65fb70f938ed862d852902d921fa3e37982b 6362128 
classpath-common-unzipped_0.97.1-1_all.deb
 ed5f2a344ef33b90a20a2b9a05a5accd47d7ef0efbd3e7440f7d49cd70b72872 30210958 
classpath-doc_0.97.1-1_all.deb
 556b2b670b02d231d13f5c0518da1135b8d76284d823a9a45861b2b76b1678f7 20528 
jikes-classpath_0.97.1-1_all.deb
 471ea5bc8687ab5ac6fc17c240086e86aa759f545d96289872998514047a5c9b 219472 
classpath_0.97.1-1_amd64.deb
 af6777cc0d425163bf617f3b75abd196af661d459af1a612951ef850d7c494cd 99740 
classpath-gtkpeer_0.97.1-1_amd64.deb
 97f5f798b48bb9ab1c897353271b0ddb33c779ccb5ce4838679eb9233b4638fa 102974 
classpath-qtpeer_0.97.1-1_amd64.deb
 3b716bb229bb0c5f70e754375f61d31757fed98a857e2c184c5d12256ce1304e 36894 
gcjwebplugin_0.97.1-1_amd64.deb
Files: 
 e17e864529caad921f44d3a1d4605f0c 1771 libs optional classpath_0.97.1-1.dsc
 35e81f0e0055a8b8a7a879077cf2b3c6 10275689 libs optional 
classpath_0.97.1.orig.tar.gz
 79f35aa36e9b7b1e50561ec9e0ad352a 15276 libs optional classpath_0.97.1-1.diff.gz
 66c575bedd527becd3867870057aeeae 9196550 libs optional 
classpath-common_0.97.1-1_all.deb
 8a7ac572c59b6290768f1c2ba959dd72 6362128 libs optional 
classpath-common-unzipped_0.97.1-1_all.deb
 df90581c0c51cae510f593b9bbb11e8c 30210958 doc optional 
classpath-doc_0.97.1-1_all.deb
 99426d2fef58f16bd58bc99128f8207d 20528 devel optional 
jikes-classpath_0.97.1-1_all.deb
 637dea551e6924a2c14b3f39fe28df17 219472 libs optional 
classpath_0.97.1-1_amd64.deb
 9d8981bc25e106b9fc619dd389c8646a 99740 libs optional 
classpath-gtkpeer_0.97.1-1_amd64.deb
 0bfdca4f9ac4307af3c1aadc88d3f62a 102974 libs optional 
classpath-qtpeer_0.97.1-1_amd64.deb
 9efaad7ad5613da13a3f09dddb446100 36894 net optional 
gcjwebplugin_0.97.1-1_amd64.deb

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

iD8DBQFIFXXJWSOgCCdjSDsRAm/JAJsHizaTdzLZo3rLV/RmT7Bs39vBAQCfS2fc
enlV3v1QgDsSzd9QEmQHSW8=
=LUvY
-END PGP SIGNATURE-


Accepted:
classpath-common-unzipped_0.97.1-1_all.deb
  to pool/main/c/classpath/classpath-common-unzipped_0.97.1-1_all.deb
classpath-common_0.97.1-1_all.deb
  to pool/main/c/classpath/classpath-common_0.97.1-1_all.deb
classpath-doc_0.97.1-1_all.deb
  to pool/main/c/classpath/classpath-doc_0.97.1-1_all.deb
classpath-gtkpeer_0.97.1-1_amd64.deb
  to 

Accepted libtommath 0.39-2 (source all i386)

2008-04-28 Thread Joe Nahmias
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 02:11:12 -0400
Source: libtommath
Binary: libtommath-docs libtommath-dev libtommath0
Architecture: source all i386
Version: 0.39-2
Distribution: unstable
Urgency: low
Maintainer: Joe Nahmias [EMAIL PROTECTED]
Changed-By: Joe Nahmias [EMAIL PROTECTED]
Description: 
 libtommath-dev - multiple-precision integer library [development files]
 libtommath-docs - multiple-precision integer library [documentation]
 libtommath0 - multiple-precision integer library [runtime]
Closes: 474413
Changes: 
 libtommath (0.39-2) unstable; urgency=low
 .
   * debian/rules: install target should only depend on build-arch which caused
 FTBFS on the buildds, closes: #474413.
   * debian/rules: make build-indep and build-arch .PHONY targets
   * debian/watch: add call to uupdate on new upstream version
Checksums-Sha1: 
 4df2b02b004b3da5c1268c86936547c30b2c937f 1107 libtommath_0.39-2.dsc
 4f47e157fc8edb2f7fcc5f7d910293a7ea6cf456 2471 libtommath_0.39-2.diff.gz
 c3b14ffd89bc7e2ca19c00240849b451e7c15307 1266044 libtommath-docs_0.39-2_all.deb
 abd9af71f815c7f0eb8cbe78e0b8db043a8dd202 70064 libtommath-dev_0.39-2_i386.deb
 26b0877a83be60feafd83c628e8dd36e8ac33ac9 52500 libtommath0_0.39-2_i386.deb
Checksums-Sha256: 
 576a78fa06cc8d8d4249385800f459d2ed91f6968f9588461c2a019ccef83961 1107 
libtommath_0.39-2.dsc
 227e7885bdefd5bc9f276f2761ebe9ce1b571f6597b2aa9737cab5d3abc032d2 2471 
libtommath_0.39-2.diff.gz
 b122df55c6b0d4a09eb295bfb326fed6bb2f22b47c03c18c8b6b4794e81b7ee3 1266044 
libtommath-docs_0.39-2_all.deb
 eebcebc8d1a07f79e6ed609258a99e691cd8a192d01381335cc042bf62c4e352 70064 
libtommath-dev_0.39-2_i386.deb
 e404a89faa695ae9df044762ebb84851e20abd57aa88313859ba50361c7dcddf 52500 
libtommath0_0.39-2_i386.deb
Files: 
 91de6a5a20d94e315cc98c8bacb7f828 1107 libs extra libtommath_0.39-2.dsc
 c139dd57fa62397b15b8f24ef9c0d5bc 2471 libs extra libtommath_0.39-2.diff.gz
 039f0f7759d704250db3c6887be7500e 1266044 doc extra 
libtommath-docs_0.39-2_all.deb
 ce1c1972bd66eb05f5ed4df6915ab9f8 70064 libdevel extra 
libtommath-dev_0.39-2_i386.deb
 0418a91434c0531115e20ad5445d4742 52500 libs extra libtommath0_0.39-2_i386.deb

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

iD8DBQFIFXIfULacnzmLNx0RAtmqAKClu7CkqSIsmOmmY+c1uoo3/c240wCfWCzw
5hK9C41LCpnUPqrOyJXyzpg=
=tpi7
-END PGP SIGNATURE-


Accepted:
libtommath-dev_0.39-2_i386.deb
  to pool/main/libt/libtommath/libtommath-dev_0.39-2_i386.deb
libtommath-docs_0.39-2_all.deb
  to pool/main/libt/libtommath/libtommath-docs_0.39-2_all.deb
libtommath0_0.39-2_i386.deb
  to pool/main/libt/libtommath/libtommath0_0.39-2_i386.deb
libtommath_0.39-2.diff.gz
  to pool/main/libt/libtommath/libtommath_0.39-2.diff.gz
libtommath_0.39-2.dsc
  to pool/main/libt/libtommath/libtommath_0.39-2.dsc


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



Accepted gnupg2 2.0.9-2 (source amd64)

2008-04-28 Thread Eric Dorland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 03:22:20 -0400
Source: gnupg2
Binary: gnupg-agent gpgsm gnupg2
Architecture: source amd64
Version: 2.0.9-2
Distribution: unstable
Urgency: low
Maintainer: Eric Dorland [EMAIL PROTECTED]
Changed-By: Eric Dorland [EMAIL PROTECTED]
Description: 
 gnupg-agent - GNU privacy guard - password agent
 gnupg2 - GNU privacy guard - a free PGP replacement
 gpgsm  - GNU privacy guard - S/MIME version
Closes: 459462 462951 476999 477691
Changes: 
 gnupg2 (2.0.9-2) unstable; urgency=low
 .
   * The I've neglected you too long release.
 .
   * debian/control:
 - Add recommends on gnupg-agent for gpgsm and gnupg2, since they need
   it under most circumstances. (Closes: #459462, #477691)
 - Depend on pinentry instead of recommend, and move pinentry-gtk2 to the
   front of the alternatives list. (Closes: #462951)
   * keyserver/gpgkeys_curl.c, keyserver/gpgkeys_hkp.c: Fix FTBFS with gcc
 4.3 strictness on bitfields combined with curl. (Closes: #476999)
Checksums-Sha1: 
 3f3b24bd6d7191e75b29b4f84978d7b13be9cf0c 1346 gnupg2_2.0.9-2.dsc
 1cf433cf88a50c772f252bf1d919e5841f4a7720 39563 gnupg2_2.0.9-2.diff.gz
 751d305b32ff4b9ca7d90b39085c850239b05547 310940 gnupg-agent_2.0.9-2_amd64.deb
 8e4126d6543c8e44603228a1205ec0b2c9b82a72 455040 gpgsm_2.0.9-2_amd64.deb
 6a0f3e712fccc331600f8700290c0b953b7d077b 2155830 gnupg2_2.0.9-2_amd64.deb
Checksums-Sha256: 
 c14b5b5791a1fd8281b3e3cf2774a6b1fa78795aa5c3f1e17ab46b0e2a6421fa 1346 
gnupg2_2.0.9-2.dsc
 f3727dbfa0c5cb7a8b6f23d8c8861d450fd4cf6db13b848052660114ed09ced5 39563 
gnupg2_2.0.9-2.diff.gz
 2937a50c748dc687a405f3385b4659f229487234aca4366319835d5ab6eb2bcb 310940 
gnupg-agent_2.0.9-2_amd64.deb
 c9dbe6921e2179a19748fe85be59ef1b523d922107c43bd38e6f1fe378241200 455040 
gpgsm_2.0.9-2_amd64.deb
 4e9ec301f36b04a0a811f9191f0d1041f26949bc3110ac0700d50231f43292b8 2155830 
gnupg2_2.0.9-2_amd64.deb
Files: 
 b525e956bf1b414143c878b0d3505c8f 1346 utils optional gnupg2_2.0.9-2.dsc
 8884e00c6eca313eeab08a30562695db 39563 utils optional gnupg2_2.0.9-2.diff.gz
 3b0a1995bee955bc161563ca83ee0ff8 310940 utils optional 
gnupg-agent_2.0.9-2_amd64.deb
 353c41a2d77d48a6bcb5bdd8ee0cce35 455040 utils optional gpgsm_2.0.9-2_amd64.deb
 38841060e36972a5e47f9994711a6b09 2155830 utils optional 
gnupg2_2.0.9-2_amd64.deb

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

iD8DBQFIFXzEYemOzxbZcMYRAi5HAJ9jAkVUdNgcvO54ot2QMJSBbwRUnwCfUBlr
N1kgdggLNgj6jo2RHS83Cp8=
=PWUf
-END PGP SIGNATURE-


Accepted:
gnupg-agent_2.0.9-2_amd64.deb
  to pool/main/g/gnupg2/gnupg-agent_2.0.9-2_amd64.deb
gnupg2_2.0.9-2.diff.gz
  to pool/main/g/gnupg2/gnupg2_2.0.9-2.diff.gz
gnupg2_2.0.9-2.dsc
  to pool/main/g/gnupg2/gnupg2_2.0.9-2.dsc
gnupg2_2.0.9-2_amd64.deb
  to pool/main/g/gnupg2/gnupg2_2.0.9-2_amd64.deb
gpgsm_2.0.9-2_amd64.deb
  to pool/main/g/gnupg2/gpgsm_2.0.9-2_amd64.deb


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



Accepted g15daemon 1.9.5.3-3 (source i386)

2008-04-28 Thread Giacomo Catenazzi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 08:47:07 +0200
Source: g15daemon
Binary: g15daemon libg15daemon-client1 libg15daemon-client-dev
Architecture: source i386
Version: 1.9.5.3-3
Distribution: unstable
Urgency: low
Maintainer: Giacomo Catenazzi [EMAIL PROTECTED]
Changed-By: Giacomo Catenazzi [EMAIL PROTECTED]
Description: 
 g15daemon  - Screen multiplexer for Logitech G15 Keyboard
 libg15daemon-client-dev - Development packages for libg15daemon-client
 libg15daemon-client1 - Development packages for libg15daemon-client
Closes: 463078 478069
Changes: 
 g15daemon (1.9.5.3-3) unstable; urgency=low
 .
   * Changing default in /etc/default/g15daemon: Use L1 key instead of MR
 as actual upstream default and allowing to use g15macro
 (Closes: #478069)
   * Removed the X11 setup on man page, because it is not relevant
 to recent distributions and could confuse our users (Closes: #463078)
Checksums-Sha1: 
 7e71ed11c4ef9dafba2765d2ffbf6e9e9f8b5895 1170 g15daemon_1.9.5.3-3.dsc
 f29143e99b534dec812b5d7e063f04eea387b659 8591 g15daemon_1.9.5.3-3.diff.gz
 7a89c450c2bcef7f4d08cabe73682e75c5194995 38652 g15daemon_1.9.5.3-3_i386.deb
 2fa20f159781ea2bb36bc948c33edb69049e2db0 16240 
libg15daemon-client1_1.9.5.3-3_i386.deb
 f644ef0a4ed85f21994a276bef779d4396903e9d 16360 
libg15daemon-client-dev_1.9.5.3-3_i386.deb
Checksums-Sha256: 
 c231d3947c50082545be740b91d51247aac805577c2dd41d2eb2105f6bea55fb 1170 
g15daemon_1.9.5.3-3.dsc
 ddfb23048d084ff43e4503255f8120f01580094eff159e2656863143e49e0d6c 8591 
g15daemon_1.9.5.3-3.diff.gz
 8da6310bf33a9d1395778fe747470fa839bb5b795a3b34e4d6358eb36add7ea1 38652 
g15daemon_1.9.5.3-3_i386.deb
 8915c7fbe47b57ac905aff07109355dafedfcb0c80c74da363e6ca4f0c8deb6d 16240 
libg15daemon-client1_1.9.5.3-3_i386.deb
 5576c6cc07595074687aead69dca699a05d6cf2aaf09b3d62af50dd3b9ed8bb9 16360 
libg15daemon-client-dev_1.9.5.3-3_i386.deb
Files: 
 e92dba61659e87bcee1009a7ab59e197 1170 utils extra g15daemon_1.9.5.3-3.dsc
 abb28a428d3a8eb0cce1c2a309a8a60c 8591 utils extra g15daemon_1.9.5.3-3.diff.gz
 67c0c329392154fe4df1b7cd03768ff7 38652 utils extra g15daemon_1.9.5.3-3_i386.deb
 cf8480f9f3c4c60b48e524d9b571cd37 16240 libs extra 
libg15daemon-client1_1.9.5.3-3_i386.deb
 e2bd237ecde857232c53878eda9232dd 16360 libdevel extra 
libg15daemon-client-dev_1.9.5.3-3_i386.deb

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

iD8DBQFIFXui+ZNUJLHfmlcRAqTeAJwO2TXi1hFSLjznXRJ7wDG5t0rXNwCghfmM
j5eYtfCbThn+99VWJgTNofQ=
=hrhT
-END PGP SIGNATURE-


Accepted:
g15daemon_1.9.5.3-3.diff.gz
  to pool/main/g/g15daemon/g15daemon_1.9.5.3-3.diff.gz
g15daemon_1.9.5.3-3.dsc
  to pool/main/g/g15daemon/g15daemon_1.9.5.3-3.dsc
g15daemon_1.9.5.3-3_i386.deb
  to pool/main/g/g15daemon/g15daemon_1.9.5.3-3_i386.deb
libg15daemon-client-dev_1.9.5.3-3_i386.deb
  to pool/main/g/g15daemon/libg15daemon-client-dev_1.9.5.3-3_i386.deb
libg15daemon-client1_1.9.5.3-3_i386.deb
  to pool/main/g/g15daemon/libg15daemon-client1_1.9.5.3-3_i386.deb


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



Accepted telepathy-sofiasip 0.5.7-1 (source amd64)

2008-04-28 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 09:50:59 +0200
Source: telepathy-sofiasip
Binary: telepathy-sofiasip
Architecture: source amd64
Version: 0.5.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers [EMAIL PROTECTED]
Changed-By: Sjoerd Simons [EMAIL PROTECTED]
Description: 
 telepathy-sofiasip - SIP connection manager for the Telepathy framework
Changes: 
 telepathy-sofiasip (0.5.7-1) unstable; urgency=low
 .
   [ Sjoerd Simons]
   * New upstream release
   * debian/patches/00_media_stream_error.patch
 + Added. Only close the media stream on error, not the whole session.
 Fixes sip calls not working without available video codecs when a video
 stream was requested (SF #1944820)
 .
   [ Simon McVittie]
   * Use my debian.org address in Uploaders
Checksums-Sha1: 
 c3c842ccfcf9f4fb4a0a27b9ec1a98d968c82a26 1635 telepathy-sofiasip_0.5.7-1.dsc
 e65533de23644127e2e1c0500c71f1315d70fc59 470692 
telepathy-sofiasip_0.5.7.orig.tar.gz
 2c1385a14bf31948a68f96a1058fb2c14fdcad02 3792 
telepathy-sofiasip_0.5.7-1.diff.gz
 87922f4fa8afe0b0534392800774cdc602db4082 95216 
telepathy-sofiasip_0.5.7-1_amd64.deb
Checksums-Sha256: 
 917ddb136785135c93b1dcea746d63f82fe1a8a10cd9074e484f41ff2dc2340e 1635 
telepathy-sofiasip_0.5.7-1.dsc
 9b5a656df976c223f2a30c1796d52806edd0b00ad3ffab6453205fcad6148d96 470692 
telepathy-sofiasip_0.5.7.orig.tar.gz
 8b6736409a5ee248f06e81b8d31fc83114a9eb484d83b4f61aeb09d66eb6e4c6 3792 
telepathy-sofiasip_0.5.7-1.diff.gz
 87d38b52d164ac7ed6bcceb1c328fc241749f153e46d6b6cba66618df28aa01a 95216 
telepathy-sofiasip_0.5.7-1_amd64.deb
Files: 
 e763ab67d88f7606ab95429a39b314e6 1635 net optional 
telepathy-sofiasip_0.5.7-1.dsc
 08433999e608e7f40616e2e47f74381a 470692 net optional 
telepathy-sofiasip_0.5.7.orig.tar.gz
 445341c27c821c8567b89f914511f7ab 3792 net optional 
telepathy-sofiasip_0.5.7-1.diff.gz
 d8fec54c290266ab041740e29f8a7d51 95216 net optional 
telepathy-sofiasip_0.5.7-1_amd64.deb

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

iD8DBQFIFYJOgTd+SodosdIRAgBOAJ9ydSLXACYU8Z52gj9GrcP0nk3n2gCffbc7
SuKiwsGnpLZWbYFzyLuPiH8=
=bUof
-END PGP SIGNATURE-


Accepted:
telepathy-sofiasip_0.5.7-1.diff.gz
  to pool/main/t/telepathy-sofiasip/telepathy-sofiasip_0.5.7-1.diff.gz
telepathy-sofiasip_0.5.7-1.dsc
  to pool/main/t/telepathy-sofiasip/telepathy-sofiasip_0.5.7-1.dsc
telepathy-sofiasip_0.5.7-1_amd64.deb
  to pool/main/t/telepathy-sofiasip/telepathy-sofiasip_0.5.7-1_amd64.deb
telepathy-sofiasip_0.5.7.orig.tar.gz
  to pool/main/t/telepathy-sofiasip/telepathy-sofiasip_0.5.7.orig.tar.gz


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



Accepted libdvdnav 4.1.2-1 (source i386)

2008-04-28 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 09:40:00 +0200
Source: libdvdnav
Binary: libdvdnav4 libdvdnav-dev
Architecture: source i386
Version: 4.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 libdvdnav-dev - DVD navigation library (development)
 libdvdnav4 - DVD navigation library
Changes: 
 libdvdnav (4.1.2-1) unstable; urgency=low
 .
   * Taking over libdvdnav maintenance from Philipp Matthias Hahn, with thanks
 for his past contributions.
   * Redoing debian packaging from scratch.
   * Merging upstream version 4.1.2.
Checksums-Sha1: 
 00feb51383f7b33ed0f9d189b689f6e6d58afa29 1114 libdvdnav_4.1.2-1.dsc
 65e8f5aa01a60cf8fd013ef9e5d8c23b9fef21d6 196223 libdvdnav_4.1.2.orig.tar.gz
 d5395e6c3eeb27e6d96474c1b0ac41d96e8327f2 5010 libdvdnav_4.1.2-1.diff.gz
 c0680c290d7a91a9ff1ff63ff1dc3bda0eb1428a 73798 libdvdnav4_4.1.2-1_i386.deb
 09a7bfbc7ac98354e36df84af4ff2e909d05e0f4 71982 libdvdnav-dev_4.1.2-1_i386.deb
Checksums-Sha256: 
 bb1cbdec9387cf8c653c0e76facb9e8c99cf08b8bb65678ad9cd5d2bb3c45a06 1114 
libdvdnav_4.1.2-1.dsc
 56bcb75113bb8091574c36590f84fb00d37711e8cda9f5f7152667b33b2d0cd1 196223 
libdvdnav_4.1.2.orig.tar.gz
 6823deb42edbd7205ce995cc87a1d579a5fa9c441859c4b6a93268ecb214e194 5010 
libdvdnav_4.1.2-1.diff.gz
 a76bac83403eb3bd5e5c489752f3e105ce2f1eebe1d3a4e623492c69b4503500 73798 
libdvdnav4_4.1.2-1_i386.deb
 a735db8ee1459be57e4f64e8ff20f192719b709ef5ffa879de1c80829da863d5 71982 
libdvdnav-dev_4.1.2-1_i386.deb
Files: 
 bd678d3dfcc60ec217b92dd71a112806 1114 libs optional libdvdnav_4.1.2-1.dsc
 0e9a494403f9f5a2e781252c77599561 196223 libs optional 
libdvdnav_4.1.2.orig.tar.gz
 b13a01c7dcb8c573efbbd7df536e38dd 5010 libs optional libdvdnav_4.1.2-1.diff.gz
 01954a31164952836f7a71a1c3453494 73798 libs optional 
libdvdnav4_4.1.2-1_i386.deb
 c94ffddd8c5d83ced65bf75f6dbf914e 71982 libdevel optional 
libdvdnav-dev_4.1.2-1_i386.deb

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

iD8DBQFIFYA4+C5cwEsrK54RAnOXAJwPWZNCxjHCn3+m4jg4clxpHrRjIwCfSXhq
QxaHx6orkrUj4d4Bdhp4Pgg=
=9XYt
-END PGP SIGNATURE-


Accepted:
libdvdnav-dev_4.1.2-1_i386.deb
  to pool/main/libd/libdvdnav/libdvdnav-dev_4.1.2-1_i386.deb
libdvdnav4_4.1.2-1_i386.deb
  to pool/main/libd/libdvdnav/libdvdnav4_4.1.2-1_i386.deb
libdvdnav_4.1.2-1.diff.gz
  to pool/main/libd/libdvdnav/libdvdnav_4.1.2-1.diff.gz
libdvdnav_4.1.2-1.dsc
  to pool/main/libd/libdvdnav/libdvdnav_4.1.2-1.dsc
libdvdnav_4.1.2.orig.tar.gz
  to pool/main/libd/libdvdnav/libdvdnav_4.1.2.orig.tar.gz


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



Accepted gcc-avr 1:4.3.0-2 (source i386)

2008-04-28 Thread Hakan Ardo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 07 Apr 2008 16:36:22 +0200
Source: gcc-avr
Binary: gcc-avr
Architecture: source i386
Version: 1:4.3.0-2
Distribution: unstable
Urgency: low
Maintainer: Hakan Ardo [EMAIL PROTECTED]
Changed-By: Hakan Ardo [EMAIL PROTECTED]
Description: 
 gcc-avr- The GNU C compiler (cross compiler for avr)
Closes: 474674
Changes: 
 gcc-avr (1:4.3.0-2) unstable; urgency=low
 .
   * libiberty.a now removed for X86_64 arch aswell (closes: #474674)
Files: 
 a125b8cc6e7d224ebb2fcc3c7cf424df 732 devel extra gcc-avr_4.3.0-2.dsc
 15ca0f297a9f2e7179eb9ad5ca7fc7fc 13757 devel extra gcc-avr_4.3.0-2.tar.gz
 896f000280f841c41f96beefab35ff98 4995958 devel extra gcc-avr_4.3.0-2_i386.deb

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

iD8DBQFIFYQYAbtddT3jfcARAgiPAJ9w6/i4WU0wBocq9E2r5RjVQoqqcwCffGxk
MXXoMmqz3oUZXS24iWJ5g2E=
=J7iD
-END PGP SIGNATURE-


Accepted:
gcc-avr_4.3.0-2.dsc
  to pool/main/g/gcc-avr/gcc-avr_4.3.0-2.dsc
gcc-avr_4.3.0-2.tar.gz
  to pool/main/g/gcc-avr/gcc-avr_4.3.0-2.tar.gz
gcc-avr_4.3.0-2_i386.deb
  to pool/main/g/gcc-avr/gcc-avr_4.3.0-2_i386.deb


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



Accepted sympa 5.3.4-5 (source i386)

2008-04-28 Thread Racke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Apr 2008 20:31:16 +0200
Source: sympa
Binary: sympa
Architecture: source i386
Version: 5.3.4-5
Distribution: unstable
Urgency: low
Maintainer: Stefan Hornburg (Racke) [EMAIL PROTECTED]
Changed-By: Stefan Hornburg (Racke) [EMAIL PROTECTED]
Description: 
 sympa  - Modern mailing list manager
Closes: 473406 473654 476852
Changes: 
 sympa (5.3.4-5) unstable; urgency=low
 .
   * updated Portuguese translation of Debconf templates (Closes: #476852,
 thanks to Miguel Figueiredo [EMAIL PROTECTED])
   * updated French translation of Debconf templates (Closes: #473406,
 thanks to Christian Perrier [EMAIL PROTECTED])
   * updated German translation of Debconf templates (Closes: #473654,
 thanks to Helge Kreutzmann [EMAIL PROTECTED])
Checksums-Sha1: 
 f4a32e3cc2f22a26b5f2e84f559b058a74669568 976 sympa_5.3.4-5.dsc
 dfe63d42bebc6bbf8d8cc276b6cd0de512e48cd6 109508 sympa_5.3.4-5.diff.gz
 a1135a0e9f260e704b70b83d7733178f34f7c8d7 3088038 sympa_5.3.4-5_i386.deb
Checksums-Sha256: 
 f0e7c8abf5b8c7ed4841a2183a39a9934d2cf4d98d4921e21fde027a9a6b1820 976 
sympa_5.3.4-5.dsc
 06c9060cc66476d932a6585f3e8cab6faf77d48173f114c1e49261eb8392470f 109508 
sympa_5.3.4-5.diff.gz
 39cce1dbc8ea1d476d885cee6e18cd5ae39dbc2253266ce8e9d095a6c5ea5583 3088038 
sympa_5.3.4-5_i386.deb
Files: 
 21724c210ab8e20eed987d36f5e21ab2 976 mail optional sympa_5.3.4-5.dsc
 3fa14dede0e27c716bb7246afec308cb 109508 mail optional sympa_5.3.4-5.diff.gz
 85577c20862914f4c6242d8bd3a3373a 3088038 mail optional sympa_5.3.4-5_i386.deb

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

iD8DBQFIFZQVjgVfE5tya3ERAiFiAKDg6HrEB+lEMEfWMCM7+2pELouZXgCgmjK3
E6iMFSRa5BkWupVKmIj8e6Q=
=Ej7B
-END PGP SIGNATURE-


Accepted:
sympa_5.3.4-5.diff.gz
  to pool/main/s/sympa/sympa_5.3.4-5.diff.gz
sympa_5.3.4-5.dsc
  to pool/main/s/sympa/sympa_5.3.4-5.dsc
sympa_5.3.4-5_i386.deb
  to pool/main/s/sympa/sympa_5.3.4-5_i386.deb


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



Accepted texlive-bin 2007.dfsg.1-3 (source i386)

2008-04-28 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 20 Apr 2008 20:14:04 +0200
Source: texlive-bin
Binary: texlive-base-bin texlive-extra-utils texlive-font-utils 
texlive-metapost texlive-omega texlive-xetex texlive-music texlive-lang-indic 
libkpathsea4 libkpathsea-dev texlive-metapost-doc texlive-base-bin-doc
Architecture: source i386
Version: 2007.dfsg.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian TeX Maintainers [EMAIL PROTECTED]
Changed-By: Norbert Preining [EMAIL PROTECTED]
Description: 
 libkpathsea-dev - TeX Live: path search library for TeX (development part)
 libkpathsea4 - TeX Live: path search library for TeX (runtime part)
 texlive-base-bin - TeX Live: Essential binaries
 texlive-base-bin-doc - TeX Live: Documentation files for texlive-base-bin
 texlive-extra-utils - TeX Live: TeX auxiliary programs
 texlive-font-utils - TeX Live: TeX font-related programs
 texlive-lang-indic - TeX Live: Indic
 texlive-metapost - TeX Live: MetaPost (and Metafont) drawing packages
 texlive-metapost-doc - TeX Live: Documentation files for texlive-metapost
 texlive-music - TeX Live: Music typesetting
 texlive-omega - TeX Live: Omega
 texlive-xetex - TeX Live: XeTeX macros
Closes: 449621 450875 457270 462610 465107 469294 470433 473548 476954
Changes: 
 texlive-bin (2007.dfsg.1-3) unstable; urgency=low
 .
   * improve manpage of patgen (Closes: #450875)
   * (really?) fix the watch file (Closes: #449621), thanks Raphael Geissert
   * bump standards version to 3.7.3, no changes needed
   * add texlive-common dependency to the -doc splitted packages,
 otherwise configuration can fail due to missing update-updmap etc
 (Closes: #457270) (Closes Ubuntu bug: 177674)
   * include dviconcat and dviutils (orphaned package dviutils/seetex) and
 provide/replace/conflict with dviutils (extra-utils)
   * texlive-xetex recommends texlive-latex-base (Closes: #462610)
   * add copies of supp-pdf.tex and supp-mis.tex from context 2008-01-28
 to texlive-metapost so inclusion of metapost images in pdf(la)tex does
 work without installation of context (Closes: #465107)
   * fix perl warning in thumbpdf (patch: fix-thumbpdf-perlwarning)
 (Closes: #469294)
   * fix a segfault in ovp2ovf (patch: fix-ovp2ovf-segfault) (Closes: #470433)
   * TeX Live 2007.2 release incorporation: fixes for xetex and xdvipdfmx,
 new patches tl2007.2-xetex and tl2007.2-xdvipdfmx
 (adapted from Jonathan Kew's original patches to work with poppler)
   * add the LPPL to debian/copyright
   * texlive-extra-utils now recommends ghostscript (Closes: #476954)
   * fix skipping of all trees in mktexlsr with empty $HOME (Closes: #473548)
   * add a patch for Sinhala support by Anuradha Ratnaweera
 [EMAIL PROTECTED], but keep it disabled until Jonathan gives me
 the ok. This would close the bug #476957.
Checksums-Sha1: 
 6468a47359fe08868d853c5f04df5814e7c6d336 1637 texlive-bin_2007.dfsg.1-3.dsc
 960c72dabd9961d664ce78af2ae833169b3c6e43 345899 
texlive-bin_2007.dfsg.1-3.diff.gz
 637695dfb5a4df00f6814a4cfa1279972aeaed2f 2399330 
texlive-base-bin_2007.dfsg.1-3_i386.deb
 fd6da7facb9b99048e1f84d299e7d596541ebe64 602852 
texlive-extra-utils_2007.dfsg.1-3_i386.deb
 24de3337b59daf9e7e80f2e572b13f3afea4bf1b 979386 
texlive-font-utils_2007.dfsg.1-3_i386.deb
 0b406be03e8931a69901db0c811fca3bb200fe23 604224 
texlive-metapost_2007.dfsg.1-3_i386.deb
 ff5f76e20fbc301f84b7b1b6d6d8eb542830124f 2720118 
texlive-omega_2007.dfsg.1-3_i386.deb
 7fa54cb442ad7c1482dc436cf36e60d491462aa1 6381786 
texlive-xetex_2007.dfsg.1-3_i386.deb
 612617b214ae596cb8bee2dca036225c5eab265c 1721660 
texlive-music_2007.dfsg.1-3_i386.deb
 44db154f77724577bd32333da45c8dbbca1718a3 6727604 
texlive-lang-indic_2007.dfsg.1-3_i386.deb
 bff8aec6b9a1423bfa7a15f22819c7067bc17e41 119572 
libkpathsea4_2007.dfsg.1-3_i386.deb
 cd2c2c5117481250ed529dcc183a5cf1f9d1b4d4 156396 
libkpathsea-dev_2007.dfsg.1-3_i386.deb
 0b61acecb20de9791ed9cfefaf12fcc394d5e993 6781496 
texlive-metapost-doc_2007.dfsg.1-3_i386.deb
 a2c04aa3b228511088c08b019e9a55a58a796228 8607822 
texlive-base-bin-doc_2007.dfsg.1-3_i386.deb
Checksums-Sha256: 
 e643f65792f38e7493ead05f531fb9bd22237144f354a0d82c627b2e56a8ff9e 1637 
texlive-bin_2007.dfsg.1-3.dsc
 ee0cf27d9dd7a6a6fed8e4ba1288e7ec5afdc229fe0c4b6903d4cfacb7e69ec1 345899 
texlive-bin_2007.dfsg.1-3.diff.gz
 34411f72c208c486525dd9eb5844868d02c0a3aaf682ae7306c83944f1dde05f 2399330 
texlive-base-bin_2007.dfsg.1-3_i386.deb
 0d1008330bbf365c31633b857740a4120dc430adfdb31a70c0a0acaabcc097e7 602852 
texlive-extra-utils_2007.dfsg.1-3_i386.deb
 704f1622475a64f46fe50671f0fd55cd10ad760a4154f5fe74a7eb6e9cd9d84d 979386 
texlive-font-utils_2007.dfsg.1-3_i386.deb
 779cd9e3466d8db546b91d6d854f832335c6acd62e19738f04138b87a9957263 604224 
texlive-metapost_2007.dfsg.1-3_i386.deb
 3e716729b87e8f49dfe9003eaee7f989165030e2c17cd564ccf6b147af1ca744 2720118 
texlive-omega_2007.dfsg.1-3_i386.deb
 

Accepted texlive-doc 2007-4 (source all)

2008-04-28 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Apr 2008 20:07:57 +0200
Source: texlive-doc
Binary: texlive-doc-base texlive-doc-bg texlive-doc-zh texlive-doc-cs+sk 
texlive-doc-nl texlive-doc-en texlive-doc-fi texlive-doc-fr texlive-doc-de 
texlive-doc-el texlive-doc-it texlive-doc-ja texlive-doc-ko texlive-doc-mn 
texlive-doc-pl texlive-doc-pt texlive-doc-ru texlive-doc-es texlive-doc-th 
texlive-doc-tr texlive-doc-uk texlive-doc-vi
Architecture: source all
Version: 2007-4
Distribution: unstable
Urgency: low
Maintainer: Debian TeX Maintainers [EMAIL PROTECTED]
Changed-By: Norbert Preining [EMAIL PROTECTED]
Description: 
 texlive-doc-base - TeX Live: Base documentation
 texlive-doc-bg - TeX Live: Bulgarian documentation
 texlive-doc-cs+sk - TeX Live: Czechslovak documentation
 texlive-doc-de - TeX Live: German documentation
 texlive-doc-el - TeX Live: Greek documentation
 texlive-doc-en - TeX Live: English documentation
 texlive-doc-es - TeX Live: Spanish documentation
 texlive-doc-fi - TeX Live: Finnish documentation
 texlive-doc-fr - TeX Live: French documentation
 texlive-doc-it - TeX Live: Italian documentation
 texlive-doc-ja - TeX Live: Japanese documentation
 texlive-doc-ko - TeX Live: Korean documentation
 texlive-doc-mn - TeX Live: Mongolian documentation
 texlive-doc-nl - TeX Live: Dutch documentation
 texlive-doc-pl - TeX Live: Polish documentation
 texlive-doc-pt - TeX Live: Portuguese documentation
 texlive-doc-ru - TeX Live: Russian documentation
 texlive-doc-th - TeX Live: Thai documentation
 texlive-doc-tr - TeX Live: Turkish documentation
 texlive-doc-uk - TeX Live: Ukrainian documentation
 texlive-doc-vi - TeX Live: Vietnamese documentation
 texlive-doc-zh - TeX Live: Chinese documentation
Closes: 449630 469931
Changes: 
 texlive-doc (2007-4) unstable; urgency=low
 .
   * add stricter dependencies to all packages: if in the final shipout
 dep on a texlive package there is no version given, the value of
 latest-version (from tpm2deb.cfg) of the source package is taken.
   * Update location of upstream iso.zip file in uscan watch file (closes:
 #449630), thanks to Raphael Geissert [EMAIL PROTECTED] [fk]
   * bump standards version to 3.7.3, no changes needed
   * fix the spelling of the gentle description (Closes: #469931)
   * add the LPPL to debian/copyright
Checksums-Sha1: 
 fb27c172484b0a97e13352e1b98d8ff5e8983e5c 1577 texlive-doc_2007-4.dsc
 813a312084f16e72997a7d5ab85210c260ab9bdf 90547 texlive-doc_2007-4.diff.gz
 9669f97402baa37bb486627567d844f12150e3af 758938 texlive-doc-base_2007-4_all.deb
 9c4c0192e663e4d899ba140d166a0bb0ba68e64c 2086932 texlive-doc-bg_2007-4_all.deb
 8e5b17d1c95d5d68779fcc490df00f968811b1aa 572842 texlive-doc-zh_2007-4_all.deb
 f80a3abced0a6501f6bdca1a6c7f95b4ab9161a9 1510522 
texlive-doc-cs+sk_2007-4_all.deb
 3e248ce062f49816dcfd8b45e6df898ab7c1ae88 2007284 texlive-doc-nl_2007-4_all.deb
 e5115ee799fb10e0d11883c3a72d753aa1b00d92 30924732 texlive-doc-en_2007-4_all.deb
 2c6f9866a2d13299274615a002bec5ff7543c003 1770430 texlive-doc-fi_2007-4_all.deb
 160220b723785050140714ef261e9317835395c1 6607014 texlive-doc-fr_2007-4_all.deb
 820619d54aef5e9c8d2fa2f316f41b39bcd64798 4086910 texlive-doc-de_2007-4_all.deb
 85181edf75429715d54313f1d9215d58b402b055 434212 texlive-doc-el_2007-4_all.deb
 1121ef5b22d43a8804d23c231f5a3614054fa4aa 1588452 texlive-doc-it_2007-4_all.deb
 7abe070a096f03990f39c1fcf91eb0c773bfc75b 676738 texlive-doc-ja_2007-4_all.deb
 b2e23245d4903aefa6332d9bc3dbd46e143414b4 1146346 texlive-doc-ko_2007-4_all.deb
 b4ac5dc0eb19b291c18c7a1d98a3b5b8c88e5e81 49978 texlive-doc-mn_2007-4_all.deb
 230356d4da3e69f7d109a09c9f9e59c8f5f04995 5188118 texlive-doc-pl_2007-4_all.deb
 630e775b96dcdcfb1325043ed8a17d7439f1b21f 4800354 texlive-doc-pt_2007-4_all.deb
 ddbb65ea044038042d954a6cc5506ae6a0028e58 2398726 texlive-doc-ru_2007-4_all.deb
 51cf3e2a569be39479675021b4bad243a03cd234 1186846 texlive-doc-es_2007-4_all.deb
 63f2e7948b3886cb17cc0b5637b1f451c65a987a 501726 texlive-doc-th_2007-4_all.deb
 30e93c0ec47d9aad1bad3df64928f32d07a42c03 1483054 texlive-doc-tr_2007-4_all.deb
 a3cad39a2000b09bda60bbf74181976d23495df9 2154198 texlive-doc-uk_2007-4_all.deb
 1b953fa82492a0196e3670d7657488548fda4642 3323364 texlive-doc-vi_2007-4_all.deb
Checksums-Sha256: 
 77e7540c646cedbdf1f3cb2e8ad793def0bf2632af5f5ea4e672cf4eb8d9 1577 
texlive-doc_2007-4.dsc
 3d99539a51b6d7c10bf8e340df1f1d6577cce74930c77a6fd2f2ce9ec713d73b 90547 
texlive-doc_2007-4.diff.gz
 88775aba948bb2596fb1dd4712116d0e9e91f2c7ea7d56beaaa334ee92324a18 758938 
texlive-doc-base_2007-4_all.deb
 30549de264af9d201e5e52d3dcc096cb01e076be1807f535121f30b2acd5ba32 2086932 
texlive-doc-bg_2007-4_all.deb
 3cbac48fccf5694a2bf38bb8b2cf715ece94d88d0ff9eb84ce00b6fed9b06711 572842 
texlive-doc-zh_2007-4_all.deb
 a898158f130b84078441e692f8f49db663627ed74706ee4993cd92392ac08889 1510522 
texlive-doc-cs+sk_2007-4_all.deb
 19688498ddd3be37e200920391e7bb272fc876051836774e2d2106d287886a49 2007284 

Accepted texlive-extra 2007.dfsg.1-2 (source all)

2008-04-28 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 25 Apr 2008 23:39:03 +0200
Source: texlive-extra
Binary: texlive-bibtex-extra texlive-formats-extra texlive-generic-extra 
texlive-math-extra texlive-plain-extra texlive-latex-extra texlive-latex3 
texlive-fonts-extra texlive-games texlive-pstricks texlive-publishers 
texlive-humanities texlive-science texlive-fonts-extra-doc texlive-pstricks-doc 
texlive-publishers-doc texlive-science-doc texlive-latex-extra-doc 
texlive-humanities-doc
Architecture: source all
Version: 2007.dfsg.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian TeX Maintainers [EMAIL PROTECTED]
Changed-By: Norbert Preining [EMAIL PROTECTED]
Description: 
 texlive-bibtex-extra - TeX Live: Extra BibTeX styles
 texlive-fonts-extra - TeX Live: Extra fonts
 texlive-fonts-extra-doc - TeX Live: Documentation files for texlive-fonts-extra
 texlive-formats-extra - TeX Live: Extra formats
 texlive-games - TeX Live: Games typesetting (chess, etc)
 texlive-generic-extra - TeX Live: Miscellaneous extra generic macros
 texlive-humanities - TeX Live: LaTeX support for the humanities
 texlive-humanities-doc - TeX Live: Documentation files for texlive-humanities
 texlive-latex-extra - TeX Live: LaTeX supplementary packages
 texlive-latex-extra-doc - TeX Live: Documentation files for texlive-latex-extra
 texlive-latex3 - TeX Live: LaTeX3 packages
 texlive-math-extra - TeX Live: Advanced math typesetting
 texlive-plain-extra - TeX Live: Plain TeX supplementary packages
 texlive-pstricks - TeX Live: PSTricks packages
 texlive-pstricks-doc - TeX Live: Documentation files for texlive-pstricks
 texlive-publishers - TeX Live: Support for publishers
 texlive-publishers-doc - TeX Live: Documentation files for texlive-publishers
 texlive-science - TeX Live: Typesetting for natural and computer sciences
 texlive-science-doc - TeX Live: Documentation files for texlive-science
Closes: 429150 439709 449634 449983 464219 477794
Changes: 
 texlive-extra (2007.dfsg.1-2) unstable; urgency=low
 .
   * Update location of upstream iso.zip file in uscan watch file (closes:
 #449634), thanks to Raphael Geissert [EMAIL PROTECTED] [fk]
   * include simplecv to make lyx happy (Closes: #449983) [np]
   * update via.cls from CTAN to fix misbehaviour (Closes: #429150)
   * fix skak.sty for usage with skaknew's uskak.fd (the only one present)
 (Closes: #439709)
   * bump standards version to 3.7.3, no changes needed
   * add pbox.pdf to texlive-latex-extra-doc (Closes: #464219)
   * let -formats-extra replace -latex-base (= 2007-10) to make
 smooth upgrades in Ubuntu (gutsy-hardy) possible (Closes Ubuntu
 bug 188910) [np]
   * add the LPPL to debian/copyright
   * update everypage from CTAN to fix serious error (Closes: #477794)
Checksums-Sha1: 
 d8634b76504c7644ad0f8d4cd00843227164b349 1687 texlive-extra_2007.dfsg.1-2.dsc
 9b2c18827ccb450a0e140c621bf5cc2757fc1436 328163 
texlive-extra_2007.dfsg.1-2.diff.gz
 ddfb0e43f30ac611390cec06bffc75775f53528b 3921442 
texlive-bibtex-extra_2007.dfsg.1-2_all.deb
 68bfea95f2a9427c64f6e085f8f621dd7c3f65f6 2214004 
texlive-formats-extra_2007.dfsg.1-2_all.deb
 c403fc26ac5546be942da473e58a23da5e4b3d7e 1891366 
texlive-generic-extra_2007.dfsg.1-2_all.deb
 ca4489c7d72e213358b50f603d3dc1d1933e504d 2500312 
texlive-math-extra_2007.dfsg.1-2_all.deb
 e5714f9302f2fb14339029896d2db4e2128a0e65 1092102 
texlive-plain-extra_2007.dfsg.1-2_all.deb
 7e9231d226e9bfe1f249ba7f134de4515531eb57 3638080 
texlive-latex-extra_2007.dfsg.1-2_all.deb
 2fc0abb52c6868fd1c9cdb2dcf98672a4b6ea594 460816 
texlive-latex3_2007.dfsg.1-2_all.deb
 35a8ae41f303b584e8954e1966172593c35e54fc 40272002 
texlive-fonts-extra_2007.dfsg.1-2_all.deb
 c8b263dce426e12037ba03c0e14ce423024c925f 1656460 
texlive-games_2007.dfsg.1-2_all.deb
 ae0e19b9dfb3238c1b21c6967fc3ccbbc7362c49 300310 
texlive-pstricks_2007.dfsg.1-2_all.deb
 981985771d174e4f512e6534790c1542530023bd 1762692 
texlive-publishers_2007.dfsg.1-2_all.deb
 4524c9caffd770e27cc845a4602de8ddb4bb1ef9 301860 
texlive-humanities_2007.dfsg.1-2_all.deb
 bae6e59d4af79bdfb095d5573118fd5f8aeb0474 331086 
texlive-science_2007.dfsg.1-2_all.deb
 1824d0057250ffc3cf948b618f4bf7d2362a6ddd 17298882 
texlive-fonts-extra-doc_2007.dfsg.1-2_all.deb
 cdc5889f65961db5dad05ac557a7d38771fe4d6a 23892876 
texlive-pstricks-doc_2007.dfsg.1-2_all.deb
 2af72c51991828b6d81623aea22e22496d9f8335 12060676 
texlive-publishers-doc_2007.dfsg.1-2_all.deb
 3a9839d5438d3c267db5cd5cfb8f37a75458f277 7488262 
texlive-science-doc_2007.dfsg.1-2_all.deb
 d95e61a4e14df4fb6f7236d95844465e509b99a5 76541822 
texlive-latex-extra-doc_2007.dfsg.1-2_all.deb
 421187f6d844caa1f54b528d19b4caca3d48f30e 8470890 
texlive-humanities-doc_2007.dfsg.1-2_all.deb
Checksums-Sha256: 
 e3a28c6186ae8d49696e37cca1f35e3ea68210c0432187ce2798116547b16e5e 1687 
texlive-extra_2007.dfsg.1-2.dsc
 fe562828fce1f5591633dadfcbaf7feadf1b0734ae625ba30492571158380d45 328163 
texlive-extra_2007.dfsg.1-2.diff.gz
 

Accepted texlive-base 2007-14 (source all)

2008-04-28 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Apr 2008 20:07:09 +0200
Source: texlive-base
Binary: texlive-base texlive-generic-recommended texlive-latex-base 
texlive-latex-recommended texlive-fonts-recommended texlive-pictures texlive 
texlive-full texlive-common tetex-bin tetex-base tetex-extra 
texlive-pictures-doc texlive-fonts-recommended-doc texlive-latex-base-doc 
texlive-latex-recommended-doc
Architecture: source all
Version: 2007-14
Distribution: unstable
Urgency: low
Maintainer: Debian TeX Maintainers [EMAIL PROTECTED]
Changed-By: Norbert Preining [EMAIL PROTECTED]
Description: 
 tetex-base - TeX Live: teTeX transitional package
 tetex-bin  - TeX Live: teTeX transitional package
 tetex-extra - TeX Live: teTeX transitional package
 texlive- TeX Live: A decent selection of the TeX Live packages
 texlive-base - TeX Live: Essential programs and files
 texlive-common - TeX Live: Base component
 texlive-fonts-recommended - TeX Live: Recommended fonts
 texlive-fonts-recommended-doc - TeX Live: Documentation files for 
texlive-fonts-recommended
 texlive-full - TeX Live: meta package pulling in all components of TeX Live
 texlive-generic-recommended - TeX Live: Miscellaneous generic macros
 texlive-latex-base - TeX Live: Basic LaTeX packages
 texlive-latex-base-doc - TeX Live: Documentation files for texlive-latex-base
 texlive-latex-recommended - TeX Live: LaTeX recommended packages
 texlive-latex-recommended-doc - TeX Live: Documentation files for 
texlive-latex-recommended
 texlive-pictures - TeX Live: Packages for drawings graphics
 texlive-pictures-doc - TeX Live: Documentation files for texlive-pictures
Closes: 449221 449619 451295 460878 470479
Changes: 
 texlive-base (2007-14) unstable; urgency=low
 .
   * fix latin.ldf with the version from CTAN (Closes: #451295)
 (and also closes Ubuntu bug #157709)
   * Update location of upstream iso.zip file in uscan watch file (closes:
 #449619), thanks to Raphael Geissert [EMAIL PROTECTED] [fk]
   * do not install tex/latex/jknapltx/ubbold.fd, it break the bbold fonts
 (Closes: #449221). Thanks and sorry Ralf for ignoring you so long!
   * improve the comments about english hyphenation/language0 in language.dat,
 from DEK on tex-k
   * bump standards version to 3.7.3, no changes needed
   * make texlive-latex-recommended provide latex-ucs-uninames, latex-ucs,
 latex-ucs-contrib as these Debian packages have been given up for
 adoption
   * fix a small bug in booktabs.sty by updating it to the version on CTAN
 (Closes: #460878)
   * add a patch fix-txfonts-precapprox to switch the symbols \precapprox and
 \succapprox in txfonts.sty (Closes Ubuntu bug 184065)
   * add a fancyheadings placeholder calling fancyhdr (Closes Ubuntu bug
 132399)
   * add the LPPL to debian/copyright (Closes: #470479)
Checksums-Sha1: 
 c4ba266d38f6257fe0bf9365759ecd30463cc928 1552 texlive-base_2007-14.dsc
 e2053e78d325b3cb2d73f053925cb59a4355100f 137258 texlive-base_2007-14.diff.gz
 64437fc40cf5246b3e8193355b08e7e6ac91ade8 6298846 texlive-base_2007-14_all.deb
 1f347d04b85218021b7080411775d35106301651 452414 
texlive-generic-recommended_2007-14_all.deb
 17f5b75cb1cdf5d95e4a65c3acb9d870fe00a281 1275068 
texlive-latex-base_2007-14_all.deb
 00563c61d5d3f977090e1785d172a64cf4c6629c 1915364 
texlive-latex-recommended_2007-14_all.deb
 3ed47173f3399360636eace9b99f9b9ba055309b 7349388 
texlive-fonts-recommended_2007-14_all.deb
 23ddc45af056df960a76affe4102523b557a65cd 572776 
texlive-pictures_2007-14_all.deb
 bbb2fa20bf09fa37197f538b39d1a01d541bb419 24630 texlive_2007-14_all.deb
 941cd6e0d91fccb9df43dbfdf4c2ca63175a198f 25050 texlive-full_2007-14_all.deb
 6847333b162fb17f39d9ede955979d6458b1b1bf 87582 texlive-common_2007-14_all.deb
 b2e72e73dadbfa3cd977740a7a2511d6f629376c 24892 tetex-bin_2007-14_all.deb
 12e6c8cd00209efdb1ac942ad45e0ad37d0d2de9 25128 tetex-base_2007-14_all.deb
 81f32172d02ff87d7229be8360a059ffb8e2144b 25140 tetex-extra_2007-14_all.deb
 d44090c3e0df86c0ea9bbd297ba52c9b9d663c8b 3878370 
texlive-pictures-doc_2007-14_all.deb
 ac98489bd2abb3a3455ad210f63f4d7ec24f9d18 2409220 
texlive-fonts-recommended-doc_2007-14_all.deb
 a028796bee0e6dcdaf6607081a6631d7bcca1875 25884656 
texlive-latex-base-doc_2007-14_all.deb
 88b835d85a74597ea7f82214110e14db66d2534b 18103842 
texlive-latex-recommended-doc_2007-14_all.deb
Checksums-Sha256: 
 6704aba77358378047606f8b808238a3819ef6bccf216288ad355481d950f839 1552 
texlive-base_2007-14.dsc
 f83fce2d4240ac93a2b187665aff388188aba2083bfa8fb1dd12a68216ff2fcd 137258 
texlive-base_2007-14.diff.gz
 5ae5b28c2a32b4b2276071a5b0503a2a3a4394f0314ee7c1ce4bc6dd6b8ab117 6298846 
texlive-base_2007-14_all.deb
 7c369f900d0c9f0a08c17690c71070e898c85c86c824372a79560bdb95c27fce 452414 
texlive-generic-recommended_2007-14_all.deb
 8bcaa9eb5ee3585aa5dac50b482d0013f91f48ec923b3b5ef3648e4909f7c5c1 1275068 
texlive-latex-base_2007-14_all.deb
 96cd1ebe1b9cd0a061ce63c88d93884636b8f87a4533afd41aa763904c972ccd 

Accepted sa-learn-cyrus 0.3.2-1 (source all)

2008-04-28 Thread Jan Hauke Rahm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Apr 2008 10:32:28 +0200
Source: sa-learn-cyrus
Binary: sa-learn-cyrus
Architecture: source all
Version: 0.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Jan Hauke Rahm [EMAIL PROTECTED]
Changed-By: Jan Hauke Rahm [EMAIL PROTECTED]
Description: 
 sa-learn-cyrus - Train SpamAssassin with spam/ham from user's imap mailbox(es)
Closes: 474505
Changes: 
 sa-learn-cyrus (0.3.2-1) unstable; urgency=low
 .
   * New upstream release
 + Bugfix: With imap:domains not empty (domain support activated) the
   parser didn't find all mailboxes having the same local part.
 + Log output now includes the domain names along with mailboxes.
   * debian/control: Changing priority from optional to extra
   * debian/control: Fixed: could not install with kolab-cyrus-imapd (Closes:
 #474505)
   * debian/control: Add SVN info
   * debian/rules: Adding an additional dh_clean
Checksums-Sha1: 
 82eb0f27937cead1425425a095c2df0832bf2b1c 1442 sa-learn-cyrus_0.3.2-1.dsc
 de6257f9721ab9e785a9d5d4650eaa39c528766a 13307 sa-learn-cyrus_0.3.2.orig.tar.gz
 267567da71dfb863c1ad59394abefeabb3830fc3 2181 sa-learn-cyrus_0.3.2-1.diff.gz
 38733a6e08449314b7de7d03f699a97c27ab3e0b 23024 sa-learn-cyrus_0.3.2-1_all.deb
Checksums-Sha256: 
 faf9c8f3db37511ac3e40801d7124eb00be4143d0dd298ba5982eab7e2efea1b 1442 
sa-learn-cyrus_0.3.2-1.dsc
 4b3534e2fb997d18cc5ef71896beccef67fcc733a4ccb17627622b6770c2294e 13307 
sa-learn-cyrus_0.3.2.orig.tar.gz
 d80ceafb8bfe3f51779347a017256827ba2ae5fb127a0d609cc26a3c9c435ea5 2181 
sa-learn-cyrus_0.3.2-1.diff.gz
 b8922df77d9bc437842b894f190fb3fefba21cf4d343ce3f0c1433ed0c7da7f8 23024 
sa-learn-cyrus_0.3.2-1_all.deb
Files: 
 289e5464455de9261420a47c66bf1bd1 1442 web extra sa-learn-cyrus_0.3.2-1.dsc
 e1b301294cb70cdb40a57a9dab34aa82 13307 web extra 
sa-learn-cyrus_0.3.2.orig.tar.gz
 286b18bd251a2a1e2e8b0944fa84c78f 2181 web extra sa-learn-cyrus_0.3.2-1.diff.gz
 711f20936736b2dd841d2ca83ec16ebc 23024 web extra sa-learn-cyrus_0.3.2-1_all.deb

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

iQEVAwUBSBWYfWz0hbPcukPfAQKliwf+O0q4S/0aNaOc5OEwGO7PQlZBS0i8aW9M
rAXdryCQbR2U26qplhh2qgTXRpmn4IM25wyYxQIsrm8rz4WAYzSWux3spzfGuUIW
yCNlp/Of0cq6QP6+4hNJ0cHs9BTKH2wlOkbn42NMvkpJDV3yNrjZNn67r0V4OxmL
AYMyQnOKcuuZNEfK57nNNoKzw4uvdxBk02WSt6FLcX02qoXym1YShzQVUa20V8Hv
ZbyM3kEF4K+85kEigHYM7tFoPUIxZDcx6GKRNm9d3cTLD3EyQC6yCQNco0skLdbv
MPI/YSTm/90/UJ4gbcPrGjztrVHssKGbt1B34lrTdJybsVkp7ZRMNA==
=SUp0
-END PGP SIGNATURE-


Accepted:
sa-learn-cyrus_0.3.2-1.diff.gz
  to pool/main/s/sa-learn-cyrus/sa-learn-cyrus_0.3.2-1.diff.gz
sa-learn-cyrus_0.3.2-1.dsc
  to pool/main/s/sa-learn-cyrus/sa-learn-cyrus_0.3.2-1.dsc
sa-learn-cyrus_0.3.2-1_all.deb
  to pool/main/s/sa-learn-cyrus/sa-learn-cyrus_0.3.2-1_all.deb
sa-learn-cyrus_0.3.2.orig.tar.gz
  to pool/main/s/sa-learn-cyrus/sa-learn-cyrus_0.3.2.orig.tar.gz


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



Accepted texlive-lang 2007.dfsg.3-2 (source all)

2008-04-28 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Apr 2008 20:08:13 +0200
Source: texlive-lang
Binary: texlive-lang-african texlive-lang-arab texlive-lang-armenian 
texlive-lang-croatian texlive-lang-cyrillic texlive-lang-czechslovak 
texlive-lang-danish texlive-lang-dutch texlive-lang-finnish texlive-lang-french 
texlive-lang-german texlive-lang-greek texlive-lang-hebrew 
texlive-lang-hungarian texlive-lang-italian texlive-lang-latin 
texlive-lang-manju texlive-lang-mongolian texlive-lang-norwegian 
texlive-lang-other texlive-lang-polish texlive-lang-portuguese 
texlive-lang-spanish texlive-lang-swedish texlive-lang-tibetan 
texlive-lang-ukenglish texlive-lang-vietnamese texlive-lang-all
Architecture: source all
Version: 2007.dfsg.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian TeX Maintainers [EMAIL PROTECTED]
Changed-By: Norbert Preining [EMAIL PROTECTED]
Description: 
 texlive-lang-african - TeX Live: African scripts
 texlive-lang-all - TeX Live: Meta package depending on all TeX Live language 
package
 texlive-lang-arab - TeX Live: Arabic
 texlive-lang-armenian - TeX Live: Armenian
 texlive-lang-croatian - TeX Live: Croatian
 texlive-lang-cyrillic - TeX Live: Cyrillic
 texlive-lang-czechslovak - TeX Live: Czech/Slovak
 texlive-lang-danish - TeX Live: Danish
 texlive-lang-dutch - TeX Live: Dutch
 texlive-lang-finnish - TeX Live: Finnish
 texlive-lang-french - TeX Live: French
 texlive-lang-german - TeX Live: German
 texlive-lang-greek - TeX Live: Greek typesetting
 texlive-lang-hebrew - TeX Live: Hebrew
 texlive-lang-hungarian - TeX Live: Hungarian
 texlive-lang-italian - TeX Live: Italian
 texlive-lang-latin - TeX Live: Latin
 texlive-lang-manju - TeX Live: Manju
 texlive-lang-mongolian - TeX Live: Mongolian
 texlive-lang-norwegian - TeX Live: Norwegian
 texlive-lang-other - TeX Live: Other hyphenation files
 texlive-lang-polish - TeX Live: Polish
 texlive-lang-portuguese - TeX Live: Portuguese
 texlive-lang-spanish - TeX Live: Spanish
 texlive-lang-swedish - TeX Live: Swedish
 texlive-lang-tibetan - TeX Live: Tibetan
 texlive-lang-ukenglish - TeX Live: UK English
 texlive-lang-vietnamese - TeX Live: Vietnamese
Closes: 449645 459539
Changes: 
 texlive-lang (2007.dfsg.3-2) unstable; urgency=low
 .
   * Update location of upstream iso.zip file in uscan watch file (closes:
 #449645), thanks to Raphael Geissert [EMAIL PROTECTED] [fk]
   * bump standards version to 3.7.3, no changes needed
   * texlive-lang-cyrillic suggests scalable-cyrfonts-tex (Closes: #459539)
   * add the LPPL to debian/copyright
Checksums-Sha1: 
 4d2b826ac8694ac1f31d2bd3fdc1ffc0889631d4 1894 texlive-lang_2007.dfsg.3-2.dsc
 f0c00354acfedaa52a5b6a74f7e370e56d9d7308 105059 
texlive-lang_2007.dfsg.3-2.diff.gz
 f582d3a87d83edb0f13f1f623e9c1c8c686d42a4 6222550 
texlive-lang-african_2007.dfsg.3-2_all.deb
 5a78e2eb15cd9f4df861614d9a2d8bec623a7566 6477960 
texlive-lang-arab_2007.dfsg.3-2_all.deb
 6c6fb4421776f6dba4f2ab7129b34cd91b9d1e97 542788 
texlive-lang-armenian_2007.dfsg.3-2_all.deb
 57add553826428933cd34454915e1f57b441ba26 178728 
texlive-lang-croatian_2007.dfsg.3-2_all.deb
 09e11f522cc644f213bbb27883a0937d82fb0443 4441140 
texlive-lang-cyrillic_2007.dfsg.3-2_all.deb
 00aa132ddf4f1c849d552aba01268bfc1696f61a 2006424 
texlive-lang-czechslovak_2007.dfsg.3-2_all.deb
 2813286f84cb2f7e57761ba26e28c8a31e7dd6ce 28166 
texlive-lang-danish_2007.dfsg.3-2_all.deb
 0cb52143df356c668125807c941e95790071b9d9 66326 
texlive-lang-dutch_2007.dfsg.3-2_all.deb
 e36f95dfdb483baac7ea651d0e1cebe3289f7732 31312 
texlive-lang-finnish_2007.dfsg.3-2_all.deb
 53610d20b174b9af324c82c0c8c7065c1acfee29 1089946 
texlive-lang-french_2007.dfsg.3-2_all.deb
 6e282ff1a2b7ca59cd9497ae03907e438f2bd91a 354146 
texlive-lang-german_2007.dfsg.3-2_all.deb
 75e6048a68d95f5a8b99ebde843c3e5edd082229 9691324 
texlive-lang-greek_2007.dfsg.3-2_all.deb
 a6752c224fc6911e72b202c78b46c61c61115db9 176792 
texlive-lang-hebrew_2007.dfsg.3-2_all.deb
 d4e50d7584010ad27fefc63a7ca611068e3dd47b 233178 
texlive-lang-hungarian_2007.dfsg.3-2_all.deb
 7b65e1a3114361d09e2e2272d1f725b2c672adbf 26438 
texlive-lang-italian_2007.dfsg.3-2_all.deb
 411628a38b189b6858855bf2536ec2e1a1eb8cf4 28434 
texlive-lang-latin_2007.dfsg.3-2_all.deb
 48d469bb9804e8a9a3c57b6309d0dea904dd06a5 39852 
texlive-lang-manju_2007.dfsg.3-2_all.deb
 27ad05e0bf4966b89ed6d2a55ff0e543cd326401 2940242 
texlive-lang-mongolian_2007.dfsg.3-2_all.deb
 d69a521ef152da32a599e5f0fdf4b0caf75d5cf5 118106 
texlive-lang-norwegian_2007.dfsg.3-2_all.deb
 ec0a8c0d8db054c3083a255f4c40c50032d521de 106082 
texlive-lang-other_2007.dfsg.3-2_all.deb
 94031780c31953e926a80bd33c212b704378c749 4430418 
texlive-lang-polish_2007.dfsg.3-2_all.deb
 17be6d524b9a8ccf0858eec0a3188eaf85f04c02 111878 
texlive-lang-portuguese_2007.dfsg.3-2_all.deb
 0c3aeb1e494d5dec12ac6bde6c3d7679aabf66f1 38538 
texlive-lang-spanish_2007.dfsg.3-2_all.deb
 12ec9262c3cdd0e4796a43e10d8d36ced52ee3ea 50170 
texlive-lang-swedish_2007.dfsg.3-2_all.deb
 

Accepted kronolith2 2.1.8-1 (source all)

2008-04-28 Thread evolix
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 01:39:49 +0200
Source: kronolith2
Binary: kronolith2
Architecture: source all
Version: 2.1.8-1
Distribution: unstable
Urgency: high
Maintainer: Horde Maintainers [EMAIL PROTECTED]
Changed-By: Gregory Colpart (evolix) [EMAIL PROTECTED]
Description: 
 kronolith2 - calendar component for Horde Framework
Closes: 478121
Changes: 
 kronolith2 (2.1.8-1) unstable; urgency=high
 .
   * New upstream release.
   * Fix XSS vulnerability in the add event screen. (Closes: #478121)
   * debian/copyright file improvements.
Checksums-Sha1: 
 0356f5e370ee907846e5852dbcfadd879d6f20f8 1351 kronolith2_2.1.8-1.dsc
 e60bdd72ab6576503a8adeb41921584fe297bf7b 1920783 kronolith2_2.1.8.orig.tar.gz
 66107d2904f8671d4dffab94eaca6c6bca8e50f9 5952 kronolith2_2.1.8-1.diff.gz
 0a8f03a1f31f9439a08dbcd2548cfb9b2ceb5d66 1925362 kronolith2_2.1.8-1_all.deb
Checksums-Sha256: 
 8df3ea23550bd7f6ed3f97f9e494d28cad5792193a395872c45918ed09d1b095 1351 
kronolith2_2.1.8-1.dsc
 0d5c8cfb7ea5ef15b3f1fe4408ad668bdb9deaacdcefc186214954e452af2c9a 1920783 
kronolith2_2.1.8.orig.tar.gz
 a0e6b2fb9a2c82958d663ed0e6258f60d264093926270655346f113e5b38cdbb 5952 
kronolith2_2.1.8-1.diff.gz
 6d23f9caea07d11f3e5c47c17fade23a38c18e45cbafc706177d9bdce202d950 1925362 
kronolith2_2.1.8-1_all.deb
Files: 
 15fafdf71ad41ad70ffc88d98fdd6763 1351 web optional kronolith2_2.1.8-1.dsc
 8970697f2eb41ce31b204d71f9c424e5 1920783 web optional 
kronolith2_2.1.8.orig.tar.gz
 1b4440fce111888fdb601c94c9da678e 5952 web optional kronolith2_2.1.8-1.diff.gz
 c2344ddb78600b40672495e2f9289ded 1925362 web optional 
kronolith2_2.1.8-1_all.deb

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

iD8DBQFIFaXaHYflSXNkfP8RAiKdAJsHTKI9/0DT5tMuUNbKcFFJjLDm0gCeKNNv
/7DnqC8KOLoPuxb9c9RfCtU=
=bwiv
-END PGP SIGNATURE-


Accepted:
kronolith2_2.1.8-1.diff.gz
  to pool/main/k/kronolith2/kronolith2_2.1.8-1.diff.gz
kronolith2_2.1.8-1.dsc
  to pool/main/k/kronolith2/kronolith2_2.1.8-1.dsc
kronolith2_2.1.8-1_all.deb
  to pool/main/k/kronolith2/kronolith2_2.1.8-1_all.deb
kronolith2_2.1.8.orig.tar.gz
  to pool/main/k/kronolith2/kronolith2_2.1.8.orig.tar.gz


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



Accepted emacs21 21.4a+1-5.4 (source all amd64)

2008-04-28 Thread Nico Golde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 12:46:35 +0200
Source: emacs21
Binary: emacs21 emacs21-nox emacs21-bin-common emacs21-common emacs21-el
Architecture: source all amd64
Version: 21.4a+1-5.4
Distribution: unstable
Urgency: high
Maintainer: Rob Browning [EMAIL PROTECTED]
Changed-By: Nico Golde [EMAIL PROTECTED]
Description: 
 emacs21- The GNU Emacs editor
 emacs21-bin-common - The GNU Emacs editor's shared, architecture dependent 
files
 emacs21-common - The GNU Emacs editor's shared, architecture independent 
infrastru
 emacs21-el - GNU Emacs LISP (.el) files
 emacs21-nox - The GNU Emacs editor (without X support)
Closes: 476612
Changes: 
 emacs21 (21.4a+1-5.4) unstable; urgency=high
 .
   * Non-maintainer upload by the Security Team.
   * Fix insecure temporary file creation in vcdiff script leading to
 possible symlink attacks (CVE-2008-1694; Closes: #476612).
Checksums-Sha1: 
 4a45d6d8e8a92ff3ca7d5bbec4eed6ec88e5d1dd 1276 emacs21_21.4a+1-5.4.dsc
 3f7c4aaa9c2c4de05b73ac4799308381481f94b6 179573 emacs21_21.4a+1-5.4.diff.gz
 a9f27f5f6c8f0a34354c57f64c3595e058fa2a57 9439428 
emacs21-common_21.4a+1-5.4_all.deb
 21fe4314e0f323bb342aff97448498927999729c 7226102 emacs21-el_21.4a+1-5.4_all.deb
 637300c580b9cebca2fe2b0238b6e7c4037738bc 2194784 emacs21_21.4a+1-5.4_amd64.deb
 6dc7d959891b7529b86b5c1f3c8ae1d6f62a8b42 1972092 
emacs21-nox_21.4a+1-5.4_amd64.deb
 05aa8bb7cb1da27725451264fcc26bc737dd0e00 164608 
emacs21-bin-common_21.4a+1-5.4_amd64.deb
Checksums-Sha256: 
 a1a0173b1605e9eed3c979e5ea83901d27696ce77a83cba59721392e0ccd692e 1276 
emacs21_21.4a+1-5.4.dsc
 96c5eeb52e961c525a6a3672d437739945b15e60e03abfbd2ac2a3234c81029b 179573 
emacs21_21.4a+1-5.4.diff.gz
 f731d29b28753b1dd6e431fd6db5ffc9e59d49c9598bc3a060d603b17587215e 9439428 
emacs21-common_21.4a+1-5.4_all.deb
 69b86b5ff1095d3f137b5f1c276386885308c00141bca23226f18b93377a4a2f 7226102 
emacs21-el_21.4a+1-5.4_all.deb
 340a2be70c103fd7a7baa032dfff0fb6be435a4c4c882cb01ce8ba07b67236a9 2194784 
emacs21_21.4a+1-5.4_amd64.deb
 fd9bf90ea8078d727e734af79b0b093e04e8dbef594ec56348305c84e826a04d 1972092 
emacs21-nox_21.4a+1-5.4_amd64.deb
 1944e35face1c5d335c52e40a61d96c1461bbaea4e4091dc72257cbc33e6940e 164608 
emacs21-bin-common_21.4a+1-5.4_amd64.deb
Files: 
 f9af6689665c187f65238dbc0660a864 1276 editors optional emacs21_21.4a+1-5.4.dsc
 1ac211bccfbd296e9a167e82c0c09624 179573 editors optional 
emacs21_21.4a+1-5.4.diff.gz
 3ddf76fd98997f2eec2a5ee23eafa6dd 9439428 editors optional 
emacs21-common_21.4a+1-5.4_all.deb
 383e6cd3a12b98f48831a420be40c25e 7226102 editors optional 
emacs21-el_21.4a+1-5.4_all.deb
 48dd93b48e14bb46c88ef908c20ba20c 2194784 editors optional 
emacs21_21.4a+1-5.4_amd64.deb
 d11eb10a5759b7d561af26009d272134 1972092 editors optional 
emacs21-nox_21.4a+1-5.4_amd64.deb
 76eec7148c0e03e9173508dd99e2 164608 editors optional 
emacs21-bin-common_21.4a+1-5.4_amd64.deb

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

iD8DBQFIFazqHYflSXNkfP8RAsicAJ9JFtg5/CJ1K3p405+FFjDi/IC7VgCgtgb3
Y5aFHPWEFWxDmlV7IX+ArT0=
=g0PK
-END PGP SIGNATURE-


Accepted:
emacs21-bin-common_21.4a+1-5.4_amd64.deb
  to pool/main/e/emacs21/emacs21-bin-common_21.4a+1-5.4_amd64.deb
emacs21-common_21.4a+1-5.4_all.deb
  to pool/main/e/emacs21/emacs21-common_21.4a+1-5.4_all.deb
emacs21-el_21.4a+1-5.4_all.deb
  to pool/main/e/emacs21/emacs21-el_21.4a+1-5.4_all.deb
emacs21-nox_21.4a+1-5.4_amd64.deb
  to pool/main/e/emacs21/emacs21-nox_21.4a+1-5.4_amd64.deb
emacs21_21.4a+1-5.4.diff.gz
  to pool/main/e/emacs21/emacs21_21.4a+1-5.4.diff.gz
emacs21_21.4a+1-5.4.dsc
  to pool/main/e/emacs21/emacs21_21.4a+1-5.4.dsc
emacs21_21.4a+1-5.4_amd64.deb
  to pool/main/e/emacs21/emacs21_21.4a+1-5.4_amd64.deb


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



Accepted rsync 3.0.2-2 (source amd64)

2008-04-28 Thread Paul Slootman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 Apr 2008 13:06:35 +0200
Source: rsync
Binary: rsync
Architecture: source amd64
Version: 3.0.2-2
Distribution: unstable
Urgency: low
Maintainer: Paul Slootman [EMAIL PROTECTED]
Changed-By: Paul Slootman [EMAIL PROTECTED]
Description: 
 rsync  - fast remote file copy program (like rcp)
Closes: 477931
Changes: 
 rsync (3.0.2-2) unstable; urgency=low
 .
   * Fixed a crash if a non-incremental-recursion transfer has a skipped file
 in a set of hard-links.
 closes:#477931
Files: 
 ff95e29de85c274cd3e20366c1956bcc 570 net optional rsync_3.0.2-2.dsc
 ccca08741a5921ec8b040f17089803f7 14808 net optional rsync_3.0.2-2.diff.gz
 490c48e400ba605de1df2b7d0e73d06e 339978 net optional rsync_3.0.2-2_amd64.deb

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

iD8DBQFIFbC9utvvqbTW3hMRAtsfAJ4wbNSA78DKWETz4XLsDfq6Dhww/ACfVEQJ
SGhE7kVoGsaZgVEidmvxd90=
=Fl4q
-END PGP SIGNATURE-


Accepted:
rsync_3.0.2-2.diff.gz
  to pool/main/r/rsync/rsync_3.0.2-2.diff.gz
rsync_3.0.2-2.dsc
  to pool/main/r/rsync/rsync_3.0.2-2.dsc
rsync_3.0.2-2_amd64.deb
  to pool/main/r/rsync/rsync_3.0.2-2_amd64.deb


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



Accepted linuxlogo 5.03-1 (source i386)

2008-04-28 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 13:24:00 +0200
Source: linuxlogo
Binary: linuxlogo
Architecture: source i386
Version: 5.03-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 linuxlogo  - Color ANSI System Logo
Closes: 460685
Changes: 
 linuxlogo (5.03-1) unstable; urgency=low
 .
   * Taking over the package, Khalid El Fathi is MIA.
   * Redoing debian packaging from scratch.
   * Merging upstream version 5.03 (Closes: #460685).
Checksums-Sha1: 
 f14da0cf8488c08153f896754de0b8e68c26 1110 linuxlogo_5.03-1.dsc
 b254b2d2fe803c90f4a0f662d2eba3f68717fbfe 96562 linuxlogo_5.03.orig.tar.gz
 04eed2d5a2091550c2e82f68b07f3dac62021416 12925 linuxlogo_5.03-1.diff.gz
 ab8ac0c52d79fed018322efa684202136dbc0041 78298 linuxlogo_5.03-1_i386.deb
Checksums-Sha256: 
 91e0e3ed550ecc721e363aade81beb028e51e1707addb09da9837bc754882f8c 1110 
linuxlogo_5.03-1.dsc
 654818fda72162322d86203303335d4293d68b25149a464f99ca9390ae4fd0b8 96562 
linuxlogo_5.03.orig.tar.gz
 1e1d4292dee26c7766d102ae11e735552f8cc04618ab8eacd25d9ae38803d8eb 12925 
linuxlogo_5.03-1.diff.gz
 fe13b4d33649bb29c27431d8699fa0b667189caa11f9400075ed8db1471e3983 78298 
linuxlogo_5.03-1_i386.deb
Files: 
 8ee682fc79c1a4efc8294c3188340d8a 1110 misc extra linuxlogo_5.03-1.dsc
 187a21ef6375e1bacf550ed84ebb7279 96562 misc extra linuxlogo_5.03.orig.tar.gz
 79239cb866f9fa898947123c18a9d40d 12925 misc extra linuxlogo_5.03-1.diff.gz
 3d89224bbb2c9227cbae3d072f12c75f 78298 misc extra linuxlogo_5.03-1_i386.deb

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

iD8DBQFIFbXJ+C5cwEsrK54RArsvAJ43Wr21XLYKhRU/wRTsYv0Ot2nVagCdHZMg
XiklWiXYJl/ef4lP1np01+E=
=IFsy
-END PGP SIGNATURE-


Accepted:
linuxlogo_5.03-1.diff.gz
  to pool/main/l/linuxlogo/linuxlogo_5.03-1.diff.gz
linuxlogo_5.03-1.dsc
  to pool/main/l/linuxlogo/linuxlogo_5.03-1.dsc
linuxlogo_5.03-1_i386.deb
  to pool/main/l/linuxlogo/linuxlogo_5.03-1_i386.deb
linuxlogo_5.03.orig.tar.gz
  to pool/main/l/linuxlogo/linuxlogo_5.03.orig.tar.gz


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



Accepted imhangul-status-applet 0.3-8 (source i386)

2008-04-28 Thread Changwoo Ryu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 20:12:20 +0900
Source: imhangul-status-applet
Binary: imhangul-status-applet
Architecture: source i386
Version: 0.3-8
Distribution: unstable
Urgency: low
Maintainer: Changwoo Ryu [EMAIL PROTECTED]
Changed-By: Changwoo Ryu [EMAIL PROTECTED]
Description: 
 imhangul-status-applet - imhangul status applet for the GNOME panel
Changes: 
 imhangul-status-applet (0.3-8) unstable; urgency=low
 .
   * Added Vcs-Browser and Vcs-Git fields.
   * Corrected Build-Depends debhelper version.
   * Corrected the copyright notice for lintian clean.
   * Switched to cdbs.
   * Append -Wl,--as-needed linker option, to remove useless shlib
 dependencies.
   * Clean up the description.
   * Remove the unused *.postinst, *.postrm, *.files and README.Debian
 files from debian dir.
Checksums-Sha1: 
 c709a232ca5980318d60679afc7b118704836ff9 1305 imhangul-status-applet_0.3-8.dsc
 37e4bfad4840fe25b1650bb48050ca3ae7c0da85 2694 
imhangul-status-applet_0.3-8.diff.gz
 dc23ba7e234a01b07da5cc2c4799ae6017ee20c9 219174 
imhangul-status-applet_0.3-8_i386.deb
Checksums-Sha256: 
 17f5dfab723a276cdb7dcf929e32ce0fffe86598cff16e12decbb1923c5553da 1305 
imhangul-status-applet_0.3-8.dsc
 c717d25827a9aeb41735dfd4c9beca290b214cab41b96ed291f73bd41d480ed4 2694 
imhangul-status-applet_0.3-8.diff.gz
 ae7e905cc9c8f2db48977b39e9d247f7ebb91816659bee991ce42e4836a41407 219174 
imhangul-status-applet_0.3-8_i386.deb
Files: 
 f17b4e4e2167a2e7fe0ff51963fca761 1305 gnome optional 
imhangul-status-applet_0.3-8.dsc
 cad475d24b5222d9fb3c56bb04d61dca 2694 gnome optional 
imhangul-status-applet_0.3-8.diff.gz
 44671c2621ac7a2b4d37c2695ab2f056 219174 gnome optional 
imhangul-status-applet_0.3-8_i386.deb

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

iD4DBQFIFbaTAbRzNODUnpkRAtJSAJjk8EEzdZCSl2wfdDt7d0nr2oPQAJwJZctA
VD2g0okEDiNKSVGkIbOpOA==
=eJlM
-END PGP SIGNATURE-


Accepted:
imhangul-status-applet_0.3-8.diff.gz
  to pool/main/i/imhangul-status-applet/imhangul-status-applet_0.3-8.diff.gz
imhangul-status-applet_0.3-8.dsc
  to pool/main/i/imhangul-status-applet/imhangul-status-applet_0.3-8.dsc
imhangul-status-applet_0.3-8_i386.deb
  to pool/main/i/imhangul-status-applet/imhangul-status-applet_0.3-8_i386.deb


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



Accepted teeworlds 0.4.2-1 (source i386 all)

2008-04-28 Thread Jack Coulter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Apr 2008 18:48:12 +1000
Source: teeworlds
Binary: teeworlds teeworlds-server teeworlds-data
Architecture: source i386 all
Version: 0.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team [EMAIL PROTECTED]
Changed-By: Jack Coulter [EMAIL PROTECTED]
Description: 
 teeworlds  - An online multi-player platform 2D shooter
 teeworlds-data - Data for Teeworlds; an online multi-player platform 2D shooter
 teeworlds-server - Server for Teeworlds; an online multi-player platform 2D 
shooter
Closes: 460848
Changes: 
 teeworlds (0.4.2-1) unstable; urgency=low
 .
   * Initial release (Closes: #460848)
Checksums-Sha1: 
 e6690ee4c0986f864266d4d29a137478313ae0e9 1365 teeworlds_0.4.2-1.dsc
 8a0be40c1ee28a4372b94e85a68b2ec648a7ce51 5168066 teeworlds_0.4.2.orig.tar.gz
 f0c87eb80fa0553443c1f3de41552b2c3f7b83fb 19780 teeworlds_0.4.2-1.diff.gz
 f09f811060e54fd6c0865556fea5bfec1c4bceac 167378 teeworlds_0.4.2-1_i386.deb
 c0c71c8fc92b0f05253f3034c1525457c8dc5874 63424 
teeworlds-server_0.4.2-1_i386.deb
 eb665775590430113c427e05d4e178d8e37c1ecc 4192436 teeworlds-data_0.4.2-1_all.deb
Checksums-Sha256: 
 38c41e5a63018a13dc4f13be32e68ce9da754b2ad66d55fc426d01bce34652b7 1365 
teeworlds_0.4.2-1.dsc
 2b7277c25a9de82b35d5542533eb1da75c78781f236f7ba4033454653010b30a 5168066 
teeworlds_0.4.2.orig.tar.gz
 90ee99a857d66984535a6a75edbed6eee8891758a28fd0cc74f070ff8bf51148 19780 
teeworlds_0.4.2-1.diff.gz
 395e6bec264d79e6d36a9778ef8801125c6707cbd833460cebf80b74fa10203c 167378 
teeworlds_0.4.2-1_i386.deb
 9a7d7ff542686f2992bb1b024546b6ec52b8765790365c3b9f41357d24097461 63424 
teeworlds-server_0.4.2-1_i386.deb
 d6ef59408e357c15f1415abdf0311219921c8761930ca638d9520ce5209d2b7d 4192436 
teeworlds-data_0.4.2-1_all.deb
Files: 
 9ad351f4dca2e344ca65474273d32e8e 1365 games optional teeworlds_0.4.2-1.dsc
 ba430fabaa72aca6bd3287a0c4b6a027 5168066 games optional 
teeworlds_0.4.2.orig.tar.gz
 3f366faf072e0744390a6b348f101bb8 19780 games optional teeworlds_0.4.2-1.diff.gz
 ecb2126267b252fe51235f86741b359b 167378 games optional 
teeworlds_0.4.2-1_i386.deb
 89cbc8c9bcd3c7400d81ffba32515929 63424 games optional 
teeworlds-server_0.4.2-1_i386.deb
 ab4cbf0ac12e51a8495de606878bafdf 4192436 games optional 
teeworlds-data_0.4.2-1_all.deb

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

iD8DBQFIC2b8sKTFpDfZQSwRAtVhAJ0d+Jf8KCgyPbVSaOSk54hV0aABvgCdEHzs
T9IiZ9+Z4j8+KMGUIl5E4A4=
=Qe/T
-END PGP SIGNATURE-


Accepted:
teeworlds-data_0.4.2-1_all.deb
  to pool/main/t/teeworlds/teeworlds-data_0.4.2-1_all.deb
teeworlds-server_0.4.2-1_i386.deb
  to pool/main/t/teeworlds/teeworlds-server_0.4.2-1_i386.deb
teeworlds_0.4.2-1.diff.gz
  to pool/main/t/teeworlds/teeworlds_0.4.2-1.diff.gz
teeworlds_0.4.2-1.dsc
  to pool/main/t/teeworlds/teeworlds_0.4.2-1.dsc
teeworlds_0.4.2-1_i386.deb
  to pool/main/t/teeworlds/teeworlds_0.4.2-1_i386.deb
teeworlds_0.4.2.orig.tar.gz
  to pool/main/t/teeworlds/teeworlds_0.4.2.orig.tar.gz


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



Accepted linux-2.6 2.6.25-1 (source all amd64)

2008-04-28 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 25 Apr 2008 16:27:23 +0200
Source: linux-2.6
Binary: linux-source-2.6.25 linux-doc-2.6.25 linux-manual-2.6.25 
linux-patch-debian-2.6.25 linux-tree-2.6.25 linux-support-2.6.25-1 
linux-libc-dev linux-headers-2.6.25-1-all linux-headers-2.6.25-1-all-alpha 
linux-headers-2.6.25-1-common linux-image-2.6.25-1-alpha-generic 
linux-headers-2.6.25-1-alpha-generic linux-image-2.6.25-1-alpha-smp 
linux-headers-2.6.25-1-alpha-smp linux-image-2.6.25-1-alpha-legacy 
linux-headers-2.6.25-1-alpha-legacy linux-headers-2.6.25-1-all-amd64 
linux-image-2.6.25-1-amd64 linux-headers-2.6.25-1-amd64 
linux-headers-2.6.25-1-all-arm linux-image-2.6.25-1-footbridge 
linux-headers-2.6.25-1-footbridge linux-image-2.6.25-1-iop32x 
linux-headers-2.6.25-1-iop32x linux-image-2.6.25-1-ixp4xx 
linux-headers-2.6.25-1-ixp4xx linux-image-2.6.25-1-orion5x 
linux-headers-2.6.25-1-orion5x linux-headers-2.6.25-1-all-armel 
linux-image-2.6.25-1-versatile linux-headers-2.6.25-1-versatile 
linux-headers-2.6.25-1-all-hppa linux-image-2.6.25-1-parisc 
linux-headers-2.6.25-1-parisc linux-image-2.6.25-1-parisc-smp 
linux-headers-2.6.25-1-parisc-smp linux-image-2.6.25-1-parisc64 
linux-headers-2.6.25-1-parisc64 linux-image-2.6.25-1-parisc64-smp 
linux-headers-2.6.25-1-parisc64-smp linux-headers-2.6.25-1-all-i386 
linux-image-2.6.25-1-486 linux-headers-2.6.25-1-486 linux-image-2.6.25-1-686 
linux-headers-2.6.25-1-686 linux-image-2.6.25-1-686-bigmem 
linux-headers-2.6.25-1-686-bigmem linux-headers-2.6.25-1-common-xen 
linux-image-2.6.25-1-xen-686 linux-modules-2.6.25-1-xen-686 
linux-headers-2.6.25-1-xen-686 linux-headers-2.6.25-1-all-ia64 
linux-image-2.6.25-1-itanium linux-headers-2.6.25-1-itanium 
linux-image-2.6.25-1-mckinley linux-headers-2.6.25-1-mckinley 
linux-headers-2.6.25-1-all-m68k linux-image-2.6.25-1-amiga 
linux-headers-2.6.25-1-amiga linux-image-2.6.25-1-atari 
linux-headers-2.6.25-1-atari linux-image-2.6.25-1-bvme6000 
linux-headers-2.6.25-1-bvme6000 linux-image-2.6.25-1-mac 
linux-headers-2.6.25-1-mac linux-image-2.6.25-1-mvme147 
linux-headers-2.6.25-1-mvme147 linux-image-2.6.25-1-mvme16x 
linux-headers-2.6.25-1-mvme16x linux-headers-2.6.25-1-all-mips 
linux-image-2.6.25-1-r4k-ip22 linux-headers-2.6.25-1-r4k-ip22 
linux-image-2.6.25-1-r5k-ip32 linux-headers-2.6.25-1-r5k-ip32 
linux-image-2.6.25-1-sb1-bcm91250a linux-headers-2.6.25-1-sb1-bcm91250a 
linux-image-2.6.25-1-sb1a-bcm91480b linux-headers-2.6.25-1-sb1a-bcm91480b 
linux-image-2.6.25-1-4kc-malta linux-headers-2.6.25-1-4kc-malta 
linux-image-2.6.25-1-5kc-malta linux-headers-2.6.25-1-5kc-malta 
linux-headers-2.6.25-1-all-mipsel linux-image-2.6.25-1-r5k-cobalt 
linux-headers-2.6.25-1-r5k-cobalt linux-headers-2.6.25-1-all-powerpc 
linux-image-2.6.25-1-powerpc linux-headers-2.6.25-1-powerpc 
linux-image-2.6.25-1-powerpc-smp linux-headers-2.6.25-1-powerpc-smp 
linux-image-2.6.25-1-powerpc-miboot linux-headers-2.6.25-1-powerpc-miboot 
linux-image-2.6.25-1-powerpc64 linux-headers-2.6.25-1-powerpc64 
linux-headers-2.6.25-1-all-s390 linux-image-2.6.25-1-s390 
linux-headers-2.6.25-1-s390 linux-image-2.6.25-1-s390-tape 
linux-image-2.6.25-1-s390x linux-headers-2.6.25-1-s390x 
linux-headers-2.6.25-1-all-sparc linux-image-2.6.25-1-sparc64 
linux-headers-2.6.25-1-sparc64 linux-image-2.6.25-1-sparc64-smp 
linux-headers-2.6.25-1-sparc64-smp
Architecture: source all amd64
Version: 2.6.25-1
Distribution: unstable
Urgency: low
Maintainer: Debian Kernel Team [EMAIL PROTECTED]
Changed-By: Bastian Blank [EMAIL PROTECTED]
Description: 
 linux-doc-2.6.25 - Linux kernel specific documentation for version 2.6.25
 linux-headers-2.6.25-1-486 - Header files for Linux 2.6.25 on x86
 linux-headers-2.6.25-1-4kc-malta - Header files for Linux 2.6.25 on MIPS Malta
 linux-headers-2.6.25-1-5kc-malta - Header files for Linux 2.6.25 on MIPS Malta 
(64-bit)
 linux-headers-2.6.25-1-686 - Header files for Linux 2.6.25 on 
PPro/Celeron/PII/PIII/P4
 linux-headers-2.6.25-1-686-bigmem - Header files for Linux 2.6.25 on 
PPro/Celeron/PII/PIII/P4
 linux-headers-2.6.25-1-all - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-alpha - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-amd64 - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-arm - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-armel - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-hppa - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-i386 - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-ia64 - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-m68k - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-mips - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-mipsel - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-powerpc - All header files for Linux 2.6.25
 linux-headers-2.6.25-1-all-s390 - All header files for Linux 2.6.25
 

Accepted screen 4.0.3-9 (source sparc)

2008-04-28 Thread Jan Christoph Nordholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Apr 2008 14:34:00 +0200
Source: screen
Binary: screen
Architecture: source sparc
Version: 4.0.3-9
Distribution: unstable
Urgency: low
Maintainer: Jan Christoph Nordholz [EMAIL PROTECTED]
Changed-By: Jan Christoph Nordholz [EMAIL PROTECTED]
Description: 
 screen - terminal multiplexor with VT100/ANSI terminal emulation
Closes: 477210 477739 49
Changes: 
 screen (4.0.3-9) unstable; urgency=low
 .
   * The I broke it, I fix it release.
   * Fix a race condition that made session resumption difficult if there
 was only one. Closes: #477739.
   * Enhance dpatch 16fix_gcc_warnings (buildlog is now free of warnings).
   * Apply initscript LSB header changes as suggested by Kel Modderman -
 thanks! Closes: #49.
   * Extend the tilde expansion patch to also apply to 'chdir' commands.
 Thanks to Steve Kemp! Closes: #477210.
   * Document my dpatch numbering style in 00list (and move one patch to
 make things fit again).
Checksums-Sha1: 
 28ff80e85c451c55474fb78d183a56223a226ef1 1036 screen_4.0.3-9.dsc
 e7319c0d0967a841c6decddc6b5fc3983c30f37b 91357 screen_4.0.3-9.diff.gz
 215712cc0736311d2096459c4888cbcc69c6ed1e 602880 screen_4.0.3-9_sparc.deb
Checksums-Sha256: 
 8658a750a2ee4fe2a79bdec46eab36619f6c3717496631551c16d667cb16f462 1036 
screen_4.0.3-9.dsc
 870766fbfddf64bce2acf193287b826a85e207575bd7de1a9ea3553123364ab9 91357 
screen_4.0.3-9.diff.gz
 7f99b07952ec3774fe9d8a6563bbcd90618a0ef6192370b8cc87dd8098afe567 602880 
screen_4.0.3-9_sparc.deb
Files: 
 293e5c3175c8f47ce7994ed8bdcd2c8e 1036 misc optional screen_4.0.3-9.dsc
 e245c0a2e0a8392b1d706c4f7d20052b 91357 misc optional screen_4.0.3-9.diff.gz
 947ba7a4a53788ba404e42128eb29d1c 602880 misc optional screen_4.0.3-9_sparc.deb

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

iD8DBQFIFcDY0fhX0Y/ocz0RAiofAKCUSn/I2gcFiNX+7RLWTxRe80rNNQCcCuCk
6lOramG87o486pY+IwPZEDI=
=PZFR
-END PGP SIGNATURE-


Accepted:
screen_4.0.3-9.diff.gz
  to pool/main/s/screen/screen_4.0.3-9.diff.gz
screen_4.0.3-9.dsc
  to pool/main/s/screen/screen_4.0.3-9.dsc
screen_4.0.3-9_sparc.deb
  to pool/main/s/screen/screen_4.0.3-9_sparc.deb


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



Accepted sphinx 0.1.61950-1 (source all)

2008-04-28 Thread Mikhail Gusarov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 20 Apr 2008 23:01:50 +0200
Source: sphinx
Binary: python-sphinx
Architecture: source all
Version: 0.1.61950-1
Distribution: unstable
Urgency: low
Maintainer: Mikhail Gusarov [EMAIL PROTECTED]
Changed-By: Mikhail Gusarov [EMAIL PROTECTED]
Description: 
 python-sphinx - Tool for producing documentation for Python projects
Closes: 474782
Changes: 
 sphinx (0.1.61950-1) unstable; urgency=low
 .
   * Initial release (Closes: #474782)
   * Added patch disable-sphinx-web.patch, disabling installation of
 sphinx-web, which is not yet ready.
   * Added patch add_shebangs.patch, adding shebangs in sphinx-build and
 sphinx-quickstart
   * Added manpages for sphinx-build(1) and sphinx-quickstart(1).
   * Removed bundled jinja instance.
Checksums-Sha1: 
 60b69290534ea4cb410a582337d810ef2efe0bdc 1264 sphinx_0.1.61950-1.dsc
 2750abd462b1813b6e41b756263cd240895cabbb 377768 sphinx_0.1.61950.orig.tar.gz
 b085a383f359f47e1f9df5669766ed26224ed222 4138 sphinx_0.1.61950-1.diff.gz
 cd631f6a7b67cbb8172804971e3e39e8fcda0e43 767528 
python-sphinx_0.1.61950-1_all.deb
Checksums-Sha256: 
 499c1ea49924fd546f2e5c9eed1dada766e5f81799cdeb6bea2786f75c4f0c3e 1264 
sphinx_0.1.61950-1.dsc
 5ac608c59e99d1e7e40b516e7a92a49c34ebeaa5ee7076eabc8495dfd92b7e6e 377768 
sphinx_0.1.61950.orig.tar.gz
 b6c6bd08265b5933dfe74ddc9650dbd99a01c612fc687c370aa14e63208fe50c 4138 
sphinx_0.1.61950-1.diff.gz
 a0919a15b5a078e3a7459ccc100f852aa3b7a7013c073e45ca88f906533171a7 767528 
python-sphinx_0.1.61950-1_all.deb
Files: 
 6e003218c4851a857e3fb7dfd401a61b 1264 python optional sphinx_0.1.61950-1.dsc
 80524e9b55e016b61533aaf53eb88c88 377768 python optional 
sphinx_0.1.61950.orig.tar.gz
 64efb4f852251faac2b48fafc478fa61 4138 python optional 
sphinx_0.1.61950-1.diff.gz
 9d96e919e4570c5055a09d3c57cf898b 767528 python optional 
python-sphinx_0.1.61950-1_all.deb

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

iD8DBQFIDMksB01zfu119ZkRAuvIAKCUFFT/0/PxdmGqzN4KdyvsI+6r8QCfeREz
25dCnAAkdbmwP5auB8+a+T8=
=PcA+
-END PGP SIGNATURE-


Accepted:
python-sphinx_0.1.61950-1_all.deb
  to pool/main/s/sphinx/python-sphinx_0.1.61950-1_all.deb
sphinx_0.1.61950-1.diff.gz
  to pool/main/s/sphinx/sphinx_0.1.61950-1.diff.gz
sphinx_0.1.61950-1.dsc
  to pool/main/s/sphinx/sphinx_0.1.61950-1.dsc
sphinx_0.1.61950.orig.tar.gz
  to pool/main/s/sphinx/sphinx_0.1.61950.orig.tar.gz


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



Accepted libcgi-cookie-splitter-perl 0.02-1 (source all)

2008-04-28 Thread AGOSTINI Yves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 16 Apr 2008 11:25:29 +0200
Source: libcgi-cookie-splitter-perl
Binary: libcgi-cookie-splitter-perl
Architecture: source all
Version: 0.02-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: AGOSTINI Yves [EMAIL PROTECTED]
Description: 
 libcgi-cookie-splitter-perl - Split big cookies into smaller ones
Closes: 476932
Changes: 
 libcgi-cookie-splitter-perl (0.02-1) unstable; urgency=low
 .
   * Initial Release (Closes: #476932)
Checksums-Sha1: 
 08e2abbf17252cd67d3807c9d01f013eefdf48ca 1459 
libcgi-cookie-splitter-perl_0.02-1.dsc
 176a9040a99fabc3b4fff26d175686f10fa83d06 5163 
libcgi-cookie-splitter-perl_0.02.orig.tar.gz
 fb1f10e2dd487b430c0d7e9217cf8910f17b6ca2 2013 
libcgi-cookie-splitter-perl_0.02-1.diff.gz
 ba8f07087712bd507b853ad52ffdd1571c73 8344 
libcgi-cookie-splitter-perl_0.02-1_all.deb
Checksums-Sha256: 
 d707c79624fec773f48f2bb46719a3c7e311f340294053518207840b93f2c3fb 1459 
libcgi-cookie-splitter-perl_0.02-1.dsc
 09a2194c2cf683b82ad95020227925540f9410d97f1a37244341e1141dd59bc4 5163 
libcgi-cookie-splitter-perl_0.02.orig.tar.gz
 7b5297bb30766caadc2af8cbc8a3077aecd3069708c4b24d23ca8b6f40cb5951 2013 
libcgi-cookie-splitter-perl_0.02-1.diff.gz
 456879095b139ebb77800d73f5decc2ef82073c5425ecc71a2f3081553f19f65 8344 
libcgi-cookie-splitter-perl_0.02-1_all.deb
Files: 
 d55674b9ea983da1e55f533a1ae7d21d 1459 perl optional 
libcgi-cookie-splitter-perl_0.02-1.dsc
 0667729771df4aef5d56ee80fb44ac55 5163 perl optional 
libcgi-cookie-splitter-perl_0.02.orig.tar.gz
 be8c955e26bee6c6dd94ba71b5b1022c 2013 perl optional 
libcgi-cookie-splitter-perl_0.02-1.diff.gz
 ddaa27e0e1593c3613298213c52e9e92 8344 perl optional 
libcgi-cookie-splitter-perl_0.02-1_all.deb

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

iD8DBQFIC7xIOzKYnQDzz+QRAhJyAJ9nnzl1GyE8Llxm6p68FdZhQHSJUgCfeOxj
pKdYtomFMxzCfbvFZDhmAdA=
=If0a
-END PGP SIGNATURE-


Accepted:
libcgi-cookie-splitter-perl_0.02-1.diff.gz
  to 
pool/main/libc/libcgi-cookie-splitter-perl/libcgi-cookie-splitter-perl_0.02-1.diff.gz
libcgi-cookie-splitter-perl_0.02-1.dsc
  to 
pool/main/libc/libcgi-cookie-splitter-perl/libcgi-cookie-splitter-perl_0.02-1.dsc
libcgi-cookie-splitter-perl_0.02-1_all.deb
  to 
pool/main/libc/libcgi-cookie-splitter-perl/libcgi-cookie-splitter-perl_0.02-1_all.deb
libcgi-cookie-splitter-perl_0.02.orig.tar.gz
  to 
pool/main/libc/libcgi-cookie-splitter-perl/libcgi-cookie-splitter-perl_0.02.orig.tar.gz


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



Accepted kdrill 6.5dbs-3 (source all amd64)

2008-04-28 Thread Євгеній Мещеряков
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 14:15:55 +0200
Source: kdrill
Binary: kdrill makedic kanadic
Architecture: source all amd64
Version: 6.5dbs-3
Distribution: unstable
Urgency: low
Maintainer: Євгеній Мещеряков [EMAIL PROTECTED]
Changed-By: Євгеній Мещеряков [EMAIL PROTECTED]
Description: 
 kanadic- Katakana and hiragana drill files for KDrill
 kdrill - A Kanji drill and dictionary program
 makedic- A dictionary compiler for KDrill
Changes: 
 kdrill (6.5dbs-3) unstable; urgency=low
 .
   * Fix typo s/--as-neede/--as-needed/
   * New patches:
 - 02-implicit-exit-fix - fix incompatible implicit declaration of exit()
 - 03-pointer-fixes - fix warnings about pointer to int conversions
 - 10-search-segfault-fix - fix segfault when using search dialog
   * Add Homepage field
Checksums-Sha1: 
 2cce3f3f849e8837cd64ff3d3107f1dec81a1a01 1090 kdrill_6.5dbs-3.dsc
 813418b507569a22fd0b2b730a6384cc5738acec 10014 kdrill_6.5dbs-3.diff.gz
 2a9a79a8d8b8a8cf2f289c6b1cb02c669aaf0c69 10772 kanadic_6.5dbs-3_all.deb
 c49ee3b5b5bc259f297006d9a1b0565039c10013 76664 kdrill_6.5dbs-3_amd64.deb
 aa1e6eaa61bcdae6fd3d7ab8659d3fe63fbf6cb6 11016 makedic_6.5dbs-3_amd64.deb
Checksums-Sha256: 
 0036bccca18d0861d41255738cf547885b446efe6214639dffbc3ed898872471 1090 
kdrill_6.5dbs-3.dsc
 b65ed3671eabfe4cacda1991c5d600eb77afb85062a63658d8b468d52e2b2a9d 10014 
kdrill_6.5dbs-3.diff.gz
 f577e71e47eccdd41b884d59e94ab4931e564b089bacaa7a779c7c32c6ac777a 10772 
kanadic_6.5dbs-3_all.deb
 772cc77340740ad57efcc49f0583f2a6eccbdfa9545d921ed5744e32080c851d 76664 
kdrill_6.5dbs-3_amd64.deb
 683442230ce6669cb92339132ca9e5d7c81401da5c173bb606a43d3cdc0d1599 11016 
makedic_6.5dbs-3_amd64.deb
Files: 
 083bb0591befca05196c73d582c5b6d6 1090 text optional kdrill_6.5dbs-3.dsc
 b53ec088f20c5c706f316b4391b9c203 10014 text optional kdrill_6.5dbs-3.diff.gz
 bac29500667f3343f5fa5329025d2680 10772 text optional kanadic_6.5dbs-3_all.deb
 2a6f8d318d6d4669c5e0356b334c5aa6 76664 text optional kdrill_6.5dbs-3_amd64.deb
 eb6fd6218100f4f265a77e32e2268d1b 11016 text optional makedic_6.5dbs-3_amd64.deb

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

iD8DBQFIFcCtKaC6+zmozOIRApXKAJ9pifVH/QnS2kLaCwafRV/9OC2mrACfcmFl
aAH6eDspO6yUqYCW4r/GybU=
=KDNE
-END PGP SIGNATURE-


Accepted:
kanadic_6.5dbs-3_all.deb
  to pool/main/k/kdrill/kanadic_6.5dbs-3_all.deb
kdrill_6.5dbs-3.diff.gz
  to pool/main/k/kdrill/kdrill_6.5dbs-3.diff.gz
kdrill_6.5dbs-3.dsc
  to pool/main/k/kdrill/kdrill_6.5dbs-3.dsc
kdrill_6.5dbs-3_amd64.deb
  to pool/main/k/kdrill/kdrill_6.5dbs-3_amd64.deb
makedic_6.5dbs-3_amd64.deb
  to pool/main/k/kdrill/makedic_6.5dbs-3_amd64.deb


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



Accepted llvm-gcc-4.2 2.2-1 (source amd64)

2008-04-28 Thread Pierre Habouzit
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 20 Apr 2008 23:36:40 +0200
Source: llvm-gcc-4.2
Binary: llvm-gcc-4.2
Architecture: source amd64
Version: 2.2-1
Distribution: unstable
Urgency: low
Maintainer: LLVM Packaging Team [EMAIL PROTECTED]
Changed-By: Pierre Habouzit [EMAIL PROTECTED]
Description: 
 llvm-gcc-4.2 - C front end for LLVM C/C++ compiler
Closes: 392955 468337 468340
Changes: 
 llvm-gcc-4.2 (2.2-1) unstable; urgency=low
 .
   [ Arthur Loiret ]
   * Initial release.  Closes: #468337, #468340
   * Remove non-DFSG files from orig tarball.  Closes: #392955
 .
   [ Pierre Habouzit ]
   * Add patches/0002-prune-GFDL-related-targets.patch to remove the Makefile
 targets affected by the .texi's removal.
Checksums-Sha1: 
 a8ffb773e48ba4ce395e6e728e68cb447f050bf9 1381 llvm-gcc-4.2_2.2-1.dsc
 15e6064c0bd6fb7beca4c6ff8bca2103a9c3ac84 47535517 llvm-gcc-4.2_2.2.orig.tar.gz
 885b38f2e11a84871928585a5a6ddc63fee1facd 16697 llvm-gcc-4.2_2.2-1.diff.gz
 2b1995d081caa03ad096d662ecd8d2d8b0110b35 25359962 llvm-gcc-4.2_2.2-1_amd64.deb
Checksums-Sha256: 
 6467586dc96a2128a240145b294e0440c196071b1d4e26b1e33691c9e07d755a 1381 
llvm-gcc-4.2_2.2-1.dsc
 c53c6ff6077e97ec0f6addedfc663725180439135b3fff3dc276694bc7b1aa00 47535517 
llvm-gcc-4.2_2.2.orig.tar.gz
 3733c13e23ab318d47c291d973a830dd8509f8167604264ece4b437806b90da2 16697 
llvm-gcc-4.2_2.2-1.diff.gz
 3dcbbe4fe88708269d5973ce65dd7654d8d645c7acbdb0bfe9f71a519c881bde 25359962 
llvm-gcc-4.2_2.2-1_amd64.deb
Files: 
 cb1fc5a4f13808b99278da650feee6da 1381 devel optional llvm-gcc-4.2_2.2-1.dsc
 02d7e466bf596ed5ee39cf28ee586baf 47535517 devel optional 
llvm-gcc-4.2_2.2.orig.tar.gz
 ef0ff3bcb144c477d04f1e0e465f9efe 16697 devel optional 
llvm-gcc-4.2_2.2-1.diff.gz
 e4993327b667f27787503ef5b3d18e2b 25359962 devel optional 
llvm-gcc-4.2_2.2-1_amd64.deb

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

iD8DBQFIC7nlvGr7W6HudhwRAgwhAJwOWfctZtqArQg/SEiBCOucWSKQ8QCdFzhw
zOuVVy4OuNeiJO7PqCr9kQQ=
=QKyR
-END PGP SIGNATURE-


Accepted:
llvm-gcc-4.2_2.2-1.diff.gz
  to pool/main/l/llvm-gcc-4.2/llvm-gcc-4.2_2.2-1.diff.gz
llvm-gcc-4.2_2.2-1.dsc
  to pool/main/l/llvm-gcc-4.2/llvm-gcc-4.2_2.2-1.dsc
llvm-gcc-4.2_2.2-1_amd64.deb
  to pool/main/l/llvm-gcc-4.2/llvm-gcc-4.2_2.2-1_amd64.deb
llvm-gcc-4.2_2.2.orig.tar.gz
  to pool/main/l/llvm-gcc-4.2/llvm-gcc-4.2_2.2.orig.tar.gz


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



Accepted gdc-4.1 0.25-20080419-4.1.2-22 (source i386)

2008-04-28 Thread Arthur Loiret
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 11:06:36 +
Source: gdc-4.1
Binary: gdc-4.1 libphobos-4.1-dev
Architecture: source i386
Version: 0.25-20080419-4.1.2-22
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers [EMAIL PROTECTED]
Changed-By: Arthur Loiret [EMAIL PROTECTED]
Description: 
 gdc-4.1- The D compiler
 libphobos-4.1-dev - The phobos D standard library
Changes: 
 gdc-4.1 (0.25-20080419-4.1.2-22) unstable; urgency=low
 .
   * Upload as gdc-4.1.
Checksums-Sha1: 
 649312f02339c39f78105c6886f007b100555245 2400 
gdc-4.1_0.25-20080419-4.1.2-22.dsc
 4a64d38ddc97affe320fb3b18d6dd48955fc8b5b 2361074 
gdc-4.1_0.25-20080419-4.1.2.orig.tar.gz
 435cbbf32d07fea1eeb1395cf7fd4dfbb403deb7 1411529 
gdc-4.1_0.25-20080419-4.1.2-22.diff.gz
 df610da232a8cdc76146580afaeba70f05b53270 2683796 gdc-4.1_0.25-4.1.2-22_i386.deb
 2696d20fff5d095513535c0afb2116557310c9d2 654070 
libphobos-4.1-dev_0.25-4.1.2-22_i386.deb
Checksums-Sha256: 
 b0401cc5ca85bc8fc1b4a331f6d664b3de3067dac34edfa1a457f88e59e74cbf 2400 
gdc-4.1_0.25-20080419-4.1.2-22.dsc
 ed3ae56ff53de460c9d4c8860f48c372542acba1f425c51a35783e337d568010 2361074 
gdc-4.1_0.25-20080419-4.1.2.orig.tar.gz
 7991e34a2a31a8faa23e5e9f7c314a11c8929129862b83561025a16d64d0022b 1411529 
gdc-4.1_0.25-20080419-4.1.2-22.diff.gz
 721ff75558e2822287e070b9dfd16a9d9fd23148fd55b13ab806a256ab5a6c11 2683796 
gdc-4.1_0.25-4.1.2-22_i386.deb
 7c429e1937179236ab4b508655d56d55172efba74b92fe693e67659e57f84e2b 654070 
libphobos-4.1-dev_0.25-4.1.2-22_i386.deb
Files: 
 d2ad8365fc9dcf89b5f9248924df3506 2400 devel optional 
gdc-4.1_0.25-20080419-4.1.2-22.dsc
 37eb90460cdbcfdbc13f7eba14cdf188 2361074 devel optional 
gdc-4.1_0.25-20080419-4.1.2.orig.tar.gz
 6d2e5bb1ebe233927327b62f69882607 1411529 devel optional 
gdc-4.1_0.25-20080419-4.1.2-22.diff.gz
 3c0adc0ee9a244bf9a2a387ea792d3e0 2683796 devel optional 
gdc-4.1_0.25-4.1.2-22_i386.deb
 b6ffbc154d9cfdf90910b713c287add1 654070 devel optional 
libphobos-4.1-dev_0.25-4.1.2-22_i386.deb

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

iD8DBQFIFb+IeW7Lc5tEHqgRAn8CAKCJSFaUbgGTPXk8+UNlZuVWHHyjwgCggJuk
pxhk/V6ObpmdGyvY1TxhTxU=
=dVuV
-END PGP SIGNATURE-


Accepted:
gdc-4.1_0.25-20080419-4.1.2-22.diff.gz
  to pool/main/g/gdc-4.1/gdc-4.1_0.25-20080419-4.1.2-22.diff.gz
gdc-4.1_0.25-20080419-4.1.2-22.dsc
  to pool/main/g/gdc-4.1/gdc-4.1_0.25-20080419-4.1.2-22.dsc
gdc-4.1_0.25-20080419-4.1.2.orig.tar.gz
  to pool/main/g/gdc-4.1/gdc-4.1_0.25-20080419-4.1.2.orig.tar.gz
gdc-4.1_0.25-4.1.2-22_i386.deb
  to pool/main/g/gdc-4.1/gdc-4.1_0.25-4.1.2-22_i386.deb
libphobos-4.1-dev_0.25-4.1.2-22_i386.deb
  to pool/main/g/gdc-4.1/libphobos-4.1-dev_0.25-4.1.2-22_i386.deb


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



Accepted libfile-policy-perl 1.005-1 (source all)

2008-04-28 Thread AGOSTINI Yves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 20 Apr 2008 14:53:16 +0200
Source: libfile-policy-perl
Binary: libfile-policy-perl
Architecture: source all
Version: 1.005-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: AGOSTINI Yves [EMAIL PROTECTED]
Description: 
 libfile-policy-perl - Simple policy for file I/O functions
Closes: 476966
Changes: 
 libfile-policy-perl (1.005-1) unstable; urgency=low
 .
   * Initial Release (Closes: #476966)
Checksums-Sha1: 
 63f7eedf3b8ed2774e96a905a7d01b9a4f628650 1449 libfile-policy-perl_1.005-1.dsc
 7323e0c1e3c872837c798281106d61e050cc7e5e 14254 
libfile-policy-perl_1.005.orig.tar.gz
 bc88f3a04ea19e9ff8ba2c3618860cb98b04374f 2340 
libfile-policy-perl_1.005-1.diff.gz
 8fe837294a52bef5c326938cdd1132bc965afd9b 15696 
libfile-policy-perl_1.005-1_all.deb
Checksums-Sha256: 
 99e1767753c64d30d641844d6284a97a770b2ab767196f247abb358009515f11 1449 
libfile-policy-perl_1.005-1.dsc
 56be77e527a708c4403212ffefd9ee280aef2aa8794bac625ce8035dc854f7b9 14254 
libfile-policy-perl_1.005.orig.tar.gz
 4a1923f11f4e50f74a3094582147334867670d53c4369ef10b8eae887b64ce78 2340 
libfile-policy-perl_1.005-1.diff.gz
 91f66a12a65e1bcd0c20f1c582dcdc476378a815c1ac1ee5687abead7f122645 15696 
libfile-policy-perl_1.005-1_all.deb
Files: 
 ed04aaea7b33cfbeb1d6c3559290cd2d 1449 perl optional 
libfile-policy-perl_1.005-1.dsc
 735ee869bf623861724bd3960f482e0d 14254 perl optional 
libfile-policy-perl_1.005.orig.tar.gz
 987824978e7afb574494a073ec77b181 2340 perl optional 
libfile-policy-perl_1.005-1.diff.gz
 89dc2e279d05d12d49f36fc35c93362a 15696 perl optional 
libfile-policy-perl_1.005-1_all.deb

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

iD8DBQFIDPY1OzKYnQDzz+QRAuw4AKD5m5IXOcmcMpDYZHadAd4jktZM6gCeIRSt
PbuvL8oulSmEsJCsIRcUm7g=
=Hl1q
-END PGP SIGNATURE-


Accepted:
libfile-policy-perl_1.005-1.diff.gz
  to pool/main/libf/libfile-policy-perl/libfile-policy-perl_1.005-1.diff.gz
libfile-policy-perl_1.005-1.dsc
  to pool/main/libf/libfile-policy-perl/libfile-policy-perl_1.005-1.dsc
libfile-policy-perl_1.005-1_all.deb
  to pool/main/libf/libfile-policy-perl/libfile-policy-perl_1.005-1_all.deb
libfile-policy-perl_1.005.orig.tar.gz
  to pool/main/libf/libfile-policy-perl/libfile-policy-perl_1.005.orig.tar.gz


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



Accepted libtest-log4perl-perl 0.1001-1 (source all)

2008-04-28 Thread AGOSTINI Yves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 20 Apr 2008 11:31:41 +0200
Source: libtest-log4perl-perl
Binary: libtest-log4perl-perl
Architecture: source all
Version: 0.1001-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: AGOSTINI Yves [EMAIL PROTECTED]
Description: 
 libtest-log4perl-perl - Test log4perl
Closes: 476937
Changes: 
 libtest-log4perl-perl (0.1001-1) unstable; urgency=low
 .
   * Initial Release (Closes: #476937)
Checksums-Sha1: 
 5fcfbad114e09437383fc6255289fed0170d43fd 1502 
libtest-log4perl-perl_0.1001-1.dsc
 4541b60cef49876dffdd07494e1a9f3838deff22 9394 
libtest-log4perl-perl_0.1001.orig.tar.gz
 0e2b808088b2b4b62e50a948737fdd5b40b598d4 1878 
libtest-log4perl-perl_0.1001-1.diff.gz
 c65834606bd069d7e27bb00cbc5fee204947afdb 11870 
libtest-log4perl-perl_0.1001-1_all.deb
Checksums-Sha256: 
 8c47c62bcd10a2aa98e49379a94862e0abcce1416c54fc1c825f523f08d48f52 1502 
libtest-log4perl-perl_0.1001-1.dsc
 4b0444bd849db5b246841a6109475725c46b7b6daa8a9a242d5ed6b7e1cc8e94 9394 
libtest-log4perl-perl_0.1001.orig.tar.gz
 01766c95b50456006e5d73f1ed1a9d2e3ad15dae02099b1d4356e07edb86a79d 1878 
libtest-log4perl-perl_0.1001-1.diff.gz
 9358b0d6c45baeb123fe3e36515056cf17e82ab01bc3e15be6be13b2c01a3869 11870 
libtest-log4perl-perl_0.1001-1_all.deb
Files: 
 4532b2086dece44ad3ca753de81d35aa 1502 perl optional 
libtest-log4perl-perl_0.1001-1.dsc
 0100dc0cab90bbcc476de9da29c59018 9394 perl optional 
libtest-log4perl-perl_0.1001.orig.tar.gz
 b552ddc9e20c752fb2d66e5f84197a8c 1878 perl optional 
libtest-log4perl-perl_0.1001-1.diff.gz
 ed32badd6d005f35a77d19f07b0c5572 11870 perl optional 
libtest-log4perl-perl_0.1001-1_all.deb

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

iD8DBQFIDQDXOzKYnQDzz+QRAvUOAKDSac6voRo0zn8K6YjJBLYTlCG6DgCfcm33
pH2171HX3x6lqthGMwUw+88=
=LMab
-END PGP SIGNATURE-


Accepted:
libtest-log4perl-perl_0.1001-1.diff.gz
  to pool/main/libt/libtest-log4perl-perl/libtest-log4perl-perl_0.1001-1.diff.gz
libtest-log4perl-perl_0.1001-1.dsc
  to pool/main/libt/libtest-log4perl-perl/libtest-log4perl-perl_0.1001-1.dsc
libtest-log4perl-perl_0.1001-1_all.deb
  to pool/main/libt/libtest-log4perl-perl/libtest-log4perl-perl_0.1001-1_all.deb
libtest-log4perl-perl_0.1001.orig.tar.gz
  to 
pool/main/libt/libtest-log4perl-perl/libtest-log4perl-perl_0.1001.orig.tar.gz


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



Accepted edbus 0.1.0.042-1 (source i386)

2008-04-28 Thread Albin Tonnerre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 21 Apr 2008 19:17:53 +0200
Source: edbus
Binary: libedbus-dev libedbus0
Architecture: source i386
Version: 0.1.0.042-1
Distribution: experimental
Urgency: low
Maintainer: Debian Pkg-e Team [EMAIL PROTECTED]
Changed-By: Albin Tonnerre [EMAIL PROTECTED]
Description: 
 libedbus-dev - D-Bus and HAL wrapper libraries for use with the EFL - 
Developmen
 libedbus0  - D-Bus and HAL wrapper libraries for use with the EFL
Closes: 468268
Changes: 
 edbus (0.1.0.042-1) experimental; urgency=low
 .
   * Initial Release (Closes: #468268)
Checksums-Sha1: 
 232576fd58aedb0d933cae3f6916897e94be6e18 1328 edbus_0.1.0.042-1.dsc
 75020c9fdacaa8792ff87515e94a01506175ef1f 329622 edbus_0.1.0.042.orig.tar.gz
 d70ef189e69054594a0ba4c99d4427d00ca05390 2070 edbus_0.1.0.042-1.diff.gz
 3de66e40551d3ae862bd1ee4bea9f29436ce 29526 
libedbus-dev_0.1.0.042-1_i386.deb
 64835addd62a3e0b807ceb853530d83478b0ee27 28522 libedbus0_0.1.0.042-1_i386.deb
Checksums-Sha256: 
 9efd0a1b477e176fe0cbd27cb3766fa0cbde92129733f020ffd364e89506d8c2 1328 
edbus_0.1.0.042-1.dsc
 66db59dae270d2fbb9957cf814431d50ad7d224ab0cc211d20311b527e6eaf82 329622 
edbus_0.1.0.042.orig.tar.gz
 93353a923d24d5e8dd50ad470a848f527c1620357a6acdc586b32a7edc96b10a 2070 
edbus_0.1.0.042-1.diff.gz
 747d64d2f6185cd2f51a707ca3fc3e19e33286058ff4c9857d1da0888257bd77 29526 
libedbus-dev_0.1.0.042-1_i386.deb
 ca3c8d900ccf80485398b1b82f5828593341f8f39e6b0f3d997ad817facb4d32 28522 
libedbus0_0.1.0.042-1_i386.deb
Files: 
 38df63eba4e5aade1e74df29eea942f9 1328 libs optional edbus_0.1.0.042-1.dsc
 7909ee490b361b9f4a564c330c8be876 329622 libs optional 
edbus_0.1.0.042.orig.tar.gz
 91f2bb66af8cd10d9c40f2f864f92d31 2070 libs optional edbus_0.1.0.042-1.diff.gz
 14a0c304e9e3295ef66dadb0659bd454 29526 libdevel optional 
libedbus-dev_0.1.0.042-1_i386.deb
 5ecc14d38f48e0a7fc309176c0130956 28522 libs optional 
libedbus0_0.1.0.042-1_i386.deb

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

iD8DBQFIDPrRioOL5NhIDy4RAo5oAKCVUH1rqe1l8ExcjMGbNHMpWFqfLQCfUyje
yrGDHErDFOP2MzQ0sZjYVdI=
=pJaB
-END PGP SIGNATURE-


Accepted:
edbus_0.1.0.042-1.diff.gz
  to pool/main/e/edbus/edbus_0.1.0.042-1.diff.gz
edbus_0.1.0.042-1.dsc
  to pool/main/e/edbus/edbus_0.1.0.042-1.dsc
edbus_0.1.0.042.orig.tar.gz
  to pool/main/e/edbus/edbus_0.1.0.042.orig.tar.gz
libedbus-dev_0.1.0.042-1_i386.deb
  to pool/main/e/edbus/libedbus-dev_0.1.0.042-1_i386.deb
libedbus0_0.1.0.042-1_i386.deb
  to pool/main/e/edbus/libedbus0_0.1.0.042-1_i386.deb


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



Accepted libio-tee-perl 0.64-1 (source all)

2008-04-28 Thread AGOSTINI Yves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 16 Apr 2008 11:28:47 +0200
Source: libio-tee-perl
Binary: libio-tee-perl
Architecture: source all
Version: 0.64-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: AGOSTINI Yves [EMAIL PROTECTED]
Description: 
 libio-tee-perl - Multiplex output to multiple output handles
Closes: 476934
Changes: 
 libio-tee-perl (0.64-1) unstable; urgency=low
 .
   * Initial Release (Closes: #476934)
Checksums-Sha1: 
 c90bc9108256079619fc5258d6a50fd8ce1445dc 1275 libio-tee-perl_0.64-1.dsc
 29314311318e3e0bee01623a23eda4f1ba629b76 5039 libio-tee-perl_0.64.orig.tar.gz
 a0ac76213c4f73cd3a09b53d38bdbd0310c94ad0 2215 libio-tee-perl_0.64-1.diff.gz
 08f6e1737d371818910f632bb6f71b8e8b2b6460 9214 libio-tee-perl_0.64-1_all.deb
Checksums-Sha256: 
 9ca32dc9e3c0bcc1aa31aa60d29862e9c9f7abe99c3d15a307c49de82f206691 1275 
libio-tee-perl_0.64-1.dsc
 3ed276b1c2d3511338653c2532e73753d284943c1a8f5159ff37fecc2b345ed6 5039 
libio-tee-perl_0.64.orig.tar.gz
 9be9158ff59c4707c571da1444531683b0388b9fb259144239e4164f97132227 2215 
libio-tee-perl_0.64-1.diff.gz
 d24dcb8327087b6cf8784caf46c09d1152fe65f2a17a3a075afa0b0a28ab6887 9214 
libio-tee-perl_0.64-1_all.deb
Files: 
 dc7a31b263995c1ba359b98d8d0daab6 1275 perl optional libio-tee-perl_0.64-1.dsc
 97d91e38fcadc1f01d8030a8d4f30701 5039 perl optional 
libio-tee-perl_0.64.orig.tar.gz
 5268ae9923031ff002114d2761fc 2215 perl optional 
libio-tee-perl_0.64-1.diff.gz
 ea1e90d47868df39541af5706701e8cc 9214 perl optional 
libio-tee-perl_0.64-1_all.deb

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

iD8DBQFIDPLIOzKYnQDzz+QRAiVvAKDbPZbFdTys7g2A+2jH1DRefZHZwwCfcNhq
v0Tq0NgiPHXPkZ2Mr1/uh9g=
=cfR5
-END PGP SIGNATURE-


Accepted:
libio-tee-perl_0.64-1.diff.gz
  to pool/main/libi/libio-tee-perl/libio-tee-perl_0.64-1.diff.gz
libio-tee-perl_0.64-1.dsc
  to pool/main/libi/libio-tee-perl/libio-tee-perl_0.64-1.dsc
libio-tee-perl_0.64-1_all.deb
  to pool/main/libi/libio-tee-perl/libio-tee-perl_0.64-1_all.deb
libio-tee-perl_0.64.orig.tar.gz
  to pool/main/libi/libio-tee-perl/libio-tee-perl_0.64.orig.tar.gz


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



Accepted lua-orbit 2.0~rc1-1 (source all)

2008-04-28 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 17 Apr 2008 11:11:55 +0200
Source: lua-orbit
Binary: liblua5.1-orbit0 liblua5.1-orbit-dev
Architecture: source all
Version: 2.0~rc1-1
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 liblua5.1-orbit-dev - Documentation files for the orbit MVC framework
 liblua5.1-orbit0 - MVC web framework for Lua
Closes: 462659
Changes: 
 lua-orbit (2.0~rc1-1) unstable; urgency=low
 .
   * Initial release. (Closes: #462659)
Checksums-Sha1: 
 f5bf7bbc0e83f7a36e1aedfeaa69c532753c9146 1183 lua-orbit_2.0~rc1-1.dsc
 4cf6e9bdb1f7df2585717fa39ef33f7cc3a10123 717364 lua-orbit_2.0~rc1.orig.tar.gz
 b13d37af5bc04aac43864d47d95d3e1637d19446 2448 lua-orbit_2.0~rc1-1.diff.gz
 a1a4c47fd0a211aee7667cafdbe81b47a2c182e6 11080 
liblua5.1-orbit0_2.0~rc1-1_all.deb
 230740396f3195979cfa356820b627ecb283e81c 54914 
liblua5.1-orbit-dev_2.0~rc1-1_all.deb
Checksums-Sha256: 
 4efe859f3102b95b38e4942b5218e482b5691a46e37ab3abe14f91b00683ed27 1183 
lua-orbit_2.0~rc1-1.dsc
 b0bd9ed2eec23dae11d046c9c20e2bb47bcfc91575b0ccbab05ff61a1ec81e03 717364 
lua-orbit_2.0~rc1.orig.tar.gz
 18a52c0b5b83a1d7c2e6c4c449d6c806f275e9d95a8ef3be5b95a37faee1e9bb 2448 
lua-orbit_2.0~rc1-1.diff.gz
 38385daec87a79b7c2e6db7e2bc90071e2c0e4bb698b0037bc43b6e1326861cd 11080 
liblua5.1-orbit0_2.0~rc1-1_all.deb
 d06f3b6ed5ac35057881fb372dea70b833be5984e9c7459d1ab3deebaa38ef1f 54914 
liblua5.1-orbit-dev_2.0~rc1-1_all.deb
Files: 
 27f3958261de675affebc013ce2fd9d9 1183 web optional lua-orbit_2.0~rc1-1.dsc
 ec5f12ef107de47aa0ecb57a61f0022d 717364 web optional 
lua-orbit_2.0~rc1.orig.tar.gz
 75bcef747f99ca4f84ba880ae4b4f607 2448 web optional lua-orbit_2.0~rc1-1.diff.gz
 4f635bfd2ccbbd43001919c6c5cb6fef 11080 web optional 
liblua5.1-orbit0_2.0~rc1-1_all.deb
 49ef649a707421dd4b8da4a1a9861447 54914 libdevel optional 
liblua5.1-orbit-dev_2.0~rc1-1_all.deb

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

iD8DBQFIDc4K7kkcPgEj8vIRAg7wAJ94uHTH7+scMdbSJLtXTwRkhmBxsACfcjZo
wsrHh62hr7MYjlv5iGFZjLg=
=fZYi
-END PGP SIGNATURE-


Accepted:
liblua5.1-orbit-dev_2.0~rc1-1_all.deb
  to pool/main/l/lua-orbit/liblua5.1-orbit-dev_2.0~rc1-1_all.deb
liblua5.1-orbit0_2.0~rc1-1_all.deb
  to pool/main/l/lua-orbit/liblua5.1-orbit0_2.0~rc1-1_all.deb
lua-orbit_2.0~rc1-1.diff.gz
  to pool/main/l/lua-orbit/lua-orbit_2.0~rc1-1.diff.gz
lua-orbit_2.0~rc1-1.dsc
  to pool/main/l/lua-orbit/lua-orbit_2.0~rc1-1.dsc
lua-orbit_2.0~rc1.orig.tar.gz
  to pool/main/l/lua-orbit/lua-orbit_2.0~rc1.orig.tar.gz


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



Accepted libdvdread 0.9.7-9 (source i386)

2008-04-28 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 16:08:00 +0200
Source: libdvdread
Binary: libdvdread3 libdvdread-dev
Architecture: source i386
Version: 0.9.7-9
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 libdvdread-dev - library for reading DVDs (development)
 libdvdread3 - library for reading DVDs
Changes: 
 libdvdread (0.9.7-9) unstable; urgency=low
 .
   * Reordering rules file.
   * Using wildcards in install files consistenly.
   * Sanitizing dpatch series file.
   * Removing watch file.
   * Removing old lintian overrides.
   * Adding link to wikipedia about CSS (Content Scramble System).
   * Rewriting copyright file in machine-interpretable format.
   * Adding recommends to libdvdnav4.
   * Adding vcs fields in control file.
   * Updating package to debhelper 7.
   * Removing useless whitespaces from changelog file.
   * Reverting config.guess and config.sub to upstream.
Checksums-Sha1: 
 9d613c6759f58f9691dbcd6ae07796cfee637ce4 1150 libdvdread_0.9.7-9.dsc
 5eb2e58162b7bbdf01b3596ab0ee91274a01dd60 6949 libdvdread_0.9.7-9.diff.gz
 6e4eb74915ad8565e0848cf3efac9f7b2f8b22b2 57382 libdvdread3_0.9.7-9_i386.deb
 1974848fbbcaf5f47f686ed7d1edec8438bfab90 75604 libdvdread-dev_0.9.7-9_i386.deb
Checksums-Sha256: 
 5d41c936e91536888e61b9a3a6070a0bb5bd80b222eab868605bab620789d719 1150 
libdvdread_0.9.7-9.dsc
 85ff9a7789f1a0d80e83405653f1a1b73ad360903355780cf852e72414dc3716 6949 
libdvdread_0.9.7-9.diff.gz
 b94db304ad850b7dedfb580cad579cca369a5b5a9f83b15d76c1cfa345d5bff3 57382 
libdvdread3_0.9.7-9_i386.deb
 b0d1c8059849fb94d2d962716c319a7e427feeb2a8bc875d747238a2e6235253 75604 
libdvdread-dev_0.9.7-9_i386.deb
Files: 
 af0e2b5b48a8f290328cb27352f5a59b 1150 graphics optional libdvdread_0.9.7-9.dsc
 bc984ea6fbbad1b08331eb42cb19f6df 6949 graphics optional 
libdvdread_0.9.7-9.diff.gz
 2475fe81894f9c27e11f3041fe4c5a7b 57382 libs optional 
libdvdread3_0.9.7-9_i386.deb
 7e4ff60df98757f6ec31d043a2397677 75604 libdevel optional 
libdvdread-dev_0.9.7-9_i386.deb

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

iD8DBQFIFdrX+C5cwEsrK54RAvGUAKCJl14yySMB37yQQTpGjnrbkCTf/gCeKgFX
UXzo7gQH+uSHvlggR4sFW1A=
=Ukds
-END PGP SIGNATURE-


Accepted:
libdvdread-dev_0.9.7-9_i386.deb
  to pool/main/libd/libdvdread/libdvdread-dev_0.9.7-9_i386.deb
libdvdread3_0.9.7-9_i386.deb
  to pool/main/libd/libdvdread/libdvdread3_0.9.7-9_i386.deb
libdvdread_0.9.7-9.diff.gz
  to pool/main/libd/libdvdread/libdvdread_0.9.7-9.diff.gz
libdvdread_0.9.7-9.dsc
  to pool/main/libd/libdvdread/libdvdread_0.9.7-9.dsc


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



Accepted kmymoney2-plugin-aqbanking 0.9.6beta-4 (source i386)

2008-04-28 Thread Micha Lenk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 21 Apr 2008 14:35:59 +0200
Source: kmymoney2-plugin-aqbanking
Binary: kmymoney2-plugin-aqbanking
Architecture: source i386
Version: 0.9.6beta-4
Distribution: unstable
Urgency: low
Maintainer: Micha Lenk [EMAIL PROTECTED]
Changed-By: Micha Lenk [EMAIL PROTECTED]
Description: 
 kmymoney2-plugin-aqbanking - KMyMoney2 plugin for online banking
Closes: 468379
Changes: 
 kmymoney2-plugin-aqbanking (0.9.6beta-4) unstable; urgency=low
 .
   * Mention GFDL licensed documents in debian/copyright.
 .
 kmymoney2-plugin-aqbanking (0.9.6beta-3) unstable; urgency=low
 .
   * Allow Debian Maintainer uploads for this package.
 .
 kmymoney2-plugin-aqbanking (0.9.6beta-2) unstable; urgency=low
 .
   * Switch to CDBS and reduce debian/rules to included CDBS files.
   * Add patch 90_buildsystem_bugfix to make the build system working with
 CDBS class kde.
   * Add shlibs.local file to let kmymoney2-plugin-aqbanking depend on
 kmymoney2 = 0.8.9.
   * Add missing build-dep on kdelibs4-dev and qt3-dev-tools.
 .
 kmymoney2-plugin-aqbanking (0.9.6beta-1) unstable; urgency=low
 .
   * Initial release (Closes: #468379)
Checksums-Sha1: 
 8e7bbc1999b3d13c9c0907f3cd08a1792024a40c 1252 
kmymoney2-plugin-aqbanking_0.9.6beta-4.dsc
 ac5b408949e6e4de6a52aa4f5fa424319ef6f9f3 870205 
kmymoney2-plugin-aqbanking_0.9.6beta.orig.tar.gz
 358610c0958d664519962387e61b8f664fcb9887 2998 
kmymoney2-plugin-aqbanking_0.9.6beta-4.diff.gz
 248d90cc7946c3387f8ec5f329b432e002e7b004 68352 
kmymoney2-plugin-aqbanking_0.9.6beta-4_i386.deb
Checksums-Sha256: 
 b7226d38fe0e7a2d32aa157dea0d5e03aa586652bee378cc84a6f6d20d8c4fa4 1252 
kmymoney2-plugin-aqbanking_0.9.6beta-4.dsc
 1ca4c5abd90fdc3e4f8048dc85e04e1dba11f1a2b86fc03b0063544aa5fe9676 870205 
kmymoney2-plugin-aqbanking_0.9.6beta.orig.tar.gz
 280921b4e0e464e5fea9fabb50083b6ca54466b54f2614fe334bd48e91a624f1 2998 
kmymoney2-plugin-aqbanking_0.9.6beta-4.diff.gz
 77240e0ee2b3455735b4105984598b744dfdb4238271c1a04e77dab0fbfb9bfa 68352 
kmymoney2-plugin-aqbanking_0.9.6beta-4_i386.deb
Files: 
 4fc844ed3c2fef060c7776677a346fad 1252 kde extra 
kmymoney2-plugin-aqbanking_0.9.6beta-4.dsc
 cf5ae41e435bf2c7ebdceb0f9c9340a3 870205 kde extra 
kmymoney2-plugin-aqbanking_0.9.6beta.orig.tar.gz
 ce03953b5362a36a28ae1161e798c989 2998 kde extra 
kmymoney2-plugin-aqbanking_0.9.6beta-4.diff.gz
 48481588c88ed7f67ade7f85769d49a4 68352 kde extra 
kmymoney2-plugin-aqbanking_0.9.6beta-4_i386.deb

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

iD8DBQFIDQi19ijrk0dDIGwRAknkAJ4lmahbhQHbTADaV5p7C3AjH42lawCggjcC
cxvJvVi19Fx3qN2gqSF1ELU=
=4KDT
-END PGP SIGNATURE-


Accepted:
kmymoney2-plugin-aqbanking_0.9.6beta-4.diff.gz
  to 
pool/main/k/kmymoney2-plugin-aqbanking/kmymoney2-plugin-aqbanking_0.9.6beta-4.diff.gz
kmymoney2-plugin-aqbanking_0.9.6beta-4.dsc
  to 
pool/main/k/kmymoney2-plugin-aqbanking/kmymoney2-plugin-aqbanking_0.9.6beta-4.dsc
kmymoney2-plugin-aqbanking_0.9.6beta-4_i386.deb
  to 
pool/main/k/kmymoney2-plugin-aqbanking/kmymoney2-plugin-aqbanking_0.9.6beta-4_i386.deb
kmymoney2-plugin-aqbanking_0.9.6beta.orig.tar.gz
  to 
pool/main/k/kmymoney2-plugin-aqbanking/kmymoney2-plugin-aqbanking_0.9.6beta.orig.tar.gz


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



Accepted libprelude 0.9.17.1-1 (source amd64)

2008-04-28 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 15:23:30 +0200
Source: libprelude
Binary: libprelude-dev libprelude2 libprelude2-dbg libprelude-perl 
python-prelude
Architecture: source amd64
Version: 0.9.17.1-1
Distribution: unstable
Urgency: low
Maintainer: Mickael Profeta [EMAIL PROTECTED]
Changed-By: Pierre Chifflier [EMAIL PROTECTED]
Description: 
 libprelude-dev - Hybrid Intrusion Detection System [ Development files ]
 libprelude-perl - Hybrid Intrusion Detection System [ Base library ]
 libprelude2 - Hybrid Intrusion Detection System [ Base library ]
 libprelude2-dbg - Hybrid Intrusion Detection System [ Debug symbols ]
 python-prelude - Hybrid Intrusion Detection System [ Base library ]
Changes: 
 libprelude (0.9.17.1-1) unstable; urgency=low
 .
   * New upstream release (remove debug output)
Checksums-Sha1: 
 f1384e6b42f74b8bce7ecae7ec23db619fc42b5c 1234 libprelude_0.9.17.1-1.dsc
 03fcae31065eaf61c1acf747de1a4eeb9bbbc73a 2030138 
libprelude_0.9.17.1.orig.tar.gz
 cf33b2797d77f3e73800ba12122cf1fb7bca50b2 4289 libprelude_0.9.17.1-1.diff.gz
 cdccd27ba8d6119c88b5c417ce88c7c67311374f 78548 
libprelude-dev_0.9.17.1-1_amd64.deb
 50f8a0b278d932d084d8983659cd206f05db1952 556950 
libprelude2_0.9.17.1-1_amd64.deb
 b81bb9077642c9ec43a10b42cbd0ad4c121c1f95 1382208 
libprelude2-dbg_0.9.17.1-1_amd64.deb
 e0ade8707ac7115464ccaf9df4b0d2aab176c230 454166 
libprelude-perl_0.9.17.1-1_amd64.deb
 e172a674574cae66dfbd221c6988d88f163f8b39 440576 
python-prelude_0.9.17.1-1_amd64.deb
Checksums-Sha256: 
 4c0af82c76986ebc67779a6614ebb512016f3a7f9e7598cde53768d869707b5a 1234 
libprelude_0.9.17.1-1.dsc
 c14cf4f04e75387c89db6d7f1119d6662bbd704b0308f3b0e86840e404579378 2030138 
libprelude_0.9.17.1.orig.tar.gz
 cbdfa82810c3bf02c5f6560a02852e0108a866e2146a9ef950a3adc5305ba86d 4289 
libprelude_0.9.17.1-1.diff.gz
 c54c2f159595bf5e14002dc3902c204b5b790d6cded2bbdac82c38239cd56da9 78548 
libprelude-dev_0.9.17.1-1_amd64.deb
 3945e55d6dc46f844215c219cbc4b1bb63cccf952354d09bee000aa9fc62ee4b 556950 
libprelude2_0.9.17.1-1_amd64.deb
 2c7a78ad0a071fab40831fc941e09b5be35512ecf17404a928d70264397caabe 1382208 
libprelude2-dbg_0.9.17.1-1_amd64.deb
 827ccc3f9f01cf73b8b76d992b8708187e65433129e38eddd51ae49ea3cf1358 454166 
libprelude-perl_0.9.17.1-1_amd64.deb
 50a5b3d271ad69b3d5c99b8ad45bc6faf2d70f3539435129b300d0131348e4a6 440576 
python-prelude_0.9.17.1-1_amd64.deb
Files: 
 f2b4f06b02550e311c75c9135ff4 1234 libs extra libprelude_0.9.17.1-1.dsc
 abe66d80a4a392121c9e158d96fc767f 2030138 libs extra 
libprelude_0.9.17.1.orig.tar.gz
 a621e1592069a480cf9ade7ef49dcfeb 4289 libs extra libprelude_0.9.17.1-1.diff.gz
 329bce640f55e05d2aa701a7a73f4b07 78548 libdevel extra 
libprelude-dev_0.9.17.1-1_amd64.deb
 3b197e816b3b76977c9da900491c267b 556950 libs extra 
libprelude2_0.9.17.1-1_amd64.deb
 6b0a024149d6e001ad41e0cc20c33ebe 1382208 libdevel extra 
libprelude2-dbg_0.9.17.1-1_amd64.deb
 378ac8d263b8f4d181ec742f120a0f32 454166 perl extra 
libprelude-perl_0.9.17.1-1_amd64.deb
 d0286f0174aa85f785c3115f11a88174 440576 python extra 
python-prelude_0.9.17.1-1_amd64.deb

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

iD8DBQFIFdDXtwVrWo1fQMsRAulfAKDIOpxHAbV+YBOPjfyI2Cd0/1yzQACgjz+u
ht+S+uzLVcxbLN3LWe62tXM=
=Xbo/
-END PGP SIGNATURE-


Accepted:
libprelude-dev_0.9.17.1-1_amd64.deb
  to pool/main/libp/libprelude/libprelude-dev_0.9.17.1-1_amd64.deb
libprelude-perl_0.9.17.1-1_amd64.deb
  to pool/main/libp/libprelude/libprelude-perl_0.9.17.1-1_amd64.deb
libprelude2-dbg_0.9.17.1-1_amd64.deb
  to pool/main/libp/libprelude/libprelude2-dbg_0.9.17.1-1_amd64.deb
libprelude2_0.9.17.1-1_amd64.deb
  to pool/main/libp/libprelude/libprelude2_0.9.17.1-1_amd64.deb
libprelude_0.9.17.1-1.diff.gz
  to pool/main/libp/libprelude/libprelude_0.9.17.1-1.diff.gz
libprelude_0.9.17.1-1.dsc
  to pool/main/libp/libprelude/libprelude_0.9.17.1-1.dsc
libprelude_0.9.17.1.orig.tar.gz
  to pool/main/libp/libprelude/libprelude_0.9.17.1.orig.tar.gz
python-prelude_0.9.17.1-1_amd64.deb
  to pool/main/libp/libprelude/python-prelude_0.9.17.1-1_amd64.deb


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



Accepted soci 2.2.0-1 (source amd64)

2008-04-28 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 22 Apr 2008 11:31:19 +0100
Source: soci
Binary: libsoci-core-gcc libsoci-core-gcc-dev libsoci-core-gcc-dbg 
libsoci-mysql-gcc libsoci-sqlite3-gcc libsoci-postgresql-gcc
Architecture: source amd64
Version: 2.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Neil Williams [EMAIL PROTECTED]
Changed-By: Neil Williams [EMAIL PROTECTED]
Description: 
 libsoci-core-gcc - C++ Database Access Library
 libsoci-core-gcc-dbg - C++ Database Access Library
 libsoci-core-gcc-dev - C++ Database Access Library
 libsoci-mysql-gcc - C++ Database Access Library
 libsoci-postgresql-gcc - C++ Database Access Library
 libsoci-sqlite3-gcc - C++ Database Access Library
Closes: 476793
Changes: 
 soci (2.2.0-1) unstable; urgency=low
 .
   * Initial release soci -- C++ Database Access Library (Closes: #476793)
Checksums-Sha1: 
 ce7cdbe62c358947b4e7455d3be60bd63b9b81d6 1277 soci_2.2.0-1.dsc
 4e726d0a9a59173042cb8a6aba7148640a156dd7 570405 soci_2.2.0.orig.tar.gz
 c7e658c068d3e31f0a93c10226b189938776e660 2451 soci_2.2.0-1.diff.gz
 50d849a64b9453110bbb5a877ce93334b7caa82e 37008 
libsoci-core-gcc_2.2.0-1_amd64.deb
 9bd315dc6cdd493725d3c75878bd6993b87ca643 213420 
libsoci-core-gcc-dev_2.2.0-1_amd64.deb
 793a2e39380dbcae48ecc98e5d72df34e7d70968 850438 
libsoci-core-gcc-dbg_2.2.0-1_amd64.deb
 715139aea9ebfd637de3ece6cf535a9ab0c3fecf 37648 
libsoci-mysql-gcc_2.2.0-1_amd64.deb
 c83a87cfc7b5ef26764517158143aa7b2dce3f9c 40762 
libsoci-sqlite3-gcc_2.2.0-1_amd64.deb
 b90fe992165bf6a0e4e0be8d53ba801dca092746 36912 
libsoci-postgresql-gcc_2.2.0-1_amd64.deb
Checksums-Sha256: 
 c27bf317a412258566730c78d912c14b1d43b26183cfd4187571f64cbe3a603a 1277 
soci_2.2.0-1.dsc
 01fc160500e9db024a56f0a7553e13885b37fc7b3b23882b07a3d6e8313780fa 570405 
soci_2.2.0.orig.tar.gz
 6c5293524733f6d12537cbe5a7b6b8e92d01ee4a394e83521e0eca7c53b39299 2451 
soci_2.2.0-1.diff.gz
 3006a6bf64d12d2bf72e415addcc9fc186fe92662c039958c6bbc18505bd90ea 37008 
libsoci-core-gcc_2.2.0-1_amd64.deb
 e91e885e774b86aac0b962b1ecee5e79492c76120c97e4bd97d813b46f36b52f 213420 
libsoci-core-gcc-dev_2.2.0-1_amd64.deb
 18e480f1dbd2f0147de080dc875158bb7196f75559ce664eacbb2ef35a09fc82 850438 
libsoci-core-gcc-dbg_2.2.0-1_amd64.deb
 568a944e609122e6f09d559d6b5c2902a7bd5c53f592a9827be3afb0e198 37648 
libsoci-mysql-gcc_2.2.0-1_amd64.deb
 6ee706c1118f9f5c1d31134cd9862c602cbfb4305240416c2cf48ea063d78cea 40762 
libsoci-sqlite3-gcc_2.2.0-1_amd64.deb
 aa806524b61637052d8cb9589a23817f9cb29d7cc9df379956cf5c92b9a86774 36912 
libsoci-postgresql-gcc_2.2.0-1_amd64.deb
Files: 
 1d7f3358f9c9c964054a61c6abbb8902 1277 libs optional soci_2.2.0-1.dsc
 58b165eb5f69004689341638d2cfb19f 570405 libs optional soci_2.2.0.orig.tar.gz
 25aa604b19c7b0181dbd24f8fac861a3 2451 libs optional soci_2.2.0-1.diff.gz
 88a855e6eac817f6af23e942f628be50 37008 libs optional 
libsoci-core-gcc_2.2.0-1_amd64.deb
 43ff203e4ae0f03938f81231d4645ad2 213420 libdevel optional 
libsoci-core-gcc-dev_2.2.0-1_amd64.deb
 bcddfae2b7a87a86a287e8838ec1a490 850438 libs extra 
libsoci-core-gcc-dbg_2.2.0-1_amd64.deb
 9363263fcb80926376330b3c48ff5341 37648 libs optional 
libsoci-mysql-gcc_2.2.0-1_amd64.deb
 fcee9f8c73249ef78f75692e48818a43 40762 libs optional 
libsoci-sqlite3-gcc_2.2.0-1_amd64.deb
 a4bf3ca470be25bf0fa2ce2d231298d7 36912 libs optional 
libsoci-postgresql-gcc_2.2.0-1_amd64.deb

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

iD8DBQFIDb+hiAEJSii8s+MRAuBoAJ0VGW88n3xdsRHdn4lFR5Z7s2ESngCghlO+
wR4xYSpGQO6wJ/yN71OAOKs=
=BNhu
-END PGP SIGNATURE-


Accepted:
libsoci-core-gcc-dbg_2.2.0-1_amd64.deb
  to pool/main/s/soci/libsoci-core-gcc-dbg_2.2.0-1_amd64.deb
libsoci-core-gcc-dev_2.2.0-1_amd64.deb
  to pool/main/s/soci/libsoci-core-gcc-dev_2.2.0-1_amd64.deb
libsoci-core-gcc_2.2.0-1_amd64.deb
  to pool/main/s/soci/libsoci-core-gcc_2.2.0-1_amd64.deb
libsoci-mysql-gcc_2.2.0-1_amd64.deb
  to pool/main/s/soci/libsoci-mysql-gcc_2.2.0-1_amd64.deb
libsoci-postgresql-gcc_2.2.0-1_amd64.deb
  to pool/main/s/soci/libsoci-postgresql-gcc_2.2.0-1_amd64.deb
libsoci-sqlite3-gcc_2.2.0-1_amd64.deb
  to pool/main/s/soci/libsoci-sqlite3-gcc_2.2.0-1_amd64.deb
soci_2.2.0-1.diff.gz
  to pool/main/s/soci/soci_2.2.0-1.diff.gz
soci_2.2.0-1.dsc
  to pool/main/s/soci/soci_2.2.0-1.dsc
soci_2.2.0.orig.tar.gz
  to pool/main/s/soci/soci_2.2.0.orig.tar.gz


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



Accepted dahb-html 4.0.1.2-1 (source all)

2008-04-28 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 15:42:00 +0200
Source: dahb-html
Binary: dahb-html
Architecture: source all
Version: 4.0.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 dahb-html  - Debian GNU/Linux Anwenderhandbuch
Changes: 
 dahb-html (4.0.1.2-1) unstable; urgency=low
 .
   * Updating copyright on debian packaging.
   * Replacing install target with install debhelper files.
   * Merging upstream version 4.0.1.2.
   * Updating package to debhelper 7.
   * Removing French spacing in copyright file.
   * Correcting indenting in copyright file.
Checksums-Sha1: 
 63eaeab7afbffd97af9e387dfa76ba2033620f2d 1115 dahb-html_4.0.1.2-1.dsc
 d71c5a8948c436f206bda93e69f198eeb91a84e7 9002643 dahb-html_4.0.1.2.orig.tar.gz
 990e803ef17293066a643e55097e450e125eb46d 7204 dahb-html_4.0.1.2-1.diff.gz
 7d5ea8829e5eff75d0a58856b7b30f5fab172a57 9029140 dahb-html_4.0.1.2-1_all.deb
Checksums-Sha256: 
 1d0d1f943358b18980950b80387e99f8a3f42d0cf6d1a3edeb3412ab783e20e6 1115 
dahb-html_4.0.1.2-1.dsc
 8dd7994c8fb49ed9c6bb01ec676612914b9d289c0323274ad2789761c57bf4f7 9002643 
dahb-html_4.0.1.2.orig.tar.gz
 1dfcbd31195e480a1112caba31a8d7dc89fb8418b5a0829c454924e1a4a842b0 7204 
dahb-html_4.0.1.2-1.diff.gz
 c42506c938b7b142821a207953c8866b3bf4e0e1a511a59f1d2dcd11001c 9029140 
dahb-html_4.0.1.2-1_all.deb
Files: 
 5a4a3f1b43073b0b6132dbf1309d 1115 non-free/doc optional 
dahb-html_4.0.1.2-1.dsc
 b1016d5119438ce98de291c53a2e15e9 9002643 non-free/doc optional 
dahb-html_4.0.1.2.orig.tar.gz
 a0875927fb4f40fe7cd3d7d73ebbb70a 7204 non-free/doc optional 
dahb-html_4.0.1.2-1.diff.gz
 a36a9c6ef4bedf132760635abb9797d8 9029140 non-free/doc optional 
dahb-html_4.0.1.2-1_all.deb

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

iD8DBQFIFdTz+C5cwEsrK54RApl8AJ9qKr23bMQZrpTiVMtUB2XLUriebwCgvb//
dMKIUM/nBDzp4MsCBwiBHLE=
=Td6x
-END PGP SIGNATURE-


Accepted:
dahb-html_4.0.1.2-1.diff.gz
  to pool/non-free/d/dahb-html/dahb-html_4.0.1.2-1.diff.gz
dahb-html_4.0.1.2-1.dsc
  to pool/non-free/d/dahb-html/dahb-html_4.0.1.2-1.dsc
dahb-html_4.0.1.2-1_all.deb
  to pool/non-free/d/dahb-html/dahb-html_4.0.1.2-1_all.deb
dahb-html_4.0.1.2.orig.tar.gz
  to pool/non-free/d/dahb-html/dahb-html_4.0.1.2.orig.tar.gz


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



Accepted wml 2.0.11ds1-0.2 (source amd64)

2008-04-28 Thread Joey Schulze
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 26 Apr 2008 10:37:02 +0200
Source: wml
Binary: wml
Architecture: source amd64
Version: 2.0.11ds1-0.2
Distribution: unstable
Urgency: low
Maintainer: Martin Schulze [EMAIL PROTECTED]
Changed-By: Joey Schulze [EMAIL PROTECTED]
Description: 
 wml- off-line HTML generation toolkit
Closes: 471345
Changes: 
 wml (2.0.11ds1-0.2) unstable; urgency=low
 .
   * Non-maintainer upload
   * Use the tempdir() function from File::Temp with the automatic cleanup
 option to remove temporary directories upon exit
 [wml_backend/p1_ipp/ipp.src] (closes: Bug#471345)
Checksums-Sha1: 
 9325cd2c5a0cc1f36458b6cec6aecf4b7f91f72e 1016 wml_2.0.11ds1-0.2.dsc
 66b9b92197b60b73815f1ae48802a9c1977210f9 63749 wml_2.0.11ds1-0.2.diff.gz
 5b99499c1521a8f96a69192a0644f3161a151ce2 451478 wml_2.0.11ds1-0.2_amd64.deb
Checksums-Sha256: 
 5690b83539c651e3d73eff2c1fc055bab8c92144da09c81ecb4982c6f403c9a3 1016 
wml_2.0.11ds1-0.2.dsc
 230632c1653aea82c9d35ccc4ec19d54342438bdf78a33ffd6f55a470d6d2bd9 63749 
wml_2.0.11ds1-0.2.diff.gz
 023981ccd145bf3c084a4d8d7beb6c2d1fe55115919f9ebd3410ca97e0184f03 451478 
wml_2.0.11ds1-0.2_amd64.deb
Files: 
 836ce863db27c26166554c96e6ccf9e9 1016 web optional wml_2.0.11ds1-0.2.dsc
 1a6ab18cc37ad1ed7f2be1b1f3a65937 63749 web optional wml_2.0.11ds1-0.2.diff.gz
 6569fb2fa5ac9de19eed951bf900cccb 451478 web optional 
wml_2.0.11ds1-0.2_amd64.deb

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

iD8DBQFIEvGJW5ql+IAeqTIRAlk1AJ9C7d8hAB5doJmsLRTsJnC76L6LVQCdEAHg
H0krYmuPtnnxCI5qAXGHYSs=
=2Ce9
-END PGP SIGNATURE-


Accepted:
wml_2.0.11ds1-0.2.diff.gz
  to pool/main/w/wml/wml_2.0.11ds1-0.2.diff.gz
wml_2.0.11ds1-0.2.dsc
  to pool/main/w/wml/wml_2.0.11ds1-0.2.dsc
wml_2.0.11ds1-0.2_amd64.deb
  to pool/main/w/wml/wml_2.0.11ds1-0.2_amd64.deb


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



Accepted inform 6.31.1-1 (source sparc all)

2008-04-28 Thread Jan Christoph Nordholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Apr 2008 14:32:40 +0200
Source: inform
Binary: inform inform-docs
Architecture: source sparc all
Version: 6.31.1-1
Distribution: unstable
Urgency: low
Maintainer: Jan Christoph Nordholz [EMAIL PROTECTED]
Changed-By: Jan Christoph Nordholz [EMAIL PROTECTED]
Description: 
 inform - story file compiler for the Inform interactive fiction language (
 inform-docs - documentation for the Inform interactive fiction language (v6)
Closes: 131968 385718 446664 454258
Changes: 
 inform (6.31.1-1) unstable; urgency=low
 .
   * At long last, adopt the package. Closes: #454258.
   * Redo package from scratch. This package shall at least
 survive the Lenny release, so this closes: #446664.
   * New upstream version. Closes: #385718.
   * Include latest Designer's Manual. Closes: #131968.
   * Package is now policy-compliant with version 3.7.3.
   * Bump debhelper level to 6.
   * Obtain recent config.{sub,guess} at build time.
   * Write a fully-fledged manpage.
   * Add XS-Autobuild to control file.
Checksums-Sha1: 
 8df89c063c93c31b9f4e07b4bea503f93ca89eed 998 inform_6.31.1-1.dsc
 7656d92ca11ab213ca0eecfeed654655ef102bc4 5352607 inform_6.31.1.orig.tar.gz
 f43cd57af9ecadae1310cab0974bc432e00eaf15 6536 inform_6.31.1-1.diff.gz
 b7cc2bdb660a14662edb594bd0c18e604fa0972f 712270 inform_6.31.1-1_sparc.deb
 84c5c37c05c18bba9d0cf877fe7c8a6234f2d025 4346334 inform-docs_6.31.1-1_all.deb
Checksums-Sha256: 
 6b0805bd36cde78938456c99c5ac0c03c2b934e250524293b64a92a1df70282c 998 
inform_6.31.1-1.dsc
 a02336a1d92029cee8909d635e28c9c37800581b597a69566e2c747bd7ed2226 5352607 
inform_6.31.1.orig.tar.gz
 b6e8517b61273a034f5c61fccca5761a90ff663e11c3749743b8dde1c997ffed 6536 
inform_6.31.1-1.diff.gz
 3ef31147b2ee5a6988e632b5c174b22cc20f27c776b395a8bc917ccddc16012c 712270 
inform_6.31.1-1_sparc.deb
 dba91100b077c24ad03c1ce0c8d41c3fd5533f4ad0be000c4e0c7b0edf56c2b1 4346334 
inform-docs_6.31.1-1_all.deb
Files: 
 d906887296d6c69399a4096709de263f 998 non-free/devel extra inform_6.31.1-1.dsc
 c993c193aad2f2bf6405803251f70bfc 5352607 non-free/devel extra 
inform_6.31.1.orig.tar.gz
 2172bfa53417e66f9ced15cb2f3f49f2 6536 non-free/devel extra 
inform_6.31.1-1.diff.gz
 6772102465790823fab22c5aedd39ddf 712270 non-free/devel extra 
inform_6.31.1-1_sparc.deb
 26d7f0550facc90e9ba1f052aac45909 4346334 non-free/doc extra 
inform-docs_6.31.1-1_all.deb

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

iD8DBQFIFedO0fhX0Y/ocz0RAgiIAJ46Gc7kM+Jv1h+hTXgPiAiUJorXAQCff6CM
D07ph6TD/UdRNt5a/yZwSuY=
=CWoX
-END PGP SIGNATURE-


Accepted:
inform-docs_6.31.1-1_all.deb
  to pool/non-free/i/inform/inform-docs_6.31.1-1_all.deb
inform_6.31.1-1.diff.gz
  to pool/non-free/i/inform/inform_6.31.1-1.diff.gz
inform_6.31.1-1.dsc
  to pool/non-free/i/inform/inform_6.31.1-1.dsc
inform_6.31.1-1_sparc.deb
  to pool/non-free/i/inform/inform_6.31.1-1_sparc.deb
inform_6.31.1.orig.tar.gz
  to pool/non-free/i/inform/inform_6.31.1.orig.tar.gz


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



Accepted libmail-imapclient-perl 3.07-1 (source all)

2008-04-28 Thread Gunnar Wolf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 09:50:25 -0500
Source: libmail-imapclient-perl
Binary: libmail-imapclient-perl
Architecture: source all
Version: 3.07-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Gunnar Wolf [EMAIL PROTECTED]
Description: 
 libmail-imapclient-perl - Perl library for manipulating IMAP mail stores
Changes: 
 libmail-imapclient-perl (3.07-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 54b3963e25b8b82965e278f1500dbca47b83c278 1542 
libmail-imapclient-perl_3.07-1.dsc
 5a4ee6603ce510ae660364fe9a932b61e43c646c 127603 
libmail-imapclient-perl_3.07.orig.tar.gz
 82f31adadef73830bc43e51815af536a96bdbf96 5182 
libmail-imapclient-perl_3.07-1.diff.gz
 5b356335625b1644b927115d8e492537a09b3f89 120882 
libmail-imapclient-perl_3.07-1_all.deb
Checksums-Sha256: 
 31f3d96db5fe0961871874dc64a07098a6dcfc2adf793a272750edaae883 1542 
libmail-imapclient-perl_3.07-1.dsc
 c9c8fa65a2abb9ef7f42742e94db3ef4b46eaa21b1ed10edb68382629d2ef6ef 127603 
libmail-imapclient-perl_3.07.orig.tar.gz
 156fce97e130803d319703d0d98ade039b7fc9d07f5b2043f90f17c5208dd03d 5182 
libmail-imapclient-perl_3.07-1.diff.gz
 cfc61e734bb9287a3c79526a1fd6becd8ca2fbee0a52bff8f8713343eb553b99 120882 
libmail-imapclient-perl_3.07-1_all.deb
Files: 
 2eb5a702376418d3ab1febac5107067d 1542 perl optional 
libmail-imapclient-perl_3.07-1.dsc
 880fe4a41a550da3f11bf8039ff7733e 127603 perl optional 
libmail-imapclient-perl_3.07.orig.tar.gz
 7bd9a1bdb387aa4fa08b9e60aa712096 5182 perl optional 
libmail-imapclient-perl_3.07-1.diff.gz
 1a43db814927754b1bb194ea56073574 120882 perl optional 
libmail-imapclient-perl_3.07-1_all.deb

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

iD8DBQFIFeTa2A7zWou1J68RAiiKAJ9HHznUAcQiR8oCQfdWZ4lTC5fc6QCfW4Hd
6qdVE0jU+op6WKE97fpwMuE=
=twUq
-END PGP SIGNATURE-


Accepted:
libmail-imapclient-perl_3.07-1.diff.gz
  to 
pool/main/libm/libmail-imapclient-perl/libmail-imapclient-perl_3.07-1.diff.gz
libmail-imapclient-perl_3.07-1.dsc
  to pool/main/libm/libmail-imapclient-perl/libmail-imapclient-perl_3.07-1.dsc
libmail-imapclient-perl_3.07-1_all.deb
  to 
pool/main/libm/libmail-imapclient-perl/libmail-imapclient-perl_3.07-1_all.deb
libmail-imapclient-perl_3.07.orig.tar.gz
  to 
pool/main/libm/libmail-imapclient-perl/libmail-imapclient-perl_3.07.orig.tar.gz


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



Accepted evilvte 0.4.2-1 (source amd64)

2008-04-28 Thread Wen-Yen Chuang
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 22 Apr 2008 15:56:39 +0800
Source: evilvte
Binary: evilvte
Architecture: source amd64
Version: 0.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Wen-Yen Chuang [EMAIL PROTECTED]
Changed-By: Wen-Yen Chuang [EMAIL PROTECTED]
Description: 
 evilvte- an VTE based super lightweight terminal emulator
Closes: 469953
Changes: 
 evilvte (0.4.2-1) unstable; urgency=low
 .
   * Initial release (Closes: #469953)
Checksums-Sha1: 
 97be3810dc09efa8d361250c5b190b76ef006b39 989 evilvte_0.4.2-1.dsc
 928eaa4102267a1ce3d8a9a956ef3693f6b2be4a 40915 evilvte_0.4.2.orig.tar.gz
 166124cb50df9d4db2da61bdc655a538d9499e4a 4064 evilvte_0.4.2-1.diff.gz
 d8a2054550bea2b2d512261600ddae04fdec9fb2 32704 evilvte_0.4.2-1_amd64.deb
Checksums-Sha256: 
 41bf43d13e65fc9666f801565774415776503d6ff6b6233b137df1149cf5ee5e 989 
evilvte_0.4.2-1.dsc
 8d9a7feb9edaca489899cfdcecca33f73c39286e1c3f5daa54117501418e5e92 40915 
evilvte_0.4.2.orig.tar.gz
 acc192aa1f20c96669a92f595bdcc3e8feb90a821deca287741524d8286452d7 4064 
evilvte_0.4.2-1.diff.gz
 0d6a8100f4ff09b7a2c2cfe67a209b2b661abeb917af586e20c105e281ffaa3c 32704 
evilvte_0.4.2-1_amd64.deb
Files: 
 72a5bdbdd4573d9c67384eb816be8686 989 x11 optional evilvte_0.4.2-1.dsc
 b1064c7f19bf502aac571d0f44ccfd71 40915 x11 optional evilvte_0.4.2.orig.tar.gz
 94ec5e1e63bc3611b40223cf06813a8f 4064 x11 optional evilvte_0.4.2-1.diff.gz
 3455bfc54311d4b48e2db45630e36078 32704 x11 optional evilvte_0.4.2-1_amd64.deb

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

iD8DBQFIDhSVKFvXofIqeU4RAnu5AKCMr+bw2hdTFXeaq29/iGWQruzK6ACfYCpu
tZqQ6eqxjgP7cbjj+NS7dFE=
=3NR2
-END PGP SIGNATURE-


Accepted:
evilvte_0.4.2-1.diff.gz
  to pool/main/e/evilvte/evilvte_0.4.2-1.diff.gz
evilvte_0.4.2-1.dsc
  to pool/main/e/evilvte/evilvte_0.4.2-1.dsc
evilvte_0.4.2-1_amd64.deb
  to pool/main/e/evilvte/evilvte_0.4.2-1_amd64.deb
evilvte_0.4.2.orig.tar.gz
  to pool/main/e/evilvte/evilvte_0.4.2.orig.tar.gz


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



Accepted debian-faq 4.0 (source all)

2008-04-28 Thread Joost van Baal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 29 Mar 2008 14:21:53 +0100
Source: debian-faq
Binary: debian-faq debian-faq-de debian-faq-fr debian-faq-it debian-faq-zh-cn
Architecture: source all
Version: 4.0
Distribution: unstable
Urgency: low
Maintainer: Javier Fernandez-Sanguino Pen~a [EMAIL PROTECTED]
Changed-By: Joost van Baal [EMAIL PROTECTED]
Description: 
 debian-faq - The Debian FAQ
 debian-faq-de - The Debian FAQ, in German
 debian-faq-fr - The Debian FAQ, in French
 debian-faq-it - The Debian FAQ, in Italian
 debian-faq-zh-cn - The Debian FAQ, in Chinese
Closes: 443472 461492 473108 473998
Changes: 
 debian-faq (4.0) unstable; urgency=low
 .
   * The Debian FAQ is now maintained using SVN (no longer using CVS.)
   [ Changes by Joost van Baal ]
   * The Debian FAQ's debian/ packaging stuff is now maintained using a
 revision control system: SVN on Alioth.
 - debian/control:  Add Vcs-* headers.
   * This package no longer is called doc-debian, but debian-faq; it contains
 the Debian GNU/Linux FAQ only.  See doc-debian's debian/changelog for
 the history of the Debian GNU/Linux FAQ. (Closes: #473998)
 - debian/rules: remove stuff referring to constitution or social-contract.
 - debian/{prerm,postinst}: remove stuff referring to reporting-bugs,
   manifesto, mailing-lists or social-contract.
 - debian/control: package is now called debian-faq, not doc-debian.  
Rewrote
   package description.  Add Conflicts: doc-debian = 3.1.5.
 - debian/copyright: remove license conditions of non-FAQ documents.
   * debian/control: add Homepage header.
   * debian/control: add myself to Uploaders, after ack from jfs.
   * debian/rules: faq no longer is in FAQ/, but in .: adjust build rules.
   * debian/doc-base: imported from doc-debian-3.1.5/doc-base/debian-faq.
 updated list of authors.
   * debian/control: Bump Standards-Version from 3.6.2.0 to 3.7.3 (no changes
 needed.)
   * Create new binary Debian packages debian-faq-de, debian-faq-fr,
 debian-faq-it, debian-faq-zh-cn for translations which are somewhat up to
 date and not yet available as Debian packages.  Use debhelper's dh_install
 to deal with these multiple packages: we now build-depend upon debhelper.
 When at it, use dh_installdeb, dh_gencontrol, dh_md5sums and dh_builddeb
 too.
 - debian/{rules,control}: install de, fr, it and zh_CN translations too.
 - debian/compat: enforce debhelper compatibility level 5.
 - debian/rules: build needed languages (de, fr, it and zh_CN) only.
 - debian/debian-faq-{de,fr,it,zh-cn}.{dirs,install}: add debhelper files
   for building extra binary packages.
 - debian/rules: use debhelper's dh_installchangelog, dh_installdocs and
   dh_compress to handle debian/{copyright,changelog} and doc-base stuff.
   add needed dh_clean calls.
 - debian/rules: replace handcrafted chmod/chown call with dh_fixperms.
 - debian/debian-faq*.doc-base, debian/debian-faq*.{prerm,postrm}: add
   doc-base registrations for all packages, let debhelper deal with them.
   * Update the content of the FAQ files to their latest SVN
 versions, from svn.debian.org ddp/manuals/trunk/debian-faq:
  - changes by joostvb, 2008-04-03
 * faqinfo.sgml: mention debian-faq-de, debian-faq-fr and other
   translation packages, update svn url.
  - changes by joostvb, 2008-03-24 - 2008-03-29
 * uptodate.sgml: remove remark only relevant to  etch
 * software.sgml: do not explicitly mention lenny: make text more
   stable
 * compat.sgml: get rid of  in url: make sure typesetters do not
   choke on it
 * nexttime.sgml: remove obsolete entry on security
 * nexttime.sgml: add entry on d-i and on releasegoal Dependency
   based boot sequence
 * nexttime.sgml: port to netbsd is stalled, freebsd is getting
   better
 * nexttime.sgml: mention new armel port. update SuperH status. drop
   amd64: of course we support that: old news
 * nexttime.sgml: add some lenny release goals about i18n from
   http://release.debian.org/lenny/goals.txt
 * compat.sgml: Debian Etch is LSB certified. Thanks Stanislav
   Gromov for reporting this. (Closes: #473108)
 * faqinfo.sgml: faq moved from cvs to svn
 * redist.sgml: debian-ham is discontinued
 * contrib.sgml: the gnu system by fsf is no longer the planned
   gnu/hurd
 * support.sgml: do not repeat detailed instructions from
   http://www.debian.org/Bugs/Reporting. people should use reportbug
   anyway
 * support.sgml: fix typo
 * support.sgml: mention ftp as last way to get bug-reporting.txt:
   its no longer widely used
 * support.sgml: closed bugs are not removed but archived
 * support.sgml: mention web forums and wiki next to mailing lists
   

Accepted octave-pkg-dev 0.5.6 (source all)

2008-04-28 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 12:26:19 +0200
Source: octave-pkg-dev
Binary: octave-pkg-dev
Architecture: source all
Version: 0.5.6
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Thomas Weber [EMAIL PROTECTED]
Description: 
 octave-pkg-dev - infrastructure to build Octave packages
Changes: 
 octave-pkg-dev (0.5.6) unstable; urgency=low
 .
   * postinst-octpkg, prerm-octpkg, octave-pkg.mk.in: Parse the site-wide
 configuration file, in order to work around #477556.
   * debian/control: bump dependendency on octave3.0-headers and depend on
 pkg-config for packages where configure uses it (octave-symbolic is an
 example of such a package).
   * debian/rules: bump OCTVER to 3.0.1.
Checksums-Sha1: 
 cc5ac58a9b69a65123dc907e7ada37f366b33298 1008 octave-pkg-dev_0.5.6.dsc
 18dec7aaabbcb1706a89c39f16007a03a85cb73e 22177 octave-pkg-dev_0.5.6.tar.gz
 ddb7bd8a4c0fb1680c5facfb64180af80e3030e1 23854 octave-pkg-dev_0.5.6_all.deb
Checksums-Sha256: 
 7663b836f8bd3d21ae6325a1e06f3ea79f7b253206bdb83cd81992710e4ff558 1008 
octave-pkg-dev_0.5.6.dsc
 a4c8d7988a92bc975867140184d7948cdff78a02094abaf69b677845a8c7d4bf 22177 
octave-pkg-dev_0.5.6.tar.gz
 9d438eb0ae63e2b016b2fc555653d274288a5fc43e1a1ed216ddd8b9f1a42992 23854 
octave-pkg-dev_0.5.6_all.deb
Files: 
 31089d4878880562e0dde4879bf0f4cb 1008 devel optional octave-pkg-dev_0.5.6.dsc
 a32c32b73ca5b0a47ff18c13d9168652 22177 devel optional 
octave-pkg-dev_0.5.6.tar.gz
 7d992c6cd356aebdb04be59e66f83a47 23854 devel optional 
octave-pkg-dev_0.5.6_all.deb

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

iD8DBQFIFey3PqD4a3lPnXwRAkLmAJ9WWjxukZ0O6tl2MThLLtdeYSqanACgoswZ
+PWcRUL7x77kNekwz3G80Uw=
=JO4Z
-END PGP SIGNATURE-


Accepted:
octave-pkg-dev_0.5.6.dsc
  to pool/main/o/octave-pkg-dev/octave-pkg-dev_0.5.6.dsc
octave-pkg-dev_0.5.6.tar.gz
  to pool/main/o/octave-pkg-dev/octave-pkg-dev_0.5.6.tar.gz
octave-pkg-dev_0.5.6_all.deb
  to pool/main/o/octave-pkg-dev/octave-pkg-dev_0.5.6_all.deb


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



Accepted statsvn 0.3.1.dfsg+1-1 (source all)

2008-04-28 Thread Vincent Fourmond
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Apr 2008 21:13:17 +0200
Source: statsvn
Binary: statsvn
Architecture: source all
Version: 0.3.1.dfsg+1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers [EMAIL PROTECTED]
Changed-By: Vincent Fourmond [EMAIL PROTECTED]
Description: 
 statsvn- SVN repository statistics
Closes: 469820
Changes: 
 statsvn (0.3.1.dfsg+1-1) unstable; urgency=low
 .
   [ Michael Koch ]
   * Updated watch file to remove .dfsg part from debian version before
 comparison.
 .
   [ Vincent Fourmond ]
   * Now that statcvs has moved to main, statsvn also works fine
 within main; moving there (closes: #469820)
Checksums-Sha1: 
 b0368161af4e8e92eea2b73a7f8c3d7f5379c2cd 1370 statsvn_0.3.1.dfsg+1-1.dsc
 1fd4da931467306a3b821ba2ce3930e2c9daeed7 96174 statsvn_0.3.1.dfsg+1.orig.tar.gz
 f2a68d8b455c977c765dbb33634150328e7c4711 6340 statsvn_0.3.1.dfsg+1-1.diff.gz
 24a97b176268a792e51e77f4f27479fdf1a4a739 90592 statsvn_0.3.1.dfsg+1-1_all.deb
Checksums-Sha256: 
 bf3dda1f04c55c0fb9d18895280dec65c814e688977aba0672b7515307b04bc4 1370 
statsvn_0.3.1.dfsg+1-1.dsc
 371c5883b9d1fc9a3c6793ddda18d223c8ba7412cc795a2672b8017231534c73 96174 
statsvn_0.3.1.dfsg+1.orig.tar.gz
 43af5ffdb8cb7d61c02c830cdb050688cd5b2975d04d7ac97c38057909a6f196 6340 
statsvn_0.3.1.dfsg+1-1.diff.gz
 968baa21cbbfbb6e170c20d65c66bc7efbeb21fa33a453bea1691da2ff3da5a2 90592 
statsvn_0.3.1.dfsg+1-1_all.deb
Files: 
 ed040dfea1ff45079bb46cd5d27d0966 1370 devel optional statsvn_0.3.1.dfsg+1-1.dsc
 a7d8466a5cf30267c9cd01699e72b607 96174 devel optional 
statsvn_0.3.1.dfsg+1.orig.tar.gz
 bbaacaf2da49a089e84887ffb76a1602 6340 devel optional 
statsvn_0.3.1.dfsg+1-1.diff.gz
 5e453dbfdc83207a7b3f842f6662acbe 90592 devel optional 
statsvn_0.3.1.dfsg+1-1_all.deb

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

iD8DBQFID4CVx/UhwSKygsoRAiJAAJ4hCGP5REfvBpv4wHn8K+Dvl9u4YACgid+b
fdNUh5iBEfjgljFw/ywVwbk=
=8RDV
-END PGP SIGNATURE-


Accepted:
statsvn_0.3.1.dfsg+1-1.diff.gz
  to pool/main/s/statsvn/statsvn_0.3.1.dfsg+1-1.diff.gz
statsvn_0.3.1.dfsg+1-1.dsc
  to pool/main/s/statsvn/statsvn_0.3.1.dfsg+1-1.dsc
statsvn_0.3.1.dfsg+1-1_all.deb
  to pool/main/s/statsvn/statsvn_0.3.1.dfsg+1-1_all.deb
statsvn_0.3.1.dfsg+1.orig.tar.gz
  to pool/main/s/statsvn/statsvn_0.3.1.dfsg+1.orig.tar.gz


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



Accepted tth 3.80-1 (source i386)

2008-04-28 Thread Ian Maclaine-cross
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 28 Apr 2008 15:07:43 +1000
Source: tth
Binary: tth
Architecture: source i386
Version: 3.80-1
Distribution: unstable
Urgency: low
Maintainer: Ian Maclaine-cross [EMAIL PROTECTED]
Changed-By: Ian Maclaine-cross [EMAIL PROTECTED]
Description: 
 tth- TeX/LaTeX to HTML converter
Closes: 359766 409388
Changes: 
 tth (3.80-1) unstable; urgency=low
 .
   * New upstream release
   * New free copyright notice but tth still non-free due to lack of
 flex/yacc source code used to construct tth.c (Closes: #409388)
   * ps2png usage and man files corrected (Closes: #359766)
Files: 
 484bb73d4fc09b3c324dbeaa5c77a6f7 545 non-free/tex optional tth_3.80-1.dsc
 54d0a9fbbe67d7f198288a8cf2c32ad3 322589 non-free/tex optional 
tth_3.80.orig.tar.gz
 17aa4d27ebea9924446a3bc637e69581 16149 non-free/tex optional tth_3.80-1.diff.gz
 c09fe29ccde78a0caca3e448fff334c8 292170 non-free/tex optional 
tth_3.80-1_i386.deb

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

iD8DBQFIFev9qLuzZh0d+1MRAoebAKCgTd1t2ZTh1tsiOaRnKvh4n4F57QCgxJf/
mFgmhrESbCPFHQJchlhhftk=
=DV7v
-END PGP SIGNATURE-


Accepted:
tth_3.80-1.diff.gz
  to pool/non-free/t/tth/tth_3.80-1.diff.gz
tth_3.80-1.dsc
  to pool/non-free/t/tth/tth_3.80-1.dsc
tth_3.80-1_i386.deb
  to pool/non-free/t/tth/tth_3.80-1_i386.deb
tth_3.80.orig.tar.gz
  to pool/non-free/t/tth/tth_3.80.orig.tar.gz


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



Accepted phpicalendar 2.24-1 (source all)

2008-04-28 Thread Al Nikolov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 22 Apr 2008 13:53:33 +0400
Source: phpicalendar
Binary: phpicalendar
Architecture: source all
Version: 2.24-1
Distribution: unstable
Urgency: low
Maintainer: Al Nikolov [EMAIL PROTECTED]
Changed-By: Al Nikolov [EMAIL PROTECTED]
Description: 
 phpicalendar - iCal file web viewer
Closes: 476153
Changes: 
 phpicalendar (2.24-1) unstable; urgency=low
 .
   * Initial release (Closes: #476153)
   * Bringing to FHS (fhs.patch)
Checksums-Sha1: 
 98a7d006c36cf482a2d0209fd97cf7b62905f22c 968 phpicalendar_2.24-1.dsc
 228ba6ed52ea3b629ab0a2482f9e59d646d43814 275499 phpicalendar_2.24.orig.tar.gz
 65a7f03acf3a4c3f31ffa6c913c9ca87f5f7bd45 4078 phpicalendar_2.24-1.diff.gz
 42f2b64c87c3034fd3a22234a15a15f7cdfd9872 269246 phpicalendar_2.24-1_all.deb
Checksums-Sha256: 
 3977790153010472d33884589ce9eb54884619f47b59b88842299c9d0b29ec4a 968 
phpicalendar_2.24-1.dsc
 8fd63fb5d3b8517854c3ddcd07496af5103750658959bf0d070331f691b24633 275499 
phpicalendar_2.24.orig.tar.gz
 92d5b927fc958bebe12bfd6d46d3d3f6e598ebd16b4d7b427f8b842380da8bb0 4078 
phpicalendar_2.24-1.diff.gz
 6d8cffdd65bf884e8c0ecdc43c484577d1435be250c41f2b32baa3c2427aee7b 269246 
phpicalendar_2.24-1_all.deb
Files: 
 7e35d0bdc4df1e00cc368efbb237a4fb 968 web extra phpicalendar_2.24-1.dsc
 ac8c1223e05f38e3d299bb4eff540b50 275499 web extra phpicalendar_2.24.orig.tar.gz
 08edfbbd490d1a30c9a745180b1270a9 4078 web extra phpicalendar_2.24-1.diff.gz
 02fe9083f88afad32197cd7f29a1de66 269246 web extra phpicalendar_2.24-1_all.deb

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

iD8DBQFID6t1zWA7Wi7PmEsRArPkAKC4BsOuEgkp6FSjixFhraziOyp+2gCgtJa+
eAAmval9QDB10oGEs9ryibg=
=VLIR
-END PGP SIGNATURE-


Accepted:
phpicalendar_2.24-1.diff.gz
  to pool/main/p/phpicalendar/phpicalendar_2.24-1.diff.gz
phpicalendar_2.24-1.dsc
  to pool/main/p/phpicalendar/phpicalendar_2.24-1.dsc
phpicalendar_2.24-1_all.deb
  to pool/main/p/phpicalendar/phpicalendar_2.24-1_all.deb
phpicalendar_2.24.orig.tar.gz
  to pool/main/p/phpicalendar/phpicalendar_2.24.orig.tar.gz


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



Accepted octave-symbolic 1.0.5-2 (source i386)

2008-04-28 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 17:35:09 +0200
Source: octave-symbolic
Binary: octave-symbolic
Architecture: source i386
Version: 1.0.5-2
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Thomas Weber [EMAIL PROTECTED]
Description: 
 octave-symbolic - symbolic package for Octave
Closes: 477736
Changes: 
 octave-symbolic (1.0.5-2) unstable; urgency=low
 .
   * debian/control: bump dependency on octave-pkg-dev to 0.5.6, in order to
 get pkg-config  (closes: #477736).
Checksums-Sha1: 
 9bdbf611c720669c7061dbf92cf6e1894a405934 1452 octave-symbolic_1.0.5-2.dsc
 5818d9878bed93e0bda9faf86c47a1b097bb4177 1410 octave-symbolic_1.0.5-2.diff.gz
 e48bea8330d16de95d7e62e530bc583a73c24fcc 203678 
octave-symbolic_1.0.5-2_i386.deb
Checksums-Sha256: 
 ad8bec8b90b382fbf358470b8b481ffeea089492f3bc30ff7516726dc9b8323a 1452 
octave-symbolic_1.0.5-2.dsc
 38668258c900baa5fad8f5980cdb4f8b7c214bdb062f956f95ec32285d815dcf 1410 
octave-symbolic_1.0.5-2.diff.gz
 48f70c82216ed7d803cabee07d5a4c26a9273b90afd5ab2b183660fe34c7ea08 203678 
octave-symbolic_1.0.5-2_i386.deb
Files: 
 ead2490e2413d0485479c88a1c21ac85 1452 math optional octave-symbolic_1.0.5-2.dsc
 5b5f56b79dd010af13b537a78a020224 1410 math optional 
octave-symbolic_1.0.5-2.diff.gz
 76661f620f298ad70187c18df4ef6f32 203678 math optional 
octave-symbolic_1.0.5-2_i386.deb

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

iD8DBQFIFfPcPqD4a3lPnXwRAqZoAJ0QFvGnJ1baEwwqPXprWGP1tbtcLQCeLgse
D+ZsNyCpDaCqQuRMKY5D8gg=
=thfQ
-END PGP SIGNATURE-


Accepted:
octave-symbolic_1.0.5-2.diff.gz
  to pool/main/o/octave-symbolic/octave-symbolic_1.0.5-2.diff.gz
octave-symbolic_1.0.5-2.dsc
  to pool/main/o/octave-symbolic/octave-symbolic_1.0.5-2.dsc
octave-symbolic_1.0.5-2_i386.deb
  to pool/main/o/octave-symbolic/octave-symbolic_1.0.5-2_i386.deb


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



Accepted shogun 0.6.1-1 (source all i386)

2008-04-28 Thread Soeren Sonnenburg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 20 Apr 2008 14:25:25 +0200
Source: shogun
Binary: shogun-doc shogun-dbg shogun-python-modular shogun-python 
shogun-readline shogun-octave-modular shogun-octave shogun-r
Architecture: source all i386
Version: 0.6.1-1
Distribution: unstable
Urgency: low
Maintainer: Soeren Sonnenburg [EMAIL PROTECTED]
Changed-By: Soeren Sonnenburg [EMAIL PROTECTED]
Description: 
 shogun-dbg - Large Scale Machine Learning Toolbox
 shogun-doc - Large Scale Machine Learning Toolbox
 shogun-octave - Large Scale Machine Learning Toolbox
 shogun-octave-modular - Large Scale Machine Learning Toolbox
 shogun-python - Large Scale Machine Learning Toolbox
 shogun-python-modular - Large Scale Machine Learning Toolbox
 shogun-r   - Large Scale Machine Learning Toolbox
 shogun-readline - Large Scale Machine Learning Toolbox
Changes: 
 shogun (0.6.1-1) unstable; urgency=low
 .
   * New upstream version with new octave-modular interface and python-modular
   speedups
   * Build depend on swig = 1.3.35-3 as it contains octave fixes.
   * Add examples for octave-modular.
   * Add ghostscript to build-depends which is used to generate .png's from the
   generated .ps formulas.
   * Use correct DESTDIR when running tests.
   * Disable atlas also for arm and armel and fall back to lapack and blas.
Checksums-Sha1: 
 d21a3c0757428df3d4e7cdcc9270f0a157f82cb9 1586 shogun_0.6.1-1.dsc
 4bef0a22ba950c953f64043c242759ada07af31a 1552309 shogun_0.6.1.orig.tar.gz
 cfa56547a1fd1921dae21433d3a1cc94ac8b84f5 9129 shogun_0.6.1-1.diff.gz
 e765e9a34499735f0a8e54056b0f1b3a2280472f 3959050 shogun-doc_0.6.1-1_all.deb
 2b5ef7baeef755293f95a4d325903a17bbb3a5cc 27755508 shogun-dbg_0.6.1-1_i386.deb
 7e4a4f22a8dec86c76a38b535b905a0e5354ceaa 4582440 
shogun-python-modular_0.6.1-1_i386.deb
 75d70b89dee06669298406422288066c00bf5229 1348920 shogun-python_0.6.1-1_i386.deb
 a0cc91ada94a4cfcfed237ad0215a8e0889e2439 518184 
shogun-readline_0.6.1-1_i386.deb
 953207e13c5d8fd82db4ce4207243f188e826c01 4165538 
shogun-octave-modular_0.6.1-1_i386.deb
 707d9f53d57c3c3db53aa61ea402d462cc3fc87a 744606 shogun-octave_0.6.1-1_i386.deb
 0bfcd19a67d4054b23ce138f2accaee5b4659400 863654 shogun-r_0.6.1-1_i386.deb
Checksums-Sha256: 
 6aad6b4ab0b86e556766cf4109a03f8798ee7f5161a7a5cc46f6c0b2028e5501 1586 
shogun_0.6.1-1.dsc
 ba361ef0c57aa2029f7e880cc5dd30d5a3ec2197052aa38e3bd18918b38bf182 1552309 
shogun_0.6.1.orig.tar.gz
 890d2c1728ec399968bee335bea32bc7e52625630810274707879faf60f2d552 9129 
shogun_0.6.1-1.diff.gz
 2c32f16e08bcbec9fc206208d5272fc4c253c1f860bb90888006140721ea8275 3959050 
shogun-doc_0.6.1-1_all.deb
 9dc1919e3cbf5c1de6b00f4327566f71820eb2fcbce13224158f2c91e42c12c0 27755508 
shogun-dbg_0.6.1-1_i386.deb
 1465bcecaceff6c64c82ad2ee365bb21782f489568c650175e2e938b687c24ce 4582440 
shogun-python-modular_0.6.1-1_i386.deb
 99df926d7e852cfd65a91b8ebadedf09218189483fceb16a02cff05c28f522e7 1348920 
shogun-python_0.6.1-1_i386.deb
 5c86bea954b05a2f44890aef100ffbdfbfd6bb180bcafb4d15eba4904a58617d 518184 
shogun-readline_0.6.1-1_i386.deb
 b11d5118d301f88f2da2071b4892a7cf057868177fdc108d07fda0100f804498 4165538 
shogun-octave-modular_0.6.1-1_i386.deb
 60d95425c29e0972c8be1e4efcf8ccc2431904b8375159721078c2019490 744606 
shogun-octave_0.6.1-1_i386.deb
 36ecb7e8da4d5e33a5e1eb8984a928642f12edc7863475d39a54382c4f1edf7d 863654 
shogun-r_0.6.1-1_i386.deb
Files: 
 f1039b20446e7898a9abddb4e596493a 1586 science optional shogun_0.6.1-1.dsc
 39e37c27efeb03663d41b04721b73206 1552309 science optional 
shogun_0.6.1.orig.tar.gz
 a1f5c6fd57ca6c1a8dd62dbec61b0f77 9129 science optional shogun_0.6.1-1.diff.gz
 97fd3fe2e447a14cb566320f842958d2 3959050 doc optional 
shogun-doc_0.6.1-1_all.deb
 19a41bb62ee07d307dae513a484ef365 27755508 science extra 
shogun-dbg_0.6.1-1_i386.deb
 8464ea410b1c942ab7bb54df516655ee 4582440 science optional 
shogun-python-modular_0.6.1-1_i386.deb
 da5c5ea6b9733f31066e017fa598b690 1348920 science optional 
shogun-python_0.6.1-1_i386.deb
 2e31547edb324ec0c2c1ff06d0d00c83 518184 science optional 
shogun-readline_0.6.1-1_i386.deb
 9f8ca5d00ec1a69b05ec361cfa4b3e81 4165538 science optional 
shogun-octave-modular_0.6.1-1_i386.deb
 7eb5f2ec9ae61244bea482db642a7b32 744606 science optional 
shogun-octave_0.6.1-1_i386.deb
 7b5a0cb3e3853cdd82c1b10d7bbd3ccc 863654 science optional 
shogun-r_0.6.1-1_i386.deb

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

iD8DBQFID59ffY3dicTPjsMRApYWAJ9IHD8DKUbFO5FcPyG567NloDHWCACfSpO4
hUZGC6z5c9TDkdnuYaoUf4c=
=HM9N
-END PGP SIGNATURE-


Accepted:
shogun-dbg_0.6.1-1_i386.deb
  to pool/main/s/shogun/shogun-dbg_0.6.1-1_i386.deb
shogun-doc_0.6.1-1_all.deb
  to pool/main/s/shogun/shogun-doc_0.6.1-1_all.deb
shogun-octave-modular_0.6.1-1_i386.deb
  to pool/main/s/shogun/shogun-octave-modular_0.6.1-1_i386.deb
shogun-octave_0.6.1-1_i386.deb
  to pool/main/s/shogun/shogun-octave_0.6.1-1_i386.deb
shogun-python-modular_0.6.1-1_i386.deb
  to 

Accepted libjavascript-perl 1.06-2 (source i386)

2008-04-28 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 17:23:15 +0200
Source: libjavascript-perl
Binary: libjavascript-perl
Architecture: source i386
Version: 1.06-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libjavascript-perl - Perl extension for executing embedded JavaScript
Closes: 478060 478064
Changes: 
 libjavascript-perl (1.06-2) unstable; urgency=low
 .
   * debian/rules: touch Makefile before $(MAKE) realclean to avoid Makefile
 re-building (and breaking building twice in a row); thanks to Mike
 Hommey for the bug report (closes: #478060).
   * Add patch mozjs.patch provided by Mike Hommey to prepare the package for
 the newer version of libmozjs-dev (closes: #478064).
   * debian/control: change my email address.
Checksums-Sha1: 
 6ac4bcbebc933279e3b24ff14b195536ec9dafd9 1524 libjavascript-perl_1.06-2.dsc
 4a574e408978481201c35823a0c3ca02ab6ad892 4820 libjavascript-perl_1.06-2.diff.gz
 af97ff864388d43b6d24294a2f193ae203ee 74000 
libjavascript-perl_1.06-2_i386.deb
Checksums-Sha256: 
 d2ff7112ef58f51f3bbd58cc88be3450d0d701ccce2dbb133e30e3739223a680 1524 
libjavascript-perl_1.06-2.dsc
 c928c11372ba03039b8319d3ffd2caf16ee33de1e9b42dee2e3255854309cadd 4820 
libjavascript-perl_1.06-2.diff.gz
 c00411d4d8da1313231c22cc58a7fcf9a78450b6401e3349e95ee033349d1726 74000 
libjavascript-perl_1.06-2_i386.deb
Files: 
 678ee4b58ac1f640de56f69dcbd02d25 1524 perl optional 
libjavascript-perl_1.06-2.dsc
 699fda51226099cc4b31ba7365eb269c 4820 perl optional 
libjavascript-perl_1.06-2.diff.gz
 af4a6fe35e4dceeabd8311ad79bbe3f7 74000 perl optional 
libjavascript-perl_1.06-2_i386.deb

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

iD8DBQFIFewvOzKYnQDzz+QRAq8sAJ4vYoyiB/BCwsPSWpSCJ4FQjLEV8ACgzjY5
873iU/KrE5oe+Ib7bEna5ao=
=a1S3
-END PGP SIGNATURE-


Accepted:
libjavascript-perl_1.06-2.diff.gz
  to pool/main/libj/libjavascript-perl/libjavascript-perl_1.06-2.diff.gz
libjavascript-perl_1.06-2.dsc
  to pool/main/libj/libjavascript-perl/libjavascript-perl_1.06-2.dsc
libjavascript-perl_1.06-2_i386.deb
  to pool/main/libj/libjavascript-perl/libjavascript-perl_1.06-2_i386.deb


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



Accepted laptop-detect 0.13.6 (source amd64)

2008-04-28 Thread Otavio Salvador
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 12:51:48 -0300
Source: laptop-detect
Binary: laptop-detect
Architecture: source amd64
Version: 0.13.6
Distribution: unstable
Urgency: low
Maintainer: Otavio Salvador [EMAIL PROTECTED]
Changed-By: Otavio Salvador [EMAIL PROTECTED]
Description: 
 laptop-detect - attempt to detect a laptop
Closes: 478210
Changes: 
 laptop-detect (0.13.6) unstable; urgency=low
 .
   * Add copyright information at debian/copyright
   * Change package priority to optional. Closes: #478210
Checksums-Sha1: 
 a6d8fd01353db7249989a728cde310582b32b1c2 857 laptop-detect_0.13.6.dsc
 6d11c0b355c0f55cc90f0fc569a962acb61831f2 4262 laptop-detect_0.13.6.tar.gz
 3e606160bc38c8f34ea69bab48adbfcafdd3dbcd 5208 laptop-detect_0.13.6_amd64.deb
Checksums-Sha256: 
 33fa0075a3d5510c02a5aaf79483b9a52321b77628e232a49437edbb206ea218 857 
laptop-detect_0.13.6.dsc
 15b37329d16c59aa32bab512b320c0d11e63c93e4af0f5768be3b68f4cdb0b97 4262 
laptop-detect_0.13.6.tar.gz
 1999e212056a8098f7620ccab0c477301e189fe6c4135f299e873a642e69d946 5208 
laptop-detect_0.13.6_amd64.deb
Files: 
 e889f4ad6ac3c3c7b182722f056b6ffd 857 utils optional laptop-detect_0.13.6.dsc
 9c709b377ff5d8020729c7aa7b7d13de 4262 utils optional 
laptop-detect_0.13.6.tar.gz
 84f8b054e80404b7d4934aa53d8a70a2 5208 utils optional 
laptop-detect_0.13.6_amd64.deb

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

iD8DBQFIFfMkLqiZQEml+FURAiuCAKCn18ZgN74zGMbWPnUmSmwPMLu6JACeKrOv
/Ga/vOW1OHM+304uawdTGmc=
=dbPS
-END PGP SIGNATURE-


Accepted:
laptop-detect_0.13.6.dsc
  to pool/main/l/laptop-detect/laptop-detect_0.13.6.dsc
laptop-detect_0.13.6.tar.gz
  to pool/main/l/laptop-detect/laptop-detect_0.13.6.tar.gz
laptop-detect_0.13.6_amd64.deb
  to pool/main/l/laptop-detect/laptop-detect_0.13.6_amd64.deb


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



Accepted live-helper 1.0~a46-1 (source all)

2008-04-28 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 00:00:00 +0200
Source: live-helper
Binary: live-helper
Architecture: source all
Version: 1.0~a46-1
Distribution: unstable
Urgency: low
Maintainer: Debian Live [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 live-helper - Debian Live build scripts
Closes: 477815 478273
Changes: 
 live-helper (1.0~a46-1) unstable; urgency=low
 .
   [ Tiago Bortoletto Vaz ]
   * Support list of items for conditionals in package lists
   * Fixed minor typographical error in rescue flavor file.
   * Improving rescue flavor: added a set of missing tools, mainly for
 file system
 .
   [ Chris Lamb ]
   * Only install pstack on i386 (Closes: #477815)
   * Support simple conditionals in package lists (Closes: #478273)
   * Use APT::Install-Recommends to disable installation of recommends
 for Etch
 .
   [ Daniel Baumann ]
   * Adding netboot tarballs and plain squashfs images to images build
 script.
   * Adding powerpc64 to default kernel flavours (in addition to the
 normal 32 bit one).
   * Adjusting obtaining of the date string in snapshots.sh to new git
 log date format.
   * Updating Richards email address.
   * Producing rsyncable tarballs where possible.
   * Also taking mirrors from environment in image.sh.
   * Taking config variables for images.sh from environment.
   * Handling sourceless builds in images.sh.
   * Removing old cron example scripts for image building, they are
 obsoleted by images.sh.
   * Updating live-magic git location.
   * Getting architecture dynamically in images cron script.
   * Correcting permissions in snapshot script.
Checksums-Sha1: 
 d49697af26b043e51914c741cd74e5aeb4dac008 1258 live-helper_1.0~a46-1.dsc
 90e68f1fc997bc8f7eca6a495a9ee14db6b05797 1940812 
live-helper_1.0~a46.orig.tar.gz
 057b72cd518d8986afe40515a55f21281df5d33f 13809 live-helper_1.0~a46-1.diff.gz
 a365cd5215e5635395a09afe54c0bdc6a5f00259 1884222 live-helper_1.0~a46-1_all.deb
Checksums-Sha256: 
 2539a8b49b6af9e9f8b6a1aac68ef3fc5f773b4f73290afc8819bf5cb2e110ca 1258 
live-helper_1.0~a46-1.dsc
 193fad55132b224a95ddc31fc12f29225897674551e3c2bf02fd6eb89015622c 1940812 
live-helper_1.0~a46.orig.tar.gz
 d051df8f6c4192f66b4e83c4ddfd10aa51896ea295c61221b1486517c03d9adb 13809 
live-helper_1.0~a46-1.diff.gz
 9177f1a9775efdfdec439c97147799fb7179da26b97dbfda34df26e99f70 1884222 
live-helper_1.0~a46-1_all.deb
Files: 
 5162c64c66331e5f8dca84aed9f2d1ac 1258 misc optional live-helper_1.0~a46-1.dsc
 c409032f8d5259b30f037175bc3c0b28 1940812 misc optional 
live-helper_1.0~a46.orig.tar.gz
 5ad6df3a203a992533cbdc5ba565a9ea 13809 misc optional 
live-helper_1.0~a46-1.diff.gz
 bf819cb2bb793a8e07d8cb789765999a 1884222 misc optional 
live-helper_1.0~a46-1_all.deb

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

iD8DBQFIFfE4+C5cwEsrK54RAtnZAJ45szqNPM3PSQhzWaEaJzR6xg7dCgCfVHrr
rUivUcaYVn/MN8SKAi+ZyrA=
=A1EO
-END PGP SIGNATURE-


Accepted:
live-helper_1.0~a46-1.diff.gz
  to pool/main/l/live-helper/live-helper_1.0~a46-1.diff.gz
live-helper_1.0~a46-1.dsc
  to pool/main/l/live-helper/live-helper_1.0~a46-1.dsc
live-helper_1.0~a46-1_all.deb
  to pool/main/l/live-helper/live-helper_1.0~a46-1_all.deb
live-helper_1.0~a46.orig.tar.gz
  to pool/main/l/live-helper/live-helper_1.0~a46.orig.tar.gz


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



Accepted live-helper 1.0~a46-2 (source all)

2008-04-28 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 18:00:00 +0200
Source: live-helper
Binary: live-helper
Architecture: source all
Version: 1.0~a46-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Live [EMAIL PROTECTED]
Changed-By: Daniel Baumann [EMAIL PROTECTED]
Description: 
 live-helper - Debian Live build scripts
Changes: 
 live-helper (1.0~a46-2) unstable; urgency=medium
 .
   [ Chris Lamb ]
   * Allow needle and haystack parts of packagelist #if constructs to be
 lists
   * Conditionally add non-free rar and unrar. Add unrar-free
 unconditionally.
   * Remove buggy ext2resize
   * Remove oldstable-only hwtools from rescue list
   * Remove removed/non-Debian packages pasd, irpas and nsed from rescue
 list
   * Correct typo of ntfs3g - ntfs-3g in rescue list
   * Only install reaim on Etch in rescue list
   * Correct typo of geopip-bin = geoip-bin
   * Only install sysutils on Etch in rescue list
   * Only install read-edid on i386 and powerpc in rescue list
Checksums-Sha1: 
 a7400423edaec743becd5913065bc5e3899a1371 1258 live-helper_1.0~a46-2.dsc
 5745fb700f2f1b1173f7e25b933d4f1ef3c0ae5c 15005 live-helper_1.0~a46-2.diff.gz
 18fe8dde83d13d0f15599f7e25c749c69f1f 1884522 live-helper_1.0~a46-2_all.deb
Checksums-Sha256: 
 0f87b3acc4259d8507916e09e08d32de3b1bd04bd73ec15f4ab889eaba253136 1258 
live-helper_1.0~a46-2.dsc
 e7d99e3e3e739d8e308e7a3c2cd40bf26a9bc987d303ebafbace81e586295659 15005 
live-helper_1.0~a46-2.diff.gz
 3916a7e6da26d65dff3a383ab7355360e9e9cbaaca2efe14a26cca791cd850a3 1884522 
live-helper_1.0~a46-2_all.deb
Files: 
 0b5263b6c3389905520b7c867ae50ef3 1258 misc optional live-helper_1.0~a46-2.dsc
 8ebe5c2cd8980674a43480070e74fe44 15005 misc optional 
live-helper_1.0~a46-2.diff.gz
 3a5a0ff80879de8ac62510f361cf9973 1884522 misc optional 
live-helper_1.0~a46-2_all.deb

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

iD8DBQFIFfj3+C5cwEsrK54RAogbAJ95hiYB+wcvTXnihdYRKwA3WWQl+gCfVQrk
CQ6GYvgmE/tUcZLQ5DUYanw=
=giRo
-END PGP SIGNATURE-


Accepted:
live-helper_1.0~a46-2.diff.gz
  to pool/main/l/live-helper/live-helper_1.0~a46-2.diff.gz
live-helper_1.0~a46-2.dsc
  to pool/main/l/live-helper/live-helper_1.0~a46-2.dsc
live-helper_1.0~a46-2_all.deb
  to pool/main/l/live-helper/live-helper_1.0~a46-2_all.deb


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



Accepted mrtgutils 0.7 (source i386)

2008-04-28 Thread Luciano Bello
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 19 Apr 2008 23:00:09 -0300
Source: mrtgutils
Binary: mrtgutils
Architecture: source i386
Version: 0.7
Distribution: unstable
Urgency: low
Maintainer: Luciano Bello [EMAIL PROTECTED]
Changed-By: Luciano Bello [EMAIL PROTECTED]
Description: 
 mrtgutils  - Utilities to generate statistics for mrtg
Closes: 437586 472730
Changes: 
 mrtgutils (0.7) unstable; urgency=low
 .
   * The It's time to grown up release
   * New upstream developer, now is the packager, AKA me. Closes: #472730
   * The strip in the Makefile was removed and just use dh_strip.
 Closes: #437586
   * Many lintian issues cleaned.
Checksums-Sha1: 
 55924026dd61648abd84d619db350e1b946ea03d 700 mrtgutils_0.7.dsc
 f74bfea0bde926e83cdcabc741ee0a54cdbe6e7d 9812 mrtgutils_0.7.tar.gz
 a0ea8f54295390b315dfb5c9427d6f42e9aaa5fb 21948 mrtgutils_0.7_i386.deb
Checksums-Sha256: 
 a2946a43c192db0e5628f8fd2d8a5d8a41a24c6761172928d745e977c85c5231 700 
mrtgutils_0.7.dsc
 e5d4bf73dd1aa7215b01eb50a3066949df3f56787075c439743a47f309e291e1 9812 
mrtgutils_0.7.tar.gz
 5f4a77672d4d990728b5f8229c70bf024de06757d2717eabcbbe1a41a95c38bb 21948 
mrtgutils_0.7_i386.deb
Files: 
 2552d2dd5db749ee35cfb698c1376d93 700 net optional mrtgutils_0.7.dsc
 4ebf31640a2d3504308b13526be8d06e 9812 net optional mrtgutils_0.7.tar.gz
 056d219143e2fd4da73256d446479fac 21948 net optional mrtgutils_0.7_i386.deb

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

iD8DBQFIFfpzQWTRs4lLtHkRApe/AKCyAyKgaDzwVXOte4j7nrMFT333iwCeNBy6
bHKddTzT1w3oWwAYWA+ziH0=
=ZFb6
-END PGP SIGNATURE-


Accepted:
mrtgutils_0.7.dsc
  to pool/main/m/mrtgutils/mrtgutils_0.7.dsc
mrtgutils_0.7.tar.gz
  to pool/main/m/mrtgutils/mrtgutils_0.7.tar.gz
mrtgutils_0.7_i386.deb
  to pool/main/m/mrtgutils/mrtgutils_0.7_i386.deb


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



Accepted zsh-beta 4.3.6-dev-0+20080428-1 (source all)

2008-04-28 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 11:40:04 -0400
Source: zsh-beta
Binary: zsh-beta zsh-beta-doc zsh-beta-static
Architecture: source all
Version: 4.3.6-dev-0+20080428-1
Distribution: unstable
Urgency: low
Maintainer: Clint Adams [EMAIL PROTECTED]
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 zsh-beta   - A shell with lots of features (dev tree)
 zsh-beta-doc - zsh beta documentation - info/HTML format
 zsh-beta-static - A shell with lots of features (dev tree - static link)
Changes: 
 zsh-beta (4.3.6-dev-0+20080428-1) unstable; urgency=low
 .
   * Update to HEAD.
Checksums-Sha1: 
 b17fce3cd3b2f9be6a80e7ff9616fff0ac9e47a3 1236 
zsh-beta_4.3.6-dev-0+20080428-1.dsc
 70aae9c386077e538dba45691f473a5b3266380f 2465083 
zsh-beta_4.3.6-dev-0+20080428.orig.tar.gz
 8cbc330c47d3b00b92dc30bc8a38dd8c0d06c1bf 775328 
zsh-beta_4.3.6-dev-0+20080428-1.diff.gz
 da00c4da32c19654327c842fc23a84bcf805d8f8 802216 
zsh-beta-doc_4.3.6-dev-0+20080428-1_all.deb
Checksums-Sha256: 
 0566cdb35a330a54082b57468cb8d7299a0cf1b8a33664ffaa2eb52864bfc500 1236 
zsh-beta_4.3.6-dev-0+20080428-1.dsc
 a776c7e25cdafc35a42d11eb250148be83253cf695ca14c138c685ee677c91a2 2465083 
zsh-beta_4.3.6-dev-0+20080428.orig.tar.gz
 841f2d56078e3739d5b23cb39fdc045ac0555a2cb8c296e5b066f5ee9a92ed41 775328 
zsh-beta_4.3.6-dev-0+20080428-1.diff.gz
 b6089cd86bedcfd83eead86df9876dcebaf57ea1323c6920bef8c4d9ce781557 802216 
zsh-beta-doc_4.3.6-dev-0+20080428-1_all.deb
Files: 
 3bf02dd9f23e343ad996e0021f3cc797 1236 shells optional 
zsh-beta_4.3.6-dev-0+20080428-1.dsc
 cf9787bd384c8a490d0ab49d44b4ab71 2465083 shells optional 
zsh-beta_4.3.6-dev-0+20080428.orig.tar.gz
 5e2c156185753e4f2b4b54105babe14b 775328 shells optional 
zsh-beta_4.3.6-dev-0+20080428-1.diff.gz
 968abd98ff1ffa4155e3a34115924d58 802216 doc optional 
zsh-beta-doc_4.3.6-dev-0+20080428-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Debian!

iD8DBQFIFfTq5m0u66uWM3ARAs16AJ9e1vjVw1UIWIbUv3HQoxBlMtYmJwCgzmNa
plSPvgPmgJrOTnw3vX6yslU=
=aJF0
-END PGP SIGNATURE-


Accepted:
zsh-beta-doc_4.3.6-dev-0+20080428-1_all.deb
  to pool/main/z/zsh-beta/zsh-beta-doc_4.3.6-dev-0+20080428-1_all.deb
zsh-beta_4.3.6-dev-0+20080428-1.diff.gz
  to pool/main/z/zsh-beta/zsh-beta_4.3.6-dev-0+20080428-1.diff.gz
zsh-beta_4.3.6-dev-0+20080428-1.dsc
  to pool/main/z/zsh-beta/zsh-beta_4.3.6-dev-0+20080428-1.dsc
zsh-beta_4.3.6-dev-0+20080428.orig.tar.gz
  to pool/main/z/zsh-beta/zsh-beta_4.3.6-dev-0+20080428.orig.tar.gz


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



Accepted pommed 1.17~dfsg-2 (source amd64)

2008-04-28 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 18:59:47 +0200
Source: pommed
Binary: pommed gpomme wmpomme
Architecture: source amd64
Version: 1.17~dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE [EMAIL PROTECTED]
Changed-By: Julien BLACHE [EMAIL PROTECTED]
Description: 
 gpomme - graphical client for pommed
 pommed - Apple laptops hotkeys event handler
 wmpomme- WindowMaker dockapp client for pommed
Changes: 
 pommed (1.17~dfsg-2) unstable; urgency=low
 .
   * debian/control:
 + Build-Depend on libpci-dev instead of pciutils-dev.
 + Mark the libpci-dev build-dependency as i386+amd64-only.
 + Drop zlib1g-dev build-dependency.
 + Mention the MacBook Air in the description.
   * pommed/Makefile:
 + Changed for now-shared libpci.
Checksums-Sha1: 
 439a70f5cf7a06b9c7236719899fa3b0cccb47fb 1231 pommed_1.17~dfsg-2.dsc
 1d09eb1a34186b69c776a6d4d51979d98120b324 6705 pommed_1.17~dfsg-2.diff.gz
 59f86be32bf0ab50a0dc7b06231d993f9e0f44f2 51158 pommed_1.17~dfsg-2_amd64.deb
 44b6c14b0ef13fce091c9cf80247d3a06ac97370 346702 gpomme_1.17~dfsg-2_amd64.deb
 5372f09fb331532d5cea4173b34cc705f6a265ba 27508 wmpomme_1.17~dfsg-2_amd64.deb
Checksums-Sha256: 
 806c9dd438d717ca296e64bc2b22614ca7312eac1bc697e5c92533d713e8add4 1231 
pommed_1.17~dfsg-2.dsc
 2a1e203b35a069a51ebe515c6ab344a2391ddabe15ce25eb05f31e39ed920c63 6705 
pommed_1.17~dfsg-2.diff.gz
 37b4f050f5f94741221976a0debd1fd20beb72a69117e03de5390609146bdc86 51158 
pommed_1.17~dfsg-2_amd64.deb
 9164dc7949719b0871bc2c3cf08e9292263e43971228b5b841936f49b15b635f 346702 
gpomme_1.17~dfsg-2_amd64.deb
 f6df598f7c18327210d3fd2b62a733559c021e5a743d3e98b4166708bb8d6fff 27508 
wmpomme_1.17~dfsg-2_amd64.deb
Files: 
 3a41cf64fef79c8c19fe45f1ee0647e1 1231 utils optional pommed_1.17~dfsg-2.dsc
 4d0a2a4f15a507180ae0c08b01468935 6705 utils optional pommed_1.17~dfsg-2.diff.gz
 02d55c761f4e99af15976b03ed564478 51158 utils optional 
pommed_1.17~dfsg-2_amd64.deb
 86eb50bfcfca1c8e798802a4f503d9a3 346702 utils optional 
gpomme_1.17~dfsg-2_amd64.deb
 c7b448f26efb093764c084a41070aba5 27508 utils optional 
wmpomme_1.17~dfsg-2_amd64.deb

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

iD8DBQFIFgKyzWFP1/XWUWkRAvJ0AKDbmQPpBa41jrXf0oSrphA2eGjRSgCfdhIv
WiieGeoUFW+SOCM11a3pMvw=
=ko/a
-END PGP SIGNATURE-


Accepted:
gpomme_1.17~dfsg-2_amd64.deb
  to pool/main/p/pommed/gpomme_1.17~dfsg-2_amd64.deb
pommed_1.17~dfsg-2.diff.gz
  to pool/main/p/pommed/pommed_1.17~dfsg-2.diff.gz
pommed_1.17~dfsg-2.dsc
  to pool/main/p/pommed/pommed_1.17~dfsg-2.dsc
pommed_1.17~dfsg-2_amd64.deb
  to pool/main/p/pommed/pommed_1.17~dfsg-2_amd64.deb
wmpomme_1.17~dfsg-2_amd64.deb
  to pool/main/p/pommed/wmpomme_1.17~dfsg-2_amd64.deb


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



Accepted qt4-x11 4.4.0~rc1-5 (source all amd64)

2008-04-28 Thread Debian Qt/KDE Maintainers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Apr 2008 04:15:28 +0300
Source: qt4-x11
Binary: libqtcore4 libqt4-core libqt4-gui libqt4-network libqt4-opengl 
libqt4-script libqt4-sql libqt4-sql-ibase libqt4-sql-mysql libqt4-sql-odbc 
libqt4-sql-psql libqt4-sql-sqlite libqt4-sql-sqlite2 libqt4-svg libqt4-webkit 
libqt4-xml libqt4-xmlpatterns libqt4-dbus libqt4-qt3support libqt4-designer 
libqt4-help libqt4-assistant libqt4-test libqt4-dev libqt4-dbg 
libqt4-webkit-dbg libqt4-xmlpatterns-dbg qt4-designer qt4-dev-tools 
qt4-qtconfig qt4-demos qt4-doc
Architecture: source all amd64
Version: 4.4.0~rc1-5
Distribution: unstable
Urgency: high
Maintainer: Fathi Boudra [EMAIL PROTECTED]
Changed-By: Debian Qt/KDE Maintainers [EMAIL PROTECTED]
Description: 
 libqt4-assistant - Qt 4 assistant module
 libqt4-core - transitional package for Qt 4 core non-GUI runtime libraries
 libqt4-dbg - Qt 4 library debugging symbols
 libqt4-dbus - Qt 4 D-Bus module
 libqt4-designer - Qt 4 designer module
 libqt4-dev - Qt 4 development files
 libqt4-gui - Qt 4 GUI module
 libqt4-help - Qt 4 help module
 libqt4-network - Qt 4 network module
 libqt4-opengl - Qt 4 OpenGL module
 libqt4-qt3support - Qt 3 compatibility library for Qt 4
 libqt4-script - Qt 4 script module
 libqt4-sql - Qt 4 SQL module
 libqt4-sql-ibase - Qt 4 InterBase/FireBird database driver
 libqt4-sql-mysql - Qt 4 MySQL database driver
 libqt4-sql-odbc - Qt 4 ODBC database driver
 libqt4-sql-psql - Qt 4 PostgreSQL database driver
 libqt4-sql-sqlite - Qt 4 SQLite 3 database driver
 libqt4-sql-sqlite2 - Qt 4 SQLite 2 database driver
 libqt4-svg - Qt 4 SVG module
 libqt4-test - Qt 4 test module
 libqt4-webkit - Qt 4 WebKit module
 libqt4-webkit-dbg - Qt 4 WebKit library debugging symbols
 libqt4-xml - Qt 4 XML module
 libqt4-xmlpatterns - Qt 4 XML patterns module
 libqt4-xmlpatterns-dbg - Qt 4 XML patterns library debugging symbols
 libqtcore4 - Qt 4 core module
 qt4-demos  - Qt 4 examples and demos
 qt4-designer - Qt 4 Designer
 qt4-dev-tools - Qt 4 development tools
 qt4-doc- Qt 4 API documentation
 qt4-qtconfig - Qt 4 configuration tool
Closes: 476608 476986
Changes: 
 qt4-x11 (4.4.0~rc1-5) unstable; urgency=high
 .
   +++ Changes by Fathi Boudra:
 .
   * Add libqt4-sql-sqlite dependency to qt4-dev-tools. Qt Assistant and
 qhelpgenerator use the sqlite plugin. (Closes: #476986)
   * Remove qt-copy patches 0191 and 0192. The relevant code has changed
 such that neither patch seems to have any effect (although listviews
 still do not use active/inactive roles correctly).
   * Add qt-copy patches:
 * 0223-fix-qpixmap-hasalpha
   Fix a performance regression in QPixmap::hasAlpha() in Qt 4.4.
 * 0224-fast-qpixmap-fill
   This patch avoids the expensive image-pixmap conversion by discarding
   the old pixmap, creating a new one with the correct format, and doing
   the fill server side.
 * 0225-invalidate-tabbar-geometry-on-refresh
   Fix problem where Konsole's tab bar is not shown immediately on startup.
 .
   +++ Changes by Modestas Vainius:
 .
   * Downgrade libqt4-dev *gl*-dev dependencies to Recommends.
 They pull in half of X11 development headers and are rarely needed.
 What's more, OpenGL apps will probably depend on them explicitly anyway.
   * Add development packages of the SQL plugins to libqt4-dev Suggests.
   * Make libqt4-sql recommend its plugins. Depends does not do us any good
 because we don't know which plugin a user is going to use anyway. Moreover
 installation of the libqt4-sql package does not necessarily imply usage of
 the specific plugin(s). Finally, this resolves circular dependencies among
 libqt4-sql and its plugins.
   * Add myself to Uploaders.
   * Add 16_always_init_qt_x11data_ptrx.diff, which ensures that X11-ptrX*
 are properly initialized when Xcursor, Xinerama, Xfixes are not available
 in default runtime configuration  (Closes: #476608).
   * Pass -xfixes -xcursor -xinerama to configure because default runtime
 configuration requires a user to have libxfixes-dev, libxcursor-dev and
 libxinerama-dev installed to enable features requires respective X
 libraries (QLibrary simply searches for lib*.so). This change in
 configuration makes 16 patch irrelevant for Debian, but I'm leaving it
 as it's still the fix for the crashes which might occur on default Qt 4.4
 configutions.
   * Optimize qmake: pass -optimized-qmake to configure.
Checksums-Sha1: 
 1b4779f4b35efab63d631e05ae227a63183804b0 2604 qt4-x11_4.4.0~rc1-5.dsc
 2afcd5def0eaa7801982f99a7f0ea7a6d648fb7b 87322 qt4-x11_4.4.0~rc1-5.diff.gz
 d3a053c603ad605e11c33f5c6c84e4aa2b8945e1 74123068 qt4-doc_4.4.0~rc1-5_all.deb
 09ac640eda86d29ade2e243e07204764d197af5b 2038466 
libqtcore4_4.4.0~rc1-5_amd64.deb
 ae67491153ed83bcc36ea7a4eb81f102c1df8c74 26964 
libqt4-core_4.4.0~rc1-5_amd64.deb
 fe30ec038c6ca87619d7c10a15648076d3d96bcd 4228106 

Accepted phenny 2~hg14-1 (source all)

2008-04-28 Thread Noah Slater
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 17:49:58 +0100
Source: phenny
Binary: phenny
Architecture: source all
Version: 2~hg14-1
Distribution: unstable
Urgency: low
Maintainer: Noah Slater [EMAIL PROTECTED]
Changed-By: Noah Slater [EMAIL PROTECTED]
Description: 
 phenny - extensible IRC bot written in Python
Closes: 478033
Changes: 
 phenny (2~hg14-1) unstable; urgency=low
 .
   * New upstream version.
   * Imported the required module in the phenny command. Closes: #478033
   * Improved debian/copyright file per the proposed standard.
Checksums-Sha1: 
 6ae4deafd6ec6059750a38689078231d8b8eb0d9 1292 phenny_2~hg14-1.dsc
 24f45456a249454dd83c4fe05fa11c12f10405ce 79397 phenny_2~hg14.orig.tar.gz
 44990fd1ca1bfec238f2f8ec1b7907b326dc1c9a 7802 phenny_2~hg14-1.diff.gz
 7d5a5a038ee232ec096c768d7188aeb65a146f8d 81074 phenny_2~hg14-1_all.deb
Checksums-Sha256: 
 64c2b8f80baf3246a17787bac91c6500d166c3da8b4e1573cee5631362470a25 1292 
phenny_2~hg14-1.dsc
 214e8d680e0fc5a80bcf270aec38ef9d2e9471c5354162dc288c13ffb38b1b35 79397 
phenny_2~hg14.orig.tar.gz
 3e0281fd83294a38b5ecf4102829d15d6fbafd32c0c74a9217daabaf33c1bf0b 7802 
phenny_2~hg14-1.diff.gz
 525d71cf7b209a8063306dd1ed8b193cfc01f20f4c632c44ce533b1926f8fec6 81074 
phenny_2~hg14-1_all.deb
Files: 
 ba8baf59fbeb81c5782735dc0d481ae4 1292 python optional phenny_2~hg14-1.dsc
 f9a34044e95df29faa327f6c27c6d25f 79397 python optional 
phenny_2~hg14.orig.tar.gz
 d8d5cbcf0f2bec71f1f67092a53520f2 7802 python optional phenny_2~hg14-1.diff.gz
 84785e6751a5929c62486de005bb2b94 81074 python optional phenny_2~hg14-1_all.deb

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

iD8DBQFIFgsXB01zfu119ZkRAuseAJ93qySOWaM4A2zODitTYAMuc3WHRQCeIPsz
PyMHndI9CUfAvBTLLd28oh8=
=wMHT
-END PGP SIGNATURE-


Accepted:
phenny_2~hg14-1.diff.gz
  to pool/main/p/phenny/phenny_2~hg14-1.diff.gz
phenny_2~hg14-1.dsc
  to pool/main/p/phenny/phenny_2~hg14-1.dsc
phenny_2~hg14-1_all.deb
  to pool/main/p/phenny/phenny_2~hg14-1_all.deb
phenny_2~hg14.orig.tar.gz
  to pool/main/p/phenny/phenny_2~hg14.orig.tar.gz


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



Accepted git-buildpackage 0.4.26 (source all)

2008-04-28 Thread Guido Guenther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 16:36:44 +0200
Source: git-buildpackage
Binary: git-buildpackage
Architecture: source all
Version: 0.4.26
Distribution: unstable
Urgency: low
Maintainer: Guido Guenther [EMAIL PROTECTED]
Changed-By: Guido Guenther [EMAIL PROTECTED]
Description: 
 git-buildpackage - Suite to help with Debian packages in Git repositories
Closes: 466900 471568 477959
Changes: 
 git-buildpackage (0.4.26) unstable; urgency=low
 .
   * git-export=INDEX exports the index into git-export-dir
 (Closes: #471568)
   * make ignore-new a config file option  (Closes: #466900)
   * build-depend on python-dateutil  (Closes: #477959)
   * git-dch:
   * use --no-auto-nmu
   * error handling fixes
   * depend on devscripts that has dch --no-auto-nmu
   * gbp/config.py: make boolean options parsing more robust
   * add a link to the online version of the manual
Checksums-Sha1: 
 2a8c45d7ec9405b3f43af49c5047d8411491a449 971 git-buildpackage_0.4.26.dsc
 1ec24feba82ab0d61bc8e29c33142aed8f6e81dd 38983 git-buildpackage_0.4.26.tar.gz
 a14f3fc190dbe088347076fe3721740322f7c750 52472 git-buildpackage_0.4.26_all.deb
Checksums-Sha256: 
 3353235fb2350704be3411d0df80fcf40dbbe3df72d663ef619e2a1a7555e8b8 971 
git-buildpackage_0.4.26.dsc
 31909a3d97f5e060166a21fb11e0aff81a814ce76b2c349e88c5ee0c514fc1b6 38983 
git-buildpackage_0.4.26.tar.gz
 e48aeb364f46af0cad96607d1efbe504ad9979f78c3e8cd453b80d3369550232 52472 
git-buildpackage_0.4.26_all.deb
Files: 
 5e0eac0747f10eea04376c65289ea931 971 devel optional git-buildpackage_0.4.26.dsc
 db29c22868b4bc7ecef8b288b47214c4 38983 devel optional 
git-buildpackage_0.4.26.tar.gz
 6557d322076e2bd07126f502f892b5fa 52472 devel optional 
git-buildpackage_0.4.26_all.deb

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

iD8DBQFIFgLMn88szT8+ZCYRAuqPAJ4mB3I9ZHBvLYPC6bHLCO4QFX3WSQCeOC2a
OU065Niw7YbJVijuEQATQb8=
=atCh
-END PGP SIGNATURE-


Accepted:
git-buildpackage_0.4.26.dsc
  to pool/main/g/git-buildpackage/git-buildpackage_0.4.26.dsc
git-buildpackage_0.4.26.tar.gz
  to pool/main/g/git-buildpackage/git-buildpackage_0.4.26.tar.gz
git-buildpackage_0.4.26_all.deb
  to pool/main/g/git-buildpackage/git-buildpackage_0.4.26_all.deb


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



Accepted e16 0.16.8.12-1 (source all amd64)

2008-04-28 Thread Laurence J. Lane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 14:05:18 -0400
Source: e16
Binary: e16 e16-data
Architecture: source amd64 all
Version: 0.16.8.12-1
Distribution: unstable
Urgency: low
Maintainer: Laurence J. Lane [EMAIL PROTECTED]
Changed-By: Laurence J. Lane [EMAIL PROTECTED]
Description: 
 e16- the Enlightenment Window Manager DR16
 e16-data   - e16 window manager support files
Closes: 456893 461264 469192 471464
Changes: 
 e16 (0.16.8.12-1) unstable; urgency=low
 .
   * new upstream version reported by Jan Luebbe. Thanks. Closes: #469192
   * added versioned enlightenment conflicts. Reported by Pavel Reznicek.
 Thanks. Closes: #456893
   * added version to libimlib2 dependency. Reported by Oohara Yuuma.
 Thanks. Closes: #471464
   * removed ttf-bitstream-vera dependency. Reported by Daniel Baumann.
 Thanks. Closes: #461264
   * returned to pristine upstream source since ttf-bitstream-vera has
 been vanquished and upstream removed vixar.ttf. Rejoice.
   * Moritz Muehlenhoff NMU'd to deprecate Freetype 1 dependency. Thanks.
   * removed quilt and cdbs, added git and debhelper 7
Checksums-Sha1: 
 414523ef9310ff47cfd92e768dd20a7be70547cd 1405 e16_0.16.8.12-1.dsc
 f2792b60a254405b1352ce965dc2dc233a1d619f 1951996 e16_0.16.8.12.orig.tar.gz
 7ff512102d41393597cf2dd2f60bec775f2900ad 9421 e16_0.16.8.12-1.diff.gz
 6d1c316cbcf25bc09fda89ff6853814e2cb348e7 453858 e16_0.16.8.12-1_amd64.deb
 14040831209abb26ec5258a4cfe4747f0ca7fe1a 665802 e16-data_0.16.8.12-1_all.deb
Checksums-Sha256: 
 89cac034490c75f7e95ec33f2f73cbfa4a5b71e99f65b33371a950f9eac5d626 1405 
e16_0.16.8.12-1.dsc
 256236ad591e39f6e0d7d57ff26fc51d09166f204b1dec4a7ed6851b03bec391 1951996 
e16_0.16.8.12.orig.tar.gz
 b836a250eef9bbc3b8121288dee417eec66e8f4b669d5d06da7a2878b5ceb195 9421 
e16_0.16.8.12-1.diff.gz
 6727f80001482f3229c92eee85ac00b37ac8eac3f0e9d22822bf78480f469a7e 453858 
e16_0.16.8.12-1_amd64.deb
 2d8b79a07c52ebeecbba491cddb1548677cc81f42f000b2d533166090a5e886f 665802 
e16-data_0.16.8.12-1_all.deb
Files: 
 6c488ed7836b6f2c6ef34bc0684c9ec1 1405 x11 optional e16_0.16.8.12-1.dsc
 86e2e83bb77f3879b2bad4ff23d5d11d 1951996 x11 optional e16_0.16.8.12.orig.tar.gz
 145f487e2c226cab518d93323a7bb99e 9421 x11 optional e16_0.16.8.12-1.diff.gz
 681ffdc2c45f62a6fc49c00ac50bd860 453858 x11 optional e16_0.16.8.12-1_amd64.deb
 ca402e457eb62628e6a1e6652f9b62c5 665802 x11 optional 
e16-data_0.16.8.12-1_all.deb

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

iQCVAwUBSBYX05HHilxwLR3FAQI3MQP/cUs5KBaBjdnDMp+o5TaZJpEBME/tIOJH
LtxtfUiGftfkJq74qYzRYkofQnq2Vg14l6iAmEnJKF9iQRTnCb7Oucyyb9qNaudA
5EXJEgst3yp5B1ct+nYD+Pmk0F1lbm7Dcx6i9izCCV79qA305xbnS3DG+Waeif9D
reijLiUjGjE=
=qUji
-END PGP SIGNATURE-


Accepted:
e16-data_0.16.8.12-1_all.deb
  to pool/main/e/e16/e16-data_0.16.8.12-1_all.deb
e16_0.16.8.12-1.diff.gz
  to pool/main/e/e16/e16_0.16.8.12-1.diff.gz
e16_0.16.8.12-1.dsc
  to pool/main/e/e16/e16_0.16.8.12-1.dsc
e16_0.16.8.12-1_amd64.deb
  to pool/main/e/e16/e16_0.16.8.12-1_amd64.deb
e16_0.16.8.12.orig.tar.gz
  to pool/main/e/e16/e16_0.16.8.12.orig.tar.gz


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



Accepted wget-el 0.5.0-5 (source all)

2008-04-28 Thread Josue Abarca
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Apr 2008 00:16:53 -0600
Source: wget-el
Binary: wget-el
Architecture: source all
Version: 0.5.0-5
Distribution: unstable
Urgency: low
Maintainer: Josue Abarca [EMAIL PROTECTED]
Changed-By: Josue Abarca [EMAIL PROTECTED]
Description: 
 wget-el- an interface for wget on Emacsen
Closes: 435372 450316
Changes: 
 wget-el (0.5.0-5) unstable; urgency=low
 .
   * debian/watch change to version 3, new sintaxys
 Thanks to Raphael Geissert [EMAIL PROTECTED] (closes: Bug#450316)
   * New Maintainer
 Thanks to Akira Tagoh for his previus work (closes: Bug#435372)
   * move debhelper compat level to 6
   * debian/copyright  file format changed to be machine-interpretable
   * debian/rules:
 - used dh_install instead of manually installing files
 - removed unused: dh_installexamples, dh_installman, dh_link,
   dh_strip and dh_shlibdeps.
   * debian/control:
 - updated debhelper dependency
 - removed shlibs:Depends
Checksums-Sha1: 
 e4788d9bfb4152b7faf3bd107be3d1ae4b42db0d 997 wget-el_0.5.0-5.dsc
 635f6b53e105ade6f9614a87b868a35293fa8b5d 3093 wget-el_0.5.0-5.diff.gz
 fc3bf474fbffcc59616ce377132ff39f52f8c09c 37226 wget-el_0.5.0-5_all.deb
Checksums-Sha256: 
 9f83ddd3f1d03df5940edc146b1fe36063450723f4c5a0af79437f2443fcf721 997 
wget-el_0.5.0-5.dsc
 bc9363639943f013127fd4e3ce9c5afd674143f55d3d26e64392bac3b3094fd0 3093 
wget-el_0.5.0-5.diff.gz
 860a88aca804a9c0eacacfb25a47229d834ae02af8abb1408128aebcff6ce8d0 37226 
wget-el_0.5.0-5_all.deb
Files: 
 4a8a57efdb7cd182d8983a5ad20da189 997 web optional wget-el_0.5.0-5.dsc
 d725c7ef1975a2f69d132bc09a2f00be 3093 web optional wget-el_0.5.0-5.diff.gz
 cbb18c5ab1f45d33fa8acad8f8c2a128 37226 web optional wget-el_0.5.0-5_all.deb

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

iD8DBQFIFhjMKFvXofIqeU4RAtPaAJ9p5UbEGciSHNop0O9SJWgqp4dlOwCgvewP
3S/ssfe6K/UgInezfG4QiKA=
=y2ON
-END PGP SIGNATURE-


Accepted:
wget-el_0.5.0-5.diff.gz
  to pool/main/w/wget-el/wget-el_0.5.0-5.diff.gz
wget-el_0.5.0-5.dsc
  to pool/main/w/wget-el/wget-el_0.5.0-5.dsc
wget-el_0.5.0-5_all.deb
  to pool/main/w/wget-el/wget-el_0.5.0-5_all.deb


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



Accepted smokeping 2.3.6-1 (source all)

2008-04-28 Thread Niko Tyni
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Apr 2008 21:49:28 +0300
Source: smokeping
Binary: smokeping
Architecture: source all
Version: 2.3.6-1
Distribution: unstable
Urgency: low
Maintainer: Jose Carlos Garcia Sogo [EMAIL PROTECTED]
Changed-By: Niko Tyni [EMAIL PROTECTED]
Description: 
 smokeping  - latency logging and graphing system
Closes: 476404 478241
Changes: 
 smokeping (2.3.6-1) unstable; urgency=low
 .
   * New upstream release.
 + honours the 'linkstyle' variable when zooming. (Closes: #476404)
   * Wait until the daemon has exited when stopping it with the init.d script.
 This should fix a race condition that made restarts fail sporadically.
 (Closes: #478241)
Checksums-Sha1: 
 356cca6e5049bcd997c8648eadfbcca9b4948432 1113 smokeping_2.3.6-1.dsc
 35a9072404d874898e6cd0c89ef438be21bc5279 580785 smokeping_2.3.6.orig.tar.gz
 eec25ed03398e318a877896d65856401893c2458 20483 smokeping_2.3.6-1.diff.gz
 fd4f93be3070f5dee7db89f68a2feaceed2915e5 687626 smokeping_2.3.6-1_all.deb
Checksums-Sha256: 
 afe29af8ce446dc28a248fcc0faecace9d40eef795afdf3c66fb185c6373e13c 1113 
smokeping_2.3.6-1.dsc
 20e75da551b9a1f8b2957e8c4ff7f273fcf765eb39fbccafd6e74a7c6cb556b5 580785 
smokeping_2.3.6.orig.tar.gz
 1a525e43e7c137dd68673b9582121a3a91cdea5601a37d6add5ac3906ed43ba1 20483 
smokeping_2.3.6-1.diff.gz
 b912ffd6082167e37a952d94288df77100e43e43ad82355cf8a2215b424f7277 687626 
smokeping_2.3.6-1_all.deb
Files: 
 d25539d943a207fe8006126fc9de3cf5 1113 net extra smokeping_2.3.6-1.dsc
 06d5ed4ed693a17960dfa3361443bf72 580785 net extra smokeping_2.3.6.orig.tar.gz
 9e72a9085e185c29b518a2d8964d6aff 20483 net extra smokeping_2.3.6-1.diff.gz
 c019b92d7cd4d3a7e50aa516841c5c64 687626 net extra smokeping_2.3.6-1_all.deb

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

iD8DBQFIFh3YiyizGWoHLTkRAos+AJ9p2w+LlpQJmZjvCwfdodynllDt6gCeKdx6
FwqyV8puh9fuAButwhfpROA=
=wbwd
-END PGP SIGNATURE-


Accepted:
smokeping_2.3.6-1.diff.gz
  to pool/main/s/smokeping/smokeping_2.3.6-1.diff.gz
smokeping_2.3.6-1.dsc
  to pool/main/s/smokeping/smokeping_2.3.6-1.dsc
smokeping_2.3.6-1_all.deb
  to pool/main/s/smokeping/smokeping_2.3.6-1_all.deb
smokeping_2.3.6.orig.tar.gz
  to pool/main/s/smokeping/smokeping_2.3.6.orig.tar.gz


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



Accepted smplayer 0.6.0~rc4-1 (source all i386)

2008-04-28 Thread Matvey Kozhev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 16 Apr 2008 15:11:15 +0700
Source: smplayer
Binary: smplayer smplayer-translations
Architecture: source all i386
Version: 0.6.0~rc4-1
Distribution: unstable
Urgency: low
Maintainer: [EMAIL PROTECTED]
Changed-By: Matvey Kozhev [EMAIL PROTECTED]
Description: 
 smplayer   - complete front-end for MPlayer
 smplayer-translations - complete front-end for MPlayer - translation files
Changes: 
 smplayer (0.6.0~rc4-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 dfc44c8cc6f1253cc2ce2c77897c19da98dad326 1060 smplayer_0.6.0~rc4-1.dsc
 2d1d4db18540edefec485b5c0bc9cfa352487a00 1533907 smplayer_0.6.0~rc4.orig.tar.gz
 798b8023bcf3e90869711b2213b39df31d3450e7 6502 smplayer_0.6.0~rc4-1.diff.gz
 975656544254fcc90b3a5974a3815bdc59530f1e 953122 
smplayer-translations_0.6.0~rc4-1_all.deb
 739ad9df94954f0e9f5da0ba00f98c574cb63df0 844908 smplayer_0.6.0~rc4-1_i386.deb
Checksums-Sha256: 
 a0d0be7b381ccf8cc2c265dd0d525fa9f3e3784b7ad7d91556022c1902ee5ed8 1060 
smplayer_0.6.0~rc4-1.dsc
 54f8cb1f497cd7773a07f13694bb7a4ff29d121f6f7c8e07ebf219cc20ac3828 1533907 
smplayer_0.6.0~rc4.orig.tar.gz
 0b2e0dd80093d05916288875844767288269bdf8b7bb2c4da0506720dd39ca44 6502 
smplayer_0.6.0~rc4-1.diff.gz
 6ee940171afbef9e120df3c3d31f752e53ecf9476a3d1a49a547e34cffaf0ae8 953122 
smplayer-translations_0.6.0~rc4-1_all.deb
 243bc1560129519da153df9cbaccca0e699a7ddf1507831aa0daa51b062de98e 844908 
smplayer_0.6.0~rc4-1_i386.deb
Files: 
 30058c5f1a47660113583db764e953e6 1060 graphics optional 
smplayer_0.6.0~rc4-1.dsc
 701e977ad7d2197e4bbf121e30f7478f 1533907 graphics optional 
smplayer_0.6.0~rc4.orig.tar.gz
 ee643691234ded9d2deeae0e4c1ad6b3 6502 graphics optional 
smplayer_0.6.0~rc4-1.diff.gz
 688b8a4d2c81ca61298782f8bb39f623 953122 graphics optional 
smplayer-translations_0.6.0~rc4-1_all.deb
 b53313d78cc3f80d1301576c81815daf 844908 graphics optional 
smplayer_0.6.0~rc4-1_i386.deb

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

iD8DBQFIFhtBB9xWPR9BuQcRArFuAJ9Cgc8tPIykn0juMirfcjs40oSdDwCcDS7A
X0r5jHoR8jnnoYvj8JX8aIM=
=npjO
-END PGP SIGNATURE-


Accepted:
smplayer-translations_0.6.0~rc4-1_all.deb
  to pool/main/s/smplayer/smplayer-translations_0.6.0~rc4-1_all.deb
smplayer_0.6.0~rc4-1.diff.gz
  to pool/main/s/smplayer/smplayer_0.6.0~rc4-1.diff.gz
smplayer_0.6.0~rc4-1.dsc
  to pool/main/s/smplayer/smplayer_0.6.0~rc4-1.dsc
smplayer_0.6.0~rc4-1_i386.deb
  to pool/main/s/smplayer/smplayer_0.6.0~rc4-1_i386.deb
smplayer_0.6.0~rc4.orig.tar.gz
  to pool/main/s/smplayer/smplayer_0.6.0~rc4.orig.tar.gz


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



Accepted sfc 2.2.0136-1 (source all)

2008-04-28 Thread Ben Hutchings
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Apr 2008 18:29:10 +0100
Source: sfc
Binary: sfc-source
Architecture: source all
Version: 2.2.0136-1
Distribution: unstable
Urgency: low
Maintainer: Ben Hutchings [EMAIL PROTECTED]
Changed-By: Ben Hutchings [EMAIL PROTECTED]
Description: 
 sfc-source - source for sfc network driver
Changes: 
 sfc (2.2.0136-1) unstable; urgency=low
 .
   * New upstream release
   * Added default config.h to keep sfc-source working in
 linux-modules-extra-2.6
Checksums-Sha1: 
 e601d634267dce71b671eadeea361767ed21b8b8 945 sfc_2.2.0136-1.dsc
 7028e3a4f5f43ba55679c5b5eca0ae39be63a521 222165 sfc_2.2.0136.orig.tar.gz
 c97297a3bff832496d5d3c7c6191287c3cc8 3582 sfc_2.2.0136-1.diff.gz
 0f430b030c1b847b3f7945ce3ef49f2d60ab508a 165490 sfc-source_2.2.0136-1_all.deb
Checksums-Sha256: 
 99b6cce45a726ccdf12a8024cd1d0fc2f899d3f211cff7a241d665376585d497 945 
sfc_2.2.0136-1.dsc
 a90249ff96cce8ed701f1f881f9c9c0f45ee8a11a0367ed9598448689e6c4c2c 222165 
sfc_2.2.0136.orig.tar.gz
 b5873852e8b09da5eec03bb02f08f26b83812cc66b8f5998735effbc53154a83 3582 
sfc_2.2.0136-1.diff.gz
 7f7ec4e47b1f2685582a5aa4b78d24908aa00bfd573dc4543ac071716ca727bf 165490 
sfc-source_2.2.0136-1_all.deb
Files: 
 af5bd46e131eca413c5cdbafc989a6c2 945 net extra sfc_2.2.0136-1.dsc
 d589e5503c913482e787e4aad92e0828 222165 net extra sfc_2.2.0136.orig.tar.gz
 cd66a730d0a857f2df88426532bdc856 3582 net extra sfc_2.2.0136-1.diff.gz
 0f8d447f14f74768f13157c4a9a7eed9 165490 net extra sfc-source_2.2.0136-1_all.deb

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

iD8DBQFIFOfW79ZNCRIGYgcRAr+uAJ9Ulg5Ltaj06DZVTLDbwK1qe2zGQgCdG9uO
eRn4CSik4uqE8TZjeJ9DmYM=
=y9wi
-END PGP SIGNATURE-


Accepted:
sfc-source_2.2.0136-1_all.deb
  to pool/main/s/sfc/sfc-source_2.2.0136-1_all.deb
sfc_2.2.0136-1.diff.gz
  to pool/main/s/sfc/sfc_2.2.0136-1.diff.gz
sfc_2.2.0136-1.dsc
  to pool/main/s/sfc/sfc_2.2.0136-1.dsc
sfc_2.2.0136.orig.tar.gz
  to pool/main/s/sfc/sfc_2.2.0136.orig.tar.gz


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



  1   2   >