Nettoyer un répertoire plein de .deb ?

2009-08-03 Thread Éric Seigne

Bonjour,
es-ce qu'il existe une commande rapide et efficace pour faire le ménage 
dans un dossier plein de paquets .deb pour ne garder que ceux dont les 
numéros de versions sont les plus récents ?


Par exemple j'ai

package_1.2.0-0_i386.deb
package_1.2.0-1_i386.deb
package_1.3.1-0_i386.deb
package_1.3.4-6_i386.deb
package_1.3.4-7_i386.deb

et je ne veux garder que le dernier ... y a ça, sans se lancer dans des 
outils de gestion de dépots ?


Merci d'avance,
Éric

--
   -- ABULEDU A 10 ANS ... www.abuledu.org --

Éric Seigne - Directeur| eric.sei...@ryxeo.com
RyXéo SARL | http://www.ryxeo.com
21 avenue M. et E. Dulout  | tel +33 6 987 444 01
33600 Pessac - FRANCE  | fax +33 9 56 606 607



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



Re: Nettoyer un répertoir e plein de .deb ?

2009-08-03 Thread Pierre Habouzit
On Mon, Aug 03, 2009 at 09:56:00PM +0200, Pierre Habouzit wrote:
 On Mon, Aug 03, 2009 at 04:02:43PM +0200, Éric Seigne wrote:
  Bonjour,
  es-ce qu'il existe une commande rapide et efficace pour faire le
  ménage dans un dossier plein de paquets .deb pour ne garder que ceux
  dont les numéros de versions sont les plus récents ?
  
  Par exemple j'ai
  
  package_1.2.0-0_i386.deb
  package_1.2.0-1_i386.deb
  package_1.3.1-0_i386.deb
  package_1.3.4-6_i386.deb
  package_1.3.4-7_i386.deb
  
  et je ne veux garder que le dernier ... y a ça, sans se lancer dans
  des outils de gestion de dépots ?
  
  Merci d'avance,
  Éric

Sauf que ça ne marche pas... parce que je pars du principe que le
file-name contient l'époch ce qui est généralement faux...

Le fix suivant devrait corriger ça:
 
 #!/bin/sh
 
 dry_run=
 
 doit() {
 $dry_run $@
 }
 
 while test $# != 0; do
 case $1 in
 -n) dry_run=echo ;;
 --) shift; break; ;;
 *)  break ;;
 esac
 shift
 done
 
 if test $# != 1; then
 echo usage: foo.sh directory 21
 exit 1
 fi
 
 cd $1
 
 for p in $(ls *.deb|sed -e 's/_.*//'|sort -u); do
 keep=
+keep_v=
 for v in $(ls ${p}_*.deb | sed -e 
's/^[^_]*_\([^_]*\)_[^_]*\.deb$/\1/'); do
+ver=$(dpkg --info binutils-dev_2.19.51.20090704-1_amd64.deb|sed -ne 
'/Version: /{s/ *Version: *//p;q}')
 if test -z $keep; then
 keep=$v
+keep_v=$ver
-elif dpkg --compare-versions $keep gt $v; then
+elif dpkg --compare-versions $keep_v gt $ver; then
 doit rm -f ${p}_${v}_*.deb
 else
 doit rm -f ${p}_${keep}_*.deb
 keep=$v
+keep_v=$ver
 fi
 done
 done


Et sinon la bonne manière est d'utiliser dpkg --info et de prendre le
Package: et Version:, de trier pour chaque Package: unique par ordre de
Version: selon dpkg --compare-versions, et de ne conserver que le
dernier de chaque. Je pense que dpkg --compare-versions est accessible
depuis perl-apt (si ça existe) et je suis sur que c'est accessible
depuis python-apt pour l'utiliser dans apt-listchanges. Mais j'ai la
flemme d'écrire le script en question.


-- 
Intersec http://www.intersec.com
Pierre Habouzit pierre.habou...@intersec.com
Tél : +33 (0)1 5570 3346
Mob : +33 (0)6 1636 8131
Fax : +33 (0)1 5570 3332
37 Rue Pierre Lhomme
92400 Courbevoie


signature.asc
Description: Digital signature


Re: maybe a problem with sid branch

2009-08-03 Thread Muammar El Khatib
Hi,

2009/8/1 Leinier Cruz Salfran salfra...@ipigto.rimed.cu:
 I disagree with you on this point .. where is success? in a civilized
 discussion on the proposal and the exchange of ideas .. if we discover
 that there is a problem why we will not publish this list, for example,
 although it is obvious that this is a problem of dependencies and is the
 branch where are shown all recent changes and new packages that have
 probability of failure? .. I think if we want development we can not be
 put obstacles .. that is my humble opinion


I understand your point, but you should be aware of the definition of this
Debian branch:

1) http://www.debian.org/releases/unstable/
2) http://en.wikipedia.org/wiki/Debian#Distributions

As you can see, in 1) there says:

sid is subject to massive changes and in-place library updates. This can
result in a very unstable system which contains packages that cannot be
installed due to missing libraries, dependencies that cannot be fulfilled etc.

So, in spite of your correct rationale about this, sid may have problems related
to _minor_ dependencies and this is the case (because of its changing-nature).
This is a common problem when trying to create a base.tgz in pbuilder. Just try
again later.

Regards,
-- 
Muammar El Khatib.
Linux user: 403107.
GPG Key = 127029F1
http://muammar.me | http://proyectociencia.org
  ,''`.
 : :' :
 `. `'
   `-


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



Re: What to do with (packages like) Blender?

2009-08-03 Thread Ben Finney
Christian Perrier bubu...@debian.org writes:

 Just drop that blender thing and announce this loudly enough,
 preferrably by coordinating with other distro maintainers. That will
 eventually trigger a fork from people who have a more collaborative
 way of thinking.

This coordination would probably best be done via
URL:http://lists.freedesktop.org/mailman/listinfo/distributions the
Freedesktop Distributions collaboration forum.

-- 
 \   “[W]hoever is able to make you absurd is able to make you |
  `\unjust.” —Voltaire |
_o__)  |
Ben Finney


pgpueMipl1kGF.pgp
Description: PGP signature


Re: What to do with (packages like) Blender?

2009-08-03 Thread Hendrik Sattler

Zitat von Christian Perrier bubu...@debian.org:


Quoting Cyril Brulebois (k...@debian.org):


4) http://article.gmane.org/gmane.comp.video.blender.devel/19895

Patch to add support for system-wide FTGL. I kind of get flamed for
thinking about using something else than what blender provides. And
who cares about shared libraries anyway, they are dangerous. If you
want to have a good idea of what blender folks think about being
distributed, you want to read that thread.



That one shows the problem clearly enough. Blender folks are not
interested in using system-wide libs *at all*. They apparently prefer
using their own private (and buggySam made the point very clear)
version of a library, on the vague assumption that, as libraries
change their API without warning, they're bad.

I'm anything but a specialist in this area, but my understanding is
that this is what sonames are about..:-). Anyway, in 2009, such
reasoning isawfully flawed.

Just drop that blender thing and announce this loudly enough,
preferrably by coordinating with other distro maintainers. That will
eventually trigger a fork from people who have a more collaborative
way of thinking. After all, to my understanding, this blender stuff is
kinda widely used in 3D modelling, right?


I read that discussion in a different tone as it mostly refers to the  
FTGL thing. They made changes to the library that are needed and  
blender would not work correctly without those.
The patch doesn't ensure that the system version of that library  
includes those changes, it doesn't even check for known good versions.  
This was the main complaint especially since there is no release of  
FTGL with those changes, yet! So they cannot expect for everyone (and  
there are other distributions, too) to use _unreleased_ versions of a  
library (release candidates are not a release).
Together, these are valid points for linking a private copy that was  
tested against. They didn't say anything against having to update that  
copy.


Additionally, not all upstream library developers are aware of how  
SONAMEs are to be handled (and maybe they got burned by this before).
Maybe because libtool's description of SONAMEs is way to complicated  
(what insane person wrote this?) and limited, and because other  
popular systems don't support this.
After all, users only see bugs in the frontend, not in the libraries  
behind it.
And there are lots of other projects, too, that include private copies  
of libraries (e.g. mplayer). This was even the proposed way for some  
GNU stuff some time ago!


HS



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



Approaching non-integratable software, was: What to do with (packages like) Blender?

2009-08-03 Thread Reinhard Tartler

[ moving discussion to -project. Please follow up on -devel if you are
  contributing to the technical discussion and -project for the project
  wide parts ]

Cyril Brulebois k...@debian.org writes:

 It's been a while and I'm now really wondering what to do with
 Blender. So that everyone can understand, I'm going to try and sum up
 what I'm facing. 

It seems to me that blender is not unique in this regard. There is more
software than just blender that prefers to not be integrated into a
distribution properly, but rather prefers to retain exact control of
(external) libraries that are being included into their source and
binaries. Another characteristic is that they focus on binary
redistribution, and frown upon users that grab the source and compile
themselves.

blender is surely not alone. Other prominent, yet unpackaged pieces of
software would be handbrake [1], or XBMC[2]. For handbrake the
solution so far has been to not package it at all [3], xbmc is having
a hard time working on the source to use system libraries.

I think it would be sad to not include such packages at all. Knowing
proper integration into Debian as distribution is not going to work, how
about integrating them as add-on software? I imagine the following
approach:

 - software gets installed into /opt, so that file conflicts are less
   likely and the software status is visible to the users

 - packages go to an special section of the archive extra. That
   section would be similar to contrib: autobuilt, PTS and BTS
   coverage, no security support .

 - package can easily be moved to main after it has matured to use
   system libraries.

In some ways, this extra repository can be seen as staging or preview
repository. We wouldn't need to provide the tedious and laboratory QA
tasks concerning security and integration efforts, but could still
provide our users with such software.


Footnotes:
[1] http://handbrake.fr
[2] http://www.xbmc.org/wiki/?title=XBMC_for_Linux_port_project
[3] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=456165


-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4


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



Re: Orphaning debmirror

2009-08-03 Thread Goswin von Brederlow
Siggy Brentrup deb...@psycho.i21k.de writes:

 Hi,

 sorry for the late reply, we were celebrating my wife's birthday at
 the seaside until yesterday late in the evenign.

 On Fri, Jul 31, 2009 at 17:53 +0100, Steve Kemp wrote:
 On Fri Jul 31, 2009 at 18:47:58 +0200, Siggy Brentrup wrote:
 
  Who wrote debmirror?  Without installing I can't find out since
  only maintainers are listed in the PTS.
 
   Look at the copyright file:
 
   e.g.
 
 
 http://packages.debian.org/changelogs/pool/main/d/debmirror/debmirror_20070123/debmirror.copyright

 Thanks for this link, imbecile me to overlook that while on the
 debmirror page.

  I'm asking because
  there's a lot of perl code in Debian I wouldn't even think about
  touching due to the author's programming style.
 
   If you only care about the style why not actually download it
  and examine it?

 because a one line answer containg certain names would have saved me
 the hassle to do exactly what you are asking me to do.  In the dark
 ages I used to have to understand their code, it took much more time
 than I usally want to invest; so if I have a choice: no thanks.

 Thanks
   Siggy
 -- 
 Please don't Cc: me when replying, I might not see either copy.
bsb-at-psycho-dot-informationsanarchistik-dot-de
or:bsb-at-psycho-dot-i21k-dot-de
 O ascii ribbon campaign - stop html mail - www.asciiribbon.org

I doubt there is much style left in the code.

MfG
Goswin


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



Re: multiarch: dependency-oriented vs package-oriented

2009-08-03 Thread Goswin von Brederlow
Steve Langasek vor...@debian.org writes:

 On Wed, Jul 29, 2009 at 11:30:33PM +0200, Goswin von Brederlow wrote:
  Moreover, this is not the only exception. Thousands of desktop and server
  packages that contains executable binaries (applications) compiled from
  C/C++/Pascal/etc. also have arch-dependent reverse dependencies - packages
  with debug info, '-dbg' ones. So, they are not 'Multi-Arch: foreign' too.

  First, why do these packages need to be cross-installed?  If they don't 
  need
  to be, then there's no reason to set the Multi-Arch field on them at all.

 I want zsh for be Multi-Arch: foreign so zomg:i386 and
 flowscan:amd64 can be installed. But then zsh:amd64 and zsh-dbg:i386
 would be installable, which clearly does not give functional debugging
 symbols.

 All well and good that you want this, but both zomg and flowscan are
 arch:any packages present on both architectures.  I don't see any compelling
 reason to support this case on the first pass (i.e., make this supportable
 in squeeze without incompatible changes to Depends:), this looks like a
 wishlist request and not something critical - as is, say, getting rid of
 ia32-libs.

This was just an example. I can probably do the same with bash and
google-earth. Do you want to force everything that depends on bash to
be 32bit now?

Anything named *-dbg must be handled special in apt/dpkg till they all
go away and become .ddebs. And they must be handled special too.

If that is not done then no package with *-dbg flavour or .ddeb can be
Multi-Arch: foreign, which put a serious dampner on multiarch
functionality.

MfG
Goswin


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



Re: What to do with (packages like) Blender?

2009-08-03 Thread martin f krafft
also sprach Cyril Brulebois k...@debian.org [2009.08.02.2130 +0200]:
 Before going deeper into it, I have to say I've been trying to
 resist the urge of going public with it, and coping with my duties
 as much as I could. But it's just too much now. Members of the
 French Cabal (which of course doesn't exist) can tell you how I've
 been made *angry* about the current state of that piece of “free
 software”.

As I understand it, upstream is uncooperative, and others have
already hinted at distributi...@freedesktop, which I second. Someone
has also mentioned vcs-pkg, which is why I'd like to take the
opportunity to clarify its goal:

Without doubt, upstream should be the place where cross-distro
integration happens. However, if upstream is not interested, then
the idea of vcs-pkg is to have a repo used by all distros, which is
suitable for everyone. It doesn't matter where this repo will be
hosted, but I think in the long run, vcs-pkg.org or maybe
distrodev.org should have storage for those. vcs-pkg.org is on
alioth, but non-Debian people might not like being -guests.

-- 
 .''`.   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
 
a friend is someone with whom
you can dare to be yourself


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


Re: Status of new source formats project

2009-08-03 Thread Goswin von Brederlow
Charles Plessy ple...@debian.org writes:

 Another question that I would like to ask is on the auto-patching
 functionality.  One of the programs we package, EMBOSS, is released once a 
 year
 every 15th of July, and other updates are made via patches. Currently it is
 possible to just give the patch to quilt to apply it. With the new source
 format ‘3.0 (quilt)’, it is not possible. Do you think it would be 
 possible to
 change this behavior or at least to disable the auto-patching facilities? It
 would be of course easy to convert the patch, but I would really prefer to 
 stay
 as identical to upstream's materials as possible.

 Have a nice sunday,

Why not just use 3.0 (native) format then?

MfG
Goswin


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



Re: Orphaning debmirror

2009-08-03 Thread Siggy Brentrup
On Mon, Aug 03, 2009 at 10:36 +0200, Goswin von Brederlow wrote:
 I doubt there is much style left in the code.
Thanks for this helpful line :)
  Siggy
-- 
Please don't Cc: me when replying, I might not see either copy.
   bsb-at-psycho-dot-informationsanarchistik-dot-de
   or:bsb-at-psycho-dot-i21k-dot-de
O ascii ribbon campaign - stop html mail - www.asciiribbon.org


signature.asc
Description: Digital signature


Re: Status of new source formats project

2009-08-03 Thread Giacomo A. Catenazzi

Vincent Danjean wrote:

Emilio Pozuelo Monfort wrote:

Charles Plessy wrote:

I see that .bzip2 and .lzma are also supported compression methods for the 3.0
(native) format as well as for the binary packages. But I do not think it would
be useful to add zip to this list. It seems to me that the only thing needed is
the capacity to unpack the original upstream sources. In that case there would
not be a need for a Lenny support, isn't it?

You need it to be supported in stable before using it in unstable. So at best,
you would need to implement it in Squeeze and wait for Squeeze+1 to use it.


This requirement is here to ensure smooth upgrade (stable - testing (or new 
stable)
with dpkg from stable). So it stand for .bzip2 and .lzma support in *binary* 
packages.

Charles is talking about *sources* packages.
Some packages in testing already require other packages from testing to build
themselves (ie build-depends nor present in stable). This is catch by debbuild 
for
example.

Unpacking a source package is not needed during an upgrade. However, it occurs 
before
a build.

So, I understand the question of Charles as do we want that stable dpkg be 
able to
unpack all packages from testing ?. I have no strong opinion for this.


In stable servers I use sometime the sources of unstable/testing and I backport 
them.
So I would like to have package compatibility actual stable to actual 
unstable.

I do this things only on small packages, so I don't want to upgrade/backport 
dpkg.

Anyway such things are not a common usage which should be supported, so I can
live also with a breaking source package compatibility.

ciao
cate


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



Re: Please test eglibc 2.9-23+multiarch.2 (was Please test eglibc 2.9-23+multiarch.1)

2009-08-03 Thread Bastian Blank
On Mon, Aug 03, 2009 at 02:02:24AM +0200, Aurelien Jarno wrote:
 I have finally decided to remove the Depends: line in libc-bin, even if
 I don't really like that. My tests show that it works now, but don't
 hesitate to test it on your machine.

What happens if someone install libc-bin without a new libc6 then?
Forgot about that variant before as it is not forbidden by deps now.

Bastian

-- 
Genius doesn't work on an assembly line basis.  You can't simply say,
Today I will be brilliant.
-- Kirk, The Ultimate Computer, stardate 4731.3


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



Re: Please test eglibc 2.9-23+multiarch.2 (was Please test eglibc 2.9-23+multiarch.1)

2009-08-03 Thread Aurelien Jarno
Bastian Blank a écrit :
 On Mon, Aug 03, 2009 at 02:02:24AM +0200, Aurelien Jarno wrote:
 I have finally decided to remove the Depends: line in libc-bin, even if
 I don't really like that. My tests show that it works now, but don't
 hesitate to test it on your machine.
 
 What happens if someone install libc-bin without a new libc6 then?
 Forgot about that variant before as it is not forbidden by deps now.

If it is not the same major version, it will probably break, I'll add a
conflict to fix that, but I fear we are going to have the same problem
with apt again...

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net


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



Re: Orphaning debmirror

2009-08-03 Thread Frans Pop
Goswin von Brederlow wrote:
 Ok, you've got it unless you find someone else. Probably best to give
 it a few days for others to raise their hand as well.

Looks like I'm stuck with it :-)

I'll first contact Goswin privately for some practical matters and then 
decide on how to maintain the package.

My thanks to the people who offered help with the package. I'll contact 
you once I've gotten some basic things figured out for myself.

Cheers,
FJP


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



Re: Bug#535833: marked as done (general: Slow internet on iceweasel, epiphany and so on...)

2009-08-03 Thread Bjørn Mork
Tollef Fog Heen tfh...@err.no writes:
 ]] Roger Leigh 

 | Having working local networking is important.  We wouldn't consider
 | broken IPv4 loopback acceptable, and broken IPv6 loopback is just as
 | bad.

 Sure, having it working is important.  Is it more important than keeping
 those (often new) users for whom Debian appears useless because of its
 perceived poor network performance?

I don't think measuring the importance of these bugs against each other
is going to be productive.  

Workarounds for bugs in other systems are fine, but not adding bugs in
Debian should be an absolute requirement for such workarounds.


Bjørn


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



Re: Please test eglibc 2.9-23+multiarch.2 (was Please test eglibc 2.9-23+multiarch.1)

2009-08-03 Thread Bastian Blank
On Mon, Aug 03, 2009 at 11:38:32AM +0200, Aurelien Jarno wrote:
 Bastian Blank a écrit :
  What happens if someone install libc-bin without a new libc6 then?
  Forgot about that variant before as it is not forbidden by deps now.
 If it is not the same major version, it will probably break, I'll add a
 conflict to fix that, but I fear we are going to have the same problem
 with apt again...

Yep. So I'm also out of options. The question is, how badly will it
break the binaries in the package.

Bastian

-- 
Our missions are peaceful -- not for conquest.  When we do battle, it
is only because we have no choice.
-- Kirk, The Squire of Gothos, stardate 2124.5


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



Re: emacs23 uploaded to unstable

2009-08-03 Thread Sven Joachim
On 2009-08-02 10:16 +0200, Sven Joachim wrote:

 On 2009-08-02 09:58 +0200, Florian Weimer wrote:

 * Rob Browning:

 I've uploaded the first emacs23 packages (23.1+1-1) to unstable.  Please
 file bugs as appropriate.

 Has anybody else experienced the FTBFS related to the removal of
 dir.old?

 Not me (building in pbuilder).

Well, on closer inspection I can reproduce it.  It is due to the
install-info transition and depends on whether the dpkg version of
install-info or the one from the new install-info package is found,
i.e. on the value of PATH.

With /usr/sbin before /usr/bin in $PATH (as in debuild or on the
buildds) everything is fine, but running
debian/rules build  fakeroot debian/rules binary as a normal user
without /usr/sbin in $PATH fails:

,
| rm 
/usr/local/src/deb-src/emacs23/emacs23-23.1+1/debian/emacs23-common/usr/share/info/emacs-23/dir
| rm 
/usr/local/src/deb-src/emacs23/emacs23-23.1+1/debian/emacs23-common/usr/share/info/emacs-23/dir.old
| rm: cannot remove 
`/usr/local/src/deb-src/emacs23/emacs23-23.1+1/debian/emacs23-common/usr/share/info/emacs-23/dir.old':
 No such file or directory
| make: *** [install] Error 1
`

ISTM the fix for the problem is to go through debian/rules and replace
all rm $SOMETHING calls with rm -f $SOMETHING.

Sven


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



Re: Debian decides to adopt time-based release freezes

2009-08-03 Thread Steve M. Robbins
Hi,

On Wed, Jul 29, 2009 at 03:08:02AM +0200, Meike Reichle wrote:
 -
 The Debian Project http://www.debian.org/
 Debian adopts time-based release freezes pr...@debian.org
 July 29th, 2009  http://www.debian.org/News/2009/20090729
 -
 
 Debian decides to adopt time-based release freezes

I believe this is a positive step.  However, I'm used to Debian having
long drawn out conversations about decisions such as this.  I've
checked on debian-devel, debian-release, and debian-project but I have
missed such pre-decision discussion.  Can you point me to the right
place?

Thanks,
-Steve



signature.asc
Description: Digital signature


Re: What to do with (packages like) Blender?

2009-08-03 Thread Maximiliano Curia
Hola martin f krafft!

El 03/08/2009 a las 10:48 escribiste:
 Without doubt, upstream should be the place where cross-distro
 integration happens. However, if upstream is not interested, then
 the idea of vcs-pkg is to have a repo used by all distros, which is
 suitable for everyone. It doesn't matter where this repo will be
 hosted, but I think in the long run, vcs-pkg.org or maybe
 distrodev.org should have storage for those. vcs-pkg.org is on
 alioth, but non-Debian people might not like being -guests.

distrodev.org seems to have died sometime around 2007, do you know if there is
any replacement for this?

-- 
recursividad 95, 154, 156, 201, 224, 293 
-- El Lenguaje de Programacion C, pag. 293 (Kernighan  Ritchie)
Saludos /\/\ /\  `/


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



Re: Debian decides to adopt time-based release freezes

2009-08-03 Thread Paul Wise
On Mon, Aug 3, 2009 at 3:24 PM, Steve M. Robbinsst...@sumost.ca wrote:
 On Wed, Jul 29, 2009 at 03:08:02AM +0200, Meike Reichle wrote:
 -
 The Debian Project                                 http://www.debian.org/
 Debian adopts time-based release freezes                 pr...@debian.org
 July 29th, 2009                  http://www.debian.org/News/2009/20090729
 -

 Debian decides to adopt time-based release freezes

 I believe this is a positive step.  However, I'm used to Debian having
 long drawn out conversations about decisions such as this.  I've
 checked on debian-devel, debian-release, and debian-project but I have
 missed such pre-decision discussion.  Can you point me to the right
 place?

The discussion was post-decision and post-decision-reconsideration:

http://lists.debian.org/debian-project/2009/07/threads.html#00148
http://lists.debian.org/debian-devel-announce/2009/07/msg1.html
http://lists.debian.org/debian-devel/2009/07/thrd2.html#00947

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: What to do with (packages like) Blender?

2009-08-03 Thread Cyril Brulebois
o,

so people noticed this discussion and brought it up on #blendercoders,
where I just had a tiny chat. It looks like they agreed that the ffmpeg
situation is quite unfortunate (that's the most problematic external
embedded library we both could think of), but there are some technical
stuff that kind-of justifies that (testing and debugging under Windows
seems to be uneasy because of ffmpeg's policy/compiler support).

From a security point of view, it was reaffirmed that it really isn't
the priority, but patches might be considered as time permits. I guess
that's where having some cross-distro effort would help sharing patches
pending their possible inclusion upstream, and I might set this up (I
already have a few persons from various distributions in head).

Bottom-line: provided a solution to the ffmpeg issue is found, I might
be feasible to keep on maintaining it. I guess I'm just going to move
from 2.49 to 2.49a for the time being, and possibly set up some
autobuilders to help find build issues early, thus sustaining the
upstream effort.

Thanks all for your feedback.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: Why YAML is not a good choice for Debian control files.

2009-08-03 Thread Adrian Perez
Your explanation seems fine. In the meantime, I'll try to work on
something more suitable, maybe getting build-depends as array or hash
members, I dunno. anyways, thanks for you to answer.

On Sat, 2009-08-01 at 11:12 +0900, Charles Plessy wrote:
 Le Fri, Jul 31, 2009 at 10:01:36AM -0400, Adrian Perez a écrit :
 
  There's any plan of supporting another format - without breaking
  compatibility, I mean supporting - besides the RFC one?
  I think YAML would be a good one.
 
 Hello Adrian,
 
 I thought about YAML for machine-readable license summaries and came the
 conclusion that it is not suitable. I think that it is also true for Debian
 control files for the following reasons:
 
 The “pseudo-RFC” format that Debian uses is organised in paragraphs, also
 called ‘stanzas’, and often the first of them has a special role. YAML on the
 other hand has concepts of scalars, sequences and mappings (in Perl, they 
 would
 be called scalars, arrays and hashes). First of all, if we want the first
 paragraph of a Debian control file to have a special role, then the YAML must
 be organised as a sequence of mappings. Here is YAML's example:
 
  Example 2.4.  Sequence of Mappings
  (players’ statistics)
  
  -
name: Mark McGwire
hr:   65
avg:  0.278
  -
name: Sammy Sosa
hr:   63
avg:  0.288
 
 (http://www.yaml.org/spec/1.2/spec.html#id2559116)
 
 In a Debian control file, it would reduce readability with no benefit.
 
 Second, the “pseudo-RFC” format delegates the management of folding to the
 Debian Policy, while in YAML it has to be part of the markup: “|” and “” are
 used to denote when line breaks are significant or not:
 
  name: Mark McGwire
  accomplishment: 
Mark set a major league
home run record in 1998.
  stats: |
65 Home Runs
0.278 Batting Average
 
 (http://www.yaml.org/spec/1.2/spec.html#id2559996)
 
 So basically, switching Debian control files to YAML would mean addign “-”, 
 “|”
 and “” signs in precise locations, each of them being one opportunity for a
 parsing error.
 
 Here is a simple example based on a debian/control file for the seaview 
 package:
 
 Source: seaview
 Section: non-free/science
 Priority: optional
 Maintainer: Debian-Med Packaging Team 
 debian-med-packag...@lists.alioth.debian.org
 DM-Upload-Allowed: yes
 Uploaders: Charles Plessy ple...@debian.org
 Build-Depends: debhelper ( = 7  ), libfltk1.1-dev, libjpeg62-dev, 
 libpng12-dev, libxft-dev,
  libxext-dev,  zlib1g-dev
 Standards-Version: 3.8.1
 Vcs-Browser: 
 http://svn.debian.org/wsvn/debian-med/trunk/packages/seaview/trunk/?rev=0sc=0
 Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/seaview/trunk/
 Homepage: http://pbil.univ-lyon1.fr/software/seaview.html
 
 Package: seaview
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Recommends: clustalw, muscle, phyml
 Description: Multiplatform interface for sequence alignment and phylogeny
  SeaView reads and writes various file formats (NEXUS, MSF, CLUSTAL, FASTA,
  PHYLIP, MASE, Newick) of DNA and protein sequences and of phylogenetic trees.
  Alignments can be manually edited. It drives the programs Muscle or Clustal W
  for multiple sequence alignment, and also allows to use any external 
 alignment
  algorithm able to read and write FASTA-formatted files.
  .
  It computes phylogenetic trees by parsimony using PHYLIP's dnapars/protpars
  algorithm, by distance with NJ or BioNJ algorithms on a variety of 
 evolutionary
  distances, or by maximum likelihood using the program PhyML 3.0. SeaView 
 draws
  phylogenetic trees on screen or PostScript files, and allows to download
  sequences from EMBL/GenBank/UniProt using the Internet.
 
 Translated in YAML, it would be:
 
 -
  Source: seaview
  Section: non-free/science
  Priority: optional
  Maintainer: Debian-Med Packaging Team 
 debian-med-packag...@lists.alioth.debian.org
  DM-Upload-Allowed: yes
  Uploaders: Charles Plessy ple...@debian.org
  Build-Depends: 
   debhelper ( = 7  ), libfltk1.1-dev, libjpeg62-dev, libpng12-dev, 
 libxft-dev, libxext-dev,
   zlib1g-dev
  Standards-Version: 3.8.1
  Vcs-Browser: 
 http://svn.debian.org/wsvn/debian-med/trunk/packages/seaview/trunk/?rev=0sc=0
  Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/seaview/trunk/
  Homepage: http://pbil.univ-lyon1.fr/software/seaview.html
 
 - 
  Package: seaview
  Architecture: any
  Depends: ${shlibs:Depends}, ${misc:Depends}
  Recommends: clustalw, muscle, phyml
  Description: |
   Multiplatform interface for sequence alignment and phylogeny
   SeaView reads and writes various file formats (NEXUS, MSF, CLUSTAL, FASTA,
   PHYLIP, MASE, Newick) of DNA and protein sequences and of phylogenetic 
 trees.
   Alignments can be manually edited. It drives the programs Muscle or Clustal 
 W
   for multiple sequence alignment, and also allows to use any external 
 alignment
   algorithm able to read and write FASTA-formatted files.
 
   It computes phylogenetic trees by parsimony using 

Re: emacs23 uploaded to unstable

2009-08-03 Thread Adrian Perez
Great! Anything I could help with, please let me know.

On Sat, 2009-08-01 at 13:52 -0700, Rob Browning wrote:
 I've uploaded the first emacs23 packages (23.1+1-1) to unstable.  Please
 file bugs as appropriate.
 
 Note that we have also begun the process of removing emacs21 from
 unstable/testing.
 
 Thanks
 -- 
 Rob Browning
 rlb @defaultvalue.org and @debian.org; previously @cs.utexas.edu
 GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4
 
 
-- 
Best regards, 

Adrian Perez adrianperez@gmail.com


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


Re: Debian decides to adopt time-based release freezes

2009-08-03 Thread Steve M. Robbins
On Mon, Aug 03, 2009 at 03:31:57PM +0200, Paul Wise wrote:
 On Mon, Aug 3, 2009 at 3:24 PM, Steve M. Robbinsst...@sumost.ca wrote:
  On Wed, Jul 29, 2009 at 03:08:02AM +0200, Meike Reichle wrote:

  Debian decides to adopt time-based release freezes
 
  I believe this is a positive step. ??However, I'm used to Debian having
  long drawn out conversations about decisions such as this. ??I've
  checked on debian-devel, debian-release, and debian-project but I have
  missed such pre-decision discussion. ??Can you point me to the right
  place?
 
 The discussion was post-decision and post-decision-reconsideration:

Yes, thanks for the references.

I don't have any desire to be drawn into the long discussions; many
have made the points I agree with better than I could.  But for anyone
keeping track, put me down in the column of those very disheartened
by the lack of prior consultation.  I'm also persuaded by those who
suggest freezing much later than December 2009 (like December 2010) is
a better option.

Actually, since I tend to get a fair amount of work done during
December holidays, I'd vastly prefer to freeze in mid-January.

-Steve


signature.asc
Description: Digital signature


Bug#539783: ITP: libtest-subcalls-perl -- Perl module to count subroutine calls

2009-08-03 Thread Jonathan Yu
Package: wnpp
Owner: Jonathan Yu freque...@cpan.org
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

* Package name: libtest-subcalls-perl
  Version : 1.09
  Upstream Author : Adam Kennedy ad...@cpan.org
* URL : http://search.cpan.org/dist/Test-SubCalls/
* License : Artistic | GPL-1+
  Programming Lang: Perl
  Description : Perl module to count subroutine calls
 Test::SubCalls provides functions for testing that subroutines are called a
 specific number of times. It is useful in situations like testing caching
 code, where you want to do some tests as normal and then verify that some
 underlying subroutine within the code was called a specific number of times.



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



Re: Bits from the release team and request for discussion

2009-08-03 Thread Anthony Towns
On Fri, Jul 31, 2009 at 05:39:23AM +1000, Anthony Towns wrote:
 So, http://release.debian.org/squeeze/arch_qualify.html lists kfreebsd-*
 and m68k as not release candidates, and arm, ia64, mips and powerpc as
 at risk in addition to alpha and hppa. Only m68k is listed as having
 RM concerns.  Is that page actually reflecting the release team's view
 of architecture status at all, and could it be made to correspond a bit
 more closely either way?

So arm's dropped off that page, kfreebsd-* have been bumped to TBD,
and alpha, hppa are still accompanied by ia64, powerpc, mips and s390 as
being at risk. There's lots of fields with just a ? -- apparently
there's no info on whether the RMs have concerns about everything but
amd64, m68k, s390 and sparc... Anyway, some suggestions:

m68k isn't available anymore, afaics -- it's not in unstable;
doesn't seem any point having it in the list afaics

amd64 has d-i support, surely? it did for lenny, despite lenny's
page...

querying port maintainers for amd64 and i386 seems like a waste of
time. is there really any concern that no one will be
around to support them?

the foo-concerns should probably have two possible states: no,
or yes with one or more links to mailing list threads
stating those concerns

having the Porting machine answer be yes with a link to
the appropriate http://db.debian.org/machines.cgi?host=foo
page would be as informative and help make the table
take up less space

using blue to distinguish waived requirements might be helpful,
with something like Users: 45 (w) to save space. Having
(w) link to a list post explaining the waiver would
probably be helpful for people who'd like to understand
why armel gets a waiver for multiple buildds but hppa
doesn't, eg.

both s390 and alpha seem to be keeping up with the build
up-to-dateness requirements, based on the buildd.d.o
graphs. probably worth linking the row headings for those
percentages to the buildd.d.o graphs, really

redoing the qualification page every release seems pointless; it's
a wiki page so it's not automatically up to date or
correct, and still needs to be validated by the release
team; and arch maintainers don't seem to particularly be
excited about doing it for exiting architectures... after
initial qualification, why not have the status page be
the canonical summary, linking to list posts for further
information as necessary?

Cheers,
aj


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



Re: Status of new source formats project

2009-08-03 Thread Raphael Hertzog
On Sun, 02 Aug 2009, Charles Plessy wrote:
 I see that .bzip2 and .lzma are also supported compression methods for the 3.0
 (native) format as well as for the binary packages. But I do not think it 
 would
 be useful to add zip to this list. It seems to me that the only thing needed 
 is
 the capacity to unpack the original upstream sources. In that case there would
 not be a need for a Lenny support, isn't it?

As stated elsewhere, its's good to be able to unpack all source packages
with the current stable dpkg-source.

 The patch is not in unified format, which causes the failure of
 dpkg-buildpackage. It is trivial to refresh it with quilt to the unified
 format, but this introduces a divergence with upstream that I would prefer to
 avoid, because it makes it difficult for others to verify that we did not
 modify it. Can you support in the format ’3.0 (quilt)’ patches that are
 accepted by default quilt installation?

No. I really prefer that we uniformize the patches that we provide through
debian/patches/ as it's an external interface as well (and for people reviewing
patches, unified format is certainly the most common format).

Furthermore it would require disabling quite a lot of checks that are
currently in place.

Cheers,
-- 
Raphaël Hertzog


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



Bug#539793: ITP: cl-fftw3 -- A Common Lisp interface to the FFTW3 Fourier Tranform library

2009-08-03 Thread Kevin M. Rosenberg
Package: wnpp
Severity: wishlist
Owner: Kevin M. Rosenberg k...@debian.org


* Package name: cl-fftw3
  Version : 1.0.0
  Upstream Author : Kevin Rosenberg ke...@rosenberg.net
* URL : http://files.b9.com/cl-fftw3/
* License : BSD
  Programming Lang: Common Lisp
  Description : A Common Lisp interface to the FFTW3 Fourier Tranform 
library

 This package provides an interface for Common Lisp programs to use
 the FFTW3 Fourier transform library. A number of higher-level interfaces
 has been added in addition to the native interface to the FFTW3
 C-based library.



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



Re: What to do with (packages like) Blender?

2009-08-03 Thread martin f krafft
also sprach Maximiliano Curia m...@debian.org [2009.08.03.1529 +0200]:
 distrodev.org seems to have died sometime around 2007, do you know
 if there is any replacement for this?

No, but maybe we can revive it? Would you write to the domain owner?

-- 
 .''`.   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
 
