Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-04 Thread Manoj Srivastava
On Mon, May 04 2009, Guillem Jover wrote:

 I'll try to summarize the discussion (althought it might be biased to
 my preferred option) and some facts, so that we can get to a conclusion:

+1

I agree with almost everything said in this email.

manoj
-- 
What use is your matted hair, you fool? What use is your antelope skin?
You are tangled inside, and you are just making the outside pretty. 394
Manoj Srivastava sriva...@debian.org http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: make-kpkg and 2.6.29.2 vanilla sources

2009-05-04 Thread Raffaele Morelli
Thank you all, I should read changelogs..

regards
-r


Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-04 Thread Andrew McMillan
On Mon, 2009-05-04 at 07:35 +0200, Guillem Jover wrote:
 
 On Fri, 2009-03-13 at 21:04:30 +0100, Raphael Hertzog wrote:
  we have an unfortunate situation where the practice in dpkg-buildpackage
  and the policy do not match fully.

...


 So I think for next dpkg upload we should make dpkg-buildpackage stop
 setting any flags by default, and switch the setting to go through the
 command line arguments to override the package options instead of the
 environment, so this would become the user override part. The
 DEB_VENDOR env var should not be set either, and we should work on
 getting a dpkg-vendor instead, before people try to start using the
 variable.
 
 
 Then if we get consensus that this is the righ path, agree on the
 makefile names (as once decided it will be a pain to change later on
 in all packages), we'll need to ship the distro defaults file
 somewhere and start fixing packages to include that makefile. The
 files could look something like:
 
 ,-- /usr/share/dpkg/build-options.mk
 # distro defaults
 FOO := distro
 
 -include /etc/dpkg/build-options.mk
 `--
 
 ,-- /etc/dpkg/build-options.mk
 # site overrides
 #FOO := site
 `--
 
 ,-- debian/rules
 -include /usr/share/dpkg/build-options.mk
 
 # package overrides
 FOO := pkg
 `--
 
 ,-- command line
 # user overrides
 $ make -f debian/rules FOO=cmd


That was really a very well-spent two months!

+1 from me :-)

Regards,
Andrew.


andrew (AT) morphoss (DOT) com+64(272)DEBIAN
You will be advanced socially, without any special effort on your part.




-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526936: ITP: formalchemy -- auto-generation and customizable form fields from SQLAlchemy mapped classes

2009-05-04 Thread Arnaud Fontaine
Package: wnpp
Owner: Arnaud Fontaine ar...@debian.org
Severity: wishlist

* Package name: formalchemy
  Version : 1.2
  Upstream Author : Alexandre Conrad aconrad(dot.)tlv(at@)magic(dot.)fr
* URL : http://formalchemy.googlecode.com
* License : MIT
  Programming Lang: Python
  Description : auto-generation and customizable form fields from 
SQLAlchemy mapped classes

FormAlchemy  greatly speeds development  with SQLAlchemy  mapped classes
(models)  in a  HTML forms  environment.  It also  provides support  for
CouchDB and a Pylons administration interface.

FormAlchemy eliminates  boilerplate by autogenerating  HTML input fields
From a given model. FormAlchemy will try to figure out what kind of HTML
code  should be  returned by  introspecting the  model's  properties and
generate  ready-to-use   HTML  code   that  will  fit   the  developer's
application.

Of course,  FormAlchemy can't figure out everything,  i.e, the developer
might want  to display only  a few columns  from the given  model. Thus,
FormAlchemy is also highly customizable.


This package will be packaged as part of the python-modules debian team.

Regards,
Arnaud Fontaine


pgpETFQ2pIg6k.pgp
Description: PGP signature


Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-04 Thread Bernd Zeimetz
Guillem Jover wrote:
 [ BCCed debian-dpkg for the proposed dpkg changes. ]

 * Lots of packages (roughly around 4k) do not honour env vars for build
   flags, as they follow the examples from policy (or dh-make and similar)
   and thus are setting them unconditionally, which env vars do not
   override.

Not to forget these packages where flags in the environment made the package
FTBFS as they were overriding flags set by makefiles or other build tools by
some default values which did not include all necessary options.


 * We can set the architecture and default flags (from policy) on the
   makefile to be included, and packagers will be able to do the change
   and fix any possible problems (progressive opt-in), but once it's
   included by all packages, then we can do system-wide default changes
   in the same we change toolchains (mass rebuild, bug filing, change
   when bug count goes down). The makefile has the advantage that the
   distro default can be temporarily changed for the mass build w/o
   needing to totally override the build flags.

You need to take care here to use names which will not clash with variable names
upstream may be using, otherwise you'd add new problems while adding new vars.

 
 
 So I think for next dpkg upload we should make dpkg-buildpackage stop
 setting any flags by default, and switch the setting to go through the

Please do so!


+1 from me, too.
Thanks for the good work!


Bernd

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-04 Thread Raphael Hertzog
On Mon, 04 May 2009, Guillem Jover wrote:
 env var should not be set either, and we should work on getting a
 dpkg-vendor instead, before people try to start using the variable.

FYI, I already started this.

 start fixing packages to include that makefile. The files could look
 something like:
 
 ,-- /usr/share/dpkg/build-options.mk
 # distro defaults
 FOO := distro
 
 -include /etc/dpkg/build-options.mk
 `--

Note that recent changes have aimed at avoiding fork of dpkg by
integrating upstream some distro-specific logic. We should do the same for
this file then... ie accept that external vendors provide us their
defaults and have the dpkg source package pick the right one based on the
current vendor.

 ,-- debian/rules
 -include /usr/share/dpkg/build-options.mk
 
 # package overrides
 FOO := pkg
 `--

Probably without the leading -, otherwise we have a risk to not have any
sane default at all. And we should add a build-dependency instead.

Or maybe that choice can be left to the maintainer.

Cheers,
-- 
Raphaël Hertzog

Contribuez à Debian et gagnez un cahier de l'admin Debian Lenny :
http://www.ouaza.com/wp/2009/03/02/contribuer-a-debian-gagner-un-livre/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: dpkg-shlibdeps question

2009-05-04 Thread Raphael Hertzog
On Fri, 01 May 2009, Jiří Paleček wrote:
 should
 almost never happen (except diversion) and the result when it happens is

 Should I read it as the only legal situation where it returns multiple  
 packages are diversions (the rest are errors) or the majority of  
 situations ... are diversions, ie. does it make sense to return multiple 
 packages in the absence of diversions?

dpkg -S can return multiple packages for directories too since they can be
shared by many packages but in the case of real files AFAIK it can only
happen with diversions.

 Yes, but I think this is unattainable. Especially when doing transitions, 
 you're not likely to have both packages in sync.

I don't see why it would be so difficult. Diverting a file means that you
have a drop-in replacement and I don't see why you couldn't provide
dependencies that are compatible (even if not exactly the same).

 I just wanted to know if it would be OK for dpkg-shlibdeps to use only 
 one package for a library (eg. in case of diversions, use dpkg-divert to 
 find the right one) and fail in case of ambiguity.

What is the right one, the non-diverted one ?

I think it would be ok for dpkg-shlibdeps to choose the right package
based on some clearly-documented criteria. I don't think that failing is
a good idea.

Cheers,
-- 
Raphaël Hertzog

Contribuez à Debian et gagnez un cahier de l'admin Debian Lenny :
http://www.ouaza.com/wp/2009/03/02/contribuer-a-debian-gagner-un-livre/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: ITP: developers-reference-es -- Spanish translation of the Debian Developers' Reference

2009-05-04 Thread Raphael Hertzog
On Fri, 01 May 2009, Joerg Jaspert wrote:
 Please let one central developers-reference package built the various
 languages. Which means this should be just another binary package of
 developers-reference and not something own.

That's already the case. Leandro, if you want to contribute a spanish
translation please contribute by way of patches against the SVN repository
and you will quickly be granted write access to the repository.

svn://svn.debian.org/ddp/manuals/trunk/developers-reference

Look at the french translation to see how you can add a spanish one.

Cheers,
-- 
Raphaël Hertzog

Contribuez à Debian et gagnez un cahier de l'admin Debian Lenny :
http://www.ouaza.com/wp/2009/03/02/contribuer-a-debian-gagner-un-livre/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#508644: stable-p-u: mdadm 2.6.7.2-2

2009-05-04 Thread Andreas Metzler
On 2009-05-04 Josselin Mouette j...@debian.org wrote:
[...]
 The appropriate change would be to create a default-mta virtual package
 that is always provided by only one MTA at a time, so you might want to
 work on this solution instead of breaking important packages.

FWIW as previously discussed on debian-devel starting with the lastest
upload (4.69-10) exim4-daemon-light provides default-mta.

This is not very useful until this version has reached squeeze.
cu andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-04 Thread Manoj Srivastava
On Mon, May 04 2009, Raphael Hertzog wrote:

 On Mon, 04 May 2009, Guillem Jover wrote:

 ,-- debian/rules
 -include /usr/share/dpkg/build-options.mk
 
 # package overrides
 FOO := pkg
 `--

 Probably without the leading -, otherwise we have a risk to not have
 any sane default at all.

I disagree. Without the leading -, it would make it impossible
 to build on a machine with older dpkg -- and why be unnecessarily
 unfriendly to backporters?

If you want sane defaults, by all means provide sane defaults
 yourself. 

 And we should add a build-dependency instead.

And restrict the machines where the package can be built? I
 think not.

 Or maybe that choice can be left to the maintainer.

This is better than forcing people into restricting the
 platforms where their sources can be built, but still a cop
 out. Guillem's proposal is technically better.

manoj

-- 
You k'n hide de fier, but w'at you gwine do wid de smoke? Joel Chandler
Harris, proverbs of Uncle Remus
Manoj Srivastava sriva...@debian.org http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Packaging ltp selinux tests

2009-05-04 Thread Riku Voipio
On Mon, Apr 06, 2009 at 10:13:39PM -, Jiri Palecek wrote:
 I'd like to package the selinux tests from the ltp test suite. The tests  
 need a special selinux policy to be loaded and some files to be relabeled.  
 I haven't found any standard way of packaging this, so I made an  
 experimental package (see [1]; it sort of works - not completely, like 10 
 tests out of 30, but that's not an issue now) and I would like to hear your 
 opinion on these issues:

 1. The package loads the policy on postinst configure with semodule -i, is 
 that right? (And did I implement it properly in the scripts?) There were some 
 avc message during package install (semodule was denied access to a terminal 
 with type apt_t), can this be solved?

As long as it fails gracefully is semodule binary is missing or selinux isn't 
enabled.

 2. The relabeling has to be done manually with fixfiles relabel; is there a 
 way to do it  (and should it be done) automatically?

 3. The runtime packages depend on selinux-policy-default; should it 
 (alternatively) depend on the other policies too? Would this need a separate 
 policy package?

 4. Should the policy package be in /usr/share?

I didn't hear any comments for one month on debian-devel, perhaps our selinux 
masters
Russell or Manoj have a word to say? If there still isn't any opinion, I will 
work
on sponsoring the ltp package with selinux tests on weekend.

Cheers,
Riku

 [1]: http://mentors.debian.net/debian/pool/main/l/ltp/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



mandate build-arch (was Re: Environment variables, debian/rules and dpkg-buildpackage)

2009-05-04 Thread Zack Weinberg
If we're doing something that ultimately requires modification of
every debian/rules file *anyway*, can we please make
build-arch/build-indep mandatory targets, so that dpkg-buildpackage -B
can *finally* (eight years later!) be changed to call build-arch?

zw
not subscribed to d-devel; please cc:


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-04 Thread Peter Eisentraut
On Monday 04 May 2009 08:35:18 Guillem Jover wrote:

I like this proposal.  A small nit:

 ,-- /usr/share/dpkg/build-options.mk
 # distro defaults
 FOO := distro

Please be sure to use

FOO = bar

instead of :=, unless you have determined that you really wanted :=.  In 
most cases it won't make a difference, but in some it does, and then it would 
behave contrary to how make usually treats variables.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: ignoring the CoC in regards to cc:s (Re: Can we ship sources of a PDF file in the Debian diff?

2009-05-04 Thread Darren Salt
I demand that Noah Slater may or may not have written...

[snip; in reply to Brett Parker]
 Considering that we're discussing on a mailing list, it's reasonable to
 assume that the common case is replying to the list. Why optimise for, what
 is surely by definition, the uncommon case?

Why *break* the uncommon case by adding/replacing (abusing) Reply-To?

Anyway, reply-to-list is a followup function (or, at least, it is such in all
news/mail software which I've used with mailing lists).

[snip]
-- 
| Darren Salt| linux or ds at  | nr. Ashington, | Toon
| RISC OS, Linux | youmustbejoking,demon,co,uk | Northumberland | Army
| + RIPA NOTICE: NO CONSENT GIVEN FOR INTERCEPTION OF MESSAGE TRANSMISSION

He taught us drawing, stretching, and fainting in coils.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#526993: ITP: claws-mail-debian-spam-plugin -- Claws-Mail plugin to report spam in Debian mailing lists

2009-05-04 Thread David Paleino
Package: wnpp
Severity: wishlist
Owner: David Paleino d.pale...@gmail.com

* Package name: claws-mail-debian-spam-plugin
  Version : 0.0.1
  Upstream Author : David Paleino d.pale...@gmail.com
* URL : to be defined yet :)
* License : GPL-3+
  Programming Lang: C
  Description : Claws-Mail plugin to report spam in Debian mailing lists

  This plugin allows you to report spam in Debian mailing lists, through
  a common API described in the wiki:
http://wiki.debian.org/Teams/ListMaster/ListArchiveSpam
  (see the Methods to Nominate Spam for the Review-Process section)

Kindly,
David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-04 Thread Manoj Srivastava
On Mon, May 04 2009, Peter Eisentraut wrote:

 On Monday 04 May 2009 08:35:18 Guillem Jover wrote:

 I like this proposal.  A small nit:

 ,-- /usr/share/dpkg/build-options.mk
 # distro defaults
 FOO := distro

 Please be sure to use

 FOO = bar

 instead of :=, unless you have determined that you really wanted :=.  In 
 most cases it won't make a difference, but in some it does, and then it would 
 behave contrary to how make usually treats variables.

Why, in your opinion, would we want _not_ to use :=? What does
 delayed evaluation buy us?

manoj
 puzzled
-- 
When you live in a sick society, just about everything you do is wrong.
Manoj Srivastava sriva...@debian.org http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Re: Bug#526993: ITP: claws-mail-debian-spam-plugin -- Claws-Mail plugin to report spam in Debian mailing lists

2009-05-04 Thread David Paleino
On Mon, 4 May 2009 22:45:45 +0200, David Paleino wrote:

 Package: wnpp
 Severity: wishlist
 Owner: David Paleino d.pale...@gmail.com
 
 * Package name: claws-mail-debian-spam-plugin
   Version : 0.0.1
   Upstream Author : David Paleino d.pale...@gmail.com
 * URL : to be defined yet :)

Ok, my ITPs are being silly in this period, gar!

I mean, the homepage is to be defined yet, but the source code is already
available:

  
http://alioth.debian.org/~hanska-guest/claws-mail-debian-spam-plugin_0.0.1.orig.tar.gz

I've also updated the proper page on the wiki:

  http://wiki.debian.org/Teams/ListMaster/ListArchiveSpam/MUAPlugins

David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-04 Thread Peter Eisentraut
On Monday 04 May 2009 23:53:15 Manoj Srivastava wrote:
 On Mon, May 04 2009, Peter Eisentraut wrote:
  Please be sure to use
 
  FOO = bar
 
  instead of :=, unless you have determined that you really wanted :=. 
  In most cases it won't make a difference, but in some it does, and then
  it would behave contrary to how make usually treats variables.

 Why, in your opinion, would we want _not_ to use :=? What does
  delayed evaluation buy us?

That is up for debate, to some degree, I guess.  I just want to make sure that 
a conscious decision is made either way.  (In my experience, many uses of := 
are made without knowledge about what it does.)

I think delayed evaluation is sort of the default way in which make treats 
variables, and so to avoid surprises and confusion, we should go with that one 
unless there is a specific reason otherwise.

In practical terms, using delayed evaluation makes the outcome mostly 
independent of the order of the assignments.  Which might become quite 
relevant when you design an include-a-bit-here, override-a-bit-there scheme 
that is supposed to be robust against all the nonsense that 1 source 
packages might do with it afterwards.

Also note that someone who wants to be careful not to overwrite values 
supplied elsewhere might use ?=, which creates a delayed expansion type 
variable.

In any case, we should be careful to define and document it one way or the 
other.  Otherwise stuff like

CPPFLAGS += -DFOO=$(BAR)

has unclear behavior, depending on how or whether CPPFLAGS was previously set 
up.  (And note that it will change if initially you don't define CPPFLAGS at 
all and in a later version make a := definition for it -- delayed variables 
being the default.)


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#527015: ITP: libmath-random-isaac-xs-perl -- XS implementation of ISAAC (see libmath-random-isaac-perl)

2009-05-04 Thread Jonathan Yu
Package: wnpp
Severity: wishlist
Owner: Jonathan Yu jonathan.i...@gmail.com


* Package name: libmath-random-isaac-xs-perl
  Version : 1.0.3
  Upstream Author : Jonathan Yu freque...@cpan.org
* URL : CPAN
* License : Public Domain
  Programming Lang: Perl, C
  Description : XS implementation of ISAAC (see libmath-random-isaac-perl)



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#527017: ITP: libmath-random-tt800-perl -- An implementation of the TT800 PRNG algorithm

2009-05-04 Thread Jonathan Yu
Package: wnpp
Severity: wishlist
Owner: Jonathan Yu jonathan.i...@gmail.com


* Package name: libmath-random-tt800-perl
  Version : 1.01
  Upstream Author : Otmar Lendl le...@cosy.sbg.ac.at
* URL : CPAN
* License : Perl (Artistic+GPL)
  Programming Lang: Perl
  Description : An implementation of the TT800 PRNG algorithm



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org




Bug#508644: new release goal default-mta? (was: stable-p-u: mdadm 2.6.7.2-2)

2009-05-04 Thread martin f krafft
[moving debian-rele...@l.d.o to Bcc, continuing discussion in bug log]

also sprach Andreas Metzler ametz...@downhill.at.eu.org [2009.05.04.1856 
+0200]:
 FWIW as previously discussed on debian-devel starting with the
 lastest upload (4.69-10) exim4-daemon-light provides default-mta.

Excellent. If there are no objections, I'll formulate a squeeze
release goal and file the bugs.

(updated mdadm coming to s-p-u on Thursday, are there other
comments?
http://lists.debian.org/debian-release/2009/05/msg00024.html)

-- 
 .''`.   martin f. krafft madd...@d.o  Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Accepted iotop 0.3-1 (source all)

2009-05-04 Thread Paul Wise
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 14:17:06 +0800
Source: iotop
Binary: iotop
Architecture: source all
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Paul Wise p...@debian.org
Changed-By: Paul Wise p...@debian.org
Description: 
 iotop  - simple top-like I/O monitor
Closes: 521360
Changes: 
 iotop (0.3-1) unstable; urgency=low
 .
   * New upstream release
 - displays IO scheduling class and priority (Closes: #521360)
 - iotop -bo output can now be piped (LP: #337882)
 - 01_fix_nfs_crash.patch was included, drop it
   * Bump Standards-Version, no changes needed
Checksums-Sha1: 
 7a01e09385b21044ad4c52e955a7ebf65dabf7cf 988 iotop_0.3-1.dsc
 176e6a5212ddd81ce4b38c0fb0dbf22e8ae253f5 352815 iotop_0.3.orig.tar.gz
 ff62c9dbfe05449ef3867322593d210a266f8929 1818 iotop_0.3-1.diff.gz
 905658941757296819a771dc7c0c8f4fbcbc4a20 21336 iotop_0.3-1_all.deb
Checksums-Sha256: 
 36a7d1a2690c82382cd11fc20f991d4dbe5d65ec00288616d1955bbee5811d31 988 
iotop_0.3-1.dsc
 2558119eacb3f342c39afdc51bf1ec69cd450a112f77f11e9994415d726f036e 352815 
iotop_0.3.orig.tar.gz
 bbccdabaa11a88985718451fecc60bfad7e3e75b9c6a752839b8a524556b4738 1818 
iotop_0.3-1.diff.gz
 8975913e3f556438e7ba55a197101cb7fcdefd2a29f311c52a68f588029db4d3 21336 
iotop_0.3-1_all.deb
Files: 
 7e5239c3444ba85110ed5a2d6f2d6227 988 admin optional iotop_0.3-1.dsc
 af47188373ff055b6f275e950278528c 352815 admin optional iotop_0.3.orig.tar.gz
 57f44e672795f8aa13ef1d8632ee1119 1818 admin optional iotop_0.3-1.diff.gz
 635543e99ed28c65874d77490d32372c 21336 admin optional iotop_0.3-1_all.deb

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

iEYEARECAAYFAkn+i2oACgkQ5Sc9mGvjxCMiPgCghdCD9GLTZ4c+SJBe1XdzDriA
nDsAoIel/pBBW/q3645UxKWya6Oqbw4P
=dFn5
-END PGP SIGNATURE-


Accepted:
iotop_0.3-1.diff.gz
  to pool/main/i/iotop/iotop_0.3-1.diff.gz
iotop_0.3-1.dsc
  to pool/main/i/iotop/iotop_0.3-1.dsc
iotop_0.3-1_all.deb
  to pool/main/i/iotop/iotop_0.3-1_all.deb
iotop_0.3.orig.tar.gz
  to pool/main/i/iotop/iotop_0.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted clive 2.1.11-1 (source all)

2009-05-04 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 09:23:01 +0300
Source: clive
Binary: clive
Architecture: source all
Version: 2.1.11-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 clive  - Video extraction utility for YouTube, Google Video and others
Changes: 
 clive (2.1.11-1) unstable; urgency=low
 .
   [ Ryan Niebur ]
   * remove recompress.sh, uscan has a --repack option for that
   * New Upstream Version
 .
   [ Damyan Ivanov ]
   * rules: make use of $(TMP)
Checksums-Sha1: 
 ba392a3865f1970f5218cf01df37c9f8dd91e2d3 1493 clive_2.1.11-1.dsc
 c6bb585f07235ac6edc6e5aa15578fee0b404639 33480 clive_2.1.11.orig.tar.gz
 4cd31b4411044c7d52a448710df1631bf7c745fc 4672 clive_2.1.11-1.diff.gz
 e12f93bff88dafe80b16d13afeab10eb2b5ca5fa 36016 clive_2.1.11-1_all.deb
Checksums-Sha256: 
 9568b8864b6303f8152f9636ff946a0d7b5730e77fc1ffb281fba8c793899658 1493 
clive_2.1.11-1.dsc
 d7a6b9caaf4c0ac2d90d0a17c514f641bb4955c3c0aca85b0b038a0ee1423989 33480 
clive_2.1.11.orig.tar.gz
 0b09d36b4334f15b78d8241ba3669a6819f4d47335e60fa21586ff99ea7c6b73 4672 
clive_2.1.11-1.diff.gz
 ba11996a56c103a3029b36e5030fa34d825018b266dfeb56a5fd042c2691c1a4 36016 
clive_2.1.11-1_all.deb
Files: 
 9352182e21309fc2e5f6e60f0e9d299f 1493 utils optional clive_2.1.11-1.dsc
 12a50f2562a12589e2821129ba26870b 33480 utils optional clive_2.1.11.orig.tar.gz
 76cf71504d3956e7e0461c196af67de6 4672 utils optional clive_2.1.11-1.diff.gz
 f6f429155efbe2be305dc1e7967e9f97 36016 utils optional clive_2.1.11-1_all.deb

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

iEYEARECAAYFAkn+jR8ACgkQHqjlqpcl9jsuBQCggn5DrggJ1lUDvzdMuf+7apfG
k1wAn2s5Sa7tFMRwnwJqu98JPW+DPnp3
=ywoa
-END PGP SIGNATURE-


Accepted:
clive_2.1.11-1.diff.gz
  to pool/main/c/clive/clive_2.1.11-1.diff.gz
clive_2.1.11-1.dsc
  to pool/main/c/clive/clive_2.1.11-1.dsc
clive_2.1.11-1_all.deb
  to pool/main/c/clive/clive_2.1.11-1_all.deb
clive_2.1.11.orig.tar.gz
  to pool/main/c/clive/clive_2.1.11.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted firebird2.0 2.0.5.13206-0.ds2-2 (source all amd64)

2009-05-04 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 21:43:24 +0300
Source: firebird2.0
Binary: firebird2.0-super firebird2.0-classic libfbembed2 firebird2.0-common 
firebird2.0-server-common firebird2.0-dev firebird2.0-examples firebird2.0-doc
Architecture: source all amd64
Version: 2.0.5.13206-0.ds2-2
Distribution: unstable
Urgency: low
Maintainer: Debian Firebird Group pkg-firebird-gene...@lists.alioth.debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 firebird2.0-classic - Firebird Classic Server - an RDBMS based on InterBase 
6.0 code
 firebird2.0-common - common files for firebird 2.0 servers and clients
 firebird2.0-dev - Development files for Firebird - an RDBMS based on InterBase 
6.0 
 firebird2.0-doc - Documentation files for firebird database version 2.0
 firebird2.0-examples - Examples for Firebird - an RDBMS based on InterBase 6.0 
code
 firebird2.0-server-common - common files for firebird 2.0 servers
 firebird2.0-super - Firebird Super Server - an RDBMS based on InterBase 6.0 
code
 libfbembed2 - Firebird embedded client/server library
Closes: 526568
Changes: 
 firebird2.0 (2.0.5.13206-0.ds2-2) unstable; urgency=low
 .
   * add cvs_autogen.sh-autoreconf.patch, borrowing autogen.sh from
 upstream CVS this fixes build problems with newer auto*
 Closes: #526568 -- FTBFS: autoconf errors
 + add automake to B-D
 + remove --disable-rpath from configure (unsupported)
 + copy config.sub before autoconf-ing
 .
   * upload to unstable
   * Standards-Version; 3.8.1
 + functions.sh: call create_var_run_firebird before referring to /var/run
 + stop shipping /var/run/firebrd/2.0 in the package
Checksums-Sha1: 
 1a32392efce29fdfd383e4da10bdffcf5dc4fd7d 1714 
firebird2.0_2.0.5.13206-0.ds2-2.dsc
 95649862f74bb4b02c7461da3634a69bbcdef17c 115068 
firebird2.0_2.0.5.13206-0.ds2-2.diff.gz
 7cec0a33ac3164525627a9a20a5e35f91e953696 453426 
firebird2.0-dev_2.0.5.13206-0.ds2-2_all.deb
 eb95d3f02b08fb51e0eb9155066f8933a58cf795 551710 
firebird2.0-examples_2.0.5.13206-0.ds2-2_all.deb
 40ae96d7c03f33744b6115d82cd8843e6c7074ea 1320126 
firebird2.0-doc_2.0.5.13206-0.ds2-2_all.deb
 7c08407bab21b6575b68b6f5a463095907910292 2844844 
firebird2.0-super_2.0.5.13206-0.ds2-2_amd64.deb
 ce56b86d5da736d08ecd4ae3b59bbe60fb1a14a9 1754708 
firebird2.0-classic_2.0.5.13206-0.ds2-2_amd64.deb
 1ba379b7392d9750b55c412e20efdd8be0e664b3 1492844 
libfbembed2_2.0.5.13206-0.ds2-2_amd64.deb
 36ffac7da64898bb82f42af5921e12f18840f192 791068 
firebird2.0-common_2.0.5.13206-0.ds2-2_amd64.deb
 cec5511ad78551274e2168c192aab119ac70a8aa 520786 
firebird2.0-server-common_2.0.5.13206-0.ds2-2_amd64.deb
Checksums-Sha256: 
 68d545bb070dedb83073f5a12f76968e7779fd5335855c64eb8a1eca87c31c15 1714 
firebird2.0_2.0.5.13206-0.ds2-2.dsc
 9d08318282d9fb962b59da38d5a4a7754bbce95f85b357e1c148be9db1f369e2 115068 
firebird2.0_2.0.5.13206-0.ds2-2.diff.gz
 794b226c60dce5a05b7b614a2a89727537f425bd1cfcddcc3c30f7b9f97414ad 453426 
firebird2.0-dev_2.0.5.13206-0.ds2-2_all.deb
 e5ec5f38dee17089eedb469d6b6405499833b8a6028a4daf71a7d7fedd509d97 551710 
firebird2.0-examples_2.0.5.13206-0.ds2-2_all.deb
 bedfc823d5eea2a862eaf7cc36d5b56a3bb0878e23831358fa5732bbc8c2c784 1320126 
firebird2.0-doc_2.0.5.13206-0.ds2-2_all.deb
 07a816a0ebeed41a27f6c65189d7e75287599a254de4a319c0873be511628af3 2844844 
firebird2.0-super_2.0.5.13206-0.ds2-2_amd64.deb
 440b018761128e86932fa3c7b4279f211ba2233917975cd82093942323066a9a 1754708 
firebird2.0-classic_2.0.5.13206-0.ds2-2_amd64.deb
 ee6f49804d243b8191d9b9403b41954b581c6843fae3e8a1bb7b40e7a0eac14b 1492844 
libfbembed2_2.0.5.13206-0.ds2-2_amd64.deb
 99920313fa0a02e3841759f16a5674f0b61183dd7d2a9ece4218d92330768734 791068 
firebird2.0-common_2.0.5.13206-0.ds2-2_amd64.deb
 4970738a6a089783151354ebc5dc8a0036ae96a5362ab48f69d3d047e4e6f805 520786 
firebird2.0-server-common_2.0.5.13206-0.ds2-2_amd64.deb
Files: 
 fe6c53a5627ad3ecfec05c7809a368fe 1714 misc optional 
firebird2.0_2.0.5.13206-0.ds2-2.dsc
 8074f9631a7b3ffdf30419ef3eab1cb0 115068 misc optional 
firebird2.0_2.0.5.13206-0.ds2-2.diff.gz
 ca14e7933cd8c50134cad979c47022b5 453426 libdevel optional 
firebird2.0-dev_2.0.5.13206-0.ds2-2_all.deb
 facf7fc8e443557792f36af2a8e2f277 551710 doc optional 
firebird2.0-examples_2.0.5.13206-0.ds2-2_all.deb
 6ca0d649b139f3755af27ac536f4a9ee 1320126 doc optional 
firebird2.0-doc_2.0.5.13206-0.ds2-2_all.deb
 3ad81d0a64b39bd8e2be9772196b6d8f 2844844 misc optional 
firebird2.0-super_2.0.5.13206-0.ds2-2_amd64.deb
 7114cefdcef95496a6da2ef86b8afd51 1754708 misc optional 
firebird2.0-classic_2.0.5.13206-0.ds2-2_amd64.deb
 045cddd25b134e4267b1926341bc8d9c 1492844 libs optional 
libfbembed2_2.0.5.13206-0.ds2-2_amd64.deb
 19aaa6159b88fb48e9fa6f094465eb59 791068 misc optional 
firebird2.0-common_2.0.5.13206-0.ds2-2_amd64.deb
 17b40cc5c28f67b92a064dd51ddf4de7 520786 misc optional 
firebird2.0-server-common_2.0.5.13206-0.ds2-2_amd64.deb

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


Accepted pokerth 0.7-1 (source all i386)

2009-05-04 Thread Evgeni Golov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 08:08:41 +0200
Source: pokerth
Binary: pokerth pokerth-server pokerth-data
Architecture: source all i386
Version: 0.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Evgeni Golov evg...@debian.org
Description: 
 pokerth- Texas hold'em game
 pokerth-data - Texas hold'em game - common data files
 pokerth-server - Texas hold'em game - server
Changes: 
 pokerth (0.7-1) unstable; urgency=low
 .
   * New upstram release.
 + Upload to unstable again.
   * debian/patches/04_enable_beta.patch:
 + Drop the patch, it's not needed anymore.
   * debian/rules:
 + Add back the find/chmod call, as tarball has wrong permissions
   for some files again.
Checksums-Sha1: 
 0ef5d7ff6c52d6f3dc931c7742da597ef0ab87ff 1472 pokerth_0.7-1.dsc
 61b1dc1aaa6ca377c43eaf927671324f907cb334 7566119 pokerth_0.7.orig.tar.gz
 77d5acf5d12376d5f05ec56cf0e21c338ab15d4d 12327 pokerth_0.7-1.diff.gz
 24ef867e10f8f06a9076e844a2cfb21d8f550bf0 6115896 pokerth-data_0.7-1_all.deb
 d956a0e8ada2d078fbec4f86077311646e5afe71 1156318 pokerth_0.7-1_i386.deb
 625144a1046c4c2e24fbef72306078b689612ee5 621832 pokerth-server_0.7-1_i386.deb
Checksums-Sha256: 
 f731058953ee60b81340bf4643af6b09b57ac2439c79ce1e3aadf04987aaab61 1472 
pokerth_0.7-1.dsc
 ac53a901aafdddca3160e0664c3f14204565049fa812fc3aba9e122a9e96a278 7566119 
pokerth_0.7.orig.tar.gz
 920294398866596d7af0fcba95566e82fbf5b6952efd17ae5daad29fdb71b477 12327 
pokerth_0.7-1.diff.gz
 baa4f5bfd1f6f4d34a21615d67f96d349502ae95638df07f214b634a36ba23d8 6115896 
pokerth-data_0.7-1_all.deb
 c5be33c179dc91642d8e4bfd467c4b290a9bb2c0077329395bf7346ad028ee51 1156318 
pokerth_0.7-1_i386.deb
 646bfd27414fbcb744f71ff49ecff5c817d9aa3c6e84ede4eb7b61b6f49fb852 621832 
pokerth-server_0.7-1_i386.deb
Files: 
 6ec3fb68a7e9fa454f9aa47e90f372fa 1472 games optional pokerth_0.7-1.dsc
 16571a53785407f0e4f4402fad6b0625 7566119 games optional pokerth_0.7.orig.tar.gz
 0adbc49d3ac0a0d09bb75c60e63f4ceb 12327 games optional pokerth_0.7-1.diff.gz
 1d76770ec83aae7e408e08f36c32a0bc 6115896 games optional 
pokerth-data_0.7-1_all.deb
 456ee8b86ad7fa44f49bebc301dfc94f 1156318 games optional pokerth_0.7-1_i386.deb
 4eb952c364c5b5013c7a77cffefd4eeb 621832 games optional 
pokerth-server_0.7-1_i386.deb

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

iEYEARECAAYFAkn+jmMACgkQJKAUGKwVtQwouQCfUZ4FumGApRaXOU5K4hGWitik
5tAAnR8B/g8tJbM0ODJVGjQyVPBVpNbA
=nykq
-END PGP SIGNATURE-


Accepted:
pokerth-data_0.7-1_all.deb
  to pool/main/p/pokerth/pokerth-data_0.7-1_all.deb
pokerth-server_0.7-1_i386.deb
  to pool/main/p/pokerth/pokerth-server_0.7-1_i386.deb
pokerth_0.7-1.diff.gz
  to pool/main/p/pokerth/pokerth_0.7-1.diff.gz
pokerth_0.7-1.dsc
  to pool/main/p/pokerth/pokerth_0.7-1.dsc
pokerth_0.7-1_i386.deb
  to pool/main/p/pokerth/pokerth_0.7-1_i386.deb
pokerth_0.7.orig.tar.gz
  to pool/main/p/pokerth/pokerth_0.7.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted gbemol 0.3.2-1 (source i386)

2009-05-04 Thread Andrea Colangelo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 02 May 2009 19:24:46 +0200
Source: gbemol
Binary: gbemol
Architecture: source i386
Version: 0.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Andrea Colangelo war...@ubuntu.com
Changed-By: Andrea Colangelo war...@ubuntu.com
Description: 
 gbemol - Graphical frontend for the Music Player Daemon (MPD)
Closes: 506483
Changes: 
 gbemol (0.3.2-1) unstable; urgency=low
 .
   * New upstream release (just a few minor bugfixes).
   * debian/control:
 + demote mpd to the Suggests: field, since gbemol doesn't actually
   needs mpd to run. (Closes: #506483)
 + add intltool as a build-dep to fix FTBFS.
 + update Standards-Version to 3.8.1.
Checksums-Sha1: 
 6189f2a7cf3ef030f3f732e39ae6118ba8e6b610 1107 gbemol_0.3.2-1.dsc
 5c3ceab9fc4a4213db001e1e0dc27b56d4868e54 401865 gbemol_0.3.2.orig.tar.gz
 b5432affe9a7e3984d6a44fec09441f76c097a4d 6359 gbemol_0.3.2-1.diff.gz
 a48a92b8b38bab1a99efa44469c54a73ff587498 61142 gbemol_0.3.2-1_i386.deb
Checksums-Sha256: 
 d3934eff39f24ce4aa111fb52195c7fc7ff23051def4629ceb45ceccf245db6e 1107 
gbemol_0.3.2-1.dsc
 dda7658d91ab12a1a94703321aae0bb525c887b83fbd4f4dcfa446c083785a50 401865 
gbemol_0.3.2.orig.tar.gz
 2ad17ae96723844154cfd7e3c0c4541d60acb40a4b88af289a732b992c83681f 6359 
gbemol_0.3.2-1.diff.gz
 51f3f7e24bdcb94ffb8a4efb2ebf459330cdbd5f8dceb0bb1646e3769e5f 61142 
gbemol_0.3.2-1_i386.deb
Files: 
 4aee223e70e0717d6192178d336b30bc 1107 sound optional gbemol_0.3.2-1.dsc
 96de39499201725ae89da165dfb6f7ec 401865 sound optional gbemol_0.3.2.orig.tar.gz
 dd40d7327386e7bf8ff9c4abe75fdc44 6359 sound optional gbemol_0.3.2-1.diff.gz
 f5ac859a730492cd9503769bb1b0e37c 61142 sound optional gbemol_0.3.2-1_i386.deb

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

iEYEARECAAYFAkn+jzAACgkQDecnbV4Fd/KtLACg5oZnX7OYfX5SleACBcU9DAHS
I9cAoODIwtYTRRgpFgxwLexZ6RZooB0x
=rsNo
-END PGP SIGNATURE-


Accepted:
gbemol_0.3.2-1.diff.gz
  to pool/main/g/gbemol/gbemol_0.3.2-1.diff.gz
gbemol_0.3.2-1.dsc
  to pool/main/g/gbemol/gbemol_0.3.2-1.dsc
gbemol_0.3.2-1_i386.deb
  to pool/main/g/gbemol/gbemol_0.3.2-1_i386.deb
gbemol_0.3.2.orig.tar.gz
  to pool/main/g/gbemol/gbemol_0.3.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted fai 3.2.20 (source all)

2009-05-04 Thread Thomas Lange
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 10:42:25 +0200
Source: fai
Binary: fai-client fai-doc fai-server fai-quickstart fai-nfsroot
Architecture: source all
Version: 3.2.20
Distribution: unstable
Urgency: low
Maintainer: Thomas Lange la...@debian.org
Changed-By: Thomas Lange la...@debian.org
Description: 
 fai-client - Fully Automatic Installation client package
 fai-doc- Documentation for FAI
 fai-nfsroot - Fully Automatic Installation nfsroot package
 fai-quickstart - Fully Automatic Installation quickstart package
 fai-server - Fully Automatic Installation server package
Changes: 
 fai (3.2.20) unstable; urgency=low
 .
   [ Thomas Lange ]
   * menu.lst: remove year
   * fai-cd: add option -B, that creates a boot-only CD (without containing
 the nfsroot, the partitial mirror and the config space)
   * conf/menu.lst.boot-only: new config file for the boot only CD
   * fai-cd.8: add option -B
   * fai-abort: add missing lsb header
   * control: remove duplicate fields
   * copyright: fix lintian warning
 .
   [ Michael Tautschnig ]
   * fixed several hyphen-used-as-minus-sign errors in man pages
   * update to standards version 3.8.1, no changes needed
   * replaced dh_clean -k by dh_prep
   * use dh_lintian to install lintian overrides
   * added override for fai-nfsroot (diverts foreign /etc/init.d.rcS)
   * Build-Depends: debhelper (= 7)
   * setup-storage/Sizes.pm: Clarified error message in cases where the user
 specified a partition is larger than the entire disk
   * setup-storage/Parser.pm, setup-storage/Sizes.pm, setup-storage/Volumes.pm:
 Added pseudo-disklabel gpt-bios to support GPT on systems with BIOS
 instead of EFI. Also installs an additional partition to store whatever
 doesn't fit into MBR.
   * setup-storage: bumped version to 1.0.5 (gpt-bios support)
Checksums-Sha1: 
 1237b03cf660a4f84a952a0a5e243609de856e92 1037 fai_3.2.20.dsc
 5b91506872eb8089b95c99273da5a0753d39fd34 271871 fai_3.2.20.tar.gz
 bbea85daf9bd21220a31d09bffcf57f079e6c5a7 150158 fai-client_3.2.20_all.deb
 eb3a66ae49ae5618056c1251cfc8bfbafa873292 571658 fai-doc_3.2.20_all.deb
 9d06a7f59b9eec64130d275747480ad13bba3631 53086 fai-server_3.2.20_all.deb
 6cfd609f8ec95366c84219bf0dd622e44c2cd857 1900 fai-quickstart_3.2.20_all.deb
 9e3a69d1f082e0c162c4bd487268a1447a32a8e2 56906 fai-nfsroot_3.2.20_all.deb
Checksums-Sha256: 
 a1d652c73279b7aa5e8a511aafed8c288b7cdf50c28611fbe5fda9bcc4657c75 1037 
fai_3.2.20.dsc
 df28890d4092c27dbbd17855743cd97538eb74e40f3250ca1a918caf50c9c782 271871 
fai_3.2.20.tar.gz
 8f85fa964d3526b41a4ad1fe1686a9a2f3c85db60d68cce8e92677c3ecf363b8 150158 
fai-client_3.2.20_all.deb
 c1a5d9ff457f18fe726e7205e2b0117be0ff0b44c8c5f3c826b69bfec3ac6c23 571658 
fai-doc_3.2.20_all.deb
 e3d8e0c0b1bb4e0a00eb998aa84d9841fa008a7603b859e0bd205bd0af23de3c 53086 
fai-server_3.2.20_all.deb
 60da296cfb58839cd6a96aee1b1d7425fa6684a3de19e24e353efd298bbf9d67 1900 
fai-quickstart_3.2.20_all.deb
 429112b0645ba00c0420fadd621ba5b99f1eb2dae2d89a3e905db9a70697b33e 56906 
fai-nfsroot_3.2.20_all.deb
Files: 
 ffbba20809ca51018153c5a0b9cffe90 1037 admin extra fai_3.2.20.dsc
 95f683792c4da8a5b55abe09a3c86d6c 271871 admin extra fai_3.2.20.tar.gz
 66d0917bb44ec762b9d12efeecfc6893 150158 admin extra fai-client_3.2.20_all.deb
 89fa3932f2c837b9e8e4393b46ec1206 571658 doc extra fai-doc_3.2.20_all.deb
 74871d0ea1cfad6eeb213f6d69cbef03 53086 admin extra fai-server_3.2.20_all.deb
 5e44ded1722711f0d804aed85a9135ee 1900 admin extra fai-quickstart_3.2.20_all.deb
 22893fcdeb89b4b0d6595f30663596db 56906 admin extra fai-nfsroot_3.2.20_all.deb

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

iD8DBQFJ/qt43BPlTqubZv0RAviXAKDd7UQ4PDmnYhdJeN94HdnPDn1q2ACfaGay
lXWHKfGVUF+mRLwq+0YZrQo=
=njVw
-END PGP SIGNATURE-


Accepted:
fai-client_3.2.20_all.deb
  to pool/main/f/fai/fai-client_3.2.20_all.deb
fai-doc_3.2.20_all.deb
  to pool/main/f/fai/fai-doc_3.2.20_all.deb
fai-nfsroot_3.2.20_all.deb
  to pool/main/f/fai/fai-nfsroot_3.2.20_all.deb
fai-quickstart_3.2.20_all.deb
  to pool/main/f/fai/fai-quickstart_3.2.20_all.deb
fai-server_3.2.20_all.deb
  to pool/main/f/fai/fai-server_3.2.20_all.deb
fai_3.2.20.dsc
  to pool/main/f/fai/fai_3.2.20.dsc
fai_3.2.20.tar.gz
  to pool/main/f/fai/fai_3.2.20.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted lapack 3.2.1-1 (source all i386)

2009-05-04 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 10:26:22 +0200
Source: lapack
Binary: liblapack3gf liblapack-dev liblapack-pic liblapack-test liblapack-doc
Architecture: source all i386
Version: 3.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Scientific Computing Team 
pkg-scicomp-de...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylvestre.le...@inria.fr
Description: 
 liblapack-dev - library of linear algebra routines 3 - static version
 liblapack-doc - library of linear algebra routines 3 - documentation
 liblapack-pic - library of linear algebra routines 3 - static PIC version
 liblapack-test - library of linear algebra routines 3 - testing programs
 liblapack3gf - library of linear algebra routines 3 - shared version
Changes: 
 lapack (3.2.1-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 2a38ec617d14e759adec323b39a291743b52287f 1414 lapack_3.2.1-1.dsc
 ff672c83850293e5b638744215aae909ea0cc624 8658369 lapack_3.2.1.orig.tar.gz
 c62826880d1be79f2831712bad19aab3baee41ad 71879 lapack_3.2.1-1.diff.gz
 3531012701a1cd2fd4307448f605ea2647d0817d 3714076 liblapack-doc_3.2.1-1_all.deb
 af835fa00d0796f99c09c728f3482a3cc47960ce 3116232 liblapack3gf_3.2.1-1_i386.deb
 a236f81dcf4c23dca722b860610ff06b41cea12c 3283938 liblapack-dev_3.2.1-1_i386.deb
 8143b1d3a1ab60149e1e4d9ac1905c62b06fde5e 3416050 liblapack-pic_3.2.1-1_i386.deb
 6118c6f220a70f4cd8da3b4fae44e4dfbeec4e77 6205546 
liblapack-test_3.2.1-1_i386.deb
Checksums-Sha256: 
 cc8301f9d73afb0374f2e9c4e89d422245e66f0fb7228fd22fe51e876e1d64ba 1414 
lapack_3.2.1-1.dsc
 67f1a4f32e3502ab21e50ace074ebc115f8e02467405cf4822790b8d59f847ef 8658369 
lapack_3.2.1.orig.tar.gz
 c69814d2bba17fc32a85370456ee7658170a33fa40c1a772dade431e238fa037 71879 
lapack_3.2.1-1.diff.gz
 946a74a7ac3620a38816928f6699db9a39c4c6d94b1d6fadbef7b44ebee6d526 3714076 
liblapack-doc_3.2.1-1_all.deb
 7660b07d9a4886b0b5cca79b0e4187e6219f2c308c22a768b347d32e5f5eb175 3116232 
liblapack3gf_3.2.1-1_i386.deb
 98e14b327e34de2f21e6d12ccec918ac43bbb9ff40711c33c3c06f47a98cbed2 3283938 
liblapack-dev_3.2.1-1_i386.deb
 e6a77f3229e2efea609a8b3c1050e046c36a8e9064d1bde487cd0c0642a45dfc 3416050 
liblapack-pic_3.2.1-1_i386.deb
 4de8b0c25d5ac668b05ba9093b3f6c72bbe47f860703c9b45ef0fe6eacae713f 6205546 
liblapack-test_3.2.1-1_i386.deb
Files: 
 e00d6088b3b20e12f9d1081f5819be6e 1414 libs optional lapack_3.2.1-1.dsc
 90f284184cef31c23f2b4f17f316514b 8658369 libs optional lapack_3.2.1.orig.tar.gz
 f4c2bb028f71d99e3430725532255303 71879 libs optional lapack_3.2.1-1.diff.gz
 b74286d951a19044c9ba75f04ed7cae5 3714076 doc optional 
liblapack-doc_3.2.1-1_all.deb
 154a6452b1ad9db17f0d7cb7c1862381 3116232 libs optional 
liblapack3gf_3.2.1-1_i386.deb
 69440c0b78280a1e37f392e359030fe2 3283938 libdevel optional 
liblapack-dev_3.2.1-1_i386.deb
 b3a7e01132a12a02924bc3db5e475ae4 3416050 libdevel optional 
liblapack-pic_3.2.1-1_i386.deb
 f7aa7aadcb14cdb1927d86c408254af3 6205546 libdevel optional 
liblapack-test_3.2.1-1_i386.deb

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

iEYEARECAAYFAkn+rLIACgkQiOXXM92JlhAZMgCfY8Jf55s2wahFxj8kVkEyw6Tv
viIAoOfY6bF2bKaZw4w0LUxYMyb4Uhm9
=H78m
-END PGP SIGNATURE-


Accepted:
lapack_3.2.1-1.diff.gz
  to pool/main/l/lapack/lapack_3.2.1-1.diff.gz
lapack_3.2.1-1.dsc
  to pool/main/l/lapack/lapack_3.2.1-1.dsc
lapack_3.2.1.orig.tar.gz
  to pool/main/l/lapack/lapack_3.2.1.orig.tar.gz
liblapack-dev_3.2.1-1_i386.deb
  to pool/main/l/lapack/liblapack-dev_3.2.1-1_i386.deb
liblapack-doc_3.2.1-1_all.deb
  to pool/main/l/lapack/liblapack-doc_3.2.1-1_all.deb
liblapack-pic_3.2.1-1_i386.deb
  to pool/main/l/lapack/liblapack-pic_3.2.1-1_i386.deb
liblapack-test_3.2.1-1_i386.deb
  to pool/main/l/lapack/liblapack-test_3.2.1-1_i386.deb
liblapack3gf_3.2.1-1_i386.deb
  to pool/main/l/lapack/liblapack3gf_3.2.1-1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted botan-devel 1.8.2-1 (source i386)

2009-05-04 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon,  4 May 2009 10:16:00 +0200
Source: botan-devel
Binary: botan-devel-dbg libbotan1.8 libbotan1.8-dev
Architecture: source i386
Version: 1.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 botan-devel-dbg - multiplatform crypto library (debug)
 libbotan1.8 - multiplatform crypto library
 libbotan1.8-dev - multiplatform crypto library (development)
Changes: 
 botan-devel (1.8.2-1) unstable; urgency=low
 .
   * Merging upstream version 1.8.2.
Checksums-Sha1: 
 0793e6bf95c78d391350a50df51b3bec3f57a851 1230 botan-devel_1.8.2-1.dsc
 6b266f78fb328d8fb1547a91545d2a8e298759fa 2534539 botan-devel_1.8.2.orig.tar.gz
 30f89f4656a8fc02192008733ae754c77ac6f8ce 9590 botan-devel_1.8.2-1.diff.gz
 e661fdb7ad37c305b51c30a636406180241d577d 116234 
botan-devel-dbg_1.8.2-1_i386.deb
 11b94b0f95497a8357fc611449d5aa85e6f3f5a6 1160288 libbotan1.8_1.8.2-1_i386.deb
 ede31d629478c66e3f09b8b5a835c24605c1483a 3132546 
libbotan1.8-dev_1.8.2-1_i386.deb
Checksums-Sha256: 
 ce0875401165d8933968dca052483048862a2d695708b2a36bbdc19ed3df0bcb 1230 
botan-devel_1.8.2-1.dsc
 b28730a4c3043868564337b391e9a944eacbf0808d40552e50dddb8f31a8c0a3 2534539 
botan-devel_1.8.2.orig.tar.gz
 6ecc91bc766e1c451a34a35629502fcb8da1e9e6887a62d0e8fee59a7cc62df5 9590 
botan-devel_1.8.2-1.diff.gz
 2c59f8f7a5ff655436f7ca254143f742bc34f18fc0d0bff335c18b92430bdce0 116234 
botan-devel-dbg_1.8.2-1_i386.deb
 8fb8ce66abdc7182f8ca714073ef14580c54956806bb16f133611961c48256a1 1160288 
libbotan1.8_1.8.2-1_i386.deb
 67b7ac6adf27d88b89214ff6fefbaa3baf1c800dcea0d6a5e24f0f5f48759836 3132546 
libbotan1.8-dev_1.8.2-1_i386.deb
Files: 
 af4bae8dc7ac0720ff7541192b767a90 1230 libs optional botan-devel_1.8.2-1.dsc
 f2eff7f7d35662c8242a569a124a65f5 2534539 libs optional 
botan-devel_1.8.2.orig.tar.gz
 90534fe0508871860d65e4e2e820e1fc 9590 libs optional botan-devel_1.8.2-1.diff.gz
 883d18a8c160ee6e3d61767a0b13fc70 116234 devel extra 
botan-devel-dbg_1.8.2-1_i386.deb
 75825ecc9b2d82d237e40ba6a4a80115 1160288 libs optional 
libbotan1.8_1.8.2-1_i386.deb
 ca5d5eb628c02bf86a0964b94e638545 3132546 libdevel optional 
libbotan1.8-dev_1.8.2-1_i386.deb

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

iEYEARECAAYFAkn+peQACgkQ+C5cwEsrK56UAQCcDsUCTBY3bfWuFEREyUEp+YN+
U34AoN69WPvGQCefSlOPhv3vExtPJWy6
=p4y2
-END PGP SIGNATURE-


Accepted:
botan-devel-dbg_1.8.2-1_i386.deb
  to pool/main/b/botan-devel/botan-devel-dbg_1.8.2-1_i386.deb
botan-devel_1.8.2-1.diff.gz
  to pool/main/b/botan-devel/botan-devel_1.8.2-1.diff.gz
botan-devel_1.8.2-1.dsc
  to pool/main/b/botan-devel/botan-devel_1.8.2-1.dsc
botan-devel_1.8.2.orig.tar.gz
  to pool/main/b/botan-devel/botan-devel_1.8.2.orig.tar.gz
libbotan1.8-dev_1.8.2-1_i386.deb
  to pool/main/b/botan-devel/libbotan1.8-dev_1.8.2-1_i386.deb
libbotan1.8_1.8.2-1_i386.deb
  to pool/main/b/botan-devel/libbotan1.8_1.8.2-1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted ncurses 5.7+20090425-1 (source i386 all)

2009-05-04 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon,  4 May 2009 10:25:00 +0200
Source: ncurses
Binary: libncurses5 libncurses5-dev libncurses5-dbg libncursesw5 
libncursesw5-dev libncursesw5-dbg lib64ncurses5 lib64ncurses5-dev lib32ncurses5 
lib32ncurses5-dev lib32ncursesw5 lib32ncursesw5-dev ncurses-bin ncurses-base 
ncurses-term
Architecture: source i386 all
Version: 5.7+20090425-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 lib32ncurses5 - shared libraries for terminal handling (32-bit)
 lib32ncurses5-dev - developer's libraries for ncurses (32-bit)
 lib32ncursesw5 - shared libraries for terminal handling (wide character 
support) (
 lib32ncursesw5-dev - developer's libraries for ncursesw (32-bit)
 lib64ncurses5 - shared libraries for terminal handling (64-bit)
 lib64ncurses5-dev - developer's libraries for ncurses (64-bit)
 libncurses5 - shared libraries for terminal handling
 libncurses5-dbg - debugging/profiling libraries for ncurses
 libncurses5-dev - developer's libraries and docs for ncurses
 libncursesw5 - shared libraries for terminal handling (wide character support)
 libncursesw5-dbg - debugging/profiling libraries for ncurses
 libncursesw5-dev - developer's libraries for ncursesw
 ncurses-base - basic terminal type definitions
 ncurses-bin - terminal-related programs and man pages
 ncurses-term - additional terminal type definitions
Changes: 
 ncurses (5.7+20090425-1) unstable; urgency=low
 .
   * Merging upstream version 5.7+20090425.
Checksums-Sha1: 
 333c189573be90bd97224974668765715b20848f 1517 ncurses_5.7+20090425-1.dsc
 57c13f27bd01be9fe1e59d8bf757b5a97aa2e17e 2534180 
ncurses_5.7+20090425.orig.tar.gz
 1e0314cc3302d148f72c677daae6c219d2ec82ab 39993 ncurses_5.7+20090425-1.diff.gz
 c51ffc9c8c6413e2ccac44c31c38e066e1deda0e 339780 
libncurses5_5.7+20090425-1_i386.deb
 0391e528ddd42a5a97816f04302be9fd5464b726 1559108 
libncurses5-dev_5.7+20090425-1_i386.deb
 4affafef85d6d8279f4265349a2433cf8ddaf55f 1878150 
libncurses5-dbg_5.7+20090425-1_i386.deb
 2feb3d021eea4c704c89e14836a37d9e46b25301 362862 
libncursesw5_5.7+20090425-1_i386.deb
 138a24c5360a9d9577f704bcfc60520ba5777a1d 480984 
libncursesw5-dev_5.7+20090425-1_i386.deb
 57dd21df9d36b0f5daed207a09f6bb8c30221498 2094640 
libncursesw5-dbg_5.7+20090425-1_i386.deb
 17e7019ccc86db26a15af658cceb7ea9984b7ae8 353604 
lib64ncurses5_5.7+20090425-1_i386.deb
 240536305003ab7f755e496c1b9bfc3a2c880598 419956 
lib64ncurses5-dev_5.7+20090425-1_i386.deb
 e9ec75bdb734643b636458d629158827419b28c2 305798 
ncurses-bin_5.7+20090425-1_i386.deb
 79b29fc8fa9ba92751f1bc74b3877b2f7d5eb833 180114 
ncurses-base_5.7+20090425-1_all.deb
 5dd0412b1b10ca1d25c6a461956bc3035fac0f50 561876 
ncurses-term_5.7+20090425-1_all.deb
Checksums-Sha256: 
 318927d28230a6d2abd0678eb03226f3a87653ee7b75d74960b62a210c5aec4b 1517 
ncurses_5.7+20090425-1.dsc
 5923c85d95e0373c7f50eb9468be6ac93d055f346af3dd4fa2a170de3414a422 2534180 
ncurses_5.7+20090425.orig.tar.gz
 a315b054adcc275293697a75d9a148ae4fee9e8c1edcea4affb5ca6599761429 39993 
ncurses_5.7+20090425-1.diff.gz
 60b24f801b37b4c588db2cad79966b396c6a582a3d27a9ddb70851e9c5675193 339780 
libncurses5_5.7+20090425-1_i386.deb
 bce31c07caf8840bb710ac538c8c6b8f67fd5b213e74618214c9b618f0703c29 1559108 
libncurses5-dev_5.7+20090425-1_i386.deb
 13b761dfe5d0e795b0b4dde02571862e37c37431c792aae9cd17437c93dbff59 1878150 
libncurses5-dbg_5.7+20090425-1_i386.deb
 5488d3c7ee63978f22bcc472c8df44e8bbac541ad2c5d5c06eb96bfd3e03dcf9 362862 
libncursesw5_5.7+20090425-1_i386.deb
 07676b346924f4cdeb364fc1d2842aee5d79b5a3a35476880e76f09f9680bd02 480984 
libncursesw5-dev_5.7+20090425-1_i386.deb
 3de330dfdae23dfd57bf17a1d436b56de8f08a51a2d7f7b87f16c45dc66c29ad 2094640 
libncursesw5-dbg_5.7+20090425-1_i386.deb
 22742fdca97fca262c5db3c91c0b66e6e950617b6849c241d807384e2a32fce3 353604 
lib64ncurses5_5.7+20090425-1_i386.deb
 5ee066b381531ad1da76483ee5dea1a98345657899d076498ca3c9e914542b94 419956 
lib64ncurses5-dev_5.7+20090425-1_i386.deb
 1973e4220b1f4952be3d0122d1031005cfff3169d56928f99b3c0dff2652a31c 305798 
ncurses-bin_5.7+20090425-1_i386.deb
 92f18260dc2e7062ae628d1b556b523a87c75e3a8abe9b3b9dfacd0ec7c9643f 180114 
ncurses-base_5.7+20090425-1_all.deb
 287b37bcc17cba7b5ed862b95493e51ffba60a2ac4bdae48a1b908306abf0b43 561876 
ncurses-term_5.7+20090425-1_all.deb
Files: 
 ba9383c74c59ead10ff584d91a9196f7 1517 libs standard ncurses_5.7+20090425-1.dsc
 ac1eab60c763609cf5c22f71ccbdacef 2534180 libs standard 
ncurses_5.7+20090425.orig.tar.gz
 d8abc4df840bd7408455a36bd7e6fbe6 39993 libs standard 
ncurses_5.7+20090425-1.diff.gz
 2b6f999611b981459a4ff315a071c9eb 339780 libs required 
libncurses5_5.7+20090425-1_i386.deb
 fcb9c164d965c15cdb03bfb204e33dfe 1559108 libdevel optional 
libncurses5-dev_5.7+20090425-1_i386.deb
 89270880a40498817c0ec51f81deafac 1878150 debug extra 
libncurses5-dbg_5.7+20090425-1_i386.deb
 74871d404c815fb5c44b473e4a41408b 362862 libs important 

Accepted libcache-fastmmap-perl 1.29-1 (source i386)

2009-05-04 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 10:34:28 +0200
Source: libcache-fastmmap-perl
Binary: libcache-fastmmap-perl
Architecture: source i386
Version: 1.29-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Krzysztof Krzyżaniak (eloy) e...@debian.org
Description: 
 libcache-fastmmap-perl - Mmap'ed file as a shared memory interprocess cache
Changes: 
 libcache-fastmmap-perl (1.29-1) unstable; urgency=low
 .
   [ Krzysztof Krzyżaniak (eloy) ]
   * New upstream release
   * debian/control: Update Standards-Version to 3.8.1
   * debian/copyright: Update  convert to new schema
 .
   [ Ansgar Burchardt ]
   * debian/control: Fix Homepage field
 .
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
 (source stanza).
   * debian/control: Added: ${misc:Depends} to Depends: field.
Checksums-Sha1: 
 6bdfd64421c724da2e1a2ce16adc40fcc67c12c0 1364 libcache-fastmmap-perl_1.29-1.dsc
 7b309b3597986ca0e5c801796f14320b6e8021d2 46362 
libcache-fastmmap-perl_1.29.orig.tar.gz
 d3a54d2bc2d05bdc582d52f60d527bbd165aa444 2312 
libcache-fastmmap-perl_1.29-1.diff.gz
 b89d709f2e1e95a6768d7cd165e7567a45c77511 48922 
libcache-fastmmap-perl_1.29-1_i386.deb
Checksums-Sha256: 
 bfdea7ce33754609c6e3e94e1c865748b32675a329b440cc4c6659e0ed6f6648 1364 
libcache-fastmmap-perl_1.29-1.dsc
 5b339c49757015f1a7ff4a33fb30d381a6f4d4e3a2bb1b0506f2003baa91f9c2 46362 
libcache-fastmmap-perl_1.29.orig.tar.gz
 bf2955bbce48412f349f87135a6ef1e538ae87fe7b5b81faacb7b440ecbbb09b 2312 
libcache-fastmmap-perl_1.29-1.diff.gz
 7d96fe3cdb32009314f04d072612788d6da5711059b8489cc1417bc5b8f9ba59 48922 
libcache-fastmmap-perl_1.29-1_i386.deb
Files: 
 24ff5184d2c60ff85aa42727ce5ef1b1 1364 perl optional 
libcache-fastmmap-perl_1.29-1.dsc
 74aeca67597a391cd392d4ba17ec144a 46362 perl optional 
libcache-fastmmap-perl_1.29.orig.tar.gz
 68ebcb8edb7e0e38234e4bf489a01d9c 2312 perl optional 
libcache-fastmmap-perl_1.29-1.diff.gz
 edca620b7bd56524da965c63aa9cf1d1 48922 perl optional 
libcache-fastmmap-perl_1.29-1_i386.deb

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

iEYEARECAAYFAkn+rdEACgkQy+HP4f7iC8tRYgCfWZzOfC8oAZTo7pr75DhflWGz
dMgAnRaKKR+KCLxBlk29khSCazEzTcV6
=Nyi+
-END PGP SIGNATURE-


Accepted:
libcache-fastmmap-perl_1.29-1.diff.gz
  to pool/main/libc/libcache-fastmmap-perl/libcache-fastmmap-perl_1.29-1.diff.gz
libcache-fastmmap-perl_1.29-1.dsc
  to pool/main/libc/libcache-fastmmap-perl/libcache-fastmmap-perl_1.29-1.dsc
libcache-fastmmap-perl_1.29-1_i386.deb
  to 
pool/main/libc/libcache-fastmmap-perl/libcache-fastmmap-perl_1.29-1_i386.deb
libcache-fastmmap-perl_1.29.orig.tar.gz
  to 
pool/main/libc/libcache-fastmmap-perl/libcache-fastmmap-perl_1.29.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted apgdiff 1.3-1 (source all)

2009-05-04 Thread Christoph Berg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 11:24:40 +0200
Source: apgdiff
Binary: apgdiff
Architecture: source all
Version: 1.3-1
Distribution: unstable
Urgency: low
Maintainer: Christoph Berg m...@debian.org
Changed-By: Christoph Berg m...@debian.org
Description: 
 apgdiff- Another PostgreSQL Diff Tool
Changes: 
 apgdiff (1.3-1) unstable; urgency=low
 .
   * New upstream version.
   * Manually copy changelog entries from sourceforge.net to CHANGES.
   * Use quilt.
   * Add watch file.
Checksums-Sha1: 
 2ee0eca924fe253be06162f6d08f4eea7f2a8333 1033 apgdiff_1.3-1.dsc
 4611eda929e80c149f988e2604c706faadb3756f 51317 apgdiff_1.3.orig.tar.gz
 3a1ffad4b25954ee6e561639b84cf52ab14b034c 3064 apgdiff_1.3-1.diff.gz
 ce1f78542049f1c368527bdcae0eff609f880182 60338 apgdiff_1.3-1_all.deb
Checksums-Sha256: 
 76dae237a66db48bc82cb82b38df0833d2ad54b0e72e91ffd8d0ba27c5da25a2 1033 
apgdiff_1.3-1.dsc
 fa9b3b671bfdd6a0f9d3b4966d79c973826a0b3ba3425f0ea8bc0cd646d92681 51317 
apgdiff_1.3.orig.tar.gz
 65c0e0c121bc7d70f6367cf4892e38d5cc1fe51b362ccd7945858af55ebea7e5 3064 
apgdiff_1.3-1.diff.gz
 84b7dce2297402954a6f50f9bc7bd114173ca35bde3f5434f5b1c7e69b6d5d7d 60338 
apgdiff_1.3-1_all.deb
Files: 
 f086a72285faf831403550afffe7fc6e 1033 misc extra apgdiff_1.3-1.dsc
 fbe947f25f37a97d4f47f1d80cb5f264 51317 misc extra apgdiff_1.3.orig.tar.gz
 4937b9960924461887260cc37b7c48a8 3064 misc extra apgdiff_1.3-1.diff.gz
 dcacf04c4acfbedd4cf709d1832e9fad 60338 misc extra apgdiff_1.3-1_all.deb

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

iEYEARECAAYFAkn+tdQACgkQxa93SlhRC1rx2ACgoHoHCw3Sj6IUKZFQAK6rSfjC
NpgAnA3SlLnLoIJ7kha5enYTZGpjhu+1
=eqDH
-END PGP SIGNATURE-


Accepted:
apgdiff_1.3-1.diff.gz
  to pool/main/a/apgdiff/apgdiff_1.3-1.diff.gz
apgdiff_1.3-1.dsc
  to pool/main/a/apgdiff/apgdiff_1.3-1.dsc
apgdiff_1.3-1_all.deb
  to pool/main/a/apgdiff/apgdiff_1.3-1_all.deb
apgdiff_1.3.orig.tar.gz
  to pool/main/a/apgdiff/apgdiff_1.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted gcj-4.4 4.4.0-1 (source all i386)

2009-05-04 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 00:59:25 +0200
Source: gcj-4.4
Binary: gcj-4.4-base gcj-4.4-jdk gcj-4.4-jre-headless gcj-4.4-jre libgcj10 
gcj-4.4-jre-lib libgcj10-awt libgcj10-dev libgcj10-dbg gcj-4.4-source libgcj-doc
Architecture: source all i386
Version: 4.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 gcj-4.4-base - The GNU Compiler Collection (gcj base package)
 gcj-4.4-jdk - gcj and classpath development tools for Java(TM)
 gcj-4.4-jre - Java runtime environment using GIJ/classpath
 gcj-4.4-jre-headless - Java runtime environment using GIJ/classpath (headless 
version)
 gcj-4.4-jre-lib - Java runtime library for use with gcj (jar files)
 gcj-4.4-source - GCJ java sources for use in IDEs like eclipse and netbeans
 libgcj-doc - libgcj API documentation and example programs
 libgcj10   - Java runtime library for use with gcj
 libgcj10-awt - AWT peer runtime libraries for use with gcj
 libgcj10-dbg - Debugging symbols for libraries provided in libgcj10-dev
 libgcj10-dev - Java development headers for use with gcj
Changes: 
 gcj-4.4 (4.4.0-1) unstable; urgency=low
 .
   * Upload as gcj-4.4.
Checksums-Sha1: 
 12bbbd9c4ed62be85948d8a5cd25ee4bc237e6bb 2738 gcj-4.4_4.4.0-1.dsc
 bde7c729b8861031c9fcaf56beae353ef15833a7 1634024 gcj-4.4_4.4.0-1.diff.gz
 d3dfe4d11fd3b211349c4de7dad01cd6bdff8957 10477736 
gcj-4.4-jre-lib_4.4.0-1_all.deb
 de25311b309e0acba1aa88737b07ae7b54d0 12327964 
gcj-4.4-source_4.4.0-1_all.deb
 8445a6609f569ef43ee58e79af5d4a94f396635d 43728380 libgcj-doc_4.4.0-1_all.deb
 73e92b6370cda60138aa2ff4882e639a6cd9abcf 107600 gcj-4.4-base_4.4.0-1_i386.deb
 f11a1d55cbf9bd948ee22d78f0b41a305a8edcd1 50658 
gcj-4.4-jre-headless_4.4.0-1_i386.deb
 7e85cebcc0467ae1826e0688d3c12735fe2f8de4 11478590 libgcj10_4.4.0-1_i386.deb
 7d27e4d39f262b7b9b1fd452c4af97518237962a 81524 libgcj10-awt_4.4.0-1_i386.deb
 f607d72850898ca8dea7dd3bb3b854b72d7ed188 986 gcj-4.4-jre_4.4.0-1_i386.deb
 919fb7a42d68ecc009db1bc1cd1c93c31b49bcdc 766264 libgcj10-dev_4.4.0-1_i386.deb
 737df4a434a5be38db9af8e5a9ba96787d0e3cf1 12438902 libgcj10-dbg_4.4.0-1_i386.deb
 8d20247491959c5b9984e88f713620d1b931cc22 3929358 gcj-4.4-jdk_4.4.0-1_i386.deb
Checksums-Sha256: 
 678ed922796ee344a607887f2da6188623b7f7e1314fe90032b1a4aa321cd4bd 2738 
gcj-4.4_4.4.0-1.dsc
 31e9d970acfa7378bde4a96902b1f43806efeddc1a277fba8259dae2b6d47b9d 1634024 
gcj-4.4_4.4.0-1.diff.gz
 aa4df2eb635b90b03b82aac312017eb63bbd2886a1907cadc150a9f087aae376 10477736 
gcj-4.4-jre-lib_4.4.0-1_all.deb
 17c0de205c4d39ec4c6069e33abe99503493f915f492b746ce119b5ebec6bee4 12327964 
gcj-4.4-source_4.4.0-1_all.deb
 3f9950ac71057bbe58ccc946ce16245da45948141440bd1e9ac2f3b2adcc57ad 43728380 
libgcj-doc_4.4.0-1_all.deb
 c2212cce1fe89c1872a714c9dd362053557034ffaf4cdf122a102f7f133f764e 107600 
gcj-4.4-base_4.4.0-1_i386.deb
 f2a4af7b73b563fa923a3c9d7e67c7f1c8db55c0ce230db2a26ade52121394c0 50658 
gcj-4.4-jre-headless_4.4.0-1_i386.deb
 593735664cc65517795baf02662ead5090b73e485d16d23476a13a49cd039beb 11478590 
libgcj10_4.4.0-1_i386.deb
 daf7d8bc1005c6ecdd955cf3e8de8a87a60829e17523e6607125d4fd014d77fa 81524 
libgcj10-awt_4.4.0-1_i386.deb
 d163bcb330447dbf9732f6cf177a2cd433939083554aea9a6f06b288ede8be59 986 
gcj-4.4-jre_4.4.0-1_i386.deb
 1dee0253b082c686a8b4b7b012491647a4a3ae21a1444bb5e70c4a673ff5b6e6 766264 
libgcj10-dev_4.4.0-1_i386.deb
 7e6f7fec3102471dff1aa20b1abd84cbbea40a2ba9c1b5277fba07c2087b8bb4 12438902 
libgcj10-dbg_4.4.0-1_i386.deb
 462462b850667233b51a96db1f34d72e0d879b01d49526431616cd59d08f757a 3929358 
gcj-4.4-jdk_4.4.0-1_i386.deb
Files: 
 da288e2de9182bcb2cdaec6b797997fe 2738 devel optional gcj-4.4_4.4.0-1.dsc
 f0a859df6447fbee4035dbd9a710795e 1634024 devel optional gcj-4.4_4.4.0-1.diff.gz
 16d4fd99fd4cc457b0c0cff12ae7e92c 10477736 java optional 
gcj-4.4-jre-lib_4.4.0-1_all.deb
 e36cfbdd72c62e067b983966603ee89d 12327964 java optional 
gcj-4.4-source_4.4.0-1_all.deb
 bac14d1272c28bbe5d9c48f06d14fbcd 43728380 doc optional 
libgcj-doc_4.4.0-1_all.deb
 f2928bed8f5d1c0e2dc067bbe9b60576 107600 libs optional 
gcj-4.4-base_4.4.0-1_i386.deb
 11cea4cc93f953a5fa21834f68edaff6 50658 java optional 
gcj-4.4-jre-headless_4.4.0-1_i386.deb
 2bfdc2a749fd11d9a2bb52f7f5a2136a 11478590 libs optional 
libgcj10_4.4.0-1_i386.deb
 26047215f3bf80c61fb3463fd9ef185e 81524 libs optional 
libgcj10-awt_4.4.0-1_i386.deb
 8a551f33a9ad2d4cd16f0ed4dbfb790a 986 java optional gcj-4.4-jre_4.4.0-1_i386.deb
 af7d90389ea1215a411e916bae7d3d57 766264 libdevel optional 
libgcj10-dev_4.4.0-1_i386.deb
 b3305b5f2510b36783b82515a57a86cf 12438902 debug extra 
libgcj10-dbg_4.4.0-1_i386.deb
 4471bb7255d571b853f90e3378bdebda 3929358 java optional 
gcj-4.4-jdk_4.4.0-1_i386.deb

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

iEYEARECAAYFAkn+vqsACgkQStlRaw+TLJxLNACfYg7yPA528z/lJ2UieNXwhNgT
NM0AnAzERC7UDLUAFVTCNhlo3czOgBhM
=VDY1
-END PGP SIGNATURE-



Accepted libdbix-class-schema-loader-perl 0.04006-1 (source all)

2009-05-04 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 11:15:04 +0200
Source: libdbix-class-schema-loader-perl
Binary: libdbix-class-schema-loader-perl
Architecture: source all
Version: 0.04006-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Krzysztof Krzyżaniak (eloy) e...@debian.org
Description: 
 libdbix-class-schema-loader-perl - Dynamic definition of a DBIx::Class::Schema
Changes: 
 libdbix-class-schema-loader-perl (0.04006-1) unstable; urgency=low
 .
   * New upstream release
   * convert package to debhelper7, update debian/control and debian/rules
   * debian/control: Update Standards-Version to 3.8.1
   * debian/copyright: Update to new schema
Checksums-Sha1: 
 ee62f77eb8a8b643d82095ff63061427fe189ec9 1803 
libdbix-class-schema-loader-perl_0.04006-1.dsc
 4cebf5b97a14aa106c6cf16a308d2ba5a15549b5 57552 
libdbix-class-schema-loader-perl_0.04006.orig.tar.gz
 f6d36cbff6543699e4fadf9aa9ee6ee66753b158 2563 
libdbix-class-schema-loader-perl_0.04006-1.diff.gz
 4a2e4759857d3848771f0b8e25f3c4521554074b 55086 
libdbix-class-schema-loader-perl_0.04006-1_all.deb
Checksums-Sha256: 
 cadb3e87f123500e79b5f7f9f17ac8436a312a33dc7c9619ec16998ea6de2948 1803 
libdbix-class-schema-loader-perl_0.04006-1.dsc
 9d4883d3f03103a315c5e36b214c25fbcbe8240339b7dbc85d4aa228e30d606b 57552 
libdbix-class-schema-loader-perl_0.04006.orig.tar.gz
 5c3613341d93e9f3290d2ed9004919a1e9d9f87e081cffe978ecfe239b23d9a7 2563 
libdbix-class-schema-loader-perl_0.04006-1.diff.gz
 1e80d1e54c9d73dccf3824d171332b3e2d1d84fcf71dce4d926403d99b0bdcce 55086 
libdbix-class-schema-loader-perl_0.04006-1_all.deb
Files: 
 1a9b7701e4a7f63712418011ba722cea 1803 perl optional 
libdbix-class-schema-loader-perl_0.04006-1.dsc
 819e92fd8c7088fdde730d1295556d3c 57552 perl optional 
libdbix-class-schema-loader-perl_0.04006.orig.tar.gz
 94b12311bcb075062586105014d4df96 2563 perl optional 
libdbix-class-schema-loader-perl_0.04006-1.diff.gz
 68b25440fcee357b8e2b2fee273bffc4 55086 perl optional 
libdbix-class-schema-loader-perl_0.04006-1_all.deb

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

iEYEARECAAYFAkn+uvMACgkQy+HP4f7iC8sjTwCcCUHjLcd6tX7kHMi02QC9pAlU
k1UAoIlE/5/xYrJ+EEebgUZ5Uf3G2qV3
=87ST
-END PGP SIGNATURE-


Accepted:
libdbix-class-schema-loader-perl_0.04006-1.diff.gz
  to 
pool/main/libd/libdbix-class-schema-loader-perl/libdbix-class-schema-loader-perl_0.04006-1.diff.gz
libdbix-class-schema-loader-perl_0.04006-1.dsc
  to 
pool/main/libd/libdbix-class-schema-loader-perl/libdbix-class-schema-loader-perl_0.04006-1.dsc
libdbix-class-schema-loader-perl_0.04006-1_all.deb
  to 
pool/main/libd/libdbix-class-schema-loader-perl/libdbix-class-schema-loader-perl_0.04006-1_all.deb
libdbix-class-schema-loader-perl_0.04006.orig.tar.gz
  to 
pool/main/libd/libdbix-class-schema-loader-perl/libdbix-class-schema-loader-perl_0.04006.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted iftop 0.17-11 (source i386)

2009-05-04 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 11:42:02 +0200
Source: iftop
Binary: iftop iftop-dbg
Architecture: source i386
Version: 0.17-11
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 iftop  - displays bandwidth usage information on an network interface
 iftop-dbg  - displays bandwidth usage information on an network interface (deb
Changes: 
 iftop (0.17-11) unstable; urgency=low
 .
   * Updating rules to current state of the art.
   * Upgrading package to standards 3.8.1.
   * Updating section for debug packages.
   * Using correct rfc-2822 date formats in changelog.
Checksums-Sha1: 
 63ba0519f4b9800ef83fd78102fa23c4a914e8cb 1142 iftop_0.17-11.dsc
 75ce6afc8c0bf851278b0a15e66f523af90cfda9 160381 iftop_0.17.orig.tar.gz
 2a3fddb7607fc3a72c7f41505bef1438108a76f3 5704 iftop_0.17-11.diff.gz
 f5e67d505a446e3ac2d752432e64580aa3b51f12 31440 iftop_0.17-11_i386.deb
 a320489defb3c58fe5754ab9b04dfec2469be393 48602 iftop-dbg_0.17-11_i386.deb
Checksums-Sha256: 
 ae33e033b95f053343555b3a5191dcb3e950ed1cc6a496fcb171123a57f9d235 1142 
iftop_0.17-11.dsc
 d032547c708307159ff5fd0df23ebd3cfa7799c31536fa0aea1820318a8e0eac 160381 
iftop_0.17.orig.tar.gz
 9861a4170e9ab5b30e75a7bb828ff686c2f024032d0f1c187015b4388f20f419 5704 
iftop_0.17-11.diff.gz
 605eec382395e2828a90cb5f1cde5e17814f77748eda6c0f56b6695c5940c8ec 31440 
iftop_0.17-11_i386.deb
 19239797f938e70397d40570f411c17e6a56b0f78e2b1998d8aa01df2c55b049 48602 
iftop-dbg_0.17-11_i386.deb
Files: 
 2ad8651e38b19787fa43a27fbaf35d48 1142 net optional iftop_0.17-11.dsc
 062bc8fb3856580319857326e0b8752d 160381 net optional iftop_0.17.orig.tar.gz
 e09895ef19613a87d121f95dc50c9b39 5704 net optional iftop_0.17-11.diff.gz
 7a4c4071b67e07b1d5e14fb973a43787 31440 net optional iftop_0.17-11_i386.deb
 2224a66e05e330a97634857b86add9b9 48602 debug extra iftop-dbg_0.17-11_i386.deb

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

iEYEARECAAYFAkn+uLoACgkQ+C5cwEsrK56oJgCgqORloWiG8Svk/k8XQha037nw
KUYAn36CS1tsFRqifO6LpOEcBVAf1dK7
=q1CJ
-END PGP SIGNATURE-


Accepted:
iftop-dbg_0.17-11_i386.deb
  to pool/main/i/iftop/iftop-dbg_0.17-11_i386.deb
iftop_0.17-11.diff.gz
  to pool/main/i/iftop/iftop_0.17-11.diff.gz
iftop_0.17-11.dsc
  to pool/main/i/iftop/iftop_0.17-11.dsc
iftop_0.17-11_i386.deb
  to pool/main/i/iftop/iftop_0.17-11_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted dahb-html 4.0.1.4-2 (source all)

2009-05-04 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 13:10:54 +0200
Source: dahb-html
Binary: dahb-html
Architecture: source all
Version: 4.0.1.4-2
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 dahb-html  - Debian GNU/Linux Anwenderhandbuch
Changes: 
 dahb-html (4.0.1.4-2) unstable; urgency=low
 .
   * Updating vcs fields in control file.
   * Using correct rfc-2822 date formats in changelog.
   * Prefixing debhelper files with package name.
   * Upgrading package to standards 3.8.1.
   * Updating year in copyright file.
Checksums-Sha1: 
 b23c60c9b4aefabbb7b31fa690c6e41ab67e7834 1137 dahb-html_4.0.1.4-2.dsc
 fae736a53110924f93d911dbcf8a74ceae8a360e 7344 dahb-html_4.0.1.4-2.diff.gz
 25477c25249ebf96eb8846b7d185539572d69647 9040922 dahb-html_4.0.1.4-2_all.deb
Checksums-Sha256: 
 091efbaed5bc19ad5f66f8cd960ed1efa2d1d7b673e11de034438b90838c3c5b 1137 
dahb-html_4.0.1.4-2.dsc
 37ef8aa6344ef8dc3cf4ac6b660b00b912df748217da3019bc39a9b5c2e0b3bc 7344 
dahb-html_4.0.1.4-2.diff.gz
 f484b24327199a600bb294fdbd884c05631b52704ef5bf25afb5de2dd79e0f56 9040922 
dahb-html_4.0.1.4-2_all.deb
Files: 
 6d2daa47e93f4f427ffc8c1e581e 1137 non-free/doc optional 
dahb-html_4.0.1.4-2.dsc
 b4d3b7466b4524c222ca66c7dfa2c349 7344 non-free/doc optional 
dahb-html_4.0.1.4-2.diff.gz
 2d1f87c7677dbdb82a2d8c6cd7bff43d 9040922 non-free/doc optional 
dahb-html_4.0.1.4-2_all.deb

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

iEYEARECAAYFAkn+zXYACgkQ+C5cwEsrK55CeACffmpvR8uByFeXGo9pUdhHMoLb
oZIAoMxItxsLM79uAQ6T9EHySLCmwhIC
=IeKT
-END PGP SIGNATURE-


Accepted:
dahb-html_4.0.1.4-2.diff.gz
  to pool/non-free/d/dahb-html/dahb-html_4.0.1.4-2.diff.gz
dahb-html_4.0.1.4-2.dsc
  to pool/non-free/d/dahb-html/dahb-html_4.0.1.4-2.dsc
dahb-html_4.0.1.4-2_all.deb
  to pool/non-free/d/dahb-html/dahb-html_4.0.1.4-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted gcc-4.4 4.4.0-3 (source all i386)

2009-05-04 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:38:56 +0200
Source: gcc-4.4
Binary: gcc-4.4-base libgcc1 libgcc1-dbg libgcc2 libgcc2-dbg libgcc4 
libgcc4-dbg lib64gcc1 lib64gcc1-dbg lib32gcc1 lib32gcc1-dbg libn32gcc1 
libn32gcc1-dbg gcc-4.4 gcc-4.4-multilib gcc-4.4-hppa64 gcc-4.4-spu g++-4.4-spu 
gfortran-4.4-spu cpp-4.4 gcc-4.4-locales g++-4.4 g++-4.4-multilib libmudflap0 
libmudflap0-dbg lib32mudflap0 lib32mudflap0-dbg lib64mudflap0 lib64mudflap0-dbg 
libn32mudflap0 libn32mudflap0-dbg libmudflap0-4.4-dev libgomp1 libgomp1-dbg 
lib32gomp1 lib32gomp1-dbg lib64gomp1 lib64gomp1-dbg libn32gomp1 libn32gomp1-dbg 
protoize gobjc++-4.4 gobjc++-4.4-multilib gobjc-4.4 gobjc-4.4-multilib libobjc2 
libobjc2-dbg lib64objc2 lib64objc2-dbg lib32objc2 lib32objc2-dbg libn32objc2 
libn32objc2-dbg gfortran-4.4 gfortran-4.4-multilib libgfortran3 
libgfortran3-dbg lib64gfortran3 lib64gfortran3-dbg lib32gfortran3 
lib32gfortran3-dbg libn32gfortran3 libn32gfortran3-dbg libstdc++6 lib32stdc++6 
lib64stdc++6 libn32stdc++6 libstdc++6-4.4-dev libstdc++6-4.4-pic 
libstdc++6-4.4-dbg lib32stdc++6-4.4-dbg lib64stdc++6-4.4-dbg 
libn32stdc++6-4.4-dbg libstdc++6-4.4-doc gcc-4.4-soft-float fixincludes 
gcc-4.4-source
Architecture: source all i386
Version: 4.4.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 cpp-4.4- The GNU C preprocessor
 fixincludes - Fix non-ANSI header files
 g++-4.4- The GNU C++ compiler
 g++-4.4-multilib - The GNU C++ compiler (multilib files)
 g++-4.4-spu - SPU cross-compiler (C++ compiler)
 gcc-4.4- The GNU C compiler
 gcc-4.4-base - The GNU Compiler Collection (base package)
 gcc-4.4-hppa64 - The GNU C compiler (cross compiler for hppa64)
 gcc-4.4-locales - The GNU C compiler (native language support files)
 gcc-4.4-multilib - The GNU C compiler (multilib files)
 gcc-4.4-soft-float - The soft-floating-point gcc libraries (arm)
 gcc-4.4-source - Source of the GNU Compiler Collection
 gcc-4.4-spu - SPU cross-compiler (preprocessor and C compiler)
 gfortran-4.4 - The GNU Fortran 95 compiler
 gfortran-4.4-multilib - The GNU Fortran 95 compiler (multilib files)
 gfortran-4.4-spu - SPU cross-compiler (Fortran compiler)
 gobjc++-4.4 - The GNU Objective-C++ compiler
 gobjc++-4.4-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.4  - The GNU Objective-C compiler
 gobjc-4.4-multilib - The GNU Objective-C compiler (multilib files)
 lib32gcc1  - GCC support library (32 bit Version)
 lib32gcc1-dbg - GCC support library (debug symbols)
 lib32gfortran3 - Runtime library for GNU Fortran applications (32bit)
 lib32gfortran3-dbg - Runtime library for GNU Fortran applications (32 bit 
debug symbol
 lib32gomp1 - GCC OpenMP (GOMP) support library (32bit)
 lib32gomp1-dbg - GCC OpenMP (GOMP) support library (32 bit debug symbols)
 lib32mudflap0 - GCC mudflap shared support libraries (32bit)
 lib32mudflap0-dbg - GCC mudflap shared support libraries (32 bit debug symbols)
 lib32objc2 - Runtime library for GNU Objective-C applications (32bit)
 lib32objc2-dbg - Runtime library for GNU Objective-C applications (32 bit 
debug sy
 lib32stdc++6 - The GNU Standard C++ Library v3 (32 bit Version)
 lib32stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 lib64gcc1  - GCC support library (64bit)
 lib64gcc1-dbg - GCC support library (debug symbols)
 lib64gfortran3 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran3-dbg - Runtime library for GNU Fortran applications (64bit debug 
symbols
 lib64gomp1 - GCC OpenMP (GOMP) support library (64bit)
 lib64gomp1-dbg - GCC OpenMP (GOMP) support library (64bit debug symbols)
 lib64mudflap0 - GCC mudflap shared support libraries (64bit)
 lib64mudflap0-dbg - GCC mudflap shared support libraries (64 bit debug symbols)
 lib64objc2 - Runtime library for GNU Objective-C applications (64bit)
 lib64objc2-dbg - Runtime library for GNU Objective-C applications (64 bit 
debug sy
 lib64stdc++6 - The GNU Standard C++ Library v3 (64bit)
 lib64stdc++6-4.4-dbg - The GNU Standard C++ Library v3 (debugging files)
 libgcc1- GCC support library
 libgcc1-dbg - GCC support library (debug symbols)
 libgcc2- GCC support library
 libgcc2-dbg - GCC support library (debug symbols)
 libgcc4- GCC support library
 libgcc4-dbg - GCC support library (debug symbols)
 libgfortran3 - Runtime library for GNU Fortran applications
 libgfortran3-dbg - Runtime library for GNU Fortran applications (debug symbols)
 libgomp1   - GCC OpenMP (GOMP) support library
 libgomp1-dbg - GCC OpenMP (GOMP) support library (debug symbols)
 libmudflap0 - GCC mudflap shared support libraries
 libmudflap0-4.4-dev - GCC mudflap support libraries (development files)
 libmudflap0-dbg - GCC mudflap shared support libraries (debug symbols)
 libn32gcc1 - GCC support library (n32)
 libn32gcc1-dbg - GCC support library (debug symbols)
 libn32gfortran3 

Accepted scheme9 2009.05.03-1 (source amd64)

2009-05-04 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 11:34:27 +0100
Source: scheme9
Binary: scheme9
Architecture: source amd64
Version: 2009.05.03-1
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 scheme9- Scheme 9 from Empty Space R4RS Scheme interpreter
Changes: 
 scheme9 (2009.05.03-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 aa4be0cd777eaf16c5f740cda0d4a977af85e540 1141 scheme9_2009.05.03-1.dsc
 f861b730f2c4d9110fe3416aca91cefe3f57c006 146477 scheme9_2009.05.03.orig.tar.gz
 b6acdfbf6b5e1f5454552161bff0e27f0d25c440 10890 scheme9_2009.05.03-1.diff.gz
 b8b4d495697da20cceecdd6d26413a4eb69f9c44 469946 scheme9_2009.05.03-1_amd64.deb
Checksums-Sha256: 
 c9c23953741475f44629c1d5fb6c9a45ef1f582a80175d1c84b86b4ad1497ddb 1141 
scheme9_2009.05.03-1.dsc
 62642d1096c65274c7fb4e6949e8072b639379e3f6ec4b0afb776f29d948c349 146477 
scheme9_2009.05.03.orig.tar.gz
 21a3a9202196f056e7dffd3167d9174fa34961b44c02dc2b1dd28fb01200e2c8 10890 
scheme9_2009.05.03-1.diff.gz
 b6cdd59c0996c67e2c23570d1798917bc787a1b30d208c3d273f2d16a14afa2b 469946 
scheme9_2009.05.03-1_amd64.deb
Files: 
 999345b4d452bc94eb6eef2b63157e8e 1141 lisp extra scheme9_2009.05.03-1.dsc
 7a3be90794efdbce9da5b3b29217cb2f 146477 lisp extra 
scheme9_2009.05.03.orig.tar.gz
 756f263d4a4d7d0146526f18c2851ac7 10890 lisp extra scheme9_2009.05.03-1.diff.gz
 53b5f8fc45d6365876f0cf8afcb0a5f4 469946 lisp extra 
scheme9_2009.05.03-1_amd64.deb

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

iEYEARECAAYFAkn+xlQACgkQLz4Gnv7CP7LjngCcCloNkdIEraa+FOG41YP0X7yb
7YgAoLmcj7Jo0ZopEXXwh3IrXKeouPnj
=JmWx
-END PGP SIGNATURE-


Accepted:
scheme9_2009.05.03-1.diff.gz
  to pool/main/s/scheme9/scheme9_2009.05.03-1.diff.gz
scheme9_2009.05.03-1.dsc
  to pool/main/s/scheme9/scheme9_2009.05.03-1.dsc
scheme9_2009.05.03-1_amd64.deb
  to pool/main/s/scheme9/scheme9_2009.05.03-1_amd64.deb
scheme9_2009.05.03.orig.tar.gz
  to pool/main/s/scheme9/scheme9_2009.05.03.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted firebird2.0 2.0.5.13206-0.ds2-3 (source all amd64)

2009-05-04 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 11:17:29 +0300
Source: firebird2.0
Binary: firebird2.0-super firebird2.0-classic libfbembed2 firebird2.0-common 
firebird2.0-server-common firebird2.0-dev firebird2.0-examples firebird2.0-doc
Architecture: source all amd64
Version: 2.0.5.13206-0.ds2-3
Distribution: unstable
Urgency: low
Maintainer: Debian Firebird Group pkg-firebird-gene...@lists.alioth.debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 firebird2.0-classic - Firebird Classic Server - an RDBMS based on InterBase 
6.0 code
 firebird2.0-common - common files for firebird 2.0 servers and clients
 firebird2.0-dev - Development files for Firebird - an RDBMS based on InterBase 
6.0 
 firebird2.0-doc - Documentation files for firebird database version 2.0
 firebird2.0-examples - Examples for Firebird - an RDBMS based on InterBase 6.0 
code
 firebird2.0-server-common - common files for firebird 2.0 servers
 firebird2.0-super - Firebird Super Server - an RDBMS based on InterBase 6.0 
code
 libfbembed2 - Firebird embedded client/server library
Changes: 
 firebird2.0 (2.0.5.13206-0.ds2-3) unstable; urgency=low
 .
   * change Section to database
Checksums-Sha1: 
 307de0964fbe6eb1ae3afc4f40250914bfdba0e6 1714 
firebird2.0_2.0.5.13206-0.ds2-3.dsc
 5ea650c007731080e7a9f51a3ccf381cb6de9418 115097 
firebird2.0_2.0.5.13206-0.ds2-3.diff.gz
 13efdff612960916c581708f3f1a8798aad6609c 453452 
firebird2.0-dev_2.0.5.13206-0.ds2-3_all.deb
 fbe5bd51a6d8db72ef143f4624cc02f106a21f3f 551718 
firebird2.0-examples_2.0.5.13206-0.ds2-3_all.deb
 b65361fbcc57e1f1c74e373e25622bf0542c0716 1320132 
firebird2.0-doc_2.0.5.13206-0.ds2-3_all.deb
 b971a5eea22a83a80d893cd6e7040c4dbd4f58ac 2844870 
firebird2.0-super_2.0.5.13206-0.ds2-3_amd64.deb
 d5e83f3a55a0287efead861161178eb91e4cefe9 1754722 
firebird2.0-classic_2.0.5.13206-0.ds2-3_amd64.deb
 a8a07355b0ba3ab95449d8ecaf8d0b97c114c9d2 1492872 
libfbembed2_2.0.5.13206-0.ds2-3_amd64.deb
 52783038e4643d02cbee76d24c6c4cdd068bb9f6 791096 
firebird2.0-common_2.0.5.13206-0.ds2-3_amd64.deb
 b90ac43f43334a2062ddbaf92932cba8c0f7da4d 520804 
firebird2.0-server-common_2.0.5.13206-0.ds2-3_amd64.deb
Checksums-Sha256: 
 acd8a987d5e7f7b22a97dd4bd86b0ca5dbcee7bb8ecf64a3f4f4016d00974629 1714 
firebird2.0_2.0.5.13206-0.ds2-3.dsc
 b2ef2d181a66701f1ed000e090aaec0149b8d16e2e2afb83b781f7f2c5730e9a 115097 
firebird2.0_2.0.5.13206-0.ds2-3.diff.gz
 a654a443be170554ad2e5aba68c879625ee3dca0c9eea6d343ef5a81ae4c118e 453452 
firebird2.0-dev_2.0.5.13206-0.ds2-3_all.deb
 1eba4ba0298e94b77ec3183bed6e53aad6a8356fba0e574c3efb294e8b7eb75d 551718 
firebird2.0-examples_2.0.5.13206-0.ds2-3_all.deb
 6833c2bf96d2d7a8cccf2b73fd7c78cbb8bd7e5598cbd990cc3fe89132da9cae 1320132 
firebird2.0-doc_2.0.5.13206-0.ds2-3_all.deb
 866be8501c63ff0c34b7910ccf8d82abed78d72178ac7b280f39ceedc5912d60 2844870 
firebird2.0-super_2.0.5.13206-0.ds2-3_amd64.deb
 3b501a0a73ed7ae7f505aa4a0724657fd6fa3d9c03c2cccf29bf70932fdc6612 1754722 
firebird2.0-classic_2.0.5.13206-0.ds2-3_amd64.deb
 ff46455e1b4b35062c7f0420ca421fd5fae6ebfc4b77848b67798ead50758334 1492872 
libfbembed2_2.0.5.13206-0.ds2-3_amd64.deb
 fca324e2b88beaf221aaaedad93dc18c1de8894fcae159cdfee86ca5145c53a6 791096 
firebird2.0-common_2.0.5.13206-0.ds2-3_amd64.deb
 dd3b448a3b7c3a4eff6613bece110f6782d7f8b5096790986c57eeb74f2064e0 520804 
firebird2.0-server-common_2.0.5.13206-0.ds2-3_amd64.deb
Files: 
 6f682566dffa197e9de9217794321e34 1714 database optional 
firebird2.0_2.0.5.13206-0.ds2-3.dsc
 b0b27523b56c4f912a91def84ffce8c1 115097 database optional 
firebird2.0_2.0.5.13206-0.ds2-3.diff.gz
 f264c91456338517b7ce89044ed5bccf 453452 libdevel optional 
firebird2.0-dev_2.0.5.13206-0.ds2-3_all.deb
 347218122cab91d5a45727c77979bcba 551718 doc optional 
firebird2.0-examples_2.0.5.13206-0.ds2-3_all.deb
 647c4d48f0e7bde5a2fcd3109b9d4866 1320132 doc optional 
firebird2.0-doc_2.0.5.13206-0.ds2-3_all.deb
 10e10e57b469d3e50667da4fd1806858 2844870 database optional 
firebird2.0-super_2.0.5.13206-0.ds2-3_amd64.deb
 29bae5fc2a6a608ba81735852b5c71b0 1754722 database optional 
firebird2.0-classic_2.0.5.13206-0.ds2-3_amd64.deb
 48e1beaf0f6068a05d65509834fb5fd9 1492872 libs optional 
libfbembed2_2.0.5.13206-0.ds2-3_amd64.deb
 885255ecbb6fee910b6094ae71534672 791096 database optional 
firebird2.0-common_2.0.5.13206-0.ds2-3_amd64.deb
 d26e2a8ad2b31af65a81180dda5e7f01 520804 database optional 
firebird2.0-server-common_2.0.5.13206-0.ds2-3_amd64.deb

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

iEYEARECAAYFAkn+tSkACgkQHqjlqpcl9jsXnACeNA+0bLBL4zGlpUmVhSdTqy0S
FkEAnjdOlKOHPXm6P/SL6d10EX0/txZl
=E38Z
-END PGP SIGNATURE-


Accepted:
firebird2.0-classic_2.0.5.13206-0.ds2-3_amd64.deb
  to pool/main/f/firebird2.0/firebird2.0-classic_2.0.5.13206-0.ds2-3_amd64.deb
firebird2.0-common_2.0.5.13206-0.ds2-3_amd64.deb
  to pool/main/f/firebird2.0/firebird2.0-common_2.0.5.13206-0.ds2-3_amd64.deb
firebird2.0-dev_2.0.5.13206-0.ds2-3_all.deb
  to 

Accepted sane-backends 1.0.20-1 (source amd64)

2009-05-04 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 12:45:50 +0200
Source: sane-backends
Binary: sane-utils libsane libsane-dev libsane-dbg
Architecture: source amd64
Version: 1.0.20-1
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE jbla...@debian.org
Changed-By: Julien BLACHE jbla...@debian.org
Description: 
 libsane- API library for scanners
 libsane-dbg - API development library for scanners [debug symbols]
 libsane-dev - API development library for scanners [development files]
 sane-utils - API library for scanners -- utilities
Changes: 
 sane-backends (1.0.20-1) unstable; urgency=low
 .
   * New upstream release.
 .
   * debian/control:
 + Bump Standards-Version to 3.8.1 (no changes).
 + Add build-dep on libv4l-dev.
 + Add dependency on libv4l-dev to libsane-dev.
 + Move libsane-dbg to debug section.
   * debian/rules:
 + Use DESTDIR at install time.
 + Remove rpath from sane-find-scanner.
 .
   * debian/patches/01_missing_pthreads.dpatch:
 + Added; new build system breaks build when using pthreads.
   * debian/patches/02_frontends_libs.dpatch:
 + Added; only link the frontends with the libraries they need.
   * debian/patches/03_libsane_deps.dpatch:
 + Added; reduce libsane.so deps to the bare minimum.
 .
   * debian/patches/11_minimum_linkage.dpatch:
 + Removed; build system was redone using automake and this isn't
   needed anymore.
   * debian/patches/12_new_configure.dpatch:
 + Removed; not needed anymore, due to #11 going away.
 .
   * debian/patches/21_sane-config.in_no_rpath.dpatch:
 + Updated; updated for new build system.
   * debian/patches/23_unneeded_doc.dpatch:
 + Updated; updated for new build system.
 .
   * debian/patches/22_dll_backend_conf.dpatch:
 + Updated; dll.d support has been merged upstream, update dll.conf header.
 .
   * debian/patches/01_manpages_fixes.dpatch, 02_pixma_update.dpatch,
 03_snapscan_usb_ftok_fix.dpatch, 04_sane-desc_hal_new.dpatch,
 05_hp_timing_fix.dpatch, 06_sanei_scsi_attach_fix.dpatch,
 07_epson2_be_nice.dpatch, 08_epson2_be_nice_to_saned.dpatch,
 09_avision_fixes.dpatch, 10_sm3840_unbreak_sane_open.dpatch,
 30_new_saned.dpatch, 31_sanei_pthread_64bit_fix.dpatch,
 32_net_backend_standard_fix.dpatch, 33_scanimage_options_fix.dpatch,
 40_fujitsu_fixes.dpatch, 41_epjitsu_fixes.dpatch:
 + Removed; fixes and enhancements taken from upstream or merged upstream
   in this release.
Checksums-Sha1: 
 ca8f766a3b61eadf48fff133d191d875febb94c0 1445 sane-backends_1.0.20-1.dsc
 3b4d2ecde8be404bb44269771cf5dc6e4c10b086 4760873 
sane-backends_1.0.20.orig.tar.gz
 f8f48af1c716da5101f3d628310255e712b1bb14 42924 sane-backends_1.0.20-1.diff.gz
 d40b51937387f070707948ec5a4a00ccedfe99e7 244238 sane-utils_1.0.20-1_amd64.deb
 d807f27f92e49e9843274671076d2514c3c817ee 4147046 libsane_1.0.20-1_amd64.deb
 72a06eb65fb6be4719ced629108e7c9bd8bf4806 3882782 libsane-dev_1.0.20-1_amd64.deb
 4d449d85db12d142109707430f9f770e14d72b5f 4338330 libsane-dbg_1.0.20-1_amd64.deb
Checksums-Sha256: 
 fd473c5143b55722aec42a3e68e375fe53cf6a40b1d6e282b18a33814c1e2e0d 1445 
sane-backends_1.0.20-1.dsc
 8fb1531e6192b9cfe2f44a020b881d78a13f05426b46263cfbe7fc2507ae3d3a 4760873 
sane-backends_1.0.20.orig.tar.gz
 ad683bfda2e0c22286e47d12e2a256f8401defeeb1e228ce2cf1fa7c702792e5 42924 
sane-backends_1.0.20-1.diff.gz
 98d03470edf05f464cb1f341175952f0c03e4eba720ead12d001cb563ee46904 244238 
sane-utils_1.0.20-1_amd64.deb
 09d96f3a65a910fa8d7fa30756e96563aaeae0064a24582998b9f42d2985c6c0 4147046 
libsane_1.0.20-1_amd64.deb
 790eac9512d05390ad4cabcad71d1088b03cafe4a6e66d86b17e56dd0f339d8f 3882782 
libsane-dev_1.0.20-1_amd64.deb
 d135a4e7f17c6af78dca27306aaf80218bf003b74b41f1a6ad2176f562cfdb36 4338330 
libsane-dbg_1.0.20-1_amd64.deb
Files: 
 5bfdd6e76e90d59962d7f40e391ed40b 1445 graphics optional 
sane-backends_1.0.20-1.dsc
 a0cfdfdebca2feb4f2ba5d3418b15a42 4760873 graphics optional 
sane-backends_1.0.20.orig.tar.gz
 b0fc4e7606dbfc98c04e0df4b079b511 42924 graphics optional 
sane-backends_1.0.20-1.diff.gz
 b6aca15a2aa1777cac44548bee5d9a93 244238 graphics optional 
sane-utils_1.0.20-1_amd64.deb
 a8fe7c812312a649dac596fd51a311fd 4147046 libs optional 
libsane_1.0.20-1_amd64.deb
 e9bf874d6969b71d3966e14ef46c11cb 3882782 libdevel optional 
libsane-dev_1.0.20-1_amd64.deb
 74a8b44bfee04d3aa4ee190d24101ecd 4338330 debug extra 
libsane-dbg_1.0.20-1_amd64.deb

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

iD8DBQFJ/slfzWFP1/XWUWkRAmHQAJ4zcIZQFtUBD7o6juQRaANWANFZ+wCghfG0
ZPXNPNTznorzX+DbdclOKps=
=T6ED
-END PGP SIGNATURE-


Accepted:
libsane-dbg_1.0.20-1_amd64.deb
  to pool/main/s/sane-backends/libsane-dbg_1.0.20-1_amd64.deb
libsane-dev_1.0.20-1_amd64.deb
  to pool/main/s/sane-backends/libsane-dev_1.0.20-1_amd64.deb
libsane_1.0.20-1_amd64.deb
  to pool/main/s/sane-backends/libsane_1.0.20-1_amd64.deb
sane-backends_1.0.20-1.diff.gz
  to 

Accepted wink 1.5.1060-8 (source i386)

2009-05-04 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 13:32:48 +0200
Source: wink
Binary: wink
Architecture: source i386
Version: 1.5.1060-8
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 wink   - Tutorial and Presentation Creating Software
Changes: 
 wink (1.5.1060-8) unstable; urgency=low
 .
   * Using correct rfc-2822 date formats in changelog.
   * Upgrading package to standards 3.8.1.
   * Updating rules file to current state of the art.
   * Updating year in copyright file.
   * Updating descriptive texts in menu file.
   * Using more standard name in debian directory for local additions.
Checksums-Sha1: 
 0ab2e57ad3d5a024f53df269b36a4d694045ce34 1129 wink_1.5.1060-8.dsc
 9a22bf9b46f8b955eabce69461385bea60bca0b3 10401 wink_1.5.1060-8.diff.gz
 d7b305776816061a74ed411d97c81d7205962cf1 2996064 wink_1.5.1060-8_i386.deb
Checksums-Sha256: 
 d38d83a3b73346dcf1ea67a5112ab8706726cbe7b8bd43ff6b57dfed893bb315 1129 
wink_1.5.1060-8.dsc
 711ad3b1330704ef052f992f82be175849c0a289cb86fd558c3c7fb0f3df03f1 10401 
wink_1.5.1060-8.diff.gz
 8575a81c4dc10cb1319f9f14978f22d2d0e79767c10cd5d4991adcc1e289460b 2996064 
wink_1.5.1060-8_i386.deb
Files: 
 b25a0cbdb397aaf463ef19fdff6c77c6 1129 non-free/graphics optional 
wink_1.5.1060-8.dsc
 5bfa1ebf6713af201bab18d7d73e134d 10401 non-free/graphics optional 
wink_1.5.1060-8.diff.gz
 f105691a5f76228cea6b9a03d3d4b370 2996064 non-free/graphics optional 
wink_1.5.1060-8_i386.deb

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

iEYEARECAAYFAkn+0xQACgkQ+C5cwEsrK56u5ACg0WeDhVr113q934LyVhP1yCNd
kVkAn1HDbFV/5JR+Vp6DzLjGQtUdp1gn
=3O5q
-END PGP SIGNATURE-


Accepted:
wink_1.5.1060-8.diff.gz
  to pool/non-free/w/wink/wink_1.5.1060-8.diff.gz
wink_1.5.1060-8.dsc
  to pool/non-free/w/wink/wink_1.5.1060-8.dsc
wink_1.5.1060-8_i386.deb
  to pool/non-free/w/wink/wink_1.5.1060-8_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted mopd 1:2.5.3-17 (source i386)

2009-05-04 Thread Christine Caulfield
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 13:04:43 +0100
Source: mopd
Binary: mopd
Architecture: source i386
Version: 1:2.5.3-17
Distribution: unstable
Urgency: low
Maintainer: Christine Caulfield christine.caulfi...@googlemail.com
Changed-By: Christine Caulfield christine.caulfi...@googlemail.com
Description: 
 mopd   - Maintenance Operations Protocol loader daemon
Closes: 526367
Changes: 
 mopd (1:2.5.3-17) unstable; urgency=low
 .
   * Incude binaries in the package! Oops.
 Closes: #526367
Checksums-Sha1: 
 36259e9926d20623d6b7a0f6b715d5ab70e0b31a 967 mopd_2.5.3-17.dsc
 47ce2abc53fb6eb2b32e2130414c7c338a235a89 61804 mopd_2.5.3-17.diff.gz
 bce78b2d40ff0284956f11f10a9b291acf2286c2 60328 mopd_2.5.3-17_i386.deb
Checksums-Sha256: 
 1916b66e1835f7dfa0d0d36776545c7d32b4a2deaa75919e92836ff850f65d36 967 
mopd_2.5.3-17.dsc
 c8b6a595b4057baae2bf67a673414a8c4b9802b4c2937a007345ee0713244fed 61804 
mopd_2.5.3-17.diff.gz
 0502a06a41b1932a72979669cb1d385f014f8fb7798c95676c551d7c4596cae7 60328 
mopd_2.5.3-17_i386.deb
Files: 
 2c70a35df0b6af5561f325bfe2501109 967 net extra mopd_2.5.3-17.dsc
 d48dada2fbe7472689792e69539e9b6e 61804 net extra mopd_2.5.3-17.diff.gz
 cac4c10c059a1e1ff99c112e9fad47f1 60328 net extra mopd_2.5.3-17_i386.deb

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

iEYEARECAAYFAkn+5uYACgkQhej7/PCycROnBQCgl8mSAG61tKb8Tm1JiALU414D
OTcAnjkPwytuYDe9FUBbO11P40f1zZMF
=k5m1
-END PGP SIGNATURE-


Accepted:
mopd_2.5.3-17.diff.gz
  to pool/main/m/mopd/mopd_2.5.3-17.diff.gz
mopd_2.5.3-17.dsc
  to pool/main/m/mopd/mopd_2.5.3-17.dsc
mopd_2.5.3-17_i386.deb
  to pool/main/m/mopd/mopd_2.5.3-17_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted ispell-et 1:20030606-12 (source all i386)

2009-05-04 Thread Martin-Éric Racine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 07:31:44 +0300
Source: ispell-et
Binary: iestonian myspell-et aspell-et
Architecture: source all i386
Version: 1:20030606-12
Distribution: unstable
Urgency: low
Maintainer: Martin-Éric Racine q-f...@iki.fi
Changed-By: Martin-Éric Racine q-f...@iki.fi
Description: 
 aspell-et  - Estonian dictionary for Aspell
 iestonian  - Estonian dictionary for Ispell
 myspell-et - Estonian dictionary for MySpell
Changes: 
 ispell-et (1:20030606-12) unstable; urgency=low
 .
   * Fixed Lintian errors:
 W: command-with-path-in-maintainer-script
 W: maintainer-script-ignores-errors
 I: description-possibly-contains-homepage
 I: unused-override
   * Upgraded Standards-Version to 3.8.0:
 + Moved the upstream URL from Description to Homepage field.
Checksums-Sha1: 
 9ab34edaaf4037a9d82edb01dc48167336592c0b 1174 ispell-et_20030606-12.dsc
 266a36d4784f7e2d7be849a25140c15fa4fa611f 4682 ispell-et_20030606-12.diff.gz
 1fd33ebb521edc98fc324f29b5ce731e7ead80b2 883898 myspell-et_20030606-12_all.deb
 6f3336d989fbf9e9051369a5ae074f32f063acff 268430 aspell-et_20030606-12_all.deb
 f3df164554f0f988ca3688f26aceb3d4136bc56f 2512484 iestonian_20030606-12_i386.deb
Checksums-Sha256: 
 50dd49d1902d95d582263b0cf34a3fb81e2d4ef42e2bc857a74f8551501315b2 1174 
ispell-et_20030606-12.dsc
 3950f3413eb6ea90dce76e88961dcf22d58b5cd18824d93395fbb23b4f8058f1 4682 
ispell-et_20030606-12.diff.gz
 00bea669952d0926d4ce686c06263a4da813baa16b25e6a085690f5bf8071f01 883898 
myspell-et_20030606-12_all.deb
 7744d30c447979fd43964f0135bf0d57b3f7606bf728321f538699fbf58fb80d 268430 
aspell-et_20030606-12_all.deb
 0688af78c7ea150611bfd70c94a379de6fea553e49f419ee88e7e8b622cf86d8 2512484 
iestonian_20030606-12_i386.deb
Files: 
 b52ae5a2084eae4a8a85b4a522ac9552 1174 text optional ispell-et_20030606-12.dsc
 e5497fe90c5a8563e4ac656d9581e732 4682 text optional 
ispell-et_20030606-12.diff.gz
 a0f7cb1383fe67e4e3d20d5062eab1dc 883898 text optional 
myspell-et_20030606-12_all.deb
 4987ab7fcc5a070f5c82cfa86d4baf2c 268430 text optional 
aspell-et_20030606-12_all.deb
 1bf2a3a65397afed1d7691d80ae8a3f7 2512484 text optional 
iestonian_20030606-12_i386.deb

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

iEYEARECAAYFAkn+1+oACgkQDecnbV4Fd/IFFACgokYXiMukLiwmRMYMNE3Xr9IW
V6IAoLjbq8uinP/IdgEbB5/LVlYRRc9+
=harB
-END PGP SIGNATURE-


Accepted:
aspell-et_20030606-12_all.deb
  to pool/main/i/ispell-et/aspell-et_20030606-12_all.deb
iestonian_20030606-12_i386.deb
  to pool/main/i/ispell-et/iestonian_20030606-12_i386.deb
ispell-et_20030606-12.diff.gz
  to pool/main/i/ispell-et/ispell-et_20030606-12.diff.gz
ispell-et_20030606-12.dsc
  to pool/main/i/ispell-et/ispell-et_20030606-12.dsc
myspell-et_20030606-12_all.deb
  to pool/main/i/ispell-et/myspell-et_20030606-12_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted myspell-lv 0.7.3-3 (source all)

2009-05-04 Thread Martin-Éric Racine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 06:47:37 +0300
Source: myspell-lv
Binary: myspell-lv aspell-lv
Architecture: source all
Version: 0.7.3-3
Distribution: unstable
Urgency: low
Maintainer: Aigars Mahinovs aigar...@debian.org
Changed-By: Martin-Éric Racine q-f...@iki.fi
Description: 
 aspell-lv  - Latvian dictionary for Aspell
 myspell-lv - Latvian dictionary for Myspell
Changes: 
 myspell-lv (0.7.3-3) unstable; urgency=low
 .
   * Fixed Lintian errors:
 W: command-with-path-in-maintainer-script
 W: maintainer-script-ignores-errors
 I: unused-override
   * Upgraded Standards-Version to 3.8.0 (no change required).
Checksums-Sha1: 
 2d24a1569c43ee8d07a3e77aee38a5357b320f8a 1102 myspell-lv_0.7.3-3.dsc
 230a13be35b96b63b2476caaf698d086079014a1 7316 myspell-lv_0.7.3-3.diff.gz
 5b3916daaa7e0cea5b85172f8b05d532f582a840 885536 myspell-lv_0.7.3-3_all.deb
 af60f17e8acc31fc989700e026be89affd626974 509796 aspell-lv_0.7.3-3_all.deb
Checksums-Sha256: 
 0cefa570bb8373b0a8e799091fa0c55e10ab07ba551209b8c491f9de049f212d 1102 
myspell-lv_0.7.3-3.dsc
 6a2fb7174429dff8bb8dadfe4a7db37ad53f662edc427bd6dcccfaf56e80086d 7316 
myspell-lv_0.7.3-3.diff.gz
 9e640e4ca912a3174f715f13602bf6b6b6a598a5651d0b1bb8533e8c67ede363 885536 
myspell-lv_0.7.3-3_all.deb
 a9037abb0334419593ca7e65dad1d5ab57cea5f9b432732c45f8408f84c7cd4a 509796 
aspell-lv_0.7.3-3_all.deb
Files: 
 7b50f4e870cbc1d12df73877b2a8f5fa 1102 text optional myspell-lv_0.7.3-3.dsc
 fed7c265f63bb0e267e287d6657823ce 7316 text optional myspell-lv_0.7.3-3.diff.gz
 6a6247bcebdf1ab8cecc40e51518d23f 885536 text optional 
myspell-lv_0.7.3-3_all.deb
 3168e675cb7125aa6ed14c0e9aa48d2d 509796 text optional aspell-lv_0.7.3-3_all.deb

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

iEYEARECAAYFAkn+11EACgkQDecnbV4Fd/IAUgCg7qJ0cALzvRf/cfwMMFXDI258
VtoAoMBqgwyUCJ/gJVpKSSy414r+k2u5
=7kEV
-END PGP SIGNATURE-


Accepted:
aspell-lv_0.7.3-3_all.deb
  to pool/main/m/myspell-lv/aspell-lv_0.7.3-3_all.deb
myspell-lv_0.7.3-3.diff.gz
  to pool/main/m/myspell-lv/myspell-lv_0.7.3-3.diff.gz
myspell-lv_0.7.3-3.dsc
  to pool/main/m/myspell-lv/myspell-lv_0.7.3-3.dsc
myspell-lv_0.7.3-3_all.deb
  to pool/main/m/myspell-lv/myspell-lv_0.7.3-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted subvertpy 0.6.6-1 (source i386)

2009-05-04 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 14:29:53 +0200
Source: subvertpy
Binary: python-subvertpy
Architecture: source i386
Version: 0.6.6-1
Distribution: unstable
Urgency: low
Maintainer: Jelmer Vernooij jel...@debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 python-subvertpy - Alternative Python bindings for Subversion
Changes: 
 subvertpy (0.6.6-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump standards version to 3.8.1.
Checksums-Sha1: 
 635aec080eeb04acfabb25bb82030b0aadd19f82 1296 subvertpy_0.6.6-1.dsc
 d96d858075f4636bcb734e697f70935359156924 71502 subvertpy_0.6.6.orig.tar.gz
 a299b1b7b9132e073b9ad7af2ea43006b29dc337 1296 subvertpy_0.6.6-1.diff.gz
 647366e30be47e62a8a3e875566fe829df551d36 181342 
python-subvertpy_0.6.6-1_i386.deb
Checksums-Sha256: 
 35c5bda6fdd2df249e0137e9f09902a74a2559df6e8e2e7b628568d175b25867 1296 
subvertpy_0.6.6-1.dsc
 3b8e94530fee8b1c982a7dec4bb45ae2bfe8c852371a90d8a14dfa831031 71502 
subvertpy_0.6.6.orig.tar.gz
 6cef8c89a801c2a6abdd5d927176021304b06495ecdea82eea021d9cb98008f5 1296 
subvertpy_0.6.6-1.diff.gz
 e7efcdeb1c26944590fad694a7add5ebc7f4c4b8aaf6671d0046091460290c45 181342 
python-subvertpy_0.6.6-1_i386.deb
Files: 
 6935fb78eca6fec589e6a1093a463597 1296 python optional subvertpy_0.6.6-1.dsc
 1977a2fb68fa1e28985a81ea58b6d22a 71502 python optional 
subvertpy_0.6.6.orig.tar.gz
 ec1be81dfcfae831b2cbdce714e88205 1296 python optional subvertpy_0.6.6-1.diff.gz
 774ce918ae8d417801510d9b9eb86c1a 181342 python optional 
python-subvertpy_0.6.6-1_i386.deb

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

iJwEAQECAAYFAkn+4XwACgkQDLQl4QYPZuWz2gQAmtkVRofVKBq99h/8DYNq2Zar
xOyNAENgKsb1XBmTF7gx6UGKYjhiMi/hBTnsLIv+0Ta65YE7IFHFSuPcEwPkv2RQ
FSVjrHH3MzOSj5iiAFRtHpuQFk3wjbkRSpy294P8YgIVz4pWIRRYmAcY2UoPuPNS
9GChs+YyZ4vtOS/6MAI=
=XGIz
-END PGP SIGNATURE-


Accepted:
python-subvertpy_0.6.6-1_i386.deb
  to pool/main/s/subvertpy/python-subvertpy_0.6.6-1_i386.deb
subvertpy_0.6.6-1.diff.gz
  to pool/main/s/subvertpy/subvertpy_0.6.6-1.diff.gz
subvertpy_0.6.6-1.dsc
  to pool/main/s/subvertpy/subvertpy_0.6.6-1.dsc
subvertpy_0.6.6.orig.tar.gz
  to pool/main/s/subvertpy/subvertpy_0.6.6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted glade-3 3.6.3-1 (source all amd64)

2009-05-04 Thread Deng Xiyue
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Apr 2009 13:07:35 +0800
Source: glade-3
Binary: libgladeui-1-9 libgladeui-1-dev glade glade-gnome
Architecture: source all amd64
Version: 3.6.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Deng Xiyue manphiz-gu...@users.alioth.debian.org
Description: 
 glade  - GTK+ 2 User Interface Builder
 glade-gnome - GTK+ 2 User Interface Builder (with GNOME 2 support)
 libgladeui-1-9 - GTK+ User Interface Build core library
 libgladeui-1-dev - GTK+ User Interface Build core library (development files)
Changes: 
 glade-3 (3.6.3-1) unstable; urgency=low
 .
   * New upstream stable release.
   * Add python-support to handle python module.
   * Upload to unstable.
 + Allow distribution unstable in debian/rules.
 + Track unstable branch in VCS-* URLs.
Checksums-Sha1: 
 362cf1e90be243330f6d60a376375e170fc4573e 1753 glade-3_3.6.3-1.dsc
 33d4aabd8d89a0d3c2418df15a2f1cc61fc85714 3327987 glade-3_3.6.3.orig.tar.gz
 cb5d7f71f9a08a0286adbe03f541f32c858326a3 17691 glade-3_3.6.3-1.diff.gz
 4a7363355862d67f019125634b5b7ac8c265260b 317490 
libgladeui-1-dev_3.6.3-1_all.deb
 01ef6bdbc3b2d8216108699378800a7d3fc4750e 1757694 
libgladeui-1-9_3.6.3-1_amd64.deb
 1c7e83a49e445bc176b3c517806c4e819cfe17b1 878504 glade_3.6.3-1_amd64.deb
 c72e65c229a8c577d5230ce2629a761c0ab84d63 176504 glade-gnome_3.6.3-1_amd64.deb
Checksums-Sha256: 
 ac910c013a8bbb936b1a6118ff549ef18208dde32f532f501d44a713cd477869 1753 
glade-3_3.6.3-1.dsc
 562002e735dd5fd27ec53f0c8fe8279ee3f7bf36e13e50bef08199e9b5d2b418 3327987 
glade-3_3.6.3.orig.tar.gz
 ae213fec5ac3d20634fcac39b5ff8d7e86fde738c76c50b17e069d1665a96b10 17691 
glade-3_3.6.3-1.diff.gz
 3e8b89dff65f29e8f7abf40140d474191673b703073dfe6b9589530f0dbbd4dd 317490 
libgladeui-1-dev_3.6.3-1_all.deb
 25a6279477757dbf8ee4e418b9067ff7df5efe6209f4fc4e2aac02aa6b1e2b6c 1757694 
libgladeui-1-9_3.6.3-1_amd64.deb
 938540d09a1a8b33e95456fcf81a8cdf605ba6ca9e84eeed8af5303535e8213e 878504 
glade_3.6.3-1_amd64.deb
 13ff91de39d2c95bf2b5801b2f1e6d84ba7c0e59dae9b56c2d645fedd0057714 176504 
glade-gnome_3.6.3-1_amd64.deb
Files: 
 a6244b0a1cc0bf78ae0bf71ae83e286f 1753 gnome optional glade-3_3.6.3-1.dsc
 077d26c5f0fd0721ecc5f7b11aab68ec 3327987 gnome optional 
glade-3_3.6.3.orig.tar.gz
 46547d2b52d383997cb66b9722eb00ed 17691 gnome optional glade-3_3.6.3-1.diff.gz
 7df29a6d52df0e718c2ab743c83c2e97 317490 libdevel optional 
libgladeui-1-dev_3.6.3-1_all.deb
 9a41f3a687ccfb23bf4fccdf3078217c 1757694 libdevel optional 
libgladeui-1-9_3.6.3-1_amd64.deb
 30adf47e3b40506fb633428c96cd797b 878504 devel optional glade_3.6.3-1_amd64.deb
 68202aa5297ebf234315d3bbcbc46328 176504 gnome optional 
glade-gnome_3.6.3-1_amd64.deb

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

iD8DBQFJ/u9brSla4ddfhTMRApJ/AKD27z/wQwH8F30R88ZeYNTGy0BsVQCg1PgA
8/wV72ufPPYn+ijYDffoeyw=
=NtxY
-END PGP SIGNATURE-


Accepted:
glade-3_3.6.3-1.diff.gz
  to pool/main/g/glade-3/glade-3_3.6.3-1.diff.gz
glade-3_3.6.3-1.dsc
  to pool/main/g/glade-3/glade-3_3.6.3-1.dsc
glade-3_3.6.3.orig.tar.gz
  to pool/main/g/glade-3/glade-3_3.6.3.orig.tar.gz
glade-gnome_3.6.3-1_amd64.deb
  to pool/main/g/glade-3/glade-gnome_3.6.3-1_amd64.deb
glade_3.6.3-1_amd64.deb
  to pool/main/g/glade-3/glade_3.6.3-1_amd64.deb
libgladeui-1-9_3.6.3-1_amd64.deb
  to pool/main/g/glade-3/libgladeui-1-9_3.6.3-1_amd64.deb
libgladeui-1-dev_3.6.3-1_all.deb
  to pool/main/g/glade-3/libgladeui-1-dev_3.6.3-1_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted farsight2 0.0.9-2 (source all amd64)

2009-05-04 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 16:36:13 +0200
Source: farsight2
Binary: libgstfarsight0.10-0 libgstfarsight0.10-dev libgstfarsight0.10-doc 
libgstfarsight0.10-dbg python-farsight
Architecture: source all amd64
Version: 0.0.9-2
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers 
pkg-telepathy-maintain...@lists.alioth.debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 libgstfarsight0.10-0 - Audio/Video communications framework: core library
 libgstfarsight0.10-dbg - Audio/Video communications framework: debugging 
symbols
 libgstfarsight0.10-dev - Audio/Video communications framework: development 
files
 libgstfarsight0.10-doc - Audio/Video communications framework: documentation
 python-farsight - Audio/Video communications framework: Python bindings
Changes: 
 farsight2 (0.0.9-2) unstable; urgency=low
 .
   * debian/control:
 - Drop gstreamer0.10-plugins-farsight dependency for libgstfarsight0.10-0
 - Bump gstreamer0.10-plugins-bad dependency
 - Use correct magic for py-central
Checksums-Sha1: 
 b7b23fef0e2816dc192384f5137b9570c0cafdcf 1732 farsight2_0.0.9-2.dsc
 113941e8bf042285eda9680855c96e8c6685c786 4585 farsight2_0.0.9-2.diff.gz
 166b97bc96ea749420c1e340fdec78b626ecf769 177330 
libgstfarsight0.10-doc_0.0.9-2_all.deb
 54ba36c3cd17ca045427e4e60a7457fbb8051d0a 274212 
libgstfarsight0.10-0_0.0.9-2_amd64.deb
 759686f794df2f3c8cd1798f458eb8394fda4b0e 153390 
libgstfarsight0.10-dev_0.0.9-2_amd64.deb
 ce7a61ec2496b21254473697616ef2695b8f7d5b 528290 
libgstfarsight0.10-dbg_0.0.9-2_amd64.deb
 14c514a9d460bdbdd48987491f3c100d409c301a 129956 
python-farsight_0.0.9-2_amd64.deb
Checksums-Sha256: 
 d0ebc3bb5108277493733d58a07c20080c2a057a9b511602160a1d9359049ca6 1732 
farsight2_0.0.9-2.dsc
 e80472e4e7394398399dd10c7e27578ff20c8c18ae95acb4b6ee044ded44371d 4585 
farsight2_0.0.9-2.diff.gz
 efae903430d0b797ebdac47fe757d4eb001bad70e8c6f67e61f0f02cc6e44037 177330 
libgstfarsight0.10-doc_0.0.9-2_all.deb
 45dd2c52be11d2d24b6e84662b8562b7a950040440b68e8d48d0b82fd6f48d97 274212 
libgstfarsight0.10-0_0.0.9-2_amd64.deb
 37bbe961552774622ac19196f2d8b562b257fe362b23adabe072404e0295da0a 153390 
libgstfarsight0.10-dev_0.0.9-2_amd64.deb
 559286f5a4a0bb357eeb0233657e8078c7b886f84c0319b344005500f33cd000 528290 
libgstfarsight0.10-dbg_0.0.9-2_amd64.deb
 54b7caf2ba157f596f941f94a7ef4421f1c819fcb619751392ef73ffa59e5723 129956 
python-farsight_0.0.9-2_amd64.deb
Files: 
 dd7670429f2f9c5dd794d562b6d2bc18 1732 libs optional farsight2_0.0.9-2.dsc
 eedb8a43c05f8f39a791d663ab993e48 4585 libs optional farsight2_0.0.9-2.diff.gz
 f7ff54fc523fe7b02b6ac1ccdc6e9dd0 177330 doc optional 
libgstfarsight0.10-doc_0.0.9-2_all.deb
 ec943b4cafd73499c99bc19a21f2f9ce 274212 libs optional 
libgstfarsight0.10-0_0.0.9-2_amd64.deb
 d580d5655be602e4e0e5db03defefa56 153390 libdevel optional 
libgstfarsight0.10-dev_0.0.9-2_amd64.deb
 3f1009b6d01de441c32304b7794e4287 528290 debug extra 
libgstfarsight0.10-dbg_0.0.9-2_amd64.deb
 2475fc9347379e30574e165efc2f3aba 129956 python extra 
python-farsight_0.0.9-2_amd64.deb

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

iEYEARECAAYFAkn+/sEACgkQdkeBByM7nqCqQQCfT3zDJ+ZGVJcsg++5ctUFZRto
gA0AniSKLG3n4y8OHkYoPT9HOiDMNM6s
=mR51
-END PGP SIGNATURE-


Accepted:
farsight2_0.0.9-2.diff.gz
  to pool/main/f/farsight2/farsight2_0.0.9-2.diff.gz
farsight2_0.0.9-2.dsc
  to pool/main/f/farsight2/farsight2_0.0.9-2.dsc
libgstfarsight0.10-0_0.0.9-2_amd64.deb
  to pool/main/f/farsight2/libgstfarsight0.10-0_0.0.9-2_amd64.deb
libgstfarsight0.10-dbg_0.0.9-2_amd64.deb
  to pool/main/f/farsight2/libgstfarsight0.10-dbg_0.0.9-2_amd64.deb
libgstfarsight0.10-dev_0.0.9-2_amd64.deb
  to pool/main/f/farsight2/libgstfarsight0.10-dev_0.0.9-2_amd64.deb
libgstfarsight0.10-doc_0.0.9-2_all.deb
  to pool/main/f/farsight2/libgstfarsight0.10-doc_0.0.9-2_all.deb
python-farsight_0.0.9-2_amd64.deb
  to pool/main/f/farsight2/python-farsight_0.0.9-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted kover 1:4-4 (source powerpc)

2009-05-04 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 16:01:28 +0200
Source: kover
Binary: kover
Architecture: source powerpc
Version: 1:4-4
Distribution: unstable
Urgency: low
Maintainer: Ubuntu MOTU Developers ubuntu-m...@lists.ubuntu.com
Changed-By: Rene Engelhard r...@debian.org
Description: 
 kover  - WYSIWYG CD cover printer
Closes: 524183
Changes: 
 kover (1:4-4) unstable; urgency=low
 .
   * currenty install koverui.rc into /usr/share/kde4/apps/kover
 (closes: #524183)
Checksums-Sha1: 
 e0c2c5a2b0bdda645048ebe72f6b2eb780bcb719 1069 kover_4-4.dsc
 f16b98711ab5b7af16fd883650a909bdb751d52b 6163 kover_4-4.diff.gz
 8d03e4323f24634a34b63e5c73193598f9224e0b 129836 kover_4-4_powerpc.deb
Checksums-Sha256: 
 31c36285eae25d912273e897afe0cb2e553731dec6e223cffa6624d95f51175d 1069 
kover_4-4.dsc
 a3a38aa3f66a4b9b256bb219e2097527e6aa6596fa8246986580ec05c4874b3c 6163 
kover_4-4.diff.gz
 4211507a2b633680a48f8bf7f40bb0cfaded2824cee19eaa2d624a521bf3d3b9 129836 
kover_4-4_powerpc.deb
Files: 
 8c2117fea9a1b42fbd75137c8903623a 1069 graphics optional kover_4-4.dsc
 54ae1956571c206bc0e1c565de56fc26 6163 graphics optional kover_4-4.diff.gz
 ecd9fc47fecb8a4e4218c41eb7710d92 129836 graphics optional kover_4-4_powerpc.deb
Original-Maintainer: Rene Engelhard r...@debian.org

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

iD8DBQFJ/vyQ+FmQsCSK63MRAvpKAJ9oGkKm0jGg3gM2xHsdy6z2KYsocgCfRsGx
dtSTfpwMUWe9ZK40SUTq0Ds=
=tk1l
-END PGP SIGNATURE-


Accepted:
kover_4-4.diff.gz
  to pool/main/k/kover/kover_4-4.diff.gz
kover_4-4.dsc
  to pool/main/k/kover/kover_4-4.dsc
kover_4-4_powerpc.deb
  to pool/main/k/kover/kover_4-4_powerpc.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted librra 0.13-2 (source i386)

2009-05-04 Thread Jonny Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 16:35:34 +0100
Source: librra
Binary: librra-dev librra-dbg librra0 librra-tools python-rra
Architecture: source i386
Version: 0.13-2
Distribution: unstable
Urgency: low
Maintainer: jo...@debian.org
Changed-By: Jonny Lamb jo...@debian.org
Description: 
 librra-dbg - Library for synchronisation with Windows Mobile devices: debug sy
 librra-dev - Library for synchronisation with Windows Mobile devices: dev file
 librra-tools - Library for synchronisation with Windows Mobile devices (tools)
 librra0- Library for synchronisation with Windows Mobile devices
 python-rra - Library for syncing with Windows Mobile devices (Python bindings)
Closes: 525512
Changes: 
 librra (0.13-2) unstable; urgency=low
 .
   * debian/gbp.conf: Removed no-create-orig line.
   * debian/rules: Update to support python 2.6. (Closes: #525512)
   * debian/control:
 + Changed librra-dbg Section to debug.
 + Added autotools-dev Build-Dep.
Checksums-Sha1: 
 ab6359318a0ad6f31334e9cb78a702011d468a56 1381 librra_0.13-2.dsc
 75b43400241e26506901dfbbeeb1e40ad604c64a 5277 librra_0.13-2.diff.gz
 1a33aaf58265220aa37af85ad8b30ce6645b2208 74248 librra-dev_0.13-2_i386.deb
 e838af77e1ff7a13e08bfc1fa56f715fc90b9468 176056 librra-dbg_0.13-2_i386.deb
 04a75cb9c33b21929657f9f237c1bf0753c6e744 63388 librra0_0.13-2_i386.deb
 346f8d2eac0d283422498c9b4deddc4d266e 32266 librra-tools_0.13-2_i386.deb
 77b9b3b2405db262a25ce2d4b3f5f92e18257258 29762 python-rra_0.13-2_i386.deb
Checksums-Sha256: 
 71ad76452ac8c1dbb0bfb01a83cea9472d16e9110f6f06d36172254476d9711d 1381 
librra_0.13-2.dsc
 5efffb88603a7099244ba331a8d9c6f753fdf31d70ee3bab9cdd2e335aa72529 5277 
librra_0.13-2.diff.gz
 ad62a49dca448a3ebaea2bc1216059d3236f5db61a4b146b09b5db4cce00bf9a 74248 
librra-dev_0.13-2_i386.deb
 f04ccf20ffdfcd3c711f23bc1093b3251df48e86adb35c28c3ac5ff4bfe151ed 176056 
librra-dbg_0.13-2_i386.deb
 80e835ae65a897f5eecc325ec829e5d877abaa4fba3002215c00a88f82543d4f 63388 
librra0_0.13-2_i386.deb
 46c3229a8cdba1f612660a1a87e4a1a23a09287815777d43ee7bf3c978b3266e 32266 
librra-tools_0.13-2_i386.deb
 36f393af7ab0799a204861f83b38947ab8a979c71fedc9b901d667a57d4a4fa7 29762 
python-rra_0.13-2_i386.deb
Files: 
 12d67f62d9a1453f7fe22885e67a991c 1381 libs optional librra_0.13-2.dsc
 cbb16abc2a3f44a4f8e95ed71b4dd4cb 5277 libs optional librra_0.13-2.diff.gz
 0da6e806e0aebd0ca889de6e3d9a1895 74248 libdevel optional 
librra-dev_0.13-2_i386.deb
 869f9c914a58780094f22256d2c2eaa0 176056 debug extra librra-dbg_0.13-2_i386.deb
 12d3e5a72f6f9abf73dc53e366b19e4b 63388 libs optional librra0_0.13-2_i386.deb
 9e58fdc2e1f7541e4dd6f7ee2ef99c64 32266 libs optional 
librra-tools_0.13-2_i386.deb
 e842bd267b13dd916feb8a06835b2951 29762 python optional 
python-rra_0.13-2_i386.deb

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

iEYEARECAAYFAkn/DQ0ACgkQwYr7ny4DlAIt7ACeKWypkG1D+qjulMbJi/NSBn4l
aH8An1cXGHNpCQcIDeoIRjhB2c533ZDl
=SgQ+
-END PGP SIGNATURE-


Accepted:
librra-dbg_0.13-2_i386.deb
  to pool/main/libr/librra/librra-dbg_0.13-2_i386.deb
librra-dev_0.13-2_i386.deb
  to pool/main/libr/librra/librra-dev_0.13-2_i386.deb
librra-tools_0.13-2_i386.deb
  to pool/main/libr/librra/librra-tools_0.13-2_i386.deb
librra0_0.13-2_i386.deb
  to pool/main/libr/librra/librra0_0.13-2_i386.deb
librra_0.13-2.diff.gz
  to pool/main/libr/librra/librra_0.13-2.diff.gz
librra_0.13-2.dsc
  to pool/main/libr/librra/librra_0.13-2.dsc
python-rra_0.13-2_i386.deb
  to pool/main/libr/librra/python-rra_0.13-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted texlive-base 2007.dfsg.2-4 (source all)

2009-05-04 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 15:05:46 +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.dfsg.2-4
Distribution: unstable
Urgency: low
Maintainer: Debian TeX Maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
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: metapackage 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: 526903
Changes: 
 texlive-base (2007.dfsg.2-4) unstable; urgency=low
 .
   * add fixed font metric files for lcircle10 and lcirclew10
 (Closes: #526903) (also closes Ubuntu bug 371621)
Checksums-Sha1: 
 7d18320027e40168fee776ef470052cd9fa32046 1635 texlive-base_2007.dfsg.2-4.dsc
 4164fa42685db5f238204938a4c8a1dfa51d2ced 146453 
texlive-base_2007.dfsg.2-4.diff.gz
 28ae7e71f66597bc6fac274201508ef78fb9e766 6296726 
texlive-base_2007.dfsg.2-4_all.deb
 04f44c4a4a727f1e1810ee0582635024d282f6f3 453968 
texlive-generic-recommended_2007.dfsg.2-4_all.deb
 d26cc6c08ecb062b61a35190bb54c06b846b5920 1286536 
texlive-latex-base_2007.dfsg.2-4_all.deb
 4c8123a43bb383c013202ec4117e4575de4c7b27 1920150 
texlive-latex-recommended_2007.dfsg.2-4_all.deb
 72433afef26e7ffd311225afa1074925366855c6 7320280 
texlive-fonts-recommended_2007.dfsg.2-4_all.deb
 8bde1e69b23956ffd8422bfb1c6eb16f4863cf68 569704 
texlive-pictures_2007.dfsg.2-4_all.deb
 72ff8f7be9fe86e2978bf89b4ee99f364a509410 25824 texlive_2007.dfsg.2-4_all.deb
 e8b3233975cd1a0a662b8d876c18268d637f5532 26228 
texlive-full_2007.dfsg.2-4_all.deb
 a9759a61cbd9507b2e7ad377356d13e564f6d004 92896 
texlive-common_2007.dfsg.2-4_all.deb
 a05d2d3810470a74c6a72eedc12b4001b8e847c1 26074 tetex-bin_2007.dfsg.2-4_all.deb
 c46d2f8334a132d413c4d83d497f435abaf5d5ee 26706 tetex-base_2007.dfsg.2-4_all.deb
 e6c726bc9dbbe14951fb519e67ff22380f06c5aa 26918 
tetex-extra_2007.dfsg.2-4_all.deb
 012e167c88eb140bfa916a6107ec9da32cedab49 3860064 
texlive-pictures-doc_2007.dfsg.2-4_all.deb
 b59f834e48341a09863ad0cb0456cff24b2bbf26 2411154 
texlive-fonts-recommended-doc_2007.dfsg.2-4_all.deb
 e5913fe28679d41dc96a8df9f0a75dfe5b44afaa 25882394 
texlive-latex-base-doc_2007.dfsg.2-4_all.deb
 7ed1b32bfbeeabbd9dbbe475316ca48b2623904b 18101802 
texlive-latex-recommended-doc_2007.dfsg.2-4_all.deb
Checksums-Sha256: 
 cfe2581afed4c892f10613e04d8543e420d34aad6c6ce9164aa0af3cd359e6ee 1635 
texlive-base_2007.dfsg.2-4.dsc
 ca6458d7341647d7804440ea01bcaa5ed578dbcaeb44a3b976278aecfd212689 146453 
texlive-base_2007.dfsg.2-4.diff.gz
 0850f2594065baa77546baecc81908a6c964a0c4b9f2662dc3e7c5661e684c62 6296726 
texlive-base_2007.dfsg.2-4_all.deb
 5f957b40f0343862ab18338b912d2922999f3eea81701487b3a5ce39bc005a5f 453968 
texlive-generic-recommended_2007.dfsg.2-4_all.deb
 9449f815fe4aa92a3f702efb857c3bf6bb0b75ad1859a1bf8cc0baf93f839f77 1286536 
texlive-latex-base_2007.dfsg.2-4_all.deb
 f2bd6f2c4f8a1bbf953f21ea9a44b7331205b97719d3b396107baf1e9ca7baa9 1920150 
texlive-latex-recommended_2007.dfsg.2-4_all.deb
 4fd252f7fc86f38678b6fec69a2cc1da5fd208e58302c7c1836d4cc400e235f3 7320280 
texlive-fonts-recommended_2007.dfsg.2-4_all.deb
 3cba2e9a2fea94ced5d8514a86fd2369c693787131e668b94abd6b6f0ea5219f 569704 
texlive-pictures_2007.dfsg.2-4_all.deb
 63434035efea2074df43f96d02fc965dd649c3e79915968f3271433ccbd50a25 25824 
texlive_2007.dfsg.2-4_all.deb
 60add3735c2310860f4370e312bd6811312b6df82ecf16d8ada5f0deee919f32 26228 
texlive-full_2007.dfsg.2-4_all.deb
 dba9a5da98c5c6dbdb3da8f9d18123dc435be87e6ee6cd06b3e531f140914557 92896 
texlive-common_2007.dfsg.2-4_all.deb
 790ca3a394bbe8219108dec054c46c20c7071a39cf0c5e30bbf1fd6fdf497888 26074 
tetex-bin_2007.dfsg.2-4_all.deb
 c4cb53ceb747bed6df80a8db979539fdeab4a787f7a326e68d8f4211324bd8d9 26706 
tetex-base_2007.dfsg.2-4_all.deb
 

Accepted poker-engine 1.3.3-2 (source all)

2009-05-04 Thread OuoU
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 29 Apr 2009 03:20:32 +0200
Source: poker-engine
Binary: python-poker-engine
Architecture: source all
Version: 1.3.3-2
Distribution: unstable
Urgency: low
Maintainer: Loic Dachary (OuoU) l...@debian.org
Changed-By: Loic Dachary (OuoU) l...@debian.org
Description: 
 python-poker-engine - multiplayer poker engine with abstract variants 
specifications
Closes: 526578
Changes: 
 poker-engine (1.3.3-2) unstable; urgency=low
 .
   * add procps to build depends (Closes: #526578)
Checksums-Sha1: 
 dfe19d1de80891cde584daa0ace56218e3823439 1204 poker-engine_1.3.3-2.dsc
 e42a232a25b25ea3f62041aad2e44c53e22aabdd 4109 poker-engine_1.3.3-2.diff.gz
 8247d7d9da779ba98933963ee738235ecd4c26ef 95008 
python-poker-engine_1.3.3-2_all.deb
Checksums-Sha256: 
 2726f45aa8b476e43e36482f1c88bc9b762f7ef5a7baab5c06f3630b3a497f4a 1204 
poker-engine_1.3.3-2.dsc
 417725a4a9c9fb3fa50af50da0961fc570123c793c35a8a3dec34ba7be9b 4109 
poker-engine_1.3.3-2.diff.gz
 d870967fe9b9a6abfb9f99ae74a96612f3d7d7a2744697d80bcc375e9d6de878 95008 
python-poker-engine_1.3.3-2_all.deb
Files: 
 dd8a91da7051d8d9b43d52aa7607b063 1204 python optional poker-engine_1.3.3-2.dsc
 6749491ea2af01d7b8dafe8c366c38db 4109 python optional 
poker-engine_1.3.3-2.diff.gz
 38928575c906d01c0eec5cfab2581e2b 95008 python optional 
python-poker-engine_1.3.3-2_all.deb

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

iEYEARECAAYFAkn32hQACgkQ8dLMyEl6F23G8ACZAUHyIVBNHyUYBTm4mG5CGuHM
E5kAoJwGXzMgwrC1YqgcmaH8DG8Ip875
=QhPb
-END PGP SIGNATURE-


Accepted:
poker-engine_1.3.3-2.diff.gz
  to pool/main/p/poker-engine/poker-engine_1.3.3-2.diff.gz
poker-engine_1.3.3-2.dsc
  to pool/main/p/poker-engine/poker-engine_1.3.3-2.dsc
python-poker-engine_1.3.3-2_all.deb
  to pool/main/p/poker-engine/python-poker-engine_1.3.3-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted qt4-x11 4.5.1-2 (source all amd64 i386)

2009-05-04 Thread Debian Qt/KDE Maintainers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 14:22:26 +0200
Source: qt4-x11
Binary: libqtcore4 libqt4-core libqtgui4 libqt4-gui libqt4-network 
libqt4-opengl libqt4-script libqt4-scripttools 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-opengl-dev libqt4-dbg libqt4-webkit-dbg 
libqt4-xmlpatterns-dbg qt4-designer qt4-dev-tools qt4-qmake qt4-qtconfig 
qt4-demos qt4-doc qt4-doc-html
Architecture: all amd64 i386 source 
Version: 4.5.1-2
Distribution: unstable
Urgency: low
Maintainer: Fathi Boudra f...@debian.org
Changed-By: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Closes: 525570 525707
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 - transitional package for Qt 4 GUI runtime libraries
 libqt4-help - Qt 4 help module
 libqt4-network - Qt 4 network module
 libqt4-opengl-dev - Qt 4 OpenGL library development files
 libqt4-opengl - Qt 4 OpenGL module
 libqt4-qt3support - Qt 3 compatibility library for Qt 4
 libqt4-script - Qt 4 script module
 libqt4-scripttools - Qt 4 script tools 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 - Qt 4 SQL module
 libqt4-sql-sqlite2 - Qt 4 SQLite 2 database driver
 libqt4-sql-sqlite - Qt 4 SQLite 3 database driver
 libqt4-svg - Qt 4 SVG module
 libqt4-test - Qt 4 test module
 libqt4-webkit-dbg - Qt 4 WebKit library debugging symbols
 libqt4-webkit - Qt 4 WebKit module
 libqt4-xmlpatterns-dbg - Qt 4 XML patterns library debugging symbols
 libqt4-xmlpatterns - Qt 4 XML patterns module
 libqt4-xml - Qt 4 XML module
 libqtcore4 - Qt 4 core module
 libqtgui4  - Qt 4 GUI module
 qt4-demos  - Qt 4 examples and demos
 qt4-designer - graphical designer for Qt 4 applications
 qt4-dev-tools - Qt 4 development tools
 qt4-doc-html - Qt 4 API documentation (HTML format)
 qt4-doc- Qt 4 API documentation
 qt4-qmake  - Qt 4 qmake Makefile generator tool
 qt4-qtconfig - Qt 4 configuration tool
Changes:
 qt4-x11 (4.5.1-2) unstable; urgency=low
 .
   +++ Changes by Fathi Boudra:
 .
   * Update debian/rules:
 - Build with -opensource configure option to avoid Qt edition question
   triggered on some build setups caused by a bug in configure script.
   (Closes: #525570)
   * Add patch:
 - 21_fix_quiloader_wrong_header_translated.diff
   The header of the QTableWidgets loaded with QUiLoader are not
   translated when the language change. This patch fix the issue.
 .
   +++ Changes by Aurelien Jarno:
 .
   * Add patch:
 - 20_mips_atomic_ops.diff
   Set the mips instruction set to MIPS II around ll/sc in
   qatomic_mips.h. (Closes: #525707)
Checksums-Sha1: 
 0008f3e038e45d1ff6bb0f4265b778a41896c7ff 500600 libqt4-script_4.5.1-2_amd64.deb
 0243929d54fcb13c8c0b3cb0e0229d26068b653d 44070 
libqt4-opengl-dev_4.5.1-2_amd64.deb
 0590fb140aae1dc09a74c9dabf4288cc394b765c 29021364 qt4-doc-html_4.5.1-2_all.deb
 0fd049d80abce613e020a671ef7c8dda86f53e4f 249200 libqt4-dbus_4.5.1-2_i386.deb
 158ca1d27ebb5c1cb3a9ba00753031b15eda3375 250104 libqt4-dbus_4.5.1-2_amd64.deb
 15f9c19f82a362dc51d4a2c8bf198425ee11d761 73702 libqt4-sql-odbc_4.5.1-2_i386.deb
 1c673dc0cc194127b0d708a6330626d0d6948d71 40852 
libqt4-assistant_4.5.1-2_i386.deb
 1d253bf9cbda1f65c841f27ef78b8d47ad7c9156 56662 
libqt4-sql-mysql_4.5.1-2_amd64.deb
 1e4d8929c25fe584298f2977ea84597efe72adbf 2143456 libqtcore4_4.5.1-2_amd64.deb
 271bcb3b229199ad76f8b6aae4fdfd7b5dcf106b 106615238 libqt4-dbg_4.5.1-2_amd64.deb
 2d0c53355ea9e4efe29b8a0a55ae4016f88702e7 29174 libqt4-gui_4.5.1-2_amd64.deb
 2da232b07825b05883c171bc1f8f5da5204c4124 105235482 libqt4-dbg_4.5.1-2_i386.deb
 2ef0c325226060d1bd55bcef2213cba0f1ba01c6 2473450 qt4-dev-tools_4.5.1-2_i386.deb
 329755fb3b242217551d35808b921f2b453d2418 76760 libqt4-test_4.5.1-2_amd64.deb
 460f294ed98fe7ccbc76ab57b798a27dd512141d 48514 
libqt4-sql-sqlite_4.5.1-2_amd64.deb
 4833577d087cedc8d40617fbf3f8c37769865c58 4710706 libqtgui4_4.5.1-2_i386.deb
 48b6ef86f0fd9f8583cf32f3385f1a49c578cbd2 16784868 
libqt4-xmlpatterns-dbg_4.5.1-2_i386.deb
 492436d137accb4453eb9926a597ca5ec8ee6e9b 504856 
libqt4-network_4.5.1-2_amd64.deb
 4a7010b0ead4e3c1acb4dc25292fa2334851436a 44528 
libqt4-sql-sqlite2_4.5.1-2_i386.deb
 4cbeab15c9dfd05fa3e914af905250076b35d1ad 44078 
libqt4-opengl-dev_4.5.1-2_i386.deb
 4cfeca1fe605a294e4aa38d2fce2e7e6baa9e691 75366 libqt4-test_4.5.1-2_i386.deb
 

Accepted acpid 1.0.10-2 (source amd64)

2009-05-04 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 14:41:24 +0200
Source: acpid
Binary: acpid
Architecture: source amd64
Version: 1.0.10-2
Distribution: unstable
Urgency: low
Maintainer: Debian Acpi Team pkg-acpi-de...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 acpid  - Utilities for using ACPI power management
Closes: 526665
Changes: 
 acpid (1.0.10-2) unstable; urgency=low
 .
   * Updated netlink patch to version 1.0.10-netlink2.
   * Added patch to make acpid compile with gcc 4.4, closes: #526665
Checksums-Sha1: 
 d86c7f120576473124333d7c36b1fe03f628460b 1272 acpid_1.0.10-2.dsc
 67ee419118add773be2f31532f0fd627fc3ee8f1 35642 acpid_1.0.10-2.diff.gz
 a1cf96c9c2d76efec2b5682c572305a5ce66e937 46796 acpid_1.0.10-2_amd64.deb
Checksums-Sha256: 
 b84438ab5e8eb3c02ee33bb91f8b032d357812765d8971b6ae98bed1a70ac993 1272 
acpid_1.0.10-2.dsc
 469e3d25aefd1daf2f0235f7798c1da027168dddc0b1a5bf38248464306dd14c 35642 
acpid_1.0.10-2.diff.gz
 3c45474c636ac7c0ba6363872f947475d17903f51acc137d12aa0dd25cd17769 46796 
acpid_1.0.10-2_amd64.deb
Files: 
 d22c2c0cde911d9692b9e391d7e4bfd7 1272 admin optional acpid_1.0.10-2.dsc
 41f29ad77c8b9e18bcd1265505f7c671 35642 admin optional acpid_1.0.10-2.diff.gz
 329694722971db610e6f859313b63c8f 46796 admin optional acpid_1.0.10-2_amd64.deb

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

iD8DBQFJ/vQiVkEm8inxm9ERAtenAJ9IRV7PROSL/aJ1cpCb8vqH5OBLqACfQ2Hb
2S1+p0gVjvHUW/FLXI75uew=
=0e0F
-END PGP SIGNATURE-


Accepted:
acpid_1.0.10-2.diff.gz
  to pool/main/a/acpid/acpid_1.0.10-2.diff.gz
acpid_1.0.10-2.dsc
  to pool/main/a/acpid/acpid_1.0.10-2.dsc
acpid_1.0.10-2_amd64.deb
  to pool/main/a/acpid/acpid_1.0.10-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted tora 2.0.0-4 (source amd64)

2009-05-04 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 16:12:37 +0200
Source: tora
Binary: tora
Architecture: source amd64
Version: 2.0.0-4
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 tora   - A graphical toolkit for database developers and administrators
Closes: 526166
Changes: 
 tora (2.0.0-4) unstable; urgency=low
 .
   * Added patch to add missing include directives, closes: #526166
Checksums-Sha1: 
 5d661f3781796576fe0dabbae58ab6e8f04309f9 1232 tora_2.0.0-4.dsc
 6ff1917f224002e54cfd0d15f5c807e2149c20eb 4435 tora_2.0.0-4.diff.gz
 6710c497c2942f71411f219c40627312fa582c01 4833446 tora_2.0.0-4_amd64.deb
Checksums-Sha256: 
 35015d74aa07a472d8bc8acce3e8aee4e8b9aebecb14622f2d2a33af884cc50b 1232 
tora_2.0.0-4.dsc
 2e2be6479c1bbc066a4526f585bbd0f3b391b9c9c7c4c9734f92ef4061519127 4435 
tora_2.0.0-4.diff.gz
 b6f942643b6a613edc2f6da89c4d493f571a4c231c4fc94b3657863eeb484b15 4833446 
tora_2.0.0-4_amd64.deb
Files: 
 f566fa58e59df99a99e54003e968840d 1232 misc optional tora_2.0.0-4.dsc
 011a8a5017c1ba74ecbaef52b135f87f 4435 misc optional tora_2.0.0-4.diff.gz
 ee1137ee690bb908ee13acce498abe7b 4833446 misc optional tora_2.0.0-4_amd64.deb

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

iD8DBQFJ/vwgVkEm8inxm9ERArT4AJ9zB5CsAc+bjy5kGeCzJUqa1I7A3ACfaga3
7CqelTWDwcH22NrL4312kZY=
=YKYX
-END PGP SIGNATURE-


Accepted:
tora_2.0.0-4.diff.gz
  to pool/main/t/tora/tora_2.0.0-4.diff.gz
tora_2.0.0-4.dsc
  to pool/main/t/tora/tora_2.0.0-4.dsc
tora_2.0.0-4_amd64.deb
  to pool/main/t/tora/tora_2.0.0-4_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted quagga 0.99.11-2 (source all amd64)

2009-05-04 Thread Florian Weimer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 10:10:13 +0200
Source: quagga
Binary: quagga quagga-doc
Architecture: source all amd64
Version: 0.99.11-2
Distribution: unstable
Urgency: high
Maintainer: Christian Hammers c...@debian.org
Changed-By: Florian Weimer f...@deneb.enyo.de
Description: 
 quagga - BGP/OSPF/RIP routing daemon
 quagga-doc - documentation files for quagga
Changes: 
 quagga (0.99.11-2) unstable; urgency=high
 .
   * Apply patch from Chris Caputo to fix AS4 crash.
   * Fix FTBFS due to changed ImageMagick convert command, option -dither.
Checksums-Sha1: 
 5846cd934a48147bc451ca6bae80cc3c762f60b4 1627 quagga_0.99.11-2.dsc
 e01b69b0c632f6304244b04052284ba45073faba 39561 quagga_0.99.11-2.diff.gz
 14b1972d59be6f0ef539d86a64a01bdc37f2f34b 661108 quagga-doc_0.99.11-2_all.deb
 cd46775da1313f35ea1ac4f5aeb86778fc3249a6 1714872 quagga_0.99.11-2_amd64.deb
Checksums-Sha256: 
 8dc538d4ca6993b22f7f74f7eadfa960933dee042799771f7a1f870984226161 1627 
quagga_0.99.11-2.dsc
 02fa081e95401a6f724a88d079af3ccc065295bba58a751a175acf1f5a4dad7b 39561 
quagga_0.99.11-2.diff.gz
 9af04783415eb1627e8fd9abe5294dca6180dab47e06630b3fbaf6295cedd877 661108 
quagga-doc_0.99.11-2_all.deb
 63992089b71b50b3c6d213f088487ee932deb1c115d6e322403586f21ff9993a 1714872 
quagga_0.99.11-2_amd64.deb
Files: 
 cf747fbc295673d9b807ccdef45d2bbd 1627 net optional quagga_0.99.11-2.dsc
 6f335d0206f4599b106966122236b769 39561 net optional quagga_0.99.11-2.diff.gz
 d17b9b2bbf388b2343811aa49623f4ba 661108 doc optional 
quagga-doc_0.99.11-2_all.deb
 72be72e753886268e75563f63f0cad21 1714872 net optional 
quagga_0.99.11-2_amd64.deb

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

iQEcBAEBAgAGBQJJ/xP4AAoJEL97/wQC1SS+7JoIAJ24L/otf5bS+mI4sbGa4bXs
W1zQ+d9evgJ+AeQ7k/rkeYuq7fw88mZUxYlSdE0sa1iC95ED54BVJtfJE9ayyF8s
0AGv/N61fC09K2Iyj1TXswIbbedUotAT5eNC91kT0fZVdC6VdSo/+uB9E1DWlX6Y
Zyqc9q0HTY8e3qQHhc0P6kibkO4PCS4uQSCPTZNexLH4xyv29Hg/5Rvknu2L5Jvs
UtwAtGlfuazqCxS/XN+bvX5L6zjcopU4/hBzmtjwpEflnvTsebiy/v9jLI3b+gyX
MhP5NbADMt9l/BZXut5kjj7JvoweVLeXKUFOZkgNwae4JpMLByqsvqwCE27mM7Y=
=SZ1x
-END PGP SIGNATURE-


Accepted:
quagga-doc_0.99.11-2_all.deb
  to pool/main/q/quagga/quagga-doc_0.99.11-2_all.deb
quagga_0.99.11-2.diff.gz
  to pool/main/q/quagga/quagga_0.99.11-2.diff.gz
quagga_0.99.11-2.dsc
  to pool/main/q/quagga/quagga_0.99.11-2.dsc
quagga_0.99.11-2_amd64.deb
  to pool/main/q/quagga/quagga_0.99.11-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted kover 1:4-5 (source powerpc)

2009-05-04 Thread Rene Engelhard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 18:20:15 +0200
Source: kover
Binary: kover
Architecture: source powerpc
Version: 1:4-5
Distribution: unstable
Urgency: high
Maintainer: Rene Engelhard r...@debian.org
Changed-By: Rene Engelhard r...@debian.org
Description: 
 kover  - WYSIWYG CD cover printer
Changes: 
 kover (1:4-5) unstable; urgency=high
 .
   * The .oO ( don't apply patches.u.c patches with patch -p0 ) release.
   * fix Maintainer:
Checksums-Sha1: 
 6df5e1d87b4664fd8ee431e5b781bf6881e88e43 994 kover_4-5.dsc
 30ba15907178281f55c8bf445d76c47e3ab7ba7d 6170 kover_4-5.diff.gz
 bc71d5f7528cc7819c30f277933b84f2b1406543 129834 kover_4-5_powerpc.deb
Checksums-Sha256: 
 d8c7d15ee8fd1ea4fc90d29c19364938be2b7913ebd17b50428032033d4ce5f4 994 
kover_4-5.dsc
 770f9c18d960e0efb07dbf8076c25aec1c8a0353c44424d6e5dacc5db587b5c2 6170 
kover_4-5.diff.gz
 eb7f4989d39f9170097127228dc71364815dd5cffbdfede16cc1a8f09fb91210 129834 
kover_4-5_powerpc.deb
Files: 
 8dd282a9f5741d691d6683b28b3b36f3 994 graphics optional kover_4-5.dsc
 c19a1cf86a0272f6b3c01e32ae4196de 6170 graphics optional kover_4-5.diff.gz
 428e9528b7bf6a53a9947ed387ccfa95 129834 graphics optional kover_4-5_powerpc.deb

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

iD8DBQFJ/xqv+FmQsCSK63MRAsaGAJoDXRhy3lg9uGz3ik2Jgd46qtJ2TwCfRP4J
5JDLlHnpqRWOUxGnf1Xr9lM=
=sLRs
-END PGP SIGNATURE-


Accepted:
kover_4-5.diff.gz
  to pool/main/k/kover/kover_4-5.diff.gz
kover_4-5.dsc
  to pool/main/k/kover/kover_4-5.dsc
kover_4-5_powerpc.deb
  to pool/main/k/kover/kover_4-5_powerpc.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xserver-xorg-video-suncg14 1:1.1.1-1 (source sparc)

2009-05-04 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 18:51:03 +0200
Source: xserver-xorg-video-suncg14
Binary: xserver-xorg-video-suncg14
Architecture: source sparc
Version: 1:1.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-suncg14 - X.Org X server -- Sun CG14 display driver
Changes: 
 xserver-xorg-video-suncg14 (1:1.1.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Run autoreconf on build.
   * Allow parallel builds.
Checksums-Sha1: 
 bff089b24dbb33232225890d4da0a60bbfc0fc34 1557 
xserver-xorg-video-suncg14_1.1.1-1.dsc
 f0fa035fd59ca57c02e098b8bb1ee314bdb107c6 335187 
xserver-xorg-video-suncg14_1.1.1.orig.tar.gz
 b6ea5cdf2b92032c570fddb1992a005194d604fc 17774 
xserver-xorg-video-suncg14_1.1.1-1.diff.gz
 cc67b768a0ba590557b1f2c0e30219299ad00bd1 12022 
xserver-xorg-video-suncg14_1.1.1-1_sparc.deb
Checksums-Sha256: 
 412d9cd1c1419dca88051a42dcbd69e505a9acd69cb9b0ce160b6b96ed8d924b 1557 
xserver-xorg-video-suncg14_1.1.1-1.dsc
 15ac794c62266e2e89efc729ad4fa856d30990fca0202fafce4e3c8a78daeb3f 335187 
xserver-xorg-video-suncg14_1.1.1.orig.tar.gz
 3c64391afd9980e85b247aa1623fe5d7eafe77aced3f700f5ba12afccf4bf81e 17774 
xserver-xorg-video-suncg14_1.1.1-1.diff.gz
 99ae6e2f43b93d6434017948b3f249a32d0346f76a0ad53ecde8d01117efe21a 12022 
xserver-xorg-video-suncg14_1.1.1-1_sparc.deb
Files: 
 d95758b64b809e4c8534f1f80e46cb52 1557 x11 optional 
xserver-xorg-video-suncg14_1.1.1-1.dsc
 b6155e28a75477fd0c4f2e42428f50dd 335187 x11 optional 
xserver-xorg-video-suncg14_1.1.1.orig.tar.gz
 efcce73b0bb70f5998a1ef66e714bbc0 17774 x11 optional 
xserver-xorg-video-suncg14_1.1.1-1.diff.gz
 034f00c6d7389c367ee2edfd16ccfba0 12022 x11 optional 
xserver-xorg-video-suncg14_1.1.1-1_sparc.deb

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

iEYEARECAAYFAkn/HZ0ACgkQmEvTgKxfcAyeQwCgha/q5GUZFtQ7YbWIBqtHRu6K
xhYAn1bXjFyUS4pKFfYdhCC/JYx2lkZ7
=dyah
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-suncg14_1.1.1-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-suncg14/xserver-xorg-video-suncg14_1.1.1-1.diff.gz
xserver-xorg-video-suncg14_1.1.1-1.dsc
  to 
pool/main/x/xserver-xorg-video-suncg14/xserver-xorg-video-suncg14_1.1.1-1.dsc
xserver-xorg-video-suncg14_1.1.1-1_sparc.deb
  to 
pool/main/x/xserver-xorg-video-suncg14/xserver-xorg-video-suncg14_1.1.1-1_sparc.deb
xserver-xorg-video-suncg14_1.1.1.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-suncg14/xserver-xorg-video-suncg14_1.1.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xserver-xorg-video-sunffb 1:1.2.0-1 (source sparc)

2009-05-04 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 18:11:04 +0200
Source: xserver-xorg-video-sunffb
Binary: xserver-xorg-video-sunffb
Architecture: source sparc
Version: 1:1.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-sunffb - X.Org X server -- Sun FFB display driver
Changes: 
 xserver-xorg-video-sunffb (1:1.2.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Run autoreconf on build.
   * Allow builds with parallel=% in DEB_BUILD_OPTIONS.
   * Remove patch ffb_screeninitsegv.diff, included upstream.
   * Remove libdrm-dev and libgl-dev build-deps, DRI support has been removed.
Checksums-Sha1: 
 cf3d6bce20635c749c20cd0da06979fe8366e123 1621 
xserver-xorg-video-sunffb_1.2.0-1.dsc
 335062deaad8a2516d2f671742bb4e08aca1f334 380171 
xserver-xorg-video-sunffb_1.2.0.orig.tar.gz
 446de4ea1d2ece2dc9025562b58414abe67b2cbb 22311 
xserver-xorg-video-sunffb_1.2.0-1.diff.gz
 3f41e2780889f68fc0888089279dd9693c16b9d8 35070 
xserver-xorg-video-sunffb_1.2.0-1_sparc.deb
Checksums-Sha256: 
 48ce9985b955fcff57cc2fe80eefab6c396bd40c32f389ae8d7d8ffb5d749248 1621 
xserver-xorg-video-sunffb_1.2.0-1.dsc
 3e1f366ff3f8bafca19302aaa9003f43e7721b6c5393ccdc01c924451736a46a 380171 
xserver-xorg-video-sunffb_1.2.0.orig.tar.gz
 22488ad9c0f06db4cb09683b7dd157eb9e6215620a1f3c6a344cbb1acf7e6699 22311 
xserver-xorg-video-sunffb_1.2.0-1.diff.gz
 616d2347d383405ce0e8e4f72127d1c930bb0df006f5c8da75924e0c0649e6d2 35070 
xserver-xorg-video-sunffb_1.2.0-1_sparc.deb
Files: 
 afef5a004d0adc9ebf71506fcaa74f75 1621 x11 optional 
xserver-xorg-video-sunffb_1.2.0-1.dsc
 06c42ee6765e50d0ca3b75d8f56ac4f5 380171 x11 optional 
xserver-xorg-video-sunffb_1.2.0.orig.tar.gz
 afbfc84f8155a78d206dcc7cf862c116 22311 x11 optional 
xserver-xorg-video-sunffb_1.2.0-1.diff.gz
 03a2e6d54caf16430a18e55d48eff8be 35070 x11 optional 
xserver-xorg-video-sunffb_1.2.0-1_sparc.deb

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

iEYEARECAAYFAkn/HBAACgkQmEvTgKxfcAzDcgCfXkkP2hNibfjRT0K/pRXveq7l
uYcAn1xJnWIsmhOewRVUyEJZCrPx2tN/
=8YQw
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-sunffb_1.2.0-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-sunffb/xserver-xorg-video-sunffb_1.2.0-1.diff.gz
xserver-xorg-video-sunffb_1.2.0-1.dsc
  to pool/main/x/xserver-xorg-video-sunffb/xserver-xorg-video-sunffb_1.2.0-1.dsc
xserver-xorg-video-sunffb_1.2.0-1_sparc.deb
  to 
pool/main/x/xserver-xorg-video-sunffb/xserver-xorg-video-sunffb_1.2.0-1_sparc.deb
xserver-xorg-video-sunffb_1.2.0.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-sunffb/xserver-xorg-video-sunffb_1.2.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libmoose-perl 0.77-1 (source all)

2009-05-04 Thread Ryan Niebur
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 12:26:42 -0700
Source: libmoose-perl
Binary: libmoose-perl
Architecture: source all
Version: 0.77-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ryan Niebur ryanrya...@gmail.com
Description: 
 libmoose-perl - extension of the Perl 5 object system
Changes: 
 libmoose-perl (0.77-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 a8810b1219c0e192ecccb23b8892507c6a7506c2 1964 libmoose-perl_0.77-1.dsc
 34acc94c9fe6ce2126039877286b764bb6bcb9e8 315822 libmoose-perl_0.77.orig.tar.gz
 8981df8d17cc29778d87d1c03fce5cc3e50cc3b0 5196 libmoose-perl_0.77-1.diff.gz
 da8ae3443bb6abd7efda9fe1a9872a6f7929c003 536934 libmoose-perl_0.77-1_all.deb
Checksums-Sha256: 
 da052f88eb88354339bad6f32d043bcbd63ad05a6bf3b7da3ebc702219f522ed 1964 
libmoose-perl_0.77-1.dsc
 1ef88b25b167a31271320346d4e61dc0e904a8b0a02830c1a2d392f784ffc927 315822 
libmoose-perl_0.77.orig.tar.gz
 5fb0a8e201b033f4ecaac8a94be0cef7b6e96730de4ac46fda49809167ab74e1 5196 
libmoose-perl_0.77-1.diff.gz
 46be1820324cfcca1949ff60a433f071cda901197f2b62ba367e0060762cc921 536934 
libmoose-perl_0.77-1_all.deb
Files: 
 a58c5153e823bc45d1b834d00c6f2b65 1964 perl optional libmoose-perl_0.77-1.dsc
 9d358b02f8da995fc806883f463cea72 315822 perl optional 
libmoose-perl_0.77.orig.tar.gz
 67b609a983c392a9234c13d2b6ac2ebe 5196 perl optional 
libmoose-perl_0.77-1.diff.gz
 dbec07047486da1b925bed62a21a3e89 536934 perl optional 
libmoose-perl_0.77-1_all.deb

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

iEYEARECAAYFAkn/GzIACgkQOzKYnQDzz+QohgCdGLBLqtXsbyq3bhV+EKjG5Whp
ylMAoLrJULJVKUQFgrxdL7Z1HE2AdDTW
=RvTm
-END PGP SIGNATURE-


Accepted:
libmoose-perl_0.77-1.diff.gz
  to pool/main/libm/libmoose-perl/libmoose-perl_0.77-1.diff.gz
libmoose-perl_0.77-1.dsc
  to pool/main/libm/libmoose-perl/libmoose-perl_0.77-1.dsc
libmoose-perl_0.77-1_all.deb
  to pool/main/libm/libmoose-perl/libmoose-perl_0.77-1_all.deb
libmoose-perl_0.77.orig.tar.gz
  to pool/main/libm/libmoose-perl/libmoose-perl_0.77.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libmodule-install-perl 0.86-1 (source all)

2009-05-04 Thread Brian Cassidy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 10:08:45 -0300
Source: libmodule-install-perl
Binary: libmodule-install-perl
Architecture: source all
Version: 0.86-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Brian Cassidy brian.cass...@gmail.com
Description: 
 libmodule-install-perl - standalone and extensible Perl module installer
Changes: 
 libmodule-install-perl (0.86-1) unstable; urgency=low
 .
   * New upstream release
   * debian/control: added myself to Uploaders
Checksums-Sha1: 
 5686376f3efdc5c36d376bbf43eb0eddfa114a72 2118 libmodule-install-perl_0.86-1.dsc
 498f8e38b61c9f6721ffd7e1af3c3beac7f494ab 145669 
libmodule-install-perl_0.86.orig.tar.gz
 bd0ee4254f1508ed31200300c726be676dd6359c 4806 
libmodule-install-perl_0.86-1.diff.gz
 0912ef7223fffb65d52dcfa18bab9c7a7fdaf356 124726 
libmodule-install-perl_0.86-1_all.deb
Checksums-Sha256: 
 a842cb5654cf2dc0ded38ff97b940ce83f29574446fb3d2e78a252a15ab7273f 2118 
libmodule-install-perl_0.86-1.dsc
 9ec981cbd1b9eec32e2d87ce60a66aaea218b4d4da3bc260ca8c9a204c7dcc96 145669 
libmodule-install-perl_0.86.orig.tar.gz
 24d74b604b5f0d607854886eceda0f5dd0a5247b9e6f00dd09ee274436b0de85 4806 
libmodule-install-perl_0.86-1.diff.gz
 733ffbbd61ecd3882e4ced776451c5eafdb234543b929c690e7de6becb5ef3eb 124726 
libmodule-install-perl_0.86-1_all.deb
Files: 
 a264cb5d7db462f78a028d29b22a5ad4 2118 perl optional 
libmodule-install-perl_0.86-1.dsc
 973664d0cbeca7e88916853ca26a34ae 145669 perl optional 
libmodule-install-perl_0.86.orig.tar.gz
 dbbf33a49cbce5a8da4f9bd906a36e42 4806 perl optional 
libmodule-install-perl_0.86-1.diff.gz
 0f80533ddb2143a36b6d95b6018f1c28 124726 perl optional 
libmodule-install-perl_0.86-1_all.deb

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

iEYEARECAAYFAkn/GW4ACgkQOzKYnQDzz+QtFQCdH9Ov86vlTdHy5juba43dz3hJ
BQgAn3boJ0x2JuBlYg7hWarLw/l5YnBf
=aWLn
-END PGP SIGNATURE-


Accepted:
libmodule-install-perl_0.86-1.diff.gz
  to pool/main/libm/libmodule-install-perl/libmodule-install-perl_0.86-1.diff.gz
libmodule-install-perl_0.86-1.dsc
  to pool/main/libm/libmodule-install-perl/libmodule-install-perl_0.86-1.dsc
libmodule-install-perl_0.86-1_all.deb
  to pool/main/libm/libmodule-install-perl/libmodule-install-perl_0.86-1_all.deb
libmodule-install-perl_0.86.orig.tar.gz
  to 
pool/main/libm/libmodule-install-perl/libmodule-install-perl_0.86.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libmoosex-object-pluggable-perl 0.0011-1 (source all)

2009-05-04 Thread Brian Cassidy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 11:24:38 -0300
Source: libmoosex-object-pluggable-perl
Binary: libmoosex-object-pluggable-perl
Architecture: source all
Version: 0.0011-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Brian Cassidy brian.cass...@gmail.com
Description: 
 libmoosex-object-pluggable-perl - Perl module for adding plugin support to 
your Moose classes
Changes: 
 libmoosex-object-pluggable-perl (0.0011-1) unstable; urgency=low
 .
   [ Brian Cassidy ]
   * New upstream release
   * debian/control: Standards-Version to 3.8.1
 .
   [ gregor herrmann ]
   * debian/copyright: update years of copyright for files under inc/.
   * debian/control: mention module name in long description.
Checksums-Sha1: 
 d96e8d11703368232e83ec407b33d90d7f21d5e9 1691 
libmoosex-object-pluggable-perl_0.0011-1.dsc
 79a854f596c29073c831e1ec85e37b33724f86a9 25097 
libmoosex-object-pluggable-perl_0.0011.orig.tar.gz
 065795097f5be5a927d71092e789b7bbae6ede63 2554 
libmoosex-object-pluggable-perl_0.0011-1.diff.gz
 d08bcaccf0f96cb1bcee1f59b3faad6a172d1d93 12514 
libmoosex-object-pluggable-perl_0.0011-1_all.deb
Checksums-Sha256: 
 8e3e70b86ca717c24962d74203e06876611ab18c581629a25376980bc22299cd 1691 
libmoosex-object-pluggable-perl_0.0011-1.dsc
 c2625210482a40d32fa9f7e10b3abec823a87aa2e588d8d67a43dd16253af477 25097 
libmoosex-object-pluggable-perl_0.0011.orig.tar.gz
 0a4ecec219307f49d21b058089666d6196364c4a7d3141ce6839827301dff6bf 2554 
libmoosex-object-pluggable-perl_0.0011-1.diff.gz
 5ec677e09705c0c65d0fb95f1bae0a43646f60acbb0f8c1f73ea21822e1ea37a 12514 
libmoosex-object-pluggable-perl_0.0011-1_all.deb
Files: 
 fe9b0c03bf8b52eeda3a8025e92c095c 1691 perl optional 
libmoosex-object-pluggable-perl_0.0011-1.dsc
 ce3b5ffc6d05bdd77102488a85e401d1 25097 perl optional 
libmoosex-object-pluggable-perl_0.0011.orig.tar.gz
 c95371558969fec6a26a3002d082bc3d 2554 perl optional 
libmoosex-object-pluggable-perl_0.0011-1.diff.gz
 8e283a9ace591a2282b178e6b4412013 12514 perl optional 
libmoosex-object-pluggable-perl_0.0011-1_all.deb

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

iEYEARECAAYFAkn/HccACgkQOzKYnQDzz+T0fACeOHCPO3fUjHCl0PFLb9HN6PYD
bl0Anip34IupRXMOfs+gl1lTECZsXseR
=+mxv
-END PGP SIGNATURE-


Accepted:
libmoosex-object-pluggable-perl_0.0011-1.diff.gz
  to 
pool/main/libm/libmoosex-object-pluggable-perl/libmoosex-object-pluggable-perl_0.0011-1.diff.gz
libmoosex-object-pluggable-perl_0.0011-1.dsc
  to 
pool/main/libm/libmoosex-object-pluggable-perl/libmoosex-object-pluggable-perl_0.0011-1.dsc
libmoosex-object-pluggable-perl_0.0011-1_all.deb
  to 
pool/main/libm/libmoosex-object-pluggable-perl/libmoosex-object-pluggable-perl_0.0011-1_all.deb
libmoosex-object-pluggable-perl_0.0011.orig.tar.gz
  to 
pool/main/libm/libmoosex-object-pluggable-perl/libmoosex-object-pluggable-perl_0.0011.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xserver-xorg-video-suntcx 1:1.1.1-1 (source sparc)

2009-05-04 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 17:22:51 +0200
Source: xserver-xorg-video-suntcx
Binary: xserver-xorg-video-suntcx
Architecture: source sparc
Version: 1:1.1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-suntcx - X.Org X server -- Sun TCX display driver
Changes: 
 xserver-xorg-video-suntcx (1:1.1.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Run autoreconf on build.
   * Allow parallel=% in DEB_BUILD_OPTIONS.
Checksums-Sha1: 
 b52a9c3265279dd9d08e2cc62cfa5cdeab6c83fe 1547 
xserver-xorg-video-suntcx_1.1.1-1.dsc
 3409bff7113c4d6c68ff8ff1b2b730999c2fd1ab 337334 
xserver-xorg-video-suntcx_1.1.1.orig.tar.gz
 fa0fc6d7290ea8b9fd3e98b9145fc0f5062f86e9 18394 
xserver-xorg-video-suntcx_1.1.1-1.diff.gz
 c9bdab5c9651257c86dc455e952c691bd7a4684b 14014 
xserver-xorg-video-suntcx_1.1.1-1_sparc.deb
Checksums-Sha256: 
 eb6a811a85e3c1d7d36e448aec7c02f0a164c38592eb99c403e40bc3262836ed 1547 
xserver-xorg-video-suntcx_1.1.1-1.dsc
 a3f6bd7bbe28e344332c820c161e905a3201d23af54893d57ca7280ff3bea8eb 337334 
xserver-xorg-video-suntcx_1.1.1.orig.tar.gz
 e27b3f7ff3e2c465a3a857df725386e3dc1740771ec23e913cdc32298f6be68e 18394 
xserver-xorg-video-suntcx_1.1.1-1.diff.gz
 b14e1e193be8862ddaedf0d499c208eddd3041b584e3443fa0745a8ea646bc9f 14014 
xserver-xorg-video-suntcx_1.1.1-1_sparc.deb
Files: 
 35703209ddd590487bbd4917dae6babc 1547 x11 optional 
xserver-xorg-video-suntcx_1.1.1-1.dsc
 011d867f0d33dd7b74c0656f48a33842 337334 x11 optional 
xserver-xorg-video-suntcx_1.1.1.orig.tar.gz
 b0c7e2e896b274ec50ee6dd30b41f01d 18394 x11 optional 
xserver-xorg-video-suntcx_1.1.1-1.diff.gz
 0587184b621b19639e15d732b19f440f 14014 x11 optional 
xserver-xorg-video-suntcx_1.1.1-1_sparc.deb

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

iEYEARECAAYFAkn/HBEACgkQmEvTgKxfcAwf6ACgoXV+hPxil3yfTd/AWedvzZHX
vNoAn1Pk0GrUVWPjiiUVTeEyI/rgbG0t
=0ua8
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-suntcx_1.1.1-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-suntcx/xserver-xorg-video-suntcx_1.1.1-1.diff.gz
xserver-xorg-video-suntcx_1.1.1-1.dsc
  to pool/main/x/xserver-xorg-video-suntcx/xserver-xorg-video-suntcx_1.1.1-1.dsc
xserver-xorg-video-suntcx_1.1.1-1_sparc.deb
  to 
pool/main/x/xserver-xorg-video-suntcx/xserver-xorg-video-suntcx_1.1.1-1_sparc.deb
xserver-xorg-video-suntcx_1.1.1.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-suntcx/xserver-xorg-video-suntcx_1.1.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted scheme9 2009.05.03-2 (source amd64)

2009-05-04 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 17:48:42 +0100
Source: scheme9
Binary: scheme9
Architecture: source amd64
Version: 2009.05.03-2
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 scheme9- Scheme 9 from Empty Space R4RS Scheme interpreter
Changes: 
 scheme9 (2009.05.03-2) unstable; urgency=low
 .
   * remove debian-specific ./configure patch; hotwire debian/rules instead
Checksums-Sha1: 
 87ea58b6f46e002ea89d11c4287c90e148b6da30 1141 scheme9_2009.05.03-2.dsc
 c78ad15e73b4fe86004ef1f53ca3d9a5b801f5fb 10873 scheme9_2009.05.03-2.diff.gz
 59ccae70dd892dc02b773b6ca01d40f41e72af46 469860 scheme9_2009.05.03-2_amd64.deb
Checksums-Sha256: 
 003ccbe64082982de7b09ace070f6b59872f5441fcb5f76b40ccb4a128251982 1141 
scheme9_2009.05.03-2.dsc
 9f72d944ae47fa84c72791cb858e318becb08ee374f30b8b10c67688987d44f8 10873 
scheme9_2009.05.03-2.diff.gz
 78e07c89ad2c661fd98b9680c1c29888bfe3608434247ac5f3f20649516d4d8b 469860 
scheme9_2009.05.03-2_amd64.deb
Files: 
 224e52c6a04a3501373abb47d41e22fc 1141 lisp extra scheme9_2009.05.03-2.dsc
 9f8fffa3741eb3d22cea5a9eb39f99b8 10873 lisp extra scheme9_2009.05.03-2.diff.gz
 278d2c2f613f768599e64a1d33c52292 469860 lisp extra 
scheme9_2009.05.03-2_amd64.deb

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

iEYEARECAAYFAkn/HLsACgkQLz4Gnv7CP7KxwACgtyOxAwVtooTcJa/xICUXL9vI
k/sAnjAOunUVoR+eQvqfUCidrt3alvJK
=qJI+
-END PGP SIGNATURE-


Accepted:
scheme9_2009.05.03-2.diff.gz
  to pool/main/s/scheme9/scheme9_2009.05.03-2.diff.gz
scheme9_2009.05.03-2.dsc
  to pool/main/s/scheme9/scheme9_2009.05.03-2.dsc
scheme9_2009.05.03-2_amd64.deb
  to pool/main/s/scheme9/scheme9_2009.05.03-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xserver-xorg-video-sunleo 1:1.2.0-1 (source sparc)

2009-05-04 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 17:53:35 +0200
Source: xserver-xorg-video-sunleo
Binary: xserver-xorg-video-sunleo
Architecture: source sparc
Version: 1:1.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-sunleo - X.Org X server -- Sun Leo display driver
Changes: 
 xserver-xorg-video-sunleo (1:1.2.0-1) unstable; urgency=low
 .
   [ Timo Aaltonen ]
   * New upstream release.
   * Run autoreconf at build time; build-depend on automake, libtool and
 xutils-dev.
 .
   [ Julien Cristau ]
   * Allow parallel builds.
Checksums-Sha1: 
 63819e089ccf655bb70520f123e4144e37569d7b 1547 
xserver-xorg-video-sunleo_1.2.0-1.dsc
 7d865c23e61a1a60c56b321c1f353c035d237087 339968 
xserver-xorg-video-sunleo_1.2.0.orig.tar.gz
 c2a5855c2c65032d29922d16b2cc519beef95f1e 18467 
xserver-xorg-video-sunleo_1.2.0-1.diff.gz
 a067e7e64155b0606fbe0f5f442e3743050db3ee 19972 
xserver-xorg-video-sunleo_1.2.0-1_sparc.deb
Checksums-Sha256: 
 1835e893ced0e340f0db407c2600d757ee4c2925f2db9be06d2ac7f17ceda563 1547 
xserver-xorg-video-sunleo_1.2.0-1.dsc
 20db4f482b35cda6d8ea8e5795839149743599cb841ebe76fe476f254b64778b 339968 
xserver-xorg-video-sunleo_1.2.0.orig.tar.gz
 7833a2a6aa38f338a423e779f772ed6303ea296dceac48f8ea450f33fb63e3f0 18467 
xserver-xorg-video-sunleo_1.2.0-1.diff.gz
 932492215d3432911a30d9b9169b5f358a32e293c88a0bd21c43eed993b13535 19972 
xserver-xorg-video-sunleo_1.2.0-1_sparc.deb
Files: 
 8e5eb062142b6ecb9e86d30800fcc456 1547 x11 optional 
xserver-xorg-video-sunleo_1.2.0-1.dsc
 34956ac8ad60a3397a1557918184782b 339968 x11 optional 
xserver-xorg-video-sunleo_1.2.0.orig.tar.gz
 53817ac6b073e227e84a7ec25c184b90 18467 x11 optional 
xserver-xorg-video-sunleo_1.2.0-1.diff.gz
 1b514d66070f334697db4bbd59e602f0 19972 x11 optional 
xserver-xorg-video-sunleo_1.2.0-1_sparc.deb

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

iEYEARECAAYFAkn/HBAACgkQmEvTgKxfcAzgCwCgjKfh2lVb6pKIy07h2hhiuV3J
uOkAoMAZhFFysNPMVbp7Rbi1Xq5FaU2a
=edXq
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-sunleo_1.2.0-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-sunleo/xserver-xorg-video-sunleo_1.2.0-1.diff.gz
xserver-xorg-video-sunleo_1.2.0-1.dsc
  to pool/main/x/xserver-xorg-video-sunleo/xserver-xorg-video-sunleo_1.2.0-1.dsc
xserver-xorg-video-sunleo_1.2.0-1_sparc.deb
  to 
pool/main/x/xserver-xorg-video-sunleo/xserver-xorg-video-sunleo_1.2.0-1_sparc.deb
xserver-xorg-video-sunleo_1.2.0.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-sunleo/xserver-xorg-video-sunleo_1.2.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted kipina 0.2.2-1 (source i386)

2009-05-04 Thread Barry deFreese
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 22:00:01 -0400
Source: kipina
Binary: kipina
Architecture: source i386
Version: 0.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Barry deFreese bdefre...@debian.org
Description: 
 kipina - training program to log physical activities of athletes
Changes: 
 kipina (0.2.2-1) unstable; urgency=low
 .
   * QA upload.
   * Updates taken from Ubuntu:
 + New upstream version
 + Added libgconf2-dev and scrollkeeper as build dependencies
 + Removed debian/kipina.install as it no loger applies to new version
 + Removed debhelper install instructions
 + Updated download source url in debian/changelog
 + Thanks to Efrain Valles Pulgar for the work!
   * Use --sysconfdir on configure instead of moving file to /etc.
   * Use install file for icon instead of copying in rules.
   * Install lib in /usr/lib/kipina instead of usr/lib since its private.
 + Use --libdir in configure.
   * Make clean not ignore errors.
   * Copy in config.{guess,sub} on configure instead of clean.
 + Remove them in clean.
 + Add missing build-dep on autotools-dev.
   * Add watch file.
 + Needs fixed or upstream needs to drop old 0.0n versions.
   * Bump debhelper build-dep and compat to 5.
   * Bump Standards Version to 3.8.1.
Checksums-Sha1: 
 c1f3dc87b02d2a13defc6c943db0eb940eb1b73c 1105 kipina_0.2.2-1.dsc
 9407866696e8a44ef6e44924b9bd00c7f7173eb0 787766 kipina_0.2.2.orig.tar.gz
 7763500332ad3bcd3d43a5d2ddb61305a55352f9 3082 kipina_0.2.2-1.diff.gz
 988a8895066b896e5d741b2ace5421d62a9ca028 293396 kipina_0.2.2-1_i386.deb
Checksums-Sha256: 
 eca1f929d90ca70ffb2083638fb5375ab55e9038aeaf5eee698c5604a721f9ca 1105 
kipina_0.2.2-1.dsc
 5cbccb36d58b724946b4e273a9c64cc1a0f984b1f1fc4614709b3e7a2397af7b 787766 
kipina_0.2.2.orig.tar.gz
 e9f1ab95e3f6014e376c14e4f0e0d960124554f6e4b3f213ca0fcab8fb3eaaec 3082 
kipina_0.2.2-1.diff.gz
 a31694ff63d7334d92a737f9ad375d9fb4855374c9bc6e503f93858c84f5a317 293396 
kipina_0.2.2-1_i386.deb
Files: 
 7fdcd9c2abfedc0d1bd9a385b2a177ea 1105 utils optional kipina_0.2.2-1.dsc
 7ae68447c3ddc5b8f6fbc3c7de17785a 787766 utils optional kipina_0.2.2.orig.tar.gz
 0d2d3b0194ae9bc8d124237e3c539f7c 3082 utils optional kipina_0.2.2-1.diff.gz
 f7f047a80a9d3bfbfadfed79a87a7c1c 293396 utils optional kipina_0.2.2-1_i386.deb

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

iEYEARECAAYFAkn/J9EACgkQ5ItltUs5T34I5QCgxPD89vb3L3NbHcpBgYl6Y3nY
lF0AoNakZj/2xhh7hwa91vEBhlIaKiXb
=SXHn
-END PGP SIGNATURE-


Accepted:
kipina_0.2.2-1.diff.gz
  to pool/main/k/kipina/kipina_0.2.2-1.diff.gz
kipina_0.2.2-1.dsc
  to pool/main/k/kipina/kipina_0.2.2-1.dsc
kipina_0.2.2-1_i386.deb
  to pool/main/k/kipina/kipina_0.2.2-1_i386.deb
kipina_0.2.2.orig.tar.gz
  to pool/main/k/kipina/kipina_0.2.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libphysfs 2.0.0-3 (source amd64)

2009-05-04 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 19:12:00 +0200
Source: libphysfs
Binary: libphysfs-dev libphysfs1 libphysfs1-dbg
Architecture: source amd64
Version: 2.0.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 libphysfs-dev - filesystem abstraction library for game programmers 
(development 
 libphysfs1 - filesystem abstraction library for game programmers
 libphysfs1-dbg - filesystem abstraction library for game programmers (debug 
symbol
Closes: 493916 525750
Changes: 
 libphysfs (2.0.0-3) unstable; urgency=low
 .
   * Change my email address.
   * Add 03_gcc4.4-ftbfs.diff patch from upstream, which fixes a FTBFS with
 gcc 4.4.
 Closes: #525750
   * Add experimental 02_fix-hurd-ftbfs.diff patch, which should fix FTBFS
 on hurd.
 Closes: #493916
   * Move libphysfs1-dbg to section debug. This fixes a lintian warning.
Checksums-Sha1: 
 4182284f35a383b624c13f07a4df184914967757 1371 libphysfs_2.0.0-3.dsc
 5e578eaa433c24be6799080045fa355e5b07f4dc 7217 libphysfs_2.0.0-3.diff.gz
 96cdd1c2204c716b5d234e34d4a502824672e6d3 217302 libphysfs-dev_2.0.0-3_amd64.deb
 a5fd53e3afb056e085a1e4891694cf44a87eace2 61762 libphysfs1_2.0.0-3_amd64.deb
 e35175e651dfbf10b83e383dc1fb9fcad4a3f0cb 126678 
libphysfs1-dbg_2.0.0-3_amd64.deb
Checksums-Sha256: 
 b94d054c1ccf6fd7edeb4bad862c14b7d1bb4877f4b4340b036573950f43fd36 1371 
libphysfs_2.0.0-3.dsc
 884d9e1b8fb9b606e70ca8800b514d828f3ef283e2f3a3bf5d410f0a8e30e7bb 7217 
libphysfs_2.0.0-3.diff.gz
 c5f97213eff227ba33194522a1503b46e7592a65ef5e9b4641cf9193369cb3e5 217302 
libphysfs-dev_2.0.0-3_amd64.deb
 285d6e58a448a9deb8e1db735da1fad673e090a34fb431b723ecf7e16e30af24 61762 
libphysfs1_2.0.0-3_amd64.deb
 8d523fe2a01046172ba2d3a8a4c59a7b3e2627efebdf251c2f5a1bb9cba19f7f 126678 
libphysfs1-dbg_2.0.0-3_amd64.deb
Files: 
 066b440f65fe5f308da788ac642ec5e7 1371 libs optional libphysfs_2.0.0-3.dsc
 c9e692d16bed4d5d2580ec20e7ca042d 7217 libs optional libphysfs_2.0.0-3.diff.gz
 9d30c4eb24eae5d090f4656e2f847965 217302 libdevel optional 
libphysfs-dev_2.0.0-3_amd64.deb
 6ff00cf0a943dfd6f3b26a0c6012676c 61762 libs optional 
libphysfs1_2.0.0-3_amd64.deb
 5de13e68431078d08194fee7a7a1d107 126678 debug extra 
libphysfs1-dbg_2.0.0-3_amd64.deb

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

iEYEARECAAYFAkn/JGgACgkQ2XA5inpabMf0LgCfUOcRbB1/RsGOTeTU04PvBlvW
7vUAniHAsPXl9ShSUT8klKiWqgk7IYKw
=Ah4e
-END PGP SIGNATURE-


Accepted:
libphysfs-dev_2.0.0-3_amd64.deb
  to pool/main/libp/libphysfs/libphysfs-dev_2.0.0-3_amd64.deb
libphysfs1-dbg_2.0.0-3_amd64.deb
  to pool/main/libp/libphysfs/libphysfs1-dbg_2.0.0-3_amd64.deb
libphysfs1_2.0.0-3_amd64.deb
  to pool/main/libp/libphysfs/libphysfs1_2.0.0-3_amd64.deb
libphysfs_2.0.0-3.diff.gz
  to pool/main/libp/libphysfs/libphysfs_2.0.0-3.diff.gz
libphysfs_2.0.0-3.dsc
  to pool/main/libp/libphysfs/libphysfs_2.0.0-3.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted icicles 22.0+20090409-3 (source all)

2009-05-04 Thread Sebastien Delafond
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 10:48:50 -0700
Source: icicles
Binary: icicles
Architecture: source all
Version: 22.0+20090409-3
Distribution: unstable
Urgency: low
Maintainer: Sebastien Delafond s...@debian.org
Changed-By: Sebastien Delafond s...@debian.org
Description: 
 icicles- emacs library that enhances minibuffer/input completion
Closes: 526910
Changes: 
 icicles (22.0+20090409-3) unstable; urgency=low
 .
   * Autoload the correct mode (Closes: 526910).
   * Use proper way to get the eamcs flavor.
   * Bumped up compat level and standards version.
Checksums-Sha1: 
 fe04fd8acd4d9cc5320ed0daea977be7be0803f4 1011 icicles_22.0+20090409-3.dsc
 10ddbf59585632ee67cdeb1309c6d6f8d1b8a159 5186 icicles_22.0+20090409-3.diff.gz
 8844019068533e6de243791329be7276dc6b5f53 587684 icicles_22.0+20090409-3_all.deb
Checksums-Sha256: 
 9bc90984de62739fa82b987fb3d3f01be262d9314a4ddebfc486591a6cfc9e7a 1011 
icicles_22.0+20090409-3.dsc
 33163eff351173916d689f093f83f3e3ffd658c9c8113635fc854b78873d6cbe 5186 
icicles_22.0+20090409-3.diff.gz
 b180b51165ad1ef348ffb7f28e617666edd42e02553e786cfa3eef6761f8cc9e 587684 
icicles_22.0+20090409-3_all.deb
Files: 
 f585dc085151adb88d541f0f436ff86e 1011 misc optional icicles_22.0+20090409-3.dsc
 9fa29d05d6af68ebedab471d6d2e47bd 5186 misc optional 
icicles_22.0+20090409-3.diff.gz
 bf8d02e497701406fc5c94c1295d37d5 587684 misc optional 
icicles_22.0+20090409-3_all.deb

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

iEYEARECAAYFAkn/KpQACgkQiZgNKcDdyD/QbgCgy33TH9lmE1gULGSKB/ZdwNu3
9AgAn0s/mOD24nIqJGf+AcX19lD7obt9
=VOoj
-END PGP SIGNATURE-


Accepted:
icicles_22.0+20090409-3.diff.gz
  to pool/main/i/icicles/icicles_22.0+20090409-3.diff.gz
icicles_22.0+20090409-3.dsc
  to pool/main/i/icicles/icicles_22.0+20090409-3.dsc
icicles_22.0+20090409-3_all.deb
  to pool/main/i/icicles/icicles_22.0+20090409-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted console-setup 1.33 (source all)

2009-05-04 Thread Anton Zinoviev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 20:00:02 +0300
Source: console-setup
Binary: console-setup console-setup-mini bdf2psf console-setup-udeb 
console-setup-amiga-ekmap console-setup-ataritt-ekmap 
console-setup-macintoshold-ekmap console-setup-pc-ekmap 
console-setup-sun4-ekmap console-setup-sun5-ekmap console-setup-fonts-udeb
Architecture: source all
Version: 1.33
Distribution: unstable
Urgency: medium
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Anton Zinoviev zinov...@debian.org
Description: 
 bdf2psf- font converter to generate console fonts from BDF source fonts
 console-setup - console font and keymap setup program
 console-setup-amiga-ekmap - encoded keyboard layouts for Amiga keyboards (udeb)
 console-setup-ataritt-ekmap - encoded keyboard layouts for Atari TT keyboards 
(udeb)
 console-setup-fonts-udeb - console fonts for Debian Installer (udeb)
 console-setup-macintoshold-ekmap - encoded keyboard layouts for old-style 
Macintosh keyboards (udeb)
 console-setup-mini - console font and keymap setup program - reduced version
 console-setup-pc-ekmap - encoded keyboard layouts for PC keyboards (udeb)
 console-setup-sun4-ekmap - encoded keyboard layouts for Sun4 keyboards (udeb)
 console-setup-sun5-ekmap - encoded keyboard layouts for Sun5 keyboards (udeb)
 console-setup-udeb - Configure the keyboard (udeb)
Closes: 522565 524236 524261 524765 526862
Changes: 
 console-setup (1.33) unstable; urgency=medium
 .
   [ Colin Watson ]
   * Remove mention of long-dead devfs (closes: #524765).
   * Don't load a font if FONTFACE, FONTSIZE, and FONT are all unset.
 .
   [ Anton Zinoviev ]
   * Do not use missing jp(latin) layout.  Fix bad configuration on
 upgrade.  Thanks to Osamu Aoki, closes: #526862.  Urgency set to
 medium because of this grave bug.
   * Make console-setup-mini to provide console-setup (in order to make it
 installable together with X).
   * Correction in template file: Control+period for Compose instead of
 Alt+period.  Thanks to Kurt Roeckx, closes: #524236.
 .
   [ Debconf translations ]
   * Basque. Closes: #522565
   * Galician. Closes: #524261
   * French.
   * Bulgarian.
Checksums-Sha1: 
 3512569362aa5af57a86b8c0a623cae357686957 1209 console-setup_1.33.dsc
 0aec078f0a15b8b34bf1c994d812596a9c373139 2299571 console-setup_1.33.tar.gz
 226bc020693a552e62aab36c3079c99a233ffd47 473420 console-setup_1.33_all.deb
 386961608811d5fca82938ef0fe2d9a50acf95f7 718064 console-setup-mini_1.33_all.deb
 57d8dd5644493e806cc61c2be5cc336cfc7096a1 38238 bdf2psf_1.33_all.deb
 1040f649b409c5f0672a18a3815f46edc31490f5 60222 console-setup-udeb_1.33_all.udeb
 8c1c8eb66f3c89f198b84b11cbe368d08904dc88 101942 
console-setup-amiga-ekmap_1.33_all.udeb
 d9a19393f1e1ed54105e524686ea48e5c7025298 100966 
console-setup-ataritt-ekmap_1.33_all.udeb
 152d51796c1ed0adf57ba7c9ae9ae1c5ea406e09 79782 
console-setup-macintoshold-ekmap_1.33_all.udeb
 d03aff2ce5d4a65678e5174fce9bc8529369d3de 104300 
console-setup-pc-ekmap_1.33_all.udeb
 c7f916b863f28bf044e6c0a9cd1f441b984239e0 101854 
console-setup-sun4-ekmap_1.33_all.udeb
 4b5d0beb77c43e829a9a1e4f238012d13f27c061 102012 
console-setup-sun5-ekmap_1.33_all.udeb
 6239c10c3c96c4cf9e0020147148744846edcb04 51696 
console-setup-fonts-udeb_1.33_all.udeb
Checksums-Sha256: 
 276b506cafdcd959141df90c293d62348cbf26e0690f8ca43d36dc15e8456c09 1209 
console-setup_1.33.dsc
 f84113464d78d49188f0daa1f68dea91664b5964d4b9c2d82db937bb6e2a4f47 2299571 
console-setup_1.33.tar.gz
 bcd3d03c6373c8a6c0e434e9d7884330636ece8f52cc39374ea347d0613cf773 473420 
console-setup_1.33_all.deb
 5d1424a5349bfd78b8cc4181e6231fda922fd5e92289ffece34680eb4112b924 718064 
console-setup-mini_1.33_all.deb
 10e3229e7033a0689de6f3b1048e0509664ba4a22458836a9b08fcc10bc9dfa8 38238 
bdf2psf_1.33_all.deb
 9d77dc87b4dd724cede963e31c5a06da8824a48ef1af508823d26a417b6ee8a6 60222 
console-setup-udeb_1.33_all.udeb
 401205dfcc22f5bf005c9c640801602a6203839e7049d661984300efed59242e 101942 
console-setup-amiga-ekmap_1.33_all.udeb
 0466061e87bb9377e0ef1073cc376fd6640bf445e33555f59e2801cf216b274c 100966 
console-setup-ataritt-ekmap_1.33_all.udeb
 64a78488b61ba1f9a6bc232bf0aae24552c1930a0c6a3806ede26f19ed186e36 79782 
console-setup-macintoshold-ekmap_1.33_all.udeb
 915b2e58732806205705533aee4b766dd044767ffec0a96b76786add5df77138 104300 
console-setup-pc-ekmap_1.33_all.udeb
 4a20463e009137278614e041ef3811812c9f8404dfe781d2105670a325345436 101854 
console-setup-sun4-ekmap_1.33_all.udeb
 744c480990447db4d048f64765083852d50852b89263445baee08d765aa4eff7 102012 
console-setup-sun5-ekmap_1.33_all.udeb
 928f0e00da3550d124d1b8592381bd07409f263dfd63faa6d49f021b57a8dbe3 51696 
console-setup-fonts-udeb_1.33_all.udeb
Files: 
 6035f11c3581a897e693bc08c963c8f9 1209 utils optional console-setup_1.33.dsc
 78dc0f6ce10c2f58b8fd13a7b5d23c4d 2299571 utils optional 
console-setup_1.33.tar.gz
 2cee879a4fa4a0eedf9b38528de49a4b 473420 utils optional 

Accepted backintime 0.9.22.1-1 (source all)

2009-05-04 Thread Jonathan Wiltshire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:02:46 +0100
Source: backintime
Binary: backintime-common backintime-gnome backintime-kde4
Architecture: source all
Version: 0.9.22.1-1
Distribution: unstable
Urgency: low
Maintainer: Jonathan Wiltshire deb...@jwiltshire.org.uk
Changed-By: Jonathan Wiltshire deb...@jwiltshire.org.uk
Description: 
 backintime-common - simple backup/snapshot system
 backintime-gnome - GNOME front-end for backintime
 backintime-kde4 - KDE4 front-end for backintime
Changes: 
 backintime (0.9.22.1-1) unstable; urgency=low
 .
   * New upstream version:
  - follow FreeDesktop directory specs
  - treat *~ files as hidden
  - new user callback system
   * Refactor debian/rules to fit new upstream build system
   * Remove the tests for GNOME and KDE4 in ./configure (on an
 autobuilder, they will always fail)
   * Bump debhelper build-dependency to 7.2.8
Checksums-Sha1: 
 84d8ac0fef4eb1d8ce7449238a1e9b403ecbb6e1 1220 backintime_0.9.22.1-1.dsc
 927f5b1d36be6384f3bab28f26d06c0eb9674dc4 780807 backintime_0.9.22.1.orig.tar.gz
 456839112c816d2b66fe9acd04e28e231e686429 2905 backintime_0.9.22.1-1.diff.gz
 a5e0e5d94de321e5538033bfbb698a3f6b5f6983 51452 
backintime-common_0.9.22.1-1_all.deb
 509f772074a9247f6ea5d48cf77dd586495271ef 396618 
backintime-gnome_0.9.22.1-1_all.deb
 4ae1963c142c8b14c25405f83e0f3431ecf1e5c3 335790 
backintime-kde4_0.9.22.1-1_all.deb
Checksums-Sha256: 
 3af5520bcdb150291ed7ae1c7ae8f69084c6438eea4104ebb940a9d7bbd358d5 1220 
backintime_0.9.22.1-1.dsc
 427b390c451bfa24826fb82b3acd42580bdadab6800fe21178e7433c0c1674cb 780807 
backintime_0.9.22.1.orig.tar.gz
 6c2b5c951d7eda554479a7a87c57cbb29551228100e53435125659aec11b19e8 2905 
backintime_0.9.22.1-1.diff.gz
 98f530d3659c57a9893874e4889ec10da434f93b94df6e3a5fb720c71a632136 51452 
backintime-common_0.9.22.1-1_all.deb
 1311f0d8a89efca051a854e4a487cf00630565bec9b93d9a89e42389cf0e7cb4 396618 
backintime-gnome_0.9.22.1-1_all.deb
 e3026e1d0fc6a70e17ecab28504e9eb51a6f3e6237423d7eb23460b2a9e08b03 335790 
backintime-kde4_0.9.22.1-1_all.deb
Files: 
 40387695cc5f4e9177a28e7b60f47241 1220 utils extra backintime_0.9.22.1-1.dsc
 aec2625b2c7b71788c203464da0e6278 780807 utils extra 
backintime_0.9.22.1.orig.tar.gz
 643829e4917bdc03f4e24ef67c6feabf 2905 utils extra backintime_0.9.22.1-1.diff.gz
 d541f3a0f0c2091beeada0933e6f1e06 51452 utils extra 
backintime-common_0.9.22.1-1_all.deb
 77cbe6d3f74f1dac2f0e849a676c3c67 396618 utils extra 
backintime-gnome_0.9.22.1-1_all.deb
 3f9122f75e369c0af3bb51e03069f853 335790 utils extra 
backintime-kde4_0.9.22.1-1_all.deb

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

iEYEARECAAYFAkn/MvwACgkQB01zfu119ZnNmQCfUtPH5vJgiJHkAoEnijJOsSWF
9gwAnjAOx1qo+w05ITcqtaog5aouhPLW
=LYWM
-END PGP SIGNATURE-


Accepted:
backintime-common_0.9.22.1-1_all.deb
  to pool/main/b/backintime/backintime-common_0.9.22.1-1_all.deb
backintime-gnome_0.9.22.1-1_all.deb
  to pool/main/b/backintime/backintime-gnome_0.9.22.1-1_all.deb
backintime-kde4_0.9.22.1-1_all.deb
  to pool/main/b/backintime/backintime-kde4_0.9.22.1-1_all.deb
backintime_0.9.22.1-1.diff.gz
  to pool/main/b/backintime/backintime_0.9.22.1-1.diff.gz
backintime_0.9.22.1-1.dsc
  to pool/main/b/backintime/backintime_0.9.22.1-1.dsc
backintime_0.9.22.1.orig.tar.gz
  to pool/main/b/backintime/backintime_0.9.22.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted pyexiv2 0.1.3-2 (source amd64)

2009-05-04 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 20:03:12 +0200
Source: pyexiv2
Binary: python-pyexiv2
Architecture: source amd64
Version: 0.1.3-2
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 python-pyexiv2 - Python binding to Exiv2
Changes: 
 pyexiv2 (0.1.3-2) unstable; urgency=low
 .
   * Upload to unstable as new libexiv is there.
Checksums-Sha1: 
 c19cbf02a10cbcc524eb1841ff5a081fdcd2978e 1398 pyexiv2_0.1.3-2.dsc
 be051cc7f2883d3dee1ab03516498eeba3f89aa7 3358 pyexiv2_0.1.3-2.diff.gz
 c633a24a09d3cc2228e91854071d88b4cc99fbd4 192456 
python-pyexiv2_0.1.3-2_amd64.deb
Checksums-Sha256: 
 ad76faa8261cf1851a1b3c7b9602f4b45e75b34b0a947957c68f947a73718859 1398 
pyexiv2_0.1.3-2.dsc
 4175ba4f35267575e162a43f2b0f5c063f8b762a705902502881f30f7cb7b252 3358 
pyexiv2_0.1.3-2.diff.gz
 ea6b94a3eac032c2ae6a089b4786718f4e3b0c8f88d5a5374a7468fc15377234 192456 
python-pyexiv2_0.1.3-2_amd64.deb
Files: 
 d55f0f2ed602573ce3e736fde91ab0b1 1398 python optional pyexiv2_0.1.3-2.dsc
 443c8b310703665cee9052cc577b4609 3358 python optional pyexiv2_0.1.3-2.diff.gz
 ca082f0cd81d67c11b3f6ca555e99e86 192456 python optional 
python-pyexiv2_0.1.3-2_amd64.deb

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

iEYEARECAAYFAkn/MasACgkQ3DVS6DbnVgREZACg+xv2n8aXHRY7EcBuj9DPryel
K5kAoLowKNGnMkVaxCeC7+w1prLCyU5+
=lRWY
-END PGP SIGNATURE-


Accepted:
pyexiv2_0.1.3-2.diff.gz
  to pool/main/p/pyexiv2/pyexiv2_0.1.3-2.diff.gz
pyexiv2_0.1.3-2.dsc
  to pool/main/p/pyexiv2/pyexiv2_0.1.3-2.dsc
python-pyexiv2_0.1.3-2_amd64.deb
  to pool/main/p/pyexiv2/python-pyexiv2_0.1.3-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted drupal6 6.11-1 (source all)

2009-05-04 Thread Luigi Gangitano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 19:56:12 +0200
Source: drupal6
Binary: drupal6
Architecture: source all
Version: 6.11-1
Distribution: unstable
Urgency: low
Maintainer: Luigi Gangitano lu...@debian.org
Changed-By: Luigi Gangitano lu...@debian.org
Description: 
 drupal6- a fully-featured content management framework
Closes: 526378
Changes: 
 drupal6 (6.11-1) unstable; urgency=low
 .
   [ Luigi Gangitano ]
   * New upstream release
 - Fixes XSS vulnerability (Ref: SA-CORE-2009-005, CVE-TBD)
   (Closes: #526378)
Checksums-Sha1: 
 7b761e4bf316a51b392c2123c9e55cca3a8222d9 1112 drupal6_6.11-1.dsc
 083fdf4f7248603677b3c294f7ddb060a07d4fa8 1078966 drupal6_6.11.orig.tar.gz
 6053ade00f0cb695f86d4c1c017fa5719483d25e 16199 drupal6_6.11-1.diff.gz
 474d379d4cc6415b16f9f5ee032c17d7e217add2 1092782 drupal6_6.11-1_all.deb
Checksums-Sha256: 
 b928106c161d8594137aac7eb528933e33b18a75806a69476f66ac71ecbd59e4 1112 
drupal6_6.11-1.dsc
 89d360d667a527235ceb10962cfffd0448194636b7d2b73cf22ff8b13a7d2f1b 1078966 
drupal6_6.11.orig.tar.gz
 255836512ade38ca6c55b566abc9f57524f59b2725471f03a92e3a7cd8c6775a 16199 
drupal6_6.11-1.diff.gz
 9b3b64cefaa8979ec9cec8177e55ab7b9fdc2830e712b442d7bc3c04834de00c 1092782 
drupal6_6.11-1_all.deb
Files: 
 80f4ada42eff0b7cdd68ef4b78f10127 1112 web extra drupal6_6.11-1.dsc
 6a341807b83c4e48f50ce7921562402c 1078966 web extra drupal6_6.11.orig.tar.gz
 b8d0ab3e390322cd44b956560bde1581 16199 web extra drupal6_6.11-1.diff.gz
 40bcb8e1e3b5590b7d95cfa296aff6fb 1092782 web extra drupal6_6.11-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (Darwin)

iEYEARECAAYFAkn/NOgACgkQ8ZumGJJMDCbVrACfVj7wAyE0LKCHS1wnGeopn6YZ
H+8AmwR1ccrV8xly+AyLy1y+mXd+KK3S
=8rEY
-END PGP SIGNATURE-


Accepted:
drupal6_6.11-1.diff.gz
  to pool/main/d/drupal6/drupal6_6.11-1.diff.gz
drupal6_6.11-1.dsc
  to pool/main/d/drupal6/drupal6_6.11-1.dsc
drupal6_6.11-1_all.deb
  to pool/main/d/drupal6/drupal6_6.11-1_all.deb
drupal6_6.11.orig.tar.gz
  to pool/main/d/drupal6/drupal6_6.11.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted debhelper 7.2.9 (source all)

2009-05-04 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 14:46:53 -0400
Source: debhelper
Binary: debhelper
Architecture: source all
Version: 7.2.9
Distribution: unstable
Urgency: low
Maintainer: Joey Hess jo...@debian.org
Changed-By: Joey Hess jo...@debian.org
Description: 
 debhelper  - helper programs for debian/rules
Closes: 526221
Changes: 
 debhelper (7.2.9) unstable; urgency=low
 .
   * dh_fixperms: Ensure lintian overrides are mode 644.
 (Patch from #459548)
   * dh_fixperms: Fix permissions of OCaml .cmxs files. Closes: #526221
   * dh: Add --without to allow disabling sequence addons (particularly
 useful to disable the default python-support addon).
Checksums-Sha1: 
 e78d4fcb1919bc4a420503df37086a1432db116f 906 debhelper_7.2.9.dsc
 7f204546b670038bc5fedb0f24a03a1085ad8fe0 296004 debhelper_7.2.9.tar.gz
 8c7bbc9b55bba23ef908b1bfb73914755aa984d5 545882 debhelper_7.2.9_all.deb
Checksums-Sha256: 
 ee204f9dc0596f982ffdbd9fdd72b70027e9a7b3590185bcc04369b87ee6c1aa 906 
debhelper_7.2.9.dsc
 4bcde0ebc3559d70d03f5ae717b6523779e9dd3e2f0580fd3cb115b9142e7960 296004 
debhelper_7.2.9.tar.gz
 d18810aa491fecbe3bc358f5ac8ee7db4ab391c9f9d0de918d060b59c0c12e35 545882 
debhelper_7.2.9_all.deb
Files: 
 af76e818ff7b1c99b44a88ee247ecd5e 906 devel optional debhelper_7.2.9.dsc
 e35f205c37d230ffe4acf9dfe8ebdeef 296004 devel optional debhelper_7.2.9.tar.gz
 ca343a0ddc9ebb3479724c341a8eb87c 545882 devel optional debhelper_7.2.9_all.deb

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

iD8DBQFJ/zjo2tp5zXiKP0wRAv51AKCU56sEsBkA/annv0G9YJMLjYE7aACeNDjO
skGTzMOXecJSQtfEt/woFKM=
=0G7j
-END PGP SIGNATURE-


Accepted:
debhelper_7.2.9.dsc
  to pool/main/d/debhelper/debhelper_7.2.9.dsc
debhelper_7.2.9.tar.gz
  to pool/main/d/debhelper/debhelper_7.2.9.tar.gz
debhelper_7.2.9_all.deb
  to pool/main/d/debhelper/debhelper_7.2.9_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted rtpg 0.1.3-1 (source all)

2009-05-04 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 22:46:01 +0400
Source: rtpg
Binary: rtpg-www
Architecture: source all
Version: 0.1.3-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 rtpg-www   - web based front end for rTorrent
Closes: 520064
Changes: 
 rtpg (0.1.3-1) unstable; urgency=low
 .
   * Fixed progressbars (it was set incorrectly in the first refresh).
   * Bumped Standards-Version to 3.8.1.
   * Added Japanese translation, thanks Hideki Yamane (Debian-JP)
 henr...@debian.or.jp, closes: #520064.
Checksums-Sha1: 
 2e1db3b8b2476498457a12391e90e4d59f879936 995 rtpg_0.1.3-1.dsc
 a8c005f8a3a4b8587b56a039f95a688de1a2ab0f 404589 rtpg_0.1.3.orig.tar.gz
 b57a45dae4efb52558a749829b69b3462feaccce 20 rtpg_0.1.3-1.diff.gz
 9c25e5eb45212ad86fa254fb193cd57d494af492 80048 rtpg-www_0.1.3-1_all.deb
Checksums-Sha256: 
 65be01eb72266f1cabfef20b16374bacba49dfac21dab9caf5e72f316e9be6fe 995 
rtpg_0.1.3-1.dsc
 ad0f66a6b33ceb2eb377f86002c4505f0fbfefa375e881fc782a8fcbd5fa49ff 404589 
rtpg_0.1.3.orig.tar.gz
 67885562b45d9ec86b550e774782ac3f0366c513d2322117d9dbce66e0928452 20 
rtpg_0.1.3-1.diff.gz
 0262f66df088b7a054a6cd0c2b02727750e88a1afe1b9a5053bd83cedcfd3c65 80048 
rtpg-www_0.1.3-1_all.deb
Files: 
 cd38dd128fdfaa4354ef3f522f4f081d 995 web optional rtpg_0.1.3-1.dsc
 ec9358ddad3a3cc18b7144c358140d03 404589 web optional rtpg_0.1.3.orig.tar.gz
 ec3312bbd89fd658b6c963d0125341b9 20 web optional rtpg_0.1.3-1.diff.gz
 8105c046237bac7078d7bb24e26b8764 80048 web optional rtpg-www_0.1.3-1_all.deb

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

iEYEARECAAYFAkn/OpgACgkQq4wAz/jiZTckUACgpK1mJYao35Eej0bYsYXIxkQt
yPAAn1jtD1/OpJN/meskrZ/h7S+dGAJR
=rFf1
-END PGP SIGNATURE-


Accepted:
rtpg-www_0.1.3-1_all.deb
  to pool/main/r/rtpg/rtpg-www_0.1.3-1_all.deb
rtpg_0.1.3-1.diff.gz
  to pool/main/r/rtpg/rtpg_0.1.3-1.diff.gz
rtpg_0.1.3-1.dsc
  to pool/main/r/rtpg/rtpg_0.1.3-1.dsc
rtpg_0.1.3.orig.tar.gz
  to pool/main/r/rtpg/rtpg_0.1.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted rednotebook 0.6.8-1 (source all)

2009-05-04 Thread Jonathan Wiltshire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:15:05 +0100
Source: rednotebook
Binary: rednotebook
Architecture: source all
Version: 0.6.8-1
Distribution: unstable
Urgency: low
Maintainer: Jonathan Wiltshire deb...@jwiltshire.org.uk
Changed-By: Jonathan Wiltshire deb...@jwiltshire.org.uk
Description: 
 rednotebook - daily journal with calendar, templates and keyword searching
Changes: 
 rednotebook (0.6.8-1) unstable; urgency=low
 .
   * New Upstream version
   * Drop dependency on python-gtkmozembed
Checksums-Sha1: 
 33671868f94e22165a60be35ac05aa90cb6a 1214 rednotebook_0.6.8-1.dsc
 aed9422eb032be6d2ff63d609684b086f64d9590 235176 rednotebook_0.6.8.orig.tar.gz
 3f9b29874c8eb52373d5749994965465ca72716f 3281 rednotebook_0.6.8-1.diff.gz
 d1a43661decbc3bc8db4464f5c3ceef90826093c 233898 rednotebook_0.6.8-1_all.deb
Checksums-Sha256: 
 c2713b6d7bbee7c6606a2680b50eaa2322c06984c51d9a194d40b668c20b79e2 1214 
rednotebook_0.6.8-1.dsc
 8157d465b2f0babfc5033dd7e6344584237a96add4ac87b1ed7b6ba3b4d37a3a 235176 
rednotebook_0.6.8.orig.tar.gz
 aea180f012d4b3006d3e3cc8db36be241e97d9e2dea545d956188a999e7d1e0a 3281 
rednotebook_0.6.8-1.diff.gz
 743e0eab1dc35662106a1c3106bdddb0b920d3213e0f56e64bf38e832a54967f 233898 
rednotebook_0.6.8-1_all.deb
Files: 
 d42b75514023c2f25e33cafe88cdf066 1214 text optional rednotebook_0.6.8-1.dsc
 6836bb2c1d3ef16791b1538fa6c33f08 235176 text optional 
rednotebook_0.6.8.orig.tar.gz
 0bd9e5e325abb93d6af216bcc2ef1b67 3281 text optional rednotebook_0.6.8-1.diff.gz
 08470896b70ffb5c3be730b4cf6ddbbd 233898 text optional 
rednotebook_0.6.8-1_all.deb

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

iEYEARECAAYFAkn/OqAACgkQB01zfu119ZmoggCgmFZTTQlDFSkckLUgIAT52NKd
VvoAnRgZBXQY70KeFvo90qFsSV/2o97e
=ovu8
-END PGP SIGNATURE-


Accepted:
rednotebook_0.6.8-1.diff.gz
  to pool/main/r/rednotebook/rednotebook_0.6.8-1.diff.gz
rednotebook_0.6.8-1.dsc
  to pool/main/r/rednotebook/rednotebook_0.6.8-1.dsc
rednotebook_0.6.8-1_all.deb
  to pool/main/r/rednotebook/rednotebook_0.6.8-1_all.deb
rednotebook_0.6.8.orig.tar.gz
  to pool/main/r/rednotebook/rednotebook_0.6.8.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted diffstat 1.47-1 (source i386)

2009-05-04 Thread Greg Norris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 13:53:23 -0500
Source: diffstat
Binary: diffstat
Architecture: source i386
Version: 1.47-1
Distribution: unstable
Urgency: low
Maintainer: Greg Norris ad...@debian.org
Changed-By: Greg Norris ad...@debian.org
Description: 
 diffstat   - produces graph of changes introduced by a diff file
Changes: 
 diffstat (1.47-1) unstable; urgency=low
 .
   * New upstream release.
 - modify to work with patch .rej files, which do not have a header to
   indicate which file is affected.
   * Update to standards version 3.8.1 (no changes required)
Checksums-Sha1: 
 b5c6994a28830c3ae8e23d6631d784d2183d0575 943 diffstat_1.47-1.dsc
 f20672dd2692f4b89d84da857bbe6bf7853ee573 106801 diffstat_1.47.orig.tar.gz
 59fc4fc7fef6b8706fbef2b2a55bf4b0979efc80 3753 diffstat_1.47-1.diff.gz
 923b43d234035ed7355f4b9d5b629bc95d4807d7 23294 diffstat_1.47-1_i386.deb
Checksums-Sha256: 
 d1cd26f1caa7e9c66ed2cba29450dd1dbddf0c3e19ef55dc839f15f7e1113ff5 943 
diffstat_1.47-1.dsc
 0c398b749574b6bd54f5c5ac1d71118400cd54791e2f47a96a1ad07915d22832 106801 
diffstat_1.47.orig.tar.gz
 56dcebb128d401cd5608fcd77739b42f9cfc5af531d85822287f631ad6328dcd 3753 
diffstat_1.47-1.diff.gz
 13cc62c062c07cacceb5ffd4d1ae784188c5fa2163cb608ad8c111ace6a45cba 23294 
diffstat_1.47-1_i386.deb
Files: 
 43a33266fadcdc55076ca34d37d130fb 943 devel optional diffstat_1.47-1.dsc
 c6d221ff4a032e1bbf227f5936a7841a 106801 devel optional 
diffstat_1.47.orig.tar.gz
 b49f997897f5dfc2d2b8e0b6ea3df83c 3753 devel optional diffstat_1.47-1.diff.gz
 19565c0e59dc937730d472f58dbf0985 23294 devel optional diffstat_1.47-1_i386.deb

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

iEYEARECAAYFAkn/PQEACgkQgrEMyr8Cx2bA2wCg363nXwN8ka2xDlPccIQikfT3
focAn1+EpaKngfw+EI5rY7J3A9Y3wRjW
=j3F6
-END PGP SIGNATURE-


Accepted:
diffstat_1.47-1.diff.gz
  to pool/main/d/diffstat/diffstat_1.47-1.diff.gz
diffstat_1.47-1.dsc
  to pool/main/d/diffstat/diffstat_1.47-1.dsc
diffstat_1.47-1_i386.deb
  to pool/main/d/diffstat/diffstat_1.47-1_i386.deb
diffstat_1.47.orig.tar.gz
  to pool/main/d/diffstat/diffstat_1.47.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted yap 5.1.3-2 (source amd64)

2009-05-04 Thread Ralf Treinen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 21:05:32 +0200
Source: yap
Binary: yap
Architecture: source amd64
Version: 5.1.3-2
Distribution: unstable
Urgency: low
Maintainer: Ralf Treinen trei...@debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 yap- The YAP Prolog System
Closes: 505664 525982
Changes: 
 yap (5.1.3-2) unstable; urgency=low
 .
   * Standards-Version 3.8.1 (no change)
   * Compile with readline support, add build-dependency on libreadline5-dev,
 remove the now obsolete README.Debian (closes: Bug#525982).
   * Patch 04_clpr_docu: fix url of the CLPR technical report
 (closes: Bug#505664)
Checksums-Sha1: 
 4b31ac7acbb5cc7bd96a4535976af50ccc4ca146 1064 yap_5.1.3-2.dsc
 a8c82f35377313ae3691dcc25103a34e05349ecf 6175 yap_5.1.3-2.diff.gz
 6fac15b6c46ed9cb7cc9c33bf490f2649ca34cf5 2450896 yap_5.1.3-2_amd64.deb
Checksums-Sha256: 
 ef2dbfaad379c64fe2f9e52e3df38b6598faeecd3ff625cbed46741e5185667d 1064 
yap_5.1.3-2.dsc
 53266ad448c8a7b9118d185681d30bd3dda8580c9b66e05c9b8f6503394a8d40 6175 
yap_5.1.3-2.diff.gz
 7884221b9b9a36728d25616a19474d388e2983a2ebee1f5ef7f3f66fee8c12ce 2450896 
yap_5.1.3-2_amd64.deb
Files: 
 f6bddad45cca16fbe6840183603ceb1a 1064 devel extra yap_5.1.3-2.dsc
 5c9d109451224feafe3885b7fc0b08d4 6175 devel extra yap_5.1.3-2.diff.gz
 f724f8027fcd020806cff95faf1606f9 2450896 devel extra yap_5.1.3-2_amd64.deb

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

iD8DBQFJ/0B9tzWmSeC6BMERAhMxAJ4y21BkZmCU9r46zWC1k4OnpkqsJwCgiFUl
wzr0CZzn0EM6T1gepFWwmBc=
=BRYr
-END PGP SIGNATURE-


Accepted:
yap_5.1.3-2.diff.gz
  to pool/main/y/yap/yap_5.1.3-2.diff.gz
yap_5.1.3-2.dsc
  to pool/main/y/yap/yap_5.1.3-2.dsc
yap_5.1.3-2_amd64.deb
  to pool/main/y/yap/yap_5.1.3-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted scheme9 2009.05.03-3 (source amd64)

2009-05-04 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 19:29:43 +0100
Source: scheme9
Binary: scheme9
Architecture: source amd64
Version: 2009.05.03-3
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 scheme9- Scheme 9 from Empty Space R4RS Scheme interpreter
Closes: 526946
Changes: 
 scheme9 (2009.05.03-3) unstable; urgency=low
 .
   * fix cannot locate read-line.scm with Makefile lib path (closes: #526946)
Checksums-Sha1: 
 cdd2055e8cc05570e80e601b19c33288d2b1c37d 1141 scheme9_2009.05.03-3.dsc
 fe239f6e8a5df0247e6dda5074c9be23884c71d5 10921 scheme9_2009.05.03-3.diff.gz
 51a93329637474e5656fb88e1dd50ea8d366d060 470358 scheme9_2009.05.03-3_amd64.deb
Checksums-Sha256: 
 f9d7efa6139ddf68dcf1de92bf901072fd769fb2729fa442a7cca403605ad95e 1141 
scheme9_2009.05.03-3.dsc
 a96c760c4b14e1c8886a0ccd71b30a5b96fa6a9cea243928efab611393e4a73f 10921 
scheme9_2009.05.03-3.diff.gz
 a4355d4e9382489c8a26b7baba69ab9d6916283894818a5d6fb65b003fd76d2d 470358 
scheme9_2009.05.03-3_amd64.deb
Files: 
 06ad0341da78c499bd6a4f19a1988b27 1141 lisp extra scheme9_2009.05.03-3.dsc
 7151483bfc660bb1b442c2e3ac2d611a 10921 lisp extra scheme9_2009.05.03-3.diff.gz
 a9341da39c2bba0567c7ca54d2f90dd6 470358 lisp extra 
scheme9_2009.05.03-3_amd64.deb

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

iEYEARECAAYFAkn/QaoACgkQLz4Gnv7CP7I3xwCglA7ZdeUPQJwOJuEuYgf1RYPd
oFQAoIU187YXNia4q7QXyPOykFtkFQAm
=IU7/
-END PGP SIGNATURE-


Accepted:
scheme9_2009.05.03-3.diff.gz
  to pool/main/s/scheme9/scheme9_2009.05.03-3.diff.gz
scheme9_2009.05.03-3.dsc
  to pool/main/s/scheme9/scheme9_2009.05.03-3.dsc
scheme9_2009.05.03-3_amd64.deb
  to pool/main/s/scheme9/scheme9_2009.05.03-3_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted grub2 1.96+20090504-1 (source amd64)

2009-05-04 Thread Felix Zielcke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 21:01:22 +0200
Source: grub2
Binary: grub2 grub-linuxbios grub-common grub-pc grub-rescue-pc grub-coreboot 
grub-efi grub-ieee1275
Architecture: source amd64
Version: 1.96+20090504-1
Distribution: experimental
Urgency: low
Maintainer: GRUB Maintainers pkg-grub-de...@lists.alioth.debian.org
Changed-By: Felix Zielcke fziel...@z-51.de
Description: 
 grub-common - GRand Unified Bootloader, version 2 (common files)
 grub-coreboot - GRand Unified Bootloader, version 2 (Coreboot version)
 grub-efi   - GRand Unified Bootloader, version 2 (EFI version)
 grub-ieee1275 - GRand Unified Bootloader, version 2 (Open Firmware version)
 grub-linuxbios - GRand Unified Bootloader, version 2 (dummy package)
 grub-pc- GRand Unified Bootloader, version 2 (PC/BIOS version)
 grub-rescue-pc - GRUB bootable rescue images, version 2 (PC/BIOS version)
 grub2  - GRand Unified Bootloader, version 2 (dummy package)
Closes: 505905 520637 521292 522457 522815 523876 525845
Changes: 
 grub2 (1.96+20090504-1) experimental; urgency=low
 .
   * New SVN snapshot.
 - Add support for parttool command, which can be used to hide partitions.
   (Closes: #505905)
 - Fix a segfault with LVM on RAID. (Closes: #520637)
 - Add support for char devices on (k)FreeBSD. (Closes: #521292)
 - patches/08_powerpc-ieee1275_build_fix.patch: Remove (merged).
 .
   [ Updated translations ]
   * Basque (eu.po) by Piarres Beobide. (Closes: #522457)
   * German (de.po) by Helge Kreutzmann. (Closes: #522815)
 .
   [ Robert Millan ]
   * Update my email address.
   * Remove 04_uuids_and_abstraction_dont_play_along_nicely.diff now that
 bugs #435983 and #455746 in mdadm and dmsetup have been fixed.
 .
   [ Felix Zielcke ]
   * Place new grub-dumpbios in grub-common.
   * Add lpia to the archictectures to reduce the ubuntu delta.
   * Add a manpage for the update-grub and update-grub2 stubs, written by
 me. (Closes: #523876)
   * Suggest genisoimage on grub-pc and grub-ieee1275, because grub-mkrescue
 needs it to create a cd image. (Closes: #525845)
   * Add a dependency on $(AUTOGEN_FILES) for the configure/grub-common target,
 this is needed now that upstream removed the autogenerated files from SVN.
   * Add `--enable-efiemu to' `./configure' flags.
   * Add a build dependency on gcc-multilib for i386.
   * Drop alternate build dependency on gcc-4.1 ( 4.1.2).
Checksums-Sha1: 
 9a99f144e1caa9d1ffd396efa9740ec4b6c53501 2180 grub2_1.96+20090504-1.dsc
 a682f9db444efa754c3d033f1e202640034363c8 1015518 
grub2_1.96+20090504.orig.tar.gz
 8a4090af3e15c9e046525a2d06268597e57e27a0 50007 grub2_1.96+20090504-1.diff.gz
 4c9bc3b526a76a180eaea471a0f880f9fc8b1e25 161170 grub2_1.96+20090504-1_amd64.deb
 58c29671663e403df4ae8ebe04b323a4e5ce1dd1 160074 
grub-linuxbios_1.96+20090504-1_amd64.deb
 c9ce03ecf03d8cff237ef389bf833e7d30ee9d32 1178822 
grub-common_1.96+20090504-1_amd64.deb
 1124269ebcaf6663527b3dee76a7cd997c06db58 557256 
grub-pc_1.96+20090504-1_amd64.deb
 0c09ec8f2094ccaaaf35944565ae54987fbcfa82 637684 
grub-rescue-pc_1.96+20090504-1_amd64.deb
 c67bf74a55358f8436ab938775ce5ea8eb049fb3 356692 
grub-coreboot_1.96+20090504-1_amd64.deb
 edee01b064393c0ec0ca2a324cb420f6790f6272 427370 
grub-efi_1.96+20090504-1_amd64.deb
 48daee809e21e7baa80b3906f31138c99a8451f4 350638 
grub-ieee1275_1.96+20090504-1_amd64.deb
Checksums-Sha256: 
 d897e9579e42d5a19b31ba9297c427ea63ffde3a338cbe49d7176fe633ce65ff 2180 
grub2_1.96+20090504-1.dsc
 741a004291a003fa5fd73bbb83fe4b8ac739241b6ed548039195770c183e0bc0 1015518 
grub2_1.96+20090504.orig.tar.gz
 4473a9f08f06bbb2158fdf4388c09b2d536d20d36f50cc82b4dcceb47b3623dc 50007 
grub2_1.96+20090504-1.diff.gz
 08c2b547d848c198703b0eee05a0ae6aa133c732349088b3d2ece193f2159f95 161170 
grub2_1.96+20090504-1_amd64.deb
 bb074300cd4cfef1b0b82c349bfd5a4e0ffd6e37de08f4cec77bfe5848360d0e 160074 
grub-linuxbios_1.96+20090504-1_amd64.deb
 58f837143557ff145a89eef98324358e33251605acac6e0f29086001e6fb617d 1178822 
grub-common_1.96+20090504-1_amd64.deb
 ceeb07959f7fffbe2d3ea6a0fee47b2ae0f679955ad66f7dea7d0ce66a15b265 557256 
grub-pc_1.96+20090504-1_amd64.deb
 c18df385ede3b170acb8e74ee05cc12eb9d6941c74ce81a03205b4667300c692 637684 
grub-rescue-pc_1.96+20090504-1_amd64.deb
 610ca3f328ec1d0bbaffa7135c8952ceab19abac518326ab18f7d51528839eeb 356692 
grub-coreboot_1.96+20090504-1_amd64.deb
 4c1154922814f71bb9a50a99bf3aa472b02c5cfa61cf3e905aef6cdea1aef200 427370 
grub-efi_1.96+20090504-1_amd64.deb
 12c73adf4bb872cb75d60260921cb5288f2aec63fe2cd0c4b2bfc6adf99e69e9 350638 
grub-ieee1275_1.96+20090504-1_amd64.deb
Files: 
 a52629ec7e32587c3eb27feaacef6cad 2180 admin extra grub2_1.96+20090504-1.dsc
 e63903264141e3ef48952c6e7796c9be 1015518 admin extra 
grub2_1.96+20090504.orig.tar.gz
 42ebd36f3538f4f93579c214c2fc0251 50007 admin extra 
grub2_1.96+20090504-1.diff.gz
 1bab6dce40a92e114ac7f1fc3f7ae669 161170 admin extra 
grub2_1.96+20090504-1_amd64.deb

Accepted gforge 4.8~rc1-2 (source all)

2009-05-04 Thread Roland Mas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 22:16:11 +0200
Source: gforge
Binary: gforge gforge-common gforge-web-apache2 gforge-web-apache 
gforge-db-postgresql gforge-mta-exim4 gforge-mta-postfix gforge-mta-courier 
gforge-shell-postgresql gforge-ftp-proftpd gforge-dns-bind9 
gforge-lists-mailman gforge-plugin-scmcvs gforge-plugin-scmsvn 
gforge-plugin-mediawiki
Architecture: source all
Version: 4.8~rc1-2
Distribution: experimental
Urgency: low
Maintainer: Roland Mas lola...@debian.org
Changed-By: Roland Mas lola...@debian.org
Description: 
 gforge - collaborative development tool - metapackage
 gforge-common - collaborative development tool - shared files
 gforge-db-postgresql - collaborative development tool - database (using 
PostgreSQL)
 gforge-dns-bind9 - collaborative development tool - DNS management (using 
Bind9)
 gforge-ftp-proftpd - collaborative development tool - FTP management (using 
ProFTPd)
 gforge-lists-mailman - collaborative development tool - mailing-lists (using 
Mailman)
 gforge-mta-courier - collaborative development tool - mail tools (using 
Courier)
 gforge-mta-exim4 - collaborative development tool - mail tools (using Exim 4)
 gforge-mta-postfix - collaborative development tool - mail tools (using 
Postfix)
 gforge-plugin-mediawiki - Mediawiki plugin for FusionForge
 gforge-plugin-scmcvs - collaborative development tool - CVS plugin
 gforge-plugin-scmsvn - collaborative development tool - Subversion plugin
 gforge-shell-postgresql - collaborative development tool - shell accounts 
(using PostgreSQL
 gforge-web-apache - transition package to gforge-web-apache2
 gforge-web-apache2 - collaborative development tool - web part (using Apache)
Changes: 
 gforge (4.8~rc1-2) experimental; urgency=low
 .
   * New upstream snapshot.
   * install-chroot.sh: do not fail if device nodes can't be created (such
 as when operating in a vserver).
   * Fixed crontab syntax for -db-postgresql (cron doesn't interpolate the
 user column itself).
Checksums-Sha1: 
 794d9088012070e52a6fc0716b6976e42aa4bb07 1463 gforge_4.8~rc1-2.dsc
 a8f372f2f7dad7e8736747528598a3baf4837e3c 8276 gforge_4.8~rc1-2.diff.gz
 350a39972007c88ef549fe550d8f556c32f9db4a 94874 gforge_4.8~rc1-2_all.deb
 e9cf91bc39951dee56650723a9506bcb55c5c16a 1097240 
gforge-common_4.8~rc1-2_all.deb
 3737512b9987f4f8d9c59c8d53911d20f2ca64f5 1326160 
gforge-web-apache2_4.8~rc1-2_all.deb
 5ec83d4cb3cb7429c7f0aeed5185b48d10b675d5 90530 
gforge-web-apache_4.8~rc1-2_all.deb
 9ac39ae1b20c096d4f64ca39b7cdfb430d309091 234492 
gforge-db-postgresql_4.8~rc1-2_all.deb
 41cd012ffa39bee786449d9b27eca5696b7b3648 102862 
gforge-mta-exim4_4.8~rc1-2_all.deb
 aac5a31e71c016ec41baeffa89e8f676cc368864 103688 
gforge-mta-postfix_4.8~rc1-2_all.deb
 3604b5f817e06daaff681075e205d5cee58072e9 90796 
gforge-mta-courier_4.8~rc1-2_all.deb
 abe6816db3438b2829c2964d78ae84fd8c2c6f02 97108 
gforge-shell-postgresql_4.8~rc1-2_all.deb
 01d97fe11a6f42eb96e2c333916ad3c9987ba949 97826 
gforge-ftp-proftpd_4.8~rc1-2_all.deb
 fd8943125632e10d1e75556f53ab22d85fc91324 109384 
gforge-dns-bind9_4.8~rc1-2_all.deb
 212df3dfb142b2b348db4f4c28e3a979bf49b1d4 96914 
gforge-lists-mailman_4.8~rc1-2_all.deb
 b9c314105659a50e92f7f8a92be2d0029dfabe0d 122566 
gforge-plugin-scmcvs_4.8~rc1-2_all.deb
 5846772a7c3792f29df6bb95bbf17ad803310e95 120202 
gforge-plugin-scmsvn_4.8~rc1-2_all.deb
 0cc9429e91c836af2fd14d28afbdedfc673b57f4 215726 
gforge-plugin-mediawiki_4.8~rc1-2_all.deb
Checksums-Sha256: 
 fbe9f5a22f3cb5aaf1ac7287a67e7cd840d0a9f57df6aacca20e962cf3ed34ca 1463 
gforge_4.8~rc1-2.dsc
 bfecae51dc4e1e6f5ece9ea3e48293088389113ec564e79b7d6781fb17828cef 8276 
gforge_4.8~rc1-2.diff.gz
 59477c307338a7a8c82f64e512c993f1b83395efe1138c8bd41c9caf6a1a16fc 94874 
gforge_4.8~rc1-2_all.deb
 ab3dcc97005cd71a1a3e73c557354aa110a3e7a1d9bbbe85855c44859cf2db88 1097240 
gforge-common_4.8~rc1-2_all.deb
 449158563a3a9e6f6ca173ede73573d879312775d8a4327eab7ea539304fc4f7 1326160 
gforge-web-apache2_4.8~rc1-2_all.deb
 90e71de3d1690a57663a4ec114440d348543894bffc3c16170313c7db1df95e7 90530 
gforge-web-apache_4.8~rc1-2_all.deb
 03bd941a7f0aa83d297b7509be0ce66ac9a200f8aad03e780797cb5d11a85f4b 234492 
gforge-db-postgresql_4.8~rc1-2_all.deb
 5669578602609b8c7b9cc1fec96dec3a3dc3a0532bac40f5dfa8aab4256dcb02 102862 
gforge-mta-exim4_4.8~rc1-2_all.deb
 f5f0d476caf63c8aee20a63b3a831d26bd83850ce7eafccdffd9049d24ab65b2 103688 
gforge-mta-postfix_4.8~rc1-2_all.deb
 9555d3936a238684c35979ee0c1afd279a64799e24a7f8c3bc4f4aafc646641d 90796 
gforge-mta-courier_4.8~rc1-2_all.deb
 3896dbc6f5a5a3dda273ffb44acfa114fb41804ccd2cb53c7d801ac0508ebe39 97108 
gforge-shell-postgresql_4.8~rc1-2_all.deb
 356b0ffacf21096bbf0f0d41737d8096f8c0b90ce0d67119b1ca4cd6da10efdf 97826 
gforge-ftp-proftpd_4.8~rc1-2_all.deb
 8334ab98567ed51e0209e00758ab8c2d0718df36e8318bc04ce25bdcdf865889 109384 
gforge-dns-bind9_4.8~rc1-2_all.deb
 af93b66bf378147c88541b78493a43ede2eabf872047c32b07f933c52300dfa9 96914 

Accepted ikiwiki 3.11 (source all)

2009-05-04 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 15:45:10 -0400
Source: ikiwiki
Binary: ikiwiki
Architecture: source all
Version: 3.11
Distribution: unstable
Urgency: low
Maintainer: Joey Hess jo...@debian.org
Changed-By: Joey Hess jo...@debian.org
Description: 
 ikiwiki- a wiki compiler
Closes: 520015 525086 525751 525753
Changes: 
 ikiwiki (3.11) unstable; urgency=low
 .
   * Avoid using python-support. Closes: #525086
   * websetup: Display stderr in browser if ikiwiki setup fails.
   * blogspam: Load RPC::XML library in checkconfig, so that an
 error can be printed at that point if it's not available,
 allowing the admin to see it during wiki setup.
 Closes: #520015
   * websetup: If setup fails, restore old setup file.
   * relativedate: Deal with clock skew.
   * Add IkiWiki::ErrorReason objects, and modify pagespecs to return
 them in cases where they fail to match due to a configuration or syntax
 error.
   * pagespec_match_list: New API function, matches pages in a list
 and throws an error if the pagespec is bad.
   * inline, brokenlinks, calendar, linkmap, map, orphans, pagecount,
 pagestate, postsparkline: Display a handy error message if the pagespec
 is erronious.
   * comments: Add link to comment post form to allow user to sign in
 if they wish to, if the configuration makes signin optional
 for commenting.
   * Updated Danish translation from Jonas Smedegaard. Closes: #525751
   * translation.mdwn: Typo fixes. Closes: #525753
Checksums-Sha1: 
 c6f1f0f8126cb66d85080f65f7d7b122ccc88d7d 1076 ikiwiki_3.11.dsc
 6974f08fb2272946c4aa2988022469200e62e2c3 1168391 ikiwiki_3.11.tar.gz
 e9ee871b72dfac6a469a7d43d265c5ebb9514f22 814190 ikiwiki_3.11_all.deb
Checksums-Sha256: 
 82366be2f205f18e0f392458e513c11a35b59c2c0c8e94eeae5eb40d21705773 1076 
ikiwiki_3.11.dsc
 e17407677f734454d439facdd5ae4ee65b3902123d11aebd90879fade7c53a9a 1168391 
ikiwiki_3.11.tar.gz
 5577da4be4df7fbe10b2fc676fa34a4ad19fd9a6853084b516de83affd438165 814190 
ikiwiki_3.11_all.deb
Files: 
 4a01355c63a29d4e435d6ce6fe4d0086 1076 web optional ikiwiki_3.11.dsc
 5cbb3417fb341069070b4b1a61f3200c 1168391 web optional ikiwiki_3.11.tar.gz
 2f9c901ae3725b64f04431e7e6b6cf2b 814190 web optional ikiwiki_3.11_all.deb

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

iD8DBQFJ/1EF2tp5zXiKP0wRAhCEAKC5xkvhOFQUeiOxAXdO2EyxW+juLwCgpGnL
dle391a+J9T0mKHna6ZGLlo=
=EAPq
-END PGP SIGNATURE-


Accepted:
ikiwiki_3.11.dsc
  to pool/main/i/ikiwiki/ikiwiki_3.11.dsc
ikiwiki_3.11.tar.gz
  to pool/main/i/ikiwiki/ikiwiki_3.11.tar.gz
ikiwiki_3.11_all.deb
  to pool/main/i/ikiwiki/ikiwiki_3.11_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted ccstools 1.6.7-20090401-3 (source i386)

2009-05-04 Thread Debian-JP
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 May 2009 05:19:32 +0900
Source: ccstools
Binary: tomoyo-ccstools
Architecture: source i386
Version: 1.6.7-20090401-3
Distribution: unstable
Urgency: low
Maintainer: Hideki Yamane (Debian-JP) henr...@debian.or.jp
Changed-By: Hideki Yamane (Debian-JP) henr...@debian.or.jp
Description: 
 tomoyo-ccstools - Lightweight and easy-use Mandatory Access Control for Linux
Changes: 
 ccstools (1.6.7-20090401-3) unstable; urgency=low
 .
   * debian/patches/typo.dpatch:add patch description
Checksums-Sha1: 
 a85a0d4d20b170ec0469e3f4dcc7930b259d53d5 1140 ccstools_1.6.7-20090401-3.dsc
 9645ee4571cb358bca2c09d4e5dad9049a7b909b 6856 ccstools_1.6.7-20090401-3.diff.gz
 9cce0eafef53783f24f531968eb292c4ee2e1385 119752 
tomoyo-ccstools_1.6.7-20090401-3_i386.deb
Checksums-Sha256: 
 ce43b0155c3a7fdbda0224a3aec1b3eacb3c01bfada1de973f78822cdc821975 1140 
ccstools_1.6.7-20090401-3.dsc
 3872fcdd70aed0c92a1189f8729b034eae6995b3bfc51ca12f57e606d6b10ce4 6856 
ccstools_1.6.7-20090401-3.diff.gz
 3471ccce1e9f531288179f041e1436455a065c8160fba269dc40c5374a5c1c91 119752 
tomoyo-ccstools_1.6.7-20090401-3_i386.deb
Files: 
 90282144610d584f62a4e8b76e0b83d6 1140 admin extra ccstools_1.6.7-20090401-3.dsc
 9acba8243d44c0c5ebfa39448e919550 6856 admin extra 
ccstools_1.6.7-20090401-3.diff.gz
 05a77dbd90572ff7ea982349a91979e9 119752 admin extra 
tomoyo-ccstools_1.6.7-20090401-3_i386.deb

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

iEYEARECAAYFAkn/Tj4ACgkQIu0hy8THJkuaTACfcoDhpjR4QbNWjDHxyb87gErG
PoIAoIGGWDnNEBNOoGHfY4t5YekkUmK5
=6aHV
-END PGP SIGNATURE-


Accepted:
ccstools_1.6.7-20090401-3.diff.gz
  to pool/main/c/ccstools/ccstools_1.6.7-20090401-3.diff.gz
ccstools_1.6.7-20090401-3.dsc
  to pool/main/c/ccstools/ccstools_1.6.7-20090401-3.dsc
tomoyo-ccstools_1.6.7-20090401-3_i386.deb
  to pool/main/c/ccstools/tomoyo-ccstools_1.6.7-20090401-3_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted gwyddion 2.14-2 (source all amd64)

2009-05-04 Thread Jan Beyer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 22:13:28 +0200
Source: gwyddion
Binary: gwyddion gwyddion-common gwyddion-plugins libgwyddion2-0 
libgwyddion20-dev libgwyddion20-doc
Architecture: source all amd64
Version: 2.14-2
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Jan Beyer j...@beathovn.de
Description: 
 gwyddion   - Scanning Probe Microscopy visualization and analysis tool
 gwyddion-common - architecture-independent files for Gwyddion SPM analysis tool
 gwyddion-plugins - plugins for Gwyddion SPM analysis tool
 libgwyddion2-0 - libraries for Gwyddion SPM analysis tool
 libgwyddion20-dev - header files for Gwyddion SPM analysis tool
 libgwyddion20-doc - HTML library API documentation for Gwyddion SPM analysis 
tool
Changes: 
 gwyddion (2.14-2) unstable; urgency=low
 .
   * Incorporating an upstream patch to fix critical warnings on creation of
 new channels or graphs, which may lead to a shutdown of gwyddion.
   * Make backporter's life easier by adjusting build-dependency for FFTW3 to
 libfftw3 | fftw3.
Checksums-Sha1: 
 023c8e19ad45d783740cc5a814b8a5d945af233c 1572 gwyddion_2.14-2.dsc
 0e83c34d788d7c38409e4d0345bd60434707c2b7 11288 gwyddion_2.14-2.diff.gz
 bd5431dd0adb8b57d264a16901d920ff13971678 419230 gwyddion-common_2.14-2_all.deb
 9a25a859918842373f6582a7040ac543edf29246 613490 
libgwyddion20-doc_2.14-2_all.deb
 a9bcae93753ab18bb1e838f6ee27e528bdd23634 1181462 gwyddion_2.14-2_amd64.deb
 f4da503a7d5fcf6624f7d02b7c20efcd0df05282 49112 
gwyddion-plugins_2.14-2_amd64.deb
 8fcb739da0e85f8c191a207776833bf2b486a61a 663570 libgwyddion2-0_2.14-2_amd64.deb
 a9f023f8d085f750afe592ecbf00558968ef0a46 112532 
libgwyddion20-dev_2.14-2_amd64.deb
Checksums-Sha256: 
 ad5873f31179757d0bdd65a3eadda5cf8bb191e5d73c2aae82a956b603bbd41f 1572 
gwyddion_2.14-2.dsc
 afa86638fdfd9bdc6c4c4896d17b157d38b1ba6931e6bd5044186440beb16461 11288 
gwyddion_2.14-2.diff.gz
 32d8d6d06ee887da910f3758af22ed8726ed8d5e5c06acd71b91775c4db4fbd7 419230 
gwyddion-common_2.14-2_all.deb
 4168ff949cc4aadb47b3a7482ce69e8c2f033d67127fd61753417a7577d13feb 613490 
libgwyddion20-doc_2.14-2_all.deb
 cf6ff40e6b78e1b1bd47accc87318545ed2babb7045feabf0aeab6d80cbb2be7 1181462 
gwyddion_2.14-2_amd64.deb
 b2057ed06d9f183ffbbe0a596c91a873abe500df11ecb8ea8ac9b615168782a0 49112 
gwyddion-plugins_2.14-2_amd64.deb
 323acb5b59bf7593f5caf575bde94a905e02012f965ef0f275af50a110e13c9f 663570 
libgwyddion2-0_2.14-2_amd64.deb
 4e6b95eb5de53cd5383564fcb64df5d425f9c4679e82f4a993407e5459758dd6 112532 
libgwyddion20-dev_2.14-2_amd64.deb
Files: 
 db672adb34b5aed2643087d0af99fe24 1572 science optional gwyddion_2.14-2.dsc
 137b4e00e8e95cb0977ba50130bc9fc4 11288 science optional gwyddion_2.14-2.diff.gz
 638fb62b85de6ceb590005331676446f 419230 science optional 
gwyddion-common_2.14-2_all.deb
 78dc17edddaad1813e53b3245be7168e 613490 doc optional 
libgwyddion20-doc_2.14-2_all.deb
 4945b9d65602a0c618b581f33066ad6c 1181462 science optional 
gwyddion_2.14-2_amd64.deb
 0d12637d14695865215e0570308cb1f2 49112 science optional 
gwyddion-plugins_2.14-2_amd64.deb
 3b13051e4d77fdab5634db6fd3a1accc 663570 libs optional 
libgwyddion2-0_2.14-2_amd64.deb
 4db6e9808c36bde5ec66fa57b2acbbec 112532 libdevel optional 
libgwyddion20-dev_2.14-2_amd64.deb

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

iEYEARECAAYFAkn/ZDEACgkQ1gXdnL6dUzm+NgCdGvVljpoxPJBqBD1VnqVqZLNO
gbEAmgOCLb6pOlGoRl5E2E8BXj+YQnd/
=STo0
-END PGP SIGNATURE-


Accepted:
gwyddion-common_2.14-2_all.deb
  to pool/main/g/gwyddion/gwyddion-common_2.14-2_all.deb
gwyddion-plugins_2.14-2_amd64.deb
  to pool/main/g/gwyddion/gwyddion-plugins_2.14-2_amd64.deb
gwyddion_2.14-2.diff.gz
  to pool/main/g/gwyddion/gwyddion_2.14-2.diff.gz
gwyddion_2.14-2.dsc
  to pool/main/g/gwyddion/gwyddion_2.14-2.dsc
gwyddion_2.14-2_amd64.deb
  to pool/main/g/gwyddion/gwyddion_2.14-2_amd64.deb
libgwyddion2-0_2.14-2_amd64.deb
  to pool/main/g/gwyddion/libgwyddion2-0_2.14-2_amd64.deb
libgwyddion20-dev_2.14-2_amd64.deb
  to pool/main/g/gwyddion/libgwyddion20-dev_2.14-2_amd64.deb
libgwyddion20-doc_2.14-2_all.deb
  to pool/main/g/gwyddion/libgwyddion20-doc_2.14-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted klineakconfig 0.9-8 (source i386)

2009-05-04 Thread Barry deFreese
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 15:46:55 -0400
Source: klineakconfig
Binary: klineakconfig
Architecture: source i386
Version: 0.9-8
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Barry deFreese bdefre...@debian.org
Description: 
 klineakconfig - KDE configurator for lineakd
Changes: 
 klineakconfig (0.9-8) unstable; urgency=low
 .
   * QA upload.
   * Add appropriate copyright holders to debian/copyright.
 + Version GPL path to GPL-2.
   * Don't build-dep on -1 revisions.
   * Add watch file.
   * Bump compat to 5 to match debhelper build-dep.
   * Bump Standards Version to 3.8.1. (No changes needed).
Checksums-Sha1: 
 24fc49ea3cbd69be6371ea39a144d622e1bb7241 1192 klineakconfig_0.9-8.dsc
 bccfb1c0611f9249a4283c5b5eeaad003efc3d0c 7911 klineakconfig_0.9-8.diff.gz
 1c093fcb6c08dbe2224bacccf1e88d3f152450b2 132892 klineakconfig_0.9-8_i386.deb
Checksums-Sha256: 
 d0895c557922cea243cfa413de74bf4df32631aef8d950f2707f88c4286b4a63 1192 
klineakconfig_0.9-8.dsc
 33afb3c1c35f55c2d1c18581b9c9e4c9995909175c89b3a73ec93d91b111b943 7911 
klineakconfig_0.9-8.diff.gz
 8182695f407d1244e0011ebbe9db83bbea21cdcb915b080aa8320e09655a3b48 132892 
klineakconfig_0.9-8_i386.deb
Files: 
 a2c6388afc74265002ea3c2c8670a5e4 1192 x11 optional klineakconfig_0.9-8.dsc
 ca15fcdf8ecb6c6c56ea2bc448995fd9 7911 x11 optional klineakconfig_0.9-8.diff.gz
 5414612961fd317c903003522d66e33b 132892 x11 optional 
klineakconfig_0.9-8_i386.deb

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

iEYEARECAAYFAkn/UA0ACgkQ5ItltUs5T37wDACeNb0YXP8nxThRS/PnZ6aJmzxQ
5OMAniqTIBImHMTi4M8o1R29aoGA9Q7Q
=yBvg
-END PGP SIGNATURE-


Accepted:
klineakconfig_0.9-8.diff.gz
  to pool/main/k/klineakconfig/klineakconfig_0.9-8.diff.gz
klineakconfig_0.9-8.dsc
  to pool/main/k/klineakconfig/klineakconfig_0.9-8.dsc
klineakconfig_0.9-8_i386.deb
  to pool/main/k/klineakconfig/klineakconfig_0.9-8_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted libmodule-depends-perl 0.14-3 (source all)

2009-05-04 Thread James Bromberger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 21:21:20 +0100
Source: libmodule-depends-perl
Binary: libmodule-depends-perl
Architecture: source all
Version: 0.14-3
Distribution: unstable
Urgency: low
Maintainer: James Bromberger j...@debian.org
Changed-By: James Bromberger j...@debian.org
Description: 
 libmodule-depends-perl - identify the dependencies of a distribution
Changes: 
 libmodule-depends-perl (0.14-3) unstable; urgency=low
 .
   * Fix watch file (again???!).
Checksums-Sha1: 
 3fd0d49e898eb67d1cb7b81a0d7ebb2d30ce27dd 1083 libmodule-depends-perl_0.14-3.dsc
 65cfc288c24a8736bc0b3472853183c899168540 2435 
libmodule-depends-perl_0.14-3.diff.gz
 27cc5d6f9647c7bfdc9b85b4a4f8199c2cd4a754 11278 
libmodule-depends-perl_0.14-3_all.deb
Checksums-Sha256: 
 4c399675c9efc0fd61ab6484fb5c2ccafc06745bcf3f12aa4de64b0793970b71 1083 
libmodule-depends-perl_0.14-3.dsc
 8e215c534d5271dac5a2f6a4da531fc5cbededbf7d82976c67868bc743f73475 2435 
libmodule-depends-perl_0.14-3.diff.gz
 c1f0dec843c5004cc7bb8d97a369dbe1314f94f1dd1840ed99fdae9b01a8c60a 11278 
libmodule-depends-perl_0.14-3_all.deb
Files: 
 77503dd14c95849cbc2a66d7df79159e 1083 perl optional 
libmodule-depends-perl_0.14-3.dsc
 a1ddf189c23a1e234d25761b35f54b0f 2435 perl optional 
libmodule-depends-perl_0.14-3.diff.gz
 68a85ac460b6f86adafab47a2cd12574 11278 perl optional 
libmodule-depends-perl_0.14-3_all.deb

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

iD8DBQFJ/1CspfJwKAkXqeQRAp1BAJ99gTtfLvrC04bkg7UThxVHLV/HpQCdFpRj
q69fRdKAkOxFugD+GcBWthU=
=3Zs3
-END PGP SIGNATURE-


Accepted:
libmodule-depends-perl_0.14-3.diff.gz
  to pool/main/libm/libmodule-depends-perl/libmodule-depends-perl_0.14-3.diff.gz
libmodule-depends-perl_0.14-3.dsc
  to pool/main/libm/libmodule-depends-perl/libmodule-depends-perl_0.14-3.dsc
libmodule-depends-perl_0.14-3_all.deb
  to pool/main/libm/libmodule-depends-perl/libmodule-depends-perl_0.14-3_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted clamav-getfiles 2.0-6 (source all)

2009-05-04 Thread Marc Haber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 23:44:10 +0200
Source: clamav-getfiles
Binary: clamav-getfiles
Architecture: source all
Version: 2.0-6
Distribution: unstable
Urgency: low
Maintainer: Marc Haber mh+debian-packa...@zugschlus.de
Changed-By: Marc Haber mh+debian-packa...@zugschlus.de
Description: 
 clamav-getfiles - Update script for clamav
Closes: 513561 513581 526448
Changes: 
 clamav-getfiles (2.0-6) unstable; urgency=low
 .
   * freshclam wants to see its options as --foo=bar or it will
 silently ignore them. Change this. Closes: #526448
   * remove deprecated --log-verbose option from freshclam-call
   * remove commented out function
   * Update Vietnamese (vi) translation of -data debconf
 messages. Thanks to Clytie Siddall. Closes: #513581
   * New Spanish (es) debconf messages for -data.
 Thanks to Francisco Javier Cuadrado. Closes: #513561
   * fix copyright-refers-to-versionless-license-file in -data and -getfiles
   * Standards-Version: 3.8.1 (no changes necessary)
Checksums-Sha1: 
 35b1841fdd01394d87f9398a8bda0b671638d96c 1011 clamav-getfiles_2.0-6.dsc
 65d8b544a978f2aeb6865dae367494f3d3bf661b 8210 clamav-getfiles_2.0-6.diff.gz
 a6a3d0fba05b163f69514b920d64f8a5a1abc9d4 32176 clamav-getfiles_2.0-6_all.deb
Checksums-Sha256: 
 71d0a682bf31988452e7081494797a4fd0f02f37e4f44201338997069a686937 1011 
clamav-getfiles_2.0-6.dsc
 849aab29cdc7d4a27abf0f368359557ee2fa95e35de5711782faba25a6a58f59 8210 
clamav-getfiles_2.0-6.diff.gz
 9d57af2e449ba085ac296a23ba44c7aa18f32bbc37df7ddf92d8292458826c7d 32176 
clamav-getfiles_2.0-6_all.deb
Files: 
 bc428ce152a57a3df6a356fbf5a53438 1011 utils optional clamav-getfiles_2.0-6.dsc
 49495665fd512f250678441de35809d5 8210 utils optional 
clamav-getfiles_2.0-6.diff.gz
 7f70a70c72e20770031d63a81f4ae0b1 32176 utils optional 
clamav-getfiles_2.0-6_all.deb

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

iEYEARECAAYFAkn/YlQACgkQgZalRGu6PISisQCfcjkXp1owTqTcD4wEH5VKsGMd
5CUAoJP7xf5kUp+G1q95k4z4YvL/BLFC
=HG21
-END PGP SIGNATURE-


Accepted:
clamav-getfiles_2.0-6.diff.gz
  to pool/main/c/clamav-getfiles/clamav-getfiles_2.0-6.diff.gz
clamav-getfiles_2.0-6.dsc
  to pool/main/c/clamav-getfiles/clamav-getfiles_2.0-6.dsc
clamav-getfiles_2.0-6_all.deb
  to pool/main/c/clamav-getfiles/clamav-getfiles_2.0-6_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted zeroinstall-injector 0.40-1 (source all)

2009-05-04 Thread Thomas Leonard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 24 Apr 2009 20:36:58 +0100
Source: zeroinstall-injector
Binary: zeroinstall-injector
Architecture: source all
Version: 0.40-1
Distribution: unstable
Urgency: low
Maintainer: Jens Peter Secher j...@debian.org
Changed-By: Thomas Leonard tal...@gmail.com
Description: 
 zeroinstall-injector - run programs by URL
Changes: 
 zeroinstall-injector (0.40-1) unstable; urgency=low
 .
   * New upstream release.
   * Updated build for changes in Ubuntu's distutils.
Checksums-Sha1: 
 9e6c4ce0d8025fddb651830ada5475814ba65b67 1297 zeroinstall-injector_0.40-1.dsc
 4b05ab889bfcde8724efa6fc292fff2c8912d52b 195924 
zeroinstall-injector_0.40.orig.tar.gz
 8ac7af595b36de546feb7c3517072aff5457a1cb 3154 
zeroinstall-injector_0.40-1.diff.gz
 fd34872821196134b8dd2125d83f596764b019e5 151270 
zeroinstall-injector_0.40-1_all.deb
Checksums-Sha256: 
 ede3423fbfb75a8bc9091575fee1f13e977d76372d4eab9f8c15fdd52460c600 1297 
zeroinstall-injector_0.40-1.dsc
 bb509e53a21f2289aad413b0c5912d271507e6437cc191aa9719eb3728d273a7 195924 
zeroinstall-injector_0.40.orig.tar.gz
 f844786e46d4fdb0cc5fd6f78cb2adde4ec56ec5380fdf484e7276ef029e35c6 3154 
zeroinstall-injector_0.40-1.diff.gz
 d3707722d5c0a0f67cc9dffc44e9e86cb4ac34a0f275f32d518bb0c28282e5c3 151270 
zeroinstall-injector_0.40-1_all.deb
Files: 
 2807e2023ccdbf1372d5a87fdedd583f 1297 admin optional 
zeroinstall-injector_0.40-1.dsc
 a7052c22e822e62d58fe9687fd85e0b4 195924 admin optional 
zeroinstall-injector_0.40.orig.tar.gz
 128675007f0cad23c1fde3f37ba2fcff 3154 admin optional 
zeroinstall-injector_0.40-1.diff.gz
 3eccf223c59706af9857a1ecea702681 151270 admin optional 
zeroinstall-injector_0.40-1_all.deb

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

iJwEAQECAAYFAkn/SEYACgkQiFVdEFPVQL/8IAQAgAc8EdkQbiPD0rRU15i41aMy
qddvgHaYRvAGczM1Sr5yXwXut7Ho6GfUS7b2Q12p3mGYsNUQEjB08hPNp6OI98wV
oaJftciO6frzy9zUcdVB6T4rPMsNTy7WpyT+S3J2yRqvnjTmi1fJc5O74/78A08y
J6eILPuESDTfxEMcwMo=
=7Dpy
-END PGP SIGNATURE-


Accepted:
zeroinstall-injector_0.40-1.diff.gz
  to pool/main/z/zeroinstall-injector/zeroinstall-injector_0.40-1.diff.gz
zeroinstall-injector_0.40-1.dsc
  to pool/main/z/zeroinstall-injector/zeroinstall-injector_0.40-1.dsc
zeroinstall-injector_0.40-1_all.deb
  to pool/main/z/zeroinstall-injector/zeroinstall-injector_0.40-1_all.deb
zeroinstall-injector_0.40.orig.tar.gz
  to pool/main/z/zeroinstall-injector/zeroinstall-injector_0.40.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted apt-cacher-ng 0.3.10-1 (source amd64)

2009-05-04 Thread Eduard Bloch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 23:02:41 +0200
Source: apt-cacher-ng
Binary: apt-cacher-ng
Architecture: source amd64
Version: 0.3.10-1
Distribution: unstable
Urgency: high
Maintainer: Eduard Bloch bl...@debian.org
Changed-By: Eduard Bloch bl...@debian.org
Description: 
 apt-cacher-ng - Caching proxy for distribution of software packages
Closes: 526956
Changes: 
 apt-cacher-ng (0.3.10-1) unstable; urgency=high
 .
   * New upstream release
 + fixing a subtle change in 0.3.9 which breaks import function and might
 cause cache damage for users who manually run expiration with data
 checksumming (many thanks to Petra Ruebe-Pugliese, closes: #526956)
Checksums-Sha1: 
 04756138505689c61c6d48a8b0383dc3db9ffedc 1038 apt-cacher-ng_0.3.10-1.dsc
 c8d921d9ad6ed7773135843d2b31c57f06eb7ee2 214000 
apt-cacher-ng_0.3.10.orig.tar.gz
 c4017e7d4ca72b3f7264fcc76f3d0aa861344945 10901 apt-cacher-ng_0.3.10-1.diff.gz
 ce2be420d196874bb5dd75989bc2dc53624014b6 280558 
apt-cacher-ng_0.3.10-1_amd64.deb
Checksums-Sha256: 
 2ed4a7ca14eaca6c41785c91cd8e86a93f24727b34af0918e66147b1bab59bef 1038 
apt-cacher-ng_0.3.10-1.dsc
 3126c41268854234a632eed26b6d10c2788d8cae06f49ce97edc1f1934d2609a 214000 
apt-cacher-ng_0.3.10.orig.tar.gz
 f7819cfea65991cb4880ce6a92781b47e57057ca21a733c40f3e293957cf08bc 10901 
apt-cacher-ng_0.3.10-1.diff.gz
 7e7a6685c529a911c13bef0268818fc3d905e3e0ecbf8c07919482150c17e105 280558 
apt-cacher-ng_0.3.10-1_amd64.deb
Files: 
 de5ac8a0ee0f0758516414f836f3 1038 net optional apt-cacher-ng_0.3.10-1.dsc
 f7a34be1bf7c1be18e741a8f14539271 214000 net optional 
apt-cacher-ng_0.3.10.orig.tar.gz
 ebe7c215ff75118a3a1fbf2ea365c731 10901 net optional 
apt-cacher-ng_0.3.10-1.diff.gz
 eb225c725adcb7eacd922940c9e57ee8 280558 net optional 
apt-cacher-ng_0.3.10-1_amd64.deb

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

iD8DBQFJ/1nE4QZIHu3wCMURAv2rAJ9boFogoO5LdxuzLtH/8Htv/lnfmwCfVeHl
JR0JwGb3l/GaKVLKlfSwSVI=
=LZI+
-END PGP SIGNATURE-


Accepted:
apt-cacher-ng_0.3.10-1.diff.gz
  to pool/main/a/apt-cacher-ng/apt-cacher-ng_0.3.10-1.diff.gz
apt-cacher-ng_0.3.10-1.dsc
  to pool/main/a/apt-cacher-ng/apt-cacher-ng_0.3.10-1.dsc
apt-cacher-ng_0.3.10-1_amd64.deb
  to pool/main/a/apt-cacher-ng/apt-cacher-ng_0.3.10-1_amd64.deb
apt-cacher-ng_0.3.10.orig.tar.gz
  to pool/main/a/apt-cacher-ng/apt-cacher-ng_0.3.10.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted gforge 4.7.2-8 (source all)

2009-05-04 Thread Roland Mas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 22:22:14 +0200
Source: gforge
Binary: gforge gforge-common gforge-web-apache2 gforge-web-apache 
gforge-db-postgresql gforge-mta-exim4 gforge-mta-postfix gforge-mta-courier 
gforge-shell-postgresql gforge-ftp-proftpd gforge-dns-bind9 
gforge-lists-mailman gforge-plugin-scmcvs gforge-plugin-scmsvn 
gforge-plugin-mediawiki
Architecture: source all
Version: 4.7.2-8
Distribution: unstable
Urgency: low
Maintainer: Roland Mas lola...@debian.org
Changed-By: Roland Mas lola...@debian.org
Description: 
 gforge - collaborative development tool - meta-package
 gforge-common - collaborative development tool - shared files
 gforge-db-postgresql - collaborative development tool - database (using 
PostgreSQL)
 gforge-dns-bind9 - collaborative development tool - DNS management (using 
Bind9)
 gforge-ftp-proftpd - collaborative development tool - FTP management (using 
ProFTPd)
 gforge-lists-mailman - collaborative development tool - mailing-lists (using 
Mailman)
 gforge-mta-courier - collaborative development tool - mail tools (using 
Courier)
 gforge-mta-exim4 - collaborative development tool - mail tools (using Exim 4)
 gforge-mta-postfix - collaborative development tool - mail tools (using 
Postfix)
 gforge-plugin-mediawiki - Mediawiki plugin for FusionForge
 gforge-plugin-scmcvs - collaborative development tool - CVS plugin
 gforge-plugin-scmsvn - collaborative development tool - Subversion plugin
 gforge-shell-postgresql - collaborative development tool - shell accounts 
(using PostgreSQL
 gforge-web-apache - transition package to gforge-web-apache2
 gforge-web-apache2 - collaborative development tool - web part (using Apache)
Changes: 
 gforge (4.7.2-8) unstable; urgency=low
 .
   * Added watch file.
   * Fixed copyright file to mention FusionForge.
   * Fixed group join request only sending a notification email to one of
 the project admins.
Checksums-Sha1: 
 c33d7be2067eff548127c1a6ce6e11a0d107dc13 1452 gforge_4.7.2-8.dsc
 f59f6639e914548985b22092fb2584e4490f2eb0 17962 gforge_4.7.2-8.diff.gz
 d0deb4b9936e3fc25d65ddc72e83f9ad5596c9fa 94590 gforge_4.7.2-8_all.deb
 288ca3face88f0178bea2c3aca64c19032cb 1032826 gforge-common_4.7.2-8_all.deb
 f1a086b677d3733e777879927380199bc8d14aed 1404824 
gforge-web-apache2_4.7.2-8_all.deb
 8f673526c0e4326e438a125a870f3f485483af23 90252 
gforge-web-apache_4.7.2-8_all.deb
 7a4c19a5757809bc893b019fd0641a6817d60d55 233798 
gforge-db-postgresql_4.7.2-8_all.deb
 daa7190744da371c4c78e0e2b4395da5e6a0d6e2 102828 
gforge-mta-exim4_4.7.2-8_all.deb
 ca9fa89bfa88a3a3255c1edd03ef65d2a12187fe 103704 
gforge-mta-postfix_4.7.2-8_all.deb
 c5fc622b3d9d37acd2ae51f8266e6a02a3c7 90524 
gforge-mta-courier_4.7.2-8_all.deb
 5c0f0d6184cf0c0509d5db633f9136704572 96900 
gforge-shell-postgresql_4.7.2-8_all.deb
 d1112f17cab37ad843edb7aa0ae353efdba390ba 99112 
gforge-ftp-proftpd_4.7.2-8_all.deb
 95823de358de74f86a82b900ba604bd6cee25232 109258 
gforge-dns-bind9_4.7.2-8_all.deb
 cc6d47ee4abaceb2c5b5660efbe31a8922db33a1 96722 
gforge-lists-mailman_4.7.2-8_all.deb
 dc99538431a8edf2258a5442495b18d0b7795dc0 123950 
gforge-plugin-scmcvs_4.7.2-8_all.deb
 3efca4b27ec444d3c1f377370aa4a9e0d6304f7f 121268 
gforge-plugin-scmsvn_4.7.2-8_all.deb
 298547a58bbc50250a963c95c8695ca4de8d3e22 215070 
gforge-plugin-mediawiki_4.7.2-8_all.deb
Checksums-Sha256: 
 757e9017fbbc742aefc56d96d8900c2d3992472635db5d8ecd1fe59a4021dac9 1452 
gforge_4.7.2-8.dsc
 efbf20138ab2f7dc6bb54c6fe7ab8a401be6cff6fc6aa990ecf32db5f19c68e3 17962 
gforge_4.7.2-8.diff.gz
 27123582ad60ffd07570b40a45c398c58272c637185775792bb59853c0d466e1 94590 
gforge_4.7.2-8_all.deb
 d08ef2b134f9444c56c4ef95ce42e0cd0797ccd547f27c79479c70eced00606f 1032826 
gforge-common_4.7.2-8_all.deb
 954a1bd7f087fc5edec3d9f2523f6bf7fc263a90dd2849abe7d4056616677e2d 1404824 
gforge-web-apache2_4.7.2-8_all.deb
 ea40a8906ffa1c1b772cea8029dcdf236b16645e81754b0931ad35c19800bdca 90252 
gforge-web-apache_4.7.2-8_all.deb
 30c9eb9fb9d3643bcb28ec001958fc3263aaf4f18a68e08ee62e7ac825cb4a97 233798 
gforge-db-postgresql_4.7.2-8_all.deb
 2d0cd9e4690714a6765f1e45974ddc2f2f1d7a74e1f6a155f4dc1bd7eaea76ce 102828 
gforge-mta-exim4_4.7.2-8_all.deb
 063beaf2b45112e4d6c8b135d58fba668416a7a9bceb2288e75d0466cf2d9244 103704 
gforge-mta-postfix_4.7.2-8_all.deb
 b0682a6c413448984f16f5effa4e16b7a813b83941eab10291542359e42e6c99 90524 
gforge-mta-courier_4.7.2-8_all.deb
 3e97dbbafa7aad4bd881e3d11e3fa6e42adfb4882788f19d202e1801d6844e54 96900 
gforge-shell-postgresql_4.7.2-8_all.deb
 28f21953dbe5e9171d8a5dd0acb3b4f92c4361f033fb01a0b0d970f8af7afbaa 99112 
gforge-ftp-proftpd_4.7.2-8_all.deb
 0abe48e69e3267f869396920c869c36b17dea3240281b0c9745a7aa931961e38 109258 
gforge-dns-bind9_4.7.2-8_all.deb
 d8057b6e18622620963282aad69d1241f88932d2a2a88b3c2af2c58dd8b7de1c 96722 
gforge-lists-mailman_4.7.2-8_all.deb
 1895c49305dbc74f5b0d1b36ec4a4049f8d9e17afb03369f9210929cfe8f746f 123950 
gforge-plugin-scmcvs_4.7.2-8_all.deb
 

Accepted meep 0.20.3-3 (source i386)

2009-05-04 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 22 Apr 2009 19:45:00 +0200
Source: meep
Binary: meep libmeep2 libmeep-dev meep-mpi libmeep-mpi2 libmeep-mpi-dev
Architecture: source i386
Version: 0.20.3-3
Distribution: unstable
Urgency: low
Maintainer: Thorsten Alteholz deb...@alteholz.de
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 libmeep-dev - development library for using meep
 libmeep-mpi-dev - development library for using parallel (mpich) version of 
meep
 libmeep-mpi2 - library for using parallel (mpich) version of meep
 libmeep2   - library for using meep
 meep   - software package for FDTD simulation
 meep-mpi   - software package for FDTD simulation, parallel (mpich) version
Closes: 520185
Changes: 
 meep (0.20.3-3) unstable; urgency=low
 .
   * adding modified symbols files (Closes: #520185)
 - for arch alpha, hppa, powerpc, s390, sparc
   * added ldconfig in postinst and postrm for libmeep2 and libmeep-mpi2
 to meet requirements of policy 8.1.1
   * debian/control: Standards-Version changed to 3.8.1
   * debian/control: depending on libctl-dev =3.0.3-3 in order to use guile-1.8
   * added non empty file meep-enums.scm
Checksums-Sha1: 
 0f505e6a16e61d1f8f401b690cc6240032f7421c 1240 meep_0.20.3-3.dsc
 cf7691298c62a2928109b984946259fd7ebcf8e0 127964 meep_0.20.3-3.diff.gz
 5f3bdc338c5567350e9b285a5f9a28bfb340be2d 170714 meep_0.20.3-3_i386.deb
 c9a59b583f45cc513c29533bcab01ed814ed6dd3 260066 libmeep2_0.20.3-3_i386.deb
 90055c63a738e9f70cefa1277ed910a5dd8e4461 22332 libmeep-dev_0.20.3-3_i386.deb
 fdba4ed091b3ca3e4c1c904f3ee6486855d86d7e 170772 meep-mpi_0.20.3-3_i386.deb
 8a94b660cc58d9afc64fc9f81289ad6a59fc6d60 470648 libmeep-mpi2_0.20.3-3_i386.deb
 0d5f1dbf5e14a9f1ab100470c32ab91ac7e59e0a 22402 
libmeep-mpi-dev_0.20.3-3_i386.deb
Checksums-Sha256: 
 4b6db58bf06d0067a71833616ef20382802a59efbfbb5f836f229ecd72eebcfa 1240 
meep_0.20.3-3.dsc
 4acdbb3c7a97b302a1ea4c9c8dd76ea36a8553f288c3d350c9179a41b39fee88 127964 
meep_0.20.3-3.diff.gz
 c49c49150c0f35fe8f9a00c811b03b101eb42810b26cfc69f82f43c342e7e5f7 170714 
meep_0.20.3-3_i386.deb
 cd08378d2459981313ac3a2010e3ac47c5963031bf4cb5d1e745e3a119881cfd 260066 
libmeep2_0.20.3-3_i386.deb
 19117fe9aeeffebe5a5d2c7dfca3b1f582db2bd10e349c4d6c9e9f485f1230d0 22332 
libmeep-dev_0.20.3-3_i386.deb
 fa4c6617a862a8b6d8017a1bb9478f2fdd4c70aba9ee0e0a3328868f17180646 170772 
meep-mpi_0.20.3-3_i386.deb
 9905be916a697d96d90f092a60114bffaccdc8f5e68e765eb5190ecdedb0e193 470648 
libmeep-mpi2_0.20.3-3_i386.deb
 0145e6b5027fe4b37af1a09beb793eab24f3add0c5f96890a2752e3cad8e5007 22402 
libmeep-mpi-dev_0.20.3-3_i386.deb
Files: 
 c1d41937f6914babdfa76988f377dc3d 1240 science optional meep_0.20.3-3.dsc
 62666a2fe577cb94d9c113f56fb93f71 127964 science optional meep_0.20.3-3.diff.gz
 7dd33266229fba8d2b3b6fc688f8ff6f 170714 science optional meep_0.20.3-3_i386.deb
 364728c12d61d488afe9f352cde4151d 260066 libs optional 
libmeep2_0.20.3-3_i386.deb
 0dd4cb71b33b2d6b664b5f73d76cf1bc 22332 libdevel optional 
libmeep-dev_0.20.3-3_i386.deb
 4e96eb6ab8b4f964df187135d1cd 170772 science extra 
meep-mpi_0.20.3-3_i386.deb
 fe0735c3d2b93f27febb685b2ee5af0b 470648 libs optional 
libmeep-mpi2_0.20.3-3_i386.deb
 4c96a07bab26d1479bdcabee18f2a0c0 22402 libdevel optional 
libmeep-mpi-dev_0.20.3-3_i386.deb

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

iEYEARECAAYFAkn937AACgkQwAfeuzCCU0VFTACfYqMGyHYFeIWgtcvidhwfYIo3
EcwAn2uF9M8gklPEA3N5lPszQOtT1LKH
=XRUY
-END PGP SIGNATURE-


Accepted:
libmeep-dev_0.20.3-3_i386.deb
  to pool/main/m/meep/libmeep-dev_0.20.3-3_i386.deb
libmeep-mpi-dev_0.20.3-3_i386.deb
  to pool/main/m/meep/libmeep-mpi-dev_0.20.3-3_i386.deb
libmeep-mpi2_0.20.3-3_i386.deb
  to pool/main/m/meep/libmeep-mpi2_0.20.3-3_i386.deb
libmeep2_0.20.3-3_i386.deb
  to pool/main/m/meep/libmeep2_0.20.3-3_i386.deb
meep-mpi_0.20.3-3_i386.deb
  to pool/main/m/meep/meep-mpi_0.20.3-3_i386.deb
meep_0.20.3-3.diff.gz
  to pool/main/m/meep/meep_0.20.3-3.diff.gz
meep_0.20.3-3.dsc
  to pool/main/m/meep/meep_0.20.3-3.dsc
meep_0.20.3-3_i386.deb
  to pool/main/m/meep/meep_0.20.3-3_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted xfce4-notes-plugin 1.6.4-2 (source amd64)

2009-05-04 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 21:32:31 +0200
Source: xfce4-notes-plugin
Binary: xfce4-notes-plugin
Architecture: source amd64
Version: 1.6.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers pkg-xfce-de...@lists.alioth.debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 xfce4-notes-plugin - Notes plugin for the Xfce4 desktop
Changes: 
 xfce4-notes-plugin (1.6.4-2) unstable; urgency=low
 .
   * Upload to unstable.
   * debian/control:
 - update standards version to 3.8.1.
 - bump debhelper build-dep to 7.
   * debian/compat bumped to 7.
Checksums-Sha1: 
 45eda907db4fb4c759ccb8d1cede0b377468be73 1581 xfce4-notes-plugin_1.6.4-2.dsc
 53755af63705316a6b858a6ee25125295f692410 3257 
xfce4-notes-plugin_1.6.4-2.diff.gz
 e84a7081106cc7f32e08d3d28c180e2e4c11e341 73602 
xfce4-notes-plugin_1.6.4-2_amd64.deb
Checksums-Sha256: 
 d07bc65c70ae06c1c6893e37d77009e1ba4e30095bc3509090ae50220af05b4a 1581 
xfce4-notes-plugin_1.6.4-2.dsc
 dcfc162cbd6d67cf64da0b743a9bac71d00f8f4bea4d814a2f0e8128b079eaa7 3257 
xfce4-notes-plugin_1.6.4-2.diff.gz
 2f73c97a07993b692db5b3750f7f17a165bb1c8f2846255aeba8c39bc6fa69f2 73602 
xfce4-notes-plugin_1.6.4-2_amd64.deb
Files: 
 e3b8d811c029c3cf4ca8240e9ac37e3a 1581 x11 optional 
xfce4-notes-plugin_1.6.4-2.dsc
 4cbefa2c912783c12c6ce195fbfc830f 3257 x11 optional 
xfce4-notes-plugin_1.6.4-2.diff.gz
 68c00c89cb0fefa2da7e8e68b70cf9c1 73602 x11 optional 
xfce4-notes-plugin_1.6.4-2_amd64.deb

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

iEYEARECAAYFAkn/SkcACgkQTUTAIMXAW67x0QCgtkiSjZLeqGJESXaITYIAlTDo
o6gAoIap73BrZzJbo4NBSgK3A7tKqv/y
=x9Pz
-END PGP SIGNATURE-


Accepted:
xfce4-notes-plugin_1.6.4-2.diff.gz
  to pool/main/x/xfce4-notes-plugin/xfce4-notes-plugin_1.6.4-2.diff.gz
xfce4-notes-plugin_1.6.4-2.dsc
  to pool/main/x/xfce4-notes-plugin/xfce4-notes-plugin_1.6.4-2.dsc
xfce4-notes-plugin_1.6.4-2_amd64.deb
  to pool/main/x/xfce4-notes-plugin/xfce4-notes-plugin_1.6.4-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted file 5.02-1 (source i386)

2009-05-04 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 May 2009 00:05:44 +0200
Source: file
Binary: file libmagic1 libmagic-dev python-magic python-magic-dbg
Architecture: source i386
Version: 5.02-1
Distribution: unstable
Urgency: high
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 file   - Determines file type using magic numbers
 libmagic-dev - File type determination library using magic numbers 
(developmen
 libmagic1  - File type determination library using magic numbers
 python-magic - File type determination library using magic numbers (Python 
bin
 python-magic-dbg - File type determination library using magic numbers 
(Python bin
Changes: 
 file (5.02-1) unstable; urgency=high
 .
   * Using correct rfc-2822 date formats in changelog.
   * Merging upstream version 5.02:
 - Fixes a buffer overflow.
Checksums-Sha1: 
 376030c1e37d97088e8542745150384428ca2e7d 1210 file_5.02-1.dsc
 d3449480ee28b926a373a9c13ff3de981b3c5814 615293 file_5.02.orig.tar.gz
 e296c4b7898e1ccd697d982f6c1b337d5b51b678 46828 file_5.02-1.diff.gz
 b0c35c24db5c9a49948e50d1faf40a80070791a6 46258 file_5.02-1_i386.deb
 539c9eaa8237826ee9913dc6e5859e070a968c36 386252 libmagic1_5.02-1_i386.deb
 54271b422b2388a860a12b9399e16403e5d6fc24 96894 libmagic-dev_5.02-1_i386.deb
 e42d6b569e422f407f5597d5359f40a3452963b9 35370 python-magic_5.02-1_i386.deb
 366b9b92a9badf9c0e376939d207500c4c33bb04 25596 python-magic-dbg_5.02-1_i386.deb
Checksums-Sha256: 
 c65e602539c663598d4e3bdb4eefcd99bccd58ed7a908b58d3dc51d5683e3d8c 1210 
file_5.02-1.dsc
 827234e4a13faa33d8c8d63695b443329ac924336cacbca64b4b3009b7ce111c 615293 
file_5.02.orig.tar.gz
 2c4e864f1a15cbf5aa5d4e4c839cc009b207373c29ec812d03379f1eb393a29f 46828 
file_5.02-1.diff.gz
 34ba2f543ffdf15c31973bc989e86dcd9fffa9e2ce9f2625b683357be3fdc935 46258 
file_5.02-1_i386.deb
 26849a943df59834b41cbb1b7a4a169cfe0d311bdf3aeea6a300542175cb1a44 386252 
libmagic1_5.02-1_i386.deb
 73032ad00df4abc40bb8ecd7987da56ed7b3ca7c7f83b6e60b190e476cadad4a 96894 
libmagic-dev_5.02-1_i386.deb
 25ac27d89f1ba6b2269568c38dfbce88fa186d6ef6d431f413a63aed5f9daec5 35370 
python-magic_5.02-1_i386.deb
 8880631680efbdbf16b52829a20c2cb3c5c85b56c21804f1122ecb958d73e755 25596 
python-magic-dbg_5.02-1_i386.deb
Files: 
 a30b2df0ca9d094f454deec00f0d4d88 1210 utils standard file_5.02-1.dsc
 003c56bd1a130390522b45ebcd5ac179 615293 utils standard file_5.02.orig.tar.gz
 e4f0bdeb0bd1a4e7187bc6e96c8cb731 46828 utils standard file_5.02-1.diff.gz
 6b3e06288cde38444a5b8a08d7464ea3 46258 utils standard file_5.02-1_i386.deb
 694e1c08808b2f534c887a676a11788b 386252 libs standard libmagic1_5.02-1_i386.deb
 de2f64973485adcadc2ab4e209d39980 96894 libdevel optional 
libmagic-dev_5.02-1_i386.deb
 4bbdb577fc369dd543f4488e51b08b98 35370 python extra 
python-magic_5.02-1_i386.deb
 a2b7475d548ca1a5144a1a59429d7146 25596 debug extra 
python-magic-dbg_5.02-1_i386.deb

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

iEYEARECAAYFAkn/ZzEACgkQ+C5cwEsrK56epwCeMVei6eN/3reuHle21i+sYxoD
SQwAoM4PVyVtA3dSATVP4a8TClbVesbS
=6V7c
-END PGP SIGNATURE-


Accepted:
file_5.02-1.diff.gz
  to pool/main/f/file/file_5.02-1.diff.gz
file_5.02-1.dsc
  to pool/main/f/file/file_5.02-1.dsc
file_5.02-1_i386.deb
  to pool/main/f/file/file_5.02-1_i386.deb
file_5.02.orig.tar.gz
  to pool/main/f/file/file_5.02.orig.tar.gz
libmagic-dev_5.02-1_i386.deb
  to pool/main/f/file/libmagic-dev_5.02-1_i386.deb
libmagic1_5.02-1_i386.deb
  to pool/main/f/file/libmagic1_5.02-1_i386.deb
python-magic-dbg_5.02-1_i386.deb
  to pool/main/f/file/python-magic-dbg_5.02-1_i386.deb
python-magic_5.02-1_i386.deb
  to pool/main/f/file/python-magic_5.02-1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted ncurses 5.7+20090502-1 (source i386 all)

2009-05-04 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 May 2009 00:19:41 +0200
Source: ncurses
Binary: libncurses5 libncurses5-dev libncurses5-dbg libncursesw5 
libncursesw5-dev libncursesw5-dbg lib64ncurses5 lib64ncurses5-dev lib32ncurses5 
lib32ncurses5-dev lib32ncursesw5 lib32ncursesw5-dev ncurses-bin ncurses-base 
ncurses-term
Architecture: source i386 all
Version: 5.7+20090502-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 lib32ncurses5 - shared libraries for terminal handling (32-bit)
 lib32ncurses5-dev - developer's libraries for ncurses (32-bit)
 lib32ncursesw5 - shared libraries for terminal handling (wide character 
support) (
 lib32ncursesw5-dev - developer's libraries for ncursesw (32-bit)
 lib64ncurses5 - shared libraries for terminal handling (64-bit)
 lib64ncurses5-dev - developer's libraries for ncurses (64-bit)
 libncurses5 - shared libraries for terminal handling
 libncurses5-dbg - debugging/profiling libraries for ncurses
 libncurses5-dev - developer's libraries and docs for ncurses
 libncursesw5 - shared libraries for terminal handling (wide character support)
 libncursesw5-dbg - debugging/profiling libraries for ncurses
 libncursesw5-dev - developer's libraries for ncursesw
 ncurses-base - basic terminal type definitions
 ncurses-bin - terminal-related programs and man pages
 ncurses-term - additional terminal type definitions
Changes: 
 ncurses (5.7+20090502-1) unstable; urgency=low
 .
   * Merging upstream version 5.7+20090502.
   * Using correct rfc-2822 date formats in changelog.
Checksums-Sha1: 
 97130ff25bea19673f9d13a7dbd3de7640c16f19 1517 ncurses_5.7+20090502-1.dsc
 155b34de940322359990a7907eb574edccac1085 2536060 
ncurses_5.7+20090502.orig.tar.gz
 a7ea6f7cbb6818aba99bbde334e4db723b28945e 40047 ncurses_5.7+20090502-1.diff.gz
 4cfe4f53da77ab312ed5f47598890fff7509b306 339842 
libncurses5_5.7+20090502-1_i386.deb
 7d7e8e99dcb599dd5df71b6727fc348e51e34e02 1559580 
libncurses5-dev_5.7+20090502-1_i386.deb
 cb3a301fcd3450cd02bc8cfaf1b94d0ed443a351 1877760 
libncurses5-dbg_5.7+20090502-1_i386.deb
 454ab8e42d224fd9f9c71f2d49ba27f611ab4b27 363082 
libncursesw5_5.7+20090502-1_i386.deb
 6261ac61d777dc6a49d91577941f07cbb2be2ac9 481306 
libncursesw5-dev_5.7+20090502-1_i386.deb
 9dee94acc877ddec6d9c747caf746ea31a70a449 2094224 
libncursesw5-dbg_5.7+20090502-1_i386.deb
 1654972eafa7e2a354ef9fd6392a06c42a107763 353782 
lib64ncurses5_5.7+20090502-1_i386.deb
 84da659eb9026ca0cb796cf67f18a291e3355db2 420096 
lib64ncurses5-dev_5.7+20090502-1_i386.deb
 c9d9ef70d28fe83566e1df1dd3f3fc12be564ebd 305872 
ncurses-bin_5.7+20090502-1_i386.deb
 ad28dbd705f1c35122216be8ea88776582db612c 180172 
ncurses-base_5.7+20090502-1_all.deb
 44ae2594ed6ccaedfdd314a916aa10467db9a503 562262 
ncurses-term_5.7+20090502-1_all.deb
Checksums-Sha256: 
 bcb92f56b0f750c5edf4653681cd13887d73bd3d4efbee4d06d8f91f499fce90 1517 
ncurses_5.7+20090502-1.dsc
 7724f8ace5d1b3b3fbdc96485c1befb054c5614368f8b59c721edbd560b3 2536060 
ncurses_5.7+20090502.orig.tar.gz
 0e9f12f03c8bc021dfbdc57087c03a1386046f3af99a18eaf32446e22b334640 40047 
ncurses_5.7+20090502-1.diff.gz
 e27eadba61b5d4eca986ecafd06a9d827614ee2fe09c999df9dcd6b45e4c7439 339842 
libncurses5_5.7+20090502-1_i386.deb
 2c87fa1d3410f3d4630a8568f160a29cc0d49bc30740bd766f11903e30044b75 1559580 
libncurses5-dev_5.7+20090502-1_i386.deb
 71c7160e51e7609493741191558e49dcbc03bcd28e535ef9275a64b4851cda14 1877760 
libncurses5-dbg_5.7+20090502-1_i386.deb
 6f738a2afd2e107f57cab323d0d9b5b81062e53e935cec41c7f48d90433b7383 363082 
libncursesw5_5.7+20090502-1_i386.deb
 960f13619875733e200ae4e0b518f66f4f40877c340b82c58cd1ca3de6b44527 481306 
libncursesw5-dev_5.7+20090502-1_i386.deb
 d0931bae0566e1dd78fe35a6f15bded8d080a3e0be9a05963d089e15189d9c46 2094224 
libncursesw5-dbg_5.7+20090502-1_i386.deb
 746e37993d4b230bc4998cca7ac650155b8540a6bc41ea6ad6d534da1d737bf6 353782 
lib64ncurses5_5.7+20090502-1_i386.deb
 d998695b80334d15db348d9f3fb451fb90406f23411440a42cf3324235a4dc8a 420096 
lib64ncurses5-dev_5.7+20090502-1_i386.deb
 c2905cdba7751216c5689176df62b8560d90aaede4da8d5f7d2c95fe10c2f160 305872 
ncurses-bin_5.7+20090502-1_i386.deb
 334b73fca3f0d4cb6d64b88d46c4900ddf627cdf28ab0dc2def3e7c6c0b94af7 180172 
ncurses-base_5.7+20090502-1_all.deb
 e00e33502af18a14f3ccea7e10d59310b9dc0904476b6c1fd644fb0414066c3f 562262 
ncurses-term_5.7+20090502-1_all.deb
Files: 
 5bdc762418a3a07edd0f51a261d338ee 1517 libs standard ncurses_5.7+20090502-1.dsc
 b5a0bbc454252252850506bb293af8e9 2536060 libs standard 
ncurses_5.7+20090502.orig.tar.gz
 d9ea54de702ec9c60dc305bf94453547 40047 libs standard 
ncurses_5.7+20090502-1.diff.gz
 2a217911ef8fbaaa6acd024fabbddae6 339842 libs required 
libncurses5_5.7+20090502-1_i386.deb
 c03f0a0002a21f37f6a2f32380751b52 1559580 libdevel optional 
libncurses5-dev_5.7+20090502-1_i386.deb
 dfb523309f646925d7ef51982f414550 1877760 debug extra 
libncurses5-dbg_5.7+20090502-1_i386.deb
 

Accepted ecj 3.4.2-4 (source all hppa i386)

2009-05-04 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Feb 2009 22:34:28 +0100
Source: ecj
Binary: ecj libecj-java libecj-java-gcj ecj1 ecj-gcj
Architecture: all hppa i386 source 
Version: 3.4.2-4
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 ecj- standalone version of the Eclipse Java compiler
 ecj-gcj- standalone version of the Eclipse Java compiler (native version)
 ecj1   - java byte code compiler used by gcj
 libecj-java - Eclipse Java compiler (library)
 libecj-java-gcj - Eclipse Java compiler (native library)
Changes:
 ecj (3.4.2-4) unstable; urgency=low
 .
   * Build using gcj-4.4-jdk on hppa.
Checksums-Sha1: 
 61c4a788d38b3daba8b51da56ce5f17c49e7 13826 ecj_3.4.2-4_i386.deb
 2d528d14de7fa8d4108b65a661d0749187851211 1721918 ecj-gcj_3.4.2-4_hppa.deb
 339f6574636059dcda8cefe6d64a998e39b8ca74 1215892 libecj-java_3.4.2-4_all.deb
 6689e4c974cea39189d608f582d75904ae8da248 1348 ecj_3.4.2-4.dsc
 9d8ce41c229924d6977cc8231dc01ee931dd7a2c 1414108 ecj-gcj_3.4.2-4_i386.deb
 9f9c3cc7e3a2ba2bfd282b005858ffa080f70b8d 13840 ecj_3.4.2-4_hppa.deb
 ac93196a3c66c0904da14c60bfe90b7d35caf383 26152 ecj_3.4.2-4.diff.gz
 c8703efca7347c917f08a075bc9fd203eaa97bd3 2109914 
libecj-java-gcj_3.4.2-4_hppa.deb
 d6c1b7936f3fe56f388ebc987cfe918a326372d6 1504942 
libecj-java-gcj_3.4.2-4_i386.deb
Checksums-Sha256: 
 083c14da6be36a6a2da252a25f6d42a2ba9009cc0f278daed0a051e6d1d096aa 1215892 
libecj-java_3.4.2-4_all.deb
 12474e97f8dbc22d570d4d1205b230d1db5e6d0762dd10c5f673db495540aba5 1414108 
ecj-gcj_3.4.2-4_i386.deb
 d12eb1d092cc72b736318bbaaeb9fdc481ac3484f871da27cb3679a77209cacc 1348 
ecj_3.4.2-4.dsc
 988aa3bf63ac9c7b196846e134766efe57148c5c7dc65a14cd89433e623858d0 2109914 
libecj-java-gcj_3.4.2-4_hppa.deb
 a4858aa0add6f8518a650aceb29698e4b5e6aca90a6518ee05c8cc6fbfacb507 13826 
ecj_3.4.2-4_i386.deb
 b62d00f0e76a43db75c097b3f409efa22a873b277e69e3be9c92be60e858d3cc 1504942 
libecj-java-gcj_3.4.2-4_i386.deb
 c66309f13007b9ec8b32afad797193b902e5df22a0621ae45e806f9cfb21fed8 1721918 
ecj-gcj_3.4.2-4_hppa.deb
 e2e79c788cab52d3ac67042d8a048d87056f167678d729ccef710755706adb77 13840 
ecj_3.4.2-4_hppa.deb
 eaeb4857f1a2fe01a98d5a3fc55bf8ad7750c43c9c01703054aec918fb549d0d 26152 
ecj_3.4.2-4.diff.gz
Files: 
 265dbd861ea5216ea787c27ea4530a07 1414108 devel optional 
ecj-gcj_3.4.2-4_i386.deb
 2b88c5cca9c86013651bfb51f0539a66 1721918 devel optional 
ecj-gcj_3.4.2-4_hppa.deb
 3674d24258521d276c350805b50852c4 2109914 libs optional 
libecj-java-gcj_3.4.2-4_hppa.deb
 7bb962736bb0ba6ab5abe7c80a63f167 13826 devel optional ecj_3.4.2-4_i386.deb
 a222e1f3ce2d5cda06cae1bbeae602ff 1215892 libs optional 
libecj-java_3.4.2-4_all.deb
 bfc78d251331662a8aa795d66b5a8d5d 26152 devel optional ecj_3.4.2-4.diff.gz
 f672562cec0984f6828d40c9b2fea616 13840 devel optional ecj_3.4.2-4_hppa.deb
 5b96b0dcbc9ea73bb7a5e389d67add4e 1348 devel optional ecj_3.4.2-4.dsc
 f86f55d2c3202cd544957d15315b6ff1 1504942 libs optional 
libecj-java-gcj_3.4.2-4_i386.deb

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

iEYEARECAAYFAkn/bpcACgkQStlRaw+TLJw+0gCfXRSSuGGiiI0z02XeoLTJAOgn
STMAnjgMzncMTvQcoOaikWXItLwj6Mst
=Si8B
-END PGP SIGNATURE-


Accepted:
ecj-gcj_3.4.2-4_hppa.deb
  to pool/main/e/ecj/ecj-gcj_3.4.2-4_hppa.deb
ecj-gcj_3.4.2-4_i386.deb
  to pool/main/e/ecj/ecj-gcj_3.4.2-4_i386.deb
ecj_3.4.2-4.diff.gz
  to pool/main/e/ecj/ecj_3.4.2-4.diff.gz
ecj_3.4.2-4.dsc
  to pool/main/e/ecj/ecj_3.4.2-4.dsc
ecj_3.4.2-4_hppa.deb
  to pool/main/e/ecj/ecj_3.4.2-4_hppa.deb
ecj_3.4.2-4_i386.deb
  to pool/main/e/ecj/ecj_3.4.2-4_i386.deb
libecj-java-gcj_3.4.2-4_hppa.deb
  to pool/main/e/ecj/libecj-java-gcj_3.4.2-4_hppa.deb
libecj-java-gcj_3.4.2-4_i386.deb
  to pool/main/e/ecj/libecj-java-gcj_3.4.2-4_i386.deb
libecj-java_3.4.2-4_all.deb
  to pool/main/e/ecj/libecj-java_3.4.2-4_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted sawfish 1:1.3.5.2-1 (source all amd64)

2009-05-04 Thread Luis Rodrigo Gallardo Cruz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 02 May 2009 15:03:53 -0700
Source: sawfish
Binary: sawfish sawfish-dbg sawfish-data sawfish-lisp-source
Architecture: source all amd64
Version: 1:1.3.5.2-1
Distribution: unstable
Urgency: low
Maintainer: Luis Rodrigo Gallardo Cruz rodr...@debian.org
Changed-By: Luis Rodrigo Gallardo Cruz rodr...@debian.org
Description: 
 sawfish- a window manager for X11
 sawfish-data - sawfish architecture independent data
 sawfish-dbg - sawfish debugging symbols
 sawfish-lisp-source - sawfish lisp files
Closes: 101164
Changes: 
 sawfish (1:1.3.5.2-1) unstable; urgency=low
 .
   * New Upstream Release. Adds assorted bugfixes and updates from community
 reviewed patches and updates the build infrastructure to the new
 librep and rep-gtk releases.
 .
 - theme/Crux/theme.jl: Added two new button layouts:
   Complete and Complete-Inverse (Closes: #101164).
 .
 - debian/patches/integration.jl, debian/patches/menus.jl,
   debian/patches/sawfish-menus.jl have been integrated upstream.
 .
 - config.h.in cherry picked from upstream 5b22f0c28 to define some macros.
 .
   * debian/control: Bump build depends on librep and rep-gtk and add libtool.
   * Expand package descriptions.
   * sawfish-dbg is Section: debug and Recommends: sawfish-lisp-source.
   * Update debian/watch for the new upstream tarball names.
   * Remove unused quilt version lintian override.
   * Bump Standards-Version to 3.8.1. No changes needed.
Checksums-Sha1: 
 a7a5dfd209bd1ff525a4c34ad5db7c8cb162782d 1522 sawfish_1.3.5.2-1.dsc
 9cc27f7e4240fa0e47925e78b2794cfc3586c9e0 2080895 sawfish_1.3.5.2.orig.tar.gz
 b52bf6c75805b4fbd30a4a34e2987c62b9462961 40725 sawfish_1.3.5.2-1.diff.gz
 5f43d6ef35168129cf0e07018a6256ae202ae774 1368968 sawfish-data_1.3.5.2-1_all.deb
 61cea991dd4c9df25bbd8c2ace01428d5471dcb8 232408 
sawfish-lisp-source_1.3.5.2-1_all.deb
 97ec624ad1b2257e401d40ee01cc4718650ace95 484152 sawfish_1.3.5.2-1_amd64.deb
 6e76c39e831760f18b26d0e68cd15f85d9512611 283084 sawfish-dbg_1.3.5.2-1_amd64.deb
Checksums-Sha256: 
 4b983a898e7632a0731e1b871ab6ad8799acb9c70f4e1d1494a55b230f18c38b 1522 
sawfish_1.3.5.2-1.dsc
 7ef6ddb64d82dc4380c20a1a3a2204839df34b22dd4df286b8f3d1b040c629d6 2080895 
sawfish_1.3.5.2.orig.tar.gz
 05c8b7b91a8aca362b4d51ddc7b8d1a1945ec9ab7cd152c5980b5c2bd56bd5ea 40725 
sawfish_1.3.5.2-1.diff.gz
 2d9058278a7d095ef366ee1ae8257d7c574d8412172ab204fe5cb3ff9afe970d 1368968 
sawfish-data_1.3.5.2-1_all.deb
 ac5d6cfe7b249edf6999c79843050f124a02095e6522e10b1cffa343d99956a1 232408 
sawfish-lisp-source_1.3.5.2-1_all.deb
 f4a6622eaa7e7244f678e4d0ee6400b3337b2b9e88d3dc5fb876c628340d223b 484152 
sawfish_1.3.5.2-1_amd64.deb
 da94d5558168fb8312e808424515cff3771009f4a8dde018be81d9fb647dfd63 283084 
sawfish-dbg_1.3.5.2-1_amd64.deb
Files: 
 37df64857f4d3b9d56559fe5157e67cc 1522 x11 optional sawfish_1.3.5.2-1.dsc
 55e205d9c3ddbba21333aa8eba5ee30d 2080895 x11 optional 
sawfish_1.3.5.2.orig.tar.gz
 6bef8a04a49a64b1d228a7df402f1319 40725 x11 optional sawfish_1.3.5.2-1.diff.gz
 7f542fa07557a5c093a5f3c58eeab485 1368968 x11 optional 
sawfish-data_1.3.5.2-1_all.deb
 41f60514c7b8fff1b1db6ca9f2b50756 232408 x11 optional 
sawfish-lisp-source_1.3.5.2-1_all.deb
 4f4e2cf6f7bfe6b8545f674622e15fc5 484152 x11 optional 
sawfish_1.3.5.2-1_amd64.deb
 deeb3829a6de7fac3268ea87aab0cd31 283084 debug extra 
sawfish-dbg_1.3.5.2-1_amd64.deb

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

iEYEARECAAYFAkn/dIsACgkQAZmDGK3JvCi1bQCaA1Yw93ZbDqGj91IK0uMIGpYN
ZrgAoI78LrxQ0L08E4mdojjzLBXTs07f
=wBbZ
-END PGP SIGNATURE-


Accepted:
sawfish-data_1.3.5.2-1_all.deb
  to pool/main/s/sawfish/sawfish-data_1.3.5.2-1_all.deb
sawfish-dbg_1.3.5.2-1_amd64.deb
  to pool/main/s/sawfish/sawfish-dbg_1.3.5.2-1_amd64.deb
sawfish-lisp-source_1.3.5.2-1_all.deb
  to pool/main/s/sawfish/sawfish-lisp-source_1.3.5.2-1_all.deb
sawfish_1.3.5.2-1.diff.gz
  to pool/main/s/sawfish/sawfish_1.3.5.2-1.diff.gz
sawfish_1.3.5.2-1.dsc
  to pool/main/s/sawfish/sawfish_1.3.5.2-1.dsc
sawfish_1.3.5.2-1_amd64.deb
  to pool/main/s/sawfish/sawfish_1.3.5.2-1_amd64.deb
sawfish_1.3.5.2.orig.tar.gz
  to pool/main/s/sawfish/sawfish_1.3.5.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted debianutils 3.1.2 (source amd64)

2009-05-04 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 18:56:14 -0400
Source: debianutils
Binary: debianutils
Architecture: source amd64
Version: 3.1.2
Distribution: unstable
Urgency: low
Maintainer: Clint Adams sch...@debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 debianutils - Miscellaneous utilities specific to Debian
Closes: 526981
Changes: 
 debianutils (3.1.2) unstable; urgency=low
 .
   * Patch from Zack Weinberg to fix tempfile -n crash.  closes: #526981.
Checksums-Sha1: 
 ec1ba86030e2714d8d1651a1a5a1927e3de97e6f 874 debianutils_3.1.2.dsc
 ff048e3d0857c83c9c8608859dc5cff3ea67767b 132099 debianutils_3.1.2.tar.gz
 128acf3348d25b93b9a3bbfbeda24b3a6d0f56e2 48756 debianutils_3.1.2_amd64.deb
Checksums-Sha256: 
 7033f57a52249282bdb0a2dfdd6105c69df813c2656773cda0bea5b4d75b7a6f 874 
debianutils_3.1.2.dsc
 abba4574d28b72fd5b08de96b78cfcca76d8e750f5816f0a061689380b9147ed 132099 
debianutils_3.1.2.tar.gz
 cca576496b40447ba3f5bdbbaf0430f3f14b28aade1e7f94e178aa2c81749196 48756 
debianutils_3.1.2_amd64.deb
Files: 
 83b8f48a96dafcf3dc77b920e9957c89 874 utils required debianutils_3.1.2.dsc
 3ec397a271ad025523f4082436cfa2fc 132099 utils required debianutils_3.1.2.tar.gz
 7ddbd00a8dd4035b54b93c7c86028faa 48756 utils required 
debianutils_3.1.2_amd64.deb

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

iD8DBQFJ/3L85m0u66uWM3ARAmagAJ4jBq2W/NN0WEC8+eMTV8k2GlaBJwCglexE
ceviCsY9Upbhp8hVK0tyeG4=
=UFKt
-END PGP SIGNATURE-


Accepted:
debianutils_3.1.2.dsc
  to pool/main/d/debianutils/debianutils_3.1.2.dsc
debianutils_3.1.2.tar.gz
  to pool/main/d/debianutils/debianutils_3.1.2.tar.gz
debianutils_3.1.2_amd64.deb
  to pool/main/d/debianutils/debianutils_3.1.2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted gjdoc 0.7.9-4 (source i386 hppa)

2009-05-04 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 12:01:25 +
Source: gjdoc
Binary: gjdoc
Architecture: hppa i386 source 
Version: 0.7.9-4
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 gjdoc  - documentation generation framework for java source files
Changes:
 gjdoc (0.7.9-4) unstable; urgency=low
 .
   * Build on hppa using gcj-4.4-jdk.
Checksums-Sha1: 
 597c5c0ad208e86dde912d92c3f9cf356151f2ca 1909528 gjdoc_0.7.9-4_hppa.deb
 828c0bdf95b8978b465868cc592eaba4ee2d964f 19243 gjdoc_0.7.9-4.diff.gz
 c2e28b95afbd69dced7038fc43fce02e498fa9b8 1428 gjdoc_0.7.9-4.dsc
 fe1681454c07ee4442cf8ff0f7216a688e3ff852 1615412 gjdoc_0.7.9-4_i386.deb
Checksums-Sha256: 
 fe84529cc5327825bee792e8e8bacd0c1d0cb762497539c11f53206082cb08da 1428 
gjdoc_0.7.9-4.dsc
 3ce81a57c99938756eae82a6fdc3bb1ab4808c5d1ff478fde7b75454e6354e2c 1909528 
gjdoc_0.7.9-4_hppa.deb
 a8f6f4f9bbe9f7312a8902bdc4bd57108c176270844524beae89bc79c7c092a1 19243 
gjdoc_0.7.9-4.diff.gz
 dcfe074ccad7ad64d248eb2558b7f46d23908ba8fb07f61edcb59d776e38599c 1615412 
gjdoc_0.7.9-4_i386.deb
Files: 
 1665322e8cfd1796a628b76399621f67 1615412 devel optional gjdoc_0.7.9-4_i386.deb
 31fc68607087dc8aed226776a6f865c1 19243 devel optional gjdoc_0.7.9-4.diff.gz
 08d78aa8f10525e37c622c601d869669 1428 devel optional gjdoc_0.7.9-4.dsc
 bb09211629454cbe18a861fe2cb926bc 1909528 devel optional gjdoc_0.7.9-4_hppa.deb

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

iEYEARECAAYFAkn/cf8ACgkQStlRaw+TLJya/gCfWNdYSIb0StpArjK8605Siok3
ogMAoLyKkDsOxJZ7trC9ymcDp3xIetFK
=4Ve1
-END PGP SIGNATURE-


Accepted:
gjdoc_0.7.9-4.diff.gz
  to pool/main/g/gjdoc/gjdoc_0.7.9-4.diff.gz
gjdoc_0.7.9-4.dsc
  to pool/main/g/gjdoc/gjdoc_0.7.9-4.dsc
gjdoc_0.7.9-4_hppa.deb
  to pool/main/g/gjdoc/gjdoc_0.7.9-4_hppa.deb
gjdoc_0.7.9-4_i386.deb
  to pool/main/g/gjdoc/gjdoc_0.7.9-4_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted bobcat 2.02.02-1 (source i386)

2009-05-04 Thread Frank B. Brokken
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 08:23:37 +0200
Source: bobcat
Binary: libbobcat2 libbobcat-dev
Architecture: source i386
Version: 2.02.02-1
Distribution: unstable
Urgency: low
Maintainer: Frank B. Brokken f.b.brok...@rug.nl
Changed-By: Frank B. Brokken f.b.brok...@rug.nl
Description: 
 libbobcat-dev - headers and documentation for the Bobcat library
 libbobcat2 - run-time (shared) Bobcat library
Closes: 525746
Changes: 
 bobcat (2.02.02-1) unstable; urgency=low
 .
   * New upstream release.  (Closes: #525746)
Checksums-Sha1: 
 372fdf95c370185445ca4de41d7c969244f8e379 1132 bobcat_2.02.02-1.dsc
 37988e827c79c940a7fa236dd813416ab7aee09d 526958 bobcat_2.02.02.orig.tar.gz
 ed72765f52270fbf25411e00b37edd3ac7c36ff3 1 bobcat_2.02.02-1.diff.gz
 c8b2cb541b3e093f5e3b64abfb9ca678bb3233a5 183572 libbobcat2_2.02.02-1_i386.deb
 fb79741bebbee50407ae4f548af7414386443566 1052116 
libbobcat-dev_2.02.02-1_i386.deb
Checksums-Sha256: 
 00f833bc7411320bdede47f932c34c926de3bed635d766a403a35f0f33aac8a3 1132 
bobcat_2.02.02-1.dsc
 af079c340d93de68bc0100aaf9c89b9eec7d8bb0f6c9ca332158c47686300f40 526958 
bobcat_2.02.02.orig.tar.gz
 4f409b5767768819705dd2c677d22e5b19f08f6bd5e7aaa5cdad73cbf26c9230 1 
bobcat_2.02.02-1.diff.gz
 a715f55247bc2f1f634163caec3c2c6ec9e385873af358d7dbbe3aa49f1f5ff9 183572 
libbobcat2_2.02.02-1_i386.deb
 4c104fffed2e36b908fee94d6701ef2d232bf921a61fd428e8a8c3778395288f 1052116 
libbobcat-dev_2.02.02-1_i386.deb
Files: 
 7601248cfa4954abef71bb47302d90c5 1132 libs optional bobcat_2.02.02-1.dsc
 b487c2d85fa225250dbd45836aba5fea 526958 libs optional 
bobcat_2.02.02.orig.tar.gz
 3dc4d96313eae86be4649f25b15ce005 1 libs optional bobcat_2.02.02-1.diff.gz
 a048a0639609d7ce1b3efc39adfdebda 183572 libs optional 
libbobcat2_2.02.02-1_i386.deb
 db2acbf226f2521c12fb58119f9ced2d 1052116 libdevel optional 
libbobcat-dev_2.02.02-1_i386.deb

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

iEYEARECAAYFAkn/TYkACgkQpdwBkPlyvgM2UQCeJ0qOsgMxe1YITQnhiEElEvGA
bXgAn0qm+KVrOr81CVpnGtmfMdTD03QI
=NMcc
-END PGP SIGNATURE-


Accepted:
bobcat_2.02.02-1.diff.gz
  to pool/main/b/bobcat/bobcat_2.02.02-1.diff.gz
bobcat_2.02.02-1.dsc
  to pool/main/b/bobcat/bobcat_2.02.02-1.dsc
bobcat_2.02.02.orig.tar.gz
  to pool/main/b/bobcat/bobcat_2.02.02.orig.tar.gz
libbobcat-dev_2.02.02-1_i386.deb
  to pool/main/b/bobcat/libbobcat-dev_2.02.02-1_i386.deb
libbobcat2_2.02.02-1_i386.deb
  to pool/main/b/bobcat/libbobcat2_2.02.02-1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted drupal5 5.17-1 (source all)

2009-05-04 Thread Luigi Gangitano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 15:03:32 +0200
Source: drupal5
Binary: drupal5
Architecture: source all
Version: 5.17-1
Distribution: unstable
Urgency: low
Maintainer: Luigi Gangitano lu...@debian.org
Changed-By: Luigi Gangitano lu...@debian.org
Description: 
 drupal5- a fully-featured content management framework
Changes: 
 drupal5 (5.17-1) unstable; urgency=low
 .
   [ Luigi Gangitano ]
   * New upstream release
 - Fixes XSS vulnerability (Ref: SA-CORE-2009-005, CVE-TBD)
Checksums-Sha1: 
 994442870535794e6df8461398acc97a3e16bfe3 1114 drupal5_5.17-1.dsc
 4d8445b5ef7adcd87ced8f6c119ea35a6e339fe2 766536 drupal5_5.17.orig.tar.gz
 ec449b3592d3f15c93ae7d07ee90f98da1ad90da 25754 drupal5_5.17-1.diff.gz
 003f9958b3d56de4060b6475b3b60e8d8200535a 778014 drupal5_5.17-1_all.deb
Checksums-Sha256: 
 2cee674a7590b41c1269c4bc8e4870a46cf2662c531cdbc7c2053fa028111638 1114 
drupal5_5.17-1.dsc
 4dda1058a6adabb6f9c714b317e5a5177d03410b4764ae82f0be85b08e4a05cf 766536 
drupal5_5.17.orig.tar.gz
 a0ca2daa88926d1b1f8091b1fbe6f6e6a379fbf0cd8b4b8aa88b4ca4e8b1d00f 25754 
drupal5_5.17-1.diff.gz
 62a040d84adbd7c866b1f427a8c6cc664d48dcf76ae4b64f21bc27925e6b9d8b 778014 
drupal5_5.17-1_all.deb
Files: 
 12c31a22a1d43e77a931e16377017c6c 1114 web extra drupal5_5.17-1.dsc
 14d5aec31f6878b959015d038280c266 766536 web extra drupal5_5.17.orig.tar.gz
 08f43fdfc3fbf64a76e0b92d28c87785 25754 web extra drupal5_5.17-1.diff.gz
 5045a87bd43c2ec37f271eec0b1486bd 778014 web extra drupal5_5.17-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (Darwin)

iEYEARECAAYFAkn/cAQACgkQ8ZumGJJMDCZHNACdEQQdPWdhahAunQIyMFS4WOdG
LxsAn17iaMCw1qIQD5ewYaZD0+xKJ9ge
=vq/y
-END PGP SIGNATURE-


Accepted:
drupal5_5.17-1.diff.gz
  to pool/main/d/drupal5/drupal5_5.17-1.diff.gz
drupal5_5.17-1.dsc
  to pool/main/d/drupal5/drupal5_5.17-1.dsc
drupal5_5.17-1_all.deb
  to pool/main/d/drupal5/drupal5_5.17-1_all.deb
drupal5_5.17.orig.tar.gz
  to pool/main/d/drupal5/drupal5_5.17.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Accepted gcc-defaults 1.83 (source i386 hppa)

2009-05-04 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 01:52:17 +0200
Source: gcc-defaults
Binary: cpp g++ g++-multilib gobjc gobjc-multilib gobjc++ gobjc++-multilib 
gfortran gfortran-multilib libgcj-common gcj gij libgcj-bc gpc gcc gcc-multilib 
gpc-doc gnat libgnatvsn-dev libgnatprj-dev gdc gcc-spu g++-spu gfortran-spu
Architecture: hppa i386 source 
Version: 1.83
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 cpp- The GNU C preprocessor (cpp)
 g++- The GNU C++ compiler
 g++-multilib - The GNU C++ compiler (multilib files)
 g++-spu- SPU cross-compiler (C++ compiler)
 gcc- The GNU C compiler
 gcc-multilib - The GNU C compiler (multilib files)
 gcc-spu- SPU cross-compiler (preprocessor and C compiler)
 gcj- The GNU Java compiler
 gdc- The D compiler
 gfortran   - The GNU Fortran 95 compiler
 gfortran-multilib - The GNU Fortran 95 compiler (multilib files)
 gfortran-spu - SPU cross-compiler (Fortran compiler)
 gij- The GNU Java bytecode interpreter
 gnat   - The GNU Ada compiler
 gobjc  - The GNU Objective-C compiler
 gobjc++- The GNU Objective-C++ compiler
 gobjc++-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-multilib - The GNU Objective-C compiler (multilib files)
 gpc- The GNU Pascal compiler
 gpc-doc- Documentation for the GNU Pascal compiler (gpc)
 libgcj-bc  - Link time only library for use with gcj
 libgcj-common - Java runtime library (common files)
 libgnatprj-dev - GNU Ada Project Manager development files
 libgnatvsn-dev - GNU Ada compiler version library - development files
Changes:
 gcc-defaults (1.83) unstable; urgency=low
 .
   * Build gij/gcj packages for hppa.
Checksums-Sha1: 
 11afd7847a49020373a740c1071b364a4bc156f7 1132 libgcj-bc_4.3.3-5_i386.deb
 13ef2d8fa7006385588efb4866fdb34ed49a718f 13918 gnat_4.3.3-5_i386.deb
 1d013ee1e7057ad789e9d4f4db2a18876b95a093 1118 gfortran_4.3.3-5_hppa.deb
 334e89eed7765087cf63f9054455160c68f0341a 1308 gcc-defaults_1.83.dsc
 21410d05fa47c90966dbe661197d9f79801957c6 836 gobjc_4.3.3-5_hppa.deb
 2bbb2596aa94efbbf06d03fcad10c7e7d5ce9b4c 1122 gfortran_4.3.3-5_i386.deb
 2cbb5b8dc98f96f33aada243adc4830570ca9688 4994 gcc_4.3.3-5_i386.deb
 3112736a52c5fbcadebbc120490a0ad95685a6a0 47936 gcc-defaults_1.83.tar.gz
 347e749a9e72b28b2910b9d8cceaada642c62d04 14170 cpp_4.3.3-5_i386.deb
 356b0aa87123eec9a4e42e00dcf9b36e13065fe9 904 libgnatvsn-dev_4.3.3-5_hppa.deb
 35d57274682a9b878ce3e971929dea26b16596c5 872 gobjc++_4.3.3-5_i386.deb
 36fb2ac463d34377c78a706da1bd1e9c3d16417a 1138 libgcj-bc_4.4.0-1_hppa.deb
 37c5ec8f5b657af96f813b2aa405fb72dba4cb4f 5018 gcc_4.3.3-5_hppa.deb
 3bc14f1dea61d7f7b0f925047e0f853238ca47dc 13906 gnat_4.3.3-5_hppa.deb
 51adda93ce98affb8647f573728be2f4bb5a79a6 1380 gcj_4.3.3-5_i386.deb
 530f2df156f6c52ece7a356425dfcfbf935594bc 842 gobjc-multilib_4.3.3-5_i386.deb
 5824b300a1946b1f95b16610982b0984036a83d9 14172 gdc_4.1.2-33_hppa.deb
 64bd1f92d76823442ef0e8e12546c470368343d2 1444 gij_4.4.0-1_hppa.deb
 6b07736ef6b57d9e5553ebf27dcf8f3e136e8186 1026 libgnatprj-dev_4.3.3-5_hppa.deb
 73eff2710d461a3ff23567856f17aa4bfe4305bb 1022 gpc-doc_2.1-4.1.2-33_i386.deb
 74337944feab536a422c434b0c06d97baa82b695 1006 gpc-doc_2.1-4.1.2-33_hppa.deb
 77914455c59918ebfe4c23b7f81048dacbce8760 13864 libgcj-common_4.3.3-5_hppa.deb
 7ad3a2e786ad0a266a71f62e7ac55a10ecf2d983 14176 gdc_4.1.2-33_i386.deb
 859747f24c55582af41d72483844b73ad8c00437 1402 gcj_4.4.0-1_hppa.deb
 86133622bc503d580ecfef122ba07d295bae11a9 850 gobjc_4.3.3-5_i386.deb
 886122f3cd82d038b825bb2120f579fb772a63eb 844 gfortran-multilib_4.3.3-5_i386.deb
 8c1ad1673a80f8ddcf5d331d95768b0a738c683c 13878 libgcj-common_4.3.3-5_i386.deb
 a16fe912c270c2a754494bc43ea951bae14d6b30 1456 gpc_2.1-4.1.2-33_hppa.deb
 a538ed8031f6a08013f5320a95455f65ec2bc426 850 gobjc++-multilib_4.3.3-5_i386.deb
 aa9029def9692d78923bce92f0aec630f397bf4e 1026 libgnatprj-dev_4.3.3-5_i386.deb
 b4daf1eb8fe1c2f09af3f458f1b5f8234ce10c65 828 g++-multilib_4.3.3-5_i386.deb
 bb76c2e730659ddecd04932974fbc0133f40601a 904 libgnatvsn-dev_4.3.3-5_i386.deb
 c5db20c061eea9c15f7bf882363d9064541f274e 1368 g++_4.3.3-5_i386.deb
 ce907cccf9a6770400b12c2f88a82295f046397d 1358 g++_4.3.3-5_hppa.deb
 ce9e4a2cf6a7ccea184eb54ef54469d18ac93e35 1430 gij_4.3.3-5_i386.deb
 ec65bdf6df6ae01fadd2e2a46d14433c6dbfb2e0 860 gobjc++_4.3.3-5_hppa.deb
 ed586079584f3197e85f0ab491d76ec1aa918eab 820 gcc-multilib_4.3.3-5_i386.deb
 f1f277226d91005f116cc1000a0c1595a548d62c 1448 gpc_2.1-4.1.2-33_i386.deb
 fd66438f734060119be14cb511f065d655537278 14168 cpp_4.3.3-5_hppa.deb
Checksums-Sha256: 
 0b3405fd08d1d855982e031b9d7634532ec0e6ed00b254372292091d51f183f2 14168 
cpp_4.3.3-5_hppa.deb
 0d0421f330591364777e15b8e9266fb9f66b34741c4fcc3141d264e2b6310861 1118 
gfortran_4.3.3-5_hppa.deb
 12c9826231aaee5259e6f52d0794d7a71ec5e92b47b449a69ec0e2f221198976 1430 

Accepted postgresql-8.4 8.4~beta1+cvs20090503-1 (source all i386)

2009-05-04 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 05 May 2009 00:58:06 +0200
Source: postgresql-8.4
Binary: libpq-dev libpq5 libecpg6 libecpg-dev libecpg-compat3 libpgtypes3 
postgresql-8.4 postgresql-client-8.4 postgresql-server-dev-8.4 
postgresql-doc-8.4 postgresql-contrib-8.4 postgresql-plperl-8.4 
postgresql-plpython-8.4 postgresql-pltcl-8.4
Architecture: source all i386
Version: 8.4~beta1+cvs20090503-1
Distribution: experimental
Urgency: low
Maintainer: Martin Pitt mp...@debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 libecpg-compat3 - older version of run-time library for ECPG programs
 libecpg-dev - development files for ECPG (Embedded PostgreSQL for C)
 libecpg6   - run-time library for ECPG programs
 libpgtypes3 - shared library libpgtypes for PostgreSQL 8.4
 libpq-dev  - header files for libpq5 (PostgreSQL library)
 libpq5 - PostgreSQL C client library
 postgresql-8.4 - object-relational SQL database, version 8.4 server
 postgresql-client-8.4 - front-end programs for PostgreSQL 8.4
 postgresql-contrib-8.4 - additional facilities for PostgreSQL
 postgresql-doc-8.4 - documentation for the PostgreSQL database management 
system
 postgresql-plperl-8.4 - PL/Perl procedural language for PostgreSQL 8.4
 postgresql-plpython-8.4 - PL/Python procedural language for PostgreSQL 8.4
 postgresql-pltcl-8.4 - PL/Tcl procedural language for PostgreSQL 8.4
 postgresql-server-dev-8.4 - development files for PostgreSQL 8.4 server-side 
programming
Changes: 
 postgresql-8.4 (8.4~beta1+cvs20090503-1) experimental; urgency=low
 .
   * New upstream snapshot.
Checksums-Sha1: 
 2aa6c4b936c8fd589b01684619adfc65d5b5fd4e 1720 
postgresql-8.4_8.4~beta1+cvs20090503-1.dsc
 c18f52727a1709faf434c74d2155a7885666b933 15515993 
postgresql-8.4_8.4~beta1+cvs20090503.orig.tar.gz
 5c941d3086ae10fcea7835bc792851afce496f41 26325 
postgresql-8.4_8.4~beta1+cvs20090503-1.diff.gz
 f598f67806829482dbfe66453f2c8053c733bda2 2034082 
postgresql-doc-8.4_8.4~beta1+cvs20090503-1_all.deb
 770aeb36d80186b1fec8cd38ae8592d13f7f1251 210838 
libpq-dev_8.4~beta1+cvs20090503-1_i386.deb
 81a9321905198ab90c082dd233306ca75ef86b3c 145388 
libpq5_8.4~beta1+cvs20090503-1_i386.deb
 316292feb3591f353ca1927635cb1af2b98d290c 47678 
libecpg6_8.4~beta1+cvs20090503-1_i386.deb
 9a602b9676ab5edd0da55cb8f21d7c7d3a7709c0 232902 
libecpg-dev_8.4~beta1+cvs20090503-1_i386.deb
 cc27c60593f275af1f401e4e2775f6e179541287 12084 
libecpg-compat3_8.4~beta1+cvs20090503-1_i386.deb
 9ba344f9a3a1df9ce7be33273c19390ef4e7247e 35874 
libpgtypes3_8.4~beta1+cvs20090503-1_i386.deb
 5ab597d5ec2d6ca4183a8dce3d18552adab1b5b3 5500750 
postgresql-8.4_8.4~beta1+cvs20090503-1_i386.deb
 17913e915b6994dd421d2cfee9c932232de72978 1544154 
postgresql-client-8.4_8.4~beta1+cvs20090503-1_i386.deb
 d338143369411988cf09ce2fe0f09459ca924f0a 609888 
postgresql-server-dev-8.4_8.4~beta1+cvs20090503-1_i386.deb
 e0b0aa3ca7bad7c8ec17c4d7ee89922d884af6f3 370366 
postgresql-contrib-8.4_8.4~beta1+cvs20090503-1_i386.deb
 ed626b4589481a8cdb45cf41e4c3fd4e79abc0e8 33912 
postgresql-plperl-8.4_8.4~beta1+cvs20090503-1_i386.deb
 609880eb86ddf2d2bf0b829aa3a3fb3014cb8c8a 31126 
postgresql-plpython-8.4_8.4~beta1+cvs20090503-1_i386.deb
 ce164312b58969c6ba9ac9910ef572780b2e6316 24800 
postgresql-pltcl-8.4_8.4~beta1+cvs20090503-1_i386.deb
Checksums-Sha256: 
 f53672d62228c0e8fced98b28be869fd9808f57a69b198a5bf9a9ebcafbea1a7 1720 
postgresql-8.4_8.4~beta1+cvs20090503-1.dsc
 dd0622ee4895df039a98b2eebfe78d5f9f3bd2ed7347c7723a7aad884ee57a48 15515993 
postgresql-8.4_8.4~beta1+cvs20090503.orig.tar.gz
 5c1e4dd69c550a3ff82ee2cff376599b080d2a2f3b76c44f43387292615b66e7 26325 
postgresql-8.4_8.4~beta1+cvs20090503-1.diff.gz
 d6a65ac21896475556957f3d63defb66d894b819681f5bebae06d38cb8c08545 2034082 
postgresql-doc-8.4_8.4~beta1+cvs20090503-1_all.deb
 8cebebbe742d14f9a9a320e6db74da71cde6d0b61e1f46bf982d8e4a8f292320 210838 
libpq-dev_8.4~beta1+cvs20090503-1_i386.deb
 01c528da0ccdf21b0b3fb41918b3847e8de949c250a5f3fd62c01f5860068237 145388 
libpq5_8.4~beta1+cvs20090503-1_i386.deb
 f6a6bd53150b93fe3c197002e32a1ee65f033251d13029049704355618ee6748 47678 
libecpg6_8.4~beta1+cvs20090503-1_i386.deb
 a43a81411ad6b2d6cf8b975085c8eab1757094f719cb2f4889bff59670e84783 232902 
libecpg-dev_8.4~beta1+cvs20090503-1_i386.deb
 d3d876ddaf1b5e94b84b647ed382dee1d7659ba9009d4cfc11dd74f3f0774e13 12084 
libecpg-compat3_8.4~beta1+cvs20090503-1_i386.deb
 ac7d13129108a524b0f49619fb09d66fa0dd381b7f2c61a218fcf670e781def1 35874 
libpgtypes3_8.4~beta1+cvs20090503-1_i386.deb
 d15353ce5fec632bb0a0835a54f9c9e3747fc4af439c31efc52e02bda6cc41d5 5500750 
postgresql-8.4_8.4~beta1+cvs20090503-1_i386.deb
 2179d32b75a3c2dcc8fa11dc692f0644cb8dcab8d0de148c57d299e2d4940c20 1544154 
postgresql-client-8.4_8.4~beta1+cvs20090503-1_i386.deb
 94c197e0f9d7f59f42c106a723eee11b16106faf1049cf60b8b173d97a1dcb60 609888 
postgresql-server-dev-8.4_8.4~beta1+cvs20090503-1_i386.deb
 e3f67611cfe36985afcbc540f39b320e5c081bfadbba76e8b0136261772ab8f8 370366 

  1   2   >