Re: recherche sponsor pour nouveaux paquets [OBM]

2008-05-20 Thread Sylvain Garcia
On Mon, 2008-05-19 at 21:03 +0200, Cedric Delfosse wrote:
 Le mercredi 07 mai 2008 à 11:29 +0200, Sylvain Garcia a écrit :
  Bonjour,
  
  Dans la nouvelle Ubuntu j'ai intégrer OBM, cependant utilisateur de
  Debian j'aimerai bien voir OBM dans Debian. J'ai uploader les paquets
  sur mentors.debian.org.
 
 Bonjour,
 
 je vérifie les paquets et j'uploade dès que possible. Ce serait dommage
 de ne pas avoir OBM dans Debian !
 
 Cédric
 
 
 
J'ai uploader sur mentors.net une nouvelle version, obm_2.1.9-3, qui
gère maintenant le fichier de conf /etc/obm/obm_con.ini via ucf.
Je pense que les paquets sont maintenant pret a être uploader.

Merci pour ta vérification.

-- 
Sylvain Garcia
Aliasource - Groupe LINAGORA
20, rue Hermès, Parc Technologique du Canal 31520 RAMONVILLE SAINT AGNE
Téléphone : +33 (0)5 62 19 24 91


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



Re: How to handle Debian patches

2008-05-20 Thread Goswin von Brederlow
Manoj Srivastava [EMAIL PROTECTED] writes:

 On Mon, 19 May 2008 10:42:54 +0200, Goswin von Brederlow
 [EMAIL PROTECTED] said:  

 Hmm. You say things like this:
 Because the git format is imho conceptualy broken and the
 implementation is far from completely thought out. 

 And then you go saying things like that:
 It is trivial to generate a quilt format package from git/arch/hg/svn
 and I'm sure there will be a RCS-build-package soon enough that does
 that. 

 This can not happen without manual intervention, if the topic
  branches have overlap. And  Redoing the manual conflict resolution over
  and over and over again is a burden (the manual conflict resolution
  lives generally in the integration branch history, and can be done
  once, and mostly ignored from that point on).

A quilt format package with a single combined patch. Get the
integration branch, get orig.tar.gz, build. dpkg-buildpackage will
automatically create a debian_version.patch for you. It is easy.

I'm not saying you get a nice and shiny debian/patches/* out of
it. That indeed needs human interaction as already said elsewhere.

To the non git (even not quilt) experienced user the combined patch
will be usable in that he can edit the source and fix bugs. The git
format does not allow that.

Even with some git knowledge I think that most users that write a
patch won't follow the maintainers workflow. They won't find the right
feature branch a patch belongs to and how to merge that into an
integration branch. Instead they will just edit the source, git commit
and send the resulting patch. And that means you get a patch against
the integration branch. Same as you would with the quilt format.

Users that dig deeper into the source to find out the maintainers
workflow I would expect to be able to find the maintainers git
repository too and just use that directly. So the only use for the git
format is for people that can already use the original git
repository. Hence my view that it is a bad format.

MfG
Goswin


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



Re: How to handle Debian patches

2008-05-20 Thread Goswin von Brederlow
Pierre Habouzit [EMAIL PROTECTED] writes:

 On Mon, May 19, 2008 at 04:06:36PM +, Manoj Srivastava wrote:
 B) (This is an honest question). How many things can rerere remember? If
I use rerere to record how to resolve current conflicts in feature
branches, does the historical information get lost? (like, I use
rerere to help merging the current upstream version, do we lose
information about previous upstream versions?)

   git-rerere keeps recorded conflicts resolution for 60 days by default,
 and it's configureable, and it needs to use git-gc (or git rerere gc) to
 cleanse it, so if you don't, it just won't disappear.

If you have a feature branch that won't be accepted upstream then that
can be years old. And conflicts could have been resolved right at the
start of that time.

How does git-rerere dig out that years old conflict resolution?

How do you tell git-rerere to keep all conflict resolutions needed to
convert feature branches into a patch series but not others?

How sure are you that will actually work right and not misidentify
code at the wrong places? Ok, I guess you can compare the patch series
output against the integration branch and they should be identical.

MfG
Goswin


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



Re: How to handle Debian patches

2008-05-20 Thread Goswin von Brederlow
Gunnar Wolf [EMAIL PROTECTED] writes:

 Lucas Nussbaum dijo [Sat, May 17, 2008 at 02:37:31PM +0200]:
 If I understand things correctly (but I'm really not sure I do), 3.0
 (quilt) won't really help with that: it won't prevent maintainers to
 directly modify files outside of debian/ , and generate a huge
 debian/patches/debian-changes-version.diff.

Yes it will. Any modified file will end up in debian/patches/ instead
of modifying the file directly. It will not prevent patches but it
ensures they are used exclusively. So no packages that change some
files directly and use debian/patches/ for others.
 
 It seems to me that what we need to do is decide that using dpatch or
 quilt is the way to go (with properly commenting individual patches).
 It's a social problem, not a technical one.

 But with some time put to it, we can end up including a the
 maintainer shuold not modify files outside of the debian/ directory
 without a strong rationale, and provide lintian checks for packages
 still directly modifying upstream code...

Do you mean no debian/patches at all?

 It can become a long transition, but a good one in the end, /methinks.

MfG
Goswin


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



Re: Should dpkg-source -x list patches (Re: How to handle Debian patches)

2008-05-20 Thread Charles Plessy
Le Mon, May 19, 2008 at 10:25:35PM +0200, Bernd Eckenfels a écrit :
 In article [EMAIL PROTECTED] you wrote:
  give a hint about this.  If patches are hidden anywhere in the upstream
  code some developers fail to realise this and my suggestion might help
  noticing this fact.
 
 The debian Diff is not hiding patches in the upstream code. It is the
 canonical place to publish them (at least for some (most?) of the debian
 packages following policy).

Hi all,

If we take openssl as an example, we can see that many .pl files are
modified. A quick inspection shows that for most of them the only change
is the path to Perl in the first line. The only way to know if it is the
case for all is to look at all of them one by one. The Debian diff.gz
file is a technical way to apply the Debian modifications to the
original sources, but it seems to me a very suboptimal way to publish
patches of the quality level that one would expect for his own software.
To keep on the openssl example, the patched .pl are dispersed within the
.diff.gz file. That is, different logical units are mixed, and to submit
one of them would necessitate to generate a new patch that is not a
contiguous extract of the original diff.gz. This is how I understand -
and agree with - the claim that patches are hidden in the diff.gz.

Have a nice day

-- 
Charles Plessy
http://charles.plessy.org
Wakō, Saitama, Japan


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



Re: Bug#481973: ITP: libiptables-parse-perl -- Perl extension for parsing iptables firewall rulesets

2008-05-20 Thread gregor herrmann
On Tue, 20 May 2008 00:34:48 +0200, Franck JONCOURT wrote:

  The package psad contains a file /usr/lib/perl5/IPTables/Parse.pm.
 As a matter of fact, all packages from cipherdyne are being packaged
 to avoid conflicts between psad, fwsnort and fwknop.

Sounds good, thanks for the clarification!
 
BTW: Just in case you don't know, there's the Debian Perl Group that
could help with the two lib*-perl packages:
http://wiki.debian.org/Teams/DebianPerlGroup

Cheers,
gregor
 
-- 
 .''`.   http://info.comodo.priv.at/ | gpg key ID: 0x00F3CFE4
 : :' :  debian gnu/linux user, admin  developer - http://www.debian.org/
 `. `'   member of https://www.vibe.at/ | how to reply: http://got.to/quote/
   `-You're dead, Jim.  -- McCoy, Amok Time, stardate 3372.7 


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



package config

2008-05-20 Thread Anthony

Hello, everybody

I have a little question about ucf (example with a package which
contains a file package_file.conf)

Can i use de package_file.conf.dpkg-old generate by the ucf utility?

I would like to know how can i restore the old conf files after use ucf.?

I have created a package which manage some files with ucf BUT when i
remove the package i would like to restore the files before the
installation .
I could rename the file package_file.conf.dpkg-old in package_file.conf
in postrm script (remove)


Thank you

Anthony


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



Re: Should dpkg-source -x list patches (Re: How to handle Debian patches)

2008-05-20 Thread Lars Wirzenius
ti, 2008-05-20 kello 00:01 +0200, Andreas Tille kirjoitti:
  The debian Diff is not hiding patches in the upstream code. It is the
  canonical place to publish them (at least for some (most?) of the debian
  packages following policy).
 
 Well, I'm DD for 10 years - I know this fact.  But did you read about
 habits of other fellow developers in this thread.  Just reread and come back
 if you are really sure that an extra hint about patches is really useless.

I'm a fairly long-time Unix user. I find it much preferably when command
line tools are quiet by default when things are going well. Providing a
--verbose option rather than a --quiet option would be my preference.
Having a tool print out a lot of information that is peripheral to what
I'm doing is distracting, and if it happens often, I start mentally
ignoring the output until something breaks. Listing patches when I
unpack source is one of those cases to me.



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



Re: divergence from upstream as a bug

2008-05-20 Thread Don Armstrong
On Tue, 20 May 2008, Pierre Habouzit wrote:
TTBOMK emacs does too.

Emacs is currently evaluating debbugs.


Don Armstrong

-- 
I may not have gone where I intended to go, but I think I have ended
up where I needed to be.
 -- Douglas Adams _The Long Dark Tea-Time of the Soul_

http://www.donarmstrong.com  http://rzlab.ucr.edu


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



Re: divergence from upstream as a bug

2008-05-20 Thread Don Armstrong
On Mon, 19 May 2008, Stefano Zacchiroli wrote:
 How I'm reading the latter paragraph is that patch messages are
 *alternative* as some non-patch summary message, am I wrong? I think
 the two should be orthogonal: you can have or not a summary message,
 you can have or not a patch.

The idea was that a patch, since it would actually contain the
resolution of the original problem, would be the correct place to
summarize the problem. However, on thinking about it more, I think
that having a single summary, with a set of patches and possibly
attachments located near the summary is the way to go. I haven't
completely decided how this should be implemented, though.

 But still this does not solve another problem we have with patch
 management in the BTS: they are sometimes inlined, while sometimes
 the are attached. Can't we fix attachment as the required format for
 patches? (e.g. forcing an attachment if one wants to add +patch or
 something similar). This + the forthcoming ability above to identify
 *the* latest patch will give us the ability to automatically extract
 patches from bug reports.

This is an unecessary restriction, as not all patches need necessarily
be diff files. Making it easy to extract extractable patches should be
good enough; those that can't will just have to refer to a message.


Don Armstrong

-- 
Clint why the hell does kernel-source-2.6.3 depend on xfree86-common?
infinity It... Doesn't?
Clint good point

http://www.donarmstrong.com  http://rzlab.ucr.edu


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



Re: How to handle Debian patches

2008-05-20 Thread Stefano Zacchiroli
On Sat, May 17, 2008 at 10:18:58PM +0100, Roger Leigh wrote:
 The syntax for the fields also does not currently let you specify a
 branch or tag, it's just the whole repo.  Personally, I'd like it to
 allow specification of the branch/tag used to produce the specific
 release of the package in Sources.gz (or better, the latest
 development on that branch).
 
 For example:
 
   Vcs-Git: git://git.debian.org/git/buildd-tools/schroot
 
 This gives you the master branch, but the Debian packages are actually
 on the schroot-1.2 stable release branch.  For people who want to hack
 on what's actually in use in Debian testing/unstable right now, this
 is the wrong branch.

This is coherent with the initial idea of the field: give a human being
(the Debian maintainer) a pointer to where the packages is being worked
on. Then you will need some additional information to know where to
look, as you would looking on the VCS tab of sourceforge or on the
author homepage.

If, as it seems to me, we are now starting to feel the need of having
more structure Vcs-* information so as to enable _automatic_ processing
of VCS information, well, let's sit down and standardize that. Though
note that this will need to be done on a per-Vcs basis, as concepts from
one VCS not necessarily apply to other (that's for example why we have
$VCS-buildpackage rather than a single vcs-buildpackage).

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Re: How to handle Debian patches

2008-05-20 Thread Stefano Zacchiroli
On Mon, May 19, 2008 at 09:58:55AM -0500, Manoj Srivastava wrote:
 And then you go saying things like that:
  It is trivial to generate a quilt format package from git/arch/hg/svn
  and I'm sure there will be a RCS-build-package soon enough that does
  that. 
 This can not happen without manual intervention, if the topic
  branches have overlap. And  Redoing the manual conflict resolution over

I stopped buying this argument (generally, not specifically from you) on
the basis that in most of the cases packages have several non
overlapping patches wrt upstream.  So the trivial part above is indeed
true for a lot of packages.

The remaining ones will indeed need manual intervention, but aren't this
kind of changes those which are supposed to be pushed upstream? So some
more burden on the developer on these rare (if you buy my statement
above) cases can even be beneficial from a social point of view.

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Re: divergence from upstream as a bug

2008-05-20 Thread Stefano Zacchiroli
On Tue, May 20, 2008 at 09:02:21AM +0100, Don Armstrong wrote:
 The idea was that a patch, since it would actually contain the
 resolution of the original problem, would be the correct place to
 summarize the problem. However, on thinking about it more, I think
 that having a single summary, with a set of patches and possibly
 attachments located near the summary is the way to go. I haven't

Fair enough, but why are you referring to a _set_ of patches? For the
sake of simplicity assuming that a bug has a single patch sounds like a
fair assumption to me. Of course the patch can patch multiple files and
of course and can be obtained only after a round of repeated
submissions, but in the end: one bug, one patch.  If you agree on this I
think the BTS interface should exploit the principle: at most one
current patch, as it will have at most one current summary.

  But still this does not solve another problem we have with patch
  management in the BTS: they are sometimes inlined, while sometimes
  the are attached. Can't we fix attachment as the required format for
 This is an unecessary restriction, as not all patches need necessarily
 be diff files. Making it easy to extract extractable patches should be
 good enough; those that can't will just have to refer to a message.

What other kind of patches, beside diffs, are you referring to? Stuff
like prose explanation on how to fix a problem, binary blobs, or what
else?  I tend to believe that diffs are the only things we are usually
interested in pushing upstream, but not knowing the other kind of
patches you have in mind I can't be sure.

Anyhow, even if you make the distinction between extractable and
non-extractable patches, I think diff should be extractable, and
allowing them to be inlined is a PITA.  Maybe this can be overcomed at
an API implementation level, with some logics to recognize inlined diffs
in messages tagged +patch which are missing attachments? It starts
looking complicate though ...

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Re: How to handle Debian patches

2008-05-20 Thread Pierre Habouzit
On Tue, May 20, 2008 at 06:07:14AM +, Goswin von Brederlow wrote:
 How do you tell git-rerere to keep all conflict resolutions needed to
 convert feature branches into a patch series but not others?

  I was merely answering a first set of questions, for the rest please
read documentation git-rerere(1) e.g. This part of the thread is
*really* becoming OT.

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpacYazid1E6.pgp
Description: PGP signature


Re: divergence from upstream as a bug

2008-05-20 Thread Don Armstrong
On Tue, 20 May 2008, Stefano Zacchiroli wrote:
 On Tue, May 20, 2008 at 09:02:21AM +0100, Don Armstrong wrote:
  The idea was that a patch, since it would actually contain the
  resolution of the original problem, would be the correct place to
  summarize the problem. However, on thinking about it more, I think
  that having a single summary, with a set of patches and possibly
  attachments located near the summary is the way to go. I haven't
 
 Fair enough, but why are you referring to a _set_ of patches?

There may just be one current patch, but having access to the previous
patches and/or attachments which describe the problem easily is
useful. Whether debbugs display just one or displays many is a trivial
decision once debbugs tracks them all.
 
  This is an unecessary restriction, as not all patches need
  necessarily be diff files. Making it easy to extract extractable
  patches should be good enough; those that can't will just have to
  refer to a message.
 
 What other kind of patches, beside diffs, are you referring to?
 Stuff like prose explanation on how to fix a problem, binary blobs,
 or what else?

Yes.

 Anyhow, even if you make the distinction between extractable and
 non-extractable patches, I think diff should be extractable, and
 allowing them to be inlined is a PITA. Maybe this can be overcomed
 at an API implementation level, with some logics to recognize
 inlined diffs in messages tagged +patch which are missing
 attachments? It starts looking complicate though ...

I don't want to add in a set of restriction mechanisms to when a tag
can and cannot be placed. Making the automatic extraction work with
extractable patches and attachments and documenting this fact should
be enough to encourage their use without unecessarily restricting
flexibility and making the tagging fragile because of it.


Don Armstrong

-- 
Democracy is more dangerous than fire. Fire can't vote itself immune
to water.
 -- Michael Z. Williamson

http://www.donarmstrong.com  http://rzlab.ucr.edu


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



Re: divergence from upstream as a bug

2008-05-20 Thread Pierre Habouzit
On Tue, May 20, 2008 at 07:50:10AM +, Don Armstrong wrote:
 On Tue, 20 May 2008, Pierre Habouzit wrote:
 TTBOMK emacs does too.
 
 Emacs is currently evaluating debbugs.

  Well, then my point stands, debbugs _is_ also a sane BTS for reporting
bugs :)

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgpjLqif6RjxR.pgp
Description: PGP signature


Re: Heads up: ffmpeg transition (SONAME Change!)

2008-05-20 Thread Reinhard Tartler
Reinhard Tartler [EMAIL PROTECTED] writes:

 Dear fellow debian developers.

 Currently debian/testing ships a very old copy of ffmpeg, dated from
 0.cvs20070307. We, the ffmpeg maintainers (Fabian Greffrath and myself)
 do not consider that version of ffmpeg acceptable for release in debian
 lenny. Many newer applications of ffmpeg (like mplayer) require a newer
 ffmpeg to build, others (like xine) are waiting for debian to update the
 ffmpeg package.

The new ffmpeg package now has entered unstable and did build on all
architectures successfully. Please rebuild your packages against this
new version of ffmpeg at your earliest convenience.

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


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



possible mass-bug filing on fc-cache-using packages

2008-05-20 Thread martin f krafft
Hi folks,

I noticed the other day that there are quite a few packages like
ttf-bitstream-vera which do the following in
/var/lib/dpkg/info/ttf-bitstream-vera.postinst:

  if [ $1 = configure -a -x /usr/bin/fc-cache ]
  then
echo -n Regenerating fonts cache... 
HOME=/root fc-cache -f -v 1/var/log/fontconfig.log 21 || \
(echo failed; see /var/log/fontconfig.log for more information.; \
exit 1)
echo done.
  fi

This is wrong. Using ()'s creates a subshell, and exit then only
exits the subshell, not the postinst (which I believe it's supposed
to do). The code either needs an || exit $? appended, or {}'s
should be used. Compare

  sh -c '( echo foo; exit 1; ); echo bar' 
  sh -c '{ echo foo; exit 1; }; echo bar' 

The reason seems to be brainless cut-n-pasting.

I think this calls for a mass-bug filing on fc-cache-using packages,
severity minor. But instead of having everyone fix this, I wonder
why debhelper isn't taking care of this. Thoughts?

-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
even a stopped clock gives the right time twice a day.
-- orbital


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


Re: possible mass-bug filing on fc-cache-using packages

2008-05-20 Thread brian m. carlson

On Tue, May 20, 2008 at 12:05:46PM +0100, martin f krafft wrote:

Hi folks,

I noticed the other day that there are quite a few packages like
ttf-bitstream-vera which do the following in
/var/lib/dpkg/info/ttf-bitstream-vera.postinst:

 if [ $1 = configure -a -x /usr/bin/fc-cache ]
 then
   echo -n Regenerating fonts cache... 
   HOME=/root fc-cache -f -v 1/var/log/fontconfig.log 21 || \
   (echo failed; see /var/log/fontconfig.log for more information.; \
   exit 1)
   echo done.
 fi

This is wrong. Using ()'s creates a subshell, and exit then only
exits the subshell, not the postinst (which I believe it's supposed
to do). The code either needs an || exit $? appended, or {}'s
should be used. Compare


I could be wrong, but if the subshell exits 1, then the entire
expression is false, and so if you are using set -e like you're
supposed to, then the postinst fails.

For example, at the prompt, try:
  (set -e; echo 1; false || (echo error; exit 1); echo 2)
which will never print 2.

ttf-bitstream-vera isn't using set -e, which is probably a bug.  ISTR
that policy dictated set -e.

--
brian m. carlson / brian with sandals: Houston, Texas, US
+1 713 440 7475 | http://crustytoothpaste.ath.cx/~bmc | My opinion only
troff on top of XML: http://crustytoothpaste.ath.cx/~bmc/code/thwack
OpenPGP: RSA v4 4096b 88AC E9B2 9196 305B A994 7552 F1BA 225C 0223 B187


signature.asc
Description: Digital signature


Re: possible mass-bug filing on fc-cache-using packages

2008-05-20 Thread Josselin Mouette
Le mardi 20 mai 2008 à 12:05 +0100, martin f krafft a écrit :
   if [ $1 = configure -a -x /usr/bin/fc-cache ]

Note -that the $1 = configure check is wrong, see #446856.

 (echo failed; see /var/log/fontconfig.log for more information.; \
 exit 1)

 This is wrong. Using ()'s creates a subshell, and exit then only
 exits the subshell, not the postinst (which I believe it's supposed
 to do). 

Since the postinst uses set -e, it will also exit it.

 But instead of having everyone fix this, I wonder
 why debhelper isn't taking care of this. Thoughts?

This is not needed anymore. Fontconfig should manage this through a
trigger, removing entirely those snippets.

Cheers,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


signature.asc
Description: Ceci est une partie de message	numériquement signée


Re: possible mass-bug filing on fc-cache-using packages

2008-05-20 Thread martin f krafft
also sprach brian m. carlson [EMAIL PROTECTED] [2008.05.20.1321 +0100]:
 I could be wrong, but if the subshell exits 1, then the entire
 expression is false, and so if you are using set -e like you're
 supposed to, then the postinst fails.

The policy mentions it, but it doesn't say set -e is required.
ttf-bitstream-vera does not use it.

 ttf-bitstream-vera isn't using set -e, which is probably a bug.  ISTR
 that policy dictated set -e.

I don't think so, section 6.1:

  or shell scripts this means that you almost always need to use set
  -e (this is usually true when writing shell scripts, in fact).

This, to me, is waste of space in a policy document.



also sprach Josselin Mouette [EMAIL PROTECTED] [2008.05.20.1323 +0100]:
 Le mardi 20 mai 2008 à 12:05 +0100, martin f krafft a écrit :
if [ $1 = configure -a -x /usr/bin/fc-cache ]
 
 Note -that the $1 = configure check is wrong, see #446856.

Also, the -a is a bashism, isn't it?

 Since the postinst uses set -e, it will also exit it.

It does not.

  But instead of having everyone fix this, I wonder
  why debhelper isn't taking care of this. Thoughts?
 
 This is not needed anymore. Fontconfig should manage this through a
 trigger, removing entirely those snippets.

Okay, that should make it easier... :)