for her, the dashed lines on the freeway were like grains of sand
 slipping, through an hour glass, ticking away the seconds, the
 minutes, and the hours of her life. if she got home a few minutes
 early on any given afternoon, it gave her a thrill as if she had
 stolen a little something back from death.
-- mc 900 ft jesus (http://www.theendoftheworld.org/900/spider1.shtml)


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


Re: maybe a problem with sid branch

2009-08-03 Thread Leinier Cruz Salfran
Hello Muammar

I understand you also .. The only purpose of my post was to warn the
person concerned had an error in package dependencies that uploaded to
the sid branch in order that he might realize the problem and correct
the package

My intentions have been good at all times.



El lun, 03-08-2009 a las 01:36 -0430, Muammar El Khatib escribió:
 Hi,
 
 2009/8/1 Leinier Cruz Salfran salfra...@ipigto.rimed.cu:
  I disagree with you on this point .. where is success? in a civilized
  discussion on the proposal and the exchange of ideas .. if we discover
  that there is a problem why we will not publish this list, for example,
  although it is obvious that this is a problem of dependencies and is the
  branch where are shown all recent changes and new packages that have
  probability of failure? .. I think if we want development we can not be
  put obstacles .. that is my humble opinion
 
 
 I understand your point, but you should be aware of the definition of this
 Debian branch:
 
 1) http://www.debian.org/releases/unstable/
 2) http://en.wikipedia.org/wiki/Debian#Distributions
 
 As you can see, in 1) there says:
 
 sid is subject to massive changes and in-place library updates. This can
 result in a very unstable system which contains packages that cannot be
 installed due to missing libraries, dependencies that cannot be fulfilled 
 etc.
 
 So, in spite of your correct rationale about this, sid may have problems 
 related
 to _minor_ dependencies and this is the case (because of its changing-nature).
 This is a common problem when trying to create a base.tgz in pbuilder. Just 
 try
 again later.
 
 Regards,
 -- 
 Muammar El Khatib.
 Linux user: 403107.
 GPG Key = 127029F1
 http://muammar.me | http://proyectociencia.org
   ,''`.
  : :' :
  `. `'
`-
 
 


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Re: Please test eglibc 2.9-23+multiarch.2

2009-08-03 Thread Goswin von Brederlow
Bastian Blank wa...@debian.org writes:

 On Mon, Aug 03, 2009 at 11:38:32AM +0200, Aurelien Jarno wrote:
 Bastian Blank a écrit :
  What happens if someone install libc-bin without a new libc6 then?
  Forgot about that variant before as it is not forbidden by deps now.
 If it is not the same major version, it will probably break, I'll add a
 conflict to fix that, but I fear we are going to have the same problem
 with apt again...

 Yep. So I'm also out of options. The question is, how badly will it
 break the binaries in the package.

 Bastian

Does it break aptitude too?

MfG
Goswin


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



Re: Please test eglibc 2.9-23+multiarch.2

2009-08-03 Thread Cyril Brulebois
Goswin von Brederlow goswin-...@web.de (03/08/2009):
 Does it break aptitude too?

I think that people involved in serious things like multiarch and glibc
might appreciate your staying quiet at some point given the quite huge
mess you initially created. But maybe that's just me.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: What to do with (packages like) Blender?

2009-08-03 Thread Paul Wise
On Mon, Aug 3, 2009 at 9:07 PM, martin f krafftmadd...@debian.org wrote:

 No, but maybe we can revive it? Would you write to the domain owner?

It is now a spam site so that may be costly or impossible.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: Please test eglibc 2.9-23+multiarch.2

2009-08-03 Thread Goswin von Brederlow
Cyril Brulebois k...@debian.org writes:

 Goswin von Brederlow goswin-...@web.de (03/08/2009):
 Does it break aptitude too?

 I think that people involved in serious things like multiarch and glibc
 might appreciate your staying quiet at some point given the quite huge
 mess you initially created. But maybe that's just me.

 Mraw,
 KiBi.

What mess would that be?

The question is valid. Other packages with verry similar relationship
loops (like libc6-i386 and lib32stdc++6) break in apt but not in
aptitude nor dpkg when going from some old versions to current
versions.

MfG
Goswin


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



Re: Status of new source formats project

2009-08-03 Thread Charles Plessy
Le Mon, Aug 03, 2009 at 06:18:57PM +0200, Raphael Hertzog a écrit :
 
  The patch is not in unified format, which causes the failure of
  dpkg-buildpackage. It is trivial to refresh it with quilt to the unified
  format, but this introduces a divergence with upstream that I would prefer 
  to
  avoid, because it makes it difficult for others to verify that we did not
  modify it. Can you support in the format ’3.0 (quilt)’ patches that are
  accepted by default quilt installation?
 
 No. I really prefer that we uniformize the patches that we provide through
 debian/patches/ as it's an external interface as well (and for people 
 reviewing
 patches, unified format is certainly the most common format).

If this patch is to be reviewed, then in my opinion it is better to keep it in
the original upstream format, because the first thing to check would be to make
sure that it is not altered nor obsolete. Nobody ever complained about patches
not in unified format in debian/patches before on this list. Lastly, let me
stress out again that this is an upstream patch. Reviewing it has as much
relevance as reviewing a couple of source files taken randomly in the original
source archive.

If using the unified format is to become a “must” in debian/patches, I would
prefer to have it discussed rather than imposed silently. I would understand
that your time to develop support for non-unified format is limited, but if the
reason is that you want to enforce one format, then as a maintainer I think
that I should have my word to say on how I manage my packages.

In the meantime, I will move the patches from debian/patches to debian/patch,
so that it does not block the switch to the format 3.0, which brings some
improvements that are much welcome in addition to the patch management, that I
think goes in the wrong direction.

Have a nice day,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


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



Re: emacs23 uploaded to unstable

2009-08-03 Thread Rob Browning
Daniel Pittman dan...@rimspace.net writes:

 403 Forbidden: You don't have permission to access
 /~rlb/tmp/emacs23/emacs23_23.1+1-2_i386.changes on this server.

OK, that should be fixed now, though I may just take the packages down
since it looks like they've made it to unstable.

Thanks
-- 
Rob Browning
rlb @defaultvalue.org and @debian.org; previously @cs.utexas.edu
GPG as of 2002-11-03 14DD 432F AE39 534D B592 F9A0 25C8 D377 8C7E 73A4


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



Re: Please test eglibc 2.9-23+multiarch.2

2009-08-03 Thread Aurelien Jarno
On Mon, Aug 03, 2009 at 09:21:53PM +0200, Goswin von Brederlow wrote:
 Bastian Blank wa...@debian.org writes:
 
  On Mon, Aug 03, 2009 at 11:38:32AM +0200, Aurelien Jarno wrote:
  Bastian Blank a écrit :
   What happens if someone install libc-bin without a new libc6 then?
   Forgot about that variant before as it is not forbidden by deps now.
  If it is not the same major version, it will probably break, I'll add a
  conflict to fix that, but I fear we are going to have the same problem
  with apt again...
 
  Yep. So I'm also out of options. The question is, how badly will it
  break the binaries in the package.
 
  Bastian
 
 Does it break aptitude too?
 
Yes 

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net


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



Re: Please test eglibc 2.9-23+multiarch.2

2009-08-03 Thread Aurelien Jarno
On Tue, Aug 04, 2009 at 02:05:22AM +0200, Goswin von Brederlow wrote:
 Cyril Brulebois k...@debian.org writes:
 
  Goswin von Brederlow goswin-...@web.de (03/08/2009):
  Does it break aptitude too?
 
  I think that people involved in serious things like multiarch and glibc
  might appreciate your staying quiet at some point given the quite huge
  mess you initially created. But maybe that's just me.
 
  Mraw,
  KiBi.
 
 What mess would that be?
 
 The question is valid. Other packages with verry similar relationship
 loops (like libc6-i386 and lib32stdc++6) break in apt but not in
 aptitude nor dpkg when going from some old versions to current
 versions.
 

Because they are using a Pre-Depends on libc6-i386 instead of a
Conflicts...

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net


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



Accepted nessus-core 2.2.11-2 (source all i386)

2009-08-03 Thread Javier Fernandez-Sanguino Pen~a
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Aug 2009 19:06:23 +0200
Source: nessus-core
Binary: nessus nessusd nessus-dev
Architecture: source all i386
Version: 2.2.11-2
Distribution: unstable
Urgency: low
Maintainer: Javier Fernandez-Sanguino Pen~a j...@debian.org
Changed-By: Javier Fernandez-Sanguino Pen~a j...@debian.org
Description: 
 nessus - Remote network security auditor, the client
 nessus-dev - Nessus development header files
 nessusd- Remote network security auditor, the server