-- 
 .''`.   martin f. krafft [EMAIL PROTECTED]
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
 
it isn't pollution that's harming the environment.
 it's the impurities in our air and water that are doing it. 
  - dan quayle


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


Re: possible mass-bug filing on fc-cache-using packages

2008-05-20 Thread Adam D. Barratt

martin f krafft wrote, Tuesday, May 20, 2008 1:41 PM

also sprach Josselin Mouette [EMAIL PROTECTED] [2008.05.20.1323 +0100]:
 Le mardi 20 mai 2008 à 12:05 +0100, martin f krafft a écrit :
if [ $1 = configure -a -x /usr/bin/fc-cache ]

 Note -that the $1 = configure check is wrong, see #446856.

Also, the -a is a bashism, isn't it?


It is, but one that policy 10.4 explicitly permits.

Adam 



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



Re: How to handle Debian patches

2008-05-20 Thread Gunnar Wolf
Goswin von Brederlow dijo [Tue, May 20, 2008 at 08:10:05AM +0200]:
  If I understand things correctly (but I'm really not sure I do), 3.0
  (quilt) won't really help with that: it won't prevent maintainers to
  directly modify files outside of debian/ , and generate a huge
  debian/patches/debian-changes-version.diff.
 
 Yes it will. Any modified file will end up in debian/patches/ instead
 of modifying the file directly. It will not prevent patches but it
 ensures they are used exclusively. So no packages that change some
 files directly and use debian/patches/ for others.

Ok... I have not followed the development of the new package version

  But with some time put to it, we can end up including a the
  maintainer shuold not modify files outside of the debian/ directory
  without a strong rationale, and provide lintian checks for packages
  still directly modifying upstream code...
 
 Do you mean no debian/patches at all?

No, of course not - But I _do_ mean no patches with no rationale at
all. If I understand correctly, were I to repackage something I have
now that directly modifies the upstream code, my whole unorganized
patchwork probably become something like debian/patches/01. Of course,
a tool cannot understand _what_ it does, and how it should be split. I
suppose (and, again, I'm just guessing right now, please forgive me) a
good maintainer would split and name that in
debian/patches/01_fixes_blah, debian/patches/02_foo and so on, and in
each of the files' headers would note what bug or issue is this patch
addressing. And we can make tools understand said headers - and
complain if an unexplained patch was found.

Greetings,

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF


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



Bug#482047: ITP: openssl-blacklist -- list of blacklisted OpenSSL RSA keys

2008-05-20 Thread Christoph Martin
Package: wnpp
Severity: wishlist
Owner: Christoph Martin [EMAIL PROTECTED]


Contains the list of known-bad OpenSSL keys for openssl-vulnkey to use when
 examining suspect keys.

The Ubuntu openssl maintainers released a openssl-blacklist equivalent
to the openssh-blacklist package. It includes a blacklist with
compromised openssl key hashes and a program with a openssl-vulnkey
program suitable to test your openssl key files.

I think it would be a good think to coordinate the work between debian
and ubuntu and to incorporate this package into debian main.

* Package name: openssl-blacklist
  Version : 0.1
  Upstream Author : Jamie Strandboge [EMAIL PROTECTED]
* URL : https://launchpad.net/ubuntu/+source/openssl-blacklist/
* License : (GPL.)
  Programming Lang: (Python)
  Description : list of blacklisted OpenSSL RSA keys

(Include the long description here.)

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (900, 'stable'), (70, 'testing'), (50, 'unstable')
Architecture: i386 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.22-4-amd64
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)



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



Re: Heads up: ffmpeg transition (SONAME Change!)

2008-05-20 Thread Adeodato Simó
* Reinhard Tartler [Tue, 20 May 2008 11:57:39 +0200]:

 Reinhard Tartler [EMAIL PROTECTED] writes:

  Dear fellow debian developers.

  Currently debian/testing ships a very old copy of ffmpeg, dated from
  0.cvs20070307. We, the ffmpeg maintainers (Fabian Greffrath and myself)
  do not consider that version of ffmpeg acceptable for release in debian
  lenny. Many newer applications of ffmpeg (like mplayer) require a newer
  ffmpeg to build, others (like xine) are waiting for debian to update the
  ffmpeg package.

 The new ffmpeg package now has entered unstable and did build on all
 architectures successfully. Please rebuild your packages against this
 new version of ffmpeg at your earliest convenience.

Er, is there a reason you're proposing this, instead of the release team
scheduling binNMUs?

Cheers,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
 Listening to: Mónica Naranjo - Desátame


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



Bug#482051: ITP: libcompress-raw-bzip2-perl -- low-level interface to libbz2 compression library

2008-05-20 Thread Bas Zoetekouw
Package: wnpp
Severity: wishlist
Owner: Bas Zoetekouw [EMAIL PROTECTED]

* Package name: libcompress-raw-bzip2-perl
  Version : 2.011
  Upstream Author : Paul Marquess [EMAIL PROTECTED]
* URL : * http://search.cpan.org/~pmqs/Compress-Raw-Bzip2-2.011/
* License : dual GPL1+ and Artistic
  Programming Lang: perl
  Description : low-level interface to libbz2 compression library

The Compress::Raw::Bzip2 module provides a Perl low-level interface to the
libbz2 compression library.

This is the bzip2 sister of libcompress-raw-zlib-perl, and is needed
for libio-compress-bzip2-perl, which I am also packaging.


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)



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



Bug#482054: ITP: libio-compress-bzip2-perl -- Read and write bzip2-compressed files and buffers in perl

2008-05-20 Thread Bas Zoetekouw
Package: wnpp
Severity: wishlist
Owner: Bas Zoetekouw [EMAIL PROTECTED]

* Package name: libio-compress-bzip2-perl
  Version : 2.011
  Upstream Author : Paul Marquess [EMAIL PROTECTED]
* URL : * http://search.cpan.org/~pmqs/IO-Compress-Bzip2-2.011/
* License : dual GPL1+ and Artistic
  Programming Lang: Perl
  Description : Read and write bzip2-compressed files and buffers in perl

 This package provides a Perl interface that allows reading and
 writing bzip2 compressed data to files or buffers.

 It contains two perl modules: IO::Compress::Bunzip2 and
 IO::Uncompress::Bunzip2.


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)



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



Re: Heads up: ffmpeg transition (SONAME Change!)

2008-05-20 Thread Reinhard Tartler
Adeodato Simó [EMAIL PROTECTED] writes:

 Er, is there a reason you're proposing this, instead of the release team
 scheduling binNMUs?

Oh, I'm sorry, you are completely right. Please ignore my post.

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


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



Re: Heads up: ffmpeg transition (SONAME Change!)

2008-05-20 Thread Paul Wise
On Tue, May 20, 2008 at 10:33 PM, Reinhard Tartler [EMAIL PROTECTED] wrote:
 Adeodato Simó [EMAIL PROTECTED] writes:

 Er, is there a reason you're proposing this, instead of the release team
 scheduling binNMUs?

 Oh, I'm sorry, you are completely right. Please ignore my post.

Some packages will need source changes, at least synfig was bit by a
structure member changing from a structure to a pointer. KiBi or I
will do this one in the next few days.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


Re: divergence from upstream as a bug

2008-05-20 Thread Michael Banck
On Tue, May 20, 2008 at 07:48:55AM +0200, Goswin von Brederlow wrote:
 Michael Banck [EMAIL PROTECTED] writes:
  Try to git-format-patch (or whatever tool applies for the particular
  DVCS) each feature branch, see whether they apply cleanly by
  luck/accident.  If so, store them as a 3.0 (quilt) debian/patches.
 
 They will not except for trivial cases. And in trivial cases you can
 probably seperate patches from on big patch reasonably well too.

I'm not sure what you mean with trivial cases.  Most patches I've seen
to upstream involve different source files, with the exception of
Makefile{,.in,.am}, maybe.  Even if a change involves several source
files and another the same, it's not a given that the changes necessary
overlap.

So I think it works except for complicated cases.


Michael


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



Bug#482073: ITP: wnpp -- libwill-paginate-ruby

2008-05-20 Thread Gunnar Wolf
Package: wnpp
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org

--- Please fill out the fields below. ---

   Package name: libwill-paginate-ruby
Version: 2.3.2
Upstream Author: Mislav Marohnić [EMAIL PROTECTED]
URL: http://github.com/mislav/will_paginate/wikis
License: MIT/X
Description: Ruby plugin adding pagination to ActiveRecord

Pagination is just limiting the number of records displayed, showing a
subset of them at any given view, and allowing you to move the
displayed window. This plugin makes the whole process a breeze.

WillPaginate is aimed at being used from the Ruby on Rails framework.

-- 
Gunnar Wolf - [EMAIL PROTECTED] - (+52-55)5623-0154 / 1451-2244
PGP key 1024D/8BB527AF 2001-10-23
Fingerprint: 0C79 D2D1 2C4E 9CE4 5973  F800 D80E F35A 8BB5 27AF



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



Re: divergence from upstream as a bug

2008-05-20 Thread Stefano Zacchiroli
On Tue, May 20, 2008 at 10:28:45AM +0100, Don Armstrong wrote:
  Fair enough, but why are you referring to a _set_ of patches?
 
 There may just be one current patch, but having access to the previous
 patches and/or attachments which describe the problem easily is
 useful. Whether debbugs display just one or displays many is a trivial
 decision once debbugs tracks them all.

ACK. The only non trivial design issue is that it should be possible to
mark some of the patches as denoting the current patch state, probably
the same you are going to do for the summary (i.e. marking one of the
message in the bug log as current bug state). Thanks for this
developments BTW.

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Re: Packages using VCS but with no 'Vcs-*' control field

2008-05-20 Thread Stefano Zacchiroli
On Sun, May 18, 2008 at 12:03:32PM +0300, Lars Wirzenius wrote:
 su, 2008-05-18 kello 18:40 +1000, Ben Finney kirjoitti:
  This would still not meet the stated requirement for the proposed mass
  bug filing, of finding packages that *do* use a VCS but don't declare
  it.
snip
 Of course, I wouldn't do a mass bug filing yet. I'd add a lintian check
 first, and do a d-d-a mail, and wait a couple of months.

And how would the lintian check work? lintian works on source and binary
packages, there usually all hints that the package is using a VCS are
lost (even more now that dpkg-source strip out VCS-specific files by
default, which is not a bad thing per se).

See another post of mine in this thread, I've thought at the problem of
discovering undeclared Vcs-* headers and I'm running out of good ideas.
The best I've right now is to harvest alioth.d.o looking for
debian/control-s, but there is quite a lot of room for false positives,
probably too much ...

Cheers.

-- 
Stefano Zacchiroli -*- PhD in Computer Science ... now what?
[EMAIL PROTECTED],cs.unibo.it,debian.org}  -%-  http://upsilon.cc/zack/
(15:56:48)  Zack: e la demo dema ?/\All one has to do is hit the
(15:57:15)  Bac: no, la demo scema\/right keys at the right time


signature.asc
Description: Digital signature


Re: divergence from upstream as a bug

2008-05-20 Thread Don Armstrong
On Tue, 20 May 2008, Stefano Zacchiroli wrote:
 The only non trivial design issue is that it should be possible to
 mark some of the patches as denoting the current patch state

Presumably the most recent patch is the current one; that's what I'm
actually going to do for summaries.


Don Armstrong

-- 
Guns Don't Kill People.
*I* Kill People.

http://www.donarmstrong.com  http://rzlab.ucr.edu


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



what about an special QA package priority?

2008-05-20 Thread Luciano Bello
Hi list,
I was thinking about the Debian/OpenSSL debacle. Clearly it not easy to 
manage a hard meticulous QA process in all packages. In the other hand, there 
are packages more critical than others, which are more delicate to security.
Sometimes, those packages have different priorities in the policy 
meaning. 
Maybe we can implement this as an Optional header in the control.
The point is: if we can create critical QA category for delicate 
packages in 
the security sense we can have mandatory QA requirement. For example:
 - It should be checked with debugging tools (like valgrind :P)
 - It should maintained by a team
 - It should a public VCS
 - Its patches should be sign-off by reviewers (Raphael Hertzog (hertzog@) 
proposed something like this)

You can extend or reduce this list. We can discuss about the 
implementation. 
But I mainly want to know your opinion.
Please, paste the URL if you discussed this in the pass.

luciano


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


Re: Bug#481973: ITP: libiptables-parse-perl -- Perl extension for parsing iptables firewall rulesets

2008-05-20 Thread Franck JONCOURT

[...]

 BTW: Just in case you don't know, there's the Debian Perl Group that
 could help with the two lib*-perl packages:
 http://wiki.debian.org/Teams/DebianPerlGroup

Thanks, I did not know about it.

---
Franck Joncourt
http://www.debian.org/ - http://smhteam.info/wiki/



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



Re: Should dpkg-source -x list patches (Re: How to handle Debian patches)

2008-05-20 Thread Bernd Eckenfels
In article [EMAIL PROTECTED] you wrote:
 modified. A quick inspection shows that for most of them the only change
 is the path to Perl in the first line.

Yes, and I really wonder why they are using local perl and removing the -w
flag. Both is against best practise. I was actually asuming while seeing the
list of files, it would be the other way around :)

Gruss
Bernd


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



Bug#482124: ITP: lxnm -- Lightweight X11 Network Manager

2008-05-20 Thread Andrew Lee
Package: wnpp
Severity: wishlist
Owner: Andrew Lee [EMAIL PROTECTED]

* Package name: lxnm
  Version : 0.2
  Upstream Author : Fred Chien [EMAIL PROTECTED]
* URL : http://lxde.sf.net/
* License : (GPL)
  Programming Lang: (C, shell script.)
  Description : Lightweight X11 Network Manager

 LXNM(Lightweight X11 Network Manager) is a script-based lightweight
 network manager with fewer dependencies. It attempts to make networking
 configuration and setup as painless and automatic as possible.
 .
 LXNM is the default Network Manager for LXDE(the Lightweight X11
 Desktop Environment) project. It currently only works with netstat
 plugin of lxpanel.

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

Kernel: Linux 2.6.25-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash



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



Re: what about an special QA package priority?

2008-05-20 Thread Miriam Ruiz
2008/5/20 Luciano Bello [EMAIL PROTECTED]:
 But I mainly want to know your opinion.

I think it would be a good idea to have something like that :)

Greetings,
Miry


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



Re: what about an special QA package priority?

2008-05-20 Thread William Pitcock
Hi,

On Tue, 2008-05-20 at 17:21 -0300, Luciano Bello wrote:
 Hi list,
   I was thinking about the Debian/OpenSSL debacle. Clearly it not easy to 
 manage a hard meticulous QA process in all packages. In the other hand, there 
 are packages more critical than others, which are more delicate to security.
   Sometimes, those packages have different priorities in the policy 
 meaning. 
 Maybe we can implement this as an Optional header in the control.
   The point is: if we can create critical QA category for delicate 
 packages in 
 the security sense we can have mandatory QA requirement. For example:
  - It should be checked with debugging tools (like valgrind :P)

Isn't valgrind how we got into this mess to begin with?

  - It should maintained by a team
  - It should a public VCS
  - Its patches should be sign-off by reviewers (Raphael Hertzog (hertzog@) 
 proposed something like this)
 
   You can extend or reduce this list. We can discuss about the 
 implementation. 
 But I mainly want to know your opinion.
   Please, paste the URL if you discussed this in the pass.
 
 luciano

I think for critical packages, valgrind prettyness isn't something to
care about (unless the interest is generating suppressions).

William



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


Re: what about an special QA package priority?

2008-05-20 Thread Nicolas François
Hi,

On Tue, May 20, 2008 at 05:21:07PM -0300, Luciano Bello wrote:
 Hi list,
 I was thinking about the Debian/OpenSSL debacle. Clearly it not easy to 
 manage a hard meticulous QA process in all packages. In the other hand, there 
 are packages more critical than others, which are more delicate to security.
 Sometimes, those packages have different priorities in the policy meaning. 
 Maybe we can implement this as an Optional header in the control.
 The point is: if we can create critical QA category for delicate packages in 
 the security sense we can have mandatory QA requirement.

It will be hard to define this list of delicate packages.
For example, I'm not sure I would have put openssl in the list a few weeks
ago.
I would have first think about setuid/setgid programs, servers, with high
popcon packages first.

 For example:
  - It should be checked with debugging tools (like valgrind :P)

It's not always needed.
It may show some bad practices, but having a command line utility which
allocate some resources (memory, syslog, files, PAM, ...) and does not
free them directly (i.e. it relies on system to do the cleanup on exit) is
not an issue.

If you want to improve quality, you can also recommend using checkers
(splint, security checkers), code metrics tools (e.g. pmccabe), unit tests

It might be good to recommend these tools (including valgrind), and to
provide some web services to provide the reports of these tools (IIRC,
there is already some servers with rats reports; for other checkers,
formalizing some debian/rules rules could help to to start the checkers).
But I don't think it will be possible to have them mandatory.

  - It should maintained by a team

We will only be able to advertise that these packages need comaintainers.
Or is there a defined response for the delicate packages with no
teams/comaintainers.

  - It should a public VCS
  - Its patches should be sign-off by reviewers (Raphael Hertzog (hertzog@) 
 proposed something like this)

ACK for both.

 You can extend or reduce this list. We can discuss about the implementation. 
 But I mainly want to know your opinion.

I really appreciate the idea, but it might be hard to implement.

-- 
Nekral


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



debian-installer: driver disk compatibility

2008-05-20 Thread Ken Teague
Since Debian isn't really supported by most hardware vendors, it makes
it difficult to install the distribution when the kernel on the
installation media doesn't support, say, a RAID controller or the IDE
chipset... things of that nature.  However, hardware vendors over the
years are starting to embrace and support some of the other major
distributions such as Red Hat, SuSE, and others.

What method does Debian have for someone to load a 3rd party module,
besides going to another VT and manually doing it?  Would it be too much
to request that the Debian installer be adjusted to accept 3rd party
driver disks designed for other major distributions?  For example, lets
say I have a new motherboard with a chipset that isn't supported by the
current Linux kernel on the Debian installation media.  I go to said
manufacturers web site and they have downloads for Red Hat and SuSE.  I
download either of the two, pop in the coughfloppy disk/cough, and
Debian is able to determine whether it's designed for distribution X and
loads the module.  That, in itself, would be the next best thing since
the alien package. :-)

Best regards,
Ken Teague


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



Re: what about an special QA package priority?

2008-05-20 Thread Ron Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On 05/20/08 18:42, Nicolas François wrote:
 Hi,
 
 On Tue, May 20, 2008 at 05:21:07PM -0300, Luciano Bello wrote:
[snip]
 
 For example:
  - It should be checked with debugging tools (like valgrind :P)
 
 It's not always needed.
 It may show some bad practices, but having a command line utility which
 allocate some resources (memory, syslog, files, PAM, ...) and does not
 free them directly (i.e. it relies on system to do the cleanup on exit) is
 not an issue.
 

Still, though, it's Bad Practice not to clean up after yourself,
even though it's just a command line utility.  Who knows what
weird, unexpected side effects there might be from running such an
app within a tight bash loop.

- --
Ron Johnson, Jr.
Jefferson LA  USA

ESPN makes baseball players better.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iD8DBQFIM4mtS9HxQb37XmcRArSXAJ92VD0i7lBncKAt65cOo2J2s7aq8wCfUsfz
NHsVsPSaxuuaWonjTRuLJ0o=
=ee7/
-END PGP SIGNATURE-


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



Re: debian-installer: driver disk compatibility

2008-05-20 Thread Roberto C . Sánchez
On Tue, May 20, 2008 at 07:39:24PM -0700, Ken Teague wrote:
 
 For example, lets
 say I have a new motherboard with a chipset that isn't supported by the
 current Linux kernel on the Debian installation media.  I go to said
 manufacturers web site and they have downloads for Red Hat and SuSE.  I
 download either of the two, pop in the coughfloppy disk/cough, and
 Debian is able to determine whether it's designed for distribution X and
 loads the module.  That, in itself, would be the next best thing since
 the alien package. :-)
 
The main problem with that is that it would require one of the
following:

 1. the module be compiled against an ABI-compatible kernel

 OR

 2. the source be included on the disk, the headers to the kernel be
 available on the install medium, along with a compiler, and then
 compile the module right there on the spot

The first one is highly unlikely to happen.  The second would be a pain
to implement and would probably require an extra CD and possible
redistributing how packages are distributed on the CDs.  To say nothing
of the massive memory requirement (in comparison with the paltry 16 MB
or 24 MB requirement of the regular installer) that would be imposed to
be able to do that.

Regards,

-Roberto

-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


Re: How to handle Debian patches

2008-05-20 Thread Manoj Srivastava
On Tue, 20 May 2008 08:00:48 +0200, Goswin von Brederlow [EMAIL PROTECTED] 
said: 

 Manoj Srivastava [EMAIL PROTECTED] writes:
 On Mon, 19 May 2008 10:42:54 +0200, Goswin von Brederlow
 [EMAIL PROTECTED] said:
 
 Hmm. You say things like this:
 Because the git format is imho conceptualy broken and the
 implementation is far from completely thought out.
 
 And then you go saying things like that:
 It is trivial to generate a quilt format package from
 git/arch/hg/svn and I'm sure there will be a RCS-build-package soon
 enough that does that.
 
 This can not happen without manual intervention, if the topic
 branches have overlap. And Redoing the manual conflict resolution
 over and over and over again is a burden (the manual conflict
 resolution lives generally in the integration branch history, and can
 be done once, and mostly ignored from that point on).

 A quilt format package with a single combined patch. Get the
 integration branch, get orig.tar.gz, build. dpkg-buildpackage will
 automatically create a debian_version.patch for you. It is easy.

How is this better than the current diff.gz thing?

 I'm not saying you get a nice and shiny debian/patches/* out of
 it. That indeed needs human interaction as already said elsewhere.

 To the non git (even not quilt) experienced user the combined patch
 will be usable in that he can edit the source and fix bugs. The git
 format does not allow that.

Unpack a 3.0 (git) source package. Hack.
 git commit -a -mWhy I hacked this.
 dpkg-buildpackage

Seems like does not allow is a bit strong.

As more and more people swithc to git, git awareness will
 spread, making more people who can actually deal with creating a git
 branch to make changes on.  Seems like a long term win.

 Even with some git knowledge I think that most users that write a
 patch won't follow the maintainers workflow. They won't find the right
 feature branch a patch belongs to and how to merge that into an
 integration branch. Instead they will just edit the source, git commit
 and send the resulting patch. And that means you get a patch against
 the integration branch. Same as you would with the quilt format.

The users are not really following the maintainers workflow even
 in the git case (If I have to modify patch 7 of 9, I need some
 quilt-fu).

manoj

-- 
Do unto others before they undo you.
Manoj Srivastava [EMAIL PROTECTED] http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


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



Re: what about an special QA package priority?

2008-05-20 Thread John Hasler
Ron Johnson writes:
 Still, though, it's Bad Practice not to clean up after yourself, even
 though it's just a command line utility.  Who knows what weird,
 unexpected side effects there might be from running such an app within a
 tight bash loop.

None.  If the process exits it exits.  It doesn't matter how quickly it is
started again.
-- 
John Hasler


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



Re: How to handle Debian patches

2008-05-20 Thread Manoj Srivastava
On Tue, 20 May 2008 00:44:44 +0200, Stefano Zacchiroli [EMAIL PROTECTED] 
said: 

 On Mon, May 19, 2008 at 09:58:55AM -0500, Manoj Srivastava wrote:
 And then you go saying things like that:
  It is trivial to generate a quilt format package from
  git/arch/hg/svn and I'm sure there will be a RCS-build-package soon
  enough that does that.
 This can not happen without manual intervention, if the topic
 branches have overlap. And Redoing the manual conflict resolution
 over

 I stopped buying this argument (generally, not specifically from you)
 on the basis that in most of the cases packages have several non
 overlapping patches wrt upstream.  So the trivial part above is
 indeed true for a lot of packages.

If you want to only cater to package who currently do not have
 overlapping branches, sure. I am not sure I'll feel motivated enough to
 go along with a partial solution, but perhaps you do not need everyone
 buy-in.

 The remaining ones will indeed need manual intervention, but aren't
 this kind of changes those which are supposed to be pushed upstream?
 So some more burden on the developer on these rare (if you buy my
 statement above) cases can even be beneficial from a social point of
 view.

While in theory evey divergence is something to be pushed
 upstream, and anything ihn ./debian/patches should disappear, in
 practice, for multitudinous reasons, we still have divergence.  Any
 policy that relies on this not being the case is, umm, being somewhat
 unrealistic. 

manoj
-- 
In every country and every age, the priest has been hostile to
Liberty. Thomas Jefferson
Manoj Srivastava [EMAIL PROTECTED] http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


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



Re: How to handle Debian patches

2008-05-20 Thread Ben Finney
Stefano Zacchiroli [EMAIL PROTECTED] writes:

 The remaining ones will indeed need manual intervention, but aren't
 this kind of changes those which are supposed to be pushed upstream?
 So some more burden on the developer on these rare (if you buy my
 statement above) cases can even be beneficial from a social point of
 view.

In many of the cases discussed in this thread, the Debian package
maintainer is already bearing much of the burden of the divergence and
upstream (whatever their attitude to the developer) is not going to
incorporate the patch any time soon.

Why, in these cases, do you see extra burden on the Debian package
maintainer to be a good thing?

-- 
 \  I hope some animal never bores a hole in my head and lays its |
  `\   eggs in my brain, because later you might think you're having a |
_o__)  good idea but it's just eggs hatching.  -- Jack Handey |
Ben Finney


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



Re: what about an special QA package priority?

2008-05-20 Thread Bernd Eckenfels
In article [EMAIL PROTECTED] you wrote:
 even though it's just a command line utility.  Who knows what
 weird, unexpected side effects there might be from running such an
 app within a tight bash loop.

none*. And not cleaning up yourself also improves performance for short
running apps.

Gruss
Bernd

* unless we talk persistent resources like files or ipc.


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



Re: package config

2008-05-20 Thread Manoj Srivastava
On Tue, 20 May 2008 08:34:10 +0200, Anthony  [EMAIL PROTECTED] said: 

 Hello, everybody I have a little question about ucf (example with a
 package which contains a file package_file.conf)

 Can i use de package_file.conf.dpkg-old generate by the ucf utility?

Use it for what?

 I would like to know how can i restore the old conf files after use
 ucf.?

If this is in a maintainer script, just don't run ucf. If this
 is as an end user, you should have been asked a question had you
 modified the file -- and yes, you can recover the older version of the
 file.

 I have created a package which manage some files with ucf BUT when i
 remove the package i would like to restore the files before the
 installation .  I could rename the file package_file.conf.dpkg-old in
 package_file.conf in postrm script (remove)

The dpkg.old file might not exist at that point ( the user might
 have gotten rid of it, for one thing). If you want to reliably do that,
 copy the file somewhere safe, and restore from your cached location
 later.  Depending on the old file being around is risky.

manoj
-- 
You have a tendency to feel you are superior to most computers.
Manoj Srivastava [EMAIL PROTECTED] http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


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



Accepted acpid 1.0.6-8 (ia64 source)

2008-05-20 Thread Anibal Monsalve Salazar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 19:31:31 +1000
Source: acpid
Binary: acpid
Architecture: source ia64
Version: 1.0.6-8
Distribution: unstable
Urgency: low
Maintainer: Anibal Monsalve Salazar [EMAIL PROTECTED]
Changed-By: Anibal Monsalve Salazar [EMAIL PROTECTED]
Description: 
 acpid  - Utilities for using ACPI power management
Changes: 
 acpid (1.0.6-8) unstable; urgency=low
 .
   * Update watch file
Checksums-Sha1: 
 cdaee96824c73bdf21a702e7ffa945af73b7095d 1143 acpid_1.0.6-8.dsc
 113957b28f7b0ecde06ccfc7dc909ecc9ed1d607 15767 acpid_1.0.6-8.diff.gz
 924051ebf2c477c8e38c6e06659f0c8e7c664e34 38844 acpid_1.0.6-8_ia64.deb
Checksums-Sha256: 
 92d3eeef4103f5f9b3e31130ecf7fef50ef0633a7b5534767b5cc4b05f26b3b2 1143 
acpid_1.0.6-8.dsc
 6cef0060c764771a9fb48da3f8ba579a23ee25e2e705829dfa4aba2ad0891e18 15767 
acpid_1.0.6-8.diff.gz
 2b78c0c2684031b701213a74b01957c7269f9b0036f50c011a9ce46176b9458e 38844 
acpid_1.0.6-8_ia64.deb
Files: 
 0a499027230f2c9f0b0a87f582b85d9b 1143 admin optional acpid_1.0.6-8.dsc
 793739880bfd6aca8b58f1a2c5b6eb32 15767 admin optional acpid_1.0.6-8.diff.gz
 47258c12c40182cc0f8df950b47f4226 38844 admin optional acpid_1.0.6-8_ia64.deb

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

iD8DBQFIMnKQgY5NIXPNpFURApZ1AJ9g0HWm18j83q4ftHRDwxBKvKR4FACfXlfb
Gzgvc8x+I+pRCUKpxZj80t4=
=olaG
-END PGP SIGNATURE-


Accepted:
acpid_1.0.6-8.diff.gz
  to pool/main/a/acpid/acpid_1.0.6-8.diff.gz
acpid_1.0.6-8.dsc
  to pool/main/a/acpid/acpid_1.0.6-8.dsc
acpid_1.0.6-8_ia64.deb
  to pool/main/a/acpid/acpid_1.0.6-8_ia64.deb


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



Accepted ibm-3270 3.3.7p5-1 (source all i386)

2008-05-20 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 08:15:32 +0200
Source: ibm-3270
Binary: x3270 c3270 pr3287 s3270 tcl3270 3270-common xfonts-x3270-misc
Architecture: source all i386
Version: 3.3.7p5-1
Distribution: unstable
Urgency: low
Maintainer: Bastian Blank [EMAIL PROTECTED]
Changed-By: Bastian Blank [EMAIL PROTECTED]
Description: 
 3270-common - Common files for IBM 3270 emulators and pr3287
 c3270  - Curses program for telnet sessions to IBM mainframes
 pr3287 - IBM 3287 printer emulation for telnet sessions to IBM mainframes
 s3270  - Program for scripted telnet sessions to IBM mainframes
 tcl3270- Program for scripted telnet sessions to IBM mainframes.
 x3270  - X11 program for telnet sessions to IBM mainframes
 xfonts-x3270-misc - Font files for the x3270(1) IBM 3270 emulator
Closes: 362404 480788
Changes: 
 ibm-3270 (3.3.7p5-1) unstable; urgency=low
 .
   * New upstream version.
   * Mark package as autobuildable.
   * Make files in orig tar executable again.
 - Fix app-defaults generation. (closes: #480788)
   * Fix font installation. (closes: #362404)
Checksums-Sha1: 
 3c302dcd0daa5c7eecd7404df39ad0fa64b9b692 1153 ibm-3270_3.3.7p5-1.dsc
 c78d4aa9466f384598c85b982576dc9a0183c872 3371605 ibm-3270_3.3.7p5.orig.tar.gz
 0f8c10a800b39204b3c406890685f22cd7044cdc 10098 ibm-3270_3.3.7p5-1.diff.gz
 c34ab2faa0a6c40a1c55988e8bb82d9e5be6c181 214230 
xfonts-x3270-misc_3.3.7p5-1_all.deb
 ba8958822c6d6887edabfca2f519c11b5ad3e367 233842 x3270_3.3.7p5-1_i386.deb
 0cf75d34a98e177f1b46d352a6a80dcdfc19d018 139436 c3270_3.3.7p5-1_i386.deb
 475805e37f75b4080f7f468baffbd1c6ce923b1c 46004 pr3287_3.3.7p5-1_i386.deb
 292a13d316cccef9ee289eda1fe151e8e2bdab7d 120450 s3270_3.3.7p5-1_i386.deb
 dfeebb661f6e33acfd3fd9d46498ea848a44746b 344486 3270-common_3.3.7p5-1_i386.deb
Checksums-Sha256: 
 f67ba5b33faecce8eb18cd5ab8d66f0f4b109b53669d0348afaf4c1723312f50 1153 
ibm-3270_3.3.7p5-1.dsc
 779c9b9d2595d69e94038b06cacb77b0734d6da4233ce245c81565926a2ef0ec 3371605 
ibm-3270_3.3.7p5.orig.tar.gz
 0f96fb3b1bfcdda62ff977894516273a7e6bb1427ba8f1572c5a477d2886e872 10098 
ibm-3270_3.3.7p5-1.diff.gz
 24cf295b17e8c9200b54041dea5308d3d119e2b9b040bd2e194159399745df31 214230 
xfonts-x3270-misc_3.3.7p5-1_all.deb
 bc7856f9b7e5a300523b7c68095dc2052445dd6eb50d8656bd1643c9c04656ac 233842 
x3270_3.3.7p5-1_i386.deb
 5eb34053c8fd575a6fea0cc2da526f3862193bbc3b0d6811ff4b3fbd14b8fbf5 139436 
c3270_3.3.7p5-1_i386.deb
 62a5902317fa083869dec5509132a51edb029b85383704e7cbb5ff080feeb802 46004 
pr3287_3.3.7p5-1_i386.deb
 a83857f08045b56c604073ea0f6e17a5e829920665e3c714bdc29bdee48327aa 120450 
s3270_3.3.7p5-1_i386.deb
 224dcf56b1d6960240d59519be446e9a5d82527faa083d751eea765479537881 344486 
3270-common_3.3.7p5-1_i386.deb
Files: 
 e2fd11895ae6f3e5abc9a27c4e2c50a3 1153 non-free/net optional 
ibm-3270_3.3.7p5-1.dsc
 93e6a4ac5917756dbd0d58c94e91c98f 3371605 non-free/net optional 
ibm-3270_3.3.7p5.orig.tar.gz
 1159691808a38cb8bdb0b3c415c105c8 10098 non-free/net optional 
ibm-3270_3.3.7p5-1.diff.gz
 e6b69ec68f3f612840f6ea1421595989 214230 non-free/x11 optional 
xfonts-x3270-misc_3.3.7p5-1_all.deb
 7a34251652ad778ca1c22469ce0dbac6 233842 non-free/net optional 
x3270_3.3.7p5-1_i386.deb
 69f588a0b8c1fd6bf177ac6feabc54a6 139436 non-free/net optional 
c3270_3.3.7p5-1_i386.deb
 9a29e366deda6ccc91bd4efa52129938 46004 non-free/net optional 
pr3287_3.3.7p5-1_i386.deb
 1bb9a8dde155a6c6d8b5a163e3b05bf5 120450 non-free/net optional 
s3270_3.3.7p5-1_i386.deb
 9b7d79f19960ef9f14719328dc0dad18 344486 non-free/net optional 
3270-common_3.3.7p5-1_i386.deb

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

iEYEARECAAYFAkgybUgACgkQxWtQqFixGB5IRwCgoTbicXstvULrWGHoLK1+wKxs
2DAAn2XPa/mtj832vZA7M/WcF2mvtcIW
=KVvh
-END PGP SIGNATURE-


Accepted:
3270-common_3.3.7p5-1_i386.deb
  to pool/non-free/i/ibm-3270/3270-common_3.3.7p5-1_i386.deb
c3270_3.3.7p5-1_i386.deb
  to pool/non-free/i/ibm-3270/c3270_3.3.7p5-1_i386.deb
ibm-3270_3.3.7p5-1.diff.gz
  to pool/non-free/i/ibm-3270/ibm-3270_3.3.7p5-1.diff.gz
ibm-3270_3.3.7p5-1.dsc
  to pool/non-free/i/ibm-3270/ibm-3270_3.3.7p5-1.dsc
ibm-3270_3.3.7p5.orig.tar.gz
  to pool/non-free/i/ibm-3270/ibm-3270_3.3.7p5.orig.tar.gz
pr3287_3.3.7p5-1_i386.deb
  to pool/non-free/i/ibm-3270/pr3287_3.3.7p5-1_i386.deb
s3270_3.3.7p5-1_i386.deb
  to pool/non-free/i/ibm-3270/s3270_3.3.7p5-1_i386.deb
x3270_3.3.7p5-1_i386.deb
  to pool/non-free/i/ibm-3270/x3270_3.3.7p5-1_i386.deb
xfonts-x3270-misc_3.3.7p5-1_all.deb
  to pool/non-free/i/ibm-3270/xfonts-x3270-misc_3.3.7p5-1_all.deb


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



Accepted xfce4-session 4.4.2-6 (source amd64)

2008-05-20 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 08:18:16 +0200
Source: xfce4-session
Binary: xfce4-session
Architecture: source amd64
Version: 4.4.2-6
Distribution: unstable
Urgency: low
Maintainer: Debian Xfce Maintainers [EMAIL PROTECTED]
Changed-By: Yves-Alexis Perez [EMAIL PROTECTED]
Description: 
 xfce4-session - Xfce4 Session Manager
Closes: 481933
Changes: 
 xfce4-session (4.4.2-6) unstable; urgency=low
 .
   * debian/{postinst,prerm}: have them back, they manage the x-session-manager
 alternative.closes: #481933
Checksums-Sha1: 
 2e81fbb70c4140440dcecc69d14fc1d05b472aa5 1424 xfce4-session_4.4.2-6.dsc
 51f479b39fe3e97f5d064826194660f0fdccc332 9170 xfce4-session_4.4.2-6.diff.gz
 85561f8b9d07d2f7f2b6ae0c5773b19cc9b5aa46 983778 xfce4-session_4.4.2-6_amd64.deb
Checksums-Sha256: 
 7b7c56ca8256322dde5c55aaea004d29b40d8a752576720f7e89a80001394f20 1424 
xfce4-session_4.4.2-6.dsc
 8d390ea8b1ef91c839377328753601d5fbf501bb7e9516f34801e8516ae00b44 9170 
xfce4-session_4.4.2-6.diff.gz
 0b3ef4c2545670fba4b608458236e2ded09bc0e1122ac98edf54084b419f230a 983778 
xfce4-session_4.4.2-6_amd64.deb
Files: 
 0b32c76d711268d17e109456afa6102e 1424 x11 optional xfce4-session_4.4.2-6.dsc
 a2e6fbd56cccaadb532c5c5183905c49 9170 x11 optional 
xfce4-session_4.4.2-6.diff.gz
 acaa9873da5eef5f69cc42980f05ff83 983778 x11 optional 
xfce4-session_4.4.2-6_amd64.deb

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

iD8DBQFIMm7PTUTAIMXAW64RAi78AJ4/gAwc1EvESUtkv21DSe8hkZuLVwCgvBMZ
N4j4+SYBkPRVj52tJL/fA7w=
=3Qux
-END PGP SIGNATURE-


Accepted:
xfce4-session_4.4.2-6.diff.gz
  to pool/main/x/xfce4-session/xfce4-session_4.4.2-6.diff.gz
xfce4-session_4.4.2-6.dsc
  to pool/main/x/xfce4-session/xfce4-session_4.4.2-6.dsc
xfce4-session_4.4.2-6_amd64.deb
  to pool/main/x/xfce4-session/xfce4-session_4.4.2-6_amd64.deb


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



Accepted gupnp-tools 0.4-1 (source i386)

2008-05-20 Thread Ross Burton
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 08:24:23 +0100
Source: gupnp-tools
Binary: gupnp-tools
Architecture: source i386
Version: 0.4-1
Distribution: unstable
Urgency: low
Maintainer: Ross Burton [EMAIL PROTECTED]
Changed-By: Ross Burton [EMAIL PROTECTED]
Description: 
 gupnp-tools - UPnP Universal Control Point
Closes: 481891
Changes: 
 gupnp-tools (0.4-1) unstable; urgency=low
 .
   * New upstream release (Closes: #481891)
   * Tighten build-dep on gupnp to ensure new ABI gets used
   * Add --as-needed to remove unrequired deps
Checksums-Sha1: 
 5584eea1d00ca0415d5d092ef6680a555912a58e 1030 gupnp-tools_0.4-1.dsc
 49ae3a2e4c35adfe455b054a83a16ff5a868e404 572153 gupnp-tools_0.4.orig.tar.gz
 4912f99796ab277c3c5a9b5762b1aed7f2ee7bda 1388 gupnp-tools_0.4-1.diff.gz
 a4f1ed33e85bc2ea2df74692277d138f5240b473 202680 gupnp-tools_0.4-1_i386.deb
Checksums-Sha256: 
 06771eee081c0affac3f822c7e8b0262772bad89fddc1057f37b66153295c62a 1030 
gupnp-tools_0.4-1.dsc
 bf2697dc71abdb889e96e9c1f61386aaa0b8278d0a4bac4bacfbaeab1eca534f 572153 
gupnp-tools_0.4.orig.tar.gz
 ac96eea82a318800920a85cdf1ff39c96f8fa9e7622e1f3af979c1365eaf67c1 1388 
gupnp-tools_0.4-1.diff.gz
 81e47ffb1276e207960044363f13ed0dd89d4e164dd19faa07cd0d466d5683fe 202680 
gupnp-tools_0.4-1_i386.deb
Files: 
 c64fd7f2d5676dd1cb7f1f3d467aa77a 1030 net optional gupnp-tools_0.4-1.dsc
 c7d3f005726bdd259e7cc27d177b6b5b 572153 net optional 
gupnp-tools_0.4.orig.tar.gz
 a83f50d63203ab0d90549ab5529ec9a8 1388 net optional gupnp-tools_0.4-1.diff.gz
 1e23907c1a18626ff6c188780b6d9e21 202680 net optional gupnp-tools_0.4-1_i386.deb

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

iD8DBQFIMn4gLQnkR9C0M98RAlS8AKCmnJntBixMeuAkHk4PJqw9QgtpcwCg26v2
Yp8dEM4ZzfwSnoBKntPxC2k=
=BKPw
-END PGP SIGNATURE-


Accepted:
gupnp-tools_0.4-1.diff.gz
  to pool/main/g/gupnp-tools/gupnp-tools_0.4-1.diff.gz
gupnp-tools_0.4-1.dsc
  to pool/main/g/gupnp-tools/gupnp-tools_0.4-1.dsc
gupnp-tools_0.4-1_i386.deb
  to pool/main/g/gupnp-tools/gupnp-tools_0.4-1_i386.deb
gupnp-tools_0.4.orig.tar.gz
  to pool/main/g/gupnp-tools/gupnp-tools_0.4.orig.tar.gz


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



Accepted sysvinit 2.86.ds1-57 (source i386 all)

2008-05-20 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 09:23:13 +0200
Source: sysvinit
Binary: sysvinit sysvinit-utils sysv-rc initscripts
Architecture: source i386 all
Version: 2.86.ds1-57
Distribution: unstable
Urgency: low
Maintainer: Debian sysvinit maintainers [EMAIL PROTECTED]
Changed-By: Petter Reinholdtsen [EMAIL PROTECTED]
Description: 
 initscripts - Scripts for initializing and shutting down the system
 sysv-rc- System-V-like runlevel change mechanism
 sysvinit   - System-V-like init utilities
 sysvinit-utils - System-V-like utilities
Closes: 405870 476695 478657 481770
Changes: 
 sysvinit (2.86.ds1-57) unstable; urgency=low
 .
   * Remove another bashism in init.d/rc blocking startpar concurrency
 (Closes: #481770).
   * Fix wake on lan issue introduced with freebsd patch in version
 2.86.ds1-4 (Closes: #405870).  Patch from Lucas Nussbaum.
   * Convert files debian/patches/12_doc_lastb.dpatch,
 debian/sysv-rc/man8/es/update-rc.d.8,
 debian/sysv-rc/man8/fr/update-rc.d.8,
 debian/sysv-rc/man8/ja/update-rc.d.8 and
 debian/sysv-rc/etc/init.d/rc to UTF-8 (Closes: #478657).
 Patch from Ben Finney.
   * New patch 84_killall_fuse.dpatch to avoid shutdown problems with
 user space file systems, by not stat()-ing files when killing
 processes during shutdown (Closes: #476695).  Patch from Goswin
 von Brederlow.
   * Remove special case handling of splash screens in sendsigs.
 The usplash and splashy packages are expected to use the
 omitpid feature from now on.
Checksums-Sha1: 
 bedbe1f351ec7e25647d07aa16903467e1fad4eb 1433 sysvinit_2.86.ds1-57.dsc
 e148b012792bbe32c73865c3d8d3a429f39ad4bb 150623 sysvinit_2.86.ds1-57.diff.gz
 2e48aebc1c6530c2d713aece15e9365eba1bbb05 111206 sysvinit_2.86.ds1-57_i386.deb
 b692215e40a4bbf6b3751f29af118895c873a0e2 70152 
sysvinit-utils_2.86.ds1-57_i386.deb
 b9836276d75225576fa13587dc266da8f5be97d6 67102 initscripts_2.86.ds1-57_i386.deb
 7891ab46728a4ace0458c885d5c7bb959daa85a1 62790 sysv-rc_2.86.ds1-57_all.deb
Checksums-Sha256: 
 5c1f9b55fabf03eafce92cb4f4a32322f20f40c3bd64b91411595613ddf669e1 1433 
sysvinit_2.86.ds1-57.dsc
 bd578599b072ce311b6448fba7ca8c8db1ba173802bbd3cd6af95e44e8250fd2 150623 
sysvinit_2.86.ds1-57.diff.gz
 acdcf6989cc6aeebfab2aa407492205504fb12cbb08f524989c7f2f35089b70c 111206 
sysvinit_2.86.ds1-57_i386.deb
 930d288ad1d58789fc2f14c0c22f9cf1775edc7e04550dd3b3625db822a36931 70152 
sysvinit-utils_2.86.ds1-57_i386.deb
 872116997c1fff6a9cc63fd477add93622925268d591c0d1aa045f5898fccbd9 67102 
initscripts_2.86.ds1-57_i386.deb
 f77d1462a501b3269743c649e47f4344ebed38b139fc68c602fc54609afcb788 62790 
sysv-rc_2.86.ds1-57_all.deb
Files: 
 6fcfff22c60e90bfce712e3ca1fcae30 1433 admin required sysvinit_2.86.ds1-57.dsc
 7b15a6ea18838d4cb1b6653c94a546f6 150623 admin required 
sysvinit_2.86.ds1-57.diff.gz
 7f855bd963a9fc6e01c39d1eebac1461 111206 admin required 
sysvinit_2.86.ds1-57_i386.deb
 1a9e5bc135384d05a1411e6d32366719 70152 admin required 
sysvinit-utils_2.86.ds1-57_i386.deb
 f8a3d567d791355e6de4c05ff83f532e 67102 admin required 
initscripts_2.86.ds1-57_i386.deb
 c4759ec043fcbf6cb89ae463041fc66a 62790 admin required 
sysv-rc_2.86.ds1-57_all.deb

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

iD8DBQFIMn0f20zMSyow1ykRAre3AKDlr+VTBH9YvsX6t6N9TZSR5+k6sQCgkbxF
hUDE6lZSC7bptTX8kpVGh1k=
=bslC
-END PGP SIGNATURE-


Accepted:
initscripts_2.86.ds1-57_i386.deb
  to pool/main/s/sysvinit/initscripts_2.86.ds1-57_i386.deb
sysv-rc_2.86.ds1-57_all.deb
  to pool/main/s/sysvinit/sysv-rc_2.86.ds1-57_all.deb
sysvinit-utils_2.86.ds1-57_i386.deb
  to pool/main/s/sysvinit/sysvinit-utils_2.86.ds1-57_i386.deb
sysvinit_2.86.ds1-57.diff.gz
  to pool/main/s/sysvinit/sysvinit_2.86.ds1-57.diff.gz
sysvinit_2.86.ds1-57.dsc
  to pool/main/s/sysvinit/sysvinit_2.86.ds1-57.dsc
sysvinit_2.86.ds1-57_i386.deb
  to pool/main/s/sysvinit/sysvinit_2.86.ds1-57_i386.deb


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



Accepted gst-plugins-ugly0.10 0.10.7.4-1 (source all i386)

2008-05-20 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 09:42:17 +0200
Source: gst-plugins-ugly0.10
Binary: gstreamer0.10-plugins-ugly-doc gstreamer0.10-plugins-ugly 
gstreamer0.10-plugins-ugly-dbg
Architecture: source all i386
Version: 0.10.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 gstreamer0.10-plugins-ugly - GStreamer plugins from the ugly set
 gstreamer0.10-plugins-ugly-dbg - GStreamer plugins from the ugly set
 gstreamer0.10-plugins-ugly-doc - GStreamer documentation for plugins from the 
ugly set
Closes: 479996
Changes: 
 gst-plugins-ugly0.10 (0.10.7.4-1) unstable; urgency=low
 .
   * New upstream pre-release:
 + Fixes some bugs with the Real demuxer (Closes: #479996).
Checksums-Sha1: 
 d766ab64d8ae4f3e234585244e804879ce2aea4a 1705 
gst-plugins-ugly0.10_0.10.7.4-1.dsc
 a16e0565181b22384f0d39b8b98012c9f6937e4c 1232913 
gst-plugins-ugly0.10_0.10.7.4.orig.tar.gz
 df5a742d684f28dbb63bdd0ec59c6657390a80f0 22507 
gst-plugins-ugly0.10_0.10.7.4-1.diff.gz
 be97858c76a20e20699e36c2b9f477cfd074b8fc 51450 
gstreamer0.10-plugins-ugly-doc_0.10.7.4-1_all.deb
 d25e8d14a44bbc49f591e05f3e423069c270fb1e 283774 
gstreamer0.10-plugins-ugly_0.10.7.4-1_i386.deb
 633dabd704da82c511f282ff1b6b681e663859fd 543656 
gstreamer0.10-plugins-ugly-dbg_0.10.7.4-1_i386.deb
Checksums-Sha256: 
 2c56ed1f9520ae85d6556cea331acc5e7a14479d8f89a0a9f4113d601c57e35e 1705 
gst-plugins-ugly0.10_0.10.7.4-1.dsc
 45ca2c1294bf68069b2596231d984895c95738828f4a8d6183a4be5e8bcc966a 1232913 
gst-plugins-ugly0.10_0.10.7.4.orig.tar.gz
 3d4ba9cc639845e3ed530f12c1bae7885e88687650b879758c23e3f438ed1d87 22507 
gst-plugins-ugly0.10_0.10.7.4-1.diff.gz
 62b69ed7eba280f8debcbbb972d266848b80ce0b7d38f6d756ff53d298e52ab2 51450 
gstreamer0.10-plugins-ugly-doc_0.10.7.4-1_all.deb
 94d844b981b7f08979401ab17076e08f0d4dbf1b31476f97ced4c4d05f60e960 283774 
gstreamer0.10-plugins-ugly_0.10.7.4-1_i386.deb
 c2bd0693b933be213be0acc174b80655c3993afc247cdc7977f80dfb7125 543656 
gstreamer0.10-plugins-ugly-dbg_0.10.7.4-1_i386.deb
Files: 
 342119ca59fa3d455736bb470b60b9ae 1705 libs optional 
gst-plugins-ugly0.10_0.10.7.4-1.dsc
 9d229280e5f391de2667b3e61d361474 1232913 libs optional 
gst-plugins-ugly0.10_0.10.7.4.orig.tar.gz
 91555d1fea01632a3c96440ef7f3868b 22507 libs optional 
gst-plugins-ugly0.10_0.10.7.4-1.diff.gz
 82c285403a269856791e0c89fa8bd3d3 51450 doc optional 
gstreamer0.10-plugins-ugly-doc_0.10.7.4-1_all.deb
 28c86c595cfce8445642dbca81f2667f 283774 libs optional 
gstreamer0.10-plugins-ugly_0.10.7.4-1_i386.deb
 3e48665202d2ee616f65ba73b9202117 543656 libdevel extra 
gstreamer0.10-plugins-ugly-dbg_0.10.7.4-1_i386.deb

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

iD8DBQFIMoLCBsBdh1vkHyERAnhlAJ40SGalr5/tDIY7ycbhA0kPW15n6QCfajuV
HvuBqY9JA9jpDuV8C0QGyeI=
=M5wp
-END PGP SIGNATURE-


Accepted:
gst-plugins-ugly0.10_0.10.7.4-1.diff.gz
  to pool/main/g/gst-plugins-ugly0.10/gst-plugins-ugly0.10_0.10.7.4-1.diff.gz
gst-plugins-ugly0.10_0.10.7.4-1.dsc
  to pool/main/g/gst-plugins-ugly0.10/gst-plugins-ugly0.10_0.10.7.4-1.dsc
gst-plugins-ugly0.10_0.10.7.4.orig.tar.gz
  to pool/main/g/gst-plugins-ugly0.10/gst-plugins-ugly0.10_0.10.7.4.orig.tar.gz
gstreamer0.10-plugins-ugly-dbg_0.10.7.4-1_i386.deb
  to 
pool/main/g/gst-plugins-ugly0.10/gstreamer0.10-plugins-ugly-dbg_0.10.7.4-1_i386.deb
gstreamer0.10-plugins-ugly-doc_0.10.7.4-1_all.deb
  to 
pool/main/g/gst-plugins-ugly0.10/gstreamer0.10-plugins-ugly-doc_0.10.7.4-1_all.deb
gstreamer0.10-plugins-ugly_0.10.7.4-1_i386.deb
  to 
pool/main/g/gst-plugins-ugly0.10/gstreamer0.10-plugins-ugly_0.10.7.4-1_i386.deb


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



Accepted gstreamer0.10-ffmpeg 0.10.3.3-1 (source i386)

2008-05-20 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 09:43:35 +0200
Source: gstreamer0.10-ffmpeg
Binary: gstreamer0.10-ffmpeg
Architecture: source i386
Version: 0.10.3.3-1
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 gstreamer0.10-ffmpeg - FFmpeg plugin for GStreamer
Changes: 
 gstreamer0.10-ffmpeg (0.10.3.3-1) unstable; urgency=low
 .
   * New upstream pre-release:
 + Upload to unstable for the ffmpeg transition.
 + Plugin correctly declares itself as GPL licensed now (we're linking
   against ffmpeg versions with GPL'ed code).
 + debian/patches/02_debian-ffmpeg.patch:
   - Dropped, merged upstream.
Checksums-Sha1: 
 7c40439728fe61357500b521f70b535a34804d4b 1645 
gstreamer0.10-ffmpeg_0.10.3.3-1.dsc
 0fd628c0014e8bc752a4708c3f315bf420d3b954 3585132 
gstreamer0.10-ffmpeg_0.10.3.3.orig.tar.gz
 4d2a4abbb83d9d55b927892cc004a7f2a5374398 6763 
gstreamer0.10-ffmpeg_0.10.3.3-1.diff.gz
 4af5aca0973be55616863217985d1c347e79d089 127594 
gstreamer0.10-ffmpeg_0.10.3.3-1_i386.deb
Checksums-Sha256: 
 220d7e55c6ae8e0e3be3c4998fddd58d94f3ba3d5f3d61754fea3f5e4ee1862b 1645 
gstreamer0.10-ffmpeg_0.10.3.3-1.dsc
 9494d1c406c4a27d54e38f8e6421d4cad09b954cc05c6a191e826fabc316a2ef 3585132 
gstreamer0.10-ffmpeg_0.10.3.3.orig.tar.gz
 31081906b8f381bf37d9d933ffd3719d1bf63dec8b5810bdf36771115b3aaa07 6763 
gstreamer0.10-ffmpeg_0.10.3.3-1.diff.gz
 60fa9b284311615454d1099ee5b17278bca17117e89b2177ff842cef7b584c56 127594 
gstreamer0.10-ffmpeg_0.10.3.3-1_i386.deb
Files: 
 2b147c272b90f69e832c9de774163042 1645 libs optional 
gstreamer0.10-ffmpeg_0.10.3.3-1.dsc
 2ced37cf89239b671580015850f71e39 3585132 libs optional 
gstreamer0.10-ffmpeg_0.10.3.3.orig.tar.gz
 1842fad182f783fada15803cf6a4b7f3 6763 libs optional 
gstreamer0.10-ffmpeg_0.10.3.3-1.diff.gz
 7378237f25f4a43a8ebbf1118405bc31 127594 libs optional 
gstreamer0.10-ffmpeg_0.10.3.3-1_i386.deb

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

iD8DBQFIMoSPBsBdh1vkHyERAlLiAJ4xX7VUh1omrvWPLQgQPOB1gGf9OgCfeBsT
T3pSlAYCR1ecxsw0oSTbgb8=
=wINd
-END PGP SIGNATURE-


Accepted:
gstreamer0.10-ffmpeg_0.10.3.3-1.diff.gz
  to pool/main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.3.3-1.diff.gz
gstreamer0.10-ffmpeg_0.10.3.3-1.dsc
  to pool/main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.3.3-1.dsc
gstreamer0.10-ffmpeg_0.10.3.3-1_i386.deb
  to pool/main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.3.3-1_i386.deb
gstreamer0.10-ffmpeg_0.10.3.3.orig.tar.gz
  to pool/main/g/gstreamer0.10-ffmpeg/gstreamer0.10-ffmpeg_0.10.3.3.orig.tar.gz


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



Accepted libcatalyst-perl 5.7013-1 (source all)

2008-05-20 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 16:04:18 +0200
Source: libcatalyst-perl
Binary: libcatalyst-perl
Architecture: source all
Version: 5.7013-1
Distribution: unstable
Urgency: low
Maintainer: Debian Catalyst Maintainers [EMAIL PROTECTED]
Changed-By: Krzysztof Krzyżaniak (eloy) [EMAIL PROTECTED]
Description: 
 libcatalyst-perl - The Elegant MVC Web Application Framework
Changes: 
 libcatalyst-perl (5.7013-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 1be8dd9506ef7cdedb7928ca47470d4521e1e8e1 1832 libcatalyst-perl_5.7013-1.dsc
 78f19e3a099d17d37188961fdb125743de488122 156966 
libcatalyst-perl_5.7013.orig.tar.gz
 4cda9e3ea0a27bdc4e7c0aaa9d100c80a08b3ce7 4425 libcatalyst-perl_5.7013-1.diff.gz
 33b7caa2399c607247c54860551a9923dc6ebe10 215720 
libcatalyst-perl_5.7013-1_all.deb
Checksums-Sha256: 
 50454f222dc1be36dd31a9145ae0328984b9bc92a14ff7a813369095cc0d0466 1832 
libcatalyst-perl_5.7013-1.dsc
 eab3ac77baf6301122217c5a22eb6653b409f6c181a33b45d56ee7b7f757c679 156966 
libcatalyst-perl_5.7013.orig.tar.gz
 b3f2b65a4a97dbdab09ff0934ea529823fde1e01db42a2d599e5357db644a898 4425 
libcatalyst-perl_5.7013-1.diff.gz
 606712bf4bac01132b60fc0a3865e14c90f25643cdce685867f6b47722ae910e 215720 
libcatalyst-perl_5.7013-1_all.deb
Files: 
 e8778ebefd259a1a7048b496d0b1e3bc 1832 perl optional 
libcatalyst-perl_5.7013-1.dsc
 074faffc01b0226ff88732432405ff44 156966 perl optional 
libcatalyst-perl_5.7013.orig.tar.gz
 5fc34a51dcc04a9625f3c1670bd6a8e3 4425 perl optional 
libcatalyst-perl_5.7013-1.diff.gz
 fdf65ac1cf58f11d89e753d076d6a013 215720 perl optional 
libcatalyst-perl_5.7013-1_all.deb

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

iD8DBQFIMoiry+HP4f7iC8sRAvRlAKCDApC9kj5i0PZROmwgNiFVRVwv2ACePKWq
6qr1MFnYvbHfc5QOhF0KwrI=
=s9Zo
-END PGP SIGNATURE-


Accepted:
libcatalyst-perl_5.7013-1.diff.gz
  to pool/main/libc/libcatalyst-perl/libcatalyst-perl_5.7013-1.diff.gz
libcatalyst-perl_5.7013-1.dsc
  to pool/main/libc/libcatalyst-perl/libcatalyst-perl_5.7013-1.dsc
libcatalyst-perl_5.7013-1_all.deb
  to pool/main/libc/libcatalyst-perl/libcatalyst-perl_5.7013-1_all.deb
libcatalyst-perl_5.7013.orig.tar.gz
  to pool/main/libc/libcatalyst-perl/libcatalyst-perl_5.7013.orig.tar.gz


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



Accepted pychess 0.8.2-1 (source all)

2008-05-20 Thread Varun Hiremath
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 15:02:53 +0530
Source: pychess
Binary: pychess
Architecture: source all
Version: 0.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Varun Hiremath [EMAIL PROTECTED]
Changed-By: Varun Hiremath [EMAIL PROTECTED]
Description: 
 pychess- chess graphical user interface for several chess engines
Closes: 481633
Changes: 
 pychess (0.8.2-1) unstable; urgency=low
 .
   * New upstream release (Closes: #481633)
Checksums-Sha1: 
 b2204e8e3f46c4fb7f66471cff8042a64f4693f6 1242 pychess_0.8.2-1.dsc
 478acf66f10dd7e787f175bd13c4d9d6ccfa04cb 1113567 pychess_0.8.2.orig.tar.gz
 79bfe1fef9d5e03a957b73a472f22859f3a2360e 3485 pychess_0.8.2-1.diff.gz
 d6fb14297547f106868d2d468d8e935907ddeeba 999546 pychess_0.8.2-1_all.deb
Checksums-Sha256: 
 96f94093840fa86e82741bb6e2ce351cfca1b0cb67af3c62b24e6c70ffc8aaba 1242 
pychess_0.8.2-1.dsc
 e88a88dc59dbf34939414c63c380894ca793b7cd7077c56eb1bb872fad6bad3f 1113567 
pychess_0.8.2.orig.tar.gz
 220fc23852204b037692feb6978375a8f29b66daaa1f51b25975a134a35745af 3485 
pychess_0.8.2-1.diff.gz
 684931c58e1b5c896cc982c930da8d74102a7d58186cf179b77452bdbf316c4c 999546 
pychess_0.8.2-1_all.deb
Files: 
 cbd6bc94383f4b9883bec16ceeb10e01 1242 games optional pychess_0.8.2-1.dsc
 3faf48b9704d29bc7fc508c9e63b7d1a 1113567 games optional 
pychess_0.8.2.orig.tar.gz
 854787a3705ae6f08b27ffed27d721ba 3485 games optional pychess_0.8.2-1.diff.gz
 5c16e469c8ad43311f8c3f14fef05f19 999546 games optional pychess_0.8.2-1_all.deb

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

iD8DBQFIMpt1PEFSUMxFMZcRAiQ8AJ91RgSxgMtss3ldU3A6ga6miBsJxwCgoyJD
snEf+1amVomsz9XnTN0no5I=
=3bzP
-END PGP SIGNATURE-


Accepted:
pychess_0.8.2-1.diff.gz
  to pool/main/p/pychess/pychess_0.8.2-1.diff.gz
pychess_0.8.2-1.dsc
  to pool/main/p/pychess/pychess_0.8.2-1.dsc
pychess_0.8.2-1_all.deb
  to pool/main/p/pychess/pychess_0.8.2-1_all.deb
pychess_0.8.2.orig.tar.gz
  to pool/main/p/pychess/pychess_0.8.2.orig.tar.gz


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



Accepted tomboy 0.10.2-1 (source i386)

2008-05-20 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 11:05:10 +0200
Source: tomboy
Binary: tomboy
Architecture: source i386
Version: 0.10.2-1
Distribution: unstable
Urgency: low
Maintainer: Sebastian Dröge [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 tomboy - desktop note taking program using Wiki style links
Changes: 
 tomboy (0.10.2-1) unstable; urgency=low
 .
   * New upstream bugfix release.
Checksums-Sha1: 
 ac1d0feb7cb9dc94a5c8a9b0397aa50106ae0178 1530 tomboy_0.10.2-1.dsc
 97a77adf604539729ccb69d84f4b6d7f300b1050 4472158 tomboy_0.10.2.orig.tar.gz
 35ab4a24a13a8356e83d7bc72a5c7455a42f11f8 13356 tomboy_0.10.2-1.diff.gz
 7739f9650043468f6afe64d9d6a85c59f3bdf2b7 5810922 tomboy_0.10.2-1_i386.deb
Checksums-Sha256: 
 1a3a8551ad0186c823f69c35f9765cf61001fb467310e6d5817f180c4ca11298 1530 
tomboy_0.10.2-1.dsc
 8a10fa7d01cb67e3aec810b797875d750a25c7fd56f4687d6c3883150b153fe6 4472158 
tomboy_0.10.2.orig.tar.gz
 46dab0590ac2f8d9ca31ff0172a2ee9f119efb2a07939d068494648f98da1c68 13356 
tomboy_0.10.2-1.diff.gz
 03647e1a40cf87c8bf6990e99c716c38127e3dba212907f67b6fb61afbec2528 5810922 
tomboy_0.10.2-1_i386.deb
Files: 
 66ced1ecc36cbe72b860e856e85931f6 1530 gnome optional tomboy_0.10.2-1.dsc
 6cc7e1beec91c839460b169b5a28ae71 4472158 gnome optional 
tomboy_0.10.2.orig.tar.gz
 975c688c442be016c9dd21b0283ba441 13356 gnome optional tomboy_0.10.2-1.diff.gz
 3fe7c5434053246ac82b73a130a4f28b 5810922 gnome optional 
tomboy_0.10.2-1_i386.deb

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

iD8DBQFIMpijBsBdh1vkHyERAmycAJ9Gu/To6AeF/KRaK6XOBELfboqgvACfQEt6
dYE6G7sOV6uLueMrFKouz/4=
=8KYc
-END PGP SIGNATURE-


Accepted:
tomboy_0.10.2-1.diff.gz
  to pool/main/t/tomboy/tomboy_0.10.2-1.diff.gz
tomboy_0.10.2-1.dsc
  to pool/main/t/tomboy/tomboy_0.10.2-1.dsc
tomboy_0.10.2-1_i386.deb
  to pool/main/t/tomboy/tomboy_0.10.2-1_i386.deb
tomboy_0.10.2.orig.tar.gz
  to pool/main/t/tomboy/tomboy_0.10.2.orig.tar.gz


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



Accepted gnome-art 0.2-10 (source all)

2008-05-20 Thread Mohammed Adnène Trojette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 11:29:47 +0200
Source: gnome-art
Binary: gnome-art gnome-splashscreen-manager
Architecture: source all
Version: 0.2-10
Distribution: unstable
Urgency: low
Maintainer: Mohammed Adnène Trojette [EMAIL PROTECTED]
Changed-By: Mohammed Adnène Trojette [EMAIL PROTECTED]
Description: 
 gnome-art  - install GNOME themes from art.gnome.org
 gnome-splashscreen-manager - manage your GNOME splash screen images
Changes: 
 gnome-art (0.2-10) unstable; urgency=low
 .
   * gnome-art depends on libgnome2-ruby.
Checksums-Sha1: 
 f41971efa2615ffd31af9285788f813f86d49dd4 1132 gnome-art_0.2-10.dsc
 a99c64741c51fea5ef56fa98c907dd97cd91b206 7115 gnome-art_0.2-10.diff.gz
 6b03aed317ae63d35f0ffc57be57ef8fe7001a22 28806 gnome-art_0.2-10_all.deb
 5bab9caa1a08dc8b4c911c61bbffef1f4181c345 15558 
gnome-splashscreen-manager_0.2-10_all.deb
Checksums-Sha256: 
 d39b72d3efb1310170dd81bf9026c872c420cf7ac6b117f99ecbb56922c11a9b 1132 
gnome-art_0.2-10.dsc
 032d0c1d53d78a0fe0217654e08beada3c3b97532fa3c5a0c1cd7fffba16bbb5 7115 
gnome-art_0.2-10.diff.gz
 eb6f259cc48d2e8238864eba417bea7c597d68253d0534faf519532d26b64a2a 28806 
gnome-art_0.2-10_all.deb
 a86beffcfb80340852a13a7e51eef90bef5883c8fdc5514de6ecf7a04b050ab0 15558 
gnome-splashscreen-manager_0.2-10_all.deb
Files: 
 ec78b1bf9304cf1bfb31c87b68c6ec6e 1132 gnome optional gnome-art_0.2-10.dsc
 cd10695ee42785e0c98802296faa5478 7115 gnome optional gnome-art_0.2-10.diff.gz
 ea05a785e91ff872daf133cbc29f2f90 28806 gnome optional gnome-art_0.2-10_all.deb
 83d76896f4fb9e3cfbbda4c81b11f332 15558 gnome optional 
gnome-splashscreen-manager_0.2-10_all.deb

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

iD8DBQFIMp4TOU3FkQ7XBOoRAtTPAKDS89f/wAOYgDTap74dcKPjwjklaACffQqh
Td0fpWWxh/FxsOJ0LgzwM/M=
=5MYE
-END PGP SIGNATURE-


Accepted:
gnome-art_0.2-10.diff.gz
  to pool/main/g/gnome-art/gnome-art_0.2-10.diff.gz
gnome-art_0.2-10.dsc
  to pool/main/g/gnome-art/gnome-art_0.2-10.dsc
gnome-art_0.2-10_all.deb
  to pool/main/g/gnome-art/gnome-art_0.2-10_all.deb
gnome-splashscreen-manager_0.2-10_all.deb
  to pool/main/g/gnome-art/gnome-splashscreen-manager_0.2-10_all.deb


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



Accepted tagpy 0.93-5 (source i386)

2008-05-20 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 12:18:56 +0200
Source: tagpy
Binary: python-tagpy
Architecture: source i386
Version: 0.93-5
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař [EMAIL PROTECTED]
Changed-By: Michal Čihař [EMAIL PROTECTED]
Description: 
 python-tagpy - Python module for manipulating tags in music files
Changes: 
 tagpy (0.93-5) unstable; urgency=low
 .
   * Reupload as it seems to be easiest way to trigger rebuild on hppa and
 mipsel.
   * Move packaging to Python Modules Packaging Team:
 - Change Vcs fields in debian/control.
 - Add team to Uploaders.
Checksums-Sha1: 
 b36e7e366b735282eafade4713d006ded5accd1c 1326 tagpy_0.93-5.dsc
 02f58d11933ec51dd1d90964cd64da7ce19a56ff 2641 tagpy_0.93-5.diff.gz
 6906df875310d455cbc44f6f2326367a22eb5c48 611380 python-tagpy_0.93-5_i386.deb
Checksums-Sha256: 
 4203f5dc8383ba7a9d20eb8e69fcdb0f522dc2294cd5bfe498b81a9ae33f874d 1326 
tagpy_0.93-5.dsc
 3ab872fb11b679f015328d6b720a9df3c6826badec2e2867fddcdc8eeab83160 2641 
tagpy_0.93-5.diff.gz
 1fa25550bbad01485b21923380b02b04c94205cec0532a228d3142db10f28fd4 611380 
python-tagpy_0.93-5_i386.deb
Files: 
 a60e34b1cfedfd0280e5c9f0391b2d4a 1326 python extra tagpy_0.93-5.dsc
 55656718b696bdcfe1693f95dea91b89 2641 python extra tagpy_0.93-5.diff.gz
 4dec00d261c5556cc9f797ce6e6bb6e0 611380 python extra 
python-tagpy_0.93-5_i386.deb

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

iD8DBQFIMqa43DVS6DbnVgQRAu9WAJ4kmigpLHLEv8txM+L6cQWVwXb6ZACgosQY
EM0eie2QKyHXUPr9Df/az2g=
=urB1
-END PGP SIGNATURE-


Accepted:
python-tagpy_0.93-5_i386.deb
  to pool/main/t/tagpy/python-tagpy_0.93-5_i386.deb
tagpy_0.93-5.diff.gz
  to pool/main/t/tagpy/tagpy_0.93-5.diff.gz
tagpy_0.93-5.dsc
  to pool/main/t/tagpy/tagpy_0.93-5.dsc


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



Accepted signing-party 1.0-2 (source all)

2008-05-20 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 12:23:52 +0200
Source: signing-party
Binary: signing-party sig2dot springgraph
Architecture: source all
Version: 1.0-2
Distribution: unstable
Urgency: low
Maintainer: Thijs Kinkhorst [EMAIL PROTECTED]
Changed-By: Thijs Kinkhorst [EMAIL PROTECTED]
Description: 
 sig2dot- transitional package to pull in signing-party
 signing-party - Various OpenPGP related tools
 springgraph - transitional package to pull in signing-party
Closes: 474351 478151
Changes: 
 signing-party (1.0-2) unstable; urgency=low
 .
   * gpg-mailkeys: Fix parameter escaping of printf, thanks
 Olivier Tetard (Closes: #478151).
   * springgraph: clarify help text (Closes: 474351).
   * Switch dependency libmime-perl to libmime-tools-perl (renamed).
   * Put springgraph and sig2dot in section graphics.
Checksums-Sha1: 
 403b1b78f3699de1408ea0e0c917b9c39918612d 1535 signing-party_1.0-2.dsc
 a97f58af634bc16ba6bf6bee389253cf647f07f7 10884 signing-party_1.0-2.diff.gz
 1108f42edf55eaf81573355ff494d055cbeedc3e 85888 signing-party_1.0-2_all.deb
 ac80066dfa732c0501a035ac2435132bb2960c83 7742 sig2dot_1.0-2_all.deb
 7813dc49ad52b629edbd5efd8b99bb1cf13d92c0 7748 springgraph_1.0-2_all.deb
Checksums-Sha256: 
 94c2b794a17d2fe5be0651911fa57a9d20b553eca042937fd0f262cd327fa4f5 1535 
signing-party_1.0-2.dsc
 2482a0ebf16d339ea74149a3cd8c520b24e5ce7cbe86828468bd40c46ac85b22 10884 
signing-party_1.0-2.diff.gz
 6b9f867d7187cb226b81480d3b9f8b7c2d6a4d044582650328698d9007ae2662 85888 
signing-party_1.0-2_all.deb
 2e70f63f1a76b8c4081b46e32700b8dce83a3ded184b8145c9e9ca92dd48b9c1 7742 
sig2dot_1.0-2_all.deb
 dfcb3656a2f80010601da88f16b8edecf3cf4a96f6270af444a8c54228cb2d98 7748 
springgraph_1.0-2_all.deb
Files: 
 10f3d673fc7ea9fad6ea9c5879f4d54b 1535 misc extra signing-party_1.0-2.dsc
 a6799fa1be6a51e95498912c54df41bb 10884 misc extra signing-party_1.0-2.diff.gz
 5a4bc690ff94d26c00707052dadefcbc 85888 misc extra signing-party_1.0-2_all.deb
 07d5ec87322600be87bdf52f7d2163e5 7742 graphics extra sig2dot_1.0-2_all.deb
 e20877c4bcad95b5ee71ecb2c4bedff8 7748 graphics extra springgraph_1.0-2_all.deb

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

iQEVAwUBSDKqRmz0hbPcukPfAQJqVgf/UoIM4ogOqrMU0ZCKSRytLbS0UEuETSfr
Vp1CK8mM2Qu7KVUVQRUrvQoIDUVkcBsmYX/yrgEzaspz9SNz7O7u1kKfLY39BnXJ
fwSnJdxVw0t4kam0E3cmfoeunqBmwdtxP8k/A/sw+UVgayZZpZf6hHklXCbRVuNV
82e/YIBhgGFbZNC8VldLNU8yD3GOvY1PLjj8ZVJfH0pY/raq1ZrLDsUQM1S34Y8z
mRh5X1LtGDVcwgttFSD9A+5vdvpKI7d5f6AdXDbH7vOgv7qO8t7ro0raMCSXz1q8
GrvU+am2lY7Ngs+QCtAX8yUIbvxD72ZJnY19mGcR2nYz0xWgSo17BA==
=hZpT
-END PGP SIGNATURE-


Accepted:
sig2dot_1.0-2_all.deb
  to pool/main/s/signing-party/sig2dot_1.0-2_all.deb
signing-party_1.0-2.diff.gz
  to pool/main/s/signing-party/signing-party_1.0-2.diff.gz
signing-party_1.0-2.dsc
  to pool/main/s/signing-party/signing-party_1.0-2.dsc
signing-party_1.0-2_all.deb
  to pool/main/s/signing-party/signing-party_1.0-2_all.deb
springgraph_1.0-2_all.deb
  to pool/main/s/signing-party/springgraph_1.0-2_all.deb


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



Accepted evince 2.22.1.1-2 (source i386)

2008-05-20 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 12:13:16 +0200
Source: evince
Binary: evince evince-dbg evince-gtk evince-gtk-dbg
Architecture: source i386
Version: 2.22.1.1-2
Distribution: experimental
Urgency: low
Maintainer: Marc 'HE' Brockschmidt [EMAIL PROTECTED]
Changed-By: Sebastian Dröge [EMAIL PROTECTED]
Description: 
 evince - Document (postscript, pdf) viewer
 evince-dbg - Document (postscript, pdf) viewer - debugging symbols
 evince-gtk - Document (postscript, pdf) viewer (gtk version)
 evince-gtk-dbg - Document (postscript, pdf) viewer (gtk version) - debugging 
symbo
Changes: 
 evince (2.22.1.1-2) experimental; urgency=low
 .
   * debian/control.in:
 + Rebuild against new poppler = 0.8.0.
Checksums-Sha1: 
 d2c982cb220b590cada146327e1ab4255b8b81d5 1689 evince_2.22.1.1-2.dsc
 1d2db3f76ff146d033b71a9290c950956a8f8a39 16385 evince_2.22.1.1-2.diff.gz
 ee66edecf48ab4119b86b52dd30b7d94aeaff565 1379896 evince_2.22.1.1-2_i386.deb
 72d2d94a892a153f0d40328e1cf80f164d6dbe78 883076 evince-dbg_2.22.1.1-2_i386.deb
 172558af5d438e6244ef23dcce7a4dee9f2e41f2 1373648 evince-gtk_2.22.1.1-2_i386.deb
 598b8f48b022bc09198917626196d91493a32d15 851038 
evince-gtk-dbg_2.22.1.1-2_i386.deb
Checksums-Sha256: 
 4bf05209b603067e0efbd66a384f35239f8e8930531138a2f00f7a50f2a99d8e 1689 
evince_2.22.1.1-2.dsc
 3d78f8c10692fd0f697a2ca374765eebda471b15bc0b826c34646a636d8bee2f 16385 
evince_2.22.1.1-2.diff.gz
 352e62151aaa83c94f609e19b6c42e870a46934867086eb981fe2154f5cbb849 1379896 
evince_2.22.1.1-2_i386.deb
 548622b3056058d0d24bb6307ba7fe9b2e0484ebb7cc4116886c4d2db5ad2a85 883076 
evince-dbg_2.22.1.1-2_i386.deb
 2f725be0b926e867fc447ca1f9daacac1334a19fec55358973d9caf9b30e9064 1373648 
evince-gtk_2.22.1.1-2_i386.deb
 56d257bdfe59cb31bba6f4c13c7c5098196196862d5db69d25b43f5ee60ce8e1 851038 
evince-gtk-dbg_2.22.1.1-2_i386.deb
Files: 
 eb33e5db3bc10411f5b109defb1f26d8 1689 gnome optional evince_2.22.1.1-2.dsc
 3ba7a96691e3bd55c215ca417d1cb173 16385 gnome optional evince_2.22.1.1-2.diff.gz
 63366ae51fa82ed7df6196057e5707a0 1379896 gnome optional 
evince_2.22.1.1-2_i386.deb
 2fa4c8cf1b45ba1e574b904752890810 883076 gnome extra 
evince-dbg_2.22.1.1-2_i386.deb
 1c9a1938366355b4c35faa9cbf976870 1373648 gnome optional 
evince-gtk_2.22.1.1-2_i386.deb
 ffdafd5b4efdf9f3de541f150d473cd6 851038 gnome extra 
evince-gtk-dbg_2.22.1.1-2_i386.deb

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

iD8DBQFIMqh0BsBdh1vkHyERAg0DAJ0STkJv5ulxqJiYyav8zlk8TMHm0ACfSNXU
UV5kfRsHrNqgDxpYje7Fmcc=
=yVe3
-END PGP SIGNATURE-


Accepted:
evince-dbg_2.22.1.1-2_i386.deb
  to pool/main/e/evince/evince-dbg_2.22.1.1-2_i386.deb
evince-gtk-dbg_2.22.1.1-2_i386.deb
  to pool/main/e/evince/evince-gtk-dbg_2.22.1.1-2_i386.deb
evince-gtk_2.22.1.1-2_i386.deb
  to pool/main/e/evince/evince-gtk_2.22.1.1-2_i386.deb
evince_2.22.1.1-2.diff.gz
  to pool/main/e/evince/evince_2.22.1.1-2.diff.gz
evince_2.22.1.1-2.dsc
  to pool/main/e/evince/evince_2.22.1.1-2.dsc
evince_2.22.1.1-2_i386.deb
  to pool/main/e/evince/evince_2.22.1.1-2_i386.deb


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



Accepted labplot 1.6.0.1-4 (source i386)

2008-05-20 Thread Frank S. Thomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 11:10:36 +0200
Source: labplot
Binary: labplot
Architecture: source i386
Version: 1.6.0.1-4
Distribution: unstable
Urgency: low
Maintainer: Helen Faulkner [EMAIL PROTECTED]
Changed-By: Frank S. Thomas [EMAIL PROTECTED]
Description: 
 labplot- data plotting and function analysis tool for KDE
Changes: 
 labplot (1.6.0.1-4) unstable; urgency=low
 .
   * debian/rules: Added -I/usr/include/ImageMagick to CPPFLAGS so that LabPlot
 can find ImageMagick's headers there. This is required for ImageMagick
 (= 7:6.4.0.9.dfsg1-1) where headers were moved to the aforementioned
 directory.
   * debian/control: Added libmagickcore-dev and libmagick++-dev as alternative
 build-dependencies for libmagick9-dev and libmagick9++-dev, respectively.
 This allows to build LabPlot with newer ImageMagick packages.
Checksums-Sha1: 
 8745dddba99e0baf3ee8233eb9d0ba295af237d9 1563 labplot_1.6.0.1-4.dsc
 941fe91e318041b501d418766b0142fa64f576b0 13924 labplot_1.6.0.1-4.diff.gz
 63a669c96a6c3d3c3a0e19acf337b8428bfac3b2 6830120 labplot_1.6.0.1-4_i386.deb
Checksums-Sha256: 
 e921f794878a6371997d8eb5157f1ceb9c2ccd81a9a6c6ec7c081c66fc6db19b 1563 
labplot_1.6.0.1-4.dsc
 97b8f8ea6facd5841b8a2c8aeb6c176cbf452a487cad1bd7dff4da842c135203 13924 
labplot_1.6.0.1-4.diff.gz
 29cba0df68583331199c7b0847f1f051630d247cbb1717b961e7ca7a96601e57 6830120 
labplot_1.6.0.1-4_i386.deb
Files: 
 c51555668914bb2a9f2c1bcfad4c1c20 1563 kde optional labplot_1.6.0.1-4.dsc
 d79942e04603f177a624488ac2be426e 13924 kde optional labplot_1.6.0.1-4.diff.gz
 a305c9a64b6a12989c4b19f314a25d45 6830120 kde optional 
labplot_1.6.0.1-4_i386.deb

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

iD8DBQFIMqTnft6HNdxCZCkRAiJ8AJ44yjD7wdeeZwVUZEt6XdtqQMn4TQCfQFQ7
2sBrtlZlJv0JK7GyMpmsqPw=
=QJTX
-END PGP SIGNATURE-


Accepted:
labplot_1.6.0.1-4.diff.gz
  to pool/main/l/labplot/labplot_1.6.0.1-4.diff.gz
labplot_1.6.0.1-4.dsc
  to pool/main/l/labplot/labplot_1.6.0.1-4.dsc
labplot_1.6.0.1-4_i386.deb
  to pool/main/l/labplot/labplot_1.6.0.1-4_i386.deb


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



Accepted grub 0.97-39 (source all amd64)

2008-05-20 Thread Robert Millan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 14:16:58 +0200
Source: grub
Binary: grub grub-disk grub-doc grub-legacy-doc multiboot-doc
Architecture: source amd64 all
Version: 0.97-39
Distribution: unstable
Urgency: low
Maintainer: Grub Maintainers [EMAIL PROTECTED]
Changed-By: Robert Millan [EMAIL PROTECTED]
Description: 
 grub   - GRand Unified Bootloader (Legacy version)
 grub-disk  - GRUB bootable disk image (dummy package)
 grub-doc   - Documentation for GRand Unified Bootloader (dummy package)
 grub-legacy-doc - Documentation for GRUB Legacy
 multiboot-doc - The Multiboot specification
Closes: 451709 456776 477791 479169 479623
Changes: 
 grub (0.97-39) unstable; urgency=low
 .
   * New upstream snapshot.
 - Fixes license violation.  (Closes: #479623)
 - patches/1tib_disk_limit.diff: Merged.
 - patches/geometry-26kernel.diff: Resync.
   * Adjust make_system_path_relative_to_its_root() not to print trailing
 slashes.  (Closes: #479169)
   * Handle relative paths for splash images.  Thanks Petter
 Reinholdtsen.  (Closes: #477791)
   * Support for Xen style xvd[a-z] devices.  Thanks Ian Campbell.
 (Closes: #456776)
   * Document that grub-set-default counts partitions starting with 0.
 (Closes: #451709)
Checksums-Sha1: 
 3f6593ef19062ebd3f6b1ce3c91d8c818ff6210f 1305 grub_0.97-39.dsc
 0dd8bb24bf1fc5fd3fdb646fa6773cfa6daadaa8 92744 grub_0.97-39.diff.gz
 273cbd97b90affdc08795bbe52c240eb8ddb6a2f 901956 grub_0.97-39_amd64.deb
 c3aea1406dccef692d2a2ec041d6398f7726390b 114190 grub-disk_0.97-39_all.deb
 793b9ce012769331535c4a8899dc6871dc8c900a 114208 grub-doc_0.97-39_all.deb
 1a7e24dca1efc26cf5ba471e8aeb14ee5885bf12 251916 grub-legacy-doc_0.97-39_all.deb
 2467f59908e7c72a1ee4ade20bd24fc76b925b22 159828 multiboot-doc_0.97-39_all.deb
Checksums-Sha256: 
 87ffd4e4d07511bbc5ae6771ac8cf5788e413b6fc8eda83b16539f87873f4ffa 1305 
grub_0.97-39.dsc
 d234e17aa05c6eb2284e0917bce77c1041d9a46f3b80fb80a2a273f244cc7a52 92744 
grub_0.97-39.diff.gz
 0532d21d57f60351a91b95419961242c09c0f883783ba2822565c628f9a5aa27 901956 
grub_0.97-39_amd64.deb
 6b9f3cac31c2793806f228dd35690bbb32f41658512b02ec0925ffd977e9a1be 114190 
grub-disk_0.97-39_all.deb
 1bb495d5517d0d06debe916ece1ea0fba5977fdc2f47b0cd7df2253aae952b85 114208 
grub-doc_0.97-39_all.deb
 203a121b02171ead688b9b45dd6978ea50ecf3c7362af8138ad0504bdd2c3217 251916 
grub-legacy-doc_0.97-39_all.deb
 45d314d290170182ce0cc3d35818c8b4ce4f1909f9920a2aa5c302f72eaf9a4b 159828 
multiboot-doc_0.97-39_all.deb
Files: 
 82fba739522d6f290bb32aa631f72b49 1305 admin optional grub_0.97-39.dsc
 42261373daa3e7684285389e97b26f99 92744 admin optional grub_0.97-39.diff.gz
 e805710d7fab28890762a1708c736499 901956 admin optional grub_0.97-39_amd64.deb
 a7163f8725f9f989591daf0ed32aec5f 114190 admin optional 
grub-disk_0.97-39_all.deb
 8fd005c53fe44007c25228a95ba87bd2 114208 doc optional grub-doc_0.97-39_all.deb
 e872eb7c5fb9b63337aba1c87d04db8b 251916 doc optional 
grub-legacy-doc_0.97-39_all.deb
 ec0eaff8d0ed8e533c7c672f08b802b8 159828 doc optional 
multiboot-doc_0.97-39_all.deb

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

iD8DBQFIMsKwC19io6rUCv8RAhzDAJwLYM5gMXWatm67GoEXwOJczu4ChgCfcnI+
YiJM+kVpmjjKxSynedfxtYk=
=W+wV
-END PGP SIGNATURE-


Accepted:
grub-disk_0.97-39_all.deb
  to pool/main/g/grub/grub-disk_0.97-39_all.deb
grub-doc_0.97-39_all.deb
  to pool/main/g/grub/grub-doc_0.97-39_all.deb
grub-legacy-doc_0.97-39_all.deb
  to pool/main/g/grub/grub-legacy-doc_0.97-39_all.deb
grub_0.97-39.diff.gz
  to pool/main/g/grub/grub_0.97-39.diff.gz
grub_0.97-39.dsc
  to pool/main/g/grub/grub_0.97-39.dsc
grub_0.97-39_amd64.deb
  to pool/main/g/grub/grub_0.97-39_amd64.deb
multiboot-doc_0.97-39_all.deb
  to pool/main/g/grub/multiboot-doc_0.97-39_all.deb


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



Accepted puppet 0.24.4-7 (source all)

2008-05-20 Thread Micah Anderson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 03 May 2008 16:18:32 -0400
Source: puppet
Binary: puppet puppetmaster
Architecture: source all
Version: 0.24.4-7
Distribution: unstable
Urgency: low
Maintainer: Puppet Package Maintainers [EMAIL PROTECTED]
Changed-By: Micah Anderson [EMAIL PROTECTED]
Description: 
 puppet - centralised configuration management for networks
 puppetmaster - centralised configuration management control daemon
Closes: 454681 480019 480263 481511
Changes: 
 puppet (0.24.4-7) unstable; urgency=low
 .
   * Update emacs-mode with changes cherry-picked from rra's repository
   * Fix typo in puppetmaster.init (Closes: #480019)
   * Fix variable name in /etc/default/puppetmaster comments
   * Fix incorrect port increment in puppetmaster initscript when mongrel
 is used, thanks Francois Deppierraz (Closes: #480263)
   * Add puppetmaster.postrm to remove /var/log/puppet on purge
   * Added debian/puppetmaster.dirs containing etc/puppet/manifests
   * Remove puppet group on purge (Closes: #481511)
   * Remove old config files and stray directories (Closes: #454681)
Checksums-Sha1: 
 dbfe36f3d57ce6988f5fbcfbbfdcb73d8f69ba08 1267 puppet_0.24.4-7.dsc
 6bae1b1c156092be7b696c3e374395cca6a106df 221245 puppet_0.24.4-7.diff.gz
 76edcff69fb676608d85df8edf8d2a1e8d0103ed 458468 puppet_0.24.4-7_all.deb
 e8b976fc370cd43aaf20e3115fef06e332a70389 34564 puppetmaster_0.24.4-7_all.deb
Checksums-Sha256: 
 820683ceebac3bde7c069cfc5a59a356b31e73f148e6da3c0ecb291945a51604 1267 
puppet_0.24.4-7.dsc
 873b8605735506f0dd5030723b870fe208bf17b9607daa2d64e166bd1c8991b3 221245 
puppet_0.24.4-7.diff.gz
 19193220e1b9397124088b29f515e25b2314ec70c6f0b8a2f931ea1d7f6c463a 458468 
puppet_0.24.4-7_all.deb
 c72913922cb195957cc11257b2e183cc68ce393c0d98fd7e06f0d29f00e03670 34564 
puppetmaster_0.24.4-7_all.deb
Files: 
 8059d94979fc7272422398cc0ed948ba 1267 admin optional puppet_0.24.4-7.dsc
 545021c459e6c0cfb7998cfbed83d2e1 221245 admin optional puppet_0.24.4-7.diff.gz
 524d77f691fec1315f51d8d2684d0d4a 458468 admin optional puppet_0.24.4-7_all.deb
 c63c0c9966a85bd71c6429e612cec4f4 34564 admin optional 
puppetmaster_0.24.4-7_all.deb

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

iD8DBQFIMseA9n4qXRzy1ioRAkOgAKCKOvVOKzTTec08O0B6KngkrHc35wCgiDZM
RSjGquciVmmW4NF6hcfbGkE=
=JeZX
-END PGP SIGNATURE-


Accepted:
puppet_0.24.4-7.diff.gz
  to pool/main/p/puppet/puppet_0.24.4-7.diff.gz
puppet_0.24.4-7.dsc
  to pool/main/p/puppet/puppet_0.24.4-7.dsc
puppet_0.24.4-7_all.deb
  to pool/main/p/puppet/puppet_0.24.4-7_all.deb
puppetmaster_0.24.4-7_all.deb
  to pool/main/p/puppet/puppetmaster_0.24.4-7_all.deb


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



Accepted mew-beta 6.0.51-1 (source all i386)

2008-05-20 Thread Tatsuya Kinoshita
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 22:30:31 +0900
Source: mew-beta
Binary: mew-beta mew-beta-bin
Architecture: source all i386
Version: 6.0.51-1
Distribution: unstable
Urgency: low
Maintainer: Tatsuya Kinoshita [EMAIL PROTECTED]
Changed-By: Tatsuya Kinoshita [EMAIL PROTECTED]
Description: 
 mew-beta   - mail reader supporting PGP/MIME for Emacs (development version)
 mew-beta-bin - external commands for Mew (development version)
Changes: 
 mew-beta (6.0.51-1) unstable; urgency=low
 .
   * New upstream release. (CVS trunk on 2008-05-13)
Checksums-Sha1: 
 22ccc94baf95b9123fbb9853ae2013e6ab4531d3 1022 mew-beta_6.0.51-1.dsc
 7be74a38129e5aa532e9a06b81246701d3d684a4 955660 mew-beta_6.0.51.orig.tar.gz
 528681e9c1f00579508bb7550f8128de444550f6 51908 mew-beta_6.0.51-1.diff.gz
 e729b4c61d8ea97dfa7556b83ef4f1b5fe67b31c 780364 mew-beta_6.0.51-1_all.deb
 a5d9c12fc71b7e3afb52ed18bdf279f41f0c04ca 60236 mew-beta-bin_6.0.51-1_i386.deb
Checksums-Sha256: 
 3e836bd200670221400185d5c52dbb53e71e2e4cc85e2b53d666c37a6de07484 1022 
mew-beta_6.0.51-1.dsc
 74ae1d173324cbef9eadb9343b20f414bc5e7d8d07dab5fda945c0edc86e8921 955660 
mew-beta_6.0.51.orig.tar.gz
 31fb2f38d8a0ef7e919d7b10e969917d3211b18660cc1904cb3674ccac175617 51908 
mew-beta_6.0.51-1.diff.gz
 2ca5be7e417d8c392fcf9f1cc34d00c7b4d8a5ad163d3e688656a80af21c37b1 780364 
mew-beta_6.0.51-1_all.deb
 e0d9bac7e79689401a847931de1b35841e98ca9114e4af846c45f4fe63759d9f 60236 
mew-beta-bin_6.0.51-1_i386.deb
Files: 
 8507bf26ac2dccca825d9553f0d16b29 1022 mail extra mew-beta_6.0.51-1.dsc
 f78087714f8acb13dab23a5c3e81f620 955660 mail extra mew-beta_6.0.51.orig.tar.gz
 16bae43817410d40c3c104046417782d 51908 mail extra mew-beta_6.0.51-1.diff.gz
 a2728e04b3e319bc1cde43504f510707 780364 mail extra mew-beta_6.0.51-1_all.deb
 9fe96465b61053fd576eba9b51061138 60236 mail extra 
mew-beta-bin_6.0.51-1_i386.deb

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

iD8DBQFIMtMTgV4LPvpMUpgRAtoZAKCW6oWvxcvOL1aJ3Gmy7iwYBuL5oACfeNQI
+PobySjlkcN8Rap4URc2hOg=
=ie+l
-END PGP SIGNATURE-


Accepted:
mew-beta-bin_6.0.51-1_i386.deb
  to pool/main/m/mew-beta/mew-beta-bin_6.0.51-1_i386.deb
mew-beta_6.0.51-1.diff.gz
  to pool/main/m/mew-beta/mew-beta_6.0.51-1.diff.gz
mew-beta_6.0.51-1.dsc
  to pool/main/m/mew-beta/mew-beta_6.0.51-1.dsc
mew-beta_6.0.51-1_all.deb
  to pool/main/m/mew-beta/mew-beta_6.0.51-1_all.deb
mew-beta_6.0.51.orig.tar.gz
  to pool/main/m/mew-beta/mew-beta_6.0.51.orig.tar.gz


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



Accepted no-ip 2.1.7-8 (source amd64)

2008-05-20 Thread Andres Mejia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 23:00:49 -0400
Source: no-ip
Binary: noip2
Architecture: source amd64
Version: 2.1.7-8
Distribution: unstable
Urgency: low
Maintainer: Otavio Salvador [EMAIL PROTECTED]
Changed-By: Andres Mejia [EMAIL PROTECTED]
Description: 
 noip2  - client for dynamic DNS service
Closes: 478848 480543
Changes: 
 no-ip (2.1.7-8) unstable; urgency=low
 .
   [ Andres Mejia ]
   * Fix where logcheck filter is installed. Closes: #478848
   * Add DM-Upload-Allowed: yes field in control file.
   * Fixing postinst to allow usernames and passwords with spaces.
 Closes: #480543
   * Added nostrip option for DEB_BUILD_OPTIONS.
   * Fix manpage lintian warning.
Checksums-Sha1: 
 d86dbe95aefd8c50e3024451bf0aa0be5c18161d 1191 no-ip_2.1.7-8.dsc
 c26ebd07adbf25895d54a070be09477f2f0f2961 19209 no-ip_2.1.7-8.diff.gz
 e09b7380a64a87e36970d3c5b77e8ebd9d4fe3ca 76160 noip2_2.1.7-8_amd64.deb
Checksums-Sha256: 
 6827d77b2265a709ef08299863ff3560172cdfe655a68b731c061f6e3695fb6c 1191 
no-ip_2.1.7-8.dsc
 d93bc1b903265375cf6adeb49459d3a62fed3e1468a1c03e3b6e09859baf125d 19209 
no-ip_2.1.7-8.diff.gz
 185b7880c6a5da5bdaee17b6cc2758749e9bdf8d694fcd5d004c535abcec2085 76160 
noip2_2.1.7-8_amd64.deb
Files: 
 5433cba62dcd9878011d2fed358d9d58 1191 net optional no-ip_2.1.7-8.dsc
 302b8c4ae1371bb88f7abf45fab2df53 19209 net optional no-ip_2.1.7-8.diff.gz
 4e855f6bad3fbef7b6d305c287073654 76160 net optional noip2_2.1.7-8_amd64.deb

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

iD8DBQFIMtaGLqiZQEml+FURAobeAJ9+LCwoQgeEk9BDZDz2cB/yelZONwCeNfXA
f0WOuBmBMJmG/u9imC+i9tw=
=52Dp
-END PGP SIGNATURE-


Accepted:
no-ip_2.1.7-8.diff.gz
  to pool/main/n/no-ip/no-ip_2.1.7-8.diff.gz
no-ip_2.1.7-8.dsc
  to pool/main/n/no-ip/no-ip_2.1.7-8.dsc
noip2_2.1.7-8_amd64.deb
  to pool/main/n/no-ip/noip2_2.1.7-8_amd64.deb


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



Accepted dh-make-php 0.2.11 (source all)

2008-05-20 Thread Uwe Steinmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 May 2008 13:33:00 +0200
Source: dh-make-php
Binary: dh-make-php
Architecture: source all
Version: 0.2.11
Distribution: unstable
Urgency: low
Maintainer: Uwe Steinmann [EMAIL PROTECTED]
Changed-By: Uwe Steinmann [EMAIL PROTECTED]
Description: 
 dh-make-php - Creates Debian source packages for PHP PEAR and PECL extensions
Closes: 471279
Changes: 
 dh-make-php (0.2.11) unstable; urgency=low
 .
   * phppkginfo checks for package.xml or package2.xml in the given
 directory instead of expecting PEAR_Package::fromAnyFile() to do
 so (Closes: #471279).
Checksums-Sha1: 
 f7779ee307d2d831adae6b9530730ca2b2ec5804 804 dh-make-php_0.2.11.dsc
 cd54b49b52b9c0bec52c4eb41989d87c3cff5148 30883 dh-make-php_0.2.11.tar.gz
 62891ea457ceef0f2f69d69ea91ff0cd55bad96a 32214 dh-make-php_0.2.11_all.deb
Checksums-Sha256: 
 302d630a61b670ba67f53a1c85244cec03187a2d691730cc27fa47fbc728efca 804 
dh-make-php_0.2.11.dsc
 a1e9d239bf7f881490afb51296bc97628509af94a0f33db3ffc1d04b956a9299 30883 
dh-make-php_0.2.11.tar.gz
 e1d627406c0c54d6387d1503d8df398d529148889314adb4409e5a7b50528c02 32214 
dh-make-php_0.2.11_all.deb
Files: 
 288f9b909e3f7beeca07700fd35e01ac 804 web optional dh-make-php_0.2.11.dsc
 8758416441931183ffb9d2e132c1a5a0 30883 web optional dh-make-php_0.2.11.tar.gz
 96eccfee185ebb2d74e6fbd8dd9c2d71 32214 web optional dh-make-php_0.2.11_all.deb

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

iD8DBQFIMtmuih2Zvw18pwERAp0fAKCi/2jQKgOye7du/7qLNwS6/sM1UwCcDMP8
qRrxghdPGE2y2msOypE92D8=
=TJMK
-END PGP SIGNATURE-


Accepted:
dh-make-php_0.2.11.dsc
  to pool/main/d/dh-make-php/dh-make-php_0.2.11.dsc
dh-make-php_0.2.11.tar.gz
  to pool/main/d/dh-make-php/dh-make-php_0.2.11.tar.gz
dh-make-php_0.2.11_all.deb
  to pool/main/d/dh-make-php/dh-make-php_0.2.11_all.deb


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



Accepted wl-beta 2.15.6+0.20080422-1 (source all)

2008-05-20 Thread Tatsuya Kinoshita
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 22:47:03 +0900
Source: wl-beta
Binary: wl-beta
Architecture: source all
Version: 2.15.6+0.20080422-1
Distribution: unstable
Urgency: low
Maintainer: Tatsuya Kinoshita [EMAIL PROTECTED]
Changed-By: Tatsuya Kinoshita [EMAIL PROTECTED]
Description: 
 wl-beta- mail/news reader supporting IMAP for emacsen (development version
Changes: 
 wl-beta (2.15.6+0.20080422-1) unstable; urgency=low
 .
   * New upstream release. (CVS trunk on 2008-04-22)
   * debian/copyright: Updated.
Checksums-Sha1: 
 963ef7f958c306d36f8ae663bd0bb0ec7e5c4b3d 1116 wl-beta_2.15.6+0.20080422-1.dsc
 fa3a65b18b4e01d469b457a444f0157b6f52dd7f 1137562 
wl-beta_2.15.6+0.20080422.orig.tar.gz
 6e8569622d96b33994651cc3c4373da62b356d59 26850 
wl-beta_2.15.6+0.20080422-1.diff.gz
 8db9661d42ada7d2091444e6bb3caafa6c39893a 950162 
wl-beta_2.15.6+0.20080422-1_all.deb
Checksums-Sha256: 
 3604f1f9bb1fdf9f6194b04b5644f3e6c52558f5037bc60cb0f474dde873ec26 1116 
wl-beta_2.15.6+0.20080422-1.dsc
 889936b97c396493f686a1ea42bdac657932d4b0c9e0d22fcd5b9b85705e991e 1137562 
wl-beta_2.15.6+0.20080422.orig.tar.gz
 6f42a146adbaadcc637b3ca3aa960eefb268c8c621454e77d2dcd127d73d7e61 26850 
wl-beta_2.15.6+0.20080422-1.diff.gz
 fe4e9beff344b9a77905cd36dc5c02f8c88429ff8234b6c0ef42b70510a2b81d 950162 
wl-beta_2.15.6+0.20080422-1_all.deb
Files: 
 bf956b6efdbd7e7f1d7ef8cb3a27270d 1116 mail extra 
wl-beta_2.15.6+0.20080422-1.dsc
 2c2a19e2ac17b11b669b2bda264ea387 1137562 mail extra 
wl-beta_2.15.6+0.20080422.orig.tar.gz
 a0d39b243949bd318324ceca40360fd8 26850 mail extra 
wl-beta_2.15.6+0.20080422-1.diff.gz
 df89d13cecfeed730f17caf8887370e3 950162 mail extra 
wl-beta_2.15.6+0.20080422-1_all.deb

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

iD8DBQFIMtclgV4LPvpMUpgRAt/5AJ9s724N2cPRVji9Hj6yuj9FiZuEpACgupeP
0CSZCDiuWk6GhU+ly/6zdII=
=Cz+Z
-END PGP SIGNATURE-


Accepted:
wl-beta_2.15.6+0.20080422-1.diff.gz
  to pool/main/w/wl-beta/wl-beta_2.15.6+0.20080422-1.diff.gz
wl-beta_2.15.6+0.20080422-1.dsc
  to pool/main/w/wl-beta/wl-beta_2.15.6+0.20080422-1.dsc
wl-beta_2.15.6+0.20080422-1_all.deb
  to pool/main/w/wl-beta/wl-beta_2.15.6+0.20080422-1_all.deb
wl-beta_2.15.6+0.20080422.orig.tar.gz
  to pool/main/w/wl-beta/wl-beta_2.15.6+0.20080422.orig.tar.gz


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



Accepted kvm 66+dfsg-1.1 (source all i386)

2008-05-20 Thread Steffen Joeris
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 13:28:14 +
Source: kvm
Binary: kvm kvm-data kvm-source
Architecture: source all i386
Version: 66+dfsg-1.1
Distribution: unstable
Urgency: high
Maintainer: Jan Lübbe [EMAIL PROTECTED]
Changed-By: Steffen Joeris [EMAIL PROTECTED]
Description: 
 kvm- Full virtualization on x86 hardware
 kvm-data   - Data files for the KVM package
 kvm-source - Source for the KVM driver
Closes: 480011 481204
Changes: 
 kvm (66+dfsg-1.1) unstable; urgency=high
 .
   * Non-maintainer upload by the security team
   * Merge the fixes for the security issues in the embedded qemu
 version (Closes: #480011) Thanks to Jamie Strandboge
- Add CVE-2007-1320+1321+1322+1366+2893.patch from from qemu 0.9.1-1
  to address the following issues:
 - Cirrus LGD-54XX bitblt heap overflow.
 - NE2000 mtu heap overflow.
 - QEMU net socket heap overflow.
 - QEMU NE2000 receive integer signedness error.
 - Infinite loop in the emulated SB16 device.
 - Unprivileged aam instruction does not correctly handle the
   undocumented divisor operand.
 - Unprivileged icebp instruction will halt emulation.
   * Include patch which defaults to existing behaviour (probing based on file
 contents), so it still requires the mgmt app (e.g. libvirt xml) to
 pass a new format=raw parameter for raw disk images
 - Fixes possible privilege escalation, which could allow guest users
   to read arbitrary files on the host by modifying the header to identify
   a different format (Closes: #481204) Fixes: CVE-2008-2004
Checksums-Sha1: 
 91a99c6cd0fb41e7ce54e413f1d8b1ca939f9347 1308 kvm_66+dfsg-1.1.dsc
 d03b192d199763803083e1c88d3fbe7ac80f35c5 34347 kvm_66+dfsg-1.1.diff.gz
 3b32e47d274d621c760209cc686a14a232295e6e 186850 kvm-data_66+dfsg-1.1_all.deb
 7d84ae37e8f8fb08e49efed0f9f659a18acee34d 158952 kvm-source_66+dfsg-1.1_all.deb
 917f2b97235de8ee38254f42b1a428208fada0d5 632944 kvm_66+dfsg-1.1_i386.deb
Checksums-Sha256: 
 a66a2f026ba401e7a0115b1923bd86e52390e2015a58ceb4637b4f5e18abc1ce 1308 
kvm_66+dfsg-1.1.dsc
 0d65d3c69bf308ddce0f37c23e36fb1a3a69ed245729646293932e54b248deff 34347 
kvm_66+dfsg-1.1.diff.gz
 f25066a3281482ae0f2c043a954c1b566d39a66a3b5eac5e9aec35ff9f6456b8 186850 
kvm-data_66+dfsg-1.1_all.deb
 37934401158248b77f3daa3ed9fdf1aa1ba268efc7491788eafbc39bc7fa538e 158952 
kvm-source_66+dfsg-1.1_all.deb
 f4c635a3927c2b19d1c3fafe4df16096a54113144c4e149fc9960562195657bf 632944 
kvm_66+dfsg-1.1_i386.deb
Files: 
 23def165ed98f21c558245099146b41d 1308 misc optional kvm_66+dfsg-1.1.dsc
 5d3bf47baebe9a89d771b30830c9df92 34347 misc optional kvm_66+dfsg-1.1.diff.gz
 6b0557c6e139d5803f0878438d49a281 186850 misc optional 
kvm-data_66+dfsg-1.1_all.deb
 0528a7efdd3d30b8d28c4e0674ec28c1 158952 misc optional 
kvm-source_66+dfsg-1.1_all.deb
 202bae86a7d24a0d3270fd91c440922e 632944 misc optional kvm_66+dfsg-1.1_i386.deb

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

iD8DBQFIMuDa62zWxYk/rQcRAhzzAKCtHxSlNFh0pwUMOb8jHmMkmRY3owCfWCiJ
Nd8wh9rdLpYp6KU6pkcSqD0=
=H9hM
-END PGP SIGNATURE-


Accepted:
kvm-data_66+dfsg-1.1_all.deb
  to pool/main/k/kvm/kvm-data_66+dfsg-1.1_all.deb
kvm-source_66+dfsg-1.1_all.deb
  to pool/main/k/kvm/kvm-source_66+dfsg-1.1_all.deb
kvm_66+dfsg-1.1.diff.gz
  to pool/main/k/kvm/kvm_66+dfsg-1.1.diff.gz
kvm_66+dfsg-1.1.dsc
  to pool/main/k/kvm/kvm_66+dfsg-1.1.dsc
kvm_66+dfsg-1.1_i386.deb
  to pool/main/k/kvm/kvm_66+dfsg-1.1_i386.deb


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



Accepted libmail-sender-perl 0.8.13-6 (source all)

2008-05-20 Thread Erik Wenzel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 14:06:58 +
Source: libmail-sender-perl
Binary: libmail-sender-perl
Architecture: source all
Version: 0.8.13-6
Distribution: unstable
Urgency: low
Maintainer: Erik Wenzel [EMAIL PROTECTED]
Changed-By: Erik Wenzel [EMAIL PROTECTED]
Description: 
 libmail-sender-perl - Perl Module for sending mails with attachments
Closes: 477609
Changes: 
 libmail-sender-perl (0.8.13-6) unstable; urgency=low
 .
   * bashism in debian/rules (Closes: #477609)
Checksums-Sha1: 
 e059f9d88cd205c7afc60644871ea631020fcb53 1070 libmail-sender-perl_0.8.13-6.dsc
 943bf3691c0c937d72f4b60ecf9c30babad20c06 2166 
libmail-sender-perl_0.8.13-6.diff.gz
 4529e9f9afcd48c7416cb263255680fb83c5c4b6 52896 
libmail-sender-perl_0.8.13-6_all.deb
Checksums-Sha256: 
 21236fd593a5cb2a341d2bc164df0355d28d3d50ee7df02eccee655bd5d4e797 1070 
libmail-sender-perl_0.8.13-6.dsc
 c5f0deaca790e6c6fa386189785ae334330c65974d563b69def5c92c3b0f8417 2166 
libmail-sender-perl_0.8.13-6.diff.gz
 2670ebb2ab5acd8f178a1c1dea454dd9ab5e886b92dc87d143fa5d2f80346a3d 52896 
libmail-sender-perl_0.8.13-6_all.deb
Files: 
 727f5b62dd6f27028f66fc90b396eae1 1070 perl optional 
libmail-sender-perl_0.8.13-6.dsc
 5e4b1ac396dba089067783faa9346dce 2166 perl optional 
libmail-sender-perl_0.8.13-6.diff.gz
 0a69b4afe91f59ad9f52916962ca45ad 52896 perl optional 
libmail-sender-perl_0.8.13-6_all.deb

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

iD8DBQFIMtunmMmei9uJhBARArPdAJ99NuwVX2zAEO6z34eZXf635t/sJwCghbpz
Yo/0Jd5bdDZdhkXWXTJinVo=
=3GX/
-END PGP SIGNATURE-


Accepted:
libmail-sender-perl_0.8.13-6.diff.gz
  to pool/main/libm/libmail-sender-perl/libmail-sender-perl_0.8.13-6.diff.gz
libmail-sender-perl_0.8.13-6.dsc
  to pool/main/libm/libmail-sender-perl/libmail-sender-perl_0.8.13-6.dsc
libmail-sender-perl_0.8.13-6_all.deb
  to pool/main/libm/libmail-sender-perl/libmail-sender-perl_0.8.13-6_all.deb


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



Accepted offlineimap 6.0.0 (source all)

2008-05-20 Thread John Goerzen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 00:01:17 -0500
Source: offlineimap
Binary: offlineimap
Architecture: source all
Version: 6.0.0
Distribution: unstable
Urgency: low
Maintainer: John Goerzen [EMAIL PROTECTED]
Changed-By: John Goerzen [EMAIL PROTECTED]
Description: 
 offlineimap - IMAP/Maildir synchronization and reader support
Changes: 
 offlineimap (6.0.0) unstable; urgency=low
 .
   * Updated version number to 6.0.0.  No other changes.  Calling this
 the new stable version.
Checksums-Sha1: 
 ba468044e06672ae4b54af724bcf995117190f41 1034 offlineimap_6.0.0.dsc
 f315aa980b5808a90382dbb2bc6d59d962f7e0a3 96761 offlineimap_6.0.0.tar.gz
 8208d1b2084f878ac2b3a3cc262997e1510fedbd 148816 offlineimap_6.0.0_all.deb
Checksums-Sha256: 
 cd5e5223ef7de2a56890bf8c22f2cfdc967b884d3b4c39de03cca4a7f572b34f 1034 
offlineimap_6.0.0.dsc
 dfd965730585cb3d6064ea7759e9f84c368740311f4e3f0c7cf724ada5680c40 96761 
offlineimap_6.0.0.tar.gz
 3992009e132aa1d85c0342ebe037561ee0327f80430ff131a2dcdaeaee77a003 148816 
offlineimap_6.0.0_all.deb
Files: 
 5356e6839ed00b0fa6a1f652a3cf8cff 1034 mail optional offlineimap_6.0.0.dsc
 5e9cd283a5ca605af1fad88b1dcaa91d 96761 mail optional offlineimap_6.0.0.tar.gz
 9e93ffe47363e26efac2c017b7d26198 148816 mail optional offlineimap_6.0.0_all.deb

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

iD8DBQFIMttathyt9Q6V7ksRAq79AJ9SaHYoqiFhhY9ojI9qd5dNTokkeQCghnmn
awaUEvUjoMJTFN5mL42LzsM=
=KIVw
-END PGP SIGNATURE-


Accepted:
offlineimap_6.0.0.dsc
  to pool/main/o/offlineimap/offlineimap_6.0.0.dsc
offlineimap_6.0.0.tar.gz
  to pool/main/o/offlineimap/offlineimap_6.0.0.tar.gz
offlineimap_6.0.0_all.deb
  to pool/main/o/offlineimap/offlineimap_6.0.0_all.deb


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



Accepted libcompress-raw-zlib-perl 2.011-2 (source i386)

2008-05-20 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 17:43:08 +0300
Source: libcompress-raw-zlib-perl
Binary: libcompress-raw-zlib-perl
Architecture: source i386
Version: 2.011-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: Damyan Ivanov [EMAIL PROTECTED]
Description: 
 libcompress-raw-zlib-perl - low-level interface to zlib compression library
Closes: 482052
Changes: 
 libcompress-raw-zlib-perl (2.011-2) unstable; urgency=low
 .
   * add use-debian-zlib.patch, changing configure.in to use vendor zlib
 instead of the built-in one.
 + add zlib1g-dev to build-depends
 + add quilt build-dependency and plug it into debian/rules
 Closes: #482052
   * minimize debian/rules by using debhelper 7
 + bump debhelper build-dependency and compat level
 + install examples via debian/libcompress-raw-zlib-perl.examples
Checksums-Sha1: 
 ba16c057287a6569fa9b6b3d465f5b858f62c012 1511 
libcompress-raw-zlib-perl_2.011-2.dsc
 501f99ddbeb30f689defdd40409afa0d69f4e7a7 3110 
libcompress-raw-zlib-perl_2.011-2.diff.gz
 213f24e690cfdc6dc012563354b4f428734852b0 8 
libcompress-raw-zlib-perl_2.011-2_i386.deb
Checksums-Sha256: 
 de3ec3c666f4e9d4f388c0b0f19b426132ad3ce44dfb792e8ab1c71153629390 1511 
libcompress-raw-zlib-perl_2.011-2.dsc
 7cb2bcbf2c07ba25503f49d3c2eaea53c2ed0677a734b7181ebda1c0838165dc 3110 
libcompress-raw-zlib-perl_2.011-2.diff.gz
 dd39c6593f9e565df8d3b2e5d4e37973a656e38706a8ce9083be114f83c0c8c1 8 
libcompress-raw-zlib-perl_2.011-2_i386.deb
Files: 
 06adb45c3ebf75fe4949039b2619d52b 1511 perl optional 
libcompress-raw-zlib-perl_2.011-2.dsc
 e5304588edc8e0fde7b50b635cac8e11 3110 perl optional 
libcompress-raw-zlib-perl_2.011-2.diff.gz
 5025ac1d71d94508e7ea12aea90b5123 8 perl optional 
libcompress-raw-zlib-perl_2.011-2_i386.deb

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

iD8DBQFIMuPAHqjlqpcl9jsRAm86AJ9nwG6QzqnrhHAhF+yF23Akfq0aJACfeFD9
qscwFrymflCykwxTuU6lhgE=
=zbpu
-END PGP SIGNATURE-


Accepted:
libcompress-raw-zlib-perl_2.011-2.diff.gz
  to 
pool/main/libc/libcompress-raw-zlib-perl/libcompress-raw-zlib-perl_2.011-2.diff.gz
libcompress-raw-zlib-perl_2.011-2.dsc
  to 
pool/main/libc/libcompress-raw-zlib-perl/libcompress-raw-zlib-perl_2.011-2.dsc
libcompress-raw-zlib-perl_2.011-2_i386.deb
  to 
pool/main/libc/libcompress-raw-zlib-perl/libcompress-raw-zlib-perl_2.011-2_i386.deb


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



Accepted osc 0.100.2-1 (source all)

2008-05-20 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 17:30:41 +0200
Source: osc
Binary: osc
Architecture: source all
Version: 0.100.2-1
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař [EMAIL PROTECTED]
Changed-By: Michal Čihař [EMAIL PROTECTED]
Description: 
 osc- OpenSUSE (buildsystem) commander
Changes: 
 osc (0.100.2-1) unstable; urgency=low
 .
   * New upstream version.
   * Document source packaging in debian/README.source.
   * Move packaging to Python Applications Packaging Team:
 - Change Vcs fields in debian/control.
 - Add team to Uploaders.
Checksums-Sha1: 
 42cd3a5b133067bb4bf9cabd85e3ec68dc0953dc 1285 osc_0.100.2-1.dsc
 9cba327923ffada6cbdba5b024da3e9c29019ec6 87495 osc_0.100.2.orig.tar.gz
 4c0d6765ef9c1942659cb3a39f2c34ed384037cc 5155 osc_0.100.2-1.diff.gz
 cb805c5d02788c919081fc33af2e6d2ddf530371 86564 osc_0.100.2-1_all.deb
Checksums-Sha256: 
 eec55cc6e4779791b881dfa119b051edf7ab6d99b0b4879ccdcbb6f724a9a0ae 1285 
osc_0.100.2-1.dsc
 ff53c77260843653843f634f06b92ce8770364217f0ab212d534854b4b0b4930 87495 
osc_0.100.2.orig.tar.gz
 18262f180f3397c9d836f680e28ac5406520b70e3fa4c1095dfda7185d30cb24 5155 
osc_0.100.2-1.diff.gz
 c3021e3d6ed2aacdd7c10354bfdbe8fed9ca0e5e3cdde72ec0702ee465f6f4c3 86564 
osc_0.100.2-1_all.deb
Files: 
 1f2c23d61fe18d2c7f3ab77f4f05e04c 1285 devel extra osc_0.100.2-1.dsc
 1e05f2aa703d9e9ac042d07d76edea06 87495 devel extra osc_0.100.2.orig.tar.gz
 7afdf3b49dcfa941a16a5cc2b7205f36 5155 devel extra osc_0.100.2-1.diff.gz
 b88e84e9f1742a8bc2701ce25434f25c 86564 devel extra osc_0.100.2-1_all.deb

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

iD8DBQFIMu7l3DVS6DbnVgQRAsmaAKCv7Jvo/0sfR2G7YW03tiJaTfPSbgCfX9FK
xwBhgLJFBqMOF6j2MsEwjCM=
=PD96
-END PGP SIGNATURE-


Accepted:
osc_0.100.2-1.diff.gz
  to pool/main/o/osc/osc_0.100.2-1.diff.gz
osc_0.100.2-1.dsc
  to pool/main/o/osc/osc_0.100.2-1.dsc
osc_0.100.2-1_all.deb
  to pool/main/o/osc/osc_0.100.2-1_all.deb
osc_0.100.2.orig.tar.gz
  to pool/main/o/osc/osc_0.100.2.orig.tar.gz


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



Accepted vorbis-tools 1.2.0-2 (source amd64)

2008-05-20 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 10:49:09 -0400
Source: vorbis-tools
Binary: vorbis-tools
Architecture: source amd64
Version: 1.2.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Xiph.org Maintainers [EMAIL PROTECTED]
Changed-By: Clint Adams [EMAIL PROTECTED]
Description: 
 vorbis-tools - several Ogg Vorbis tools
Closes: 470133 480059
Changes: 
 vorbis-tools (1.2.0-2) unstable; urgency=medium
 .
   [ Adeodato Simó ]
   * Install upstream CHANGES file as changelog.gz. Thanks Bastian Kleineidam.
 (Closes: #470133)
 .
   [ Clint Adams ]
   * Add upstream_r14728-speex_format_validation.diff. closes: #480059.
   * Loosen libflac-dev build dependency to ( 1.1.4) to facilitate
 backports.
Checksums-Sha1: 
 4c6c2743f628316457b41e9a0ea42bd69c892a22 1298 vorbis-tools_1.2.0-2.dsc
 0b0223dd06780b8a5d227dd8e74c2f4df7e3430c 32260 vorbis-tools_1.2.0-2.diff.gz
 cdd9734334d6b50c7fedd05e902f8a912c8bd4d4 200814 vorbis-tools_1.2.0-2_amd64.deb
Checksums-Sha256: 
 030e62fc523aa3cfa2e344dd464e799cd5ba3a96f67356acc94286cc56e0e62b 1298 
vorbis-tools_1.2.0-2.dsc
 0dabd53464a83a4e7c94243e1613d7b221301e21285e955d86e84644a745c699 32260 
vorbis-tools_1.2.0-2.diff.gz
 07a692d0597c3ef3756f9c9148b5934a80ddc86860ba880f8e59093c884842ac 200814 
vorbis-tools_1.2.0-2_amd64.deb
Files: 
 2fc93fb3ef660944d757a64e91df5523 1298 sound optional vorbis-tools_1.2.0-2.dsc
 c303256c3cd0a884916a758b2187bbff 32260 sound optional 
vorbis-tools_1.2.0-2.diff.gz
 7ad7236ac1385e654c49d3ebd96d4752 200814 sound optional 
vorbis-tools_1.2.0-2_amd64.deb

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

iD8DBQFIMu155m0u66uWM3ARAuREAJsHERj7qOzjLiSRXzYF1Bo4oqsXXwCg3PV+
xj/cWoFLkIvejwEG7j/yOvI=
=fPIq
-END PGP SIGNATURE-


Accepted:
vorbis-tools_1.2.0-2.diff.gz
  to pool/main/v/vorbis-tools/vorbis-tools_1.2.0-2.diff.gz
vorbis-tools_1.2.0-2.dsc
  to pool/main/v/vorbis-tools/vorbis-tools_1.2.0-2.dsc
vorbis-tools_1.2.0-2_amd64.deb
  to pool/main/v/vorbis-tools/vorbis-tools_1.2.0-2_amd64.deb


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



Accepted linux-latest-2.6 14 (source powerpc)

2008-05-20 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 13:28:45 +0200
Source: linux-latest-2.6
Binary: linux-image-alpha-generic linux-image-2.6-alpha-generic 
linux-headers-2.6-alpha-generic linux-image-alpha-smp linux-image-2.6-alpha-smp 
linux-headers-2.6-alpha-smp linux-image-alpha-legacy 
linux-image-2.6-alpha-legacy linux-headers-2.6-alpha-legacy linux-image-amd64 
linux-image-2.6-amd64 linux-headers-2.6-amd64 linux-image-footbridge 
linux-image-2.6-footbridge linux-headers-2.6-footbridge linux-image-iop32x 
linux-image-2.6-iop32x linux-headers-2.6-iop32x linux-image-ixp4xx 
linux-image-2.6-ixp4xx linux-headers-2.6-ixp4xx linux-image-orion5x 
linux-image-2.6-orion5x linux-headers-2.6-orion5x linux-image-versatile 
linux-image-2.6-versatile linux-headers-2.6-versatile linux-image-parisc 
linux-image-2.6-parisc linux-headers-2.6-parisc linux-image-parisc-smp 
linux-image-2.6-parisc-smp linux-headers-2.6-parisc-smp linux-image-parisc64 
linux-image-2.6-parisc64 linux-headers-2.6-parisc64 linux-image-parisc64-smp 
linux-image-2.6-parisc64-smp linux-headers-2.6-parisc64-smp linux-image-486 
linux-image-2.6-486 linux-headers-2.6-486 linux-image-686 linux-image-2.6-686 
linux-headers-2.6-686 linux-image-686-bigmem linux-image-2.6-686-bigmem 
linux-headers-2.6-686-bigmem linux-image-xen-686 linux-image-2.6-xen-686 
linux-headers-2.6-xen-686 linux-image-itanium linux-image-2.6-itanium 
linux-headers-2.6-itanium linux-image-mckinley linux-image-2.6-mckinley 
linux-headers-2.6-mckinley linux-image-amiga linux-image-2.6-amiga 
linux-headers-2.6-amiga linux-image-atari linux-image-2.6-atari 
linux-headers-2.6-atari linux-image-bvme6000 linux-image-2.6-bvme6000 
linux-headers-2.6-bvme6000 linux-image-mac linux-image-2.6-mac 
linux-headers-2.6-mac linux-image-mvme147 linux-image-2.6-mvme147 
linux-headers-2.6-mvme147 linux-image-mvme16x linux-image-2.6-mvme16x 
linux-headers-2.6-mvme16x linux-image-r4k-ip22 linux-image-2.6-r4k-ip22 
linux-headers-2.6-r4k-ip22 linux-image-r5k-ip32 linux-image-2.6-r5k-ip32 
linux-headers-2.6-r5k-ip32 linux-image-sb1-bcm91250a 
linux-image-2.6-sb1-bcm91250a linux-headers-2.6-sb1-bcm91250a 
linux-image-sb1a-bcm91480b linux-image-2.6-sb1a-bcm91480b 
linux-headers-2.6-sb1a-bcm91480b linux-image-4kc-malta 
linux-image-2.6-4kc-malta linux-headers-2.6-4kc-malta linux-image-5kc-malta 
linux-image-2.6-5kc-malta linux-headers-2.6-5kc-malta linux-image-r5k-cobalt 
linux-image-2.6-r5k-cobalt linux-headers-2.6-r5k-cobalt linux-image-powerpc 
linux-image-2.6-powerpc linux-headers-2.6-powerpc linux-image-powerpc-smp 
linux-image-2.6-powerpc-smp linux-headers-2.6-powerpc-smp 
linux-image-powerpc-miboot linux-image-2.6-powerpc-miboot 
linux-headers-2.6-powerpc-miboot linux-image-powerpc64 
linux-image-2.6-powerpc64 linux-headers-2.6-powerpc64 linux-image-s390 
linux-image-2.6-s390 linux-headers-2.6-s390 linux-image-s390-tape 
linux-image-2.6-s390-tape linux-image-s390x linux-image-2.6-s390x 
linux-headers-2.6-s390x linux-image-sparc64 linux-image-2.6-sparc64 
linux-headers-2.6-sparc64 linux-image-sparc64-smp linux-image-2.6-sparc64-smp 
linux-headers-2.6-sparc64-smp linux-image-k7 linux-image-2.6-k7 
linux-headers-2.6-k7
Architecture: source powerpc
Version: 14
Distribution: unstable
Urgency: low
Maintainer: Debian Kernel Team [EMAIL PROTECTED]
Changed-By: Bastian Blank [EMAIL PROTECTED]
Description: 
 linux-headers-2.6-486 - Header files for Linux 2.6 on x86
 linux-headers-2.6-4kc-malta - Header files for Linux 2.6 on MIPS Malta
 linux-headers-2.6-5kc-malta - Header files for Linux 2.6 on MIPS Malta (64-bit)
 linux-headers-2.6-686 - Header files for Linux 2.6 on PPro/Celeron/PII/PIII/P4
 linux-headers-2.6-686-bigmem - Header files for Linux 2.6 on 
PPro/Celeron/PII/PIII/P4
 linux-headers-2.6-alpha-generic - Header files for Linux 2.6 on Alpha
 linux-headers-2.6-alpha-legacy - Header files for Linux 2.6 on Alpha Legacy
 linux-headers-2.6-alpha-smp - Header files for Linux 2.6 on Alpha SMP
 linux-headers-2.6-amd64 - Header files for Linux 2.6 on AMD64
 linux-headers-2.6-amiga - Header files for Linux 2.6 on Amiga
 linux-headers-2.6-atari - Header files for Linux 2.6 on Atari
 linux-headers-2.6-bvme6000 - Header files for Linux 2.6 on BVM BVME4000 and 
BVME6000
 linux-headers-2.6-footbridge - Header files for Linux 2.6 on Footbridge based
 linux-headers-2.6-iop32x - Header files for Linux 2.6 on IOP32x
 linux-headers-2.6-itanium - Header files for Linux 2.6 on Itanium
 linux-headers-2.6-ixp4xx - Header files for Linux 2.6 on IXP4xx
 linux-headers-2.6-k7 - Header files for Linux 2.6 on AMD K7 - transition 
package
 linux-headers-2.6-mac - Header files for Linux 2.6 on Macintosh
 linux-headers-2.6-mckinley - Header files for Linux 2.6 on Itanium II
 linux-headers-2.6-mvme147 - Header files for Linux 2.6 on Motorola MVME147
 linux-headers-2.6-mvme16x - Header files for Linux 2.6 on Motorola 
MVME162/6/7, MVME172/7
 linux-headers-2.6-orion5x - Header files for Linux 2.6 on Orion

Accepted xplanet 1.2.0-6 (source all i386)

2008-05-20 Thread Ruben Molina
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 08:11:52 -0500
Source: xplanet
Binary: xplanet xplanet-images
Architecture: source all i386
Version: 1.2.0-6
Distribution: unstable
Urgency: low
Maintainer: Luca Bruno [EMAIL PROTECTED]
Changed-By: Ruben Molina [EMAIL PROTECTED]
Description: 
 xplanet- render images of the earth
 xplanet-images - day and night earth image maps for xplanet
Closes: 187503 218578 249728 476179
Changes: 
 xplanet (1.2.0-6) unstable; urgency=low
 .
   * New maintainer. Closes: #476179.
   * Solved lintian warnings
 + Adjusted rules file to use '[ ! -f Makefile ] || $(MAKE) distclean'
   instead of '-$(MAKE) distclean'.
 + Adjusted control file to use quilt (= 0.40) instead of (= 0.40-1).
 + Adjusted rules file to remove empty images/ dir.
   * Closed old bugs not present in current version.
 + xplanet now reads environment variables properly (Closes: #218578).
 + xplanet now includes a 'constellations' example in
   /usr/share/xplanet/arcs/ (Closes: #187503).
 + Satellite trajectories were verified using AMSAT's TLE-data and Real
   Time Satellite Tracking from n2yo.com (Closes: #249728).
   * Homepage field added
   * Update debian/copyright to include third parties, and rewrite using
 http://wiki.debian.org/Proposals/CopyrightFormat
   * Remove obsolete debian/package.docs
   * Added a patch for the man page, to replace hyphens where a minus sign
 was intended.
Checksums-Sha1: 
 d735b67ba84d6cf3b58666a1e9c02c3bc2e84868 1163 xplanet_1.2.0-6.dsc
 c04d60cadec23cfec0d2e1a7d72d5f53af2d5f16 36701 xplanet_1.2.0-6.diff.gz
 de54b959ffafd652aacf2a184fb07378870a 433698 xplanet-images_1.2.0-6_all.deb
 507f47640e1be339b313ac9e0bc3f7f96bb628c5 643892 xplanet_1.2.0-6_i386.deb
Checksums-Sha256: 
 6fa897a7c6c3de82aed17f1ea9851f69d2169a3e382d9cec358eb4a2d5630f4a 1163 
xplanet_1.2.0-6.dsc
 cd1ca35e23e7229cdd3c19ac19aa98a0fe1c04b2549b15bf37f4ccc83f6ad47b 36701 
xplanet_1.2.0-6.diff.gz
 e95054b0fc2493aa043d966ac42a2f44fec22807014a13eeac285cf4c0f72f9a 433698 
xplanet-images_1.2.0-6_all.deb
 0a56364802e56ccd212c3bf3de0b82f25ae752be73346e28fe1b1160b5d1be76 643892 
xplanet_1.2.0-6_i386.deb
Files: 
 6074e7e79427f40537b60f82184319b8 1163 graphics optional xplanet_1.2.0-6.dsc
 e18eb718a3417747475ad8db737d0ac7 36701 graphics optional 
xplanet_1.2.0-6.diff.gz
 a47e69a5d0cbdf24626be38b85b38016 433698 graphics optional 
xplanet-images_1.2.0-6_all.deb
 80ce613b721d8ff2cb5d649d4735e1e6 643892 graphics optional 
xplanet_1.2.0-6_i386.deb

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

iD8DBQFIMvgGRqobajv7n7MRAmHEAJ9vdHRWTCaWoTQpOdFGghmrYeQGiQCfewi8
9+p7SoDV46bdQuG6vpPyV20=
=FU/k
-END PGP SIGNATURE-


Accepted:
xplanet-images_1.2.0-6_all.deb
  to pool/main/x/xplanet/xplanet-images_1.2.0-6_all.deb
xplanet_1.2.0-6.diff.gz
  to pool/main/x/xplanet/xplanet_1.2.0-6.diff.gz
xplanet_1.2.0-6.dsc
  to pool/main/x/xplanet/xplanet_1.2.0-6.dsc
xplanet_1.2.0-6_i386.deb
  to pool/main/x/xplanet/xplanet_1.2.0-6_i386.deb


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



Accepted foremost 1.5.4-1 (source i386)

2008-05-20 Thread Gürkan Sengün
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 09:31:54 +0200
Source: foremost
Binary: foremost
Architecture: source i386
Version: 1.5.4-1
Distribution: unstable
Urgency: low
Maintainer: Gürkan Sengün [EMAIL PROTECTED]
Changed-By: Gürkan Sengün [EMAIL PROTECTED]
Description: 
 foremost   - Forensics application to recover data
Changes: 
 foremost (1.5.4-1) unstable; urgency=low
 .
   * New upstream version.
   * Updated my email address.
Checksums-Sha1: 
 f67bd64d01fae43cf07e3f62005681874d2aee07 985 foremost_1.5.4-1.dsc
 af075ea068bf1a83d7b37852dd7c60308e46f5de 50746 foremost_1.5.4.orig.tar.gz
 fcaefe4f5597c259ce8df803b1718d1d8a866100 3479 foremost_1.5.4-1.diff.gz
 ab48ea57e2564cda0123ffb210aab1a214a9320c 40374 foremost_1.5.4-1_i386.deb
Checksums-Sha256: 
 5172f05ebf733f7329e6b3e0e812b51ab57bfe1b203fe9c7c0aafed62e90e956 985 
foremost_1.5.4-1.dsc
 c47e83eac69aeac2bc5c091bb4287d8d56e86ce6e58ece53a6c879d805b96043 50746 
foremost_1.5.4.orig.tar.gz
 6ce7dc051cc7d4563ce4780065a0eb4f2a0938f87ee7c7f7a7abac5b0321f012 3479 
foremost_1.5.4-1.diff.gz
 52d8e6eb0d1772a6cbdb94cf4c3380f8833e802dc15a6781c7e64b57ee0ed758 40374 
foremost_1.5.4-1_i386.deb
Files: 
 d0565a6fd0f794b620c1e3642b99be9c 985 admin optional foremost_1.5.4-1.dsc
 55395b1fef1039a88e02d81682347f6d 50746 admin optional 
foremost_1.5.4.orig.tar.gz
 13557c3c31c3d516e2ea811d4d78b140 3479 admin optional foremost_1.5.4-1.diff.gz
 da8540faffe3bd2e4a5f4a762150ed8d 40374 admin optional foremost_1.5.4-1_i386.deb

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

iD8DBQFIMwXZ+ZNUJLHfmlcRAgQpAJwI9JuZnGJ9eaiRFEKW2MUa2TjZVACffWdH
KWdz50Ev2jiGm2shRKIk1qA=
=DmOh
-END PGP SIGNATURE-


Accepted:
foremost_1.5.4-1.diff.gz
  to pool/main/f/foremost/foremost_1.5.4-1.diff.gz
foremost_1.5.4-1.dsc
  to pool/main/f/foremost/foremost_1.5.4-1.dsc
foremost_1.5.4-1_i386.deb
  to pool/main/f/foremost/foremost_1.5.4-1_i386.deb
foremost_1.5.4.orig.tar.gz
  to pool/main/f/foremost/foremost_1.5.4.orig.tar.gz


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



Accepted eet 1.0.1-1 (source all i386)

2008-05-20 Thread Jan Lübbe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 18:21:30 +0200
Source: eet
Binary: libeet-dev libeet-doc libeet1 libeet-bin libeet-dbg
Architecture: source all i386
Version: 1.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Pkg-e Team [EMAIL PROTECTED]
Changed-By: Jan Lübbe [EMAIL PROTECTED]
Description: 
 libeet-bin - Enlightenment DR17 file chunk reading/writing utility
 libeet-dbg - Enlightenment DR17 file chunk reading/writing library - debug sym
 libeet-dev - Enlightenment DR17 file chunk reading/writing library development
 libeet-doc - libeet1 API documentation
 libeet1- Enlightenment DR17 file chunk reading/writing library
Changes: 
 eet (1.0.1-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 0ec4191687724fc96c0d4040325dfe115c60175e 1281 eet_1.0.1-1.dsc
 18b69ace60c2b5965fbbf2f85c03e46627b3b9bd 2873497 eet_1.0.1.orig.tar.gz
 8af726c2130a56b8c037012937695aa17485987d 3215 eet_1.0.1-1.diff.gz
 a9b1c2d48ba0def19477746ef24c892a2a721806 1272470 libeet-doc_1.0.1-1_all.deb
 745d9bd04abf1e9c4b481b8212285ce89a2aeac4 39074 libeet-dev_1.0.1-1_i386.deb
 6c434f2bf01e5bf5b8141dd61a03ecdff898ce9c 29382 libeet1_1.0.1-1_i386.deb
 8247ab163a09d2aa10f41ebd8a97ba37870826c9 8722 libeet-bin_1.0.1-1_i386.deb
 532008fb67e77f8df9605365ea04e814978fc0b5 56248 libeet-dbg_1.0.1-1_i386.deb
Checksums-Sha256: 
 a747f2715e225071435081f73f75d604889a79fcfc352f5531fb358c621de688 1281 
eet_1.0.1-1.dsc
 40398d1530a34b6314c0b97f6bb1c11fa80e5f107806a81e7c4e96e3ee1c36f6 2873497 
eet_1.0.1.orig.tar.gz
 17e7ecdea69b84a91293702f834e7c34848c7a98aa5a75f1d73d61069e49783e 3215 
eet_1.0.1-1.diff.gz
 d72f3cd7ac87ec4875e74dbba185a1ee5068a6b4ed16c52b6de9c08cd1224dec 1272470 
libeet-doc_1.0.1-1_all.deb
 64459c687d89e36998a222cce5e89a2882e2ed76b979c7de79178e8aaa271bef 39074 
libeet-dev_1.0.1-1_i386.deb
 6ceb276d7890ee7328c66675646f7d1c540c4276ed094d2df8977050edc162ff 29382 
libeet1_1.0.1-1_i386.deb
 43e53c56e997e568d47e6d58e90cbdd3722183135140994e6acff25e737cddfb 8722 
libeet-bin_1.0.1-1_i386.deb
 73e1fb72d3fd806220773acbc3aa050fdf4b2faf1c1ebd178ac55bc45abc83d7 56248 
libeet-dbg_1.0.1-1_i386.deb
Files: 
 a8e7b891e1fc31160590f252c86f83dc 1281 libs optional eet_1.0.1-1.dsc
 77801e42abf3b7387ae15750c679741a 2873497 libs optional eet_1.0.1.orig.tar.gz
 87142bd97bf8049d666ac99ecea60847 3215 libs optional eet_1.0.1-1.diff.gz
 26433fd13a11f22e83c3a8dff0f77402 1272470 doc optional 
libeet-doc_1.0.1-1_all.deb
 851a7f3a7b94fcc45fbd09ce35cf4303 39074 libdevel optional 
libeet-dev_1.0.1-1_i386.deb
 d15ba216ed0171b5db0a5e3b98cda036 29382 libs optional libeet1_1.0.1-1_i386.deb
 eff43f182a505c47d7c930427afb52a4 8722 libs optional libeet-bin_1.0.1-1_i386.deb
 e444a6f4d680627e1003f1dd36f13b42 56248 libdevel extra 
libeet-dbg_1.0.1-1_i386.deb

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

iD8DBQFIMvtsioOL5NhIDy4RAnk7AKD4oKZ51cEF4P9krlYnM77KeGeMGgCg0TjQ
JIvAI9e1YEKHr7NJrY6J/Jc=
=aMEZ
-END PGP SIGNATURE-


Accepted:
eet_1.0.1-1.diff.gz
  to pool/main/e/eet/eet_1.0.1-1.diff.gz
eet_1.0.1-1.dsc
  to pool/main/e/eet/eet_1.0.1-1.dsc
eet_1.0.1.orig.tar.gz
  to pool/main/e/eet/eet_1.0.1.orig.tar.gz
libeet-bin_1.0.1-1_i386.deb
  to pool/main/e/eet/libeet-bin_1.0.1-1_i386.deb
libeet-dbg_1.0.1-1_i386.deb
  to pool/main/e/eet/libeet-dbg_1.0.1-1_i386.deb
libeet-dev_1.0.1-1_i386.deb
  to pool/main/e/eet/libeet-dev_1.0.1-1_i386.deb
libeet-doc_1.0.1-1_all.deb
  to pool/main/e/eet/libeet-doc_1.0.1-1_all.deb
libeet1_1.0.1-1_i386.deb
  to pool/main/e/eet/libeet1_1.0.1-1_i386.deb


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



Accepted libimager-perl 0.65-1 (source i386)

2008-05-20 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 19:00:17 +0200
Source: libimager-perl
Binary: libimager-perl
Architecture: source i386
Version: 0.65-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libimager-perl - Perl extension for Generating 24 bit Images
Changes: 
 libimager-perl (0.65-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 6f077c0c581c05668cfe8b5563d1a91130ad87fa 1533 libimager-perl_0.65-1.dsc
 27a2f1e6a362b8ea470bcf12c7e8342c30d28fc4 935880 libimager-perl_0.65.orig.tar.gz
 dcc98401ea1f29b250c692fbbbfceaaf74225914 4890 libimager-perl_0.65-1.diff.gz
 990b9cf1326d6a6dac9951d3bb510e0f0d6d28fe 752144 libimager-perl_0.65-1_i386.deb
Checksums-Sha256: 
 c27c7a42012b6a9af7376e2a426c23e0b7faed2a3722e05564a761c9e5d09eff 1533 
libimager-perl_0.65-1.dsc
 3813be61a722784f8f4a9c6cc40e7d751f740d6646231a223ba726bc6322ecc5 935880 
libimager-perl_0.65.orig.tar.gz
 c339c0af5bb94bb58a26a2f501bb7c59bb3f99688f0658fe0d1cce854af3b3a1 4890 
libimager-perl_0.65-1.diff.gz
 fd3c8cc82a24304d50a21638cb40eacc48a4ddd89c81f349c08891eb355cad60 752144 
libimager-perl_0.65-1_i386.deb
Files: 
 50e75f85e385f9da8978e838ace32b73 1533 perl optional libimager-perl_0.65-1.dsc
 cf2c96f8107e1487c0bb536384f9d961 935880 perl optional 
libimager-perl_0.65.orig.tar.gz
 78f0747075069618b1ad79a0368650d2 4890 perl optional 
libimager-perl_0.65-1.diff.gz
 69eaac2ed9aaf1738197df5a2b9c7c8e 752144 perl optional 
libimager-perl_0.65-1_i386.deb

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

iD8DBQFIMwReOzKYnQDzz+QRAtXwAJ9IttiHR7+F4BRK2IPx9v4zGshocgCfSyfu
P/EwjDixLqcTVWxLfw+y0SM=
=DAYN
-END PGP SIGNATURE-


Accepted:
libimager-perl_0.65-1.diff.gz
  to pool/main/libi/libimager-perl/libimager-perl_0.65-1.diff.gz
libimager-perl_0.65-1.dsc
  to pool/main/libi/libimager-perl/libimager-perl_0.65-1.dsc
libimager-perl_0.65-1_i386.deb
  to pool/main/libi/libimager-perl/libimager-perl_0.65-1_i386.deb
libimager-perl_0.65.orig.tar.gz
  to pool/main/libi/libimager-perl/libimager-perl_0.65.orig.tar.gz


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



Accepted kerberos-configs 1.19 (source all)

2008-05-20 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 08:42:05 -0700
Source: kerberos-configs
Binary: krb5-config krb4-config
Architecture: source all
Version: 1.19
Distribution: unstable
Urgency: low
Maintainer: Sam Hartman [EMAIL PROTECTED]
Changed-By: Russ Allbery [EMAIL PROTECTED]
Description: 
 krb4-config - Configuration files for Kerberos Version 4
 krb5-config - Configuration files for Kerberos Version 5
Closes: 479385 482021
Changes: 
 kerberos-configs (1.19) unstable; urgency=low
 .
   * Add a domain_realm mapping for SLAC.STANFORD.EDU to the default
 krb5.conf so that the domain_realm mapping for stanford.edu doesn't
 override it.  (Closes: #482021)
   * Add more of a comment about why one might ever want to change the
 supported enctypes and change the commented-out lines to make it more
 obvious that we're not trying to document the list of supported
 enctypes.  (Closes: #479385)
   * Teach the krb5-config config script about the default domain_realm
 mappings in the default krb5.conf.  Partly addresses #445063, but only
 for Stanford and MIT users.
Checksums-Sha1: 
 a6ff8f28edb37a45e17eee41516a4caddcbb9903 774 kerberos-configs_1.19.dsc
 cb9a89280221ac7940268d961ac1b945a4778372 21650 kerberos-configs_1.19.tar.gz
 376d0baff79cc939c607eaaadf937fe1c1975a84 17478 krb5-config_1.19_all.deb
 ae0beb8ed3772ee939e3f9efed5b8f283ee9a650 17120 krb4-config_1.19_all.deb
Checksums-Sha256: 
 1387f2d634bbe37ce86bb369fc5a411b10cbd79845f2e64ce92fd7d7d24c2321 774 
kerberos-configs_1.19.dsc
 558d9d7c6b2c83639220e2dfda3fcc310c78bd6e9e1ec6334ff0215196ea6e6a 21650 
kerberos-configs_1.19.tar.gz
 238357203fe1c588f12aebfd0ec62c637f3ee506bdc41a157f71bd7df3b684b6 17478 
krb5-config_1.19_all.deb
 b81f058440114ac38782fdd4aa5af5990c994e6b7e25c60ddd24cd0dc997d95d 17120 
krb4-config_1.19_all.deb
Files: 
 01375eb21bf39f7b6d3e8f8783aa9415 774 net optional kerberos-configs_1.19.dsc
 024e20a05f57438ba210731dae6dad2b 21650 net optional 
kerberos-configs_1.19.tar.gz
 42abac53001dde4a3a12ad2c361c0afe 17478 net optional krb5-config_1.19_all.deb
 ed5cc2c60c29c1570b22cdc4c796aff6 17120 net optional krb4-config_1.19_all.deb

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

iD8DBQFIMwzE+YXjQAr8dHYRAnTmAJ9GEMwKvPFshV+4/qw/3CJw00TRRwCgxWsN
m9W0dXcU/N+EA+c2nLJa5vg=
=4TXx
-END PGP SIGNATURE-


Accepted:
kerberos-configs_1.19.dsc
  to pool/main/k/kerberos-configs/kerberos-configs_1.19.dsc
kerberos-configs_1.19.tar.gz
  to pool/main/k/kerberos-configs/kerberos-configs_1.19.tar.gz
krb4-config_1.19_all.deb
  to pool/main/k/kerberos-configs/krb4-config_1.19_all.deb
krb5-config_1.19_all.deb
  to pool/main/k/kerberos-configs/krb5-config_1.19_all.deb


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



Accepted ttf-dejavu 2.25-1 (source all)

2008-05-20 Thread Davide Viti
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 21:45:45 +0200
Source: ttf-dejavu
Binary: ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ttf-dejavu-udeb
Architecture: source all
Version: 2.25-1
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force [EMAIL PROTECTED]
Changed-By: Davide Viti [EMAIL PROTECTED]
Description: 
 ttf-dejavu - Metapackage to pull in ttf-dejavu-core and ttf-dejavu-extra
 ttf-dejavu-core - Vera font family derivate with additional characters
 ttf-dejavu-extra - Vera font family derivate with additional characters
 ttf-dejavu-udeb - Vera font family derivate with additional characters (udeb)
Changes: 
 ttf-dejavu (2.25-1) unstable; urgency=low
 .
   * New upstream release
   * Fix lintian warning about fontforge and libfont-ttf-perl versions
   * debian/control: bump minimal version of fontforge to 0.0.20080330
   * Remove patch from previous release
Checksums-Sha1: 
 3a8176f8cc57968ba45445e1f3694603fe79b4bd 1462 ttf-dejavu_2.25-1.dsc
 260f6f6e1b8868cc6bcb696da886b884d13b98e6 10130013 ttf-dejavu_2.25.orig.tar.gz
 9aa72185deaa398f4187ea142b5f9d845b175878 8600 ttf-dejavu_2.25-1.diff.gz
 26b6d03a9119d3b1cc0d19fe3cfdcf057273f888 25448 ttf-dejavu_2.25-1_all.deb
 97d2c6dffea07c4c9131b5b3096056f305d64b65 1360362 ttf-dejavu-core_2.25-1_all.deb
 1dd983eec1d1b4368b7443a7b753b7276fae19ff 2981324 
ttf-dejavu-extra_2.25-1_all.deb
 9e6490de6bf5e815b4dc50c8887cee8178a19391 440198 ttf-dejavu-udeb_2.25-1_all.udeb
Checksums-Sha256: 
 3d8027b0f5a2736429b75d299177bad7bcceee3e1a14c52ac88ff9c1a6786477 1462 
ttf-dejavu_2.25-1.dsc
 a1ffefdeabbb42c6a8d3ff7bd1a0805e222a400554e205978e7ac8002116e1eb 10130013 
ttf-dejavu_2.25.orig.tar.gz
 d8cf1b03b609297439572ee07e85510852f187c765f1dc4fcbaf62751da7a8fc 8600 
ttf-dejavu_2.25-1.diff.gz
 87a5238f5954f183a00ef47107ca59289879c4e87112d616d366e24971df0264 25448 
ttf-dejavu_2.25-1_all.deb
 7192df859843109a5c1a979f8793cb1cde79b103b86ca94e8fb40079be0a807f 1360362 
ttf-dejavu-core_2.25-1_all.deb
 e644f9b8c6c8da47f0b9ac6f645c5adae4e64d909acac431f98f6eaaa6631ce8 2981324 
ttf-dejavu-extra_2.25-1_all.deb
 a80230bbc926471adb5fcbcf9219041f5e6517c9004039909666f412f96a8f2a 440198 
ttf-dejavu-udeb_2.25-1_all.udeb
Files: 
 6f361a8d35054275bbe0c5dbd05792e7 1462 x11 optional ttf-dejavu_2.25-1.dsc
 d0f9ea04e878ceeff98198522e3cd2d6 10130013 x11 optional 
ttf-dejavu_2.25.orig.tar.gz
 145b645dbbba4186c3480dbd9ea11987 8600 x11 optional ttf-dejavu_2.25-1.diff.gz
 486fc0e738cf89f607a7b50574d7dbf1 25448 x11 optional ttf-dejavu_2.25-1_all.deb
 0334471e3c27a3cef1b01d8baa461c7c 1360362 x11 optional 
ttf-dejavu-core_2.25-1_all.deb
 477b3e949b01c74dd2a0d9339bdc4646 2981324 x11 optional 
ttf-dejavu-extra_2.25-1_all.deb
 3750049287382925116e84523a3ca1a7 440198 debian-installer optional 
ttf-dejavu-udeb_2.25-1_all.udeb
Package-Type: udeb

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

iD8DBQFIMwr31OXtrMAUPS0RAg50AJ0U7NnSFXq4BCY455DSZLosXgzqbACeNm0e
SThIyakoG0jwMWSnAeCEosg=
=Gk1r
-END PGP SIGNATURE-


Accepted:
ttf-dejavu-core_2.25-1_all.deb
  to pool/main/t/ttf-dejavu/ttf-dejavu-core_2.25-1_all.deb
ttf-dejavu-extra_2.25-1_all.deb
  to pool/main/t/ttf-dejavu/ttf-dejavu-extra_2.25-1_all.deb
ttf-dejavu-udeb_2.25-1_all.udeb
  to pool/main/t/ttf-dejavu/ttf-dejavu-udeb_2.25-1_all.udeb
ttf-dejavu_2.25-1.diff.gz
  to pool/main/t/ttf-dejavu/ttf-dejavu_2.25-1.diff.gz
ttf-dejavu_2.25-1.dsc
  to pool/main/t/ttf-dejavu/ttf-dejavu_2.25-1.dsc
ttf-dejavu_2.25-1_all.deb
  to pool/main/t/ttf-dejavu/ttf-dejavu_2.25-1_all.deb
ttf-dejavu_2.25.orig.tar.gz
  to pool/main/t/ttf-dejavu/ttf-dejavu_2.25.orig.tar.gz


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



Accepted gnutls26 2.2.5-1 (source all i386)

2008-05-20 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 19:19:55 +0200
Source: gnutls26
Binary: libgnutls-dev libgnutls26 libgnutls26-dbg gnutls-bin gnutls-doc 
guile-gnutls
Architecture: source all i386
Version: 2.2.5-1
Distribution: unstable
Urgency: high
Maintainer: Debian GnuTLS Maintainers [EMAIL PROTECTED]
Changed-By: Andreas Metzler [EMAIL PROTECTED]
Description: 
 gnutls-bin - the GNU TLS library - commandline utilities
 gnutls-doc - the GNU TLS library - documentation and examples
 guile-gnutls - the GNU TLS library - GNU Guile bindings
 libgnutls-dev - the GNU TLS library - development files
 libgnutls26 - the GNU TLS library - runtime library
 libgnutls26-dbg - GNU TLS library - debugger symbols
Changes: 
 gnutls26 (2.2.5-1) unstable; urgency=high
 .
   * New upstream version.
 Fixes three security vulnerabilities.
 [GNUTLS-SA-2008-1-1] [GNUTLS-SA-2008-1-2] [GNUTLS-SA-2008-1-3]. See
 http://www.gnu.org/software/gnutls/security.html.
 CVE-2008-1948, CVE-2008-1949, CVE-2008-1950. DSA-1581-1
Checksums-Sha1: 
 7662569da3e9f252f551a73447ec61687cb0ccd4 1566 gnutls26_2.2.5-1.dsc
 ca1bc31988bc2130fbee00a69741fe2ab2d93849 5962493 gnutls26_2.2.5.orig.tar.gz
 47832f0f43dbff476d27e02f38b8d255d8cbeff6 20769 gnutls26_2.2.5-1.diff.gz
 ae3d2a53cae831bfb258893b4f13378bbd2e7450 2618362 gnutls-doc_2.2.5-1_all.deb
 f52654514d09605e5a2e032e69b938ae58d35fd5 441894 libgnutls-dev_2.2.5-1_i386.deb
 8bf50398de0ae22963d65e13d215fa830c5d78fe 382328 libgnutls26_2.2.5-1_i386.deb
 346fcbdc5219ca2c290d78096303675b0e350ce1 929192 
libgnutls26-dbg_2.2.5-1_i386.deb
 18fd805a30103739422db3f5f2fbc277ed3d8991 244026 gnutls-bin_2.2.5-1_i386.deb
 372428cdb5aa40e7248928e046247d37554bc54d 194502 guile-gnutls_2.2.5-1_i386.deb
Checksums-Sha256: 
 3a22add6e7b4a3f8481638e2f0f840f36bfb27cdf7cb696714daee07ea377fa1 1566 
gnutls26_2.2.5-1.dsc
 50985ce8d9d1569e6429b9d34bfcbc8e3ebc537b313061593aac3479d3c8b736 5962493 
gnutls26_2.2.5.orig.tar.gz
 7e41f7f3d64b060df1c17f7dcb37c329f6a1fd03e01d28d17821ca704ffe50d5 20769 
gnutls26_2.2.5-1.diff.gz
 59053d3f9ad7e8bafb74ccfc4ed2ac79ad44261192795195246cdbe4c34d2bf4 2618362 
gnutls-doc_2.2.5-1_all.deb
 955efd8322cdd19923fc78d1d083de88fbd0d60792ecbe408f6212b379491529 441894 
libgnutls-dev_2.2.5-1_i386.deb
 516974d085485973e7b43202f38f19dce960e2813cf1236df5b34a7838ceb20c 382328 
libgnutls26_2.2.5-1_i386.deb
 4f53620a143a01c42b76f0e2dbdc54281e314048950572778305273baa6c7644 929192 
libgnutls26-dbg_2.2.5-1_i386.deb
 9654ca4b9850c3af6a7d96afb4b9ed6269624fb2e75e03bf26bab936cca8cbc7 244026 
gnutls-bin_2.2.5-1_i386.deb
 fea663cf3556edc06d9dd926169407a896ad5b48b3fc8c48123b88412dc35893 194502 
guile-gnutls_2.2.5-1_i386.deb
Files: 
 4c001421b1356f23eac6e984f0167ede 1566 devel optional gnutls26_2.2.5-1.dsc
 ac890d9508106a4fc5bbd5b463e6fbb5 5962493 devel optional 
gnutls26_2.2.5.orig.tar.gz
 be9afcb37a0dcda2929e75e05561ff52 20769 devel optional gnutls26_2.2.5-1.diff.gz
 d173fa4d86f1a25df768ae27e31a73e2 2618362 doc optional 
gnutls-doc_2.2.5-1_all.deb
 7446e772b954e83239fbccdbca65bc18 441894 libdevel optional 
libgnutls-dev_2.2.5-1_i386.deb
 496abb6d777e33c9cb22f0c4ca662e32 382328 libs important 
libgnutls26_2.2.5-1_i386.deb
 8cbd48b563aadaa31433c82347050a9c 929192 devel extra 
libgnutls26-dbg_2.2.5-1_i386.deb
 6763d2b62bc060aeb7b57902d7cfb830 244026 net optional 
gnutls-bin_2.2.5-1_i386.deb
 3faba77795723cc7ba88069c4bb5ad8c 194502 libs optional 
guile-gnutls_2.2.5-1_i386.deb

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

iD8DBQFIMwz3HTOcZYuNdmMRAiAYAKCCTnBq4hYqVVB5ZPsuvssMnECZtACfRD/1
zAb04WlYsmeizcHyQYvpEaE=
=HFjU
-END PGP SIGNATURE-


Accepted:
gnutls-bin_2.2.5-1_i386.deb
  to pool/main/g/gnutls26/gnutls-bin_2.2.5-1_i386.deb
gnutls-doc_2.2.5-1_all.deb
  to pool/main/g/gnutls26/gnutls-doc_2.2.5-1_all.deb
gnutls26_2.2.5-1.diff.gz
  to pool/main/g/gnutls26/gnutls26_2.2.5-1.diff.gz
gnutls26_2.2.5-1.dsc
  to pool/main/g/gnutls26/gnutls26_2.2.5-1.dsc
gnutls26_2.2.5.orig.tar.gz
  to pool/main/g/gnutls26/gnutls26_2.2.5.orig.tar.gz
guile-gnutls_2.2.5-1_i386.deb
  to pool/main/g/gnutls26/guile-gnutls_2.2.5-1_i386.deb
libgnutls-dev_2.2.5-1_i386.deb
  to pool/main/g/gnutls26/libgnutls-dev_2.2.5-1_i386.deb
libgnutls26-dbg_2.2.5-1_i386.deb
  to pool/main/g/gnutls26/libgnutls26-dbg_2.2.5-1_i386.deb
libgnutls26_2.2.5-1_i386.deb
  to pool/main/g/gnutls26/libgnutls26_2.2.5-1_i386.deb


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



Accepted compiz-fusion-plugins-main 0.7.4-1 (source amd64)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 19:31:39 +0200
Source: compiz-fusion-plugins-main
Binary: compiz-fusion-plugins-main
Architecture: source amd64
Version: 0.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 compiz-fusion-plugins-main - Compiz Fusion plugins - main collection
Changes: 
 compiz-fusion-plugins-main (0.7.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Bump build-depends on bcop and compiz-dev to = 0.7.3.
   * Include new png images.
Checksums-Sha1: 
 bed1de75c1c4f10c99c55245a350d164c641105a 1464 
compiz-fusion-plugins-main_0.7.4-1.dsc
 424451af20efc58cea5682abf3de08ccbf7a1307 1179587 
compiz-fusion-plugins-main_0.7.4.orig.tar.gz
 61cda8c76d419d1b4a916ae103ede6a82f0ea45f 2565 
compiz-fusion-plugins-main_0.7.4-1.diff.gz
 7c4b88c4d8fb832aa556957a63f64c5b07c9e45c 1485560 
compiz-fusion-plugins-main_0.7.4-1_amd64.deb
Checksums-Sha256: 
 f8d4e0dfeeadc09d6792a9b07a4a59235a516a0b44ecdef1fc14447f435d0cca 1464 
compiz-fusion-plugins-main_0.7.4-1.dsc
 903f22da2b5e13ff4ab71acce64c475495da90a110f1f03ccb4d181e1db75baa 1179587 
compiz-fusion-plugins-main_0.7.4.orig.tar.gz
 4457776d9d9344a3492bd7f8e9b27dadbc2fe80b82683c848075cd856dacaace 2565 
compiz-fusion-plugins-main_0.7.4-1.diff.gz
 dae9c714ecb72eeb82f353dd2b94b12980c0abc7ace21b863e1054ac0cf92b20 1485560 
compiz-fusion-plugins-main_0.7.4-1_amd64.deb
Files: 
 cc92d5c2afb40b427d0f8a92ac42f2c4 1464 x11 extra 
compiz-fusion-plugins-main_0.7.4-1.dsc
 d52aaa7a228da549a656e1abe4221e35 1179587 x11 extra 
compiz-fusion-plugins-main_0.7.4.orig.tar.gz
 f0823cc8a80b39f357c68345c82a7755 2565 x11 extra 
compiz-fusion-plugins-main_0.7.4-1.diff.gz
 ea8352b33a94c4a54ba1434d10a033e4 1485560 x11 extra 
compiz-fusion-plugins-main_0.7.4-1_amd64.deb

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

iD8DBQFIMxQWynjLPm522B0RAtSUAJ9QqdG8dHqg8g+/PpXP25dJXIUjnACeKgH6
O4d5tMsuBsH7o9knFVNjM0g=
=ZmJQ
-END PGP SIGNATURE-


Accepted:
compiz-fusion-plugins-main_0.7.4-1.diff.gz
  to 
pool/main/c/compiz-fusion-plugins-main/compiz-fusion-plugins-main_0.7.4-1.diff.gz
compiz-fusion-plugins-main_0.7.4-1.dsc
  to 
pool/main/c/compiz-fusion-plugins-main/compiz-fusion-plugins-main_0.7.4-1.dsc
compiz-fusion-plugins-main_0.7.4-1_amd64.deb
  to 
pool/main/c/compiz-fusion-plugins-main/compiz-fusion-plugins-main_0.7.4-1_amd64.deb
compiz-fusion-plugins-main_0.7.4.orig.tar.gz
  to 
pool/main/c/compiz-fusion-plugins-main/compiz-fusion-plugins-main_0.7.4.orig.tar.gz


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



Accepted compiz-fusion-plugins-unsupported 0.7.4-1 (source amd64)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 20:22:08 +0200
Source: compiz-fusion-plugins-unsupported
Binary: compiz-fusion-plugins-unsupported
Architecture: source amd64
Version: 0.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 compiz-fusion-plugins-unsupported - Compiz Fusion plugins - unsupported 
collection
Changes: 
 compiz-fusion-plugins-unsupported (0.7.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Update build-deps on bcop and compiz-dev to = 0.7.3.
   * Re-add po/Makefile.in.in to UPSTREAM_PRESERVE to keep builds clean
Checksums-Sha1: 
 ecfda496b37bbcafd5ec94b1415e4541217581c9 1530 
compiz-fusion-plugins-unsupported_0.7.4-1.dsc
 7c77bfabef83784c918c0f9a175a78b3d7ad5e64 818723 
compiz-fusion-plugins-unsupported_0.7.4.orig.tar.gz
 0b9f334382100c785b46e38bb0a286e88331b66f 2490 
compiz-fusion-plugins-unsupported_0.7.4-1.diff.gz
 c1a3b097a78a08e837223602530895d8a46e2ba7 827688 
compiz-fusion-plugins-unsupported_0.7.4-1_amd64.deb
Checksums-Sha256: 
 1cff2fe51f1c6e32bf98e8274db329ef28ea170d487ec89a21a15e3fbe098f82 1530 
compiz-fusion-plugins-unsupported_0.7.4-1.dsc
 37f88b2a8b2577315d80fb1b010dd49afa61cc0efee5632564e3ebc973b58f83 818723 
compiz-fusion-plugins-unsupported_0.7.4.orig.tar.gz
 521b7369adffa78aae94a65513c60cf1cc38e1ad65158e37ea0db24e921a0cdd 2490 
compiz-fusion-plugins-unsupported_0.7.4-1.diff.gz
 503aa6f4e192920cc8a3835356bd2d612d516e85be9070ba484f31f20e7f4663 827688 
compiz-fusion-plugins-unsupported_0.7.4-1_amd64.deb
Files: 
 f1d3860b2cf5fc4a5e206111a7ca5c09 1530 x11 extra 
compiz-fusion-plugins-unsupported_0.7.4-1.dsc
 80ef8378cf14dff61c7b4eef5dc7a95c 818723 x11 extra 
compiz-fusion-plugins-unsupported_0.7.4.orig.tar.gz
 d0f12d1c65e7884cdcfb9012b8faa8b6 2490 x11 extra 
compiz-fusion-plugins-unsupported_0.7.4-1.diff.gz
 54ceaf4df01662dbad3f9e66c67187d1 827688 x11 extra 
compiz-fusion-plugins-unsupported_0.7.4-1_amd64.deb

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

iD8DBQFIMxQXynjLPm522B0RAhKgAJ9yYTVn5OUO6R6NY92yAWWW1inomgCfbfdW
OL72JiDS2/qCNHjdrWYpYPo=
=8Wdc
-END PGP SIGNATURE-


Accepted:
compiz-fusion-plugins-unsupported_0.7.4-1.diff.gz
  to 
pool/main/c/compiz-fusion-plugins-unsupported/compiz-fusion-plugins-unsupported_0.7.4-1.diff.gz
compiz-fusion-plugins-unsupported_0.7.4-1.dsc
  to 
pool/main/c/compiz-fusion-plugins-unsupported/compiz-fusion-plugins-unsupported_0.7.4-1.dsc
compiz-fusion-plugins-unsupported_0.7.4-1_amd64.deb
  to 
pool/main/c/compiz-fusion-plugins-unsupported/compiz-fusion-plugins-unsupported_0.7.4-1_amd64.deb
compiz-fusion-plugins-unsupported_0.7.4.orig.tar.gz
  to 
pool/main/c/compiz-fusion-plugins-unsupported/compiz-fusion-plugins-unsupported_0.7.4.orig.tar.gz


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



Accepted evolution-exchange 2.22.1.dfsg.2-1 (source i386)

2008-05-20 Thread Heikki Henriksen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 20:11:30 +0200
Source: evolution-exchange
Binary: evolution-exchange evolution-exchange-dbg
Architecture: source i386
Version: 2.22.1.dfsg.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Evolution Maintainers [EMAIL PROTECTED]
Changed-By: Heikki Henriksen [EMAIL PROTECTED]
Description: 
 evolution-exchange - Exchange plugin for the Evolution groupware suite
 evolution-exchange-dbg - Exchange plugin for Evolution with debugging symbols
Changes: 
 evolution-exchange (2.22.1.dfsg.2-1) unstable; urgency=low
 .
   * New upstream interim release (2.22.1.2)
 - bugfixes and documentation updates
Checksums-Sha1: 
 071b06393b54e72aea331e477161319c931984a8 2134 
evolution-exchange_2.22.1.dfsg.2-1.dsc
 ae52509204391ce5c3e9f07413b2fc2fb563 1447499 
evolution-exchange_2.22.1.dfsg.2.orig.tar.gz
 5e057f1fe67e9692485b510a028542686628ec34 6154 
evolution-exchange_2.22.1.dfsg.2-1.diff.gz
 73844c53b2c40d38aa0b568acdb93242cb24b6a3 716760 
evolution-exchange_2.22.1.dfsg.2-1_i386.deb
 ff54a04c8233dc8498011eebbf146f2485e64303 398394 
evolution-exchange-dbg_2.22.1.dfsg.2-1_i386.deb
Checksums-Sha256: 
 8dc384b0139027d87aa9d17d6b99dfdc6df6b84b6a963a08601a5d2f4548b27b 2134 
evolution-exchange_2.22.1.dfsg.2-1.dsc
 5a9cb3ff2bb83841abbbae3a089232c5f61d9f29dd8db05d819585b51c60ed28 1447499 
evolution-exchange_2.22.1.dfsg.2.orig.tar.gz
 edfd591897b5aaa43d3f5b54cc9483cb419770914f4e976bd1857b7ddcdb0664 6154 
evolution-exchange_2.22.1.dfsg.2-1.diff.gz
 e51598a05614226395ca8603403092b05946ef6fd8b62e8d56d6ffe077d1 716760 
evolution-exchange_2.22.1.dfsg.2-1_i386.deb
 e8adc448f633b3faf523081d039c8f22561e37c338197c92b2de410bba0534fc 398394 
evolution-exchange-dbg_2.22.1.dfsg.2-1_i386.deb
Files: 
 d7d784d307421b28498b3d90ac8bd422 2134 gnome optional 
evolution-exchange_2.22.1.dfsg.2-1.dsc
 f966e2b7e5f9daf749b9a23b222aa1d0 1447499 gnome optional 
evolution-exchange_2.22.1.dfsg.2.orig.tar.gz
 8c6d9ce120a3a512435d30f05bcf2d94 6154 gnome optional 
evolution-exchange_2.22.1.dfsg.2-1.diff.gz
 30ab1d38f2a2e6877cfec894a61bfb79 716760 gnome optional 
evolution-exchange_2.22.1.dfsg.2-1_i386.deb
 dfa0e7a31816bdeef3c0c19719d50ef5 398394 gnome extra 
evolution-exchange-dbg_2.22.1.dfsg.2-1_i386.deb

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

iD8DBQFIMxWEpnfX7JXajqkRAqshAJ4/2zy4nvUNZyToK9Tsa9+gFvZBsQCdHRCY
B25OtnqgZNzQU3quqZ4yQMM=
=jG9x
-END PGP SIGNATURE-


Accepted:
evolution-exchange-dbg_2.22.1.dfsg.2-1_i386.deb
  to 
pool/main/e/evolution-exchange/evolution-exchange-dbg_2.22.1.dfsg.2-1_i386.deb
evolution-exchange_2.22.1.dfsg.2-1.diff.gz
  to pool/main/e/evolution-exchange/evolution-exchange_2.22.1.dfsg.2-1.diff.gz
evolution-exchange_2.22.1.dfsg.2-1.dsc
  to pool/main/e/evolution-exchange/evolution-exchange_2.22.1.dfsg.2-1.dsc
evolution-exchange_2.22.1.dfsg.2-1_i386.deb
  to pool/main/e/evolution-exchange/evolution-exchange_2.22.1.dfsg.2-1_i386.deb
evolution-exchange_2.22.1.dfsg.2.orig.tar.gz
  to pool/main/e/evolution-exchange/evolution-exchange_2.22.1.dfsg.2.orig.tar.gz


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



Accepted compizconfig-python 0.7.4-1 (source amd64)

2008-05-20 Thread sean finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 18 May 2008 20:02:17 +0200
Source: compizconfig-python
Binary: python-compizconfig
Architecture: source amd64
Version: 0.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: sean finney [EMAIL PROTECTED]
Description: 
 python-compizconfig - Compizconfig bindings for python
Changes: 
 compizconfig-python (0.7.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Update build-deps on compiz-dev and libcompizconfig-dev to = 0.6.3
Checksums-Sha1: 
 34e689677e727cd9951abb98a2c207fd1f41d07e 1450 compizconfig-python_0.7.4-1.dsc
 32397b70e5c5aa2626b477a14719d517cc84a001 15898 
compizconfig-python_0.7.4.orig.tar.gz
 049274a51d6db810c73456ef44ad54a9ac0f7f78 2606 
compizconfig-python_0.7.4-1.diff.gz
 fefd600b45ee34eddb01e474cc8a5f60e33e3b18 62348 
python-compizconfig_0.7.4-1_amd64.deb
Checksums-Sha256: 
 3ab2bfb43b3b69e8659ee627256beeb73c6815c5ee7c30a38f4c893a2506f9fe 1450 
compizconfig-python_0.7.4-1.dsc
 b78b06d105e4ebda491aba4ecf4ab4d4a589945add88bdeac9048e52ceaa878b 15898 
compizconfig-python_0.7.4.orig.tar.gz
 b91bd03176964d1cd9f59b0ba7d646ac0be5458ad09de3c010bcc0446b2fb8c2 2606 
compizconfig-python_0.7.4-1.diff.gz
 9a2e6dc96cd95fa6338144819579c691ae2917430d67d91fe651f50cba39ea99 62348 
python-compizconfig_0.7.4-1_amd64.deb
Files: 
 6458e52b3dc7c18bbb4f1c01f344ac98 1450 x11 extra compizconfig-python_0.7.4-1.dsc
 c5d273a6a51396760726042831afbed1 15898 x11 extra 
compizconfig-python_0.7.4.orig.tar.gz
 ef31b6b60cc82fab65bed1226c01e06d 2606 x11 extra 
compizconfig-python_0.7.4-1.diff.gz
 9d19125c07e047af87601cc3d02c5c87 62348 x11 extra 
python-compizconfig_0.7.4-1_amd64.deb

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

iD8DBQFIMxQWynjLPm522B0RAvsrAJ4pkvVCdlYR7dy7r6BpDdlJ5yaAhgCfZ1Dm
M+kssgfQdVgN1+vbncdAu14=
=5GlQ
-END PGP SIGNATURE-


Accepted:
compizconfig-python_0.7.4-1.diff.gz
  to pool/main/c/compizconfig-python/compizconfig-python_0.7.4-1.diff.gz
compizconfig-python_0.7.4-1.dsc
  to pool/main/c/compizconfig-python/compizconfig-python_0.7.4-1.dsc
compizconfig-python_0.7.4.orig.tar.gz
  to pool/main/c/compizconfig-python/compizconfig-python_0.7.4.orig.tar.gz
python-compizconfig_0.7.4-1_amd64.deb
  to pool/main/c/compizconfig-python/python-compizconfig_0.7.4-1_amd64.deb


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



Accepted compiz-fusion-plugins-extra 0.7.4-1 (source amd64)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 20:10:44 +0200
Source: compiz-fusion-plugins-extra
Binary: compiz-fusion-plugins-extra
Architecture: source amd64
Version: 0.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 compiz-fusion-plugins-extra - Compiz Fusion plugins - extra collection
Changes: 
 compiz-fusion-plugins-extra (0.7.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Update build-deps on bcop, compiz-dev, and compiz-fusion-plugins-main
 to = 0.7.3.
Checksums-Sha1: 
 f2f90c057a3ef09bec3fea2b7029bad28eae7575 1466 
compiz-fusion-plugins-extra_0.7.4-1.dsc
 3cd98b3311565673eed59e51deee510a5e4f069a 3225115 
compiz-fusion-plugins-extra_0.7.4.orig.tar.gz
 d23fd9a05d205d76c14030db5d045c588cfe5bad 3832 
compiz-fusion-plugins-extra_0.7.4-1.diff.gz
 7c0ed7d3b9e4010e6a1c973ec48c9abd5c2c2865 2688624 
compiz-fusion-plugins-extra_0.7.4-1_amd64.deb
Checksums-Sha256: 
 192d5f868e45df155d874754c9d5f423392108e94586a3568242dbb42c816479 1466 
compiz-fusion-plugins-extra_0.7.4-1.dsc
 b0fd18995b0f3a6291048d459996b4858507353187b57c823bd63d08bdbd326e 3225115 
compiz-fusion-plugins-extra_0.7.4.orig.tar.gz
 78c83e7687836670a660fba7d4ec1f0fa1cfac34df5aae62b26ce22779018a59 3832 
compiz-fusion-plugins-extra_0.7.4-1.diff.gz
 ac8b142dbcaf9def41950f4336738a00a2bb81dc7261d61dd002f5fe99a39e79 2688624 
compiz-fusion-plugins-extra_0.7.4-1_amd64.deb
Files: 
 89146172ec2e2dc6fd7e78be38538c5d 1466 x11 extra 
compiz-fusion-plugins-extra_0.7.4-1.dsc
 c672d4bdd3526b2524152ee1720d6b93 3225115 x11 extra 
compiz-fusion-plugins-extra_0.7.4.orig.tar.gz
 4a8af6ac55fba2a6ba9a4f027dc32e7f 3832 x11 extra 
compiz-fusion-plugins-extra_0.7.4-1.diff.gz
 2e7abee4d6261dbf63826a962c1e7788 2688624 x11 extra 
compiz-fusion-plugins-extra_0.7.4-1_amd64.deb

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

iD8DBQFIMxQWynjLPm522B0RAudMAJ9IwfhOL4329Wr95iH8soFDBPvTWQCbB0YU
wANy4XdttrpIhmmeVoehydA=
=qg5s
-END PGP SIGNATURE-


Accepted:
compiz-fusion-plugins-extra_0.7.4-1.diff.gz
  to 
pool/main/c/compiz-fusion-plugins-extra/compiz-fusion-plugins-extra_0.7.4-1.diff.gz
compiz-fusion-plugins-extra_0.7.4-1.dsc
  to 
pool/main/c/compiz-fusion-plugins-extra/compiz-fusion-plugins-extra_0.7.4-1.dsc
compiz-fusion-plugins-extra_0.7.4-1_amd64.deb
  to 
pool/main/c/compiz-fusion-plugins-extra/compiz-fusion-plugins-extra_0.7.4-1_amd64.deb
compiz-fusion-plugins-extra_0.7.4.orig.tar.gz
  to 
pool/main/c/compiz-fusion-plugins-extra/compiz-fusion-plugins-extra_0.7.4.orig.tar.gz


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



Accepted ccsm 0.7.4-1 (source amd64)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 20:37:15 +0200
Source: ccsm
Binary: compizconfig-settings-manager
Architecture: source amd64
Version: 0.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 compizconfig-settings-manager - Compizconfig Settings Manager
Changes: 
 ccsm (0.7.4-1) unstable; urgency=low
 .
   * New upstream release.
   * No longer need the pt_BR fixes, upstream has changed their translation.
   * Update list of install files to reflect upstream changes.
   * Temporary workaround for what seems to be breakage in python2.5 or
 pygtk (see #481480, #481837, #481977), by closing stdin explicitly.
Checksums-Sha1: 
 ba33b6284b5090ed7c3d7c2df85c165f29e2be0a 1145 ccsm_0.7.4-1.dsc
 da04a1aec03f952f33c40b94fe328c2f5cf5f5e3 590015 ccsm_0.7.4.orig.tar.gz
 17073573c067eb405f8407d327d0171ebefb8410 3354 ccsm_0.7.4-1.diff.gz
 31a822a0afce156ff7b2eeca6cc97e5184bb052f 600686 
compizconfig-settings-manager_0.7.4-1_amd64.deb
Checksums-Sha256: 
 8fd0f09af1d43c8334b140b7858be58f8fcf1c1339071f356faae1abbf9a0b87 1145 
ccsm_0.7.4-1.dsc
 2f86111d57f3fbd86da1284bd7f954a1838e66b6b91a0e6be258265e80bd88b2 590015 
ccsm_0.7.4.orig.tar.gz
 c8f6016b1d6ac68664359e2de827d9ac5a34d8d35c31e2ad7680b028790b577b 3354 
ccsm_0.7.4-1.diff.gz
 a9048333064335f11276da79052b94f69e07d499017dc6f2c044427ad750fa31 600686 
compizconfig-settings-manager_0.7.4-1_amd64.deb
Files: 
 d978c461ad73473d41983de7d6bd8702 1145 x11 extra ccsm_0.7.4-1.dsc
 af57aa61d8c35b1e2d7fae37440cb58a 590015 x11 extra ccsm_0.7.4.orig.tar.gz
 5fe3106f8720d0e45b7b177b5bb4dc72 3354 x11 extra ccsm_0.7.4-1.diff.gz
 b3b0287254f922e2f800ac7b4bb7cd68 600686 x11 extra 
compizconfig-settings-manager_0.7.4-1_amd64.deb

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

iD8DBQFIMxQVynjLPm522B0RAhp1AJ0aJp0j2YtR5ezOaos3SebzJLEWRQCcC/7W
7kDFClDReG3oLYrMgXT+lPs=
=Xprn
-END PGP SIGNATURE-


Accepted:
ccsm_0.7.4-1.diff.gz
  to pool/main/c/ccsm/ccsm_0.7.4-1.diff.gz
ccsm_0.7.4-1.dsc
  to pool/main/c/ccsm/ccsm_0.7.4-1.dsc
ccsm_0.7.4.orig.tar.gz
  to pool/main/c/ccsm/ccsm_0.7.4.orig.tar.gz
compizconfig-settings-manager_0.7.4-1_amd64.deb
  to pool/main/c/ccsm/compizconfig-settings-manager_0.7.4-1_amd64.deb


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



Accepted compiz-fusion-bcop 0.7.4-1 (source all)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 May 2008 19:48:56 +0200
Source: compiz-fusion-bcop
Binary: compiz-fusion-bcop
Architecture: source all
Version: 0.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Sean Finney [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 compiz-fusion-bcop - Compiz Fusion option code generator
Changes: 
 compiz-fusion-bcop (0.7.4-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 fab8d83f2cb7e49e4e09d340358d497b6da6a4da 1086 compiz-fusion-bcop_0.7.4-1.dsc
 2874786ea04cda5936426e318b9197c242868396 19055 
compiz-fusion-bcop_0.7.4.orig.tar.gz
 92986e0febadfeb51309b90141653558ddcb2f0d 20 compiz-fusion-bcop_0.7.4-1.diff.gz
 71318f437c0d2352389b3f8ec72f042d0f82ce2a 9194 
compiz-fusion-bcop_0.7.4-1_all.deb
Checksums-Sha256: 
 358a73e89b84a1d2acd41195e2a99894f1045c7c5120d974c64f1394b480e074 1086 
compiz-fusion-bcop_0.7.4-1.dsc
 05c647abe8741e008218f0308944a3261fb6e342290b7235dc11f97dd08c9082 19055 
compiz-fusion-bcop_0.7.4.orig.tar.gz
 c38a4d6f7b52400de2f1807a511dddf5a0fda2b9b667ba06b446a9a6 20 
compiz-fusion-bcop_0.7.4-1.diff.gz
 ece5b09f62ef42cf9519bf0167207b617cbd4ee6a017910918595bbf1755cf50 9194 
compiz-fusion-bcop_0.7.4-1_all.deb
Files: 
 d545f3c85230e0240d02ea03a649329d 1086 x11 extra compiz-fusion-bcop_0.7.4-1.dsc
 ba1b425d6b3f8f2ea0a89d96e746a40f 19055 x11 extra 
compiz-fusion-bcop_0.7.4.orig.tar.gz
 a1b40ea7c62bdc390ec3411e063f5267 20 x11 extra 
compiz-fusion-bcop_0.7.4-1.diff.gz
 04e9a991778ce24e8eeb0353c88a1df4 9194 x11 extra 
compiz-fusion-bcop_0.7.4-1_all.deb

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

iD8DBQFIMxQWynjLPm522B0RApVlAJ9QBViYBmUpqAfovzrHKtiJSr2q0gCdFIX0
82vbWhKBLa/s0a9GovqJXZU=
=yZc3
-END PGP SIGNATURE-


Accepted:
compiz-fusion-bcop_0.7.4-1.diff.gz
  to pool/main/c/compiz-fusion-bcop/compiz-fusion-bcop_0.7.4-1.diff.gz
compiz-fusion-bcop_0.7.4-1.dsc
  to pool/main/c/compiz-fusion-bcop/compiz-fusion-bcop_0.7.4-1.dsc
compiz-fusion-bcop_0.7.4-1_all.deb
  to pool/main/c/compiz-fusion-bcop/compiz-fusion-bcop_0.7.4-1_all.deb
compiz-fusion-bcop_0.7.4.orig.tar.gz
  to pool/main/c/compiz-fusion-bcop/compiz-fusion-bcop_0.7.4.orig.tar.gz


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



Accepted compizconfig-backend-kconfig 0.7.4-2 (source amd64)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 19:22:15 +0200
Source: compizconfig-backend-kconfig
Binary: compizconfig-backend-kconfig
Architecture: source amd64
Version: 0.7.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 compizconfig-backend-kconfig - Compiz Fusion configuration system - kconfig 
backend
Changes: 
 compizconfig-backend-kconfig (0.7.4-2) unstable; urgency=low
 .
   * Add build-deps on autoconf, automake1.9, and libtool
Checksums-Sha1: 
 1edccb94bb7960764d4c87a7f7a883acfc35b4d5 1332 
compizconfig-backend-kconfig_0.7.4-2.dsc
 185d3bb2ececa516383de2117f329da3004370b1 244970 
compizconfig-backend-kconfig_0.7.4.orig.tar.gz
 bba7965921690589a0ff1aa14e4d4bd8d04a96f6 2308 
compizconfig-backend-kconfig_0.7.4-2.diff.gz
 fa9ada9d27a61cf35faf7045893bec296e14b838 25948 
compizconfig-backend-kconfig_0.7.4-2_amd64.deb
Checksums-Sha256: 
 2fb5013e9d29244210b44d967a3afae23103e7656ad08872d2b2315fbbf5f947 1332 
compizconfig-backend-kconfig_0.7.4-2.dsc
 ecd42de7b4f16ded2b07ea2f97909425d5ed348a4d2c6eac6fb98361436626c2 244970 
compizconfig-backend-kconfig_0.7.4.orig.tar.gz
 9411ce17db50482db438f7d28e348f368b38d90c4d6e8a2d1b3c26decbae7f15 2308 
compizconfig-backend-kconfig_0.7.4-2.diff.gz
 afd6cf14faebb2d08aa4a2c46e1fb5b91ecdbc044551a74c82cc5353aae5ad45 25948 
compizconfig-backend-kconfig_0.7.4-2_amd64.deb
Files: 
 e79ff9dd3d4d28d489b610caca10c545 1332 x11 extra 
compizconfig-backend-kconfig_0.7.4-2.dsc
 c70c01ecaad4f1da32858db4fad35c50 244970 x11 extra 
compizconfig-backend-kconfig_0.7.4.orig.tar.gz
 9724846abeb5b33e907e91e29b63a31e 2308 x11 extra 
compizconfig-backend-kconfig_0.7.4-2.diff.gz
 de030226c2a895900ee5b753f7e8a2ad 25948 x11 extra 
compizconfig-backend-kconfig_0.7.4-2_amd64.deb

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

iD8DBQFIMxQWynjLPm522B0RAl/rAJ9JxS+8t5si5riZDfsc030OHJjxQgCgh+Al
UNE5wJqwT+gqlgEbowgJb50=
=enA1
-END PGP SIGNATURE-


Accepted:
compizconfig-backend-kconfig_0.7.4-2.diff.gz
  to 
pool/main/c/compizconfig-backend-kconfig/compizconfig-backend-kconfig_0.7.4-2.diff.gz
compizconfig-backend-kconfig_0.7.4-2.dsc
  to 
pool/main/c/compizconfig-backend-kconfig/compizconfig-backend-kconfig_0.7.4-2.dsc
compizconfig-backend-kconfig_0.7.4-2_amd64.deb
  to 
pool/main/c/compizconfig-backend-kconfig/compizconfig-backend-kconfig_0.7.4-2_amd64.deb
compizconfig-backend-kconfig_0.7.4.orig.tar.gz
  to 
pool/main/c/compizconfig-backend-kconfig/compizconfig-backend-kconfig_0.7.4.orig.tar.gz


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



Accepted compiz 0.7.4-1 (source all amd64)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 18 May 2008 19:15:13 +0200
Source: compiz
Binary: compiz compiz-core compiz-dev compiz-gtk compiz-kde compiz-gnome 
compiz-plugins libdecoration0 libdecoration0-dev
Architecture: source all amd64
Version: 0.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 compiz - OpenGL window and compositing manager
 compiz-core - OpenGL window and compositing manager
 compiz-dev - OpenGL window and compositing manager - development files
 compiz-gnome - OpenGL window and compositing manager - GNOME window decorator
 compiz-gtk - OpenGL window and compositing manager - Gtk window decorator
 compiz-kde - OpenGL window and compositing manager - KDE window decorator
 compiz-plugins - OpenGL window and compositing manager - plugins
 libdecoration0 - Compiz window decoration library
 libdecoration0-dev - Compiz window decoration library - development files
Changes: 
 compiz (0.7.4-1) unstable; urgency=low
 .
   * New upstream release
   * Incorporate xcb-disabling patch from
 http://gitweb.opencompositing.org/?p=users/3v1n0/compiz-patches
Checksums-Sha1: 
 5dd9163c43ce4a8e7e9d83388fff6e01778a6fc4 1817 compiz_0.7.4-1.dsc
 bdd01277cb349a28f839d8a44aae9f2558daaeec 1217416 compiz_0.7.4.orig.tar.gz
 2995f600656c849c3a2343b8cb6aa8ae7d99f997 17782 compiz_0.7.4-1.diff.gz
 de82de47f6da4b20dc594ebe6b37355e03cf662b 26390 compiz_0.7.4-1_all.deb
 d2393107536256c4df1a7107c5eefd0ce4c45b02 893314 compiz-core_0.7.4-1_amd64.deb
 3a520e941bd7fbea265aec54a9d97c8a78dd06ec 53638 compiz-dev_0.7.4-1_amd64.deb
 d10931f7c72cab417842087476bffc3238bc0076 76998 compiz-gtk_0.7.4-1_amd64.deb
 47a38058eb61cb9bc69cc3a0aa54227691383e7e 84392 compiz-kde_0.7.4-1_amd64.deb
 def14d297e45e7c1ec6e4d1ee4d6d9a8f74127bb 35924 compiz-gnome_0.7.4-1_amd64.deb
 8d2ff6248447608508bbb91cd95213c764ab10a1 468112 
compiz-plugins_0.7.4-1_amd64.deb
 28a2e898121c7bf39c930107ae8f6c9d39cbfd14 44912 libdecoration0_0.7.4-1_amd64.deb
 e32f91c09834d4fa77ba0c73086377dd55d33025 33062 
libdecoration0-dev_0.7.4-1_amd64.deb
Checksums-Sha256: 
 9868304fb8a8a1a0cbb9d60b25f41945465c7819ff8e9d8f1fb396de76e4455c 1817 
compiz_0.7.4-1.dsc
 8a1b2dcc2d25596b004c03ef0dc37eb705a91b7ad3062179e549a34891f24642 1217416 
compiz_0.7.4.orig.tar.gz
 bf1ac12b19be49110b035959bcc43611a97168da8eca78ce634ab0ef84f0cc34 17782 
compiz_0.7.4-1.diff.gz
 fa5af431bab56c2ff01f90c87d4e7823150ee556cd3d770f0519649f3ff3b48d 26390 
compiz_0.7.4-1_all.deb
 c8fe7a4c263710790759b2ac12ad1a289726f1f7bb77827411b09bd108aff788 893314 
compiz-core_0.7.4-1_amd64.deb
 06885a6f0b0085c866a064c17ef23a8d79d032c414bb2eb04bf190b4c97e1c91 53638 
compiz-dev_0.7.4-1_amd64.deb
 e1725b008a339dd45c19693eaa70beb37e37f763a9b7f0e9833ca7e7dba47496 76998 
compiz-gtk_0.7.4-1_amd64.deb
 eab4ea59d9ee778a1f33c57d9c5f36a66f6a4adc1144ba842f03dd10f8ed 84392 
compiz-kde_0.7.4-1_amd64.deb
 86abe876cca66880fc85c385616d07c6ec61acffd7cccf96dfe459cbff9f0fd1 35924 
compiz-gnome_0.7.4-1_amd64.deb
 7fd60ea7ae07fde19c56dea19c472af771c47d9530135b6a83751deee0609661 468112 
compiz-plugins_0.7.4-1_amd64.deb
 616ab09a2a19a5a773bad88b44db35de80f23cb313271f98817ebc7f2f155e4d 44912 
libdecoration0_0.7.4-1_amd64.deb
 aa88a1ab033ba4a3d59b77c389c9bc4c3448b22d1767566268f569786fd86887 33062 
libdecoration0-dev_0.7.4-1_amd64.deb
Files: 
 3af6e731bf022b90e0c4e872d41b19a0 1817 x11 optional compiz_0.7.4-1.dsc
 074ea4f68dca6b6342bea0f1d5500c12 1217416 x11 optional compiz_0.7.4.orig.tar.gz
 f755178c3e652ce67ecb009b6000da9d 17782 x11 optional compiz_0.7.4-1.diff.gz
 dac21d77ec9d36c19397fa2296eb5e59 26390 x11 optional compiz_0.7.4-1_all.deb
 a7ec7fb772bceb898d5400b41e72584c 893314 x11 optional 
compiz-core_0.7.4-1_amd64.deb
 180a3d8c47109a79e217a23bd3b430a0 53638 x11 optional 
compiz-dev_0.7.4-1_amd64.deb
 e65e77011668057d40a421b3e9556cbe 76998 x11 optional 
compiz-gtk_0.7.4-1_amd64.deb
 7adf289347c94a8b3e723da7bbd2fc82 84392 x11 optional 
compiz-kde_0.7.4-1_amd64.deb
 0c2c36fe80738f152ee3179cc5864093 35924 x11 optional 
compiz-gnome_0.7.4-1_amd64.deb
 c071161f37702da080a13bfd6b705422 468112 x11 optional 
compiz-plugins_0.7.4-1_amd64.deb
 80d33db4e1bf9383d23ce881ca81c335 44912 x11 optional 
libdecoration0_0.7.4-1_amd64.deb
 fabcc4784ee8e3ac31ff3fa63c100670 33062 libdevel optional 
libdecoration0-dev_0.7.4-1_amd64.deb

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

iD8DBQFIMxQWynjLPm522B0RAlEyAJ41eR4eUC8zZaLNBj73qlC3Y3loOQCfVgUr
WRbxZR2V3cHJIV3vNmZTO7w=
=Ow2S
-END PGP SIGNATURE-


Accepted:
compiz-core_0.7.4-1_amd64.deb
  to pool/main/c/compiz/compiz-core_0.7.4-1_amd64.deb
compiz-dev_0.7.4-1_amd64.deb
  to pool/main/c/compiz/compiz-dev_0.7.4-1_amd64.deb
compiz-gnome_0.7.4-1_amd64.deb
  to pool/main/c/compiz/compiz-gnome_0.7.4-1_amd64.deb
compiz-gtk_0.7.4-1_amd64.deb
  to pool/main/c/compiz/compiz-gtk_0.7.4-1_amd64.deb
compiz-kde_0.7.4-1_amd64.deb
  to 

Accepted x-ttcidfont-conf 27+nmu1 (source all)

2008-05-20 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 29 Apr 2008 12:06:56 +0200
Source: x-ttcidfont-conf
Binary: x-ttcidfont-conf
Architecture: source all
Version: 27+nmu1
Distribution: unstable
Urgency: low
Maintainer: Anibal Monsalve Salazar [EMAIL PROTECTED]
Changed-By: Christian Perrier [EMAIL PROTECTED]
Description: 
 x-ttcidfont-conf - TrueType and CID fonts configuration for X
Closes: 453646 462298 480512 480847
Changes: 
 x-ttcidfont-conf (27+nmu1) unstable; urgency=low
 .
   * Non-maintainer upload to fix pending l10n issues.
   * Debconf translations:
 - Vietnamese. Closes: #453646
 - German. Closes: #462298
 - Simplified Chinese. Closes: #480512
 - Basque. Closes: #480847
   * [Lintian] No longer depends on X fonts. Moved to Recommends
   * [Lintian] Add some copyright information to debian/copyright
   * [Lintian] Removed .bzr directory from the diff file
Checksums-Sha1: 
 2757adbfb8f5be48912ddfab52ff266c82607c2f 922 x-ttcidfont-conf_27+nmu1.dsc
 362d85f5a8b79c305d9bd64a4201703bce74ecb8 30517 x-ttcidfont-conf_27+nmu1.tar.gz
 b1c91f6cff1c52eb340b1503571b58cf975fc694 22040 x-ttcidfont-conf_27+nmu1_all.deb
Checksums-Sha256: 
 7ea19bb04add92d97b84b07df7b0e6c6b206770d4e0470ce3d7b577f5b3bfb91 922 
x-ttcidfont-conf_27+nmu1.dsc
 1c90fe2b722b3eb00b860b4addf224d1d23affdb421700a1bc06d37793e29e66 30517 
x-ttcidfont-conf_27+nmu1.tar.gz
 84c351f1f865c00485db0f76f4eaea6cb9dba6416f9352941575ca0cd76bc3be 22040 
x-ttcidfont-conf_27+nmu1_all.deb
Files: 
 1dd0abfa00e9c4e20da62406c9abc274 922 x11 optional x-ttcidfont-conf_27+nmu1.dsc
 a066a5c863a0177831bc24c50539eac4 30517 x11 optional 
x-ttcidfont-conf_27+nmu1.tar.gz
 d527b9449f770c69e7b0d15a85316f60 22040 x11 optional 
x-ttcidfont-conf_27+nmu1_all.deb

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

iD8DBQFIMxK31OXtrMAUPS0RAlVoAJ43dGxJM/ed1H02L3/Dj04i781IwwCeMiO+
02s/MTozJH+kEgoOSganr4A=
=afhv
-END PGP SIGNATURE-


Accepted:
x-ttcidfont-conf_27+nmu1.dsc
  to pool/main/x/x-ttcidfont-conf/x-ttcidfont-conf_27+nmu1.dsc
x-ttcidfont-conf_27+nmu1.tar.gz
  to pool/main/x/x-ttcidfont-conf/x-ttcidfont-conf_27+nmu1.tar.gz
x-ttcidfont-conf_27+nmu1_all.deb
  to pool/main/x/x-ttcidfont-conf/x-ttcidfont-conf_27+nmu1_all.deb


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



Accepted libcompizconfig 0.7.4-2 (source amd64)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 08:33:31 +0200
Source: libcompizconfig
Binary: libcompizconfig-dev libcompizconfig0
Architecture: source amd64
Version: 0.7.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 libcompizconfig-dev - Configuration settings library for compiz-fusion - 
development fi
 libcompizconfig0 - Configuration settings library for compiz-fusion
Changes: 
 libcompizconfig (0.7.4-2) unstable; urgency=low
 .
   * Add build-deps on autoconf, automake1.9, libglib2.0-dev, and libtool
Checksums-Sha1: 
 498a757bd46154c0d1907e3da22ccc438d0162fc 1196 libcompizconfig_0.7.4-2.dsc
 eea4cbdf08623a129a47573ace044eaa17106593 65614 
libcompizconfig_0.7.4.orig.tar.gz
 15bd3483b44aa719ade6acc762c2dbca0bc78db9 432 libcompizconfig_0.7.4-2.diff.gz
 d11b67e1383d4ae4e436bda3097ec41baba0ca16 56780 
libcompizconfig-dev_0.7.4-2_amd64.deb
 5f70d5017880f938cef452377b23d00e37420455 54200 
libcompizconfig0_0.7.4-2_amd64.deb
Checksums-Sha256: 
 727190a7ab038fdae78e39d61004874d6b2c3408dcd7e414d03ee859512cf1fc 1196 
libcompizconfig_0.7.4-2.dsc
 6b72de47b80ab0976dfcd9150d4de6929debc3cfc6a6c3a35d0ffebf0452cdfa 65614 
libcompizconfig_0.7.4.orig.tar.gz
 4850032fecf1303ee3b85b4d9e51d66679921ba97fb4d138830c045686cbf8da 432 
libcompizconfig_0.7.4-2.diff.gz
 b84b850d4d942e03f9bfb249348d6dd1ed9a99b531d059b472ef8cf32cb0fcbb 56780 
libcompizconfig-dev_0.7.4-2_amd64.deb
 6d0887ce6333591081350677e896adce93cd92ffb6cabaf72df889dc075b2782 54200 
libcompizconfig0_0.7.4-2_amd64.deb
Files: 
 d83e5ff8be330176e22b6eb8cc5ba521 1196 libs extra libcompizconfig_0.7.4-2.dsc
 7ada86cd512693eb31feae8eebe34cdd 65614 libs extra 
libcompizconfig_0.7.4.orig.tar.gz
 2460af91ebfeec1009fd6d90453eb048 432 libs extra libcompizconfig_0.7.4-2.diff.gz
 4c9fbecb77b96ecb5a54f1a7d7b71643 56780 libdevel extra 
libcompizconfig-dev_0.7.4-2_amd64.deb
 b85242d956c05f3a3bd69ee4e977d6f2 54200 libs extra 
libcompizconfig0_0.7.4-2_amd64.deb

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

iD8DBQFIMxQXynjLPm522B0RAtgUAJ9lP5kUD4zweGzt2aZc+G2rG2OE8QCdFvwI
eeU9n6h5ZbFL3p6KkNwZpB0=
=Y90j
-END PGP SIGNATURE-


Accepted:
libcompizconfig-dev_0.7.4-2_amd64.deb
  to pool/main/libc/libcompizconfig/libcompizconfig-dev_0.7.4-2_amd64.deb
libcompizconfig0_0.7.4-2_amd64.deb
  to pool/main/libc/libcompizconfig/libcompizconfig0_0.7.4-2_amd64.deb
libcompizconfig_0.7.4-2.diff.gz
  to pool/main/libc/libcompizconfig/libcompizconfig_0.7.4-2.diff.gz
libcompizconfig_0.7.4-2.dsc
  to pool/main/libc/libcompizconfig/libcompizconfig_0.7.4-2.dsc
libcompizconfig_0.7.4.orig.tar.gz
  to pool/main/libc/libcompizconfig/libcompizconfig_0.7.4.orig.tar.gz


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



Accepted compizconfig-backend-gconf 0.7.4-2 (source amd64)

2008-05-20 Thread Sean Finney
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 19:17:00 +0200
Source: compizconfig-backend-gconf
Binary: compizconfig-backend-gconf
Architecture: source amd64
Version: 0.7.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force [EMAIL PROTECTED]
Changed-By: Sean Finney [EMAIL PROTECTED]
Description: 
 compizconfig-backend-gconf - Compiz Fusion configuration system - gconf backend
Changes: 
 compizconfig-backend-gconf (0.7.4-2) unstable; urgency=low
 .
   * Add build-deps on autoconf, automake1.9, libglib2.0-dev, and libtool
Checksums-Sha1: 
 01d9de2f22e9451c86e78c6ea8128a7be845d70d 1304 
compizconfig-backend-gconf_0.7.4-2.dsc
 588e530c432eedae1f4e3ed16d2cd69fbc5e61d7 22970 
compizconfig-backend-gconf_0.7.4.orig.tar.gz
 3e9dbb90ecd5e8f5b5270e5c03ae53a97676d23b 454 
compizconfig-backend-gconf_0.7.4-2.diff.gz
 3145e295cb0683eeff21368d780a27b304a775d7 18088 
compizconfig-backend-gconf_0.7.4-2_amd64.deb
Checksums-Sha256: 
 d569b7ae58d02ef481c13711b48dc8a08e9ca2af5fe50410765723cd2c840c9b 1304 
compizconfig-backend-gconf_0.7.4-2.dsc
 5b94b6bd7b89454b51de8f1724dff2cede04d68e078ea3edb777f8238751bc5f 22970 
compizconfig-backend-gconf_0.7.4.orig.tar.gz
 19161b1656d12ebc7c853f560d93f4d7f2682dbe2a2e0bcf423b55a093d0ad9c 454 
compizconfig-backend-gconf_0.7.4-2.diff.gz
 7644e4293616f69b651d0ac42347521a6f1f46459a02250ef4a316e74a7447cb 18088 
compizconfig-backend-gconf_0.7.4-2_amd64.deb
Files: 
 8e39f20a5e921de1901c17c047f6cb46 1304 x11 extra 
compizconfig-backend-gconf_0.7.4-2.dsc
 a76eccf3ff2a3206b925929acc803c32 22970 x11 extra 
compizconfig-backend-gconf_0.7.4.orig.tar.gz
 fd84ffb02e7523d1f118e308fe687bde 454 x11 extra 
compizconfig-backend-gconf_0.7.4-2.diff.gz
 8e2f14146dde9f0880940ef5f6c46397 18088 x11 extra 
compizconfig-backend-gconf_0.7.4-2_amd64.deb

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

iD8DBQFIMxQWynjLPm522B0RAvpjAJ9sIL1x/inFeJEClto+maQk/VMiZwCff8Bl
D8XLvBZLWwKVIGUz2dK89fI=
=8CAX
-END PGP SIGNATURE-


Accepted:
compizconfig-backend-gconf_0.7.4-2.diff.gz
  to 
pool/main/c/compizconfig-backend-gconf/compizconfig-backend-gconf_0.7.4-2.diff.gz
compizconfig-backend-gconf_0.7.4-2.dsc
  to 
pool/main/c/compizconfig-backend-gconf/compizconfig-backend-gconf_0.7.4-2.dsc
compizconfig-backend-gconf_0.7.4-2_amd64.deb
  to 
pool/main/c/compizconfig-backend-gconf/compizconfig-backend-gconf_0.7.4-2_amd64.deb
compizconfig-backend-gconf_0.7.4.orig.tar.gz
  to 
pool/main/c/compizconfig-backend-gconf/compizconfig-backend-gconf_0.7.4.orig.tar.gz


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



Accepted ampache 3.4-2 (source all)

2008-05-20 Thread Charlie Smotherman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 May 2008 18:44:23 -0500
Source: ampache
Binary: ampache
Architecture: source all
Version: 3.4-2
Distribution: unstable
Urgency: high
Maintainer: Charlie Smotherman [EMAIL PROTECTED]
Changed-By: Charlie Smotherman [EMAIL PROTECTED]
Description: 
 ampache- web-based audio file management system
Changes: 
 ampache (3.4-2) unstable; urgency=high
 .
 * Included some upstream gather album art fixes.
Checksums-Sha1: 
 a460855c22614dadcde03d766202d6cd94e2cc3f 1256 ampache_3.4-2.dsc
 c9f78549a79b1e37637cb93033ea8b41709e4a3f 1432761 ampache_3.4.orig.tar.gz
 b4bcd48075c84cb62b4691a54cb08afc786ae8d0 14402 ampache_3.4-2.diff.gz
 877abd20d04636c7dd082124c988ff39d5e28cbb 1443954 ampache_3.4-2_all.deb
Checksums-Sha256: 
 a47b4dfc93f0d9ded42b5ad584d4e916b8d728472eb83aa5e9bdc93770559488 1256 
ampache_3.4-2.dsc
 63a487c09581c8b7aca57298c22f126fbf6b23ad387a6d28f293bf4bbe813dc0 1432761 
ampache_3.4.orig.tar.gz
 d219afdaa6e0897356e8f8224e376b342ed7c48c8caa412af4f3e1ef19e5b3c2 14402 
ampache_3.4-2.diff.gz
 866b1ebd6eb9610a433bff40a86c837ee21abd48c93fc0eb5ad60b08e8f63bc6 1443954 
ampache_3.4-2_all.deb
Files: 
 6299f867ac12353ca21cbc19c0d87cb5 1256 web optional ampache_3.4-2.dsc
 dede124fcfdbce4628d760af9500 1432761 web optional ampache_3.4.orig.tar.gz
 cc1100431104459d206955fcab468b85 14402 web optional ampache_3.4-2.diff.gz
 4335bee59d60472a59ce6595bebfb50c 1443954 web optional ampache_3.4-2_all.deb

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

iQEVAwUBSDMFv2z0hbPcukPfAQKIJwf/RvaT0eO3T082JijcnnPiLtVknHypzvPF
X14K0/ETRVVCBA7RJ05dYuFI9bMyGlnKsEP9k8zMW8RVpGPY3kQqgsnCqX6VaG0m
tuzyxYA5xZaG4+hF9/Gl88bb40Rtr6B8KduZvzI1trGRexlLbH0pKCi9in1NFmO2
CSF7O48AjXD2d4RspaxrIzHJMsbvX8ijPCWEmgbJs4UzK0WrAPtJ2qiFa7o10DBJ
6ihIhScHj0vi3gI+Ffd529hEYwWd1OqAut/NaoLW+jGQ466OdSlXOH/twBi+RgFF
x1ZPPxSHXYxOY9oSr5g0LrSq2wbPEoZF6p0ebI4BWMlDg7245KQFnQ==
=gLIt
-END PGP SIGNATURE-


Accepted:
ampache_3.4-2.diff.gz
  to pool/main/a/ampache/ampache_3.4-2.diff.gz
ampache_3.4-2.dsc
  to pool/main/a/ampache/ampache_3.4-2.dsc
ampache_3.4-2_all.deb
  to pool/main/a/ampache/ampache_3.4-2_all.deb
ampache_3.4.orig.tar.gz
  to pool/main/a/ampache/ampache_3.4.orig.tar.gz


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



Accepted wormux 1:0.8-1 (source all amd64)

2008-05-20 Thread Cyril Brulebois
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 19:37:34 +0200
Source: wormux
Binary: wormux wormux-data
Architecture: source all amd64
Version: 1:0.8-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team [EMAIL PROTECTED]
Changed-By: Cyril Brulebois [EMAIL PROTECTED]
Description: 
 wormux - funny fight game on 2D maps
 wormux-data - data files for the game wormux
Changes: 
 wormux (1:0.8-1) unstable; urgency=low
 .
   * New upstream release.
   * Use an epoch since upstream prefers that to a “0.8final-1” revision.
   * debian/copyright:
  - Update copyright years.
  - Fix typo.
   * Debian patches:
  - Drop all patches, merged upstream.
  - Remove simple-patchsys.mk include in debian/rules.
   * debian/control.in:
  - Fix Vcs-Svn URL (“svn://” instead of “ssh://”).
  - Nuke trailing spaces and double spaces in the long
descriptions. Also reformat the paragraphs.
  - Update my mail address.
   * debian/control:
  - Refresh accordingly, using the “update_control” target.
Checksums-Sha1: 
 f4cffb3cf2734dec2a4eb8aedbaf1835d756c9a5 1634 wormux_0.8-1.dsc
 5d3ff71e055aa64ea18957f8ba6149b042759738 57046125 wormux_0.8.orig.tar.gz
 e3412e390141804ea994f82f80456d1c9cd461dc 29415 wormux_0.8-1.diff.gz
 ddda7ca1708be43d6394a0b0e07e78c3885d49c6 55421534 wormux-data_0.8-1_all.deb
 732c13ab7967c159e0f5385b0c03af1240474ad7 698842 wormux_0.8-1_amd64.deb
Checksums-Sha256: 
 eb8204aac22ea64dbf24c937db89f82923eca3b11ca54e71b1ca678fb12f5ab4 1634 
wormux_0.8-1.dsc
 be91db80eb3f7a50043b9f4eae8b1188059143b0728993a9584c78b65fcbda59 57046125 
wormux_0.8.orig.tar.gz
 9a26e7c8a867e4c26501549af2a8ad11a1afeb0f1787723f58eba34cde012174 29415 
wormux_0.8-1.diff.gz
 22bed94c0540181d4b16da474a3c582465d5e05c2cabbadbc7c1c501f96609e2 55421534 
wormux-data_0.8-1_all.deb
 b0646887695d6e34088660853a6ec7f0b38483d6236cb0456ad140aa08a6493d 698842 
wormux_0.8-1_amd64.deb
Files: 
 7135e0b0e3213aaa091273d2bdcb4e92 1634 games optional wormux_0.8-1.dsc
 1437a75c5fbf4d13167ec0ccb841eac9 57046125 games optional wormux_0.8.orig.tar.gz
 06a84cb9199d3bee7b07d2f4e9f0a52a 29415 games optional wormux_0.8-1.diff.gz
 99925216b37578672298cbdc47af36ca 55421534 games optional 
wormux-data_0.8-1_all.deb
 8b77a24630db86f39876435031f99a9b 698842 games optional wormux_0.8-1_amd64.deb

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

iD8DBQFIMxs1eGfVPHR5Nd0RAlE6AJ9bAGqH0ML9bBtZPfuclng3UpaM2wCfQRCg
6NIvQ7qGXKdIqsmK/gbu7EE=
=SyVP
-END PGP SIGNATURE-


Accepted:
wormux-data_0.8-1_all.deb
  to pool/main/w/wormux/wormux-data_0.8-1_all.deb
wormux_0.8-1.diff.gz
  to pool/main/w/wormux/wormux_0.8-1.diff.gz
wormux_0.8-1.dsc
  to pool/main/w/wormux/wormux_0.8-1.dsc
wormux_0.8-1_amd64.deb
  to pool/main/w/wormux/wormux_0.8-1_amd64.deb
wormux_0.8.orig.tar.gz
  to pool/main/w/wormux/wormux_0.8.orig.tar.gz


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



Accepted tftpy 0.4.4-1 (source all)

2008-05-20 Thread Carlos Galisteo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 20 May 2008 09:20:03 +
Source: tftpy
Binary: python-tftpy
Architecture: source all
Version: 0.4.4-1
Distribution: unstable
Urgency: low
Maintainer: Carlos Galisteo [EMAIL PROTECTED]
Changed-By: Carlos Galisteo [EMAIL PROTECTED]
Description: 
 python-tftpy - A Pure-Python library for TFTP
Changes: 
 tftpy (0.4.4-1) unstable; urgency=low
 .
   [ Piotr Ożarowski ]
   * Rename XS-Vcs-* fields to Vcs-* (dpkg supports them now)
 .
   [ Sandro Tosi ]
   * debian/control
 - uniforming Vcs-Browser field
 .
   [ Carlos Galisteo ]
   * New upstream release (0.4.4)
Checksums-Sha1: 
 7ba6da466e84bd36229106784d9f6268a4c12b4a 1212 tftpy_0.4.4-1.dsc
 76ff6328183b72d8fdd992cf1580dc280e171cc1 17608 tftpy_0.4.4.orig.tar.gz
 61748a41db50bb5f17d2e0234721ab70b332d116 3137 tftpy_0.4.4-1.diff.gz
 b32928897de618634e46adefaea532c7a4d9dfa3 19928 python-tftpy_0.4.4-1_all.deb
Checksums-Sha256: 
 caaabc86afe5f526365a1084d6e0a8dccda3c265dba6c00200e6f57a0c863832 1212 
tftpy_0.4.4-1.dsc
 1f78bbed0d7cd5e63c800fcca88069a6bfae666b7eb56690dc70518dfa0369b9 17608 
tftpy_0.4.4.orig.tar.gz
 00942a762f392072943ba0f6f0418ba20efbff3ff8ae765efec98bda98d93e74 3137 
tftpy_0.4.4-1.diff.gz
 52482dc99cca6c20ef1b18b79e0d06dfcae8d64f350ec79a48a679408f53053d 19928 
python-tftpy_0.4.4-1_all.deb
Files: 
 919b13be2c4bb6a9fb4f937460915400 1212 python optional tftpy_0.4.4-1.dsc
 53d2c1ba0f8402365f961564e02fcbe9 17608 python optional tftpy_0.4.4.orig.tar.gz
 8863e3f1d1987aecfebd4f4b7b4885e8 3137 python optional tftpy_0.4.4-1.diff.gz
 8fe5ce29e25a1a881ddeef9b1c2e2048 19928 python optional 
python-tftpy_0.4.4-1_all.deb

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

iD8DBQFIMx3jB01zfu119ZkRAvhyAKDS1/aUg9fsPBH/U8Eb4cT2Qfk++ACgqVhw
pSN5rZv1vcYkTsz2j5tijgA=
=UUFH
-END PGP SIGNATURE-


Accepted:
python-tftpy_0.4.4-1_all.deb
  to pool/main/t/tftpy/python-tftpy_0.4.4-1_all.deb
tftpy_0.4.4-1.diff.gz
  to pool/main/t/tftpy/tftpy_0.4.4-1.diff.gz
tftpy_0.4.4-1.dsc
  to pool/main/t/tftpy/tftpy_0.4.4-1.dsc
tftpy_0.4.4.orig.tar.gz
  to pool/main/t/tftpy/tftpy_0.4.4.orig.tar.gz


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



  1   2   >