Closes: 512860 523704 534808
Changes: 
 nessus-core (2.2.11-2) unstable; urgency=low
 .
   * Removed Build-Dep on libglib1.2-dev. (Closes: #523704)
   * Translations:
 * Added Japanese po-debconf template translation, provided by
   Hideki Yamane (Closes: 512860)
 * Added Russian po-debconf template translation, provided by
   Yuri Kozlov (Closes: 534808)
Checksums-Sha1: 
 1998a2a6a8e773186beef2d54d5badc14037a760 1201 nessus-core_2.2.11-2.dsc
 7cd1caef7fae6219e4f4604224f753e71015b5cf 680220 nessus-core_2.2.11.orig.tar.gz
 209bf0eeb1671ce63c92c99f38239d0662a2d0f3 101259 nessus-core_2.2.11-2.diff.gz
 49bab9b8663739e936a514899612d21d354f8165 39296 nessus-dev_2.2.11-2_all.deb
 7064b362927df6f61cce998ae8e68870ec9e2aa4 240216 nessus_2.2.11-2_i386.deb
 93f5f23fcd34972fc50a391c28ca05b0293509ce 207754 nessusd_2.2.11-2_i386.deb
Checksums-Sha256: 
 fde5943bddf2000a3e6683fdb84924cdbf74dbf9c6ec5bd0c85848a17eb76251 1201 
nessus-core_2.2.11-2.dsc
 d2607d012a9e89d7b4424173d51e9b09a577a1b4e079af23f2c39073512fb761 680220 
nessus-core_2.2.11.orig.tar.gz
 9829a86b42dd069b78759d49cc6eeb68aa9a0aa173cfce2d86499c7ce258852f 101259 
nessus-core_2.2.11-2.diff.gz
 4fdbe583925207f7c6a8d2dfc89e92f0a4c623d45fa095f0e83e1a883bc9fbb0 39296 
nessus-dev_2.2.11-2_all.deb
 60d4d6269ae7e572b37248613f67da7c80ee3ba90fee4624b7da5c41055a1571 240216 
nessus_2.2.11-2_i386.deb
 5c855365a2f57790fb0b3cb8c481142b8a1303836bb2bcf46c507016f89c24b3 207754 
nessusd_2.2.11-2_i386.deb
Files: 
 b4f404e2c57268ae03d9d89fdc3cb190 1201 admin optional nessus-core_2.2.11-2.dsc
 b778c4c8e0eee912c7d62b80de920ef4 680220 admin optional 
nessus-core_2.2.11.orig.tar.gz
 daefc014510acd702019704d8322fb80 101259 admin optional 
nessus-core_2.2.11-2.diff.gz
 7f4fab7657673f27783824d4fc6771ef 39296 devel optional 
nessus-dev_2.2.11-2_all.deb
 630f977ef771c229253e37e5c4b93617 240216 admin optional nessus_2.2.11-2_i386.deb
 04d2141f422cb6c3937016cdf962715f 207754 admin optional 
nessusd_2.2.11-2_i386.deb

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

iD8DBQFKdn2isandgtyBSwkRAgT6AJ4gQKCGvk09k7R4+FWORPQ08aJyGQCeIUMD
GFXoIC4tEbE/84MYyfyCOeY=
=1RZ5
-END PGP SIGNATURE-


Accepted:
nessus-core_2.2.11-2.diff.gz
  to pool/main/n/nessus-core/nessus-core_2.2.11-2.diff.gz
nessus-core_2.2.11-2.dsc
  to pool/main/n/nessus-core/nessus-core_2.2.11-2.dsc
nessus-core_2.2.11.orig.tar.gz
  to pool/main/n/nessus-core/nessus-core_2.2.11.orig.tar.gz
nessus-dev_2.2.11-2_all.deb
  to pool/main/n/nessus-core/nessus-dev_2.2.11-2_all.deb
nessus_2.2.11-2_i386.deb
  to pool/main/n/nessus-core/nessus_2.2.11-2_i386.deb
nessusd_2.2.11-2_i386.deb
  to pool/main/n/nessus-core/nessusd_2.2.11-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 gnushogi 1.3.2-4 (source i386)

2009-08-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 08:34:18 +0200
Source: gnushogi
Binary: gnushogi xshogi
Architecture: source i386
Version: 1.3.2-4
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 gnushogi   - A program to play shogi, the Japanese version of chess
 xshogi - An X Window System Japanese Chess (Shogi) Board
Changes: 
 gnushogi (1.3.2-4) unstable; urgency=low
 .
   * Reverting config.guess and config.sub to upstream.
   * Upgrading package to debhelper 7.
   * Upgrading package to standards 3.8.0.
   * Adding vcs fields in control file.
   * Removing watch file.
   * Updating vcs fields in control file.
   * Using patch-stamp rather than patch in rules file.
   * Replacing obsolete dh_clean -k with dh_prep.
   * Using correct rfc-2822 date formats in changelog.
   * Updating package to standards 3.8.2.
   * Sorting depends.
   * Rewriting copyright file in machine-interpretable format.
   * Adding longtitle and description fields in menu files.
   * Using quilt rather than dpatch.
   * Minimizing rules file.
   * Wrapping build-depends.
Checksums-Sha1: 
 36a3a63a94f171ed5c4ccf31d4a2f117f641ebb5 1199 gnushogi_1.3.2-4.dsc
 8b15bb057106bcdde87d7c030c9f57c2a980d34a 5897 gnushogi_1.3.2-4.diff.gz
 ba39831618fece971f2adb04f4d9219ffbea15a3 247272 gnushogi_1.3.2-4_i386.deb
 10680a35432cb77333f56408012c5b969eae86c2 72112 xshogi_1.3.2-4_i386.deb
Checksums-Sha256: 
 bb998366d402971ebd5843690f5f4b676e0b693bfbaf170cbf56958dbbf45866 1199 
gnushogi_1.3.2-4.dsc
 b62cc57f42161f468914079287374cc1642106414632810bec7e067a6ed5c954 5897 
gnushogi_1.3.2-4.diff.gz
 1270c5c5e01be55b894d8d235b41ec3163d3bffa7dc1bbe21bff739f7fa35f22 247272 
gnushogi_1.3.2-4_i386.deb
 c74228468219a2fbc6206dacd37016895a8381f599fa2f48ed173e389bfe3eec 72112 
xshogi_1.3.2-4_i386.deb
Files: 
 e935b6d138676eba59bf66c0448332f0 1199 games optional gnushogi_1.3.2-4.dsc
 c39c4c7617fe255d1040a04978bc9753 5897 games optional gnushogi_1.3.2-4.diff.gz
 8fb6a99ca5e45aa3e9e25ddf059237e8 247272 games optional 
gnushogi_1.3.2-4_i386.deb
 8f34277b7704913cb9f7dffb5d0c8e34 72112 games optional xshogi_1.3.2-4_i386.deb

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

iEYEARECAAYFAkp2hS8ACgkQ+C5cwEsrK56sOQCgp9oQv+S8YwOgmhUUfCAVS5Xk
UcoAoMkqPwRyALlnjU89gBL+QSLze34H
=cPCj
-END PGP SIGNATURE-


Accepted:
gnushogi_1.3.2-4.diff.gz
  to pool/main/g/gnushogi/gnushogi_1.3.2-4.diff.gz
gnushogi_1.3.2-4.dsc
  to pool/main/g/gnushogi/gnushogi_1.3.2-4.dsc
gnushogi_1.3.2-4_i386.deb
  to pool/main/g/gnushogi/gnushogi_1.3.2-4_i386.deb
xshogi_1.3.2-4_i386.deb
  to pool/main/g/gnushogi/xshogi_1.3.2-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 canto 0.7.2-1 (source i386)

2009-08-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 08:36:48 +0200
Source: canto
Binary: canto
Architecture: source i386
Version: 0.7.2-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 canto  - flexible ncurses Atom/RSS newsreader for the console
Changes: 
 canto (0.7.2-1) unstable; urgency=low
 .
   * Merging upstream version 0.7.2.
Checksums-Sha1: 
 d5a7016c5bfde55d5b8adaefae634ea9867612a6 1116 canto_0.7.2-1.dsc
 c8ff58800996f88132fbb19245c2c386de0d1315 86414 canto_0.7.2.orig.tar.gz
 0921a1311af64a6500d14f5d9b9b1ff93d541cdf 1724 canto_0.7.2-1.diff.gz
 746b0e31a2b4b17d528aee863152da59cec21c5e 63520 canto_0.7.2-1_i386.deb
Checksums-Sha256: 
 11e2e515e34165df95f758d5fc73ecf327962f57d3f1e65c084f87061d71d69d 1116 
canto_0.7.2-1.dsc
 79a01c08c7a24fc81ca1e0d649381b04e334f68b65cef5ab0105d046ea8495e3 86414 
canto_0.7.2.orig.tar.gz
 5bb36b1dcc232305959104ed6806e3b5e140bbf5fd504794c9d29a85eaf6bc54 1724 
canto_0.7.2-1.diff.gz
 ca4669bd37fb7dc393b2e14af800eb15062c39032f3e73b22ded4415299e2378 63520 
canto_0.7.2-1_i386.deb
Files: 
 885c287fc06bfdf72745640f17e379df 1116 net optional canto_0.7.2-1.dsc
 dd663e05588b53c98518edd6917a380b 86414 net optional canto_0.7.2.orig.tar.gz
 f9a3de7ea90805d9135fbe2375e363df 1724 net optional canto_0.7.2-1.diff.gz
 ff3944fdfaa56e6eccab9dfbda8105bd 63520 net optional canto_0.7.2-1_i386.deb

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

iEYEARECAAYFAkp2hacACgkQ+C5cwEsrK54+6gCfbNHcleeGGACRMHMJIWdlTGpP
AAoAoNkTE0lxCaSD6F7PG1Yr/AzDxkFt
=2x3l
-END PGP SIGNATURE-


Accepted:
canto_0.7.2-1.diff.gz
  to pool/main/c/canto/canto_0.7.2-1.diff.gz
canto_0.7.2-1.dsc
  to pool/main/c/canto/canto_0.7.2-1.dsc
canto_0.7.2-1_i386.deb
  to pool/main/c/canto/canto_0.7.2-1_i386.deb
canto_0.7.2.orig.tar.gz
  to pool/main/c/canto/canto_0.7.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 taglib-extras 0.1.6-1 (source amd64)

2009-08-03 Thread Modestas Vainius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 10:19:42 +0300
Source: taglib-extras
Binary: libtag-extras0 libtag-extras-dev
Architecture: source amd64
Version: 0.1.6-1
Distribution: unstable
Urgency: low
Maintainer: Modestas Vainius modes...@vainius.eu
Changed-By: Modestas Vainius modes...@vainius.eu
Description: 
 libtag-extras-dev - TagLib extras library - development files
 libtag-extras0 - TagLib extras library - support for more file formats
Changes: 
 taglib-extras (0.1.6-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 4100c2b9de05d04eb5aa3cccda5a04c8237ac928 1266 taglib-extras_0.1.6-1.dsc
 d648e13bf7b86566573cd5f388595e94a9bf2994 49280 taglib-extras_0.1.6.orig.tar.gz
 56d9c6277632722f8ad7a5dc87a63eff469237eb 6343 taglib-extras_0.1.6-1.diff.gz
 8eb3a2612adbf1a47725be37b4ea11309b13 73690 libtag-extras0_0.1.6-1_amd64.deb
 6f769a08e4ca411bfb3d9a7391ec433aa847e9ca 14966 
libtag-extras-dev_0.1.6-1_amd64.deb
Checksums-Sha256: 
 a2b5a00b6b08cbb02c3c93c8011df9b2469a6678ad260e1f3a4cc2a6e063bc7e 1266 
taglib-extras_0.1.6-1.dsc
 bfa4ef62ae69168545993dd3472d5a35db7fa2960d64bc8c9e8cff4a1e65081b 49280 
taglib-extras_0.1.6.orig.tar.gz
 ca41ddd78f37bea5a3ce216aa7477f0bc3d1a8b655cac706cd2947adf5c414d5 6343 
taglib-extras_0.1.6-1.diff.gz
 38025f0b712939e1c9f4c8fab04d60a07cebe4784f1526a86dcf8fc2103ad0cb 73690 
libtag-extras0_0.1.6-1_amd64.deb
 51d95cbc90812d14b36f2c745c16993326c57860bfb774ecef59df16f613 14966 
libtag-extras-dev_0.1.6-1_amd64.deb
Files: 
 01f3387f35159f690b3f0dc1d06ebb61 1266 libs optional taglib-extras_0.1.6-1.dsc
 706a82fe4c25606f731faf4c14b5edb0 49280 libs optional 
taglib-extras_0.1.6.orig.tar.gz
 727309b2ea350853d49b803a40a219c1 6343 libs optional 
taglib-extras_0.1.6-1.diff.gz
 39202366ff36034a99175a2b0c881d3d 73690 libs optional 
libtag-extras0_0.1.6-1_amd64.deb
 7a40c3f8ad08b08008a279170dfdcf6f 14966 libdevel optional 
libtag-extras-dev_0.1.6-1_amd64.deb

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

iEYEARECAAYFAkp2kQAACgkQHO9JRnPq4hTG9QCg6ZSTQe7HImEwSVs+IV6J27Ym
H3wAmwT0ibxTBXAsilKqNznpreiJWO5J
=WI96
-END PGP SIGNATURE-


Accepted:
libtag-extras-dev_0.1.6-1_amd64.deb
  to pool/main/t/taglib-extras/libtag-extras-dev_0.1.6-1_amd64.deb
libtag-extras0_0.1.6-1_amd64.deb
  to pool/main/t/taglib-extras/libtag-extras0_0.1.6-1_amd64.deb
taglib-extras_0.1.6-1.diff.gz
  to pool/main/t/taglib-extras/taglib-extras_0.1.6-1.diff.gz
taglib-extras_0.1.6-1.dsc
  to pool/main/t/taglib-extras/taglib-extras_0.1.6-1.dsc
taglib-extras_0.1.6.orig.tar.gz
  to pool/main/t/taglib-extras/taglib-extras_0.1.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 vserver-debiantools 0.6.4 (source all)

2009-08-03 Thread Ola Lundqvist
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 07:12:27 +0200
Source: vserver-debiantools
Binary: vserver-debiantools
Architecture: source all
Version: 0.6.4
Distribution: unstable
Urgency: low
Maintainer: Ola Lundqvist o...@debian.org
Changed-By: Ola Lundqvist o...@debian.org
Description: 
 vserver-debiantools - Tools to manage debian virtual servers
Closes: 539448
Changes: 
 vserver-debiantools (0.6.4) unstable; urgency=low
 .
   * Correction so that installation also works correctly on hosts with a
 point to point connection to the internet. Closes: #539448.
 Thanks to Stefan Tomanek ste...@pico.ruhr.de for reporting and
 providing the solution to this problem.
Checksums-Sha1: 
 ac3f2ef3a7b092622e42af420837c447aef832da 780 vserver-debiantools_0.6.4.dsc
 a2206f5c88f1b61fb579bc255a8d28d90d9618b1 37846 vserver-debiantools_0.6.4.tar.gz
 1a4c33d81a4f5bae65ea7b91052596273294faed 33114 
vserver-debiantools_0.6.4_all.deb
Checksums-Sha256: 
 eb175426b29ab8d10c77dade6040334bbfdd49c8689bed9657e30eb13f999c9a 780 
vserver-debiantools_0.6.4.dsc
 bc438b2141e591701306669826bf247bdb380fecfb49b3f21f8507957ab795f2 37846 
vserver-debiantools_0.6.4.tar.gz
 d9df71cd1ca4cd120200c526528e471f9e1d5687f3d5e201ecf076c88684f04b 33114 
vserver-debiantools_0.6.4_all.deb
Files: 
 a65adac5fd5a69f30d70aeeaf9c0e047 780 utils optional 
vserver-debiantools_0.6.4.dsc
 c3a218dccaf2047b851a1b29c2695469 37846 utils optional 
vserver-debiantools_0.6.4.tar.gz
 a7b6690cfc0b81cf327f7cf037d56602 33114 utils optional 
vserver-debiantools_0.6.4_all.deb

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

iEYEARECAAYFAkp2lx0ACgkQGKGxzw/lPdlQewCfby3xeUXF9inMIo5J6v0kJZON
+2wAn2gcNpeUo/GPl6u4pcJPguMjWojO
=yx8H
-END PGP SIGNATURE-


Accepted:
vserver-debiantools_0.6.4.dsc
  to pool/main/v/vserver-debiantools/vserver-debiantools_0.6.4.dsc
vserver-debiantools_0.6.4.tar.gz
  to pool/main/v/vserver-debiantools/vserver-debiantools_0.6.4.tar.gz
vserver-debiantools_0.6.4_all.deb
  to pool/main/v/vserver-debiantools/vserver-debiantools_0.6.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 expect 5.43.0-18 (source i386)

2009-08-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 12:00:29 +0200
Source: expect
Binary: expect expectk expect-dev
Architecture: source i386
Version: 5.43.0-18
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 expect - A program that can automate interactive applications
 expect-dev - A program that can automate interactive applications (development
 expectk- A program that can automate interactive applications (Tk hooks)
Changes: 
 expect (5.43.0-18) unstable; urgency=low
 .
   * Adding patch from Adam Tkac at...@redhat.com to compile with
 tcl8.5, but not yet enabling it.
   * Updating vcs fields in control file.
   * Using patch-stamp rather than patch in rules file.
   * Replacing obsolete dh_clean -k with dh_prep.
   * Using correct rfc-2822 date formats in changelog.
   * Updating package to standards version 3.8.2.
   * Adding misc depends.
   * Removing shlibs file.
   * Using quilt rather than dpatch.
   * Adding patch from fedora to fix header comments.
   * Adding patch from fedora to fix permissions when accessing logfiles.
   * Adding patch from Vitezslav Crhonek vcrho...@redhat.com for tcl
 8.5.6, but not yet enabling it.
   * Minimizing rules file.
Checksums-Sha1: 
 cb038c2c0d4dffcb581597f022ab2731b0c21616 1170 expect_5.43.0-18.dsc
 7ecdf4fe3a59f282243389e8791b93212e05af09 24248 expect_5.43.0-18.diff.gz
 27a2e1fb1f495c47ec149980e1555c80735f31b9 315512 expect_5.43.0-18_i386.deb
 4e74a1d3e3435b5f6c67b4e5cb9ed4a34723eb14 90876 expectk_5.43.0-18_i386.deb
 2eea4f91e9c5904dc840e9ca68dc040c469b6efd 352178 expect-dev_5.43.0-18_i386.deb
Checksums-Sha256: 
 2ae72c28d851b304f67f41f6057927153b6c65f9a69676e83e080a142a6ddad4 1170 
expect_5.43.0-18.dsc
 9fe5bb019ee42b6614463745ea777b8503698e02b59929a7837f483f2647cd79 24248 
expect_5.43.0-18.diff.gz
 690fdb56d69922908f940433cf69b59bfd86ddf05d18e03ef0619b1fc0397ec2 315512 
expect_5.43.0-18_i386.deb
 8b2b373487bf5fb07345572bac492b9ec2e3e36b44ce588b99cc59fda4892c00 90876 
expectk_5.43.0-18_i386.deb
 790638f9a687ddd66f28f5dba1365ea4c1c07a7397e66c09df40b702d5d1cc52 352178 
expect-dev_5.43.0-18_i386.deb
Files: 
 024dc989e936fba2c45ff10130972412 1170 interpreters optional 
expect_5.43.0-18.dsc
 3e8cb0353301aa15a1ab42a5518054c3 24248 interpreters optional 
expect_5.43.0-18.diff.gz
 820c95c5e25213017b4c06b794261e2b 315512 interpreters optional 
expect_5.43.0-18_i386.deb
 64095bd2cec3fbe27e7ef85eda5caef7 90876 interpreters optional 
expectk_5.43.0-18_i386.deb
 f74e82a2404cfc0258d801489d7b84dd 352178 interpreters optional 
expect-dev_5.43.0-18_i386.deb

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

iEYEARECAAYFAkp2tXYACgkQ+C5cwEsrK54aRgCgviu2m4etZtfJGWRDxzyYUgzw
cqcAn3dczuJ0gLFen44FNnu21038VCeG
=UPwh
-END PGP SIGNATURE-


Accepted:
expect-dev_5.43.0-18_i386.deb
  to pool/main/e/expect/expect-dev_5.43.0-18_i386.deb
expect_5.43.0-18.diff.gz
  to pool/main/e/expect/expect_5.43.0-18.diff.gz
expect_5.43.0-18.dsc
  to pool/main/e/expect/expect_5.43.0-18.dsc
expect_5.43.0-18_i386.deb
  to pool/main/e/expect/expect_5.43.0-18_i386.deb
expectk_5.43.0-18_i386.deb
  to pool/main/e/expect/expectk_5.43.0-18_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 mhc 0.25.1+20090531-1 (source all i386)

2009-08-03 Thread Tatsuya Kinoshita
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 21:39:42 +0900
Source: mhc
Binary: mhc mhc-utils
Architecture: source all i386
Version: 0.25.1+20090531-1
Distribution: unstable
Urgency: low
Maintainer: Tatsuya Kinoshita t...@debian.org
Changed-By: Tatsuya Kinoshita t...@debian.org
Description: 
 mhc- schedule management tool for emacsen
 mhc-utils  - command line/GUI utilities for the MHC schedule management system
Changes: 
 mhc (0.25.1+20090531-1) unstable; urgency=low
 .
   * New upstream release. (CVS trunk on 2009-05-31)
   * debian/control:
 - Add emacs23 to Depends.
 - Set Section of mhc to lisp.
 - Update Standards-Version to 3.8.2.
Checksums-Sha1: 
 02afe2af438fc25d18299191ca404fe66f4b2fc4 1082 mhc_0.25.1+20090531-1.dsc
 fdd6ddcb7effc16a8f3ea3a901e08ec3588b8c19 241247 mhc_0.25.1+20090531.orig.tar.gz
 dc062c93b6deaf97dc291f18c99d468a38e8f26d 12695 mhc_0.25.1+20090531-1.diff.gz
 a07071ea43db67878a1292e30c7b424709b32683 172948 mhc_0.25.1+20090531-1_all.deb
 0a6dcf30994bfc1c283ac730a95a86c2c5845f5b 104598 
mhc-utils_0.25.1+20090531-1_i386.deb
Checksums-Sha256: 
 7964988ab9c4c4219a6f9fef866fea0b381828c9c6a65e284112cee50fe80228 1082 
mhc_0.25.1+20090531-1.dsc
 32c4547d98b0bf382ecef84c5575a9f75e33b76b0278a68b44ad3b932995 241247 
mhc_0.25.1+20090531.orig.tar.gz
 04623025ea951d2798579f2f7ea1f3187b6d94a5f13a10402c9a23acc0dd04fb 12695 
mhc_0.25.1+20090531-1.diff.gz
 1a09cf8afa0d4d8723691d855c44288448541bb712ed7095515042bf9841c3ce 172948 
mhc_0.25.1+20090531-1_all.deb
 0d9baf176df3d5ce54e870297a866f2392733175ae62c2be27e5b3ee163115f5 104598 
mhc-utils_0.25.1+20090531-1_i386.deb
Files: 
 89664c4fad932fd07f77e0816f5987f4 1082 misc optional mhc_0.25.1+20090531-1.dsc
 ff260b2268671ef9ee19afd217973aa6 241247 misc optional 
mhc_0.25.1+20090531.orig.tar.gz
 bb497f916daf7aaa4b736064f69cd8d5 12695 misc optional 
mhc_0.25.1+20090531-1.diff.gz
 82b11d5bf9925ac4febfc3159a9a8fc5 172948 lisp optional 
mhc_0.25.1+20090531-1_all.deb
 142c1bfb29341c83caf9d01a6b9719e7 104598 misc optional 
mhc-utils_0.25.1+20090531-1_i386.deb

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

iEYEARECAAYFAkp23XQACgkQgV4LPvpMUpgF+gCfYGzlqRev/vedzhmlpPKMz9B2
j2gAni0/KtGPuYVXTw9KfA0QYXLqoQyx
=nIcC
-END PGP SIGNATURE-


Accepted:
mhc-utils_0.25.1+20090531-1_i386.deb
  to pool/main/m/mhc/mhc-utils_0.25.1+20090531-1_i386.deb
mhc_0.25.1+20090531-1.diff.gz
  to pool/main/m/mhc/mhc_0.25.1+20090531-1.diff.gz
mhc_0.25.1+20090531-1.dsc
  to pool/main/m/mhc/mhc_0.25.1+20090531-1.dsc
mhc_0.25.1+20090531-1_all.deb
  to pool/main/m/mhc/mhc_0.25.1+20090531-1_all.deb
mhc_0.25.1+20090531.orig.tar.gz
  to pool/main/m/mhc/mhc_0.25.1+20090531.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 kdesudo 3.4.2-1 (source amd64)

2009-08-03 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 14:19:32 +0200
Source: kdesudo
Binary: kdesudo
Architecture: source amd64
Version: 3.4.2-1
Distribution: unstable
Urgency: high
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Didier Raboud did...@raboud.com
Description: 
 kdesudo- sudo frontend for KDE
Closes: 525292
Changes: 
 kdesudo (3.4.2-1) unstable; urgency=high
 .
   * New upstream release.
 - Avoids using the now disabled SECURITY X extension (Closes: #525292),
   thanks to upstream inclusion of a Debian proposed patch.
 - Set high urgency for fixing an RC bug.
   * Bump Standards to 3.8.2.
Checksums-Sha1: 
 b7a174c9e3f7cc3a9aeb78d284597f596e6d40c8 1263 kdesudo_3.4.2-1.dsc
 3fb361a842024341059c931b2b399ef6993c992f 58209 kdesudo_3.4.2.orig.tar.gz
 1e42c96bc50cb1721c86f0e0753c87a094871d75 9347 kdesudo_3.4.2-1.diff.gz
 56724706c44d786e8a8ec30f0c1b4809c6926326 72414 kdesudo_3.4.2-1_amd64.deb
Checksums-Sha256: 
 64de373d0fe2c7f891961766330d92e6d2a53fce2adc6185e6adfca9caa4fbae 1263 
kdesudo_3.4.2-1.dsc
 b2a96e55bf8d47e5be82357ead675a5801b47555c3526001d8775178a099b783 58209 
kdesudo_3.4.2.orig.tar.gz
 bff39326f02e8cc5214561748b7322f9745df5bc67ec1a6fc2ff7dda7f8d908b 9347 
kdesudo_3.4.2-1.diff.gz
 6f54fca62369bd7d7ccdd4834fa2b7c4c53ff7193211721df58e9b703f5d177b 72414 
kdesudo_3.4.2-1_amd64.deb
Files: 
 014dd3e0bc4b0ddc7c9c7c02cf5475ca 1263 kde optional kdesudo_3.4.2-1.dsc
 25e0cbbd90dd2dbc89dba46b9a8d5ed1 58209 kde optional kdesudo_3.4.2.orig.tar.gz
 749ea07914dd12ecf2dcaaa932c5a588 9347 kde optional kdesudo_3.4.2-1.diff.gz
 986c5f0a4edb9ada157a46fc64e2b9c2 72414 kde optional kdesudo_3.4.2-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Signed by Ana Guerrero

iEYEARECAAYFAkp23UwACgkQn3j4POjENGEGoACeO4XyNOgGQ3UeIa/kGg9cOqtm
XkIAn3FgGM8d1UdSmJx0cQp+t9zITp/4
=VqVu
-END PGP SIGNATURE-


Accepted:
kdesudo_3.4.2-1.diff.gz
  to pool/main/k/kdesudo/kdesudo_3.4.2-1.diff.gz
kdesudo_3.4.2-1.dsc
  to pool/main/k/kdesudo/kdesudo_3.4.2-1.dsc
kdesudo_3.4.2-1_amd64.deb
  to pool/main/k/kdesudo/kdesudo_3.4.2-1_amd64.deb
kdesudo_3.4.2.orig.tar.gz
  to pool/main/k/kdesudo/kdesudo_3.4.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 babel 1.4.0.dfsg-4 (source all amd64)

2009-08-03 Thread Adam C. Powell, IV
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 07:13:37 -0400
Source: babel
Binary: babel-1.4.0 libsidl1.4.0-java python-sidl libsidl-dev libsidl-1.4.0 
babel-doc
Architecture: source all amd64
Version: 1.4.0.dfsg-4
Distribution: unstable
Urgency: low
Maintainer: Adam C. Powell, IV hazel...@debian.org
Changed-By: Adam C. Powell, IV hazel...@debian.org
Description: 
 babel-1.4.0 - Scientific Interface Definition Language (SIDL) compiler
 babel-doc  - Scientific Interface Definition Language (SIDL) suite documentati
 libsidl-1.4.0 - Scientific Interface Definition Language (SIDL) C(++)/FORTRAN 
run
 libsidl-dev - Scientific Interface Definition Language (SIDL) C(++)/FORTRAN run
 libsidl1.4.0-java - Scientific Interface Definition Language (SIDL) Java 
runtime
 python-sidl - Scientific Interface Definition Language (SIDL) Python runtime
Closes: 539063
Changes: 
 babel (1.4.0.dfsg-4) unstable; urgency=low
 .
   * Entered Dan Frazier's patch in patches/series (closes: #539063).
Checksums-Sha1: 
 10519039ae07abdd2ed727ccafe257fab8f7eca9 1407 babel_1.4.0.dfsg-4.dsc
 5cda6daac3d2b2108cd4be93ee201d2927d4148c 17348 babel_1.4.0.dfsg-4.diff.gz
 afafe373351231c1defdd88523702f629ae1356b 1239872 
babel-1.4.0_1.4.0.dfsg-4_all.deb
 f624318aaa126bc146771fbcc8e97be00fea1ff2 2007020 
libsidl1.4.0-java_1.4.0.dfsg-4_all.deb
 fbbda81ae6fb4f8417279f9e66d6756dd26cfc14 1022032 babel-doc_1.4.0.dfsg-4_all.deb
 844cd5575d742fae8472d8e97ad9342cd44205f3 3121214 
python-sidl_1.4.0.dfsg-4_amd64.deb
 92fcb880d95b72d1cb88caec194ebb3d411725ec 6899630 
libsidl-dev_1.4.0.dfsg-4_amd64.deb
 f783fa14e406571f2094eed52340e63aa6a8a7db 3855900 
libsidl-1.4.0_1.4.0.dfsg-4_amd64.deb
Checksums-Sha256: 
 8537dc751bdb3612873e188c104810f869862dd9a497f2a583e4e7e430d9df93 1407 
babel_1.4.0.dfsg-4.dsc
 72492bc04689a3c16419f1c183b3791cdf42e735066b4ac8591031d0070d2824 17348 
babel_1.4.0.dfsg-4.diff.gz
 f1361cbd12123fa586e133ee7d1f5eb77952bc3da6b7d893ff1c2d3dc74623d8 1239872 
babel-1.4.0_1.4.0.dfsg-4_all.deb
 52c7679dedf6de109dd9cb9dd211793ff791b3afa90a883ac5422de9d3447a83 2007020 
libsidl1.4.0-java_1.4.0.dfsg-4_all.deb
 f0edf68300245856434a70fc4cf7614ed13fcbe024cc9ff0257a033413f99e99 1022032 
babel-doc_1.4.0.dfsg-4_all.deb
 6bb561984c6dcb785fa67e1d942a51d697f74728a300eca4fb7a845995a293c4 3121214 
python-sidl_1.4.0.dfsg-4_amd64.deb
 9ab91706ab06c34ca875b9c05705e9849523aaf0bc8c6a940f89608dc101a5fa 6899630 
libsidl-dev_1.4.0.dfsg-4_amd64.deb
 bf684a7bf42b3807bbd650a5436e5cbe92bff5994e69ebf805edeeca7044651a 3855900 
libsidl-1.4.0_1.4.0.dfsg-4_amd64.deb
Files: 
 8bc4f7cee3ac07f9870868b11c764892 1407 devel extra babel_1.4.0.dfsg-4.dsc
 55b728631b95a22cbb989ab0e6ccd648 17348 devel extra babel_1.4.0.dfsg-4.diff.gz
 824507e0692e45fc84db61104510de4e 1239872 devel extra 
babel-1.4.0_1.4.0.dfsg-4_all.deb
 d189247aceeedd126f05de6d72339038 2007020 java extra 
libsidl1.4.0-java_1.4.0.dfsg-4_all.deb
 5ec9d78f9a0b2092165fa503cd443845 1022032 doc extra 
babel-doc_1.4.0.dfsg-4_all.deb
 0626be4ba66d1ad847ffeea5c9cddbe6 3121214 python extra 
python-sidl_1.4.0.dfsg-4_amd64.deb
 a9c02999e33af49c69bd1444948c71c2 6899630 libdevel extra 
libsidl-dev_1.4.0.dfsg-4_amd64.deb
 1f82c6ae46d82fef70653b23f090738f 3855900 libs extra 
libsidl-1.4.0_1.4.0.dfsg-4_amd64.deb

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

iEYEARECAAYFAkp22CIACgkQUm8B6FZO5LYTWgCeLi/LqVZfCbVD1rvyjN7fVwrj
2qYAn26ajoBPPrhR4tO7g2g5b2+W73U3
=rh0z
-END PGP SIGNATURE-


Accepted:
babel-1.4.0_1.4.0.dfsg-4_all.deb
  to pool/main/b/babel/babel-1.4.0_1.4.0.dfsg-4_all.deb
babel-doc_1.4.0.dfsg-4_all.deb
  to pool/main/b/babel/babel-doc_1.4.0.dfsg-4_all.deb
babel_1.4.0.dfsg-4.diff.gz
  to pool/main/b/babel/babel_1.4.0.dfsg-4.diff.gz
babel_1.4.0.dfsg-4.dsc
  to pool/main/b/babel/babel_1.4.0.dfsg-4.dsc
libsidl-1.4.0_1.4.0.dfsg-4_amd64.deb
  to pool/main/b/babel/libsidl-1.4.0_1.4.0.dfsg-4_amd64.deb
libsidl-dev_1.4.0.dfsg-4_amd64.deb
  to pool/main/b/babel/libsidl-dev_1.4.0.dfsg-4_amd64.deb
libsidl1.4.0-java_1.4.0.dfsg-4_all.deb
  to pool/main/b/babel/libsidl1.4.0-java_1.4.0.dfsg-4_all.deb
python-sidl_1.4.0.dfsg-4_amd64.deb
  to pool/main/b/babel/python-sidl_1.4.0.dfsg-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 embassy-domainatrix 0.1.0+20090715-1 (source powerpc)

2009-08-03 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 19:38:00 +0900
Source: embassy-domainatrix
Binary: embassy-domainatrix
Architecture: source powerpc
Version: 0.1.0+20090715-1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description: 
 embassy-domainatrix - Extra EMBOSS commands to handle domain classification 
file
Changes: 
 embassy-domainatrix (0.1.0+20090715-1) unstable; urgency=low
 .
   * New upstream release in which the version number was unchanged.
   * debian/control:
 - Build against EMBOSS 6.1
 - Checked conformance with Policy 3.8.2 (no changes needed).
   * debian/watch: mangle Debian version to ignore the timestamp.
   * Refreshed and experimented on debian/copyright.
   * debian/*manpages* refreshed and moved to section 1e.
Checksums-Sha1: 
 29be00baf21d1320b47c8062d6856f56903af378 1574 
embassy-domainatrix_0.1.0+20090715-1.dsc
 d8db155889c88ecbdf9c0f9ee032a47c24ee509f 399655 
embassy-domainatrix_0.1.0+20090715.orig.tar.gz
 64f6f276fc64f8af9115cd8fb4bdc4f6fbcc962e 7623 
embassy-domainatrix_0.1.0+20090715-1.diff.gz
 34a0ce538a72881f69fa6a5096ad521699b053c2 94320 
embassy-domainatrix_0.1.0+20090715-1_powerpc.deb
Checksums-Sha256: 
 817b8d7f3a8a321468df89fcd2cdeffca02c15fb5be6b5756e1cee0155318206 1574 
embassy-domainatrix_0.1.0+20090715-1.dsc
 54f4aa2bd8753a261722f16098e42f01a9083467162c027e2f1738a740f880d3 399655 
embassy-domainatrix_0.1.0+20090715.orig.tar.gz
 16dbff4b745656c88966024337e666bc52b257f028e3f7b26f28d84dde6f71ee 7623 
embassy-domainatrix_0.1.0+20090715-1.diff.gz
 bd9dd248b2ae49d1efcdc490e04220fd59dc3b1a06994155c99445374261c6c8 94320 
embassy-domainatrix_0.1.0+20090715-1_powerpc.deb
Files: 
 7c756497bf587f60ddf0db803f6e0eaa 1574 science optional 
embassy-domainatrix_0.1.0+20090715-1.dsc
 50166472ec36da22574fae8c6532d3b4 399655 science optional 
embassy-domainatrix_0.1.0+20090715.orig.tar.gz
 01e890f7f8cae62ad781f9e342c50f07 7623 science optional 
embassy-domainatrix_0.1.0+20090715-1.diff.gz
 7b76ebd42beae124d78b78f29eadadf1 94320 science optional 
embassy-domainatrix_0.1.0+20090715-1_powerpc.deb

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

iEYEARECAAYFAkp22WMACgkQdYl1krr+x/JgIQCeIiu0m9WibggVCi/nZZyaDrTy
1zgAn3qwA10ZmeIW4GItpTPxL0OXeUWX
=DHH6
-END PGP SIGNATURE-


Accepted:
embassy-domainatrix_0.1.0+20090715-1.diff.gz
  to 
pool/main/e/embassy-domainatrix/embassy-domainatrix_0.1.0+20090715-1.diff.gz
embassy-domainatrix_0.1.0+20090715-1.dsc
  to pool/main/e/embassy-domainatrix/embassy-domainatrix_0.1.0+20090715-1.dsc
embassy-domainatrix_0.1.0+20090715-1_powerpc.deb
  to 
pool/main/e/embassy-domainatrix/embassy-domainatrix_0.1.0+20090715-1_powerpc.deb
embassy-domainatrix_0.1.0+20090715.orig.tar.gz
  to 
pool/main/e/embassy-domainatrix/embassy-domainatrix_0.1.0+20090715.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 0.7.22.1 (source all amd64)

2009-08-03 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 03 Aug 2009 12:48:31 +0200
Source: apt
Binary: apt apt-doc libapt-pkg-dev libapt-pkg-doc apt-utils apt-transport-https
Architecture: source all amd64
Version: 0.7.22.1
Distribution: unstable
Urgency: low
Maintainer: APT Development Team de...@lists.debian.org
Changed-By: Julian Andres Klode j...@debian.org
Description: 
 apt- Advanced front-end for dpkg
 apt-doc- Documentation for APT
 apt-transport-https - APT https transport
 apt-utils  - APT utility programs
 libapt-pkg-dev - Development files for APT's libapt-pkg and libapt-inst
 libapt-pkg-doc - Documentation for APT development
Closes: 535362 539731 539742
Changes: 
 apt (0.7.22.1) unstable; urgency=low
 .
   [ Michael Vogt ]
   * cmdline/apt-get.cc:
 - honor APT::Get::Only-Source properly in FindSrc() (thanks to
   Martin Pitt for reporting the problem), also Closes: #535362.
 .
   [ Julian Andres Klode ]
   * apt-pkg/contrib/mmap.cc:
 - Fix FTBFS on GNU/kFreeBSD by disabling DynamicMMap::Grow() on
   non-Linux architectures as it uses mremap (Closes: #539742).
   * apt-pkg/sourcelist.cc:
 - Only warn about missing sources.list if there is no sources.list.d
   and vice versa as only one of them is needed (Closes: #539731).
   * debian/control:
 - Add myself to Uploaders.
 - Increase Standards-Version to 3.8.2.0.
Checksums-Sha1: 
 350bd6a4a3571eeacca3943b69e2afbc8af5b3d1 1219 apt_0.7.22.1.dsc
 569eb15700891200f5dda6eff5389a33fae8738e 2123687 apt_0.7.22.1.tar.gz
 5860943f5f25c96bfd5b8ddb88ae10898ad7face 103948 apt-doc_0.7.22.1_all.deb
 33b39f50a621afdcd3980fa52103764f608d4438 126220 libapt-pkg-doc_0.7.22.1_all.deb
 6e0cdf6b9ed312b2451d45bfda3b005650816093 1636334 apt_0.7.22.1_amd64.deb
 92dc97fc10a6ff706dd2faef75caf60627765016 112806 
libapt-pkg-dev_0.7.22.1_amd64.deb
 2cb7fd83defbbf9f5b9e99b94c7fb05ca5301a77 194378 apt-utils_0.7.22.1_amd64.deb
 6d7557c5c51fa5d80c4c69951941a0db9fb261ed 61934 
apt-transport-https_0.7.22.1_amd64.deb
Checksums-Sha256: 
 23cbd9b7a8fe7faae8db3d6e1fc0f5395eaeda88cd5fdfc467247a692aa7216d 1219 
apt_0.7.22.1.dsc
 499b32076a0f45bb749934b29d330f696b0171923eec8fed4399e8c8f5bb5ac9 2123687 
apt_0.7.22.1.tar.gz
 13a3f1c6e033eea0349c503d457a547d668222b5fa4712b9025b11f10683b82b 103948 
apt-doc_0.7.22.1_all.deb
 89f51920a8f2d3056b277da3b58c65a559e6ff273caa05b0b78b06743da3ad47 126220 
libapt-pkg-doc_0.7.22.1_all.deb
 8830e7c2d59d9c549f40d1ed24c3a1414ddcae9bbfc0b9e54bf8e76ace7d048e 1636334 
apt_0.7.22.1_amd64.deb
 ccd2d43a9db8d107c1539ac68d408bdcfa43e264b77a781f87e0d5649edfaabd 112806 
libapt-pkg-dev_0.7.22.1_amd64.deb
 cd84b7a9f52ef5ab24e94d177bb77142632eab9797d337873a89168ca64f0c73 194378 
apt-utils_0.7.22.1_amd64.deb
 98dab5e8db61ac110d6c09db8bf6174918a2e140d135afe313ef4ae76111e6af 61934 
apt-transport-https_0.7.22.1_amd64.deb
Files: 
 d3ac6f1ed0b7cafb4e14ca8286f4b3fc 1219 admin important apt_0.7.22.1.dsc
 871adfcb9c164b6025694c22eb803139 2123687 admin important apt_0.7.22.1.tar.gz
 068dfb23c83db42ae53006469b43803a 103948 doc optional apt-doc_0.7.22.1_all.deb
 4862e7cef5f543444a7fc1992e23bb26 126220 doc optional 
libapt-pkg-doc_0.7.22.1_all.deb
 570a708b247f39a0cf58c39f893699ec 1636334 admin important apt_0.7.22.1_amd64.deb
 546a007d7a519bb75a7ad5128d60b024 112806 libdevel optional 
libapt-pkg-dev_0.7.22.1_amd64.deb
 bea31ef27eca5cef72fb07cd5bdb0a3f 194378 admin important 
apt-utils_0.7.22.1_amd64.deb
 a9fe417e3954b5370d4ca61032f058a1 61934 admin optional 
apt-transport-https_0.7.22.1_amd64.deb

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

iEYEAREDAAYFAkp20FMACgkQrCpf/gCCPsLOigCeMwPb1RC9qlODf3uoKjTXdZ5Y
Vh0AnjML5Mqu59U2yi64ishwT1u1deGa
=zOVi
-END PGP SIGNATURE-


Accepted:
apt-doc_0.7.22.1_all.deb
  to pool/main/a/apt/apt-doc_0.7.22.1_all.deb
apt-transport-https_0.7.22.1_amd64.deb
  to pool/main/a/apt/apt-transport-https_0.7.22.1_amd64.deb
apt-utils_0.7.22.1_amd64.deb
  to pool/main/a/apt/apt-utils_0.7.22.1_amd64.deb
apt_0.7.22.1.dsc
  to pool/main/a/apt/apt_0.7.22.1.dsc
apt_0.7.22.1.tar.gz
  to pool/main/a/apt/apt_0.7.22.1.tar.gz
apt_0.7.22.1_amd64.deb
  to pool/main/a/apt/apt_0.7.22.1_amd64.deb
libapt-pkg-dev_0.7.22.1_amd64.deb
  to pool/main/a/apt/libapt-pkg-dev_0.7.22.1_amd64.deb
libapt-pkg-doc_0.7.22.1_all.deb
  to pool/main/a/apt/libapt-pkg-doc_0.7.22.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 linux-2.6 2.6.30-5 (source all amd64)

2009-08-03 Thread maximilian attems
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 12:08:56 +0200
Source: linux-2.6
Binary: linux-source-2.6.30 linux-doc-2.6.30 linux-manual-2.6.30 
linux-patch-debian-2.6.30 linux-tree-2.6.30 linux-support-2.6.30-1 
linux-libc-dev linux-headers-2.6.30-1-all linux-headers-2.6.30-1-all-alpha 
linux-headers-2.6.30-1-common linux-image-2.6.30-1-alpha-generic 
linux-headers-2.6.30-1-alpha-generic linux-image-2.6.30-1-alpha-smp 
linux-headers-2.6.30-1-alpha-smp linux-image-2.6.30-1-alpha-legacy 
linux-headers-2.6.30-1-alpha-legacy linux-headers-2.6.30-1-all-amd64 
linux-image-2.6.30-1-amd64 linux-headers-2.6.30-1-amd64 
linux-headers-2.6.30-1-all-arm linux-image-2.6.30-1-footbridge 
linux-headers-2.6.30-1-footbridge linux-image-2.6.30-1-iop32x 
linux-headers-2.6.30-1-iop32x linux-image-2.6.30-1-ixp4xx 
linux-headers-2.6.30-1-ixp4xx linux-image-2.6.30-1-orion5x 
linux-headers-2.6.30-1-orion5x linux-headers-2.6.30-1-all-armel 
linux-image-2.6.30-1-kirkwood linux-headers-2.6.30-1-kirkwood 
linux-image-2.6.30-1-versatile linux-headers-2.6.30-1-versatile 
linux-headers-2.6.30-1-all
 -hppa linux-image-2.6.30-1-parisc linux-headers-2.6.30-1-parisc 
linux-image-2.6.30-1-parisc-smp linux-headers-2.6.30-1-parisc-smp 
linux-image-2.6.30-1-parisc64 linux-headers-2.6.30-1-parisc64 
linux-image-2.6.30-1-parisc64-smp linux-headers-2.6.30-1-parisc64-smp 
linux-headers-2.6.30-1-all-i386 linux-image-2.6.30-1-486 
linux-headers-2.6.30-1-486 linux-image-2.6.30-1-686 linux-headers-2.6.30-1-686 
linux-image-2.6.30-1-686-bigmem linux-headers-2.6.30-1-686-bigmem 
linux-headers-2.6.30-1-all-ia64 linux-image-2.6.30-1-itanium 
linux-headers-2.6.30-1-itanium linux-image-2.6.30-1-mckinley 
linux-headers-2.6.30-1-mckinley linux-headers-2.6.30-1-all-m68k 
linux-image-2.6.30-1-amiga linux-headers-2.6.30-1-amiga 
linux-image-2.6.30-1-atari linux-headers-2.6.30-1-atari 
linux-image-2.6.30-1-bvme6000 linux-headers-2.6.30-1-bvme6000 
linux-image-2.6.30-1-mac linux-headers-2.6.30-1-mac 
linux-image-2.6.30-1-mvme147 linux-headers-2.6.30-1-mvme147 
linux-image-2.6.30-1-mvme16x linux-headers-2.6.30-1-m
 vme16x linux-headers-2.6.30-1-all-mips linux-image-2.6.30-1-r4k-ip22 
linux-headers-2.6.30-1-r4k-ip22 linux-image-2.6.30-1-r5k-ip32 
linux-headers-2.6.30-1-r5k-ip32 linux-image-2.6.30-1-sb1-bcm91250a 
linux-headers-2.6.30-1-sb1-bcm91250a linux-image-2.6.30-1-sb1a-bcm91480b 
linux-headers-2.6.30-1-sb1a-bcm91480b linux-image-2.6.30-1-4kc-malta 
linux-headers-2.6.30-1-4kc-malta linux-image-2.6.30-1-5kc-malta 
linux-headers-2.6.30-1-5kc-malta linux-headers-2.6.30-1-all-mipsel 
linux-image-2.6.30-1-r5k-cobalt linux-headers-2.6.30-1-r5k-cobalt 
linux-headers-2.6.30-1-all-powerpc linux-image-2.6.30-1-powerpc 
linux-headers-2.6.30-1-powerpc linux-image-2.6.30-1-powerpc-smp 
linux-headers-2.6.30-1-powerpc-smp linux-image-2.6.30-1-powerpc64 
linux-headers-2.6.30-1-powerpc64 linux-headers-2.6.30-1-all-s390 
linux-image-2.6.30-1-s390x linux-headers-2.6.30-1-s390x 
linux-image-2.6.30-1-s390x-tape linux-headers-2.6.30-1-all-sparc 
linux-image-2.6.30-1-sparc64 linux-headers-2.6.30-1-sparc64 linux-image-
 2.6.30-1-sparc64-smp linux-headers-2.6.30-1-sparc64-smp
Architecture: source all amd64
Version: 2.6.30-5
Distribution: unstable
Urgency: high
Maintainer: Debian Kernel Team debian-ker...@lists.debian.org
Changed-By: maximilian attems m...@debian.org
Description: 
 linux-doc-2.6.30 - Linux kernel specific documentation for version 2.6.30
 linux-headers-2.6.30-1-486 - Header files for Linux 2.6.30-1-486
 linux-headers-2.6.30-1-4kc-malta - Header files for Linux 2.6.30-1-4kc-malta
 linux-headers-2.6.30-1-5kc-malta - Header files for Linux 2.6.30-1-5kc-malta
 linux-headers-2.6.30-1-686 - Header files for Linux 2.6.30-1-686
 linux-headers-2.6.30-1-686-bigmem - Header files for Linux 2.6.30-1-686-bigmem
 linux-headers-2.6.30-1-all - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-alpha - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-amd64 - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-arm - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-armel - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-hppa - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-i386 - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-ia64 - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-m68k - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-mips - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-mipsel - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-powerpc - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-s390 - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-all-sparc - All header files for Linux 2.6.30
 linux-headers-2.6.30-1-alpha-generic - Header files for Linux 
2.6.30-1-alpha-generic
 linux-headers-2.6.30-1-alpha-legacy - Header files for Linux 
2.6.30-1-alpha-legacy
 

Accepted ser2net 2.6-1 (source i386)

2009-08-03 Thread Marc Haber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 15:17:26 +0200
Source: ser2net
Binary: ser2net
Architecture: source i386
Version: 2.6-1
Distribution: unstable
Urgency: low
Maintainer: Marc Haber mh+debian-packa...@zugschlus.de
Changed-By: Marc Haber mh+debian-packa...@zugschlus.de
Description: 
 ser2net- Allows network connections to serial ports
Closes: 531733 535159
Changes: 
 ser2net (2.6-1) unstable; urgency=low
 .
   * New upstream version.
 * Fix segfault (control port use after free).
   Thanks to Sebastian Andrzej Siewior. Closes: #535159
   * add dpatch usage, regenerate debian/control
   * Apply patch from Geoff Simmons regarding documentation of the
 timeout option, sync with upstream CVS. Closes: #531733
   * debian/watch: use sf redirector.
   * Standards-Version: 3.8.2 (no changes necessary)
Checksums-Sha1: 
 91807f0dfe9370f372d2851c526755a1f9b6bb40 959 ser2net_2.6-1.dsc
 d651f8be26a2234d036fa3bc00849e6c82f0a869 351285 ser2net_2.6.orig.tar.gz
 8973ade85fd57d896cc9c0d526780c3fd577591f 7097 ser2net_2.6-1.diff.gz
 df74990f33d52a3043a7104492e59a65cebb39f5 41238 ser2net_2.6-1_i386.deb
Checksums-Sha256: 
 9e2a7940f7a117b9abd59ef5b30fc2fe2fc5873d1947f1525342279a699445c5 959 
ser2net_2.6-1.dsc
 4255b8c18b0a1e7f556da83e467571ec49db1090d7d48c30e75811f72da9da51 351285 
ser2net_2.6.orig.tar.gz
 d2d700a8e6bcff43564e2ccec26027dc1cac32ec765675309fe27752e6912294 7097 
ser2net_2.6-1.diff.gz
 f8f9e90fa9bdc60ac0fa708fed4cf1672bd05177e0659190428dab7c8846e675 41238 
ser2net_2.6-1_i386.deb
Files: 
 135259ae8a02d436637b1a94381aff20 959 utils optional ser2net_2.6-1.dsc
 f53e067380ab31897923db665d044064 351285 utils optional ser2net_2.6.orig.tar.gz
 e2357cfc851da1cd5378f36d91c61306 7097 utils optional ser2net_2.6-1.diff.gz
 f6175132456d04dfa0a045c7f9bf8ef7 41238 utils optional ser2net_2.6-1_i386.deb

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

iEYEARECAAYFAkp26PYACgkQgZalRGu6PIRihQCeOvB164Sy4Cegud/nbgEzKDou
iXIAn2IabqlDv3a8wY+MP93OsI4ZxQ2k
=HTuZ
-END PGP SIGNATURE-


Accepted:
ser2net_2.6-1.diff.gz
  to pool/main/s/ser2net/ser2net_2.6-1.diff.gz
ser2net_2.6-1.dsc
  to pool/main/s/ser2net/ser2net_2.6-1.dsc
ser2net_2.6-1_i386.deb
  to pool/main/s/ser2net/ser2net_2.6-1_i386.deb
ser2net_2.6.orig.tar.gz
  to pool/main/s/ser2net/ser2net_2.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 ncurses 5.7+20090728-1 (source i386 all)

2009-08-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 15:12:44 +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+20090728-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+20090728-1) unstable; urgency=low
 .
   * Merging upstream version 5.7+20090728.
Checksums-Sha1: 
 fe227e3254b6d01d802d4c3e4bfd852ea4acecfb 1517 ncurses_5.7+20090728-1.dsc
 39e89b177fe28a69618d1fa026102f816613558e 2592713 
ncurses_5.7+20090728.orig.tar.gz
 b16a2c583d77f1e2681e097429c3d26b2be364ef 40746 ncurses_5.7+20090728-1.diff.gz
 d318ea75db1562b25e95e6fccbb3d206fa882f27 339774 
libncurses5_5.7+20090728-1_i386.deb
 dcabd3b851877b754b674fdb2d965ff743e0fecc 1562234 
libncurses5-dev_5.7+20090728-1_i386.deb
 8c38bbcc2ba688589371f207cffdaa3c5a36 1907330 
libncurses5-dbg_5.7+20090728-1_i386.deb
 7dccf9e988db67ad2f41b30c070cf5d9e0503432 363922 
libncursesw5_5.7+20090728-1_i386.deb
 94c6b4942cace4d7947fea6e0eb56cc83361cc2d 482080 
libncursesw5-dev_5.7+20090728-1_i386.deb
 8d1c1ee9b48d63f0f8b6cc928143d95764bc01b5 2132274 
libncursesw5-dbg_5.7+20090728-1_i386.deb
 f077a4250536c2db60b6e9bb5b0b667855962fe8 352098 
lib64ncurses5_5.7+20090728-1_i386.deb
 cf8a830109b97810c81f797bbb0fb5543a719dd8 419106 
lib64ncurses5-dev_5.7+20090728-1_i386.deb
 444a9ebf7a494f15d0bcc05e4e8250bdefb4522c 307156 
ncurses-bin_5.7+20090728-1_i386.deb
 83e352678fef6fb51a4ec6043bf015afbb8c01bc 181452 
ncurses-base_5.7+20090728-1_all.deb
 f02f47fa4af243cf9a9be06397c1d2f1d671c7d2 563992 
ncurses-term_5.7+20090728-1_all.deb
Checksums-Sha256: 
 cd2636e2c3d381352620598b26eca6d260af7029d7d95415127c6a329f23f5d2 1517 
ncurses_5.7+20090728-1.dsc
 ec81655a4183746b277f795afae24b1289110cfced75266809a805c4d35e292d 2592713 
ncurses_5.7+20090728.orig.tar.gz
 0356c480c71f0d6938141c56a15365843223e8a8a7190fc3e41c58a66304d008 40746 
ncurses_5.7+20090728-1.diff.gz
 2a3930bef8a582c95a99b5b852bdd0042f050a1a35d3256c6e71eb094f8f3f6a 339774 
libncurses5_5.7+20090728-1_i386.deb
 5c7d05f339ebf5c317aa5ee1a970d78ee42b417056ba86fea7b864b1f5df5ea1 1562234 
libncurses5-dev_5.7+20090728-1_i386.deb
 127498f742e82e0fb60aa1efb66a92ad147509587dc9c01f7c66b541bc39a256 1907330 
libncurses5-dbg_5.7+20090728-1_i386.deb
 75f25fb470b498d3b3eff37ca341fad5e7b1f37c90e1c1d56e1b1eb3f003e0c1 363922 
libncursesw5_5.7+20090728-1_i386.deb
 568b8fa06493bf7b74b94215d5af9fe1785ea4087381b5a607f76f0a0867a657 482080 
libncursesw5-dev_5.7+20090728-1_i386.deb
 56c22edce800af46ecf4feab2c23eb578bf521b10c2f42c344725906879bde96 2132274 
libncursesw5-dbg_5.7+20090728-1_i386.deb
 48db5cc1f14b7f2f1c6f660a4f799f2abe33b039a486a2e521036b1a3f3502b6 352098 
lib64ncurses5_5.7+20090728-1_i386.deb
 299cb6d23718a5982e07aa84f95a36024cdc7b88cfba65ae93a953217ae0f468 419106 
lib64ncurses5-dev_5.7+20090728-1_i386.deb
 6a10836651cedff480eb750463187a110c14378439ac8fc6b2ffa806fc6e8954 307156 
ncurses-bin_5.7+20090728-1_i386.deb
 13c99c9a245ea70c9a603c28e1ab717ba28e05627e9b017716f2763ba4f392ff 181452 
ncurses-base_5.7+20090728-1_all.deb
 e1aa0da9d895c2e2488ca60387360be0518e3795705249a567f7fdea845e0501 563992 
ncurses-term_5.7+20090728-1_all.deb
Files: 
 1cd95e2e4db58cb183f5557bcac4578d 1517 libs standard ncurses_5.7+20090728-1.dsc
 a7057121de367423695b339690810eda 2592713 libs standard 
ncurses_5.7+20090728.orig.tar.gz
 38bf32672d2cd3105c86fc5242359f0b 40746 libs standard 
ncurses_5.7+20090728-1.diff.gz
 2481a78483da481b320694f91a5b1880 339774 libs required 
libncurses5_5.7+20090728-1_i386.deb
 48d8a1937a86d5dc0b914b891d82ee01 1562234 libdevel optional 
libncurses5-dev_5.7+20090728-1_i386.deb
 a7ba8b14edb3913f4d9356ffe28824e7 1907330 debug extra 
libncurses5-dbg_5.7+20090728-1_i386.deb
 c4ad42058bba7a6306d90bd0a3c0dc5a 363922 libs important 

Accepted python-apt 0.7.12.1 (source amd64)

2009-08-03 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 03 Aug 2009 15:17:43 +0200
Source: python-apt
Binary: python-apt python-apt-dbg
Architecture: source amd64
Version: 0.7.12.1
Distribution: unstable
Urgency: low
Maintainer: APT Development Team de...@lists.debian.org
Changed-By: Julian Andres Klode j...@debian.org
Description: 
 python-apt - Python interface to libapt-pkg
 python-apt-dbg - Python interface to libapt-pkg (debug extension)
Closes: 539704
Changes: 
 python-apt (0.7.12.1) unstable; urgency=low
 .
   * apt/debfile.py:
 - Fix missing space in message (Closes: #539704)
   * apt/package.py:
 - Add missing argument to Version.__le__() and Version.__ge__()
   * debian/control:
 - Do not build-depend on python-gtk2 and python-vte on kfreebsd-*.
   * setup.py:
 - Always build documentation, even if python-gtk2 is not installed.
Checksums-Sha1: 
 003a511a973dff74818ef5ff33f0d3247f6abdbc 1257 python-apt_0.7.12.1.dsc
 c804316d714ee6df4e51f9cc1bd0c367b2ab4354 682515 python-apt_0.7.12.1.tar.gz
 e2d033da4f7299e7a6cfcb14e3605afd23b8b5c0 407892 python-apt_0.7.12.1_amd64.deb
 58aefa34ac5e31f66bb9dd7b8193c3f9d4bf0ef0 1535626 
python-apt-dbg_0.7.12.1_amd64.deb
Checksums-Sha256: 
 18a7af4c6a188e5219f592aeeb171fb2a98e5d9132eabf5bf823167816bb67fb 1257 
python-apt_0.7.12.1.dsc
 2a1a6c2fba9523feee70ca7a20a45591d7ede1a745e440bcc3231c16569cb211 682515 
python-apt_0.7.12.1.tar.gz
 0bb519a01a4436555707b2f01509026959d5466771603da999c7452262046bbc 407892 
python-apt_0.7.12.1_amd64.deb
 82b37760dfdcf0ed3c8cfd11c53ceb2b0685186950a78af622d2205ccfc96993 1535626 
python-apt-dbg_0.7.12.1_amd64.deb
Files: 
 8c1edaca515bedb8562680e5e8f9c570 1257 python optional python-apt_0.7.12.1.dsc
 2a159b96a9d64abc9f49889808294207 682515 python optional 
python-apt_0.7.12.1.tar.gz
 c2a61ade8906916269f7406beb69f4fe 407892 python optional 
python-apt_0.7.12.1_amd64.deb
 d2aa798072f0c0478b88749d3816d69f 1535626 debug extra 
python-apt-dbg_0.7.12.1_amd64.deb

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

iEYEAREDAAYFAkp25GUACgkQrCpf/gCCPsKyygCeJbuL8sAqUXEG9mUMOp0pXKNF
d5kAn0y+HqXvRVBeyRyC7B4saWktCI7B
=1DbF
-END PGP SIGNATURE-


Accepted:
python-apt-dbg_0.7.12.1_amd64.deb
  to pool/main/p/python-apt/python-apt-dbg_0.7.12.1_amd64.deb
python-apt_0.7.12.1.dsc
  to pool/main/p/python-apt/python-apt_0.7.12.1.dsc
python-apt_0.7.12.1.tar.gz
  to pool/main/p/python-apt/python-apt_0.7.12.1.tar.gz
python-apt_0.7.12.1_amd64.deb
  to pool/main/p/python-apt/python-apt_0.7.12.1_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 xfce4-places-plugin 1.2.0-1 (source amd64)

2009-08-03 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 03 Aug 2009 15:03:03 +0200
Source: xfce4-places-plugin
Binary: xfce4-places-plugin
Architecture: source amd64
Version: 1.2.0-1
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-places-plugin - quick access to folders, documents and removable media
Changes: 
 xfce4-places-plugin (1.2.0-1) unstable; urgency=low
 .
   [ Evgeni Golov ]
   * Fix Vcs-* fields, they were missing 'trunk' in the path.
 .
   [ Yves-Alexis Perez ]
   * New upstream release.
   * debian/patches:
 - 01_fix-segfault-exit dropped, included upstream.
 - 02_fix-xdg-icons as well.
   * debian/control:
 - drop build-dep on quilt.
 - add build-dep on intltool.
 - bump standards version to 3.8.2.
   * debian/rules:
 - drop call to quilt rules.
 - drop calls to patch/unpatch targets.
Checksums-Sha1: 
 0e693292c467a8617394376a295c4de58efac6c1 1654 xfce4-places-plugin_1.2.0-1.dsc
 d6fc96fbdcf47c91561e4ca5e4e676df433d400b 406108 
xfce4-places-plugin_1.2.0.orig.tar.gz
 7186aa0d84a114f394bcc1a31641ae3799b58e2b 2971 
xfce4-places-plugin_1.2.0-1.diff.gz
 04514a3039368f0344c0923c36293910ad59ae42 53492 
xfce4-places-plugin_1.2.0-1_amd64.deb
Checksums-Sha256: 
 3fd63596b7ab7c6dd9769f647f73e75367148e7de33cf3c5eb8dc82978151277 1654 
xfce4-places-plugin_1.2.0-1.dsc
 e43092cb9a8fe76e044d28d511f43292eb18edb611daa8029111bc9fd6695299 406108 
xfce4-places-plugin_1.2.0.orig.tar.gz
 485ee12ef1814ab96df0740af9982c2d91c0c121166f092afed86ff8b8d9dbc4 2971 
xfce4-places-plugin_1.2.0-1.diff.gz
 303fac75bf15ac66b4a565633c7910db17c7d3364f13cb0f6620691e87d9d9c5 53492 
xfce4-places-plugin_1.2.0-1_amd64.deb
Files: 
 771194dcb4a885de78ecedcaca52a849 1654 utils optional 
xfce4-places-plugin_1.2.0-1.dsc
 9f72fffa6c685ae8b76aeeca24934dc1 406108 utils optional 
xfce4-places-plugin_1.2.0.orig.tar.gz
 c3c976cd422e030ffe8499011ca54b65 2971 utils optional 
xfce4-places-plugin_1.2.0-1.diff.gz
 3eab2966472483a0871b1e103be3daf1 53492 utils optional 
xfce4-places-plugin_1.2.0-1_amd64.deb

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

iEYEAREDAAYFAkp24tcACgkQTUTAIMXAW6506wCeMgmUF4z9Cqz0CzjoQ3goRy3B
YjIAoKn2U+coOIdZFlmdQqZRGG1BCrIT
=KSZW
-END PGP SIGNATURE-


Accepted:
xfce4-places-plugin_1.2.0-1.diff.gz
  to pool/main/x/xfce4-places-plugin/xfce4-places-plugin_1.2.0-1.diff.gz
xfce4-places-plugin_1.2.0-1.dsc
  to pool/main/x/xfce4-places-plugin/xfce4-places-plugin_1.2.0-1.dsc
xfce4-places-plugin_1.2.0-1_amd64.deb
  to pool/main/x/xfce4-places-plugin/xfce4-places-plugin_1.2.0-1_amd64.deb
xfce4-places-plugin_1.2.0.orig.tar.gz
  to pool/main/x/xfce4-places-plugin/xfce4-places-plugin_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 xfburn 0.4.2-1 (source amd64)

2009-08-03 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 03 Aug 2009 14:58:59 +0200
Source: xfburn
Binary: xfburn
Architecture: source amd64
Version: 0.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers pkg-xfce-de...@lists.alioth.debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 xfburn - CD-burner application for Xfce Desktop Environment
Changes: 
 xfburn (0.4.2-1) unstable; urgency=low
 .
   [ Evgeni Golov ]
   * Fix Vcs-* fields, they were missing 'trunk' in the path.
 .
   [ Yves-Alexis Perez ]
   * New upstream release.
   * debian/rules:
 - drop deprecated call to dh_desktop.
   * debian/compat bumped to 7.
   * debian/control:
 - update standards version to 3.8.2.
 - bump debhelper build-dep to 7.
Checksums-Sha1: 
 084abeb2f14e6d5c741974e0fb4d0124bace492f 1438 xfburn_0.4.2-1.dsc
 16e47e2df4ad5b3cd0dc2bac41530f9eaf9bd551 958142 xfburn_0.4.2.orig.tar.gz
 73a1cd7ca10cb230bddeeae77733e822a1b27570 2595 xfburn_0.4.2-1.diff.gz
 bb5e977406e49c98c49da314ec36d0fed4aecc63 413822 xfburn_0.4.2-1_amd64.deb
Checksums-Sha256: 
 255b81e765ea86d6d62ca521c18dc7c4ec1963ec892f9d7543774599d3ced8ef 1438 
xfburn_0.4.2-1.dsc
 49fb2948f5a8eb3c693303d3676a63d0628d231db9d6b8138ebd4221b00c98c7 958142 
xfburn_0.4.2.orig.tar.gz
 c6f6fbd0c1d8f69aea399e9afb14f2720ed1d8c48394433344bc85f580c375d9 2595 
xfburn_0.4.2-1.diff.gz
 4262fc0f7f20d02f312ea084e19061dbf6caac218997f8f5ca931aed95d0e674 413822 
xfburn_0.4.2-1_amd64.deb
Files: 
 4325ec4666b2f80122d6a6aee41bc765 1438 x11 optional xfburn_0.4.2-1.dsc
 d68b7683024c66e7acfc29d0e66b7dbe 958142 x11 optional xfburn_0.4.2.orig.tar.gz
 ac15ad498609c46a38a60f77d3a8ee6b 2595 x11 optional xfburn_0.4.2-1.diff.gz
 b7004be9bf369b0b74e8087ce31684e6 413822 x11 optional xfburn_0.4.2-1_amd64.deb

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

iEYEAREDAAYFAkp24DsACgkQTUTAIMXAW65zwgCgoyX/1wgVw00jtyVjTfaQgwI6
O4sAniGwoh0wayFkHw5Ob+6Hk9otcKza
=m75R
-END PGP SIGNATURE-


Accepted:
xfburn_0.4.2-1.diff.gz
  to pool/main/x/xfburn/xfburn_0.4.2-1.diff.gz
xfburn_0.4.2-1.dsc
  to pool/main/x/xfburn/xfburn_0.4.2-1.dsc
xfburn_0.4.2-1_amd64.deb
  to pool/main/x/xfburn/xfburn_0.4.2-1_amd64.deb
xfburn_0.4.2.orig.tar.gz
  to pool/main/x/xfburn/xfburn_0.4.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 ncurses 5.7+20090718-1 (source i386 all)

2009-08-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 14:23:38 +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+20090718-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+20090718-1) unstable; urgency=low
 .
   * Merging upstream version 5.7+20090718.
Checksums-Sha1: 
 26ede6679c6624320da8ede7b2bd25d64d7492fa 1517 ncurses_5.7+20090718-1.dsc
 9683876a0676b4db59e75ccec46fc5a2d9465625 2592229 
ncurses_5.7+20090718.orig.tar.gz
 b4aba4a394a9dba1afd5b38f63bc160bacd2b6f7 40716 ncurses_5.7+20090718-1.diff.gz
 f187a31d4ce7fdec71f9f4131f1088d429a851c9 339666 
libncurses5_5.7+20090718-1_i386.deb
 99567bc7dfbd0128742bed5ca02be60ac37ba8bd 1562128 
libncurses5-dev_5.7+20090718-1_i386.deb
 aee7c49e8847e0aa09d61ecce165810673c06200 1906962 
libncurses5-dbg_5.7+20090718-1_i386.deb
 eca31a805a85ebd6334f4c7b75970b8b031fcb8c 363836 
libncursesw5_5.7+20090718-1_i386.deb
 7ab0c839e85739716c30f82b01febaafa4d36a22 481924 
libncursesw5-dev_5.7+20090718-1_i386.deb
 6b181f8b9d241708577393477c96621ee61227e0 2131784 
libncursesw5-dbg_5.7+20090718-1_i386.deb
 a1cb561fd752e2088fd36b059821e43454b5a1b2 351968 
lib64ncurses5_5.7+20090718-1_i386.deb
 2e125bd3266d042716d372e81a6bcf6b8902b9d3 418984 
lib64ncurses5-dev_5.7+20090718-1_i386.deb
 b26346ea24b7bddb7febdbb9d42e1618ca4aee97 307070 
ncurses-bin_5.7+20090718-1_i386.deb
 f2fe2a4ed9233ee436c581fdf5ebc098fefcfaee 181348 
ncurses-base_5.7+20090718-1_all.deb
 95d95d382f84ee5137bbe4f42a8f9b852ab7b95e 563928 
ncurses-term_5.7+20090718-1_all.deb
Checksums-Sha256: 
 daf0f8b6e888c907ddae6a9204822e2ec1690d865f59ce30077cf46a12bcc546 1517 
ncurses_5.7+20090718-1.dsc
 e514fd7948c5eade350368c602a82bc5eb18581251a06d0283054a4acaf60289 2592229 
ncurses_5.7+20090718.orig.tar.gz
 c71eb55fed89d8f43b6bcb6934789cc9529bb62cc6516f84ef695979796aa920 40716 
ncurses_5.7+20090718-1.diff.gz
 cbd43326633ab1b9b1e9dba6c1678933b64d71d7cd965372a702545863644698 339666 
libncurses5_5.7+20090718-1_i386.deb
 8c4b28b3d9b0c4e5003a38c3282314927f98bcdc44acdf8b7669d6a282639517 1562128 
libncurses5-dev_5.7+20090718-1_i386.deb
 63fc82fa713932f4e9ee2dddce137e1b6ab80d3a542272398da06083af836501 1906962 
libncurses5-dbg_5.7+20090718-1_i386.deb
 1c611c66395d5086a3bae7d87b626fc44aeed108ef58cf10969d0283ed730cc9 363836 
libncursesw5_5.7+20090718-1_i386.deb
 1bdda5eb37038a029deddea5b2dc230724e707dbf99f150aa6c5bb6fa8b1afc8 481924 
libncursesw5-dev_5.7+20090718-1_i386.deb
 3a6985333d1d6fba12c352679682dbc14cb350b9456003c5aeaf0c14fb275609 2131784 
libncursesw5-dbg_5.7+20090718-1_i386.deb
 b4cf9410034f6cf237e31dffe2a6338e5a546e7fd340a87f08cd18e446da4279 351968 
lib64ncurses5_5.7+20090718-1_i386.deb
 283fabb44daa73e595cac08e9492ddd65768dbdaf2cee7ee92be971ba8ee08a3 418984 
lib64ncurses5-dev_5.7+20090718-1_i386.deb
 ce6f1cef215847929e209fa8949a1ef30c1e360dd9cc54bf88e4e150e79cd71c 307070 
ncurses-bin_5.7+20090718-1_i386.deb
 8ee9617f17b64be9397ef96459978d8e0ca6bb5a07fc822932d013b7f416ced0 181348 
ncurses-base_5.7+20090718-1_all.deb
 2545ea0e98ad677bf30f63659c350d447fde7757739b4e409dca97556face1bf 563928 
ncurses-term_5.7+20090718-1_all.deb
Files: 
 a1516de53dd1991dfbb8f84333bf5687 1517 libs standard ncurses_5.7+20090718-1.dsc
 53d5ad5f4b041b805e8d9fdab8c4dc33 2592229 libs standard 
ncurses_5.7+20090718.orig.tar.gz
 d474797cbe377f460038d38652562c11 40716 libs standard 
ncurses_5.7+20090718-1.diff.gz
 bd56bbca3335763ff3d80ee85d715146 339666 libs required 
libncurses5_5.7+20090718-1_i386.deb
 a96a1787461e89b1b3dce245a019ef6a 1562128 libdevel optional 
libncurses5-dev_5.7+20090718-1_i386.deb
 cd3c845220c0210c029bc00a5f312383 1906962 debug extra 
libncurses5-dbg_5.7+20090718-1_i386.deb
 83597e8beaf471055183c587f9735a4a 363836 libs important 

Accepted libclass-dbi-sweet-perl 0.09-3 (source all)

2009-08-03 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 16:45:24 +0300
Source: libclass-dbi-sweet-perl
Binary: libclass-dbi-sweet-perl
Architecture: source all
Version: 0.09-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 libclass-dbi-sweet-perl - sweeter Class::DBI
Changes: 
 libclass-dbi-sweet-perl (0.09-3) unstable; urgency=low
 .
   * bump debhelper build-dependency to 7.0.8 (due to --with used)
Checksums-Sha1: 
 7edea8e72beed555159fcc8cfe718373b06113e2 1694 
libclass-dbi-sweet-perl_0.09-3.dsc
 b47b1fe6994f0d58e033b7200df5703ee42609aa 2128 
libclass-dbi-sweet-perl_0.09-3.diff.gz
 5525944c481201a9398a9d528ece5b09b3a24560 25560 
libclass-dbi-sweet-perl_0.09-3_all.deb
Checksums-Sha256: 
 ff1313ff64f5bc1d26838d66f5f9dd2d017647ae89e57c1a17fc552850c589fc 1694 
libclass-dbi-sweet-perl_0.09-3.dsc
 87054665d25df3c310323336a3927729e834648845a58212bfb5508cc64daaf9 2128 
libclass-dbi-sweet-perl_0.09-3.diff.gz
 bf49974dfc84464b1a70bb38b73a6ae3423c216ab685a57b0731bffd24e24961 25560 
libclass-dbi-sweet-perl_0.09-3_all.deb
Files: 
 6e9ec113911e3228921118b727151fef 1694 perl optional 
libclass-dbi-sweet-perl_0.09-3.dsc
 bec70856b265490c2c6a8e636fb522e6 2128 perl optional 
libclass-dbi-sweet-perl_0.09-3.diff.gz
 6b209e570be2c887193af7c26e9eabad 25560 perl optional 
libclass-dbi-sweet-perl_0.09-3_all.deb

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

iEYEARECAAYFAkp26owACgkQHqjlqpcl9jsh+wCgpTKxzHSIRCUXqgDgw5qXOxHX
jGIAniWDr1jeDQ6oBSbbuuJ0eq1ACJuQ
=XHjs
-END PGP SIGNATURE-


Accepted:
libclass-dbi-sweet-perl_0.09-3.diff.gz
  to 
pool/main/libc/libclass-dbi-sweet-perl/libclass-dbi-sweet-perl_0.09-3.diff.gz
libclass-dbi-sweet-perl_0.09-3.dsc
  to pool/main/libc/libclass-dbi-sweet-perl/libclass-dbi-sweet-perl_0.09-3.dsc
libclass-dbi-sweet-perl_0.09-3_all.deb
  to 
pool/main/libc/libclass-dbi-sweet-perl/libclass-dbi-sweet-perl_0.09-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 ltsp 5.1.79-1 (source all i386)

2009-08-03 Thread Vagrant Cascadian
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 17:00:32 +0200
Source: ltsp
Binary: ltsp-server ltsp-server-standalone ltsp-client-core ltsp-client 
ltsp-client-builder
Architecture: source all i386
Version: 5.1.79-1
Distribution: unstable
Urgency: low
Maintainer: LTSP Debian/Ubuntu Maintainers 
pkg-ltsp-de...@lists.alioth.debian.org
Changed-By: Vagrant Cascadian vagr...@freegeek.org
Description: 
 ltsp-client - LTSP client environment
 ltsp-client-builder - build an LTSP environment in the installer target (udeb)
 ltsp-client-core - LTSP client environment
 ltsp-server - basic LTSP server environment
 ltsp-server-standalone - complete LTSP server environment
Closes: 480664 537526 537639
Changes: 
 ltsp (5.1.79-1) unstable; urgency=low
 .
   * new upstream version:
 - fixed LSB initscript headers to work with newer insserv
 .
 - work around newer pulseaudio versions, which require an absurd amount of
   ram and attempt to start hal modules we don't need.  also ensure that
   /var/lib/pulse is present and writeable at boot. (Closes: #537526)
 .
 - support cross-architecture builds using statically built qemu (0.11+)
   binaries and binfmt_misc. (Closes: #480664)
 .
 - allow /srv/tftp as an alternative tftp location. (Closes: #537639)
 .
 - change /etc/default/console-setup with the wanted layout so plugging USB
   keyboards will use it instead of falling back to default
 .
 - ensure that NBD root doesn't kill the root filesystem before shutting
   system down.
 .
   * reorder initscript installation order to work with dependency-based init
   * use README.Debian.sound from upstream
   * add example screen.d hook for nodm for local autologin
   * prefer inputattach over joystick, and remove architecture restrictions on
 joystick.
Checksums-Sha1: 
 ee2b562710880fffe1ebf2e0e5dd76931aa7d8ff 1539 ltsp_5.1.79-1.dsc
 14d16308e02630ba4324f9d47dd4a804c1cf8405 347407 ltsp_5.1.79.orig.tar.gz
 c26e112caf82968222bbbe19903ea093f5c76761 71364 ltsp_5.1.79-1.diff.gz
 7859da01e5f194bcd9aa757aee26cbf7d2572d07 120106 ltsp-server_5.1.79-1_all.deb
 217d64b62eb84bfd4aaa1e330360adc76ea2368b 45216 
ltsp-server-standalone_5.1.79-1_all.deb
 190d8b0614110164808eaa32bae76fcaf77ed6df 8468 
ltsp-client-builder_5.1.79-1_all.udeb
 fc80b98ae5a30778913eb09f9e3b54304398bae0 100220 
ltsp-client-core_5.1.79-1_i386.deb
 f4fef3eea2f4729baae8e3decf39832e49d4ad46 44572 ltsp-client_5.1.79-1_i386.deb
Checksums-Sha256: 
 6465e046723c007dce2b0b28845420070e09ef4e29892b17109d598d251d413f 1539 
ltsp_5.1.79-1.dsc
 92b0679ace77074ebeeda2b2cff87bc22944c2b0f4a7563716099867d8413911 347407 
ltsp_5.1.79.orig.tar.gz
 bbd339f8536cc2f4b56da513b67d4df6ea8d9c8757a9794c901211e53b84051c 71364 
ltsp_5.1.79-1.diff.gz
 89509dd1f505c931d29d9b75ff4c5d7ce9a08ad80e220b1f53bc6ba439e086a9 120106 
ltsp-server_5.1.79-1_all.deb
 3c81386a07e47c1f0db7cd7eae26585ddd571fa0535671abeec72947d5422246 45216 
ltsp-server-standalone_5.1.79-1_all.deb
 27ea452826238252acac011da0f2f5ddad93f14181b4813991c79af6202627dc 8468 
ltsp-client-builder_5.1.79-1_all.udeb
 3e9ec7997652760fbd24e9e159e26b358ae4200c525701acb23f405352920e60 100220 
ltsp-client-core_5.1.79-1_i386.deb
 ce338007b644eecb983d4112096ecd07e77a3af99af1fab41ecf691aec3dbcd9 44572 
ltsp-client_5.1.79-1_i386.deb
Files: 
 74e6d9fab4f1b33f84072e5cc64a7970 1539 misc extra ltsp_5.1.79-1.dsc
 0dfbf0a14c1946b7fd62facaf06a4bf1 347407 misc extra ltsp_5.1.79.orig.tar.gz
 3e58b71c9b2e274f80195ad20b488cee 71364 misc extra ltsp_5.1.79-1.diff.gz
 c414a1f7b7665fe8798a658a7f7ce229 120106 misc extra ltsp-server_5.1.79-1_all.deb
 3df827e61cc78c65c495c576e1b231aa 45216 misc extra 
ltsp-server-standalone_5.1.79-1_all.deb
 dc4bc8bc38596f9676a3e6c4e423f85d 8468 debian-installer extra 
ltsp-client-builder_5.1.79-1_all.udeb
 006cf8442a4c0a8f75b5b46f63d56714 100220 misc extra 
ltsp-client-core_5.1.79-1_i386.deb
 9134699f376f4d55181fd72aead8be12 44572 misc extra ltsp-client_5.1.79-1_i386.deb
Package-Type: udeb

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

iEYEARECAAYFAkp2/tIACgkQlPc63BPWGpm+pwCfcaZmzkIKjGOjYhIzlCLF9+im
OgkAn1e3n1BpiofIktolFEdwm2dJYV23
=Dk8L
-END PGP SIGNATURE-


Accepted:
ltsp-client-builder_5.1.79-1_all.udeb
  to pool/main/l/ltsp/ltsp-client-builder_5.1.79-1_all.udeb
ltsp-client-core_5.1.79-1_i386.deb
  to pool/main/l/ltsp/ltsp-client-core_5.1.79-1_i386.deb
ltsp-client_5.1.79-1_i386.deb
  to pool/main/l/ltsp/ltsp-client_5.1.79-1_i386.deb
ltsp-server-standalone_5.1.79-1_all.deb
  to pool/main/l/ltsp/ltsp-server-standalone_5.1.79-1_all.deb
ltsp-server_5.1.79-1_all.deb
  to pool/main/l/ltsp/ltsp-server_5.1.79-1_all.deb
ltsp_5.1.79-1.diff.gz
  to pool/main/l/ltsp/ltsp_5.1.79-1.diff.gz
ltsp_5.1.79-1.dsc
  to pool/main/l/ltsp/ltsp_5.1.79-1.dsc
ltsp_5.1.79.orig.tar.gz
  to pool/main/l/ltsp/ltsp_5.1.79.orig.tar.gz


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

Accepted iso-codes 3.10.2-1 (source all)

2009-08-03 Thread Tobias Quathamer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 16:43:24 +0200
Source: iso-codes
Binary: iso-codes
Architecture: source all
Version: 3.10.2-1
Distribution: unstable
Urgency: low
Maintainer: Tobias Quathamer to...@debian.org
Changed-By: Tobias Quathamer to...@debian.org
Description: 
 iso-codes  - ISO language, territory, currency, script codes and their transla
Closes: 537814
Changes: 
 iso-codes (3.10.2-1) unstable; urgency=low
 .
   * New upstream release. This closes the following bugs from Debian
 BTS:
 - ISO-3166: Russian by Yuri Kozlov. Closes: #537814
Checksums-Sha1: 
 487079bf8c973201311875611f6fd7bd27ac9c87 1271 iso-codes_3.10.2-1.dsc
 40eccf16f1180f803d717f4d9b7cb8df52c38a95 9335663 iso-codes_3.10.2.orig.tar.gz
 3f25cfa383239611f668d6c51e194775ba2d61d2 18709 iso-codes_3.10.2-1.diff.gz
 f3b2f628765ffd6fcf268b2890a50f18a660409f 2341602 iso-codes_3.10.2-1_all.deb
Checksums-Sha256: 
 c3cb37c310ac407d00d0ebf69023db1793d407d58203c39e983870924cf496cd 1271 
iso-codes_3.10.2-1.dsc
 b663da0de896370fa8aa0429782ec1dcf9ba6da9a68b3938a2c07baf7e92bd9a 9335663 
iso-codes_3.10.2.orig.tar.gz
 323a80be3784287ded45bd9acf3561f8b84d03c6967244f293362f81642bd5c8 18709 
iso-codes_3.10.2-1.diff.gz
 f2978355c1af28304355076e4f91e50a787f6b852829467cee13cd6b8ce8115b 2341602 
iso-codes_3.10.2-1_all.deb
Files: 
 ebdc7136f80984567f9f242970916c9a 1271 misc optional iso-codes_3.10.2-1.dsc
 06b93d4aa8fef75ab3e6dd6b9aa1acf3 9335663 misc optional 
iso-codes_3.10.2.orig.tar.gz
 42b2c6e5d4094f10f245600e939f7ea1 18709 misc optional iso-codes_3.10.2-1.diff.gz
 da5e718e742e3c9e66f061c786f86bd9 2341602 misc optional 
iso-codes_3.10.2-1_all.deb

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

iEYEARECAAYFAkp2/WQACgkQ3UXUABXir9apIgCeOchRPsZuKIK1gx6s6dzs7Oqr
grAAn0CJGzflxEpVrUNadt/lnGg/tgnQ
=qS8z
-END PGP SIGNATURE-


Accepted:
iso-codes_3.10.2-1.diff.gz
  to pool/main/i/iso-codes/iso-codes_3.10.2-1.diff.gz
iso-codes_3.10.2-1.dsc
  to pool/main/i/iso-codes/iso-codes_3.10.2-1.dsc
iso-codes_3.10.2-1_all.deb
  to pool/main/i/iso-codes/iso-codes_3.10.2-1_all.deb
iso-codes_3.10.2.orig.tar.gz
  to pool/main/i/iso-codes/iso-codes_3.10.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 cl-kmrcl 1.99-3 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 02 Aug 2009 03:23:22 -0600
Source: cl-kmrcl
Binary: cl-kmrcl
Architecture: source all
Version: 1.99-3
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-kmrcl   - General Utilities for Common Lisp Programs
Changes: 
 cl-kmrcl (1.99-3) unstable; urgency=low
 .
   * debian/control: Added Homepage and Vcs-Git fields
   * debian/watch: new file
Checksums-Sha1: 
 53d18edf17e2efcf8ddd824a201ba4f24675ca22 1020 cl-kmrcl_1.99-3.dsc
 986ab54875cbba04aa2ad45877dcd0b3dbcc66e6 5762 cl-kmrcl_1.99-3.diff.gz
 6a52d2b0a9c9ef7530d6dbc94a7cf6b7c35ed0bc 53092 cl-kmrcl_1.99-3_all.deb
Checksums-Sha256: 
 493afd62e9922c207dfd35c44dcce6091e66cc20dea100b69329c141a20aee40 1020 
cl-kmrcl_1.99-3.dsc
 6e415a45b12ef6702f6e7b278bcd3896a47ea887f4e36fccd88bdb2c7215ed51 5762 
cl-kmrcl_1.99-3.diff.gz
 cfbfc0fef0d991005c3f1a9666be58dd887d5f3483c7929d8b24c0255a025091 53092 
cl-kmrcl_1.99-3_all.deb
Files: 
 ca9da851f9f4a4598aa9b390577bd3f3 1020 lisp optional cl-kmrcl_1.99-3.dsc
 4c223473450c4733d97bd739f31b0136 5762 lisp optional cl-kmrcl_1.99-3.diff.gz
 a697d3df61f733b3f951267007c5beb6 53092 lisp optional cl-kmrcl_1.99-3_all.deb

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

iEYEARECAAYFAkp2/IsACgkQES7N8sSjgj70lQCfTT0BB0UfD9urriyyJBcVJ/5A
9uMAni3eHOmbD7T0Ry57Z6Qf/ta95HUr
=gaE0
-END PGP SIGNATURE-


Accepted:
cl-kmrcl_1.99-3.diff.gz
  to pool/main/c/cl-kmrcl/cl-kmrcl_1.99-3.diff.gz
cl-kmrcl_1.99-3.dsc
  to pool/main/c/cl-kmrcl/cl-kmrcl_1.99-3.dsc
cl-kmrcl_1.99-3_all.deb
  to pool/main/c/cl-kmrcl/cl-kmrcl_1.99-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 ispell 3.1.20.0-5 (source i386)

2009-08-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 16:34:42 +0200
Source: ispell
Binary: ispell iamerican ibritish
Architecture: source i386
Version: 3.1.20.0-5
Distribution: unstable
Urgency: medium
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 iamerican  - An American English dictionary for ispell
 ibritish   - A British English dictionary for ispell
 ispell - International Ispell (an interactive spelling corrector)
Closes: 416572 456537 487732 510946
Changes: 
 ispell (3.1.20.0-5) unstable; urgency=medium
 .
   * New maintainer (Closes: #487732).
   * Revert direct upstream modifications.
   * Using quilt rather than homebrew patch management.
   * Using correct rfc-2822 date formats in changelog.
   * Removing useless whitespaces at EOL and EOF.
   * Updating package to debhelper 7.
   * Updating package to standards version 3.8.2.
   * Cleaning up build-depends.
   * Adding homepage field in control.
   * Adding vcs fields in control.
   * Cleaning up depends.
   * Rewrapping package long-descriptions.
   * Unifying all copyright files into one and rewriting it in machine-
 interpretable format.
   * Moving local debian additions to dedicated subdirectory.
   * Using dedicated debhelper manpages file to install manpages.
   * Symlinking manpage alias rather than including a redirecting stub.
   * Updating debhelper links files.
   * Updating doc-base file.
   * Updating docs file.
   * Using dedicated debhelper install files to install files.
   * Minimizing rules file.
   * Not calling update-alternatives with absolute path in update-ispell-
 dictionary (Closes: #510946).
   * Downgrading package to priority optional (Closes: #416572).
   * Downgrading dictionaries recommends to suggests (Closes: #456537).
   * Removing todo entry about new debhelper.
Checksums-Sha1: 
 ba19250ae610f91cc9c1de2ab2eb4d2433f11301 1240 ispell_3.1.20.0-5.dsc
 97106963effbd343389b3251739eec8310f91be5 38946 ispell_3.1.20.0-5.diff.gz
 9c2fc7b4a54ca65102d477b06ed1f45ed77ce896 163556 ispell_3.1.20.0-5_i386.deb
 3de02175e22f52efccb0d0db40b73f34784347ff 425298 iamerican_3.1.20.0-5_i386.deb
 0cbee5963e3cfd808cc24cb0b974c737455248b2 425842 ibritish_3.1.20.0-5_i386.deb
Checksums-Sha256: 
 a5455e9a1121a878559f6166c57851784e222404e84101a3cfd45a5051bbad60 1240 
ispell_3.1.20.0-5.dsc
 d2d656cf24e13e55e82eedaa57935a9858e4e509cfd9076dfc761d3b7dbc4d18 38946 
ispell_3.1.20.0-5.diff.gz
 171075ac3c8f5693769a23f2ad1b871dab9674d591bb7de70253effeb568b8b2 163556 
ispell_3.1.20.0-5_i386.deb
 91b15a4bb58b5cf1a7689078e7aaa2405fdabfb04ab9b9e705512bd85828bf25 425298 
iamerican_3.1.20.0-5_i386.deb
 eb47b0e8079c169f161959fb0b2b3545baa00d863dc29e147e645b0ce3a375d8 425842 
ibritish_3.1.20.0-5_i386.deb
Files: 
 6ca779ac06944c094b4a2588e34d5563 1240 text optional ispell_3.1.20.0-5.dsc
 8d5ab47a918461f0baf9687e6fb7117d 38946 text optional ispell_3.1.20.0-5.diff.gz
 085a0b4abcf8196a9f3cd9d6ba615bdc 163556 text optional 
ispell_3.1.20.0-5_i386.deb
 9066722e41c7971b5c6515db75856c99 425298 text optional 
iamerican_3.1.20.0-5_i386.deb
 f9fa376fee601c67b5eb883b6430c66f 425842 text optional 
ibritish_3.1.20.0-5_i386.deb

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

iEYEARECAAYFAkp29ckACgkQ+C5cwEsrK54FlgCg0fdbPxMycy49aew//KwhpKkd
nvUAn3In1dK9RVam/Gt9uuqJKkfTSV5J
=vN4m
-END PGP SIGNATURE-


Accepted:
iamerican_3.1.20.0-5_i386.deb
  to pool/main/i/ispell/iamerican_3.1.20.0-5_i386.deb
ibritish_3.1.20.0-5_i386.deb
  to pool/main/i/ispell/ibritish_3.1.20.0-5_i386.deb
ispell_3.1.20.0-5.diff.gz
  to pool/main/i/ispell/ispell_3.1.20.0-5.diff.gz
ispell_3.1.20.0-5.dsc
  to pool/main/i/ispell/ispell_3.1.20.0-5.dsc
ispell_3.1.20.0-5_i386.deb
  to pool/main/i/ispell/ispell_3.1.20.0-5_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 cacao-source 0.99.4-2 (source all)

2009-08-03 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 15:52:20 +0200
Source: cacao-source
Binary: cacao-source
Architecture: source all
Version: 0.99.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 cacao-source - Source for CACAO, a Java virtual machine
Changes: 
 cacao-source (0.99.4-2) unstable; urgency=low
 .
   * Rename the source package to cacao-source.
   * Build the cacao-source binary package only, which is used by other
 source packages to build a VM based on cacao.
   * Allows independent builds of all packages using a CACAO VM.
Checksums-Sha1: 
 ec0b31a60b3c0b702357268748131ba4164846a1 1277 cacao-source_0.99.4-2.dsc
 d9d159f8f905a9fa53ea7ae0f50a442dbd6b5e84 3917411 
cacao-source_0.99.4.orig.tar.gz
 f558faff55deb88db14f668de556b7ee48c2ddff 8149 cacao-source_0.99.4-2.diff.gz
 7652d0a66e9d6ff102ffe3afbc7462bc058cb493 2865910 cacao-source_0.99.4-2_all.deb
Checksums-Sha256: 
 6835c713bba59e4f9b164ed83c7b580de2ba5164fe090002aaf2ddcaccf4d2a6 1277 
cacao-source_0.99.4-2.dsc
 c6090c1d2ed3c60acda0076b62563598267be8dab270ce49ee1035002a2510cf 3917411 
cacao-source_0.99.4.orig.tar.gz
 fd1374a7ad627d113df54a6c0cee7e61ca2629b4281065bf2b9f042ade695f21 8149 
cacao-source_0.99.4-2.diff.gz
 4312a1b0730df6a444775a855096b411e71c2b0c70cbc8641da6fea2c528d654 2865910 
cacao-source_0.99.4-2_all.deb
Files: 
 9339404d47e9c1787faf34c18d6f765a 1277 java optional cacao-source_0.99.4-2.dsc
 c5e6525c5212ddbb6026e4a7cde37ca6 3917411 java optional 
cacao-source_0.99.4.orig.tar.gz
 eaab0c594eed22f8d7d5609a37401a84 8149 java optional 
cacao-source_0.99.4-2.diff.gz
 5e6dad6a84243bb3a14bdfad7eeabced 2865910 java extra 
cacao-source_0.99.4-2_all.deb

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

iEUEARECAAYFAkp283wACgkQStlRaw+TLJzx2gCYuGIjdpZrs5SRjWaZxWSl9LhE
KwCgsaaEP0e344z8dN5F49oBTiU7FNw=
=pbAD
-END PGP SIGNATURE-


Accepted:
cacao-source_0.99.4-2.diff.gz
  to pool/main/c/cacao-source/cacao-source_0.99.4-2.diff.gz
cacao-source_0.99.4-2.dsc
  to pool/main/c/cacao-source/cacao-source_0.99.4-2.dsc
cacao-source_0.99.4-2_all.deb
  to pool/main/c/cacao-source/cacao-source_0.99.4-2_all.deb
cacao-source_0.99.4.orig.tar.gz
  to pool/main/c/cacao-source/cacao-source_0.99.4.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 bzr-svn 0.6.4-1 (source all)

2009-08-03 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 15:48:15 +0200
Source: bzr-svn
Binary: bzr-svn
Architecture: source all
Version: 0.6.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-svn- Bazaar plugin providing Subversion integration
Changes: 
 bzr-svn (0.6.4-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 8a8c55c5008b8e543d4839ab97f8809210484b9c 1458 bzr-svn_0.6.4-1.dsc
 312805a20a937c24975ad96a9c3aad8d7e82884a 249143 bzr-svn_0.6.4.orig.tar.gz
 0d709b4ddda645541d89e48bdca0ea38992616c3 4533 bzr-svn_0.6.4-1.diff.gz
 ba140c661d42de6eb3e7be25d9cb3502b6cce96f 241870 bzr-svn_0.6.4-1_all.deb
Checksums-Sha256: 
 f77c9ab822d7f72d2a61ef69cba47d7bd065ec24ad5fbf7bbf687b368a5dac4b 1458 
bzr-svn_0.6.4-1.dsc
 429b89666a6777848dff7b3df43399244319c793f4737200fa41beb284b926b6 249143 
bzr-svn_0.6.4.orig.tar.gz
 7da8aac1cf10281dadc4b58d0e22e109ce326a3a82d0a4969a51807f2544fef8 4533 
bzr-svn_0.6.4-1.diff.gz
 17e3b77f7274de3a3ba461b2b447fe237140e76c6fa62f776e08c26aa8d9d52f 241870 
bzr-svn_0.6.4-1_all.deb
Files: 
 2a7907ee4cfaf241af4db00c506cc339 1458 vcs optional bzr-svn_0.6.4-1.dsc
 12aa3bc6a52f1585a40dea6879f42fa2 249143 vcs optional bzr-svn_0.6.4.orig.tar.gz
 99589b3de734d63f89a4b00d0b271a90 4533 vcs optional bzr-svn_0.6.4-1.diff.gz
 f7b7a1117b6fec791f75af2446929863 241870 vcs optional bzr-svn_0.6.4-1_all.deb

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

iJwEAQECAAYFAkp27YEACgkQDLQl4QYPZuV0cwQAmH9iVHtpzoLBiF/kwyPzssBg
VIpCunOoQrgJoHMe6dsh1RPm0GXDJS/Lu3SrCCvBkxnNFTyXVaL5VpT1CjqkgjWf
7b5uATDugauWFLTe5EKULGYxYnBehxC0BaofbhZw/DM2mhG+ZKOpo8er/RLW+09O
ALi8G54Gmk4A4X3M5S0=
=+KYd
-END PGP SIGNATURE-


Accepted:
bzr-svn_0.6.4-1.diff.gz
  to pool/main/b/bzr-svn/bzr-svn_0.6.4-1.diff.gz
bzr-svn_0.6.4-1.dsc
  to pool/main/b/bzr-svn/bzr-svn_0.6.4-1.dsc
bzr-svn_0.6.4-1_all.deb
  to pool/main/b/bzr-svn/bzr-svn_0.6.4-1_all.deb
bzr-svn_0.6.4.orig.tar.gz
  to pool/main/b/bzr-svn/bzr-svn_0.6.4.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 rtorrent 0.8.5-1 (source amd64)

2009-08-03 Thread Rogério Brito
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 13:18:04 -0300
Source: rtorrent
Binary: rtorrent
Architecture: source amd64
Version: 0.8.5-1
Distribution: unstable
Urgency: low
Maintainer: Rogério Brito rbr...@ime.usp.br
Changed-By: Rogério Brito rbr...@ime.usp.br
Description: 
 rtorrent   - ncurses BitTorrent client based on LibTorrent from rakshasa
Changes: 
 rtorrent (0.8.5-1) unstable; urgency=low
 .
   [ Dmitry E. Oboukhov ]
   * New upstream version.
   * Upstream already contains fix-xmlrpc-utf8.patch, it has been removed.
 .
   [ Rogério Brito ]
   * Update to unstable. Thanks to Dmitry.
   * debian/control:
 + update Standards-Version to 3.8.2 (no changes required).
Checksums-Sha1: 
 99d1b37d99dd379624505c7ce4ff1c843adbe133 1345 rtorrent_0.8.5-1.dsc
 ae29b214749c4bf9513e78978169596f0456f7e9 510060 rtorrent_0.8.5.orig.tar.gz
 2a8388175f39a8cf421280929f521f77a7a531b2 9593 rtorrent_0.8.5-1.diff.gz
 845f161a353218ecb362fef6e3a46a85328f2996 427370 rtorrent_0.8.5-1_amd64.deb
Checksums-Sha256: 
 bdcf5b678e47f391e8f465560928c819815f88a4c377d4af1fe29733b2821896 1345 
rtorrent_0.8.5-1.dsc
 d78453c52282a33ed5f1819d588e9ad9e018a8c438e2dbca85de2889e58e8bd6 510060 
rtorrent_0.8.5.orig.tar.gz
 bf35236f4a2d172c805b35036cc94cebe4d4ed555f43e23264c90ede88f548e8 9593 
rtorrent_0.8.5-1.diff.gz
 6cc87c37df9a88f25c965bb9ae9f457d5a5ec1c0777dd64dbb82b9365e32c73d 427370 
rtorrent_0.8.5-1_amd64.deb
Files: 
 1c287252d2c6f5cc9e1146e44eb26efa 1345 net extra rtorrent_0.8.5-1.dsc
 069160cf8d78aa8af8be350116ce79d7 510060 net extra rtorrent_0.8.5.orig.tar.gz
 0db70c24fa7e0397fda1f204b078 9593 net extra rtorrent_0.8.5-1.diff.gz
 50e88d9caf4c7d9cf8f9a82817e04a7c 427370 net extra rtorrent_0.8.5-1_amd64.deb

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

iEYEARECAAYFAkp3EK4ACgkQCFqbMnwsrrhP/gCgrsNlQ4jQ65UL43MPpeHq3sF6
TbgAnRKAAe8sNgpCnVGkcHJJjvEhI5Ff
=IlYL
-END PGP SIGNATURE-


Accepted:
rtorrent_0.8.5-1.diff.gz
  to pool/main/r/rtorrent/rtorrent_0.8.5-1.diff.gz
rtorrent_0.8.5-1.dsc
  to pool/main/r/rtorrent/rtorrent_0.8.5-1.dsc
rtorrent_0.8.5-1_amd64.deb
  to pool/main/r/rtorrent/rtorrent_0.8.5-1_amd64.deb
rtorrent_0.8.5.orig.tar.gz
  to pool/main/r/rtorrent/rtorrent_0.8.5.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 gmp 2:4.3.1+dfsg-3 (source all amd64)

2009-08-03 Thread Steve M. Robbins
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 11:09:08 -0500
Source: gmp
Binary: libgmp3c2 libgmpxx4ldbl libgmp3-dev lib32gmp3 lib32gmpxx4 lib32gmp3-dev 
lib64gmp3 lib64gmpxx4 lib64gmp3-dev libgmp3-doc
Architecture: source all amd64
Version: 2:4.3.1+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Debian Scientific Computing Team 
pkg-scicomp-de...@lists.alioth.debian.org
Changed-By: Steve M. Robbins s...@debian.org
Description: 
 lib32gmp3  - Multiprecision arithmetic library (32bit)
 lib32gmp3-dev - Multiprecision arithmetic library developers tools (32bit)
 lib32gmpxx4 - Multiprecision arithmetic library (C++ bindings, 32bit)
 lib64gmp3  - Multiprecision arithmetic library (64bit library)
 lib64gmp3-dev - Multiprecision arithmetic library developers tools (64bit)
 lib64gmpxx4 - Multiprecision arithmetic library (C++ bindings, 64bit)
 libgmp3-dev - Multiprecision arithmetic library developers tools
 libgmp3-doc - Multiprecision arithmetic library example code
 libgmp3c2  - Multiprecision arithmetic library
 libgmpxx4ldbl - Multiprecision arithmetic library (C++ bindings)
Closes: 533849
Changes: 
 gmp (2:4.3.1+dfsg-3) unstable; urgency=low
 .
   * rules: On amd64, install 32-bit libs in /usr/lib32.  Closes: #533849.
   * control: Conflict with libc6-i386 versions prior to change removing
 /emul/ia32-linux/lib; see #533849 for details.
Checksums-Sha1: 
 0b33c3b8b0b565c3aef60b77b1c138f0e389ec90 1429 gmp_4.3.1+dfsg-3.dsc
 ba65f55d90acf6cc9a432d7a2f8e60ca09948a1d 16152 gmp_4.3.1+dfsg-3.diff.gz
 5fc73697e4c9f2fa53d13a557ab13ecc3b2a30a4 148272 
libgmp3-doc_4.3.1+dfsg-3_all.deb
 c9f5a7e50f64286134acfeef4e0380e4b8ff6a75 307486 
libgmp3c2_4.3.1+dfsg-3_amd64.deb
 ed4ba2256e6decc53ef90f2a51dd55c8770e6626 18762 
libgmpxx4ldbl_4.3.1+dfsg-3_amd64.deb
 9148fbfc948fa82fbbd0dd4d01100fdce24f8e6f 661494 
libgmp3-dev_4.3.1+dfsg-3_amd64.deb
 de60e608b6284308640ea352505b7da1739bc2ae 253816 
lib32gmp3_4.3.1+dfsg-3_amd64.deb
 c854c799d78c9642694bdd2a7b28ad15a703babb 18264 
lib32gmpxx4_4.3.1+dfsg-3_amd64.deb
 8efd93139abd7c0b92cec5ab597b0754e30d002f 328380 
lib32gmp3-dev_4.3.1+dfsg-3_amd64.deb
Checksums-Sha256: 
 c4e5de82e353ff8953e183a420012d7099b172a0d767315bc9c035a588ac3e3a 1429 
gmp_4.3.1+dfsg-3.dsc
 aec5a23fe1b453f757e2c2a0f81a15064489e9a091b189990b9d54c75d8c1b24 16152 
gmp_4.3.1+dfsg-3.diff.gz
 ffdc51c43c6af8d9e3d000270852891bff3134030141af44c095c2dd32d86dec 148272 
libgmp3-doc_4.3.1+dfsg-3_all.deb
 cd35553244d3b015d028d06dd31daa89acacc9d37ccd7272781d9618911a1431 307486 
libgmp3c2_4.3.1+dfsg-3_amd64.deb
 992bf63f41d9d0036baccc0ae0b506d6caab07b23312b62563aa14a924cf6800 18762 
libgmpxx4ldbl_4.3.1+dfsg-3_amd64.deb
 9df0e492eb00336534d9e2ad89983cf59678efc8d78bba3198d5ce567cabee16 661494 
libgmp3-dev_4.3.1+dfsg-3_amd64.deb
 c829c4b4db9f0319b317dd0c0a160fb21da6a256f645f351ce5a912762ac 253816 
lib32gmp3_4.3.1+dfsg-3_amd64.deb
 d3864791d2d57c05e16ceabac02f89fa343e9d973a42e060ff6a5112db9f3d81 18264 
lib32gmpxx4_4.3.1+dfsg-3_amd64.deb
 4147170842e3acdc13ce2d796ab24421ff8c9822656334cd5db694e0e2303184 328380 
lib32gmp3-dev_4.3.1+dfsg-3_amd64.deb
Files: 
 6ba3fc20465aa8465ac2cc0da8b321d4 1429 libs optional gmp_4.3.1+dfsg-3.dsc
 c9aca0f45b51b08bf1f69f1841dcc383 16152 libs optional gmp_4.3.1+dfsg-3.diff.gz
 a6c6fb3cdf77452f0450181108596bd9 148272 doc optional 
libgmp3-doc_4.3.1+dfsg-3_all.deb
 d28b79b1281b7e01a2ad3271bdce1863 307486 libs optional 
libgmp3c2_4.3.1+dfsg-3_amd64.deb
 e5be895445d91bca369a8a84c76c2d76 18762 libs optional 
libgmpxx4ldbl_4.3.1+dfsg-3_amd64.deb
 ae5994184a41b5374e93f4110c8a4733 661494 libdevel optional 
libgmp3-dev_4.3.1+dfsg-3_amd64.deb
 a9a10f035ebfd61812d8783df1cba10f 253816 libs optional 
lib32gmp3_4.3.1+dfsg-3_amd64.deb
 4702dde1467a76f6db6b76efb918a00d 18264 libs optional 
lib32gmpxx4_4.3.1+dfsg-3_amd64.deb
 3ad2e1bb4594779f5b3bcb59a670ca52 328380 libdevel optional 
lib32gmp3-dev_4.3.1+dfsg-3_amd64.deb

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

iD8DBQFKdw+30i2bPSHbMcURAhHvAJ4o0hLEvOwnY0uniEzeZlo6giVy+ACfc0X/
g2e8GtLtaN8KkvKQCPqmHPE=
=MBs8
-END PGP SIGNATURE-


Accepted:
gmp_4.3.1+dfsg-3.diff.gz
  to pool/main/g/gmp/gmp_4.3.1+dfsg-3.diff.gz
gmp_4.3.1+dfsg-3.dsc
  to pool/main/g/gmp/gmp_4.3.1+dfsg-3.dsc
lib32gmp3-dev_4.3.1+dfsg-3_amd64.deb
  to pool/main/g/gmp/lib32gmp3-dev_4.3.1+dfsg-3_amd64.deb
lib32gmp3_4.3.1+dfsg-3_amd64.deb
  to pool/main/g/gmp/lib32gmp3_4.3.1+dfsg-3_amd64.deb
lib32gmpxx4_4.3.1+dfsg-3_amd64.deb
  to pool/main/g/gmp/lib32gmpxx4_4.3.1+dfsg-3_amd64.deb
libgmp3-dev_4.3.1+dfsg-3_amd64.deb
  to pool/main/g/gmp/libgmp3-dev_4.3.1+dfsg-3_amd64.deb
libgmp3-doc_4.3.1+dfsg-3_all.deb
  to pool/main/g/gmp/libgmp3-doc_4.3.1+dfsg-3_all.deb
libgmp3c2_4.3.1+dfsg-3_amd64.deb
  to pool/main/g/gmp/libgmp3c2_4.3.1+dfsg-3_amd64.deb
libgmpxx4ldbl_4.3.1+dfsg-3_amd64.deb
  to pool/main/g/gmp/libgmpxx4ldbl_4.3.1+dfsg-3_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of 

Accepted cl-base64 3.3.3-2 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 10:31:33 -0600
Source: cl-base64
Binary: cl-base64
Architecture: source all
Version: 3.3.3-2
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-base64  - Common Lisp package to encode and decode base64 with URI support
Changes: 
 cl-base64 (3.3.3-2) unstable; urgency=low
 .
   * Convert installation to dh-lisp
   * control: Add Vcs-Browser field
Checksums-Sha1: 
 1ca35dd78c69400747c799e2dab26bb006cad786 1117 cl-base64_3.3.3-2.dsc
 bd724b0c7a10a6b9996e8d47c5cb722ca9e5bb59 2963 cl-base64_3.3.3-2.diff.gz
 48e05d2a954b95c37dab9265227cdf3bb334ee87 9372 cl-base64_3.3.3-2_all.deb
Checksums-Sha256: 
 a19405e839a947844a889d343cc5d2b73cde8ea9b4c7318a3874544c38fb3b1c 1117 
cl-base64_3.3.3-2.dsc
 7f04aaf06818c45941f703a0afc34b596271394effcb3dbe5e011a39583fcba7 2963 
cl-base64_3.3.3-2.diff.gz
 aba6e816dcf0d8d99b7e652202bc457980d5ca856c1bb56b3eaa3de4f0415357 9372 
cl-base64_3.3.3-2_all.deb
Files: 
 7192600840c078859d7a0cc2fcb114b8 1117 lisp optional cl-base64_3.3.3-2.dsc
 ad855bec313a8da7f032c3dc05c43c5d 2963 lisp optional cl-base64_3.3.3-2.diff.gz
 c493cfcf373f5843d38783de4bfafe00 9372 lisp optional cl-base64_3.3.3-2_all.deb

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

iEYEARECAAYFAkp3Eo8ACgkQES7N8sSjgj5SIgCfVX11rHmB4bw5HAgoxfftdXyL
I38An3celVvlAwck0JFtEdyh4eYv2VS5
=SRy3
-END PGP SIGNATURE-


Accepted:
cl-base64_3.3.3-2.diff.gz
  to pool/main/c/cl-base64/cl-base64_3.3.3-2.diff.gz
cl-base64_3.3.3-2.dsc
  to pool/main/c/cl-base64/cl-base64_3.3.3-2.dsc
cl-base64_3.3.3-2_all.deb
  to pool/main/c/cl-base64/cl-base64_3.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 bzr-cvsps-import 0.0.1~bzr63-2 (source all)

2009-08-03 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 30 Jul 2009 20:36:25 +0200
Source: bzr-cvsps-import
Binary: bzr-cvsps-import
Architecture: source all
Version: 0.0.1~bzr63-2
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-cvsps-import - CVS to Bazaar importer
Changes: 
 bzr-cvsps-import (0.0.1~bzr63-2) unstable; urgency=low
 .
   * Bump standards version to 3.8.2.
   * Add missing misc:Depends.
   * Use my Debian address.
   * Move to vcs section.
Checksums-Sha1: 
 5275e0797d0822faa698d074d3a95c55f71c3d1b 1489 
bzr-cvsps-import_0.0.1~bzr63-2.dsc
 14cf93c5af6491ba9b597c5c4c2f79cc76255e09 1831 
bzr-cvsps-import_0.0.1~bzr63-2.diff.gz
 cdd2533038d41b408cf4b895c82880f9a069cd29 31706 
bzr-cvsps-import_0.0.1~bzr63-2_all.deb
Checksums-Sha256: 
 28a794794aa0bad8237ca8aaab2e44a57749c6a36821dcc02204557cdc318a7e 1489 
bzr-cvsps-import_0.0.1~bzr63-2.dsc
 753460ca245025fdc3562b869829098a74309b86331ab308cd89cf71c33d9bcb 1831 
bzr-cvsps-import_0.0.1~bzr63-2.diff.gz
 cc58c9f2572962d8b6929f2f3c57c469fc88436a91388b8247e08ee5878a008a 31706 
bzr-cvsps-import_0.0.1~bzr63-2_all.deb
Files: 
 2dbe28d0435677dc6bba96184263b480 1489 vcs optional 
bzr-cvsps-import_0.0.1~bzr63-2.dsc
 3d5f39bf9f527a5b6d9b2ceba11e3a73 1831 vcs optional 
bzr-cvsps-import_0.0.1~bzr63-2.diff.gz
 26ec9a9a19505931a1c2bfc012c3cae7 31706 vcs optional 
bzr-cvsps-import_0.0.1~bzr63-2_all.deb

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

iJwEAQECAAYFAkp3FdsACgkQDLQl4QYPZuVgEAP/UUTV6lJ7gXlBQh68tEbsBbS2
Y+0w3N1KEEyPS2cUYdJtKMiNDx1/PQqaggPDqCmme3IoLNUfg/ar6UAfxGnm1Y/P
pBqmyfPVTpv3K8B7NC9ZkO3SG0dHh1XKoeVXJtKXfRN71ZtBdDtaAv8CPswIp9hy
SETIUygHP1iWoIAKTKU=
=EB2m
-END PGP SIGNATURE-


Accepted:
bzr-cvsps-import_0.0.1~bzr63-2.diff.gz
  to pool/main/b/bzr-cvsps-import/bzr-cvsps-import_0.0.1~bzr63-2.diff.gz
bzr-cvsps-import_0.0.1~bzr63-2.dsc
  to pool/main/b/bzr-cvsps-import/bzr-cvsps-import_0.0.1~bzr63-2.dsc
bzr-cvsps-import_0.0.1~bzr63-2_all.deb
  to pool/main/b/bzr-cvsps-import/bzr-cvsps-import_0.0.1~bzr63-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 cl-modlisp 0.6-5 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 10:47:31 -0600
Source: cl-modlisp
Binary: cl-modlisp
Architecture: source all
Version: 0.6-5
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-modlisp - Common Lisp interface to the Apache mod-lisp module
Changes: 
 cl-modlisp (0.6-5) unstable; urgency=low
 .
   * Convert to dh-lisp
   * control: Add Vcs-Browser field
Checksums-Sha1: 
 92f5d40010a357159010b7022e46ecbe253c9068 1072 cl-modlisp_0.6-5.dsc
 c02b9b99498c150f37103f2a0c05abf0a910978d 2314 cl-modlisp_0.6-5.diff.gz
 590018665830162b22948bf94ac083743a38efdc 10202 cl-modlisp_0.6-5_all.deb
Checksums-Sha256: 
 ec3834badcc8af8fc1eaf0457063cdcc03ea94fc00e54728dbb37a71d9339585 1072 
cl-modlisp_0.6-5.dsc
 e7b7abcacffed50c8c190330ef08d3cf7230e58612ea2d98f61ad37a3a731b7b 2314 
cl-modlisp_0.6-5.diff.gz
 9190783768f59678918475341882240495b644e429fe7de8ae3633058531d2e3 10202 
cl-modlisp_0.6-5_all.deb
Files: 
 a30761c8fcbe1a725466ea9b725db0e4 1072 lisp optional cl-modlisp_0.6-5.dsc
 7ecdd0a785a63a4ac8a4a7e60ecc98c9 2314 lisp optional cl-modlisp_0.6-5.diff.gz
 9b2b8c89b526d1c394fbe5cd7baf05e4 10202 lisp optional cl-modlisp_0.6-5_all.deb

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

iEYEARECAAYFAkp3FSAACgkQES7N8sSjgj4fWACfTdJhDeq+9tz/SJSfj1XivT8R
WBgAnAsiuGqvzf1h4PW7qXcLxhlASiu5
=bup9
-END PGP SIGNATURE-


Accepted:
cl-modlisp_0.6-5.diff.gz
  to pool/main/c/cl-modlisp/cl-modlisp_0.6-5.diff.gz
cl-modlisp_0.6-5.dsc
  to pool/main/c/cl-modlisp/cl-modlisp_0.6-5.dsc
cl-modlisp_0.6-5_all.deb
  to pool/main/c/cl-modlisp/cl-modlisp_0.6-5_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 cl-photo 0.14-3 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 10:56:03 -0600
Source: cl-photo
Binary: cl-photo
Architecture: source all
Version: 0.14-3
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-photo   - photographic calculator in Common Lisp
Changes: 
 cl-photo (0.14-3) unstable; urgency=low
 .
   * Convert to dh-lisp
   * control: Add Vcs-Browser field
Checksums-Sha1: 
 002cadd4690e1538464671c419ed2bcb93842f8d 1102 cl-photo_0.14-3.dsc
 f5c585dfebb3204601a689b84b43270e1ed6ff4e 1907 cl-photo_0.14-3.diff.gz
 b0e6fbb103d1648243322a9cf596f2a06df2a38c 12646 cl-photo_0.14-3_all.deb
Checksums-Sha256: 
 2d91821965500ad99638cc351d94d54f47b7e3821ab7bee55fd1b8627068ff0c 1102 
cl-photo_0.14-3.dsc
 e709c23c4a854217d9497afa1caefac6e793b7bd047ef1a2940d25340e43c3b4 1907 
cl-photo_0.14-3.diff.gz
 e90de0c79beb50bff4a92f1736f62f3c463142584d88d3e8518e8fdeed69bfe1 12646 
cl-photo_0.14-3_all.deb
Files: 
 e8f6017f5438da4d89ba0d8597751a24 1102 lisp optional cl-photo_0.14-3.dsc
 abf527df197f06c307500b0559e3eb98 1907 lisp optional cl-photo_0.14-3.diff.gz
 e108a9fee12c74fee97df70f185d31b6 12646 lisp optional cl-photo_0.14-3_all.deb

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

iEYEARECAAYFAkp3FtcACgkQES7N8sSjgj7F+wCcD4MQus2+1UEp0g1/vzRQMa5Z
7F4An2PQwTzooc+F6Vnv3QwE1bPfQaVZ
=ljIP
-END PGP SIGNATURE-


Accepted:
cl-photo_0.14-3.diff.gz
  to pool/main/c/cl-photo/cl-photo_0.14-3.diff.gz
cl-photo_0.14-3.dsc
  to pool/main/c/cl-photo/cl-photo_0.14-3.dsc
cl-photo_0.14-3_all.deb
  to pool/main/c/cl-photo/cl-photo_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 fam 2.7.0-15 (source all i386)

2009-08-03 Thread Chuan-kai Lin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 10:33:04 -0700
Source: fam
Binary: fam libfam0 libfam0c102 libfam-dev
Architecture: source all i386
Version: 2.7.0-15
Distribution: unstable
Urgency: low
Maintainer: Chuan-kai Lin ck...@debian.org
Changed-By: Chuan-kai Lin ck...@debian.org
Description: 
 fam- File Alteration Monitor
 libfam-dev - Client library to control the FAM daemon - development files
 libfam0- Client library to control the FAM daemon
 libfam0c102 - Dummy package for libfam0
Closes: 400836 537545 539200
Changes: 
 fam (2.7.0-15) unstable; urgency=low
 .
   * Suppress status_of_proc failure message at start
 (Closes: #537545, #539200)
   * Make libfam0 Suggests instead of Recommends fam (Closes: #400836)
Checksums-Sha1: 
 5e2c683e27d8176cb5867954087c8ea9947f5bff 1057 fam_2.7.0-15.dsc
 0f73f1bb5e00b9f6a6e4b29925c48cea3f8b7d8e 27663 fam_2.7.0-15.diff.gz
 64e23c8a3e1605c2491827197087bab4c60ee568 13524 libfam0c102_2.7.0-15_all.deb
 32cc40928217286fab4e700c81c306c6c60a246c 70724 fam_2.7.0-15_i386.deb
 4c1ad8f38d3ecb28aad3cedf66a5be41694894c3 28474 libfam0_2.7.0-15_i386.deb
 8ed73729cce358b494b40f4f32683aef427770f3 38658 libfam-dev_2.7.0-15_i386.deb
Checksums-Sha256: 
 f3391c0f4b1dea593b107d3e9f40d3ff319550e0272f18f4ce236280599e7648 1057 
fam_2.7.0-15.dsc
 37d8f8fb50fb523179f6ed1a3260019dfc0ac26f9bcc3ae9610f4e435a2cccae 27663 
fam_2.7.0-15.diff.gz
 c38ff05f75783967dd314c645f480fb48e2c749f568330d4c2b67a6289d790ed 13524 
libfam0c102_2.7.0-15_all.deb
 6b6da304978bbb70ea7b8d3f0a66f95d1f7a3c2a8f007d18747f266e4d7bc00e 70724 
fam_2.7.0-15_i386.deb
 4adad7ceacb9ea995d2dc7c09488ec4a777daf63a22d76e4dc1593acd74e4e90 28474 
libfam0_2.7.0-15_i386.deb
 2f1d84f9ac32e3ecbe73563cd4fd1ed118762804de9abe1523b89cc9525e7f58 38658 
libfam-dev_2.7.0-15_i386.deb
Files: 
 543bb37f1daece706079c7c5f38e0cd0 1057 admin optional fam_2.7.0-15.dsc
 b7343f40ae0a48fb3c00ca7ac0acd19e 27663 admin optional fam_2.7.0-15.diff.gz
 8a45ab2f797892d48e8e6b535664020b 13524 libs optional 
libfam0c102_2.7.0-15_all.deb
 6081d9961e1723dc938addf013a467b5 70724 admin optional fam_2.7.0-15_i386.deb
 e3d954cd38c2359d6a436ea5b5729590 28474 libs optional libfam0_2.7.0-15_i386.deb
 920402e7bd3dda1f8e2f4e81737100e0 38658 libdevel optional 
libfam-dev_2.7.0-15_i386.deb

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

iEYEARECAAYFAkp3IxwACgkQqq7AEt0PYmjw0gCeIKX8zpFDSzq0Map06aqQV8O8
dzUAni2UFSmtwgwi+WqWWbESvUtuByLt
=rPaz
-END PGP SIGNATURE-


Accepted:
fam_2.7.0-15.diff.gz
  to pool/main/f/fam/fam_2.7.0-15.diff.gz
fam_2.7.0-15.dsc
  to pool/main/f/fam/fam_2.7.0-15.dsc
fam_2.7.0-15_i386.deb
  to pool/main/f/fam/fam_2.7.0-15_i386.deb
libfam-dev_2.7.0-15_i386.deb
  to pool/main/f/fam/libfam-dev_2.7.0-15_i386.deb
libfam0_2.7.0-15_i386.deb
  to pool/main/f/fam/libfam0_2.7.0-15_i386.deb
libfam0c102_2.7.0-15_all.deb
  to pool/main/f/fam/libfam0c102_2.7.0-15_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 reportbug-ng 1.5 (source all)

2009-08-03 Thread Bastian Venthur
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 19:40:31 +0200
Source: reportbug-ng
Binary: reportbug-ng
Architecture: source all
Version: 1.5
Distribution: unstable
Urgency: low
Maintainer: Bastian Venthur vent...@debian.org
Changed-By: Bastian Venthur vent...@debian.org
Description: 
 reportbug-ng - An easy to use alternative to Debian's classic reportbug
Changes: 
 reportbug-ng (1.5) unstable; urgency=low
 .
   * Applied patch from Daniel Schaal:
 - Added Packagecompletion in lineedit
 - Fix for Last Action Column to show the dates again
 - Lineedit now has focus on start
   * Added dependency on python-apt for package completion
Checksums-Sha1: 
 683bf48b34d89b4a88c1ac7b2a1e8a01655f43ec 880 reportbug-ng_1.5.dsc
 c9943b576c348065cfdad57522f011b69d378c59 83390 reportbug-ng_1.5.tar.gz
 1627456f6b077be53f64c9de7f4932cac93ffb80 80402 reportbug-ng_1.5_all.deb
Checksums-Sha256: 
 512d04c03fc613903d3d2bf77c5d5ad0be1c63d059cff9774a7663e455a14f40 880 
reportbug-ng_1.5.dsc
 01a5a2735c468320ede2c87199b862a343491a94c9ac61a61e3059504094a2ca 83390 
reportbug-ng_1.5.tar.gz
 f5da5d33d256cb49949c6fd297241f5e35b34166b97e28274faf83193993cb80 80402 
reportbug-ng_1.5_all.deb
Files: 
 ec2121829b45827e14ab5fb9e0660b25 880 utils optional reportbug-ng_1.5.dsc
 e09f58d011a9fd9ed056c61b4e274f53 83390 utils optional reportbug-ng_1.5.tar.gz
 461630b54aa8a9e00bca257c670a 80402 utils optional reportbug-ng_1.5_all.deb

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

iEYEARECAAYFAkp3JEkACgkQmj66P/Yfc/gEtQCeKtWn2OzYZSIiUxo+w6z8o49M
YCEAoImkMFZNsvqVzuqL7lAxktG/Yj9N
=kocy
-END PGP SIGNATURE-


Accepted:
reportbug-ng_1.5.dsc
  to pool/main/r/reportbug-ng/reportbug-ng_1.5.dsc
reportbug-ng_1.5.tar.gz
  to pool/main/r/reportbug-ng/reportbug-ng_1.5.tar.gz
reportbug-ng_1.5_all.deb
  to pool/main/r/reportbug-ng/reportbug-ng_1.5_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 cflow 1:1.3-1 (source i386)

2009-08-03 Thread Jakub Wilk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 10:18:48 +0200
Source: cflow
Binary: cflow
Architecture: source i386
Version: 1:1.3-1
Distribution: unstable
Urgency: low
Maintainer: Jakub Wilk uba...@users.sf.net
Changed-By: Jakub Wilk uba...@users.sf.net
Description: 
 cflow  - Analyze control flow in C source files
Changes: 
 cflow (1:1.3-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/watch: use the canonical GNU FTP mirror.
   * debian/copyright: update.
   * debian/rules: remove /usr/share/info/dir* after install.
Checksums-Sha1: 
 2a85f54514b052453937729282210022c42d9b98 1661 cflow_1.3-1.dsc
 8cc32e7e75f6b1ecbd90d7699cdd859d9419c28c 759691 cflow_1.3.orig.tar.gz
 c02093adfecb7459ab0241928de467fa6b41e253 6545 cflow_1.3-1.diff.gz
 234aa703fa649debd10021ad695de09cd8be85ee 109854 cflow_1.3-1_i386.deb
Checksums-Sha256: 
 445a222f17c819b83ecbdcae9e82a87354e1c313dc3ec15028c137622f9d1cee 1661 
cflow_1.3-1.dsc
 b031c5fbac78b55a4b14d4ce7035f5d2ce2e81a0430532bb78c28c691c1d3c18 759691 
cflow_1.3.orig.tar.gz
 b0ec18d31e169ae12f7bb8f620fb68efef6c86a333c62eab35e7bc083d9282d5 6545 
cflow_1.3-1.diff.gz
 2f3f71030234f4b1928f6add22292377e9acf93508a22ee466c17577cb3981d0 109854 
cflow_1.3-1_i386.deb
Files: 
 a73512d8f87765743f187c34a6f9f3e8 1661 devel optional cflow_1.3-1.dsc
 9a763fe2c3245234711cd31e21e14dd3 759691 devel optional cflow_1.3.orig.tar.gz
 6aa21a7062c091a4d0713956bd2853d8 6545 devel optional cflow_1.3-1.diff.gz
 5f7f603661412144c895bcf7c7791a07 109854 devel optional cflow_1.3-1_i386.deb

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

iQIcBAEBAgAGBQJKdymfAAoJEBxXDIkOS9CrMD4QAItvydl4d479b1UDNEGtFhTh
b7ggPMV9EQFkTp5CrTtBXxQOE3lYdhKtBCnbOvcXEGky08jr0rnzvQcVq5BobPjG
7NfE/vO3/Jll50su/ZKr01fZJhul+62txayipP8ecqqUAfysy3481GBD/XPkA/0M
PrhoJnCI7BZH0ZZ8Vs1pYKibQ18GORaPvX+4KpwSC/gLim602cEeVCpRLnWkhtlq
0bOGNVet4De6xQLTzDzBBiKF4TrJdrPYEMMkbcgMCFke1GYAlVIttu7ZFPwowPp/
lS9vYJMsZn4tGyzbU6WJ2w1YW4YiqPB0yVWjXAfndXIEB0O8ONbJydQne61snsBd
IjHsK5zWwGLaXwbnUQAs2kFnNwkAb8OU5JXuFmiAbjbfsIsIKkRvn2w9pSuej8KU
IR3H/fopnYiqvul8yu5qCy/D/KpWBbfzC83x/TSDYkoV6an//aPsxoxFAxr4JvWJ
G0f4KWjvzJ6ZcwFv+UQJYU7BKJC8sHwdFPADqXM9E2HOrJTXqxS5Rx7sPKLdW0TY
wqs4rgPgb7MCPFMyCUElC+zYoyGbosUgpZ3bf9RTrAUrNiMXMoIe1lzVayX4NFff
1QnAT0hAo22h1RJqx4d18FT32CmmWy7qLkt9/n8XUO33kNHVrpYQKW4e42FQCQmB
vAkYR6efSKGCKaTu5R23
=rTFu
-END PGP SIGNATURE-


Accepted:
cflow_1.3-1.diff.gz
  to pool/main/c/cflow/cflow_1.3-1.diff.gz
cflow_1.3-1.dsc
  to pool/main/c/cflow/cflow_1.3-1.dsc
cflow_1.3-1_i386.deb
  to pool/main/c/cflow/cflow_1.3-1_i386.deb
cflow_1.3.orig.tar.gz
  to pool/main/c/cflow/cflow_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 cl-rss 0.1.1-6 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 12:27:08 -0600
Source: cl-rss
Binary: cl-rss
Architecture: source all
Version: 0.1.1-6
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-rss - Common Lisp RSS processor
Changes: 
 cl-rss (0.1.1-6) unstable; urgency=low
 .
   * Convert to dh_lisp
   * control: Add Vcs-Browser field
Checksums-Sha1: 
 d533a0e55d51e28c91383eabc41b425e504742ed 1084 cl-rss_0.1.1-6.dsc
 5d6d9e91b411d8a339104cb0d75a5cd7223cd866 2154 cl-rss_0.1.1-6.diff.gz
 8d498e5d43be65cbe518ea7df8d4576dea327126 4972 cl-rss_0.1.1-6_all.deb
Checksums-Sha256: 
 2a62f154ea03984697a6b7d4d5f2ee37124fd5c08bc007e9d09dd2ef31921276 1084 
cl-rss_0.1.1-6.dsc
 25aaa0ff1b02b064555c8df238dde63392549e54b2afefa942d6ef7a3a5b59f1 2154 
cl-rss_0.1.1-6.diff.gz
 648c76b8f2898470b27634dc0d6d425505b5853ff0edc50e7a256ae1dbc1f9f1 4972 
cl-rss_0.1.1-6_all.deb
Files: 
 a6b907f903e60453d2baddb4eb683356 1084 lisp optional cl-rss_0.1.1-6.dsc
 d67563aeca4f8d3e15527aa74bad3351 2154 lisp optional cl-rss_0.1.1-6.diff.gz
 7ffebda771332c017cfbd6af927750fd 4972 lisp optional cl-rss_0.1.1-6_all.deb

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

iEYEARECAAYFAkp3LC4ACgkQES7N8sSjgj4IwwCfQXQrElywuufShRvkb3tbImzC
HIQAniym1QukBjoRLEcZSsQ8k/yNxMvR
=WSnm
-END PGP SIGNATURE-


Accepted:
cl-rss_0.1.1-6.diff.gz
  to pool/main/c/cl-rss/cl-rss_0.1.1-6.diff.gz
cl-rss_0.1.1-6.dsc
  to pool/main/c/cl-rss/cl-rss_0.1.1-6.dsc
cl-rss_0.1.1-6_all.deb
  to pool/main/c/cl-rss/cl-rss_0.1.1-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 jabberd14 1.6.1.1-2 (source all i386)

2009-08-03 Thread Miguel Landaeta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 25 Jul 2009 01:07:05 -0430
Source: jabberd14
Binary: jabber jabberd14 libjabberd2-dev libjabberd2
Architecture: source all i386
Version: 1.6.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Miguel Landaeta mig...@miguel.cc
Changed-By: Miguel Landaeta mig...@miguel.cc
Description: 
 jabber - Transitional package for jabber rename
 jabberd14  - Instant messaging server using the Jabber/XMPP protocol
 libjabberd2 - Runtime library for the Jabber/XMPP instant messaging server
 libjabberd2-dev - Development files for the Jabber/XMPP instant messaging 
server
Closes: 523095 528129 532419
Changes: 
 jabberd14 (1.6.1.1-2) unstable; urgency=low
 .
   * Added Vcs-* fields.
   * Fixed a typo in init script that was causing startup errors.
 (Closes: #532419)
   * Fixed dir-or-file-in-var-run lintian error and bumped
 Standards-Version to 3.8.2.
   * Fixed piuparts error regarding left files on system after purging.
   * Added NEWS.Debian for announce server-breaking incompatability
 warnings. (Closes: #528129)
   * Fixed bug with copy of user data files to the new spool directory
 on upgrades from 1.4.x to 1.6.x versions. (Closes: 523095)
   * Disabled logging via syslog. Now jabberd writes itself to its
 logfile in /var/log/jabberd.
Checksums-Sha1: 
 0fc403547822e0c0d77cee01cb7982099fdc022a 1481 jabberd14_1.6.1.1-2.dsc
 3e45ab6417bd75fb56f4ff175d87a4a2249f174b 25823 jabberd14_1.6.1.1-2.diff.gz
 4cbd87b00811dd0482bd8d4f0cd88c313ab23fc4 23712 jabber_1.6.1.1-2_all.deb
 7f7e122d2d7fe0c9d2a55cf4c8f68d6c1764cb29 355216 jabberd14_1.6.1.1-2_i386.deb
 6c5cfadc758d071abf434b3ada4419cbb4501161 44632 
libjabberd2-dev_1.6.1.1-2_i386.deb
 f26dc40c84ab4cf2bfb3d882cf18da1b839d0995 149220 libjabberd2_1.6.1.1-2_i386.deb
Checksums-Sha256: 
 57240735f0f7252e10ce8e5f3639d79fc612e899b02af79bf1ce3fc87e9287ab 1481 
jabberd14_1.6.1.1-2.dsc
 3c979d67d7c9c3c78e2cc5458e2b7bbed8a429be64477b9d69cc4a57a5898257 25823 
jabberd14_1.6.1.1-2.diff.gz
 438f6e8672cddd0629ae94a4b2449c949825325b4ec9ed440f2970df9496b1bb 23712 
jabber_1.6.1.1-2_all.deb
 b41eaf46b96c782ba407090fec309a48bbd56da048ca2ab4467206a3fd2c 355216 
jabberd14_1.6.1.1-2_i386.deb
 6ce4502e0b72c5e1fd614b1e076b34ec4f3f17409f00170489bd8861e4d8ab73 44632 
libjabberd2-dev_1.6.1.1-2_i386.deb
 c813e7470a0b93d5b121d6372f32eab89ca9235d6b76b80dee87cb342a4ba98f 149220 
libjabberd2_1.6.1.1-2_i386.deb
Files: 
 9ff0f0a156e8b442e38d0c3cb64b701a 1481 net optional jabberd14_1.6.1.1-2.dsc
 c89def74bd24cd43e38c1b73ad5a9034 25823 net optional jabberd14_1.6.1.1-2.diff.gz
 3de261ed0da7ad66dfb3084cd5ab035c 23712 net optional jabber_1.6.1.1-2_all.deb
 4dae8f00097b578ed59a888f88463332 355216 net optional 
jabberd14_1.6.1.1-2_i386.deb
 d16b8a4babd141e25aab7243602c7d62 44632 libdevel optional 
libjabberd2-dev_1.6.1.1-2_i386.deb
 591af4773bd12fd5b3c76b8ada1ec72c 149220 libs optional 
libjabberd2_1.6.1.1-2_i386.deb

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

iJwEAQECAAYFAkp3NPIACgkQiFVdEFPVQL//rQP8C7NN/QM+dNdzVQsXSyjdQDI2
GACqmD5Nxivuf4Ng8NvW70Bz6Ye5oejRITr0t2go94DTaRqiI9Ac50oNbgtP7C3v
xr7+5FSVinvpJGPyC8uRx2lem9Du63phpevldFPGcnQvwRA8wqfup4ATYvmPa61F
uGpBiCPdTOS8uDW396s=
=LUoa
-END PGP SIGNATURE-


Accepted:
jabber_1.6.1.1-2_all.deb
  to pool/main/j/jabberd14/jabber_1.6.1.1-2_all.deb
jabberd14_1.6.1.1-2.diff.gz
  to pool/main/j/jabberd14/jabberd14_1.6.1.1-2.diff.gz
jabberd14_1.6.1.1-2.dsc
  to pool/main/j/jabberd14/jabberd14_1.6.1.1-2.dsc
jabberd14_1.6.1.1-2_i386.deb
  to pool/main/j/jabberd14/jabberd14_1.6.1.1-2_i386.deb
libjabberd2-dev_1.6.1.1-2_i386.deb
  to pool/main/j/jabberd14/libjabberd2-dev_1.6.1.1-2_i386.deb
libjabberd2_1.6.1.1-2_i386.deb
  to pool/main/j/jabberd14/libjabberd2_1.6.1.1-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 libxstream-java 1.3.1-2 (source all)

2009-08-03 Thread Ludovic Claude
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 28 Jul 2009 20:51:09 +0100
Source: libxstream-java
Binary: libxstream-java
Architecture: source all
Version: 1.3.1-2
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Ludovic Claude ludovic.cla...@laposte.net
Description: 
 libxstream-java - Java library to serialize objects to XML and back again
Changes: 
 libxstream-java (1.3.1-2) experimental; urgency=low
 .
   * Change section to java
   * Bump up Standards-Version to 3.8.2
   * Add ${misc:Depends} to Depends to clear Lintian warnings
   * Remove Depends on Java runtimes as it is a library
   * Add the Maven POM to the package
   * Add a Build-Depends-Indep dependency on maven-repo-helper
Checksums-Sha1: 
 08990c2f31076cde57790ee565161fbc5f4b47d9 1475 libxstream-java_1.3.1-2.dsc
 b9b83aca5cb798e23903b18b598190a61d71f6e1 3479 libxstream-java_1.3.1-2.diff.gz
 7f2cf48e9f7b2cc30d6f70ed18de834fdf671cae 394612 libxstream-java_1.3.1-2_all.deb
Checksums-Sha256: 
 e4e76b5e9c440eca55c33a41729e1ad389a649b5afd3eeb6372388aff1491f26 1475 
libxstream-java_1.3.1-2.dsc
 5482aa9214d4faf241331634d61764d419aa990a30711334d1947f25c25dd6b9 3479 
libxstream-java_1.3.1-2.diff.gz
 e4584258a79389726726130a28716730b11bfff33eb4986c4cf5624277d3961b 394612 
libxstream-java_1.3.1-2_all.deb
Files: 
 762947f14bed15ac57765dae221b219b 1475 java optional libxstream-java_1.3.1-2.dsc
 a3bfd9538111bc70d351aa8496e04e16 3479 java optional 
libxstream-java_1.3.1-2.diff.gz
 ccf5f3bdd43c5f40c563995720bc3c49 394612 java optional 
libxstream-java_1.3.1-2_all.deb

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

iEYEARECAAYFAkp3M/0ACgkQfY3dicTPjsPV/QCfTWg/7jq7KlNhMcL8UQ2ZoWMe
38EAn0j7EGrZtf5HRFJm6FuEezOriDTa
=OOJG
-END PGP SIGNATURE-


Accepted:
libxstream-java_1.3.1-2.diff.gz
  to pool/main/libx/libxstream-java/libxstream-java_1.3.1-2.diff.gz
libxstream-java_1.3.1-2.dsc
  to pool/main/libx/libxstream-java/libxstream-java_1.3.1-2.dsc
libxstream-java_1.3.1-2_all.deb
  to pool/main/libx/libxstream-java/libxstream-java_1.3.1-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 libcommons-logging-java 1.1.1-3.2 (source all)

2009-08-03 Thread Ludovic Claude
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 22 Jul 2009 22:06:48 +0100
Source: libcommons-logging-java
Binary: libcommons-logging-java libcommons-logging-java-doc
Architecture: source all
Version: 1.1.1-3.2
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Ludovic Claude ludovic.cla...@laposte.net
Description: 
 libcommons-logging-java - commmon wrapper interface for several logging APIs
 libcommons-logging-java-doc - commmon wrapper interface for several logging 
APIs (documentation
Changes: 
 libcommons-logging-java (1.1.1-3.2) experimental; urgency=low
 .
   * Add more suggestions for the version of the servlet API:
  libservlet2.4-java | libservlet2.5-java
   * Add a Maven rule to use artifact id commons-logging instead of
  commons-logging-api
   * Move api documentation to /usr/share/java/doc/libcommons-logging-java/api
Checksums-Sha1: 
 dc90766cdf744215974941f1e58f9b5ca1118bdb 1620 
libcommons-logging-java_1.1.1-3.2.dsc
 bdb34def6aa9af8270c800470b13999cf1c862db 6018 
libcommons-logging-java_1.1.1-3.2.diff.gz
 c01e0acad8efbffe461beb41fc4991c8a122737a 108158 
libcommons-logging-java_1.1.1-3.2_all.deb
 3754ab4c17d0dc4214dd5b245cf49df8069d89b2 100128 
libcommons-logging-java-doc_1.1.1-3.2_all.deb
Checksums-Sha256: 
 6e6fd496c84f2e571fb7d9cb8f4e863506e795bcdc6454be0c9eea6254420c49 1620 
libcommons-logging-java_1.1.1-3.2.dsc
 325a83ec2ca2612f2de9c94018fe21821f7cf4d30d63387ba6f1a3e6ec8d9662 6018 
libcommons-logging-java_1.1.1-3.2.diff.gz
 0de431492e2e9d7573d790e93b488070c16c246a202a8e0c333939ad374e5df6 108158 
libcommons-logging-java_1.1.1-3.2_all.deb
 60c0d814f477e4fb082d59ddd9bcb8c8ce01a7803b10709fcc6ea09ce6c8e26e 100128 
libcommons-logging-java-doc_1.1.1-3.2_all.deb
Files: 
 1fce419d55158a59ddc6470997fc0d09 1620 java optional 
libcommons-logging-java_1.1.1-3.2.dsc
 8e48189740cc51687cc10e416b2469b5 6018 java optional 
libcommons-logging-java_1.1.1-3.2.diff.gz
 d741fcd28fa3cf299ef00ebe3592bfd9 108158 java optional 
libcommons-logging-java_1.1.1-3.2_all.deb
 f9cb0d261b6e87f4fc458afa469dd6ba 100128 doc optional 
libcommons-logging-java-doc_1.1.1-3.2_all.deb

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

iEYEARECAAYFAkp3NfQACgkQfY3dicTPjsPxLgCgjMpNJWVBdDd0lhyQV586lBGv
faEAoIM5Wi7hAeww+f9t5s66WvvLq3pH
=/w2E
-END PGP SIGNATURE-


Accepted:
libcommons-logging-java-doc_1.1.1-3.2_all.deb
  to 
pool/main/libc/libcommons-logging-java/libcommons-logging-java-doc_1.1.1-3.2_all.deb
libcommons-logging-java_1.1.1-3.2.diff.gz
  to 
pool/main/libc/libcommons-logging-java/libcommons-logging-java_1.1.1-3.2.diff.gz
libcommons-logging-java_1.1.1-3.2.dsc
  to 
pool/main/libc/libcommons-logging-java/libcommons-logging-java_1.1.1-3.2.dsc
libcommons-logging-java_1.1.1-3.2_all.deb
  to 
pool/main/libc/libcommons-logging-java/libcommons-logging-java_1.1.1-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 libcommons-codec-java 1.3-7 (source all)

2009-08-03 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 21:22:02 +0200
Source: libcommons-codec-java
Binary: libcommons-codec-java libcommons-codec-java-doc
Architecture: source all
Version: 1.3-7
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 libcommons-codec-java - encoder and decoders such as Base64 and hexadecimal 
codec
 libcommons-codec-java-doc - encoder and decoders such as Base64 and 
hexadecimal codec - docum
Changes: 
 libcommons-codec-java (1.3-7) experimental; urgency=low
 .
   [ Ludovic Claude ]
   * Fix version for junit in the maven POM dependencies
   * Move api documentation to /usr/share/doc/libcommons-codec-java/api
   * Add a quilt patch to ignore the LICENSE file not included in the
 source tarball, replace all previous simple patches by quilt
 .
   [ Damien Raude-Morvan ]
   * Build-Depends on default-jdk instead of default-jdk-builddep
 because we don't build a native GCJ package.
 .
   [ Torsten Werner ]
   * Add myself to Uploaders.
   * Don't install API documentation into both binary packages.
   * Don't install extra license file.
Checksums-Sha1: 
 e09cfda675efe9e14a20b95ddd7cdc1cf2d372f3 1537 libcommons-codec-java_1.3-7.dsc
 1fa7f3de9451a13822207ddd1ce9b43527895b80 5984 
libcommons-codec-java_1.3-7.diff.gz
 c7d5da95f80895d3a7953da4efa83f8d04f5873f 46534 
libcommons-codec-java_1.3-7_all.deb
 def62b275d0e57aff2d2f1d638a9bd208cfb7a0c 92210 
libcommons-codec-java-doc_1.3-7_all.deb
Checksums-Sha256: 
 0056ea654803995ca2c2ea7e058532177db8cf27030e16c377948662084a52b6 1537 
libcommons-codec-java_1.3-7.dsc
 b85aba649c5ccb9907cfd95e0cd1966f48ccb44d57cacb940c78a1868f6c5683 5984 
libcommons-codec-java_1.3-7.diff.gz
 1cc53574d78206b7793653c57f5bfb0a13a808a2c139c1a5d3bea53f84dbc652 46534 
libcommons-codec-java_1.3-7_all.deb
 693b8e510b2b1067603376665e9dc179672440218f94b1a85efbe388facc5e5a 92210 
libcommons-codec-java-doc_1.3-7_all.deb
Files: 
 f8bc0cb8fd496153c52cec628ebc3fa0 1537 java optional 
libcommons-codec-java_1.3-7.dsc
 5b7be6ee0d55e9dd02a4daa044b29615 5984 java optional 
libcommons-codec-java_1.3-7.diff.gz
 a5f82fadceee8ee8dba6800a2d3a95eb 46534 java optional 
libcommons-codec-java_1.3-7_all.deb
 6cb7cefdca73853c990f6581278aa914 92210 doc optional 
libcommons-codec-java-doc_1.3-7_all.deb

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

iEYEARECAAYFAkp3OcsACgkQfY3dicTPjsOdMQCfR6zsXY2I9oSGha5MF7ZDh8lm
SFgAnjFsGaXIWGhzPEvopEOXE0/L1jP8
=Ks9x
-END PGP SIGNATURE-


Accepted:
libcommons-codec-java-doc_1.3-7_all.deb
  to 
pool/main/libc/libcommons-codec-java/libcommons-codec-java-doc_1.3-7_all.deb
libcommons-codec-java_1.3-7.diff.gz
  to pool/main/libc/libcommons-codec-java/libcommons-codec-java_1.3-7.diff.gz
libcommons-codec-java_1.3-7.dsc
  to pool/main/libc/libcommons-codec-java/libcommons-codec-java_1.3-7.dsc
libcommons-codec-java_1.3-7_all.deb
  to pool/main/libc/libcommons-codec-java/libcommons-codec-java_1.3-7_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 doxia-sitetools 1.1-2 (source all)

2009-08-03 Thread Ludovic Claude
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 24 Jul 2009 21:00:18 +0100
Source: doxia-sitetools
Binary: libdoxia-sitetools-java
Architecture: source all
Version: 1.1-2
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Ludovic Claude ludovic.cla...@laposte.net
Description: 
 libdoxia-sitetools-java - Extension package of the content generation 
framework Doxia
Changes: 
 doxia-sitetools (1.1-2) experimental; urgency=low
 .
   * Fix version of iText in the Maven POM dependencies
Checksums-Sha1: 
 57760944723be32e40c2c5afa81f32072502bd4f 1622 doxia-sitetools_1.1-2.dsc
 607f1049c986d60568d0df7eed0ce760860aeca3 4332 doxia-sitetools_1.1-2.diff.gz
 da64c3b258de168ea2c0509afe4d65642c00456f 109902 
libdoxia-sitetools-java_1.1-2_all.deb
Checksums-Sha256: 
 125373903a6274a76738f47fc4ec8e29b873bbe556b8fbbf719cb40fe4255deb 1622 
doxia-sitetools_1.1-2.dsc
 60c57a2835d24578a8ca85ddaa27e04c817374c977e5a4744f8cd382b16f051b 4332 
doxia-sitetools_1.1-2.diff.gz
 9fd09a31e6e6052e363b3e4ec36be91b52e6dc03c77a9094fccf369e7913aa7f 109902 
libdoxia-sitetools-java_1.1-2_all.deb
Files: 
 836e8018eecc939b37f1661552a34db0 1622 java optional doxia-sitetools_1.1-2.dsc
 e9d65c837e186e14fa1714c81859ff53 4332 java optional 
doxia-sitetools_1.1-2.diff.gz
 d044917d6c9c1e83b0619678c786d51a 109902 java optional 
libdoxia-sitetools-java_1.1-2_all.deb

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

iEYEARECAAYFAkp3PbgACgkQfY3dicTPjsMLlQCeMt+SZE/R86z9vezZqxWe37bb
bQQAnigq0T4YyIkz64Ihoc0WdjCfdm3Q
=9rmO
-END PGP SIGNATURE-


Accepted:
doxia-sitetools_1.1-2.diff.gz
  to pool/main/d/doxia-sitetools/doxia-sitetools_1.1-2.diff.gz
doxia-sitetools_1.1-2.dsc
  to pool/main/d/doxia-sitetools/doxia-sitetools_1.1-2.dsc
libdoxia-sitetools-java_1.1-2_all.deb
  to pool/main/d/doxia-sitetools/libdoxia-sitetools-java_1.1-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 doxia 1.1-2 (source all)

2009-08-03 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 21:33:12 +0200
Source: doxia
Binary: libdoxia-java libdoxia-java-doc
Architecture: source all
Version: 1.1-2
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 libdoxia-java - a powerful content generation framework
 libdoxia-java-doc - a powerful content generation framework
Changes: 
 doxia (1.1-2) experimental; urgency=low
 .
   [ Ludovic Claude ]
   * Remove test dependencies from Maven POM descriptors
 .
   [ Torsten Werner ]
   * Remove extra Build-Depends-Indep: ant.
Checksums-Sha1: 
 197a2d553a945974ade0ad1e85e1dde8b3606eb4 1630 doxia_1.1-2.dsc
 b22bd70eee87dae9b1fa52d2a08cda1772513f3d 7363 doxia_1.1-2.diff.gz
 23dedf9db192981185019158990692f248f2e2ee 543728 libdoxia-java_1.1-2_all.deb
 f6f8f9f3a501fa462730a11c19ec3c6bfddb34f9 529084 libdoxia-java-doc_1.1-2_all.deb
Checksums-Sha256: 
 056b1476a6ea6b1025f3fd5b98e8acde8a702e0c35078d54340ea5687ad78ef4 1630 
doxia_1.1-2.dsc
 fb0b07ac121a0da53ee14c6577ab02578009d901ebd663f3ac36c2fe683e0179 7363 
doxia_1.1-2.diff.gz
 e3a803ce78541cda5895bbea850af536775e22dc0ae5d8ec61c8da4233f6ee58 543728 
libdoxia-java_1.1-2_all.deb
 b0d5d409155462469ea53454d0c78bd94f362af3b470502f5fc823cddd996a92 529084 
libdoxia-java-doc_1.1-2_all.deb
Files: 
 f9d8c1065309fc1e4ec61a95cacaf038 1630 java optional doxia_1.1-2.dsc
 646b6da75d8992a72fd9af6cb96c046c 7363 java optional doxia_1.1-2.diff.gz
 a1e1f81622480ae352e837c27a57 543728 java optional 
libdoxia-java_1.1-2_all.deb
 70e8b135cb2366b7aa0ff292a922e21b 529084 doc optional 
libdoxia-java-doc_1.1-2_all.deb

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

iEYEARECAAYFAkp3PLIACgkQfY3dicTPjsMk7wCcDWyGn9NLvnEHUaegZ15Zwh9c
dywAnAy64Rp/Xf61WPJvN7yCD2EtDXcW
=Y2tJ
-END PGP SIGNATURE-


Accepted:
doxia_1.1-2.diff.gz
  to pool/main/d/doxia/doxia_1.1-2.diff.gz
doxia_1.1-2.dsc
  to pool/main/d/doxia/doxia_1.1-2.dsc
libdoxia-java-doc_1.1-2_all.deb
  to pool/main/d/doxia/libdoxia-java-doc_1.1-2_all.deb
libdoxia-java_1.1-2_all.deb
  to pool/main/d/doxia/libdoxia-java_1.1-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 cl-cluck 0.1.3-2 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 13:52:14 -0600
Source: cl-cluck
Binary: cl-cluck
Architecture: source all
Version: 0.1.3-2
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-cluck   - Common Lisp Microcontroller Clock Calculator
Changes: 
 cl-cluck (0.1.3-2) unstable; urgency=low
 .
   * Build with debhelper extension dh-lisp
   * control: Add Vcs-Browser field. Fix Depends field.
Checksums-Sha1: 
 a24d7ccd894a5ab59503fb2dc9fbc2fc472f2cdd 1097 cl-cluck_0.1.3-2.dsc
 f4446469ad57622fe205013458260508a5ffd835 2067 cl-cluck_0.1.3-2.diff.gz
 8a6228b2fefbf87bcf22f801efe670b976067de5 7096 cl-cluck_0.1.3-2_all.deb
Checksums-Sha256: 
 e8a7f0d12c301eef41add232a6301e436f00dde9398fbed525191935b352 1097 
cl-cluck_0.1.3-2.dsc
 35f49bcfc734c24a3ca8255609f2e43b6d9205bf2c1293743640af03bfd3 2067 
cl-cluck_0.1.3-2.diff.gz
 24227b4ee1e563ff154a45a43aea617dabb8a86df31e3a232c7f9a01c69c116f 7096 
cl-cluck_0.1.3-2_all.deb
Files: 
 ffbc14ae9c9019e397e8b66c70825895 1097 lisp optional cl-cluck_0.1.3-2.dsc
 c9ff3e5b604e0d9bce6615ee2ea115f9 2067 lisp optional cl-cluck_0.1.3-2.diff.gz
 ea69431001b5a5a43eacddc150f29fde 7096 lisp optional cl-cluck_0.1.3-2_all.deb

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

iEYEARECAAYFAkp3QEkACgkQES7N8sSjgj4tFwCfXU0XTYX5SLFEeYZvoDijwVFG
oasAnj9BfnHkDpSmW/6o1LYVzxALRHUs
=MzK4
-END PGP SIGNATURE-


Accepted:
cl-cluck_0.1.3-2.diff.gz
  to pool/main/c/cl-cluck/cl-cluck_0.1.3-2.diff.gz
cl-cluck_0.1.3-2.dsc
  to pool/main/c/cl-cluck/cl-cluck_0.1.3-2.dsc
cl-cluck_0.1.3-2_all.deb
  to pool/main/c/cl-cluck/cl-cluck_0.1.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 griffith 0.10-1 (source all)

2009-08-03 Thread Piotr Ożarowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 22:27:02 +0200
Source: griffith
Binary: griffith
Architecture: source all
Version: 0.10-1
Distribution: unstable
Urgency: low
Maintainer: Piotr Ożarowski pi...@debian.org
Changed-By: Piotr Ożarowski pi...@debian.org
Description: 
 griffith   - film collection manager
Changes: 
 griffith (0.10-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 f09c349a9a9e6ef910fb85dff8eb804c515eda39 1197 griffith_0.10-1.dsc
 1fbda669f1d3ba8fe5c1f210fd1c5274941f2cb5 1332714 griffith_0.10.orig.tar.gz
 c04a1704809bcfcfe85f8a50a8ad443f2434ce3c 3682 griffith_0.10-1.diff.gz
 991a7dc7961f6fafb75a3566dc76aabbec686fac 729824 griffith_0.10-1_all.deb
Checksums-Sha256: 
 a7c038d311db176740bcd45b1c94012692fbfb12a9085bc379d97a39c4c0 1197 
griffith_0.10-1.dsc
 024a4837590794bafe28730c6384d67e66691e91b6cddf05cd358e8dbfee5a11 1332714 
griffith_0.10.orig.tar.gz
 a3eaecea3e010cbf7155c4469073083938f7705ba817ddda910228e46c8a840d 3682 
griffith_0.10-1.diff.gz
 96e391256dfc7a78d45202825b9bb29b658cebd63bc16889eb3e2f4969b0889b 729824 
griffith_0.10-1_all.deb
Files: 
 334e68089bd4ec0c719ddb67d48084a3 1197 gnome optional griffith_0.10-1.dsc
 1b83ed8de48b39c134d37ffe84b0b6cc 1332714 gnome optional 
griffith_0.10.orig.tar.gz
 07e6c5025c54489b903002d16ff0230e 3682 gnome optional griffith_0.10-1.diff.gz
 bf0f2f19718920e631b91a3759457f7c 729824 gnome optional griffith_0.10-1_all.deb

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

iEYEARECAAYFAkp3S90ACgkQB01zfu119ZnloQCglUj1fTszMMmWqhf8Mc8UmhkT
TSMAnRfvsv2/tYzJYrk+aU98i9V8Wkqi
=QtJx
-END PGP SIGNATURE-


Accepted:
griffith_0.10-1.diff.gz
  to pool/main/g/griffith/griffith_0.10-1.diff.gz
griffith_0.10-1.dsc
  to pool/main/g/griffith/griffith_0.10-1.dsc
griffith_0.10-1_all.deb
  to pool/main/g/griffith/griffith_0.10-1_all.deb
griffith_0.10.orig.tar.gz
  to pool/main/g/griffith/griffith_0.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 libxmlrpc3-java 3.1-3 (source all amd64)

2009-08-03 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 22:20:42 +0200
Source: libxmlrpc3-java
Binary: libxmlrpc3-common-java libxmlrpc3-common-java-gcj 
libxmlrpc3-client-java libxmlrpc3-client-java-gcj libxmlrpc3-server-java 
libxmlrpc3-server-java-gcj libxmlrpc3-java-doc
Architecture: source all amd64
Version: 3.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian Java maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 libxmlrpc3-client-java - XML-RPC implementation in Java (client side)
 libxmlrpc3-client-java-gcj - XML-RPC implementation in Java (client side)
 libxmlrpc3-common-java - XML-RPC implementation in Java
 libxmlrpc3-common-java-gcj - XML-RPC implementation in Java
 libxmlrpc3-java-doc - XML-RPC implementation in Java (API documentation)
 libxmlrpc3-server-java - XML-RPC implementation in Java (server side)
 libxmlrpc3-server-java-gcj - XML-RPC implementation in Java (server side)
Changes: 
 libxmlrpc3-java (3.1-3) unstable; urgency=low
 .
   * Add myself to Uploaders.
   * Add missing Depends: ${misc:Depends}.
   * Do no longer quote the full text of the Apache license.
   * Change Section: java.
   * Update Standards-Version: 3.8.2.
Checksums-Sha1: 
 aa8a108cc036e4a5163d7806cc618c1dabbd4040 1604 libxmlrpc3-java_3.1-3.dsc
 fb2ec474cde1e2ff18586dec423c0fd92e1fcde2 4285 libxmlrpc3-java_3.1-3.diff.gz
 9f986a18fdf7bf30cef6721432eb48af4dde3429 91584 
libxmlrpc3-common-java_3.1-3_all.deb
 1c75370c23387384f679d6cde969718b5f005303 41720 
libxmlrpc3-client-java_3.1-3_all.deb
 a07116534d645b1270e11409fcde27da2c4bb3ce 69964 
libxmlrpc3-server-java_3.1-3_all.deb
 a26ded4830b4932ccbbecfd7fb9d410fc61fc6f2 292256 
libxmlrpc3-java-doc_3.1-3_all.deb
 fce94e3a4e8062c29b41a1b588c93fe41414a3a8 101070 
libxmlrpc3-common-java-gcj_3.1-3_amd64.deb
 c0d86831e4f0869dd7d34d6fb7aa0fa818c9dfa5 48714 
libxmlrpc3-client-java-gcj_3.1-3_amd64.deb
 9a827b51c3a373fae885945fdc476a5f5cff2c15 85524 
libxmlrpc3-server-java-gcj_3.1-3_amd64.deb
Checksums-Sha256: 
 84584c6e928d4f6e1db16190662f7e7150fed4305814bb9efb61092a693d56f7 1604 
libxmlrpc3-java_3.1-3.dsc
 d68220f99a33000d32ca610bc7a7d4eba84e0830701f2d985c38dd8a9c1e1018 4285 
libxmlrpc3-java_3.1-3.diff.gz
 b647977a1cf0fda50a44ec5e8bbe54582604bc29c0390faace706df014126540 91584 
libxmlrpc3-common-java_3.1-3_all.deb
 f2819051206d436132d479192ca0c35402b49d8335a42a5ae3d1c0765a23687f 41720 
libxmlrpc3-client-java_3.1-3_all.deb
 6dc1b5d2c5edf860cf1bc8694f4e1b0c46a46775596b35083dbf4782c72651eb 69964 
libxmlrpc3-server-java_3.1-3_all.deb
 d086dedc5e321ed38e91d35cd411bd7ff30e8395cdfee8f619fd6c054943e126 292256 
libxmlrpc3-java-doc_3.1-3_all.deb
 dfb8b8f5d204c75968313591069f72f49e97f2f821eee462750cd7c257c98665 101070 
libxmlrpc3-common-java-gcj_3.1-3_amd64.deb
 a75010c07d12d6a6eeb6b67e5057a244fdc143b81787df64c7c86c7a252344be 48714 
libxmlrpc3-client-java-gcj_3.1-3_amd64.deb
 ca15aa8931fbb81e7d0bac00674a668bc0ac1014d6d0095ea6d24fe5c07bbeaa 85524 
libxmlrpc3-server-java-gcj_3.1-3_amd64.deb
Files: 
 e18447d5d4fe98659d72f46a1ac6213d 1604 java optional libxmlrpc3-java_3.1-3.dsc
 33c193463592834026b62abaeb2465ea 4285 java optional 
libxmlrpc3-java_3.1-3.diff.gz
 2a44a710240e5e1368d43b06b0cfe533 91584 java optional 
libxmlrpc3-common-java_3.1-3_all.deb
 57411534f6a1487a3d3c62c9ffa91469 41720 java optional 
libxmlrpc3-client-java_3.1-3_all.deb
 5f35606eb96236879f78f5ac1c4b5919 69964 java optional 
libxmlrpc3-server-java_3.1-3_all.deb
 6b95e5b92dfebda6c1e10b9f72cade95 292256 doc optional 
libxmlrpc3-java-doc_3.1-3_all.deb
 05be6077c61a3f7497140acafc0cdf60 101070 java optional 
libxmlrpc3-common-java-gcj_3.1-3_amd64.deb
 d7f6a6d5abefecbd89a8e6fa7d02e704 48714 java optional 
libxmlrpc3-client-java-gcj_3.1-3_amd64.deb
 9a326559f30e9aaac0abd1d33adde3b9 85524 java optional 
libxmlrpc3-server-java-gcj_3.1-3_amd64.deb

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

iEYEARECAAYFAkp3SCYACgkQfY3dicTPjsN69ACeKiN8agoLnpgDLLhUD5xZVNdY
AhwAn0TohugA6/yJ8sD8TkOdRzpe8j8s
=PPli
-END PGP SIGNATURE-


Accepted:
libxmlrpc3-client-java-gcj_3.1-3_amd64.deb
  to pool/main/libx/libxmlrpc3-java/libxmlrpc3-client-java-gcj_3.1-3_amd64.deb
libxmlrpc3-client-java_3.1-3_all.deb
  to pool/main/libx/libxmlrpc3-java/libxmlrpc3-client-java_3.1-3_all.deb
libxmlrpc3-common-java-gcj_3.1-3_amd64.deb
  to pool/main/libx/libxmlrpc3-java/libxmlrpc3-common-java-gcj_3.1-3_amd64.deb
libxmlrpc3-common-java_3.1-3_all.deb
  to pool/main/libx/libxmlrpc3-java/libxmlrpc3-common-java_3.1-3_all.deb
libxmlrpc3-java-doc_3.1-3_all.deb
  to pool/main/libx/libxmlrpc3-java/libxmlrpc3-java-doc_3.1-3_all.deb
libxmlrpc3-java_3.1-3.diff.gz
  to pool/main/libx/libxmlrpc3-java/libxmlrpc3-java_3.1-3.diff.gz
libxmlrpc3-java_3.1-3.dsc
  to pool/main/libx/libxmlrpc3-java/libxmlrpc3-java_3.1-3.dsc
libxmlrpc3-server-java-gcj_3.1-3_amd64.deb
  to pool/main/libx/libxmlrpc3-java/libxmlrpc3-server-java-gcj_3.1-3_amd64.deb

Accepted cl-lml2 1.6.6-3 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 14:21:37 -0600
Source: cl-lml2
Binary: cl-lml2
Architecture: source all
Version: 1.6.6-3
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-lml2- Lisp Markup Language
Changes: 
 cl-lml2 (1.6.6-3) unstable; urgency=low
 .
   * Build with debhelper extension dh-lisp
   * control: Add Vcs-Browser field. Fix Depends field.
Checksums-Sha1: 
 f53921522ec4fe6191fbf2000dbba258741f355c 1083 cl-lml2_1.6.6-3.dsc
 22142fd8bb7e1d6aae7f3bf41750280ff9d74111 3738 cl-lml2_1.6.6-3.diff.gz
 8f9b7ae27d9b99c18df708cbf11637f9ed41bfbd 22640 cl-lml2_1.6.6-3_all.deb
Checksums-Sha256: 
 4fc58ba019e91069aa510f3413c6f5a3c7c061659b8dc3f8682d7991ba72d9df 1083 
cl-lml2_1.6.6-3.dsc
 116f5d6ca63293c0cca96c96f391a8d8bd41456e5889a0eb2157c865d5579693 3738 
cl-lml2_1.6.6-3.diff.gz
 dbad750018a3d8bb68e98cbf59594c9a516ec559efb4cfe9443a51d55a29ea79 22640 
cl-lml2_1.6.6-3_all.deb
Files: 
 e0ce0b5fd1bb7e57ce5da96420204537 1083 lisp optional cl-lml2_1.6.6-3.dsc
 7655a4af1171d90bf4b816edfef17dcc 3738 lisp optional cl-lml2_1.6.6-3.diff.gz
 725a67fb5ef744cb61ec244df64be6da 22640 lisp optional cl-lml2_1.6.6-3_all.deb

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

iEYEARECAAYFAkp3R0AACgkQES7N8sSjgj6/HACfYAfsHb3pOyp+TU8/kyIejsrY
KNwAn3eR9wQzFgMac4k37/2pKdYvERNd
=vnEP
-END PGP SIGNATURE-


Accepted:
cl-lml2_1.6.6-3.diff.gz
  to pool/main/c/cl-lml2/cl-lml2_1.6.6-3.diff.gz
cl-lml2_1.6.6-3.dsc
  to pool/main/c/cl-lml2/cl-lml2_1.6.6-3.dsc
cl-lml2_1.6.6-3_all.deb
  to pool/main/c/cl-lml2/cl-lml2_1.6.6-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 hello-debhelper 2.4-1 (source powerpc)

2009-08-03 Thread Santiago Vila
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 23:39:04 +0200
Source: hello-debhelper
Binary: hello-debhelper
Architecture: source powerpc
Version: 2.4-1
Distribution: unstable
Urgency: low
Maintainer: Santiago Vila sanv...@debian.org
Changed-By: Santiago Vila sanv...@debian.org
Description: 
 hello-debhelper - The classic greeting, and a good example
Changes: 
 hello-debhelper (2.4-1) unstable; urgency=low
 .
   * New upstream release. Manual is back.
   * Standards-Version: 3.8.2 (no changes for this).
Checksums-Sha1: 
 74bd40a14c1ad9fd0b0a6a09e21fc62ab64a45b7 992 hello-debhelper_2.4-1.dsc
 fcbf0264928900adf03a7797474375e1a6fa3836 499638 hello-debhelper_2.4.orig.tar.gz
 20826c603023b4c1913d96e40d9d2918aa53 5105 hello-debhelper_2.4-1.diff.gz
 f539d5cecb77e37f1d5f5395a195c08bbc1af228 64334 
hello-debhelper_2.4-1_powerpc.deb
Checksums-Sha256: 
 e044d79986eaa6dfae3f89ee9fd15b4373359e2fea094c2bd52955cef744c3bf 992 
hello-debhelper_2.4-1.dsc
 534745c4b7e063f5eb5f984609caf0f7c06d46df03e4d404f20996d28b6df1f7 499638 
hello-debhelper_2.4.orig.tar.gz
 0a425bf88a5e5e9a6db310162d2064542334c22b4ef9c6a328b1d47ee3da 5105 
hello-debhelper_2.4-1.diff.gz
 b5fd3966b6badcacbac1b28f1e2dce6530f7d5643af5813e5fce0eb252a15d1c 64334 
hello-debhelper_2.4-1_powerpc.deb
Files: 
 f003973ef0da9ac6e7e49633fb9697b9 992 devel extra hello-debhelper_2.4-1.dsc
 1691faa758ca41c70b6da5501bdf230a 499638 devel extra 
hello-debhelper_2.4.orig.tar.gz
 0697bcf6e7b2cd3713d48ed7f69c7041 5105 devel extra hello-debhelper_2.4-1.diff.gz
 ecd59321bf6012b81769d0495d7900ec 64334 devel extra 
hello-debhelper_2.4-1_powerpc.deb

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

iEYEARECAAYFAkp3WVkACgkQd9Uuvj7yPNbbiwCcCkan/H6IsV6iigBai65iYnoS
wZYAoLcSpcWOsuTZqVTShNFloJqR+b09
=y7xJ
-END PGP SIGNATURE-


Accepted:
hello-debhelper_2.4-1.diff.gz
  to pool/main/h/hello-debhelper/hello-debhelper_2.4-1.diff.gz
hello-debhelper_2.4-1.dsc
  to pool/main/h/hello-debhelper/hello-debhelper_2.4-1.dsc
hello-debhelper_2.4-1_powerpc.deb
  to pool/main/h/hello-debhelper/hello-debhelper_2.4-1_powerpc.deb
hello-debhelper_2.4.orig.tar.gz
  to pool/main/h/hello-debhelper/hello-debhelper_2.4.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 librepository 0.1.4-4 (source all amd64)

2009-08-03 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 22:33:03 +0200
Source: librepository
Binary: librepository-java librepository-java-doc librepository-java-gcj
Architecture: source all amd64
Version: 0.1.4-4
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 librepository-java - abstraction library for accessing hierachic bulk content
 librepository-java-doc - abstraction library for accessing hierachic bulk 
content -- docum
 librepository-java-gcj - abstraction library for accessing hierachic bulk 
content (native 
Changes: 
 librepository (0.1.4-4) unstable; urgency=low
 .
   [ Matthias Klose ]
   * Depend on default-jre-headless.
 .
   [ Torsten Werner ]
   * Add myself to Uploaders.
   * Reset Maintainer back to Debian Java Maintainers.
   * Add missing Depends: ${misc:Depends}.
   * Add Vcs-* headers.
   * Update Standards-Version: 3.8.2.
Checksums-Sha1: 
 ea3f5e3122600a4ee3cf3676eedc5ae2c43900d1 1385 librepository_0.1.4-4.dsc
 ec9cfe974b021209895fb7e63ed8cbb745c33e6a 2708 librepository_0.1.4-4.diff.gz
 a6e2f67ce3174cd41261b7af72550011cf457b16 88330 
librepository-java_0.1.4-4_all.deb
 5b9e929a8a68207659f46c3c8cdc58863bfa0842 2438 
librepository-java-doc_0.1.4-4_all.deb
 b5e844c8274b16dfd5075a982939845732e7af50 37274 
librepository-java-gcj_0.1.4-4_amd64.deb
Checksums-Sha256: 
 7b5dfe8dbbcd80fcc87cecce762c349755727ea30a7bc8306b36e676cd73822a 1385 
librepository_0.1.4-4.dsc
 cf85b46474662457a7f774d6934be1f04f9c7c063f3275c1733e5481b7a547d5 2708 
librepository_0.1.4-4.diff.gz
 1f91bf82a183594f709e30173ddfc7f240cc062d5e25b76e0faac3cfef3ee79e 88330 
librepository-java_0.1.4-4_all.deb
 b0b77afa0ed1be00055a47febf222874fe6a36cc4a8361ae933c1be37ff6568e 2438 
librepository-java-doc_0.1.4-4_all.deb
 d30b91a80bec3b45aa15f0de304b552ea1d37c867640b88c8616b74a217c1c9f 37274 
librepository-java-gcj_0.1.4-4_amd64.deb
Files: 
 2dbbd57cc2366893910576ce58cee379 1385 java optional librepository_0.1.4-4.dsc
 90bd982a338477741469e065ef6f43dd 2708 java optional 
librepository_0.1.4-4.diff.gz
 46993814e917ce8979e0003a359c4633 88330 java optional 
librepository-java_0.1.4-4_all.deb
 8dd5d56ccec79f88b23abb47a39f3891 2438 doc optional 
librepository-java-doc_0.1.4-4_all.deb
 b33f1adc402c34a0645a056f16db7248 37274 libs optional 
librepository-java-gcj_0.1.4-4_amd64.deb

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

iEYEARECAAYFAkp3SxIACgkQfY3dicTPjsOLfgCggrjdrcbywOTd3MFPBTcXuFsx
NvgAnR//Un5RcYqCWGrdtow2s7vFWxNZ
=1ELs
-END PGP SIGNATURE-


Accepted:
librepository-java-doc_0.1.4-4_all.deb
  to pool/main/libr/librepository/librepository-java-doc_0.1.4-4_all.deb
librepository-java-gcj_0.1.4-4_amd64.deb
  to pool/main/libr/librepository/librepository-java-gcj_0.1.4-4_amd64.deb
librepository-java_0.1.4-4_all.deb
  to pool/main/libr/librepository/librepository-java_0.1.4-4_all.deb
librepository_0.1.4-4.diff.gz
  to pool/main/libr/librepository/librepository_0.1.4-4.diff.gz
librepository_0.1.4-4.dsc
  to pool/main/libr/librepository/librepository_0.1.4-4.dsc


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



Accepted libpixie-java 1:0.8.8-2 (source all)

2009-08-03 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 22:43:46 +0200
Source: libpixie-java
Binary: libpixie-java
Architecture: source all
Version: 1:0.8.8-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Torsten Werner twer...@debian.org
Description: 
 libpixie-java - Java Vector Format Viewer Library
Changes: 
 libpixie-java (1:0.8.8-2) unstable; urgency=low
 .
   [ Matthias Klose ]
   * (Build-)depend on default-jre/-jdk.
 .
   [ Torsten Werner ]
   * Add myselfo to Uploaders.
   * Add missing Depends: ${misc:Depends}.
   * Switch to debhelper compat level 4.
   * Update Standards-Version: 3.8.2.
   * Change Section: java.
   * Add Vcs-* headers.
Checksums-Sha1: 
 023711c1d2ccb89f5bc6506eca0266020dc4bc24 1348 libpixie-java_0.8.8-2.dsc
 fca9c878e6d4e20dc47197bd1bbfa85514592d9b 3303 libpixie-java_0.8.8-2.diff.gz
 c30437a7af3a1cbd63f1deb5ba640aa4078da256 351364 libpixie-java_0.8.8-2_all.deb
Checksums-Sha256: 
 cf8c5a8280fb514a976b73c6bfcf5e94b2375f28015655800729db7d27770530 1348 
libpixie-java_0.8.8-2.dsc
 1c846678fb8e901b004e418d068aa2663630c16c15111425d0f8ea2d3db710f3 3303 
libpixie-java_0.8.8-2.diff.gz
 44c67cff39e3ed50c6625f4ff87cada3e794056233ef87e77b46f6a280a50d29 351364 
libpixie-java_0.8.8-2_all.deb
Files: 
 603ddf822fbceb5b19559b00c1ed8044 1348 java optional libpixie-java_0.8.8-2.dsc
 2b6b65d4359918e63cd8eb3c9eddf15d 3303 java optional 
libpixie-java_0.8.8-2.diff.gz
 871d82df5d8011789969d3f30284760c 351364 java optional 
libpixie-java_0.8.8-2_all.deb

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

iEYEARECAAYFAkp3TUUACgkQfY3dicTPjsOOfgCfRJHBAvtEJ31wb1dsWK/o9ygN
EGwAnA8oCbKllR8A0a3YxpvwlyVCjTes
=tkMb
-END PGP SIGNATURE-


Accepted:
libpixie-java_0.8.8-2.diff.gz
  to pool/main/libp/libpixie-java/libpixie-java_0.8.8-2.diff.gz
libpixie-java_0.8.8-2.dsc
  to pool/main/libp/libpixie-java/libpixie-java_0.8.8-2.dsc
libpixie-java_0.8.8-2_all.deb
  to pool/main/libp/libpixie-java/libpixie-java_0.8.8-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 hello 2.4-1 (source powerpc)

2009-08-03 Thread Santiago Vila
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 23:34:18 +0200
Source: hello
Binary: hello
Architecture: source powerpc
Version: 2.4-1
Distribution: unstable
Urgency: low
Maintainer: Santiago Vila sanv...@debian.org
Changed-By: Santiago Vila sanv...@debian.org
Description: 
 hello  - The classic greeting, and a good example
Closes: 457941 508833
Changes: 
 hello (2.4-1) unstable; urgency=low
 .
   * New upstream release. License is now GPLv3 or later.
   * Manual is included again, as it's now GFDL without invariant sections.
   * Clarified manual: If more than one of the greeting options is specified
 (`-g', `-n', `-t', and their long-named equivalents), whichever comes
 last takes precedence. Closes: #457941.
   * Don't pass -isp to dpkg-gencontrol, as it's deprecated. Closes: #508833.
   * Changed source URL in copyright file to use http, not ftp.
   * Standards-Version: 3.8.2 (no changes for this).
Checksums-Sha1: 
 eaaa79569def4ad4cc2287599a23938f76c2142f 880 hello_2.4-1.dsc
 fcbf0264928900adf03a7797474375e1a6fa3836 499638 hello_2.4.orig.tar.gz
 bd8e6dd6da076ad02153e9a5e3b7e778fd5a749f 5532 hello_2.4-1.diff.gz
 bfa0ff390416b1da70ae08fe39c782c56a3dc65c 62950 hello_2.4-1_powerpc.deb
Checksums-Sha256: 
 5bf9368831c4b8e71a0bfb28507fb27f7cdd275f8c7f770447d5b6dd41077197 880 
hello_2.4-1.dsc
 534745c4b7e063f5eb5f984609caf0f7c06d46df03e4d404f20996d28b6df1f7 499638 
hello_2.4.orig.tar.gz
 ad75119d88431ab686c1e10ac1a8b7a71f1f655c0aacac230712a2b5cd7572bf 5532 
hello_2.4-1.diff.gz
 1ce73a01894c4e5165274567c27b8119f88b959b1a718683ffc2a0736951f980 62950 
hello_2.4-1_powerpc.deb
Files: 
 aa2ffb4090acaa19a9e80d93a7353821 880 devel optional hello_2.4-1.dsc
 1691faa758ca41c70b6da5501bdf230a 499638 devel optional hello_2.4.orig.tar.gz
 fe2a47475dfa1f0c83f282ce0428fdb7 5532 devel optional hello_2.4-1.diff.gz
 9ddb96191896d14c89fc3f40df00991e 62950 devel optional hello_2.4-1_powerpc.deb

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

iEYEARECAAYFAkp3WCoACgkQd9Uuvj7yPNZZswCdEThLZASXGA6f2eXjPyf5ZZT+
HY8An0X/KBif6VlYbHMnvzekU9RmoWKe
=KHRj
-END PGP SIGNATURE-


Accepted:
hello_2.4-1.diff.gz
  to pool/main/h/hello/hello_2.4-1.diff.gz
hello_2.4-1.dsc
  to pool/main/h/hello/hello_2.4-1.dsc
hello_2.4-1_powerpc.deb
  to pool/main/h/hello/hello_2.4-1_powerpc.deb
hello_2.4.orig.tar.gz
  to pool/main/h/hello/hello_2.4.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 cl-kmrcl 1.99-4 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 14:12:47 -0600
Source: cl-kmrcl
Binary: cl-kmrcl
Architecture: source all
Version: 1.99-4
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-kmrcl   - General Utilities for Common Lisp Programs
Changes: 
 cl-kmrcl (1.99-4) unstable; urgency=low
 .
   * Build with debhelper extension dh-lisp
   * control: Add Vcs-Browser field. Fix Depends field.
Checksums-Sha1: 
 bf819f311166c2ba193356e37b89e41f2f7e08b7 1093 cl-kmrcl_1.99-4.dsc
 7599404c37367c97a7b02511b03d429e3717d1b7 5484 cl-kmrcl_1.99-4.diff.gz
 eaf6d1af2626574324eac5394338b66c2e7ea1a4 53222 cl-kmrcl_1.99-4_all.deb
Checksums-Sha256: 
 bba4480708ac5b4829d69b3fa1e5dde9d90f028055a2781193170281062b4123 1093 
cl-kmrcl_1.99-4.dsc
 f86c757166ac3a131cd14fdb845c300b8a4f36e886b902fd0e7c3ed563a6be90 5484 
cl-kmrcl_1.99-4.diff.gz
 fed7a05e23ce6395b55991af6f34ca2f0d4c415332caa60ba7f33a030475c66e 53222 
cl-kmrcl_1.99-4_all.deb
Files: 
 fdff5e4b2aa826829f1dfb6bdf619b15 1093 lisp optional cl-kmrcl_1.99-4.dsc
 acddd59c2bad9924d68e2c3595e3db1b 5484 lisp optional cl-kmrcl_1.99-4.diff.gz
 fe9bc914dc82719dc471253c4edc879c 53222 lisp optional cl-kmrcl_1.99-4_all.deb

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

iEYEARECAAYFAkp3RQoACgkQES7N8sSjgj6dMgCfe3YGYV6Zy1GAwP4OL9HvUAlL
cBsAn3hV+Ihh8XqFiL3KtBIAc3P67+dB
=qssD
-END PGP SIGNATURE-


Accepted:
cl-kmrcl_1.99-4.diff.gz
  to pool/main/c/cl-kmrcl/cl-kmrcl_1.99-4.diff.gz
cl-kmrcl_1.99-4.dsc
  to pool/main/c/cl-kmrcl/cl-kmrcl_1.99-4.dsc
cl-kmrcl_1.99-4_all.deb
  to pool/main/c/cl-kmrcl/cl-kmrcl_1.99-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 rcpp 0.6.6-1 (source i386)

2009-08-03 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 14:55:48 -0500
Source: rcpp
Binary: r-cran-rcpp
Architecture: source i386
Version: 0.6.6-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-rcpp - GNU R / C++ interface classes and examples
Changes: 
 rcpp (0.6.6-1) unstable; urgency=low
 .
   * New release
 .
   * debian/control: Updated Standard-Versions: to current version
   * debian/control: Updated (Build-)Depends: to current R version
Checksums-Sha1: 
 48eb305e47ab197e616587d1bed466753193aaef 1007 rcpp_0.6.6-1.dsc
 f99f142f084844bf097e162f99375516fce01b71 2200774 rcpp_0.6.6.orig.tar.gz
 0a627036004880c8a5cf93752b4be66266b79c68 3122 rcpp_0.6.6-1.diff.gz
 5fbd27b790b1a4cc37419359b57cba4b49a6fe8d 2391428 r-cran-rcpp_0.6.6-1_i386.deb
Checksums-Sha256: 
 c38cb55328250e8c9e38f2ac4ce4e89ee2b2bbf0065a43f829307c827f4fd575 1007 
rcpp_0.6.6-1.dsc
 23f6ab12f0a77f772253b040b66ef71730ac32e4a9db9f6f891bfe22729639dc 2200774 
rcpp_0.6.6.orig.tar.gz
 0e5368e0daced4d381e14b331bcfb3e0a87eea5047da319b77e54f6b98a621af 3122 
rcpp_0.6.6-1.diff.gz
 c4fc7c45d8251ff83334697ca211d3d51507465fc4a4bde9a0c1bcc7ec9a4408 2391428 
r-cran-rcpp_0.6.6-1_i386.deb
Files: 
 005fef878323b01956a52caa4e185d38 1007 gnu-r optional rcpp_0.6.6-1.dsc
 4dfc62134345875254224b225cff5bc0 2200774 gnu-r optional rcpp_0.6.6.orig.tar.gz
 c6a1eb16573d5469b53758b20b03ead2 3122 gnu-r optional rcpp_0.6.6-1.diff.gz
 40d238c600b6b9ee1d517752c8206ca9 2391428 gnu-r optional 
r-cran-rcpp_0.6.6-1_i386.deb

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

iD8DBQFKd0QmCZSR95Gw07cRAvqlAJ9dZu0WrrBSgwPKnx0GwZ9/VE6FDQCfVbxm
gpM2vEEHqT2MWXE1Bpv9RL0=
=Xyw+
-END PGP SIGNATURE-


Accepted:
r-cran-rcpp_0.6.6-1_i386.deb
  to pool/main/r/rcpp/r-cran-rcpp_0.6.6-1_i386.deb
rcpp_0.6.6-1.diff.gz
  to pool/main/r/rcpp/rcpp_0.6.6-1.diff.gz
rcpp_0.6.6-1.dsc
  to pool/main/r/rcpp/rcpp_0.6.6-1.dsc
rcpp_0.6.6.orig.tar.gz
  to pool/main/r/rcpp/rcpp_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 haxe 1:2.4-1 (source i386)

2009-08-03 Thread Jens Peter Secher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 21:29:45 +0200
Source: haxe
Binary: haxe
Architecture: source i386
Version: 1:2.4-1
Distribution: unstable
Urgency: low
Maintainer: Jens Peter Secher j...@debian.org
Changed-By: Jens Peter Secher j...@debian.org
Description: 
 haxe   - Web-oriented universal programming language
Closes: 521222 533159
Changes: 
 haxe (1:2.4-1) unstable; urgency=low
 .
   * New upstream version (CVS 2009-08-01).
   * Removed obsolete parts of the copyright file now that ExtLib is
 not included anymore.
   * Included patch for Ubuntu location of zlib, thanks to Alessio Treglia.
 (Closes: #533159)
   * Removed haxe-mode to get it into its own package.
 (Closes: #521222)
   * Included new commands in bash_completion.
   * Removed obsolete Lintian overrides.
   * Bumped Standards-Version to 3.8.2, no change.
Checksums-Sha1: 
 03e8507ee315b23d8bb94f87552ac588ff7d7b23 1276 haxe_2.4-1.dsc
 3886874b1af5916116ce9a34099e8f64d654dc76 632406 haxe_2.4.orig.tar.gz
 78ab460c262e735eb96f75ead5b34b9014eecb80 10536 haxe_2.4-1.diff.gz
 0b1dde997e77bf0897bc389ad6dc1360f4920e4d 994768 haxe_2.4-1_i386.deb
Checksums-Sha256: 
 96e0d06d173859e3bc85ac301245db36db38edfa29f64554ac2d43d6589d096b 1276 
haxe_2.4-1.dsc
 824718409a76080fc22e36d562759961a600ff23601bff63f48e2017771cdb85 632406 
haxe_2.4.orig.tar.gz
 d36cd08b690b1744cf8e69169a9281f974d6e1c35ef73345f0a3789a92e46219 10536 
haxe_2.4-1.diff.gz
 0906ff5d38b6f2404fb5a28d15c9505413e96565154c3fa8328e91c34ad3ae7f 994768 
haxe_2.4-1_i386.deb
Files: 
 3057cb6e2afa26510cc473e683aaab3f 1276 devel optional haxe_2.4-1.dsc
 96ff2bc14a5bc2784186bc4a72db2cbf 632406 devel optional haxe_2.4.orig.tar.gz
 beac6e2ad8e6b3cfefa23df6bf0d0203 10536 devel optional haxe_2.4-1.diff.gz
 c9fbca3c3fa2608fed17beb25e78abfd 994768 devel optional haxe_2.4-1_i386.deb

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

iJwEAQECAAYFAkp3VhYACgkQiFVdEFPVQL98AgP/bcIOgXvd95OE+PxUcnx4brWw
Erg823pQyAdRMhtiTYiEG8Q246lL4mv1iN/WHwviAISANr2cAEpzAcuPZ1/h4kaj
T2nmD+10RP9FrDhAYHFLB0f6qbYBQkioyzAnlHcA2O0LohKMq07weSHMivRVEZlT
XJBwPbJUVHZ3rq0Dctg=
=SWSu
-END PGP SIGNATURE-


Accepted:
haxe_2.4-1.diff.gz
  to pool/main/h/haxe/haxe_2.4-1.diff.gz
haxe_2.4-1.dsc
  to pool/main/h/haxe/haxe_2.4-1.dsc
haxe_2.4-1_i386.deb
  to pool/main/h/haxe/haxe_2.4-1_i386.deb
haxe_2.4.orig.tar.gz
  to pool/main/h/haxe/haxe_2.4.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 cl-getopt 1.2.0-3 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 13:57:20 -0600
Source: cl-getopt
Binary: cl-getopt
Architecture: source all
Version: 1.2.0-3
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-getopt  - Common Lisp utility for command-line processing
Changes: 
 cl-getopt (1.2.0-3) unstable; urgency=low
 .
   * Build with debhelper extension dh-lisp
   * control: Add Vcs-Browser field. Fix Depends field.
Checksums-Sha1: 
 bf85ce4979711bf993040f75aec5a16b30142c6f 1108 cl-getopt_1.2.0-3.dsc
 958feadf8c40ff39d7fe1097b90f9df09636b473 2155 cl-getopt_1.2.0-3.diff.gz
 65b385b779c592c599fff160670a4f6cbe5032c2 5774 cl-getopt_1.2.0-3_all.deb
Checksums-Sha256: 
 8d4cc2e3709b8a24749d0375ce185c1b4b98358fa312a5c522450093ed050cee 1108 
cl-getopt_1.2.0-3.dsc
 b1a250e7e508c4cc88f233e0153b3fdea1b1e659174aef968f08f5ed8ea2edc6 2155 
cl-getopt_1.2.0-3.diff.gz
 f59a6fc28335b6f5e2d4fbf34a3d367824f1006cb3971190d8feabd8766ac390 5774 
cl-getopt_1.2.0-3_all.deb
Files: 
 30f27a2bdd13db0220598254e51772d8 1108 lisp optional cl-getopt_1.2.0-3.dsc
 8275a6bbc5b8a04362e9b434dc8aa63e 2155 lisp optional cl-getopt_1.2.0-3.diff.gz
 06d738556f26350492552bd714709627 5774 lisp optional cl-getopt_1.2.0-3_all.deb

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

iEYEARECAAYFAkp3QXYACgkQES7N8sSjgj7dHwCfbSgebHJ79oZIsWrNYouosNk9
9loAoIeDhvpPKe4IbPuIaFgBtY2xe7Pv
=6+he
-END PGP SIGNATURE-


Accepted:
cl-getopt_1.2.0-3.diff.gz
  to pool/main/c/cl-getopt/cl-getopt_1.2.0-3.diff.gz
cl-getopt_1.2.0-3.dsc
  to pool/main/c/cl-getopt/cl-getopt_1.2.0-3.dsc
cl-getopt_1.2.0-3_all.deb
  to pool/main/c/cl-getopt/cl-getopt_1.2.0-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 cl-hyperobject 2.11.0-3 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 14:02:47 -0600
Source: cl-hyperobject
Binary: cl-hyperobject
Architecture: source all
Version: 2.11.0-3
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-hyperobject - Common Lisp library for hyperobjects
Changes: 
 cl-hyperobject (2.11.0-3) unstable; urgency=low
 .
   * Build with debhelper extension dh-lisp
   * control: Add Vcs-Browser field. Fix Depends field.
   * rules: Fix installation of example file
Checksums-Sha1: 
 ea16a9be03e5a97b95a410f3858362409c15d213 1167 cl-hyperobject_2.11.0-3.dsc
 0112fc8aeded507d501e5c39e10ac5071694b463 3787 cl-hyperobject_2.11.0-3.diff.gz
 af5ced3d508f247dd71bc23f8df3b5702082d7e3 24362 cl-hyperobject_2.11.0-3_all.deb
Checksums-Sha256: 
 9d800f1b1d6a5cc5e91d0b86afd810fc5791ea4ed639ad69719cb76c1af21e9a 1167 
cl-hyperobject_2.11.0-3.dsc
 485e842f2f97a94af7c3e310522cb9a9668c8e237442d3cc4909473d38a0a587 3787 
cl-hyperobject_2.11.0-3.diff.gz
 e76b52a7d627d38cc426da72eacd6e7a4ae015654e01e037faf1208be4514e8c 24362 
cl-hyperobject_2.11.0-3_all.deb
Files: 
 eda6d958be3f0b736b794c5c467b2080 1167 lisp optional cl-hyperobject_2.11.0-3.dsc
 640fe635c8c157503745e6e4a229be70 3787 lisp optional 
cl-hyperobject_2.11.0-3.diff.gz
 6973a2098d4df3337c569a9d96a87c1a 24362 lisp optional 
cl-hyperobject_2.11.0-3_all.deb

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

iEYEARECAAYFAkp3Q2kACgkQES7N8sSjgj5aiACaA17gpCV5do9YgVos0jJigAhk
cEIAnRyEGuhrYQprFgPNRJYWYWPA1ezO
=pFfz
-END PGP SIGNATURE-


Accepted:
cl-hyperobject_2.11.0-3.diff.gz
  to pool/main/c/cl-hyperobject/cl-hyperobject_2.11.0-3.diff.gz
cl-hyperobject_2.11.0-3.dsc
  to pool/main/c/cl-hyperobject/cl-hyperobject_2.11.0-3.dsc
cl-hyperobject_2.11.0-3_all.deb
  to pool/main/c/cl-hyperobject/cl-hyperobject_2.11.0-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 goldendict 0.9.0+svn357-1 (source i386)

2009-08-03 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 03 Aug 2009 23:56:29 +0400
Source: goldendict
Binary: goldendict
Architecture: source i386
Version: 0.9.0+svn357-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 goldendict - a feature-rich dictionary lookup program
Changes: 
 goldendict (0.9.0+svn357-1) unstable; urgency=low
 .
   * SVN revision: 357 (all my patches were applied by upstream).
   * Now a few translations are available under debian.
Checksums-Sha1: 
 1255aa0718ea7fc154e249e09ce40cff41fbcf52 1326 goldendict_0.9.0+svn357-1.dsc
 eeed2e2c73d6efaf6afa69a67af25e2748d37168 515831 
goldendict_0.9.0+svn357.orig.tar.gz
 371ea032a5c67796f3f74f41b3b21a44bab7ee55 6075 goldendict_0.9.0+svn357-1.diff.gz
 cc41c342ac858ccc47c573e0531aa246f79bd46d 734230 
goldendict_0.9.0+svn357-1_i386.deb
Checksums-Sha256: 
 44273c6b604b4ac71297316a4585632d1ff57c84e205a25b3bbdcdd0d90a2d04 1326 
goldendict_0.9.0+svn357-1.dsc
 68c0ab4de28f7510c98fd834d94766f8b869961cf277400d27ddee30c50a70d0 515831 
goldendict_0.9.0+svn357.orig.tar.gz
 294b455d6fa90085806a9a5c2581bbf28c501b8484162db6d81a5f31d973b7d8 6075 
goldendict_0.9.0+svn357-1.diff.gz
 141a15eb0047774722215b2fd9a7ba6114ea674bdc4565ccdf8cb33d9067e511 734230 
goldendict_0.9.0+svn357-1_i386.deb
Files: 
 1754e3f2b27dd4c3a7ee591bd4eeedc2 1326 utils optional 
goldendict_0.9.0+svn357-1.dsc
 b4084ba9a1b3b9cbf0636f1a0b4ef322 515831 utils optional 
goldendict_0.9.0+svn357.orig.tar.gz
 b05621f6a11182ada6eaa59c8b7000d5 6075 utils optional 
goldendict_0.9.0+svn357-1.diff.gz
 e84a66d8dda6d65623fd8d99346b0285 734230 utils optional 
goldendict_0.9.0+svn357-1_i386.deb

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

iEYEAREDAAYFAkp3QvgACgkQq4wAz/jiZTdgpACdGZDjlAJATxwMEmJZn6CKdH3g
bogAn0l0GD0vS2dvZvwNHWnuouqZofQh
=5V4a
-END PGP SIGNATURE-


Accepted:
goldendict_0.9.0+svn357-1.diff.gz
  to pool/main/g/goldendict/goldendict_0.9.0+svn357-1.diff.gz
goldendict_0.9.0+svn357-1.dsc
  to pool/main/g/goldendict/goldendict_0.9.0+svn357-1.dsc
goldendict_0.9.0+svn357-1_i386.deb
  to pool/main/g/goldendict/goldendict_0.9.0+svn357-1_i386.deb
goldendict_0.9.0+svn357.orig.tar.gz
  to pool/main/g/goldendict/goldendict_0.9.0+svn357.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 ant 1.7.1-2 (source all amd64)

2009-08-03 Thread Ludovic Claude
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 22 Jul 2009 19:08:53 +0100
Source: ant
Binary: ant ant-gcj ant-optional ant-optional-gcj ant-doc
Architecture: source all amd64
Version: 1.7.1-2
Distribution: experimental
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Ludovic Claude ludovic.cla...@laposte.net
Description: 
 ant- Java based build tool like make
 ant-doc- Java based build tool like make - API documentation and manual
 ant-gcj- Java based build tool like make
 ant-optional - Java based build tool like make - optional libraries
 ant-optional-gcj - Java based build tool like make - API documentation and 
manual
Changes: 
 ant (1.7.1-2) experimental; urgency=low
 .
   * Bump up Standards-Version to 3.8.2
   * Move Ant Javadoc to /usr/share/doc/ant/api/
   * Deploy missing POM files for ant-optional package
   * Fix version for antlr, bcel, commons-net, log4j dependencies in the
 Maven POMs.
   * Fix groupId and artifactId for commons-logging and regexp
 dependencies in the Maven POMs.
   * Fix Ant version in the Maven repository
Checksums-Sha1: 
 1ff83db922cd4c8c0cc7870b74a21161dac07040 1659 ant_1.7.1-2.dsc
 dfb12c9af64532d2d4d8145fe48e31ed012a994e 30248 ant_1.7.1-2.diff.gz
 df0595e9cdae9c865d385cdc85770082af910ebe 1297374 ant_1.7.1-2_all.deb
 cbc05fdcc9acb667940fa743678d9e0807e67865 657148 ant-optional_1.7.1-2_all.deb
 5434d81690baefa730e03dc2c08cf82c98e48bfc 3269572 ant-doc_1.7.1-2_all.deb
 fdeea72e7c6db68de3aec4e3645dc1f8c20a5ebf 1595178 ant-gcj_1.7.1-2_amd64.deb
 d37d05b49065e17e31626e15639c3ef36e7d7115 851488 
ant-optional-gcj_1.7.1-2_amd64.deb
Checksums-Sha256: 
 f145bde0e62eb66d6e06ac4e0d66993fe35af9e1798baffe244dc9fc83a45197 1659 
ant_1.7.1-2.dsc
 71b2bd2f82265b6c0008ec9ebc5b1c2cef9ac9a2b4868b0fec4d2b8211ad7f41 30248 
ant_1.7.1-2.diff.gz
 0291be6eff924979113cc3c935dcf9c2582a665259e3e1f371c79ffdc5d0fef5 1297374 
ant_1.7.1-2_all.deb
 375ba9c1cfd25c65e412d36a60b4cdbea46e1761776844d76896c17b9942f3d2 657148 
ant-optional_1.7.1-2_all.deb
 cb5d39ecf111d424c212cbf5e486d25fbfdb49916baf6aff5a2a3d0bbb8b 3269572 
ant-doc_1.7.1-2_all.deb
 0b9da53fb7b3f0b8aad3ead1fa46a2710e1bdf91bc1d5d483415e6dfd13ebce9 1595178 
ant-gcj_1.7.1-2_amd64.deb
 fd833992e2e4e1b24aa7c580c512fe95eeaf5ea8317079f026f18b58e7e080eb 851488 
ant-optional-gcj_1.7.1-2_amd64.deb
Files: 
 d3417f37b048520b0f307cabb6592a68 1659 java optional ant_1.7.1-2.dsc
 061f47a9dd6d772bca38510e189daa77 30248 java optional ant_1.7.1-2.diff.gz
 bae62397438cf2b0f5264ea7940d4b23 1297374 java optional ant_1.7.1-2_all.deb
 02161ae6f609759825e9425a7ffecccf 657148 java optional 
ant-optional_1.7.1-2_all.deb
 3996f3d35bccbe4e687818b161b5f279 3269572 doc optional ant-doc_1.7.1-2_all.deb
 9bb542c5c6d0a31f06544f4dae0157eb 1595178 java optional 
ant-gcj_1.7.1-2_amd64.deb
 53e82317b576285bdd6b3e799b733475 851488 java optional 
ant-optional-gcj_1.7.1-2_amd64.deb

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

iEYEARECAAYFAkp3Q3YACgkQfY3dicTPjsNVswCfd8CeoHvS3386nE09yw78SJ1/
COkAoInsfP5EGZXMWZxPbSYs6VK4EHC1
=stDv
-END PGP SIGNATURE-


Accepted:
ant-doc_1.7.1-2_all.deb
  to pool/main/a/ant/ant-doc_1.7.1-2_all.deb
ant-gcj_1.7.1-2_amd64.deb
  to pool/main/a/ant/ant-gcj_1.7.1-2_amd64.deb
ant-optional-gcj_1.7.1-2_amd64.deb
  to pool/main/a/ant/ant-optional-gcj_1.7.1-2_amd64.deb
ant-optional_1.7.1-2_all.deb
  to pool/main/a/ant/ant-optional_1.7.1-2_all.deb
ant_1.7.1-2.diff.gz
  to pool/main/a/ant/ant_1.7.1-2.diff.gz
ant_1.7.1-2.dsc
  to pool/main/a/ant/ant_1.7.1-2.dsc
ant_1.7.1-2_all.deb
  to pool/main/a/ant/ant_1.7.1-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 cl-pipes 1.2.1-5 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 14:38:24 -0600
Source: cl-pipes
Binary: cl-pipes
Architecture: source all
Version: 1.2.1-5
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-pipes   - Common Lisp library for pipes or streams
Changes: 
 cl-pipes (1.2.1-5) unstable; urgency=low
 .
   * Build with debhelper extension dh-lisp
   * control: Add Vcs-Browser field. Fix Depends field.
Checksums-Sha1: 
 4b995a20f914da04c3648fcd9f2906b52a996474 1097 cl-pipes_1.2.1-5.dsc
 35081ba58899241abd81abf86b71106dadf53ba0 2956 cl-pipes_1.2.1-5.diff.gz
 71ff733e48303de1cf4f3c0abc3c1d8ec53a7312 6492 cl-pipes_1.2.1-5_all.deb
Checksums-Sha256: 
 1b8a6cbab7dfba012b14fe2afab7c1e1dafa1ac46ae8eccdf43d1ed28999192a 1097 
cl-pipes_1.2.1-5.dsc
 509ba87b36027ad50d103cf5da51c1f0b491b1b08bc8e7e92b7c560cef42deb5 2956 
cl-pipes_1.2.1-5.diff.gz
 e255a355c40cef5dd63d6176fd276469556784db2b9dfc06bc33dc89e8a5de3b 6492 
cl-pipes_1.2.1-5_all.deb
Files: 
 55aad0662023bbe5745a9ff451f8661c 1097 lisp optional cl-pipes_1.2.1-5.dsc
 2055c1cb6850a5fa9f71e0bf3b643c3a 2956 lisp optional cl-pipes_1.2.1-5.diff.gz
 858e315a31c7b11ec73f4992f43c5497 6492 lisp optional cl-pipes_1.2.1-5_all.deb

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

iEYEARECAAYFAkp3SyYACgkQES7N8sSjgj7TdACfcmjMeSzOcU0rOmt7+KJJsy8T
SZ0An3OhY5EjHSef1gWLb/nXhVg/63OM
=olp4
-END PGP SIGNATURE-


Accepted:
cl-pipes_1.2.1-5.diff.gz
  to pool/main/c/cl-pipes/cl-pipes_1.2.1-5.diff.gz
cl-pipes_1.2.1-5.dsc
  to pool/main/c/cl-pipes/cl-pipes_1.2.1-5.dsc
cl-pipes_1.2.1-5_all.deb
  to pool/main/c/cl-pipes/cl-pipes_1.2.1-5_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 cl-lml 2.5.7-3 (source all)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 14:16:12 -0600
Source: cl-lml
Binary: cl-lml
Architecture: source all
Version: 2.5.7-3
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-lml - Lisp Markup Language
Changes: 
 cl-lml (2.5.7-3) unstable; urgency=low
 .
   * Build with debhelper extension dh-lisp
   * control: Add Vcs-Browser field. Fix Depends field.
Checksums-Sha1: 
 5ee43c4b8f748351a571d2354a6e207df6aeaee8 1072 cl-lml_2.5.7-3.dsc
 8dffb28063ff6e7fc69043f032431ad0374a7ee9 4928 cl-lml_2.5.7-3.diff.gz
 a2f1970717475b642d4b3c3749ff7193be07a5e0 17232 cl-lml_2.5.7-3_all.deb
Checksums-Sha256: 
 dea3b257d784b06d9ae1c7b7553fdd0c338956924c5a6f991896fb6fdd6fcd6b 1072 
cl-lml_2.5.7-3.dsc
 d4636ba2d1c87c8fcb3c9c2f8b0609e43bd13acaf3294b72d4feb920e239fb90 4928 
cl-lml_2.5.7-3.diff.gz
 162b3c445d9ff9c39dda109c57288903e11af46ee4dbfb13e6d510cc1df23b04 17232 
cl-lml_2.5.7-3_all.deb
Files: 
 f0da2ab7455d677612486f133666e28a 1072 lisp optional cl-lml_2.5.7-3.dsc
 7652c44539240a23d2a737e166dc49bb 4928 lisp optional cl-lml_2.5.7-3.diff.gz
 e0acde3780f025c17ee5f859296298cb 17232 lisp optional cl-lml_2.5.7-3_all.deb

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

iEYEARECAAYFAkp3RiwACgkQES7N8sSjgj4UNQCfcDvh/8w8NKKAg5JwznuoZ5+X
JLEAnjq6ZuoMOILVX7JPjg7VlSbODdPn
=K9no
-END PGP SIGNATURE-


Accepted:
cl-lml_2.5.7-3.diff.gz
  to pool/main/c/cl-lml/cl-lml_2.5.7-3.diff.gz
cl-lml_2.5.7-3.dsc
  to pool/main/c/cl-lml/cl-lml_2.5.7-3.dsc
cl-lml_2.5.7-3_all.deb
  to pool/main/c/cl-lml/cl-lml_2.5.7-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 cl-readline 0.2.0-5 (source amd64)

2009-08-03 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 03 Aug 2009 12:16:07 -0600
Source: cl-readline
Binary: cl-readline
Architecture: source amd64
Version: 0.2.0-5
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 cl-readline - Common Lisp interface to the GNU readline library
Changes: 
 cl-readline (0.2.0-5) unstable; urgency=low
 .
   * Convert to dh-lisp
   * control: Add Vcs-Browser field
Checksums-Sha1: 
 1b40fb0b655eca3bc5d904dc32cf276e7f0f50b4 1093 cl-readline_0.2.0-5.dsc
 9fea62be0ff22f0c09bc92e9b2ef2fbf531b5b36 2033 cl-readline_0.2.0-5.diff.gz
 584561ae71ade3c82eed1faddee55a13716e9d2f 7264 cl-readline_0.2.0-5_amd64.deb
Checksums-Sha256: 
 e5246bc41bdf08a190ed926d8b9e8283631ad52b8619ee32e6077e09324dfdaf 1093 
cl-readline_0.2.0-5.dsc
 87752c5fefb1027c2ae63fc3d5ef49448c7ce77587f07ffd59e5c4f34fe45fef 2033 
cl-readline_0.2.0-5.diff.gz
 94854d227b0887c28ccce6df9b9ad4cdc195ce8d79de2b9ff7d433b4bac9af88 7264 
cl-readline_0.2.0-5_amd64.deb
Files: 
 28d45d9ff492723ea20ab0515bb08c01 1093 lisp optional cl-readline_0.2.0-5.dsc
 6a344c371b85ac9aa8484f75cfc35c50 2033 lisp optional cl-readline_0.2.0-5.diff.gz
 38fd8d772a8b86053b4592334b7d758d 7264 lisp optional 
cl-readline_0.2.0-5_amd64.deb

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

iEYEARECAAYFAkp3XYEACgkQES7N8sSjgj6fTACeNJqC/jM8WmG//XY+fl41Hv2I
MPIAniPGu2AnV4g2ZFzzKZ2g6/8hU7L/
=KfCo
-END PGP SIGNATURE-


Accepted:
cl-readline_0.2.0-5.diff.gz
  to pool/main/c/cl-readline/cl-readline_0.2.0-5.diff.gz
cl-readline_0.2.0-5.dsc
  to pool/main/c/cl-readline/cl-readline_0.2.0-5.dsc
cl-readline_0.2.0-5_amd64.deb
  to pool/main/c/cl-readline/cl-readline_0.2.0-5_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 botan1.8 1.8.5-1 (source i386)

2009-08-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 04 Aug 2009 00:47:32 +0200
Source: botan1.8
Binary: botan1.8-dbg libbotan-1.8.2 libbotan1.8-dev
Architecture: source i386
Version: 1.8.5-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 botan1.8-dbg - multiplatform crypto library (debug)
 libbotan-1.8.2 - multiplatform crypto library
 libbotan1.8-dev - multiplatform crypto library (development)
Changes: 
 botan1.8 (1.8.5-1) unstable; urgency=low
 .
   * Merging upstream version 1.8.5.
   * Adding old changelog entries for separately uploaded botan packages
 in the past.
   * Using correct rfc-2822 date formats in changelog.
   * Wrapping build depends.
   * Adding misc depends.
   * Renaming local manpages directory to common name.
   * Minimizing rules file.
   * Doing some minor cosmetical updates in the manpage.
   * Updating copyright file to reflect changes of upstream version
 1.8.0.
   * Using new configure.py instread of configure.pl, updating necessary
 things to cope with that.
   * Updating.
   * Tidy debhelper install files.
Checksums-Sha1: 
 c653985153e6fbbde5445f9e458f97b0d39dca3e 1197 botan1.8_1.8.5-1.dsc
 e23b916e24ed7653d409d887b1a958e085f0648f 3444972 botan1.8_1.8.5.orig.tar.gz
 91c080e8bd957186bdf30e1d990a85a09d2d3116 5409 botan1.8_1.8.5-1.diff.gz
 0d9185efc225f492735d73c59085766342ea11b4 118792 botan1.8-dbg_1.8.5-1_i386.deb
 2a10f00d9dddcb34824b9afae8fb6b9dd531650b 1174876 
libbotan-1.8.2_1.8.5-1_i386.deb
 2d54959d47e43b460fda462e88e7a5422f5ca19c 3109306 
libbotan1.8-dev_1.8.5-1_i386.deb
Checksums-Sha256: 
 b0858df649921babe2102af64fb5f7cbc67e78aecea710133d971896f4535179 1197 
botan1.8_1.8.5-1.dsc
 6370f819a2d31421a297ab65cd4b65434207b3d34db73fa45a59da790210b9dc 3444972 
botan1.8_1.8.5.orig.tar.gz
 729f21f3c748318f87349e110676a0b877343e5b802f298f5cdd4459a4517ca3 5409 
botan1.8_1.8.5-1.diff.gz
 ee0fe3227149e0bda2e9697e7ccf3afa5f9c8600334a84770ab9db57f1ba3452 118792 
botan1.8-dbg_1.8.5-1_i386.deb
 8d8c28360d29e79779586f9e629a4dd5171c19426c549b5181e54f3b44557e69 1174876 
libbotan-1.8.2_1.8.5-1_i386.deb
 c24a69ef29b2ae61210b53afbf9b6da19920689f168bd6b1f7283466a8abbe77 3109306 
libbotan1.8-dev_1.8.5-1_i386.deb
Files: 
 2b24b948cd89e71f74ac8042781638b4 1197 libs optional botan1.8_1.8.5-1.dsc
 26d5d7488bacd12a3779cb3750692399 3444972 libs optional 
botan1.8_1.8.5.orig.tar.gz
 554239ea105ab228ce7eaa9a5bbfdf34 5409 libs optional botan1.8_1.8.5-1.diff.gz
 dc7613d882af96f6f54d30547e141b42 118792 debug extra 
botan1.8-dbg_1.8.5-1_i386.deb
 0d41954c9bb6ed2385fc439459f1a3ee 1174876 libs optional 
libbotan-1.8.2_1.8.5-1_i386.deb
 8e159979d09582580b1ee72645ee248c 3109306 libdevel optional 
libbotan1.8-dev_1.8.5-1_i386.deb

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

iEYEARECAAYFAkp3a3EACgkQ+C5cwEsrK56BeACghRAbm8/o/vaTzZwKdUJ+xGFN
MyQAn18BLJA59JF6Y7JmcnZbOnfX7f9t
=QqN9
-END PGP SIGNATURE-


Accepted:
botan1.8-dbg_1.8.5-1_i386.deb
  to pool/main/b/botan1.8/botan1.8-dbg_1.8.5-1_i386.deb
botan1.8_1.8.5-1.diff.gz
  to pool/main/b/botan1.8/botan1.8_1.8.5-1.diff.gz
botan1.8_1.8.5-1.dsc
  to pool/main/b/botan1.8/botan1.8_1.8.5-1.dsc
botan1.8_1.8.5.orig.tar.gz
  to pool/main/b/botan1.8/botan1.8_1.8.5.orig.tar.gz
libbotan-1.8.2_1.8.5-1_i386.deb
  to pool/main/b/botan1.8/libbotan-1.8.2_1.8.5-1_i386.deb
libbotan1.8-dev_1.8.5-1_i386.deb
  to pool/main/b/botan1.8/libbotan1.8-dev_1.8.5-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 pybliographer 1.2.12-1 (source all)

2009-08-03 Thread Chris Lawrence
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 01 Aug 2009 03:39:29 -0500
Source: pybliographer
Binary: pybliographer
Architecture: source all
Version: 1.2.12-1
Distribution: unstable
Urgency: low
Maintainer: Chris Lawrence lawre...@debian.org
Changed-By: Chris Lawrence lawre...@debian.org
Description: 
 pybliographer - tool for manipulating bibliographic databases
Closes: 412085 494669
Changes: 
 pybliographer (1.2.12-1) unstable; urgency=low
 .
   * New upstream release.
   + Includes fix for pybtex.  (Closes: #412085)
   * Add MIME information.  (Closes: #494669)
Checksums-Sha1: 
 33b020b6ca4dd25a791e0f0deaef095640e70308 1220 pybliographer_1.2.12-1.dsc
 0315a7ef5a6a600abe8e22ca2dcdf96d66911c98 883969 
pybliographer_1.2.12.orig.tar.gz
 7fa2334dc8921ac8b0d231d4538ecfc9c308c89c 14684 pybliographer_1.2.12-1.diff.gz
 4997e76f6fb177762e5b33bc0fa52779553a1e03 638724 pybliographer_1.2.12-1_all.deb
Checksums-Sha256: 
 7180a4032ee14e59820d315d232bc9d7b146b6c635c72d337e35c9ad2df57da4 1220 
pybliographer_1.2.12-1.dsc
 9c330ef5e8cc019dff74a61dc32117140033fd99ac45d2061bf546400902bd02 883969 
pybliographer_1.2.12.orig.tar.gz
 3b2b102d94d145719eee6cfe2fa822c023ff8c66a92d14ed70aff30d22bb4956 14684 
pybliographer_1.2.12-1.diff.gz
 4a1b8d0a0b2de08081539eb586c2e07c57aefde6a2793ee12ec72c66606b949a 638724 
pybliographer_1.2.12-1_all.deb
Files: 
 5e2fe042c3932ac960627ab6ed513835 1220 gnome optional pybliographer_1.2.12-1.dsc
 eaf6189aa149258dff15766536bc23c4 883969 gnome optional 
pybliographer_1.2.12.orig.tar.gz
 4dfd1789a26f09a23d15d90c2be7fa50 14684 gnome optional 
pybliographer_1.2.12-1.diff.gz
 7ad3a918f998e0b680fd007f119aefca 638724 gnome optional 
pybliographer_1.2.12-1_all.deb

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

iEYEARECAAYFAkp3ctYACgkQ2wQKE6PXubwLpACfVHuvCzDYmL751dqe9zPKiIiI
eaYAoJYWlOfPTXClvMpKinijWhifEzME
=Uh/d
-END PGP SIGNATURE-


Accepted:
pybliographer_1.2.12-1.diff.gz
  to pool/main/p/pybliographer/pybliographer_1.2.12-1.diff.gz
pybliographer_1.2.12-1.dsc
  to pool/main/p/pybliographer/pybliographer_1.2.12-1.dsc
pybliographer_1.2.12-1_all.deb
  to pool/main/p/pybliographer/pybliographer_1.2.12-1_all.deb
pybliographer_1.2.12.orig.tar.gz
  to pool/main/p/pybliographer/pybliographer_1.2.12.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



  1   2   >