Regenerated SSL certificates for debian.org (was: debian infrastructure ssh key logins disabled, passwords reset)

2008-05-14 Thread Ben Finney
Peter Palfrader [EMAIL PROTECTED] writes:

 We also had to replace the SSL certificate on db.debian.org because
 its CA which is operated by Software in the Public Interest (SPI) is
 known to have been created with a SSL with the bug.  The new SPI
 CA can be found at the SPI's secretary page[8], its fingerprints
 signed by Joerg Jaspert's GPG key.  They are:
   SHA1:  AF:70:88:43:83:82:02:15:CD:61:C6:BC:EC:FD:37:24:A9:90:43:1C
   MD5:   2A:47:9F:60:BB:83:74:6F:01:03:D7:0B:0D:F6:0D:78
 [A copy of the cert is available at URL:http://ca.debian.org/spi-cacert.crt]

Is it normal that I should see Could not verify this certificate for
unknown reasons when loading the certificate in Iceweasel?

-- 
 \   “The man who is denied the opportunity of taking decisions of |
  `\  importance begins to regard as important the decisions he is |
_o__)allowed to take.” —C. Northcote Parkinson |
Ben Finney


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



Re: analyzing popcon data for bogus recommends

2008-05-14 Thread Petter Reinholdtsen
[Joey Hess]
 It would be nice to have a list which Recommends are
 ignored/overridden the most when installing packages, to identify
 Recommends that need to be downgraded to Suggests. Could we derive
 such a list from popcon data?

I have no idea if that can be done. :)

 I think it would need to be done by analyzing each individual popcon
 data submission, so I can't do it as that data is not published.

The raw popcon data is available for all Debian Developers at
popcon.debian.org.  Unable to log in to confirm the exact location at
the moment, but it is there somewhere. :)

Putting [EMAIL PROTECTED] on the CC list, as
it is a better place to discuss the use of popcon data.

Happy hacking,
-- 
Petter Reinholdtsen


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



Is openssl actually safe now? (was: debian infrastructure ssh key logins disabled, passwords reset)

2008-05-14 Thread BALLABIO GERARDO
Peter Palfrader wrote:
 Due to the weakness in our openssl's random number generator (see the
 Debian Security Advisory #1571 from a few minutes ago[1]) that affects
 among other things ssh keys we have disabled public key auth on all
 project systems until further notice.

Hi all,
if I understand correctly, the problem was that openssl used some
segment of uninitialized memory as a source of entropy, and the
offending patch cleared it. Reverting the patch obviously restored the
pristine behavior.

However I wonder, is the pristine behavior correct? As far as I know, it
is NOT justified at all to rely on the assumption that uninitialized
memory contains random data. I read that many architectures reset it to
some magic number, e.g., 0xdeadbeef. Is that correct?

If so, and if that was the ONLY entropy source used in generating keys,
then upstream openssl is (and has always been) just as broken as the
patched Debian package. While if it was only used in addition to other
sources, all this is probably a non-issue.

Someone more competent than me please investigate.

Gerardo


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



Re: Is openssl actually safe now? (was: debian infrastructure ssh key logins disabled, passwords reset)

2008-05-14 Thread Richard Kettlewell
BALLABIO GERARDO [EMAIL PROTECTED] writes:
 if I understand correctly, the problem was that openssl used some
 segment of uninitialized memory as a source of entropy, and the
 offending patch cleared it.

This is not correct.  Clearing tmpbuf before reading /dev/urandom is
harmless.  The broken change can be found at these URLs:

http://svn.debian.org/viewsvn/pkg-openssl?rev=141view=rev
http://svn.debian.org/viewsvn/pkg-openssl/openssl/trunk/rand/md_rand.c?rev=141r1=140r2=141

 Reverting the patch obviously restored the pristine behavior.

 However I wonder, is the pristine behavior correct? As far as I know, it
 is NOT justified at all to rely on the assumption that uninitialized
 memory contains random data. I read that many architectures reset it to
 some magic number, e.g., 0xdeadbeef. Is that correct?

It's harmless (it doesn't make the RNG any worse) but also pointless
(the uninitialized part of the input buffer may well be predictable).

 If so, and if that was the ONLY entropy source used in generating keys,
 then upstream openssl is (and has always been) just as broken as the
 patched Debian package. While if it was only used in addition to other
 sources, all this is probably a non-issue.

The uninitialized data is not the only source of entropy.

ttfn/rjk


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



Re: Is openssl actually safe now? (was: debian infrastructure ssh key logins disabled, passwords reset)

2008-05-14 Thread Steve Kemp
On Wed May 14, 2008 at 10:21:18 +0200, BALLABIO GERARDO wrote:

 If so, and if that was the ONLY entropy source used in generating keys,
 then upstream openssl is (and has always been) just as broken as the
 patched Debian package. 

  It wasn't.

Steve
-- 
Debian GNU/Linux System Administration
http://www.debian-administration.org/


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



Re: analyzing popcon data for bogus recommends

2008-05-14 Thread Enrico Zini
On Tue, May 13, 2008 at 10:51:37PM -0400, Joey Hess wrote:

 It would be nice to have a list which Recommends are ignored/overridden
 the most when installing packages, to identify Recommends that need to be
 downgraded to Suggests. Could we derive such a list from popcon data? I
 think it would need to be done by analyzing each individual popcon data
 submission, so I can't do it as that data is not published.

Yes you can.  Also, there's a xapian database in my home directory
(~enrico/anapop/something IIRC) on people.debian.org that is built with
the popcon data, and you can query that database to quickly get a count
of submissions having package X AND NOT package Y and package X AND
package Y.

That Xapian index indexes popcon submissions as if they were
documents, and installed packages as if they were terms.

The database is updated using a weekly cronjob that rescans the whole
popcon database.  I've quickly tried in the past[1] to come out with
ways to hook the indexing process into popcon so that I could do
realitime indexing of the data (it gives an up to date index and doesn't
suck 100% cpu on gluck once a week), but I got the impression that it
required having more discussion than I was motivated to have at the
time.  If more people are interested in using that xapian index, it can
make sense to rehash this.


Ciao,

Enrico

[1] 
http://lists.alioth.debian.org/pipermail/popcon-developers/2007-June/001374.html
-- 
GPG key: 1024D/797EBFAB 2000-12-05 Enrico Zini [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Re: Is openssl actually safe now? (was: debian infrastructure ssh key logins disabled, passwords reset)

2008-05-14 Thread Miriam Ruiz
2008/5/14 BALLABIO GERARDO [EMAIL PROTECTED]:

  However I wonder, is the pristine behavior correct? As far as I know, it
  is NOT justified at all to rely on the assumption that uninitialized
  memory contains random data. I read that many architectures reset it to
  some magic number, e.g., 0xdeadbeef. Is that correct?

  If so, and if that was the ONLY entropy source used in generating keys,
  then upstream openssl is (and has always been) just as broken as the
  patched Debian package. While if it was only used in addition to other
  sources, all this is probably a non-issue.

I wonder if there could be some tool that created a big amount of
random keys and statistically check that the system was working
propely. Any chance of a tool like that can exist?

Miry


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



Re: Is openssl actually safe now? (was: debian infrastructure ssh key logins disabled, passwords reset)

2008-05-14 Thread David Härdeman
On Wed, May 14, 2008 10:21, BALLABIO GERARDO wrote:
 Peter Palfrader wrote:
 Due to the weakness in our openssl's random number generator (see the
 Debian Security Advisory #1571 from a few minutes ago[1]) that affects
 among other things ssh keys we have disabled public key auth on all
 project systems until further notice.

 Hi all,
 if I understand correctly, the problem was that openssl used some
 segment of uninitialized memory as a source of entropy, and the
 offending patch cleared it. Reverting the patch obviously restored the
 pristine behavior.

 However I wonder, is the pristine behavior correct? As far as I know, it
 is NOT justified at all to rely on the assumption that uninitialized
 memory contains random data. I read that many architectures reset it to
 some magic number, e.g., 0xdeadbeef. Is that correct?

 If so, and if that was the ONLY entropy source used in generating keys,
 then upstream openssl is (and has always been) just as broken as the
 patched Debian package. While if it was only used in addition to other
 sources, all this is probably a non-issue.

No no...in essence upstream OpenSSL did the following (after a quick
comparison of the Debian and upstream versions, please excuse any
oversimplifications):

a) allocate a buffer
b) add contents of unitialized buffer to entropy pool
c) get random data into buffer
d) add contents of initialized buffer to entropy pool

If the entropy pool is properly coded, there is no negative effect of
adding data which may or may not be truly random to the pool (i.e. you
cannot degrade the quality of the pool no matter what you add). Therefore
step b) might add some entropy or it might do nothing at all, depending on
how truly random the uninitialized data is, but it won't hurt.

The goal of the patch that was used in Debian's OpenSSL was to placate
valgrind by removing step b) as valgrind complained about the use of
uninitialized memory (here it was one of the few cases where it might be
legit to do so).

Unfortunately, step d) was *also* removed by that patch. And therein lies
the bug.

-- 
David Härdeman


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



Re: conglomeration packages (Re: Will nvidia-graphics-drivers ever transition to testing?)

2008-05-14 Thread Lennart Sorensen
On Tue, May 13, 2008 at 10:32:07PM -0400, Filipus Klutiero wrote:
 I don't follow you. iceweasel, for example, is not independent from, say, 
 libnspr.

If they come from one source package, then they all build together.  If
they do not, then it's a dynamicly linked library and each can be built
and updated independantly.  kernel modules have to be rebuilt if the
sources change (just like any application of course) but also if the
kernel is changed (which an application does not, not even when
libraries change) which is hence a rebuild requirement external to the
package itself.  That's what is different.

-- 
Len Sorensen


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



db.debian.org/password.html : Why ~/.ssh/id_dsa.pub to setup OpenSSH for RSA

2008-05-14 Thread Osamu Aoki
Hi,

Recent openssl issue lead me to http://db.debian.org/password.html and
made me wonder why script example uses DSA key while main text only
talks about RSA key.

| Alternatively, you can do without a password and use PGP to manipulate your
| LDAP information through the mail gateway and use SSH RSA Authentication to
| access the servers. To setup OpenSSH for RSA you need to first generate a
| private RSA key using ssh-keygen and select a good passphrase for it. Then 
send
| the public portion of the key to the LDAP directory:
| 
| gpg --clearsign  ~/.ssh/id_dsa.pub | mail [EMAIL PROTECTED]
| 
| NB: Only version 2 RSA keys are accepted. Version 1 RSA keys (i.e. 
identity.pub
| files) will not work.


If main text is s/RSA/RSA\/DSA/g , I understand script example but ...

Is there any reason to use DSA key insted of RSA key(~/.ssh/id_rsa.pub) ?

Just curious,

Osamu


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



Re: SAGE packages for Debian

2008-05-14 Thread Timothy G Abbott
Yes, I realize there is not much time left.  I'm also quite busy for the 
next week or two, after which point I should have time to work on this 
again.  The precise release timeline is very helpful.


I won't be able to reasonably maintain this much software in Debian in the 
long term, but I will try to get everything into a release-ready condition 
before the Lenny freeze.


The main task that needs doing is generating patches fixing the various 
(shared) library issues in upstream packages.  Help with this, especially 
during the next couple weeks, could be very high-impact work, since 
ideally we want to give the upstream time to do a release after applying 
the patches we generate to fix their library versioning issues.


Send mail to [EMAIL PROTECTED] to coordinate this, as we've 
done the relevant work for a couple of the packages already.


The other help that this effort needs is people to maintain these packages 
in Debian.  The list of packages needing maintainers is available from 
http://bugs.debian.org/455292; looking at the individual package page 
RFP bugs blocking #455292, you can see whether each package is essentially 
ready for upload or require additional work (which I detail in each case).
If you're a Debian maintainer or developer and want to maintain any of 
these packages, feel free to take the packages, set yourself as 
maintainer, and upload them.


-Tim Abbott

On Sun, 11 May 2008, Holger Levsen wrote:


Hi,

wow, great! You're aware that you need to be done in just a bit more than six
weeks to achieve your goal of being part of lenny?
http://release.debian.org/emails/release-update-200801


regards,
Holger




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



Re: db.debian.org/password.html : Why ~/.ssh/id_dsa.pub to setup OpenSSH for RSA

2008-05-14 Thread Luk Claes
Osamu Aoki wrote:
 Hi,
 
 Recent openssl issue lead me to http://db.debian.org/password.html and
 made me wonder why script example uses DSA key while main text only
 talks about RSA key.

The text talks about RSA keys as they are preferred over DSA keys.

 | Alternatively, you can do without a password and use PGP to manipulate your
 | LDAP information through the mail gateway and use SSH RSA Authentication to
 | access the servers. To setup OpenSSH for RSA you need to first generate a
 | private RSA key using ssh-keygen and select a good passphrase for it. Then 
 send
 | the public portion of the key to the LDAP directory:
 | 
 | gpg --clearsign  ~/.ssh/id_dsa.pub | mail [EMAIL PROTECTED]
 | 
 | NB: Only version 2 RSA keys are accepted. Version 1 RSA keys (i.e. 
 identity.pub
 | files) will not work.
 
 
 If main text is s/RSA/RSA\/DSA/g , I understand script example but ...
 
 Is there any reason to use DSA key insted of RSA key(~/.ssh/id_rsa.pub) ?

On the contrary, it's better to use RSA keys as they can be bigger and
are faster.

Cheers

Luk


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



Re: db.debian.org/password.html : Why ~/.ssh/id_dsa.pub to setup OpenSSH for RSA

2008-05-14 Thread Adam D. Barratt
On Wed, 2008-05-14 at 19:50 +0200, Luk Claes wrote:
 Osamu Aoki wrote:
  Hi,
  
  Recent openssl issue lead me to http://db.debian.org/password.html and
  made me wonder why script example uses DSA key while main text only
  talks about RSA key.
 
 The text talks about RSA keys as they are preferred over DSA keys.

I assume Osamu was confused by the fact that this paragraph mentions RSA
consistently:

  |   use SSH RSA Authentication 
  to
  | access the servers. To setup OpenSSH for RSA you need to first generate a
  | private RSA key using ssh-keygen and select a good passphrase for it. 
  Then send
  | the public portion of the key to the LDAP directory:

and then suggests using the following:

  | gpg --clearsign  ~/.ssh/id_dsa.pub | mail [EMAIL PROTECTED]
  ^^^

in order to send your /RSA/ key :) (I'd guess the preceding text
mentioned DSA at one point).

Adam


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



Re: Is openssl actually safe now? (was: debian infrastructure ssh key logins disabled, passwords reset)

2008-05-14 Thread Ivan Jager

On Wed, 14 May 2008, David Härdeman wrote:

If the entropy pool is properly coded, there is no negative effect of
adding data which may or may not be truly random to the pool (i.e. you
cannot degrade the quality of the pool no matter what you add). Therefore
step b) might add some entropy or it might do nothing at all, depending on
how truly random the uninitialized data is, but it won't hurt.


I think that might depend on how not truly random the data is. For 
example, suppose the pool is coded to simply xor the new entropy with the 
pool. This works great when the entropy is distributed evenly through all 
the bits. If you treat it as a black box, it may seem that no matter what 
entropy you add, you can't make the pool any worse. However, if the 
entropy you add happens to be a copy of the pool...


Anyways, that doesn't really apply, since it isn't adding unitialized 
memory to the pool, it's simply using it as the initial value for the 
pool. I guess it's possible the uninitialized values just happen to cancel 
out the entropy that would later be added to the pool, but that seems 
extremely unlikely. In general, I think it would increase the entropy a 
little.


I'm pretty sure openssl uses something better than xor, but I don't see 
how you could code a pool so it wouldn't be possible to degrade the 
quality by adding the right fake entropy.



The goal of the patch that was used in Debian's OpenSSL was to placate
valgrind by removing step b) as valgrind complained about the use of
uninitialized memory (here it was one of the few cases where it might be
legit to do so).

Unfortunately, step d) was *also* removed by that patch. And therein lies
the bug.


What made me really sad, was that b) already had an #ifndef PURIFY around 
it. The ./Configure script already had an option that would do the right 
thing. If you simply google for purify, you would quickly find out it is a 
proprietary valgrind equivalent.


Did the person who came up with the patch not wonder why there was an 
#ifndef around the thing he was commenting out? It seems really silly to 
leave an #ifndef around a comment, without bothering to check what it was 
supposed to change.


Anyways, Debian is still my favorite distro, even though it's becoming a 
bit too nebie oriented for my liking. (This seems to be a common trend.)


Not a DD,
Ivan

Re: Is openssl actually safe now? (was: debian infrastructure ssh key logins disabled, passwords reset)

2008-05-14 Thread Steinar H. Gunderson
On Wed, May 14, 2008 at 03:33:52PM -0400, Ivan Jager wrote:
 I think that might depend on how not truly random the data is. For  
 example, suppose the pool is coded to simply xor the new entropy with the 
 pool.

It's not -- it's hashed in using a cryptographic hash function.

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



SSH keys: DSA vs RSA (was: Alioth and SSH: restored)

2008-05-14 Thread Ben Finney
Roland Mas [EMAIL PROTECTED] writes:

 - Keys submitted through the web interface are now filtered, and only
   RSA keys end up in your authorized_keys file.  Don't even try
   putting DSA keys in your authorized_keys2 file, the use of that file
   has been disabled (and it'll be deleted anyway).

Could you explain the rationale for this? My impression was that DSA
was recommended over RSA.

-- 
 \ My house is on the median strip of a highway. You don't really |
  `\notice, except I have to leave the driveway doing 60 MPH.  -- |
_o__)Steven Wright |
Ben Finney


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



Re: package for configuration - Some suggestions

2008-05-14 Thread Timothy G Abbott
You can make packages to do configuration, but there are tricky issues 
involved in making sure that the right thing happens when the packages 
you're configuring are upgraded.


At MIT, we wrote a system of CDBS modules that automates a lot of the work 
involved in making configuration packages.  You can read about (and 
download) it from http://debathena.mit.edu/config-packages.


We use this system to configure hundreds of machines administered by 
different people running any Debian or Ubuntu release dating from sarge to 
the present to use various MIT services.



By the way, sarge security support ended a couple of months ago, so I'm 
not sure continuing to run sarge is a good idea.


-Tim Abbott

On Tue, 13 May 2008, Anthony wrote:


Hello

I would like just to have some suggestions...

I have to change the authentification configuration of debian computers 
(lot of computers) at work...! In SARGE


the users will be authenticated on ldap so i need install some package : 
libpam-ldap, libnss-ldap, ldap-utils, nss-updatedb, libnss-db, libpam-ccreds.
Il need change configuration : /etc/nsswitch.conf, /etc/ldap.conf, 
/etc/libnss-ldap.conf and pam-ldap.conf , pam.d/common*

Create a cron task : nss-updatedb ldap
Add some options in resolv.conf

I have thought about create a package with dependencies and postinstall 
script to change configuration!!!

I can't create configuration file and add them in the package, can I?

Is it a good think? Have you any suggestion?

Thank you


Anthony


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





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



Re: SSH keys: DSA vs RSA (was: Alioth and SSH: restored)

2008-05-14 Thread The Fungi
On Thu, May 15, 2008 at 08:09:12AM +1000, Ben Finney wrote:
 Could you explain the rationale for this? My impression was that DSA
 was recommended over RSA.

DSA was recommended over RSA in years gone by for reasons of
freedom, until late 2000 when MIT's 17-year US patent (4405829)
expired on the c=(m^e)%n function and it was subsequently released
into the public domain (though they actually released it into the PD
two weeks ahead of the patent expiration, IIRC).
-- 
{ IRL(Jeremy_Stanley); PGP(9E8DFF2E4F5995F8FEADDC5829ABF7441FB84657);
SMTP([EMAIL PROTECTED]); IRC([EMAIL PROTECTED]); ICQ(114362511);
AIM(dreadazathoth); YAHOO(crawlingchaoslabs); FINGER([EMAIL PROTECTED]);
MUD([EMAIL PROTECTED]:6669); WWW(http://fungi.yuggoth.org/); }


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



Re: SSH keys: DSA vs RSA (was: Alioth and SSH: restored)

2008-05-14 Thread brian m. carlson

On Thu, May 15, 2008 at 08:09:12AM +1000, Ben Finney wrote:

Roland Mas [EMAIL PROTECTED] writes:


- Keys submitted through the web interface are now filtered, and only
  RSA keys end up in your authorized_keys file.  Don't even try
  putting DSA keys in your authorized_keys2 file, the use of that file
  has been disabled (and it'll be deleted anyway).


Could you explain the rationale for this? My impression was that DSA
was recommended over RSA.


It used to be that RSA was patented in the United States, and so only
DSA, DH, or ElGamal algorithms were appropriate for use in main.

Another reason DSA may be preferred is that it produces smaller
signatures than RSA.  The reason DSA is preferred over RSA for GnuPG
keys is because (AIUI) the keyring maintainers no longer accept v3 keys,
but only v4, which for a while meant that DSA was the only option.
(GnuPG now generates v4 RSA keys as well.)

Still another reason DSA may be preferred over RSA is that it is
conjectured that solving the hard problem underlying DSA (the
Diffie-Hellman Problem) is as difficult as computing discrete logarithms
(the Discrete Logarithm Problem), while the underlying hard problem for
RSA (the RSA Problem) is conjectured to be as difficult as the Factoring
Problem.  If one can solve the Discrete Logarithm Problem, then one can
factor, but the reverse is not true.  Thus, it is conjectured that DSA
is based on a harder problem than RSA.

There are reasons not to prefer DSA.  It has a short key size, usually
limited to 1024 bits, which is not enough for continued security.
Because all signatures are made in the field of q, a 160-bit prime, thus
making them no longer than 160 bits, brute-forcing the algorithm is
easier than with RSA.  Also, DSA absolutely requires a good random
number generator for every signature.  If the nonce is not chosen
randomly, it will leak bits of the key.  This is true for all discrete
logarithm algorithms.  Therefore, anyone who had a DSA key has had it
compromised, and RSA is just as good a choice for a new key.

--
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: SAGE packages for Debian

2008-05-14 Thread Ondrej Certik
On Wed, May 7, 2008 at 10:16 PM, Timothy G Abbott [EMAIL PROTECTED] wrote:
 That's probably a good plan, especially since the sandbox is apparently
 going to be eliminated eventually (and it sounds like arpack and delaunay
 are on the list of things likely to be merged into mainline scipy)

 http://jarrodmillman.blogspot.com/2007/12/end-of-scipy-sandbox.html

 I'll send the python-scipy maintainers a note and see what they think.

Is Sage really depending on the sandbox? I think it's not a good idea
to depend on something that is just a sandbox. :)

Anyway, as the comaintainer of python-scipy, I think there is no
problem creating couple more packages for this in DPMT and removing
them when python-scipy has this functionality.

Ondrej


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



Re: SSH keys: DSA vs RSA (was: Alioth and SSH: restored)

2008-05-14 Thread brian m. carlson

On Wed, May 14, 2008 at 11:12:26PM +, brian m. carlson wrote:

Also, DSA absolutely requires a good random
number generator for every signature.  If the nonce is not chosen
randomly, it will leak bits of the key.  This is true for all discrete
logarithm algorithms.  Therefore, anyone who had a DSA key has had it
compromised, and RSA is just as good a choice for a new key.


I apologize.  Using the same nonce more than once or revealing the nonce
does not leak bits of the key; it immediately and trivially reveals the
private key.  See Applied Cryptography, page 492.

--
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: SSH keys: DSA vs RSA (was: Alioth and SSH: restored)

2008-05-14 Thread Steve Greenland
On 14-May-08, 18:12 (CDT), brian m. carlson [EMAIL PROTECTED] wrote: 
 Therefore, anyone who had a DSA key has had it compromised...

Shouldn't that be anyone who had a DSA key *created by the flawed
version of openssl* has had it compromised...? Or are you asserting
something stronger?

Steve

-- 
Steve Greenland
The irony is that Bill Gates claims to be making a stable operating
system and Linus Torvalds claims to be trying to take over the
world.   -- seen on the net


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



Re: SSH keys: DSA vs RSA (was: Alioth and SSH: restored)

2008-05-14 Thread Steinar H. Gunderson
On Wed, May 14, 2008 at 06:22:37PM -0500, Steve Greenland wrote:
 Therefore, anyone who had a DSA key has had it compromised...
 Shouldn't that be anyone who had a DSA key *created by the flawed
 version of openssl* has had it compromised...? Or are you asserting
 something stronger?

No. Any key who had a single DSA signature created by the flawed version of
OpenSSL should be considered compromised. DSA requires a secret, random
number as part of the signature process; if someone figures it out, or you
use the same number twice, the entire secret key falls.

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



Re: SSH keys: DSA vs RSA (was: Alioth and SSH: restored)

2008-05-14 Thread Steinar H. Gunderson
On Wed, May 14, 2008 at 11:12:26PM +, brian m. carlson wrote:
 If one can solve the Discrete Logarithm Problem, then one can
 factor, but the reverse is not true.

This is the first time I've ever heard anyone claim this; I've seen people
and textbooks claim they're roughly equivalent, but not that this is a
one-way street. Do you have any references?

/* Steinar */
-- 
Homepage: http://www.sesse.net/


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



Re: SSH keys: DSA vs RSA

2008-05-14 Thread Russ Allbery
Steve Greenland [EMAIL PROTECTED] writes:
 brian m. carlson [EMAIL PROTECTED] wrote: 

 Therefore, anyone who had a DSA key has had it compromised...

 Shouldn't that be anyone who had a DSA key *created by the flawed
 version of openssl* has had it compromised...? Or are you asserting
 something stronger?

He's asserting something stronger.  As I understand it, if you use a
perfectly valid and strong DSA key with a weak nonce (such as from a
broken random number generator), you just revealed your DSA key to someone
who knows what to look for and can brute-force or otherwise determine the
nonce.

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


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



Re: conglomeration packages (Re: Will nvidia-graphics-drivers ever transition to testing?)

2008-05-14 Thread Filipus Klutiero
Le May 14, 2008 09:41:02 am Lennart Sorensen, vous avez écrit :
 On Tue, May 13, 2008 at 10:32:07PM -0400, Filipus Klutiero wrote:
  I don't follow you. iceweasel, for example, is not independent from, say,
  libnspr.

 If they come from one source package, then they all build together.  If
 they do not, then it's a dynamicly linked library and each can be built
 and updated independantly.  kernel modules have to be rebuilt if the
 sources change (just like any application of course) but also if the
 kernel is changed (which an application does not, not even when
 libraries change) which is hence a rebuild requirement external to the
 package itself.
Your second parenthesis is wrong. Just like LKM-s when the stock kernels' 
ABINAME is bumped, applications need to be rebuilt when the ABI of one of the 
libraries they link to changes in a way which is not backwards-compatible. 
You can check http://wiki.debian.org/OngoingTransitions for examples of 
library transitions.


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



Re: SSH keys: DSA vs RSA (was: Alioth and SSH: restored)

2008-05-14 Thread brian m. carlson

On Thu, May 15, 2008 at 02:00:25AM +0200, Steinar H. Gunderson wrote:

On Wed, May 14, 2008 at 11:12:26PM +, brian m. carlson wrote:

If one can solve the Discrete Logarithm Problem, then one can
factor, but the reverse is not true.


This is the first time I've ever heard anyone claim this; I've seen people
and textbooks claim they're roughly equivalent, but not that this is a
one-way street. Do you have any references?


I read it somewhere, probably on a PGP forum, but apparently that was
incorrect.  According to http://portal.acm.org/citation.cfm?id=894497 :

  To summarize: solving the discrete logarithm problem for a composite
  modulus is exactly as hard as factoring and solving it modulo primes.

I stand corrected.

--
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: Is openssl actually safe now?

2008-05-14 Thread Goswin von Brederlow
Ivan Jager [EMAIL PROTECTED] writes:

 On Wed, 14 May 2008, David Härdeman wrote:
 If the entropy pool is properly coded, there is no negative effect of
 adding data which may or may not be truly random to the pool (i.e. you
 cannot degrade the quality of the pool no matter what you add). Therefore
 step b) might add some entropy or it might do nothing at all, depending on
 how truly random the uninitialized data is, but it won't hurt.

 I think that might depend on how not truly random the data is. For
 example, suppose the pool is coded to simply xor the new entropy with
 the pool. This works great when the entropy is distributed evenly
 through all the bits. If you treat it as a black box, it may seem that
 no matter what entropy you add, you can't make the pool any
 worse. However, if the entropy you add happens to be a copy of the
 pool...

That would require you to

a) know the contents of the pool
   More entropy gets added later so you have to forsee what will be
   added.

b) be able to influence what is actually added

   The buffer itself isn't actualy added from what I read but
   hashed. So you have to device the buffer in such a way that the
   hashed valued cancel out the pool contents. You have to break the
   hashing function.

 I'm pretty sure openssl uses something better than xor, but I don't
 see how you could code a pool so it wouldn't be possible to degrade
 the quality by adding the right fake entropy.

You use a hash function to make it impossible (actually just verry
hard) to control the pattern actually being added. The hash function
will not destroy entropy (unless it is broken) from the input but
destroys patterns.

 The goal of the patch that was used in Debian's OpenSSL was to placate
 valgrind by removing step b) as valgrind complained about the use of
 uninitialized memory (here it was one of the few cases where it might be
 legit to do so).

And clearly, since the adding of the memory was the only use of the
memory in that function, the right thing would have been to initialize
the memory or not add it at all. And I mean don't call the function
with an uninitialized buffer in the first palce instead of changing
the function to ignore any buffer given.

Simplified the code comes to this:

void add(char* buf) {
 for(i = 0; i  size; i += 20) {
  add_buf_to_pool(buf, i);
  buf += i;
 }
}

'buf' is only ever used to be added to the pool in the function. There
is no other use of it there.

And the patch commented out the 'add_buf_to_pool' call instead of
looking for where 'add' was called with an uninitialized buffer.

MfG
Goswin


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



Re: SSH keys: DSA vs RSA

2008-05-14 Thread Goswin von Brederlow
Russ Allbery [EMAIL PROTECTED] writes:

 Steve Greenland [EMAIL PROTECTED] writes:
 brian m. carlson [EMAIL PROTECTED] wrote: 

 Therefore, anyone who had a DSA key has had it compromised...

 Shouldn't that be anyone who had a DSA key *created by the flawed
 version of openssl* has had it compromised...? Or are you asserting
 something stronger?

 He's asserting something stronger.  As I understand it, if you use a
 perfectly valid and strong DSA key with a weak nonce (such as from a
 broken random number generator), you just revealed your DSA key to someone
 who knows what to look for and can brute-force or otherwise determine the
 nonce.

The DSA signing uses (secret key + random) in the signature and that
sum is trivial to compute given the signed message and public key. The
security of DSA relies solely on the fact that random can't be guessed
so you can't compute the secret key from the sum.

With the bug in Debians openssl random is one of 2^15 numbers for a
given cpu and key size. If you don't know the cpu used then multiply
by 2 (32bit or 64bit) and again by 2 (big or little endian).

So all you have to do is to try out 32768 random numbers (or 131072)
and check if that gives you the secret key.

Also if you have 2 messages signed with the same random number you can
compute the secret key. It is more complicated then this but
simplified boils down to is computing k given (k + r) * Message1 ==
Signature1 and (k + r) * Message2 == Signature2.

MfG
Goswin


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



openssh-blacklist for !Debian

2008-05-14 Thread Martin Langhoff
Hi Kees, Jamie, DDs,

I am looking at hosts that are runing other linuxen that may have weak
keys now, or see those weak keys uploaded inadvertently in the future.

Is there a straightforward way to get hosts that are !(Debian|Ubuntu)
to use that blacklist? PermitBlacklistedKeys support in openssh-server
seems to be a Debian/Ubuntu patch (and can't even find a mention of it
in the changelog).

cheers,



m
--


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



[DSA 1571-1] Heimdal

2008-05-14 Thread Brian May
Apparently, Heimdal in Debian also is affected. I am not aware of any 
solution other then to manually regenerate all keys.


Brian May
---BeginMessage---

I strongly advise all readers of this list that use Debian or might have
users in your realm (or any realms for which cross-realm key exchange as
been performed) to read:

http://lists.debian.org/debian-security-announce/2008/msg00152.html

This vulnerability will effect any Heimdal distribution built using any
Debian package of OpenSSL version 0.9.8c-1 or higher.

All long term keys that were generated with this version of OpenSSL
and are not derived from a password MUST be changed.

Any short term keys that are generated from a vulnerable KDC should be
considered suspect.

Jeffrey Altman



smime.p7s
Description: S/MIME Cryptographic Signature
---End Message---


Accepted swi-prolog 5.6.55-1 (source i386)

2008-05-14 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 02:47:49 +0100
Source: swi-prolog
Binary: swi-prolog swi-prolog-clib swi-prolog-http swi-prolog-semweb 
swi-prolog-sgml swi-prolog-table swi-prolog-odbc swi-prolog-xpce
Architecture: source i386
Version: 5.6.55-1
Distribution: unstable
Urgency: low
Maintainer: Chris Lamb [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 swi-prolog - ISO/Edinburgh-style Prolog interpreter
 swi-prolog-clib - SWI-Prolog interface to system libraries
 swi-prolog-http - HTTP libraries for SWI-Prolog
 swi-prolog-odbc - ODBC library for SWI-Prolog
 swi-prolog-semweb - SWI-Prolog library for manipulating RDF triples
 swi-prolog-sgml - SGML/XML/HTML parser for SWI-Prolog
 swi-prolog-table - External table library for SWI-Prolog
 swi-prolog-xpce - User interface library for SWI-Prolog
Changes: 
 swi-prolog (5.6.55-1) unstable; urgency=low
 .
   * New upstream release.
   * Use correct shared object file extension on HPPA to fix FTBFS on this
 architecture since 5.6.53-2. Patch backported from upstream repository.
Checksums-Sha1: 
 5b2c05d5142b9b81aed556ea746c44e33077f836 1406 swi-prolog_5.6.55-1.dsc
 d7d5bfd3c35c0744c14fbd31c4e3178593d31c62 11818376 swi-prolog_5.6.55.orig.tar.gz
 4f0aa8785100f7b1cfbac367cd9ca23433527181 23389 swi-prolog_5.6.55-1.diff.gz
 8b12ea1fcfadc153bc9fed130d8f718e3a30d594 2404792 swi-prolog_5.6.55-1_i386.deb
 652e8d2677891fe060bd2a453324e27193da5d80 97480 
swi-prolog-clib_5.6.55-1_i386.deb
 913f11bac38fe89bdba66b0b4619661e602df99d 75734 
swi-prolog-http_5.6.55-1_i386.deb
 8be41fc171416dbfe102a9c7213d7260b39c26bb 133868 
swi-prolog-semweb_5.6.55-1_i386.deb
 97f660861028f85e83cac34f1412d298be196c0b 146376 
swi-prolog-sgml_5.6.55-1_i386.deb
 89cae7c3bdbc6607f3079e05a68cb22cbd3380c6 35280 
swi-prolog-table_5.6.55-1_i386.deb
 5b9998e638dfddcf6b2b2b1f46bdb2c76b2dd022 32726 
swi-prolog-odbc_5.6.55-1_i386.deb
 03aa2500a10841096885d0659b6dddbe8de055e5 2964494 
swi-prolog-xpce_5.6.55-1_i386.deb
Checksums-Sha256: 
 f37ffe2ba4112bc9d603877d11a9d19f04b31ad20aaeb2695bf3f21ca1313a66 1406 
swi-prolog_5.6.55-1.dsc
 9f05766d29ee6648ce6cbae4ccfe536e348ab12503d423b3ce32e5ff96bb8bfc 11818376 
swi-prolog_5.6.55.orig.tar.gz
 faafa1ac2330c4d93e82ec58bc2b0323cbd7a64fdc2e85081464de7fa9673a98 23389 
swi-prolog_5.6.55-1.diff.gz
 a905161e6d639ba853e7f32f01b8f932f551a92e22bd2a7654d5965fa5bfba7a 2404792 
swi-prolog_5.6.55-1_i386.deb
 165f6e8492730c58de0434896b3f34903abda7bc7ca7141883c6cd9184921417 97480 
swi-prolog-clib_5.6.55-1_i386.deb
 53b19bb5687695abb7676b5ac47d6c61664b7af8477aec40c04377eb8b29f3d1 75734 
swi-prolog-http_5.6.55-1_i386.deb
 debb1851b87fefd3a0b18bb56b9cf3e2679143868473d0cb802c3e5977d6d17f 133868 
swi-prolog-semweb_5.6.55-1_i386.deb
 b39687660b9046bf60727d965edbdb4d2ba469175083b5d16b3bb1ad9000fced 146376 
swi-prolog-sgml_5.6.55-1_i386.deb
 885b554d4ae918c1ee51c88799ed5e7d27505e18c76987e290c1f8f54afff667 35280 
swi-prolog-table_5.6.55-1_i386.deb
 f8672a9a315ca779c24809ea00c87fa690b6240396e7c57f54eec64e94b5f338 32726 
swi-prolog-odbc_5.6.55-1_i386.deb
 cf5ca9412aa5265a19d68535cde67f72f062a9d17494f846314576445feceedb 2964494 
swi-prolog-xpce_5.6.55-1_i386.deb
Files: 
 d77ae05fc9218464791a616071b3e398 1406 interpreters optional 
swi-prolog_5.6.55-1.dsc
 5710bc10a72a285a4cdf55924b6987e0 11818376 interpreters optional 
swi-prolog_5.6.55.orig.tar.gz
 e2459704fb09e8f4a6b9ac6c21f30582 23389 interpreters optional 
swi-prolog_5.6.55-1.diff.gz
 d8ea542607165155627a544b688f5505 2404792 interpreters optional 
swi-prolog_5.6.55-1_i386.deb
 d14da2b93a00ff5c412d6e8bfdc635f6 97480 interpreters optional 
swi-prolog-clib_5.6.55-1_i386.deb
 7b4345fe7b07a3c25c833de51918cde0 75734 interpreters optional 
swi-prolog-http_5.6.55-1_i386.deb
 737047b3c108de5e4b64ec84f7952f95 133868 interpreters optional 
swi-prolog-semweb_5.6.55-1_i386.deb
 3f26d4058cca2275b5978a054682a47a 146376 interpreters optional 
swi-prolog-sgml_5.6.55-1_i386.deb
 c5bcdc9e3d00a2b4dc4618ee55aa4d9f 35280 interpreters optional 
swi-prolog-table_5.6.55-1_i386.deb
 0032cf7bbeade45c8f1b0a60bd9a20e2 32726 interpreters optional 
swi-prolog-odbc_5.6.55-1_i386.deb
 9994a58f98e23f6af0ee0c2f4b3b64b0 2964494 interpreters optional 
swi-prolog-xpce_5.6.55-1_i386.deb

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

iD8DBQFIKoCN+C5cwEsrK54RAvSwAKDXZIf3rcGbma/a3PlD2FE5AabecQCgrWvm
rRqxc0AhWEfd1IQWuUWzRk0=
=UHYR
-END PGP SIGNATURE-


Accepted:
swi-prolog-clib_5.6.55-1_i386.deb
  to pool/main/s/swi-prolog/swi-prolog-clib_5.6.55-1_i386.deb
swi-prolog-http_5.6.55-1_i386.deb
  to pool/main/s/swi-prolog/swi-prolog-http_5.6.55-1_i386.deb
swi-prolog-odbc_5.6.55-1_i386.deb
  to pool/main/s/swi-prolog/swi-prolog-odbc_5.6.55-1_i386.deb
swi-prolog-semweb_5.6.55-1_i386.deb
  to pool/main/s/swi-prolog/swi-prolog-semweb_5.6.55-1_i386.deb
swi-prolog-sgml_5.6.55-1_i386.deb
  to pool/main/s/swi-prolog/swi-prolog-sgml_5.6.55-1_i386.deb
swi-prolog-table_5.6.55-1_i386.deb
  to 

Accepted gupnp 0.10-1 (source i386)

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

Format: 1.8
Date: Tue, 13 May 2008 17:49:27 +0100
Source: gupnp
Binary: libgupnp-1.0-0 libgupnp-1.0-dev libgupnp-1.0-dbg libgupnp-doc
Architecture: source i386
Version: 0.10-1
Distribution: unstable
Urgency: low
Maintainer: Ross Burton [EMAIL PROTECTED]
Changed-By: Ross Burton [EMAIL PROTECTED]
Description: 
 libgupnp-1.0-0 - GObject-based library for UPnP
 libgupnp-1.0-dbg - GObject-based library for UPnP (debug symbols)
 libgupnp-1.0-dev - GObject-based library for UPnP (development files)
 libgupnp-doc - GObject-based library for UPnP (documentation)
Changes: 
 gupnp (0.10-1) unstable; urgency=low
 .
   * New upstream release
 - Update build depends
   * Add useful packages to recommends for -doc and -dbg
   * Don't use $(Source-Version)
Checksums-Sha1: 
 a9f79306b089e2933b711d100dc04dd56d5ea3c6 1082 gupnp_0.10-1.dsc
 01b177e4189c3a48492660794efc34cd641e141e 482508 gupnp_0.10.orig.tar.gz
 5c91fd0be39cea88f25fa5ecf9b1e41477ae64bc 1937 gupnp_0.10-1.diff.gz
 77e7885d0087a7c26af30f85d865b61b7fc48dcb 62630 libgupnp-1.0-0_0.10-1_i386.deb
 7ccab59616add3f5c18b7643c8ee0b5bfb600f27 86186 libgupnp-1.0-dev_0.10-1_i386.deb
 c9813910915e22e774d15910132f0234e27fb0dd 124522 
libgupnp-1.0-dbg_0.10-1_i386.deb
 3544b0439ca221a7f664c9c74c1b04d31cfa816e 45014 libgupnp-doc_0.10-1_i386.deb
Checksums-Sha256: 
 84d55b4e463eafa8d307a5d5c168f1dc7b989f74bf33fc5370ec56a72784035b 1082 
gupnp_0.10-1.dsc
 2033153488eef9633e8e011e580bf1c36f847590c0c1d70ca4b1301b2e0f6d54 482508 
gupnp_0.10.orig.tar.gz
 11b7210e77a1754dcf255777c74fcf78038013e0f766d1edbf50233303dea0c0 1937 
gupnp_0.10-1.diff.gz
 0d90c2298908d57d8a4c3ed8c5e8f145644d3866d466b78b441f4abf63cb8158 62630 
libgupnp-1.0-0_0.10-1_i386.deb
 5297c73a4d307f0a7c2dac1d30c53c6334e935b4f1c0cf872330a5024a27e5ef 86186 
libgupnp-1.0-dev_0.10-1_i386.deb
 555971f4faff63e7aba820e7c87891bd91ea7619eef1c3ffbfe8be626cd35608 124522 
libgupnp-1.0-dbg_0.10-1_i386.deb
 0e1a3bddc72a722e28b44b987799a5cab3c5d6b73a28f50446811fcfd6330f3c 45014 
libgupnp-doc_0.10-1_i386.deb
Files: 
 eaddb1ba42bd36b643e79378a50d3785 1082 libs optional gupnp_0.10-1.dsc
 854240ebbf3b39c3ef6e5e914eea5217 482508 libs optional gupnp_0.10.orig.tar.gz
 ae091d9588cc18a85d0a57a6751a9c1f 1937 libs optional gupnp_0.10-1.diff.gz
 8672b8331c70034faa8d324bc8752845 62630 libs optional 
libgupnp-1.0-0_0.10-1_i386.deb
 2f92e00ebf7378a108624605903345a7 86186 libdevel optional 
libgupnp-1.0-dev_0.10-1_i386.deb
 9adbda73fc466a7b02b16c76f810570b 124522 libdevel extra 
libgupnp-1.0-dbg_0.10-1_i386.deb
 90ff7938f9366c775e98d0c4866a586d 45014 doc optional 
libgupnp-doc_0.10-1_i386.deb

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

iD8DBQFIKpSFLQnkR9C0M98RAqPfAJ9jKEiR6JfoA/WinLrIhh+ESVUSUACfd0j/
vMbhpSCWKmMS2Wjcqe/l+qE=
=MRtx
-END PGP SIGNATURE-


Accepted:
gupnp_0.10-1.diff.gz
  to pool/main/g/gupnp/gupnp_0.10-1.diff.gz
gupnp_0.10-1.dsc
  to pool/main/g/gupnp/gupnp_0.10-1.dsc
gupnp_0.10.orig.tar.gz
  to pool/main/g/gupnp/gupnp_0.10.orig.tar.gz
libgupnp-1.0-0_0.10-1_i386.deb
  to pool/main/g/gupnp/libgupnp-1.0-0_0.10-1_i386.deb
libgupnp-1.0-dbg_0.10-1_i386.deb
  to pool/main/g/gupnp/libgupnp-1.0-dbg_0.10-1_i386.deb
libgupnp-1.0-dev_0.10-1_i386.deb
  to pool/main/g/gupnp/libgupnp-1.0-dev_0.10-1_i386.deb
libgupnp-doc_0.10-1_i386.deb
  to pool/main/g/gupnp/libgupnp-doc_0.10-1_i386.deb


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



Accepted ca-certificates 20080514 (source all)

2008-05-14 Thread Philipp Kern
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 10:03:42 +0200
Source: ca-certificates
Binary: ca-certificates
Architecture: source all
Version: 20080514
Distribution: unstable
Urgency: medium
Maintainer: Fumitoshi UKAI [EMAIL PROTECTED]
Changed-By: Philipp Kern [EMAIL PROTECTED]
Description: 
 ca-certificates - Common CA certificates
Closes: 416470
Changes: 
 ca-certificates (20080514) unstable; urgency=medium
 .
   * Added the new SPI CA certificate, created in response to the latest
 openssl security update.
   * Removed old SPI CA certificates (2006, 2007) as CAs cannot be
 revoked sensibly.  Expired CA created in 2003, expired in 2007 left
 around for reference.
   * Updated the Galician translation, thanks to Glennie Vignarajah.
 (Closes: #416470)
Checksums-Sha1: 
 06114952c949f42e535348a15b5620e886d8f089 826 ca-certificates_20080514.dsc
 b2cced07aaee0119c8d1447c92df64d25f24889d 216891 ca-certificates_20080514.tar.gz
 bd57482384021fde7a06633621b997c95f7adae3 148000 
ca-certificates_20080514_all.deb
Checksums-Sha256: 
 3b2a7db30806934ef1d4789da98640955fbb4cac04f39593dd612831fe7b 826 
ca-certificates_20080514.dsc
 6b0922de642cd56010e6110324431c2a63a333d92b3794edf749fa4e51e47a30 216891 
ca-certificates_20080514.tar.gz
 213108ec10415ec701fb915ce0f4bee1497a57b3d092254a3f34106b6d34971b 148000 
ca-certificates_20080514_all.deb
Files: 
 71734d9363a99d86c97ab05a13dd04c9 826 misc optional ca-certificates_20080514.dsc
 25ca8aba089ffeb6d5051eee0027b427 216891 misc optional 
ca-certificates_20080514.tar.gz
 58c48fde9048759776daa5e4a24fff99 148000 misc optional 
ca-certificates_20080514_all.deb

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

iD8DBQFIKqCD7Ro5M7LPzdgRAjtQAKCPjelNwE6zgzdpSNHwcCGjEy3pCQCfeWJz
XP3BSs3mIHyqTIQ5C84f6m8=
=byip
-END PGP SIGNATURE-


Accepted:
ca-certificates_20080514.dsc
  to pool/main/c/ca-certificates/ca-certificates_20080514.dsc
ca-certificates_20080514.tar.gz
  to pool/main/c/ca-certificates/ca-certificates_20080514.tar.gz
ca-certificates_20080514_all.deb
  to pool/main/c/ca-certificates/ca-certificates_20080514_all.deb


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



Accepted kdepimlibs 4:4.0.73+svn806192-1 (source all amd64)

2008-05-14 Thread Debian Qt/KDE Maintainers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 10 May 2008 21:48:16 +0300
Source: kdepimlibs
Binary: kdepimlibs5 kdepimlibs-data kdepimlibs5-dev kdepimlibs-dbg
Architecture: source all amd64
Version: 4:4.0.73+svn806192-1
Distribution: experimental
Urgency: low
Maintainer: Fathi Boudra [EMAIL PROTECTED]
Changed-By: Debian Qt/KDE Maintainers [EMAIL PROTECTED]
Description: 
 kdepimlibs-data - core shared data for KDE PIM 4 applications
 kdepimlibs-dbg - debugging symbols for the KDE 4 PIM libraries
 kdepimlibs5 - core libraries for KDE PIM 4 applications
 kdepimlibs5-dev - development files for the KDE 4 PIM libraries
Changes: 
 kdepimlibs (4:4.0.73+svn806192-1) experimental; urgency=low
 .
   * New upstream development snapshot:
 - The latest upstream commit is r806192 by winterz
 - Date: Sat, 10 May 2008 18:44:24 -
 .
   +++ Changes by Modestas Vainius:
 .
   * Build depend on akonadi = 0.80.0+svn804999.
   * Revert my previous change which made kdelibs5-dev dep of the
 kdepimlibs5-dev package unversioned. Instead use a special substvar
 (handled by debian/cdbs/dh_sameversiondeps) which versions kdelibs5-dev
 in the same way as kdelibs5 dependency is versioned for kdepimlibs5.
Checksums-Sha1: 
 d8f121d768c9ff6c02ed365ff6fe168511f5733f 1813 kdepimlibs_4.0.73+svn806192-1.dsc
 a0e9814b1361e393c2b9da5a8517372ca38612fb 2357177 
kdepimlibs_4.0.73+svn806192.orig.tar.gz
 ab5d5cd3222c01310bb87e6d7d46ab45f830b677 103746 
kdepimlibs_4.0.73+svn806192-1.diff.gz
 d2d1c3a9804b3552303ed02e2cfc3af841283a8b 158368 
kdepimlibs-data_4.0.73+svn806192-1_all.deb
 a2263768e16dd55312f060d6cee27ee178616710 2644960 
kdepimlibs5_4.0.73+svn806192-1_amd64.deb
 75cc50521ba4a3beb2f3988c58ddfd6b5cf61343 326862 
kdepimlibs5-dev_4.0.73+svn806192-1_amd64.deb
 bb377c8aa42851409bf0bacf7bd68dd67469cee1 16785966 
kdepimlibs-dbg_4.0.73+svn806192-1_amd64.deb
Checksums-Sha256: 
 55d859d4ed91dd07b33778cfc2e0ac9c9f6f53c013222da4a2b78859e0977a5a 1813 
kdepimlibs_4.0.73+svn806192-1.dsc
 5f2ebd3f19113551db40bfaf35d9c5760bb16991966e68ce788c96d56d234f13 2357177 
kdepimlibs_4.0.73+svn806192.orig.tar.gz
 dc5deeefcb70cc452365a3bce9c8a0bce44d0eaf781c8153ed783e7bef2b686c 103746 
kdepimlibs_4.0.73+svn806192-1.diff.gz
 0f639a2b2e404235935d237343d0b2490a4c045d8bf008a93a4949a73e8ecd13 158368 
kdepimlibs-data_4.0.73+svn806192-1_all.deb
 11174fb15398435ae4e1236d8d61c75f2e29ac11f7bac9f9a60222d15867ac36 2644960 
kdepimlibs5_4.0.73+svn806192-1_amd64.deb
 0ca0fb25aa395bb651b7dde89fc197a6716f908a91a4fdd5befb95de72e06080 326862 
kdepimlibs5-dev_4.0.73+svn806192-1_amd64.deb
 b3a738f4814d3aafe0e67f6c7387764987c2f953479e0b785593fdfe94798b9c 16785966 
kdepimlibs-dbg_4.0.73+svn806192-1_amd64.deb
Files: 
 6dce95327e03479035bf33a053c1e85f 1813 libs optional 
kdepimlibs_4.0.73+svn806192-1.dsc
 f46bf9e312e07e44cb5a47568ca3299a 2357177 libs optional 
kdepimlibs_4.0.73+svn806192.orig.tar.gz
 0372ec22f0a56952df52836bcd50b57d 103746 libs optional 
kdepimlibs_4.0.73+svn806192-1.diff.gz
 eb664bac7351914663e283c7c34c8a16 158368 libs optional 
kdepimlibs-data_4.0.73+svn806192-1_all.deb
 6e0d9ec51c7a63de8f8063d61551095f 2644960 libs optional 
kdepimlibs5_4.0.73+svn806192-1_amd64.deb
 e292853f5903f7719331909859c9fb55 326862 libdevel optional 
kdepimlibs5-dev_4.0.73+svn806192-1_amd64.deb
 f451bdfdeb84560582dde6ccdad5802c 16785966 libdevel extra 
kdepimlibs-dbg_4.0.73+svn806192-1_amd64.deb

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

iQCVAwUBSCqpPYz1NfZqpXL3AQKGIgP/VEmeDgCPVhgtCn1HsfV720UmLqPDWcLU
+Umj0LHO9OzWWU/meBWgV0rLU9QXuD9AYPDL+Dg3b1deN/qvUQmEqcqIbs4XMpZT
MFuYEZvJqLLzrc51VMxnvhANFtZebv34MtHc+KWkuGK+bBtGzrtgOIX52A5/RoJ2
hDOUFMaRtis=
=YjFE
-END PGP SIGNATURE-


Accepted:
kdepimlibs-data_4.0.73+svn806192-1_all.deb
  to pool/main/k/kdepimlibs/kdepimlibs-data_4.0.73+svn806192-1_all.deb
kdepimlibs-dbg_4.0.73+svn806192-1_amd64.deb
  to pool/main/k/kdepimlibs/kdepimlibs-dbg_4.0.73+svn806192-1_amd64.deb
kdepimlibs5-dev_4.0.73+svn806192-1_amd64.deb
  to pool/main/k/kdepimlibs/kdepimlibs5-dev_4.0.73+svn806192-1_amd64.deb
kdepimlibs5_4.0.73+svn806192-1_amd64.deb
  to pool/main/k/kdepimlibs/kdepimlibs5_4.0.73+svn806192-1_amd64.deb
kdepimlibs_4.0.73+svn806192-1.diff.gz
  to pool/main/k/kdepimlibs/kdepimlibs_4.0.73+svn806192-1.diff.gz
kdepimlibs_4.0.73+svn806192-1.dsc
  to pool/main/k/kdepimlibs/kdepimlibs_4.0.73+svn806192-1.dsc
kdepimlibs_4.0.73+svn806192.orig.tar.gz
  to pool/main/k/kdepimlibs/kdepimlibs_4.0.73+svn806192.orig.tar.gz


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



Accepted widelands 1:12-3 (source all amd64)

2008-05-14 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 10:25:05 +0200
Source: widelands
Binary: widelands widelands-data widelands-dbg
Architecture: source all amd64
Version: 1:12-3
Distribution: unstable
Urgency: low
Maintainer: Martin Quinson [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 widelands  - fantasy real-time strategy game
 widelands-data - fantasy real-time strategy game (data files)
 widelands-dbg - fantasy real-time strategy game (debug cruft)
Changes: 
 widelands (1:12-3) unstable; urgency=low
 .
   * fixed previous patch that was using the incriminated flag only on
 arm and armel
Checksums-Sha1: 
 a1adcc07ab719b71d330cdcc2351b8b446f0e2bb 1348 widelands_12-3.dsc
 874b6a975e8924abcb0fd7874eefa1d38b81e7a5 10663 widelands_12-3.diff.gz
 80de950f43072f01c21e9496d1aea47160fba63d 43067296 widelands-data_12-3_all.deb
 1a40939efe201480fffb0b8d170e16070812acff 1490558 widelands_12-3_amd64.deb
 c77655417b80d9662c186a33e40d51a3801035a6 147578 widelands-dbg_12-3_amd64.deb
Checksums-Sha256: 
 2fe84ef36abda8da960e4ea581b8da4feb52fee7b0eb9a8ac9db9ed22e776ad2 1348 
widelands_12-3.dsc
 0e909134c155f48e8bd37cbd5aa72c0a1910d2912f51429add3d27f8a0afbcc6 10663 
widelands_12-3.diff.gz
 cc3b7716952548df0146643f595752b646093c54c1ebc5576598a8e530716f5f 43067296 
widelands-data_12-3_all.deb
 cc129f2e0c3f55a6621afe97db346f453c686adeea79a7a6ca20ea5112d3ee06 1490558 
widelands_12-3_amd64.deb
 e1bfcf82c78ae5bbaf6d8ccd60dacaaa389627e330b242398237e743215c52a3 147578 
widelands-dbg_12-3_amd64.deb
Files: 
 b4038186484edecaeaa501799141c421 1348 games extra widelands_12-3.dsc
 3fb8eb8ce65e84e9cc3eafdfa17da318 10663 games extra widelands_12-3.diff.gz
 e889e27193eb3b101d587e037c27b32b 43067296 games extra 
widelands-data_12-3_all.deb
 fabb40ee2c37f903583af03f7f69c19e 1490558 games extra widelands_12-3_amd64.deb
 93443d5c6fd781484ce92cddb2ef955e 147578 games extra 
widelands-dbg_12-3_amd64.deb

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

iD8DBQFIKqq57kkcPgEj8vIRAlvWAJ4w4W9mH7SUmRtn5xmqc02pUq8ouACfcE1F
Vv07qQkJxT8IN5UsgRLo/i8=
=f8J6
-END PGP SIGNATURE-


Accepted:
widelands-data_12-3_all.deb
  to pool/main/w/widelands/widelands-data_12-3_all.deb
widelands-dbg_12-3_amd64.deb
  to pool/main/w/widelands/widelands-dbg_12-3_amd64.deb
widelands_12-3.diff.gz
  to pool/main/w/widelands/widelands_12-3.diff.gz
widelands_12-3.dsc
  to pool/main/w/widelands/widelands_12-3.dsc
widelands_12-3_amd64.deb
  to pool/main/w/widelands/widelands_12-3_amd64.deb


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



Accepted luarocks 0.5.2-1 (source all)

2008-05-14 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 11:55:11 +0200
Source: luarocks
Binary: luarocks
Architecture: source all
Version: 0.5.2-1
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 luarocks   - deployment and management system for Lua modules
Changes: 
 luarocks (0.5.2-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 fc5e99bf558dab7cf2da0e050a590a737faa9eee 1162 luarocks_0.5.2-1.dsc
 494c96944a9f6ab8d515fe4d6c15f661fafbf242 46590 luarocks_0.5.2.orig.tar.gz
 f04a2e1eaddaa2956a725fa388eb4e772e4680fa 3211 luarocks_0.5.2-1.diff.gz
 2f488351f1313487b81a665832a470494ac71d4a 72982 luarocks_0.5.2-1_all.deb
Checksums-Sha256: 
 6784d1245915653ed8e9b6c196bb6158fb676da3436f52c9d804eb1c9aee077b 1162 
luarocks_0.5.2-1.dsc
 ea625db82b617c72e296a3da9e3e8933ab0a48a58ea93e4a6d17112dd9095f36 46590 
luarocks_0.5.2.orig.tar.gz
 f83588924172ed3a4ccbeead994b76158dc10f1668e0d587d99ce2f1ceacabcd 3211 
luarocks_0.5.2-1.diff.gz
 372462f33ef459ec9c663587e55041afea46c0726e8a749b55dcc726f622a8fc 72982 
luarocks_0.5.2-1_all.deb
Files: 
 c8dd6baa1646410037c57123f1d09fff 1162 interpreters optional 
luarocks_0.5.2-1.dsc
 e6edae6c667480d921f49ddda8cb63fc 46590 interpreters optional 
luarocks_0.5.2.orig.tar.gz
 56be8898ec56c346f286917d71675b64 3211 interpreters optional 
luarocks_0.5.2-1.diff.gz
 ec6471f53dd5dddb3b6743f651d01d6e 72982 interpreters optional 
luarocks_0.5.2-1_all.deb

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

iD8DBQFIKrgQ7kkcPgEj8vIRAgB0AKCbKuxy0L360Jv5wc1dNDh4iKOZ8gCfXRlT
LymvLPGRRmfNObSoDQr2K7I=
=x0gG
-END PGP SIGNATURE-


Accepted:
luarocks_0.5.2-1.diff.gz
  to pool/main/l/luarocks/luarocks_0.5.2-1.diff.gz
luarocks_0.5.2-1.dsc
  to pool/main/l/luarocks/luarocks_0.5.2-1.dsc
luarocks_0.5.2-1_all.deb
  to pool/main/l/luarocks/luarocks_0.5.2-1_all.deb
luarocks_0.5.2.orig.tar.gz
  to pool/main/l/luarocks/luarocks_0.5.2.orig.tar.gz


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



Accepted lyx 1.5.5-1 (source all i386)

2008-05-14 Thread Per Olofsson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 10:48:56 +0200
Source: lyx
Binary: lyx lyx-common
Architecture: source all i386
Version: 1.5.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian LyX Maintainers [EMAIL PROTECTED]
Changed-By: Per Olofsson [EMAIL PROTECTED]
Description: 
 lyx- Document Processor
 lyx-common - Architecture-independent files for LyX
Changes: 
 lyx (1.5.5-1) unstable; urgency=low
 .
   [ Sven Hoexter ]
   * New upstream release
 + Removed patches/qt_44_crash_fix.
Checksums-Sha1: 
 df029e14e027753981dc02185416138a414289b7 1490 lyx_1.5.5-1.dsc
 f6550fdf52d68883586380975aef07751f1941b0 11769032 lyx_1.5.5.orig.tar.gz
 92ae10a10dbc9de2e48744e37e8c9a97f7edb3be 21900 lyx_1.5.5-1.diff.gz
 74843b86de9ed037402f89f94f63a3fff8e4c32c 4592686 lyx-common_1.5.5-1_all.deb
 15ecf45944956bab315c9e38ba5c30bc8f0de2fe 2752210 lyx_1.5.5-1_i386.deb
Checksums-Sha256: 
 c935bf4613f0c32a96f41251b89b406ae4d7a2639fb51af0638922ee5d9ee288 1490 
lyx_1.5.5-1.dsc
 9af23594b52b53a08c581fff91938d14d5b7526fac7f122bca7efc6532ae78a9 11769032 
lyx_1.5.5.orig.tar.gz
 69ad044893cc99c0af57e8d6c742d63b70ad08396eef8aef133e59b93ce120c5 21900 
lyx_1.5.5-1.diff.gz
 b241c6be8b1fb61f498b44c10c8d25502cf86563f925f5b8284e72395088796b 4592686 
lyx-common_1.5.5-1_all.deb
 b3bea095e7b0f3919e5bfd8b541ca1735b08d1d81e5d998ed98dd7bb7089854a 2752210 
lyx_1.5.5-1_i386.deb
Files: 
 ec9eb51d48b71da834877362b0c50ed8 1490 editors optional lyx_1.5.5-1.dsc
 75317d358f68b65e2dd954b7e28ca6d9 11769032 editors optional 
lyx_1.5.5.orig.tar.gz
 ad196113ee18e831e639bda106c4d8f7 21900 editors optional lyx_1.5.5-1.diff.gz
 f6515be221b182cc1210f904d8f190c7 4592686 editors optional 
lyx-common_1.5.5-1_all.deb
 a6a36325530f7b682ecf0b35b3b64139 2752210 editors optional lyx_1.5.5-1_i386.deb

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

iD8DBQFIKrd5eDAsS42/7C8RAhh0AJ4nmFCEBfw66DLyXhLY7bbeEii8gwCdGYjk
tmH+wYMbfl7wTyU08RkqwgM=
=9JYA
-END PGP SIGNATURE-


Accepted:
lyx-common_1.5.5-1_all.deb
  to pool/main/l/lyx/lyx-common_1.5.5-1_all.deb
lyx_1.5.5-1.diff.gz
  to pool/main/l/lyx/lyx_1.5.5-1.diff.gz
lyx_1.5.5-1.dsc
  to pool/main/l/lyx/lyx_1.5.5-1.dsc
lyx_1.5.5-1_i386.deb
  to pool/main/l/lyx/lyx_1.5.5-1_i386.deb
lyx_1.5.5.orig.tar.gz
  to pool/main/l/lyx/lyx_1.5.5.orig.tar.gz


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



Accepted lua-md5 1.1.2-1 (source amd64)

2008-05-14 Thread Enrico Tassi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 11:29:50 +0200
Source: lua-md5
Binary: liblua5.1-md5-0 liblua5.1-md5-dev
Architecture: source amd64
Version: 1.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Enrico Tassi [EMAIL PROTECTED]
Changed-By: Enrico Tassi [EMAIL PROTECTED]
Description: 
 liblua5.1-md5-0 - MD5 library for the lua language version 5.1
 liblua5.1-md5-dev - MD5 library for the lua language version 5.1
Changes: 
 lua-md5 (1.1.2-1) unstable; urgency=low
 .
   * new upstream release (minor bugfixing)
   * removed patch stdint (integrated upstream)
Checksums-Sha1: 
 915c8fc18cf3bd108865ec499c11195b15803701 1183 lua-md5_1.1.2-1.dsc
 f6c2ee21faf94c6ee95fc767ef2fdf0cf0382dc9 29768 lua-md5_1.1.2.orig.tar.gz
 a6f1bd1b07982bcbeb074e7109e1d1fc106e6074 2568 lua-md5_1.1.2-1.diff.gz
 06dec82f56c64ffddb2b8d43d20f4c230d7283f1 11932 
liblua5.1-md5-0_1.1.2-1_amd64.deb
 bcc2b2ebead5665d90e1c367b93ba83d158ce2b2 20644 
liblua5.1-md5-dev_1.1.2-1_amd64.deb
Checksums-Sha256: 
 c2102321fddd52d0db69b3faa1c29094442945072e86d33b1ac43323477c7545 1183 
lua-md5_1.1.2-1.dsc
 d1cb5270f71eef509d47f092cee6fbb7fda42af596a0db6728da1cea78616826 29768 
lua-md5_1.1.2.orig.tar.gz
 6fd100b7b9c4d9c55c42e1c4d69ae4c8f3d31f03ea3f522fa7378fe6806cbb07 2568 
lua-md5_1.1.2-1.diff.gz
 49bb305e9f672d571fa8fd690cdce2957aa478dde175730309c0a29e9fe010d7 11932 
liblua5.1-md5-0_1.1.2-1_amd64.deb
 edb0e1613078a3b78ece557371091f47ce31a34e0f612da1d96adc10a7b8b09c 20644 
liblua5.1-md5-dev_1.1.2-1_amd64.deb
Files: 
 3513a07dbed30279009b474f5700b986 1183 interpreters optional lua-md5_1.1.2-1.dsc
 68874cff64547f2157d5ecdc3572b544 29768 interpreters optional 
lua-md5_1.1.2.orig.tar.gz
 7ad33ffde5e9f9098a98f66f957a08f2 2568 interpreters optional 
lua-md5_1.1.2-1.diff.gz
 ab6a7ce0cbcc89a3e2008964c5429880 11932 libs optional 
liblua5.1-md5-0_1.1.2-1_amd64.deb
 a3774473eaec6ff768735295a5f78070 20644 libdevel optional 
liblua5.1-md5-dev_1.1.2-1_amd64.deb

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

iD8DBQFIKraE7kkcPgEj8vIRAnNOAKCt2n+S/LsPuJmmSTfJVSwn8KUKYACffOSd
QKGowHrKtNWE9Q3kOfE7I28=
=KTvu
-END PGP SIGNATURE-


Accepted:
liblua5.1-md5-0_1.1.2-1_amd64.deb
  to pool/main/l/lua-md5/liblua5.1-md5-0_1.1.2-1_amd64.deb
liblua5.1-md5-dev_1.1.2-1_amd64.deb
  to pool/main/l/lua-md5/liblua5.1-md5-dev_1.1.2-1_amd64.deb
lua-md5_1.1.2-1.diff.gz
  to pool/main/l/lua-md5/lua-md5_1.1.2-1.diff.gz
lua-md5_1.1.2-1.dsc
  to pool/main/l/lua-md5/lua-md5_1.1.2-1.dsc
lua-md5_1.1.2.orig.tar.gz
  to pool/main/l/lua-md5/lua-md5_1.1.2.orig.tar.gz


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



Accepted prayer 1.1.0-1 (source i386)

2008-05-14 Thread Magnus Holmgren
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 13 May 2008 22:31:36 +0200
Source: prayer
Binary: prayer prayer-accountd
Architecture: source i386
Version: 1.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Magnus Holmgren [EMAIL PROTECTED]
Changed-By: Magnus Holmgren [EMAIL PROTECTED]
Description: 
 prayer - Standalone IMAP-based webmail server
 prayer-accountd - account management daemon for Prayer
Closes: 440462
Changes: 
 prayer (1.1.0-1) unstable; urgency=low
 .
   * First upload to unstable.
   * New upstream release.
 + Requires development version of the c-client library 
(libc-client2007-dev).
 - Drop pidfiles_extension.patch, session_unix_bugs.patch,
   session_server_bugs.patch; all incorporated upstream.
 - Drop ipv6.patch; incorporated upstream.
 - Drop utf8.patch; incorporated and improved upstream.
 - Drop hasnochildren_means_noinferiors.patch since upstream now
   handles dual-use mailboxes.
   * New maintainer email address.
   * Update README.Debian, removing lies about TLS not being possible to
 disable (Closes: #440462).
   * folder_list_cosmetics.patch: Remove space between expand/collapse
 arrow and folder icon in the folder list and change the alt texts so
 that the tree looks nicer in text browsers.
Checksums-Sha1: 
 fffe565f41710fc7afbac73042c98bc31a07df80 1159 prayer_1.1.0-1.dsc
 116989c3c6f2f93d0dc34c667bd130e5feaf9900 576023 prayer_1.1.0.orig.tar.gz
 420372b9f350ff8d9068de688cb4e6636e7ce117 13454 prayer_1.1.0-1.diff.gz
 782752716fe16ceb80a82ec3377a27022f336899 522830 prayer_1.1.0-1_i386.deb
 1feb893d9dc0eeabd6955978c0a31e6e963c1002 91104 prayer-accountd_1.1.0-1_i386.deb
Checksums-Sha256: 
 1cfd7160525457b45ecbf1d76b3ea433fdb8b144063ebd5205c7b6eb897e46e5 1159 
prayer_1.1.0-1.dsc
 4cff355aa3847aa8c0816d2be433567eb106f2cd031b4606323bdbe37d2698bd 576023 
prayer_1.1.0.orig.tar.gz
 e71ca8ae61d12ef3fe2019c90b72d030878fa95546a85027e40dd504935aa138 13454 
prayer_1.1.0-1.diff.gz
 432e8dd3c067eff88325d207103102d23364b5310890ebabd76b13849fcd5091 522830 
prayer_1.1.0-1_i386.deb
 6caa86db02607367130e01a2eb9537d70840b632568b63b8aa9b7157fce02c0f 91104 
prayer-accountd_1.1.0-1_i386.deb
Files: 
 3f8d90b5d8bf7440d4a33fcb77ef8754 1159 mail optional prayer_1.1.0-1.dsc
 3a65b0db709146a160a5dc23510c767a 576023 mail optional prayer_1.1.0.orig.tar.gz
 1f7b85abf290679b7aaeb96c6319fc03 13454 mail optional prayer_1.1.0-1.diff.gz
 7b92077db0f7342e75697792c3477183 522830 mail optional prayer_1.1.0-1_i386.deb
 9a5bfe9c0e42aee549c2016a7215291f 91104 mail optional 
prayer-accountd_1.1.0-1_i386.deb

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

iD8DBQFIKn9Ck7mRNn1h4+YRAqCTAJ9suB5mGcw9xYJ0LQ6xVHJpzuTAuwCePzB+
D4k0TUmwWOpvIqCmUfHg78U=
=5ekv
-END PGP SIGNATURE-


Accepted:
prayer-accountd_1.1.0-1_i386.deb
  to pool/main/p/prayer/prayer-accountd_1.1.0-1_i386.deb
prayer_1.1.0-1.diff.gz
  to pool/main/p/prayer/prayer_1.1.0-1.diff.gz
prayer_1.1.0-1.dsc
  to pool/main/p/prayer/prayer_1.1.0-1.dsc
prayer_1.1.0-1_i386.deb
  to pool/main/p/prayer/prayer_1.1.0-1_i386.deb
prayer_1.1.0.orig.tar.gz
  to pool/main/p/prayer/prayer_1.1.0.orig.tar.gz


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



Accepted boinc 5.10.45-3 (source i386)

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

Format: 1.8
Date: Wed, 14 May 2008 12:12:06 +0200
Source: boinc
Binary: boinc-client boinc-manager boinc-dev boinc-dbg
Architecture: source i386
Version: 5.10.45-3
Distribution: unstable
Urgency: low
Maintainer: Debian BOINC Maintainers [EMAIL PROTECTED]
Changed-By: Frank S. Thomas [EMAIL PROTECTED]
Description: 
 boinc-client - core client for the BOINC distributed computing infrastructure
 boinc-dbg  - debugging symbols for BOINC binaries
 boinc-dev  - development files to build applications for BOINC projects
 boinc-manager - GUI to control and monitor the BOINC core client
Changes: 
 boinc (5.10.45-3) unstable; urgency=low
 .
   [ Daniel Hahler ]
   * debian/boinc-client.init:
 Do not fail, if ionice/ioprio_set is not allowed (LP: #218468)
Checksums-Sha1: 
 fc4247ec00877d0e8e6ed925fb2f95a980f55f25 1629 boinc_5.10.45-3.dsc
 e00b450beb9d5c4fc80fd654bb47f67130db453e 56703 boinc_5.10.45-3.diff.gz
 72dc81dfe15d892cd820807548ade8dd6bb0f417 347424 boinc-client_5.10.45-3_i386.deb
 80c24f39444e8d00f12fc2dbec75e6a22e6da314 1771108 
boinc-manager_5.10.45-3_i386.deb
 71d529e82395d15be7f3d1ee752a0c879f2a046f 391388 boinc-dev_5.10.45-3_i386.deb
 7a564715fbcdf9f37994a89fcbabf6b42c11e033 7065734 boinc-dbg_5.10.45-3_i386.deb
Checksums-Sha256: 
 809ad9ca7c032fbec2cab17ead87ac945696933a6b66926b9954339b8dc3f628 1629 
boinc_5.10.45-3.dsc
 a3886abe20c9f13f0302b4956915922c6f41cb0253528634cf38ad022bacf9f1 56703 
boinc_5.10.45-3.diff.gz
 26c747c2efb0e5e26a420b3aa6f604e7b49976aa61bcd443c4bdfc48dd9c84aa 347424 
boinc-client_5.10.45-3_i386.deb
 bd3526133e01515e238725d1d92f71a880b7fc3e6f3fd525d484858a051aee4c 1771108 
boinc-manager_5.10.45-3_i386.deb
 1ec73cececa6067c93bc22c3e3bcf8311bc2402f02470e550ed0e3feb0e2d5e7 391388 
boinc-dev_5.10.45-3_i386.deb
 d8488bc43b3c6609a3d11de8bdd4fd4ed429c0abf21364e35c68de4d6954ad66 7065734 
boinc-dbg_5.10.45-3_i386.deb
Files: 
 83e8939b6cafeb4514d1692e3779f99d 1629 net optional boinc_5.10.45-3.dsc
 09c9f0f2a8ea54aaa424d54d94c531e6 56703 net optional boinc_5.10.45-3.diff.gz
 5c00c1402931964ca2b5bc3d9bb5c5a6 347424 net optional 
boinc-client_5.10.45-3_i386.deb
 07da2be6b4b21c5a3accdd684b4a3e33 1771108 x11 optional 
boinc-manager_5.10.45-3_i386.deb
 5140dea44ff8fd0ebdab8957af5245b3 391388 devel optional 
boinc-dev_5.10.45-3_i386.deb
 eea851f2f409eafa4249708cab24fc81 7065734 devel extra 
boinc-dbg_5.10.45-3_i386.deb

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

iD8DBQFIKs1mft6HNdxCZCkRAgvGAJ9ZfD6dBH/JG8k5lXmeOwzR6vxy0QCfWg0N
cFmII0lp5hZ+XUqG2zwwZ6g=
=cxea
-END PGP SIGNATURE-


Accepted:
boinc-client_5.10.45-3_i386.deb
  to pool/main/b/boinc/boinc-client_5.10.45-3_i386.deb
boinc-dbg_5.10.45-3_i386.deb
  to pool/main/b/boinc/boinc-dbg_5.10.45-3_i386.deb
boinc-dev_5.10.45-3_i386.deb
  to pool/main/b/boinc/boinc-dev_5.10.45-3_i386.deb
boinc-manager_5.10.45-3_i386.deb
  to pool/main/b/boinc/boinc-manager_5.10.45-3_i386.deb
boinc_5.10.45-3.diff.gz
  to pool/main/b/boinc/boinc_5.10.45-3.diff.gz
boinc_5.10.45-3.dsc
  to pool/main/b/boinc/boinc_5.10.45-3.dsc


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



Accepted octave-zenity 0.5.5-1 (source all)

2008-05-14 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 13:59:20 +0200
Source: octave-zenity
Binary: octave-zenity
Architecture: source all
Version: 0.5.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Thomas Weber [EMAIL PROTECTED]
Description: 
 octave-zenity - simple graphical user interfaces using zenity in Octave
Changes: 
 octave-zenity (0.5.5-1) unstable; urgency=low
 .
   [ Ólafur Jens Sigurðsson ]
   * New upstream version
Checksums-Sha1: 
 7bbafeb77e9b6ac29f4e7b03a47587b34b872eb7 1416 octave-zenity_0.5.5-1.dsc
 67553b7e02d7c8202b475995710ff6bf4c6c36c4 27000 octave-zenity_0.5.5.orig.tar.gz
 cf2588da47def39b774662f1e92d8ffe43337182 1197 octave-zenity_0.5.5-1.diff.gz
 4c41f0dcc623cbd185cc141fce3cf5c80e5c4ba4 21312 octave-zenity_0.5.5-1_all.deb
Checksums-Sha256: 
 e6c8496e35024cfec4dbfe534742073624a7b80da0594408d5ae30b21de5b271 1416 
octave-zenity_0.5.5-1.dsc
 291905fa990b75b9a6b988027826c644d8ec4edeefd8add26256652e747dd9dc 27000 
octave-zenity_0.5.5.orig.tar.gz
 9457fff815dd6c16c35ff133299d19c73ae54240fa6a04ab5936cd378ecc42ff 1197 
octave-zenity_0.5.5-1.diff.gz
 5f3304c8915b36ac6208983085b871db2e693c625e64a1758cc53bdf162fdd62 21312 
octave-zenity_0.5.5-1_all.deb
Files: 
 9aa3d8382836489e94700120b368f3b8 1416 math optional octave-zenity_0.5.5-1.dsc
 822ab75e0522d3a151c41f2c62c92d61 27000 math optional 
octave-zenity_0.5.5.orig.tar.gz
 29f9da31f3335e821541e79b90eb4bf7 1197 math optional 
octave-zenity_0.5.5-1.diff.gz
 2842fc62c7ba9d79a00dc01381740a82 21312 math optional 
octave-zenity_0.5.5-1_all.deb

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

iD8DBQFIKtX7PqD4a3lPnXwRAj27AJkBJmmwsN2eHzH/FenC68i85SYETQCeLJoz
eef5lgWS9xT5fDEy75XVs6g=
=KdvO
-END PGP SIGNATURE-


Accepted:
octave-zenity_0.5.5-1.diff.gz
  to pool/main/o/octave-zenity/octave-zenity_0.5.5-1.diff.gz
octave-zenity_0.5.5-1.dsc
  to pool/main/o/octave-zenity/octave-zenity_0.5.5-1.dsc
octave-zenity_0.5.5-1_all.deb
  to pool/main/o/octave-zenity/octave-zenity_0.5.5-1_all.deb
octave-zenity_0.5.5.orig.tar.gz
  to pool/main/o/octave-zenity/octave-zenity_0.5.5.orig.tar.gz


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



Accepted gstreamermm 0.9.5-1 (source all i386)

2008-05-14 Thread Deng Xiyue
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 12 May 2008 21:59:11 +0800
Source: gstreamermm
Binary: libgstreamermm-0.10-2 libgstreamermm-0.10-dev libgstreamermm-0.10-dbg 
libgstreamermm-0.10-doc
Architecture: source all i386
Version: 0.9.5-1
Distribution: experimental
Urgency: low
Maintainer: Deng Xiyue [EMAIL PROTECTED]
Changed-By: Deng Xiyue [EMAIL PROTECTED]
Description: 
 libgstreamermm-0.10-2 - C++ wrapper library for the multimedia library 
GStreamer (shared 
 libgstreamermm-0.10-dbg - C++ wrapper library for the multimedia library 
GStreamer (debug s
 libgstreamermm-0.10-dev - C++ wrapper library for the multimedia library 
GStreamer (develop
 libgstreamermm-0.10-doc - C++ wrapper library for the multimedia library 
GStreamer (documen
Changes: 
 gstreamermm (0.9.5-1) experimental; urgency=low
 .
   * New upstream development release.
 - Drop 10_copyright_fix_from_svn1365.patch, fixed upstream.
 + Add libgstreamer-plugins-base0.10-dev = 0.10.15 to (build-)depends.
 + Bump shlibs version to 0.9.5 due to new API addition.
   * Use a more universal syntax for soname in the sed to get
 $(SHARED_PKG), and drop `head -n 1' part.
   * Suggests -dbg in shared library.
   * Add `DM-Upload-Allowed: yes'.
   * Add dpkg-dev = 1.14.16 to Build-Depends for DM usage.
   * Remove doc-base from Build-Depends as it's not b-deped on.
   * Add ${shlibs:Depends} to all Depends as recommended.
   * Fix doc-base section to Programming/C++.
Checksums-Sha1: 
 04c44fce2757e9c1b9b78f04dbced4e10be7578e 1581 gstreamermm_0.9.5-1.dsc
 6017b77882fa83ea0feee7408dd86e24c9db486a 1500172 gstreamermm_0.9.5.orig.tar.gz
 c3f8695b4c47ca241acf8e4ba9559d64b495a256 3001 gstreamermm_0.9.5-1.diff.gz
 3f6a81bc5a8682eb1dd84545e7738021bb05028b 804488 
libgstreamermm-0.10-doc_0.9.5-1_all.deb
 5e79e359ab4185ce61c5c1aaa77a1f5c58cd9bb2 185716 
libgstreamermm-0.10-2_0.9.5-1_i386.deb
 49ca4e337625a0ee0e525b0e7a7c6154feffb1b0 287148 
libgstreamermm-0.10-dev_0.9.5-1_i386.deb
 0d206b0bd37c62111c262ed352f28ab09d0f6d9a 950166 
libgstreamermm-0.10-dbg_0.9.5-1_i386.deb
Checksums-Sha256: 
 b1b24c634461cef8894bd2a33e58ee7f404fcd077cddadbc038a00b29f63850a 1581 
gstreamermm_0.9.5-1.dsc
 db79b4f878af434ca5bd2e85a79776e3ef954f018f69766bfbc1edd8d6766e7f 1500172 
gstreamermm_0.9.5.orig.tar.gz
 bf7de87a372900688a2a6dfd0bd1453351770c6e0a577edd1ffa7c4938bd74cc 3001 
gstreamermm_0.9.5-1.diff.gz
 a0f8c1079787309cc06c72d7212d5852b9a6fb5237abd84a55eae5cd76628e6b 804488 
libgstreamermm-0.10-doc_0.9.5-1_all.deb
 7811679eec5b9bbe7d90ef8b8f907efe0287d95ca60752900b3e92aa53d29ca7 185716 
libgstreamermm-0.10-2_0.9.5-1_i386.deb
 eba7e632588ab62cef48f11bc134cc6aec1c052a6ff0b8f5d5a837789467dae9 287148 
libgstreamermm-0.10-dev_0.9.5-1_i386.deb
 5cebacdf4a6727974a06b04d344d21abe194077562bff649959852d0a73d5773 950166 
libgstreamermm-0.10-dbg_0.9.5-1_i386.deb
Files: 
 a4681767310c56bae333889530a41110 1581 libs optional gstreamermm_0.9.5-1.dsc
 057a0820c949e881869b31a48efe1a46 1500172 libs optional 
gstreamermm_0.9.5.orig.tar.gz
 da22a5dbe08b892b85effa170a3208a4 3001 libs optional gstreamermm_0.9.5-1.diff.gz
 25cb3020851d1ac531ee9263177dfee2 804488 doc optional 
libgstreamermm-0.10-doc_0.9.5-1_all.deb
 904953907ff7bd502163c80f74e9b83d 185716 libs optional 
libgstreamermm-0.10-2_0.9.5-1_i386.deb
 ac9b4bb11bd25e10f182f637787792a1 287148 libdevel optional 
libgstreamermm-0.10-dev_0.9.5-1_i386.deb
 5be560c12f2301ab9be5001130420e77 950166 libdevel extra 
libgstreamermm-0.10-dbg_0.9.5-1_i386.deb

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

iD8DBQFIKsxs4VUX8isJIMARAml1AJ9C3JIyLCHRXaQE1v9u1kpMrjvpYwCfRv4a
eICyPfyfYOpnEIQnXRVjClg=
=Iti4
-END PGP SIGNATURE-


Accepted:
gstreamermm_0.9.5-1.diff.gz
  to pool/main/g/gstreamermm/gstreamermm_0.9.5-1.diff.gz
gstreamermm_0.9.5-1.dsc
  to pool/main/g/gstreamermm/gstreamermm_0.9.5-1.dsc
gstreamermm_0.9.5.orig.tar.gz
  to pool/main/g/gstreamermm/gstreamermm_0.9.5.orig.tar.gz
libgstreamermm-0.10-2_0.9.5-1_i386.deb
  to pool/main/g/gstreamermm/libgstreamermm-0.10-2_0.9.5-1_i386.deb
libgstreamermm-0.10-dbg_0.9.5-1_i386.deb
  to pool/main/g/gstreamermm/libgstreamermm-0.10-dbg_0.9.5-1_i386.deb
libgstreamermm-0.10-dev_0.9.5-1_i386.deb
  to pool/main/g/gstreamermm/libgstreamermm-0.10-dev_0.9.5-1_i386.deb
libgstreamermm-0.10-doc_0.9.5-1_all.deb
  to pool/main/g/gstreamermm/libgstreamermm-0.10-doc_0.9.5-1_all.deb


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



Accepted octave-plot 1.0.5-1 (source i386)

2008-05-14 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 14:57:50 +0200
Source: octave-plot
Binary: octave-plot
Architecture: source i386
Version: 1.0.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Thomas Weber [EMAIL PROTECTED]
Description: 
 octave-plot - additional plotting tools for Octave
Changes: 
 octave-plot (1.0.5-1) unstable; urgency=low
 .
   [ Ólafur Jens Sigurðsson ]
   * New upstream version
Checksums-Sha1: 
 85134dfddac2726553ac9b0243068ea107513c40 1394 octave-plot_1.0.5-1.dsc
 a58ddaed14dc782c9d53d68cd136b56011f785d0 47426 octave-plot_1.0.5.orig.tar.gz
 446f650499a27d2cc07d001d262c2ace2ca4d383 1720 octave-plot_1.0.5-1.diff.gz
 df77e5eedbd378d46816993ccd6323251e1e1c92 41608 octave-plot_1.0.5-1_i386.deb
Checksums-Sha256: 
 181c9887b0aa206f010bf03c96eeacebc0dfdf81063733246534ee669e899400 1394 
octave-plot_1.0.5-1.dsc
 8780f0db8835e0bd548700e0ec12158cf0f1bf4958a857e65e7612d73e13003d 47426 
octave-plot_1.0.5.orig.tar.gz
 35c26af13c768916e07c8d414cab17fe4a813950f21c0778abb1d045508f28a4 1720 
octave-plot_1.0.5-1.diff.gz
 4c8c09d66725cb62f2ab6d8f859208085536bbc0424249a0be60a5ac7bb0e932 41608 
octave-plot_1.0.5-1_i386.deb
Files: 
 fc3a844ff0f7af6933c3fd35950e1a4e 1394 math optional octave-plot_1.0.5-1.dsc
 33d25e88f3177c135037d4d0dbca09ea 47426 math optional 
octave-plot_1.0.5.orig.tar.gz
 89940dbff851317cd64a7eafa7f0ee47 1720 math optional octave-plot_1.0.5-1.diff.gz
 6ec9be676f3a4bec7a8654770a8908ca 41608 math optional 
octave-plot_1.0.5-1_i386.deb

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

iD8DBQFIKuJdPqD4a3lPnXwRAsA0AJ4rtCxjI2ieDio5Mgrp7+pjNl0D2wCdFE/r
NUpXY1nhJXiV5JGDEOLol7Y=
=Ui1G
-END PGP SIGNATURE-


Accepted:
octave-plot_1.0.5-1.diff.gz
  to pool/main/o/octave-plot/octave-plot_1.0.5-1.diff.gz
octave-plot_1.0.5-1.dsc
  to pool/main/o/octave-plot/octave-plot_1.0.5-1.dsc
octave-plot_1.0.5-1_i386.deb
  to pool/main/o/octave-plot/octave-plot_1.0.5-1_i386.deb
octave-plot_1.0.5.orig.tar.gz
  to pool/main/o/octave-plot/octave-plot_1.0.5.orig.tar.gz


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



Accepted octave-time 1.0.7-1 (source all)

2008-05-14 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 14:28:04 +0200
Source: octave-time
Binary: octave-time
Architecture: source all
Version: 1.0.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Thomas Weber [EMAIL PROTECTED]
Description: 
 octave-time - date format manipulation function for Octave
Changes: 
 octave-time (1.0.7-1) unstable; urgency=low
 .
   [ Ólafur Jens Sigurðsson ]
   * New upstream version
Checksums-Sha1: 
 0074c27bf735ce34221651ae863ea5c78fff20af 1394 octave-time_1.0.7-1.dsc
 518c011945d5265a850d8e667badb2588d400921 42960 octave-time_1.0.7.orig.tar.gz
 790f41e638728a0e0f729989b4198da1c4fd7c73 1094 octave-time_1.0.7-1.diff.gz
 5bb458d88c9cd94587ff359ff554f6b23fc39801 37134 octave-time_1.0.7-1_all.deb
Checksums-Sha256: 
 580d53cee237c9a48e3a7ac3993d161909af88e5b68a79a6fd3f1e0f5c7781e3 1394 
octave-time_1.0.7-1.dsc
 6fca78ce73c008d1c034bd9efecf9e592cefd72f897117fe844092fdf5b35c97 42960 
octave-time_1.0.7.orig.tar.gz
 1241256614ead5ea0c6169d731ffdb4a3eb078435d9f55977fb718ec8946211f 1094 
octave-time_1.0.7-1.diff.gz
 a93f59d7a9221b35974e525db13ac26da8b4769bc3d359d8a757c6d7aa18ae4b 37134 
octave-time_1.0.7-1_all.deb
Files: 
 e26c6a4851975c16c164a0a9972cf5b7 1394 math optional octave-time_1.0.7-1.dsc
 65cbed1d4461d98aa45a60cd15b3c32e 42960 math optional 
octave-time_1.0.7.orig.tar.gz
 c79304aa27ee25c3f8214cc8860d1c8c 1094 math optional octave-time_1.0.7-1.diff.gz
 7e1e775ee9bbcbed7ee7b9a4d563d8f8 37134 math optional 
octave-time_1.0.7-1_all.deb

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

iD8DBQFIKtx9PqD4a3lPnXwRAvCMAKCG2otkpBm1s1/AdB2oWt4IZNuB5QCeIYEI
mwEw7URPgGBKn6YFpEYMRi8=
=y8LF
-END PGP SIGNATURE-


Accepted:
octave-time_1.0.7-1.diff.gz
  to pool/main/o/octave-time/octave-time_1.0.7-1.diff.gz
octave-time_1.0.7-1.dsc
  to pool/main/o/octave-time/octave-time_1.0.7-1.dsc
octave-time_1.0.7-1_all.deb
  to pool/main/o/octave-time/octave-time_1.0.7-1_all.deb
octave-time_1.0.7.orig.tar.gz
  to pool/main/o/octave-time/octave-time_1.0.7.orig.tar.gz


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



Accepted octave-physicalconstants 0.1.5-1 (source all)

2008-05-14 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 15:02:00 +0200
Source: octave-physicalconstants
Binary: octave-physicalconstants
Architecture: source all
Version: 0.1.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Thomas Weber [EMAIL PROTECTED]
Description: 
 octave-physicalconstants - provide physical constants values in Octave
Changes: 
 octave-physicalconstants (0.1.5-1) unstable; urgency=low
 .
   [ Ólafur Jens Sigurðsson ]
   * New upstream version
Checksums-Sha1: 
 97337f07f446e4e97bb419a7b3eb67e9e5e0c0a7 1538 
octave-physicalconstants_0.1.5-1.dsc
 7acd53ccea20afc1760a2cef9b1d2ee245d86158 38749 
octave-physicalconstants_0.1.5.orig.tar.gz
 d4cfa42b199b1b32196adb4df11dd376fa9d97ff 1101 
octave-physicalconstants_0.1.5-1.diff.gz
 b663d4cbf72d4eef473c75d5a5f0906062baea30 32370 
octave-physicalconstants_0.1.5-1_all.deb
Checksums-Sha256: 
 b537f56c7142fac6ed2ae5baf691fe5964edc1ef318efb4b9c926d6975e5cd1b 1538 
octave-physicalconstants_0.1.5-1.dsc
 91fa8bbf30e24253d3ca2fa378d47244e12be96012ccb97cfbd52766dcbfeabc 38749 
octave-physicalconstants_0.1.5.orig.tar.gz
 59d49a307c744a3778802e51b4db87f179d8addf9ec5d7d5f53ddc18d7d10e9c 1101 
octave-physicalconstants_0.1.5-1.diff.gz
 d938da95c62d30dcaabd7e1bcb036a2517a95c7dba59d92054abf43ceca6ac47 32370 
octave-physicalconstants_0.1.5-1_all.deb
Files: 
 f2678c62fb958d571b23bcd35b21d173 1538 math optional 
octave-physicalconstants_0.1.5-1.dsc
 c64877f72a3ab58990e599cc41e68d41 38749 math optional 
octave-physicalconstants_0.1.5.orig.tar.gz
 2cd0280002f9a77bf8a92b2fcfe62328 1101 math optional 
octave-physicalconstants_0.1.5-1.diff.gz
 7fe876c31423e8c24c25be5203d0b847 32370 math optional 
octave-physicalconstants_0.1.5-1_all.deb

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

iD8DBQFIKuXXPqD4a3lPnXwRAjeKAJ92jDytKrJQW2abk8JIQuosw5VAuACgp8OY
UkkID8uALMiGh5KSNqmcl+o=
=JPEF
-END PGP SIGNATURE-


Accepted:
octave-physicalconstants_0.1.5-1.diff.gz
  to 
pool/main/o/octave-physicalconstants/octave-physicalconstants_0.1.5-1.diff.gz
octave-physicalconstants_0.1.5-1.dsc
  to pool/main/o/octave-physicalconstants/octave-physicalconstants_0.1.5-1.dsc
octave-physicalconstants_0.1.5-1_all.deb
  to 
pool/main/o/octave-physicalconstants/octave-physicalconstants_0.1.5-1_all.deb
octave-physicalconstants_0.1.5.orig.tar.gz
  to 
pool/main/o/octave-physicalconstants/octave-physicalconstants_0.1.5.orig.tar.gz


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



Accepted buffer 1.19-10 (source i386)

2008-05-14 Thread Martin Buck
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri,  9 May 2008 16:09:42 +0200
Source: buffer
Binary: buffer
Architecture: source i386
Version: 1.19-10
Distribution: unstable
Urgency: low
Maintainer: Martin Buck [EMAIL PROTECTED]
Changed-By: Martin Buck [EMAIL PROTECTED]
Description: 
 buffer - Buffering/reblocking program for tape backups, printing, etc.
Closes: 428105
Changes: 
 buffer (1.19-10) unstable; urgency=low
 .
   * Fixed shared memory mapping to guarantee same address space in both
 parent and child process. Closes: #428105
   * Made lintian happy:
 - Fixed copyright file
 - Moved debhelper compat level to debian/compat
 - Don't ignore make clean errors
   * Upgraded to Standards-Version 3.7.3.0 (no changes required)
Checksums-Sha1: 
 7f49f1e4b136a09d1f23ff7f4d6733c140615c3c 918 buffer_1.19-10.dsc
 4a9357efb06fc7042329cee975b674bf40b3b253 7360 buffer_1.19-10.diff.gz
 bb976bc355285b5bbdf9a4e19509301b8c53b794 14594 buffer_1.19-10_i386.deb
Checksums-Sha256: 
 e0648f8530292bee3bbd34ca8e521167cdee0999d0a8db04cceb5767d55e62ff 918 
buffer_1.19-10.dsc
 19f7f4e5d898871ce73a3d76c9e473bb0f0162e7edaa77ded0a670810e35e947 7360 
buffer_1.19-10.diff.gz
 4daf6943a68f8339f125cdd90a60bcb5b859787dfe379c7b340a45a1d66d172b 14594 
buffer_1.19-10_i386.deb
Files: 
 148b4662eaede27e39dab1cf24ce4fa7 918 utils optional buffer_1.19-10.dsc
 f1aa0b4ec31abb802c17424d7cb40005 7360 utils optional buffer_1.19-10.diff.gz
 0d765fb3b9e5bc8f4f10c50acac5d834 14594 utils optional buffer_1.19-10_i386.deb

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

iD8DBQFIKuke5na4Z/jVQlkRAqN/AJ0fhwu0ZRFYy+DrEKXPIjHOUos2ugCfbDAx
syp5PIAl911HoGhGhtiZ+9I=
=QZFv
-END PGP SIGNATURE-


Accepted:
buffer_1.19-10.diff.gz
  to pool/main/b/buffer/buffer_1.19-10.diff.gz
buffer_1.19-10.dsc
  to pool/main/b/buffer/buffer_1.19-10.dsc
buffer_1.19-10_i386.deb
  to pool/main/b/buffer/buffer_1.19-10_i386.deb


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



Accepted octave-outliers 0.13.7-1 (source all)

2008-05-14 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 15:19:30 +0200
Source: octave-outliers
Binary: octave-outliers
Architecture: source all
Version: 0.13.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Thomas Weber [EMAIL PROTECTED]
Description: 
 octave-outliers - outliers detection function for Octave
Changes: 
 octave-outliers (0.13.7-1) unstable; urgency=low
 .
   [ Ólafur Jens Sigurðsson ]
   * New upstream version
Checksums-Sha1: 
 1635913d1e857242c2e2a68af2b68d17b2f87649 1445 octave-outliers_0.13.7-1.dsc
 a0c4490f33b254e1a839d6d70ddcaadad5af1b87 34155 
octave-outliers_0.13.7.orig.tar.gz
 9ac0824eefb49f86d87b4c0c09b0108da538413a 1107 octave-outliers_0.13.7-1.diff.gz
 018f8cfeb7ee6c4fcb34c5e88ef2af680310d293 28528 octave-outliers_0.13.7-1_all.deb
Checksums-Sha256: 
 af6d71182a56db82146fed18ae7fea0920d8d304616fb2059683703b79c457d8 1445 
octave-outliers_0.13.7-1.dsc
 b074e1426b6a225e8fd76c92ffe8b9b7c168ab0529f4fac2985700fc50a412a0 34155 
octave-outliers_0.13.7.orig.tar.gz
 b9d87b204417b4db43015a6f12d549d04150227c19eca15cd3494a842c0de960 1107 
octave-outliers_0.13.7-1.diff.gz
 a0d0a7f355e2b2d5910b189cd767586b87b4171f7aa2db1505553fa5703d6144 28528 
octave-outliers_0.13.7-1_all.deb
Files: 
 4b770ef74da228faf23332754d2d3449 1445 math optional 
octave-outliers_0.13.7-1.dsc
 4e1fb300353386b86ddcbea8f40f29a4 34155 math optional 
octave-outliers_0.13.7.orig.tar.gz
 481795d26cd1c3f3e9b37fb4a282f12a 1107 math optional 
octave-outliers_0.13.7-1.diff.gz
 f8cf802aee669d28eebb76a0ecff399a 28528 math optional 
octave-outliers_0.13.7-1_all.deb

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

iD8DBQFIKud6PqD4a3lPnXwRAkYVAKCTL35n3sargMRkf7XDsl8y5EODIgCdHr2U
eyUd0P4tbPifXCg7/kQVv2I=
=YaN4
-END PGP SIGNATURE-


Accepted:
octave-outliers_0.13.7-1.diff.gz
  to pool/main/o/octave-outliers/octave-outliers_0.13.7-1.diff.gz
octave-outliers_0.13.7-1.dsc
  to pool/main/o/octave-outliers/octave-outliers_0.13.7-1.dsc
octave-outliers_0.13.7-1_all.deb
  to pool/main/o/octave-outliers/octave-outliers_0.13.7-1_all.deb
octave-outliers_0.13.7.orig.tar.gz
  to pool/main/o/octave-outliers/octave-outliers_0.13.7.orig.tar.gz


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



Accepted octave-optiminterp 0.2.7-1 (source i386)

2008-05-14 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 15:24:01 +0200
Source: octave-optiminterp
Binary: octave-optiminterp
Architecture: source i386
Version: 0.2.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group [EMAIL PROTECTED]
Changed-By: Thomas Weber [EMAIL PROTECTED]
Description: 
 octave-optiminterp - optimal interpolation package for Octave
Changes: 
 octave-optiminterp (0.2.7-1) unstable; urgency=low
 .
   [ Ólafur Jens Sigurðsson ]
   * New upstream version
Checksums-Sha1: 
 1094aa3764f2b62fb025e8f2ed14bf7cdc7e9a38 1471 octave-optiminterp_0.2.7-1.dsc
 58e70077d497489e48286f5dd7c3d8f6db124790 66606 
octave-optiminterp_0.2.7.orig.tar.gz
 1e2c2ad0465891794f34d2febf83ff537e842571 1320 
octave-optiminterp_0.2.7-1.diff.gz
 6b496acc28b968c09fcdb6ed7503d318be2438be 37642 
octave-optiminterp_0.2.7-1_i386.deb
Checksums-Sha256: 
 709dad56ca260868cedafec4ae3fd9f015f82ff1381f394eddf47d2abea67fc6 1471 
octave-optiminterp_0.2.7-1.dsc
 1651c74f9ae215623fab9724de26628851fea827065b9e1b4acea2c8315cdd5b 66606 
octave-optiminterp_0.2.7.orig.tar.gz
 899bea56dc66fa33620581d90ca007c736cb19921026cbddd301fe2ceef79caa 1320 
octave-optiminterp_0.2.7-1.diff.gz
 b6287bdaff4a85aa5516fe132d89fcf0a5b638abe1054d8500f4fc2b15bcfa00 37642 
octave-optiminterp_0.2.7-1_i386.deb
Files: 
 ef02d3ee13b94cd31db5d36ebed6aa8b 1471 math optional 
octave-optiminterp_0.2.7-1.dsc
 b6aa879ebf8e792e6bf3b14ae9c6546e 66606 math optional 
octave-optiminterp_0.2.7.orig.tar.gz
 54dd3b50a43085ac647ed6ddd358a765 1320 math optional 
octave-optiminterp_0.2.7-1.diff.gz
 5a161d74a839b7a7a14b1b09c7cb595d 37642 math optional 
octave-optiminterp_0.2.7-1_i386.deb

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

iD8DBQFIKui5PqD4a3lPnXwRAvu1AKCTvnVsJTF2oBMvzWnMuApHbLI0ZgCfXNwZ
WfQp245ze6DODgY1u95qcXI=
=NJ0k
-END PGP SIGNATURE-


Accepted:
octave-optiminterp_0.2.7-1.diff.gz
  to pool/main/o/octave-optiminterp/octave-optiminterp_0.2.7-1.diff.gz
octave-optiminterp_0.2.7-1.dsc
  to pool/main/o/octave-optiminterp/octave-optiminterp_0.2.7-1.dsc
octave-optiminterp_0.2.7-1_i386.deb
  to pool/main/o/octave-optiminterp/octave-optiminterp_0.2.7-1_i386.deb
octave-optiminterp_0.2.7.orig.tar.gz
  to pool/main/o/octave-optiminterp/octave-optiminterp_0.2.7.orig.tar.gz


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



Accepted bzr-gtk 0.94.0-1 (source all)

2008-05-14 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 12 May 2008 11:38:26 +0100
Source: bzr-gtk
Binary: bzr-gtk
Architecture: source all
Version: 0.94.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers [EMAIL PROTECTED]
Changed-By: Chris Lamb [EMAIL PROTECTED]
Description: 
 bzr-gtk- provides graphical interfaces to Bazaar (bzr) version control
Changes: 
 bzr-gtk (0.94.0-1) unstable; urgency=low
 .
   [ Jelmer Vernooij ]
   * Add seahorse to Recommends.
 .
   [ Chris Lamb ]
   * New upstream release.
   * Drop 04-add-missing-icons patch, was merged upstream.
   * Update desktop-command-not-in-package lintian overrides.
   * Update debian/copyright.
Checksums-Sha1: 
 61d1d579fdaa2c0277256349e45efb73b3597655 1342 bzr-gtk_0.94.0-1.dsc
 652c0af0e47c5fc62809675403559c2ce359f303 221569 bzr-gtk_0.94.0.orig.tar.gz
 b6dc4fd80fdd2a99d6992a84499153f8688829b7 3786 bzr-gtk_0.94.0-1.diff.gz
 b7e54b7df551fbda347220225ff8ee4685ed0ac7 225434 bzr-gtk_0.94.0-1_all.deb
Checksums-Sha256: 
 1476a9c154f69f4111c12a7a4ccbb04acd36b25d9cb71a6709923381cd5b8486 1342 
bzr-gtk_0.94.0-1.dsc
 52979015e47d4935e5d623f3682b7969e07481387d50ae8607656ddaae834f0f 221569 
bzr-gtk_0.94.0.orig.tar.gz
 34ca43176c67d5af7367681ab0aef8e9726b2026f49e43db07f1e50734fc4d21 3786 
bzr-gtk_0.94.0-1.diff.gz
 69c2ca3f95ef5d299f2d6fdbad998efd84dba327ec761807246b2748dda769d7 225434 
bzr-gtk_0.94.0-1_all.deb
Files: 
 05f1a07587656e37e0b71f3d34bb3d94 1342 python optional bzr-gtk_0.94.0-1.dsc
 623715992ca761e7e6470134bf07f27f 221569 python optional 
bzr-gtk_0.94.0.orig.tar.gz
 e2e3316e797e34cade1f32093976699b 3786 python optional bzr-gtk_0.94.0-1.diff.gz
 7ca0c0199164688500ca2e13be05a383 225434 python optional 
bzr-gtk_0.94.0-1_all.deb

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

iD8DBQFIKutQ+C5cwEsrK54RAqrDAKDURNC0LFYWIPg6bA3ax7SVFhpRnwCfc4vC
693tiI2zB46dNzK/+3s52wY=
=4uv7
-END PGP SIGNATURE-


Accepted:
bzr-gtk_0.94.0-1.diff.gz
  to pool/main/b/bzr-gtk/bzr-gtk_0.94.0-1.diff.gz
bzr-gtk_0.94.0-1.dsc
  to pool/main/b/bzr-gtk/bzr-gtk_0.94.0-1.dsc
bzr-gtk_0.94.0-1_all.deb
  to pool/main/b/bzr-gtk/bzr-gtk_0.94.0-1_all.deb
bzr-gtk_0.94.0.orig.tar.gz
  to pool/main/b/bzr-gtk/bzr-gtk_0.94.0.orig.tar.gz


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



Accepted tor 0.1.2.19-3 (source i386)

2008-05-14 Thread Peter Palfrader
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 15:05:47 +0200
Source: tor
Binary: tor tor-dbg
Architecture: source i386
Version: 0.1.2.19-3
Distribution: unstable
Urgency: critical
Maintainer: Peter Palfrader [EMAIL PROTECTED]
Changed-By: Peter Palfrader [EMAIL PROTECTED]
Description: 
 tor- anonymizing overlay network for TCP
 tor-dbg- debugging symbols for Tor
Changes: 
 tor (0.1.2.19-3) unstable; urgency=critical
 .
   * It's 2008.  Now is the time to add copyright statements for 2007.
   * Work around fig2dev failing to build the images on all archs -
 backport from 0.2.0.22-rc-1 (re #457568).
   * backport from 0.2.0.26-rc-1: Conflict with old libssls.
   * backport from 0.2.0.26-rc-1: On upgrading from versions prior to,
 including, 0.1.2.19-2 if we are a server (we have a /var/lib/tor/keys
 directory)
 - move /var/lib/tor/keys/secret_onion_key out of the way.
 - move /var/lib/tor/keys/secret_onion_key.old out of the way.
 - move /var/lib/tor/keys/secret_id_key out of the way if it was
   created on or after 2006-09-17, which is the day the bad
   libssl was uploaded to Debian unstable.
   * backport from 0.2.0.26-rc-1: Add a NEWS file explaining this change.
Checksums-Sha1: 
 b6235306ce563501e0f0ca74f58e80e24a272278 1105 tor_0.1.2.19-3.dsc
 bee497deda933b17f4356ebaeab8098aedf63737 73232 tor_0.1.2.19-3.diff.gz
 8f11d67952d8db488832968f8f4e65749cbe5ac6 966026 tor_0.1.2.19-3_i386.deb
 21a808ace51f1afac8cd0091642772f83d33 520368 tor-dbg_0.1.2.19-3_i386.deb
Checksums-Sha256: 
 d8a3c22564be4893ad03396131fee5651c8cb6d89e7998e665794b0bf0f05118 1105 
tor_0.1.2.19-3.dsc
 2e20d0622c3320b87fb48464c362f77f222802322603f09a7f309cbbe69b6bb0 73232 
tor_0.1.2.19-3.diff.gz
 418394b700dfa82a8bb2cdf82621d93fa87d185a095789f4c907f3f46011656e 966026 
tor_0.1.2.19-3_i386.deb
 7aa8c3e8f95b9227602efb616b3655e2c588ba360f24f3c5eb2fc28217e13a8a 520368 
tor-dbg_0.1.2.19-3_i386.deb
Files: 
 d8099d28931b8fc59df78603720ea88f 1105 comm optional tor_0.1.2.19-3.dsc
 fadbf2fe9fea927f16d855d243202f2a 73232 comm optional tor_0.1.2.19-3.diff.gz
 8bdaf4fffac102a8d9bd06e151e23c3c 966026 comm optional tor_0.1.2.19-3_i386.deb
 80ab9a9eabb4a67e3261b359f2038c6d 520368 comm extra tor-dbg_0.1.2.19-3_i386.deb

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

iD8DBQFIKvHNz/ccs6+kS90RAq17AJ9gyYW74iJncW60Ps7FtSLOKPvfigCgjUfA
Fow2Q9iNPloRMvOZAhA/QUs=
=N3UH
-END PGP SIGNATURE-


Accepted:
tor-dbg_0.1.2.19-3_i386.deb
  to pool/main/t/tor/tor-dbg_0.1.2.19-3_i386.deb
tor_0.1.2.19-3.diff.gz
  to pool/main/t/tor/tor_0.1.2.19-3.diff.gz
tor_0.1.2.19-3.dsc
  to pool/main/t/tor/tor_0.1.2.19-3.dsc
tor_0.1.2.19-3_i386.deb
  to pool/main/t/tor/tor_0.1.2.19-3_i386.deb


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



Accepted ghostscript 8.62.dfsg.1-2.1 (source all amd64)

2008-05-14 Thread Pierre Habouzit
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 15:25:03 +0200
Source: ghostscript
Binary: ghostscript gs gs-esp gs-gpl gs-aladdin gs-common ghostscript-x 
ghostscript-doc libgs8 libgs-dev
Architecture: source all amd64
Version: 8.62.dfsg.1-2.1
Distribution: unstable
Urgency: high
Maintainer: Masayuki Hatta (mhatta) [EMAIL PROTECTED]
Changed-By: Pierre Habouzit [EMAIL PROTECTED]
Description: 
 ghostscript - The GPL Ghostscript PostScript/PDF interpreter
 ghostscript-doc - The GPL Ghostscript PostScript/PDF interpreter - 
Documentation
 ghostscript-x - The GPL Ghostscript PostScript/PDF interpreter - X Display 
suppor
 gs - Transitional package
 gs-aladdin - Transitional package
 gs-common  - Transitional package
 gs-esp - Transitional package
 gs-gpl - Transitional package
 libgs-dev  - The Ghostscript PostScript Library - Development Files
 libgs8 - The Ghostscript PostScript/PDF interpreter Library
Closes: 453903
Changes: 
 ghostscript (8.62.dfsg.1-2.1) unstable; urgency=high
 .
   * Non-maintainer upload.
   * Add patches/31_fix-gc-sigbus.dpatch to avoid sigbus/segfaults on sparc and
 hppa (and probably errors on other architectures as well).
 Closes: #453903.
Checksums-Sha1: 
 dab27c06e287dda05ad1afe2101e011ceed1d175 1500 ghostscript_8.62.dfsg.1-2.1.dsc
 da94134909a8fc634228453315c70855730a2422 93542 
ghostscript_8.62.dfsg.1-2.1.diff.gz
 486288cd1b8d041773f19f1c4d09ece28c9fdd68 28008 gs_8.62.dfsg.1-2.1_all.deb
 9c93ab0e64726636af7a076857a6617cfa41e1b1 28008 gs-esp_8.62.dfsg.1-2.1_all.deb
 76a91161644f5a883f835dab384ef78f954ea74b 28010 gs-gpl_8.62.dfsg.1-2.1_all.deb
 b67a9bd35f55d0dd2608fc5506a053140cbd 28016 
gs-aladdin_8.62.dfsg.1-2.1_all.deb
 88487d45c23f9068213556454223fbe470ffd060 28020 
gs-common_8.62.dfsg.1-2.1_all.deb
 ea6cbf536bc6f39208ffe00940090029844ec412 2773110 
ghostscript-doc_8.62.dfsg.1-2.1_all.deb
 2474520b8797279fef24ad81c5e145470a8c934f 766800 
ghostscript_8.62.dfsg.1-2.1_amd64.deb
 9ea7159e28a0b9f5c20a4996263d2cf5b5797c64 61594 
ghostscript-x_8.62.dfsg.1-2.1_amd64.deb
 0b9df8f49134a30ef4dd3d8661429b9190d8cb07 2322956 
libgs8_8.62.dfsg.1-2.1_amd64.deb
 8e52ce273698b79e12ba886f002075ddf0f5fc09 34738 
libgs-dev_8.62.dfsg.1-2.1_amd64.deb
Checksums-Sha256: 
 f4085e31c5488bc1dfc31938f6902521faeb7b30d6d725b3bae557c90df98241 1500 
ghostscript_8.62.dfsg.1-2.1.dsc
 776d7d708c2d1642c827079e4a7e58e973d183ef66e8ff8218e7c37df85c5bc8 93542 
ghostscript_8.62.dfsg.1-2.1.diff.gz
 03fa512b9010c98a2d67551297f8b88ac6c3f54a75621201dad0e0cd4476d3da 28008 
gs_8.62.dfsg.1-2.1_all.deb
 3899218b2abfb253d529e8c81c897a1b29a1485bc61464d70914feca6cb94cda 28008 
gs-esp_8.62.dfsg.1-2.1_all.deb
 619744fddd7bcac545a2d53acb440da42a3c0e82d3af13d46da83efc5dc7e9fc 28010 
gs-gpl_8.62.dfsg.1-2.1_all.deb
 f2d2a8b7639bfa4db263a36afd8acb6354f98b97923ef45c54bc2077c7b35448 28016 
gs-aladdin_8.62.dfsg.1-2.1_all.deb
 bf53fb28dc0d2097847253f3c4793aa9187067d8faecc5fe4fa94af9e32cd885 28020 
gs-common_8.62.dfsg.1-2.1_all.deb
 dfac816e824e4a02eeff9de74ed1e0b7c6114616abbd5fbe4607b623f6d44dfe 2773110 
ghostscript-doc_8.62.dfsg.1-2.1_all.deb
 48818cea6f269ebd7172ed559fb325d33b8a61b70145380513349e9aac6660df 766800 
ghostscript_8.62.dfsg.1-2.1_amd64.deb
 170a5fc6f30532be7a686b324395b4e9da4b5d44a37b2344c7586df4240400df 61594 
ghostscript-x_8.62.dfsg.1-2.1_amd64.deb
 f0fbc715f7d9be488c3f1735f73271404bee6f8c19d651fc68bef9c786a5dfd4 2322956 
libgs8_8.62.dfsg.1-2.1_amd64.deb
 af3146bb477c59c231a0230e25202a2b84176b84ca7db94a6c61cc592f24940c 34738 
libgs-dev_8.62.dfsg.1-2.1_amd64.deb
Files: 
 ab024d876f112b3427e7f45ca7bd9952 1500 text optional 
ghostscript_8.62.dfsg.1-2.1.dsc
 a2e286c8211560c575d3993aaf3e1eae 93542 text optional 
ghostscript_8.62.dfsg.1-2.1.diff.gz
 0204d691b71ee2e284308f5fd8c548cf 28008 text extra gs_8.62.dfsg.1-2.1_all.deb
 8e3e3e8b6da070dbdeff75a9b8bb94b5 28008 text extra 
gs-esp_8.62.dfsg.1-2.1_all.deb
 629f17feaddf41ec6a3ee87753c88cd6 28010 text extra 
gs-gpl_8.62.dfsg.1-2.1_all.deb
 2111f4b65d528fe454f8fd3b57c543fb 28016 text extra 
gs-aladdin_8.62.dfsg.1-2.1_all.deb
 50eac408ce83dc9c02b1349d53560463 28020 text extra 
gs-common_8.62.dfsg.1-2.1_all.deb
 62953f5e5cef27e04c41b60af8c61fb7 2773110 doc optional 
ghostscript-doc_8.62.dfsg.1-2.1_all.deb
 6f74b64a4c6fc08bf37a78a169ae07bf 766800 text optional 
ghostscript_8.62.dfsg.1-2.1_amd64.deb
 11bf1b53ab28b24aba2fcca7c64f9f8f 61594 text optional 
ghostscript-x_8.62.dfsg.1-2.1_amd64.deb
 269233538d157870f627e32f9b5a4c58 2322956 libs optional 
libgs8_8.62.dfsg.1-2.1_amd64.deb
 f6ef66536544a930a2956d3d2e1b287d 34738 libdevel optional 
libgs-dev_8.62.dfsg.1-2.1_amd64.deb

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

iD8DBQFIKvWjvGr7W6HudhwRAj6OAJ9Gg8jxxWsTMjKf4HWmnKVwtBNdTACfWz4N
ABENVRBErw90LKOh1FG5KlM=
=U2uh
-END PGP SIGNATURE-


Accepted:
ghostscript-doc_8.62.dfsg.1-2.1_all.deb
  to pool/main/g/ghostscript/ghostscript-doc_8.62.dfsg.1-2.1_all.deb
ghostscript-x_8.62.dfsg.1-2.1_amd64.deb
  

Accepted b2evolution 2.4.2-1 (source all)

2008-05-14 Thread Xavier Luthi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 05 May 2008 14:17:06 +0200
Source: b2evolution
Binary: b2evolution
Architecture: source all
Version: 2.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Xavier Luthi [EMAIL PROTECTED]
Changed-By: Xavier Luthi [EMAIL PROTECTED]
Description: 
 b2evolution - multilingual, multiuser, multi-blog engine
Changes: 
 b2evolution (2.4.2-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 b399d8b219b6817db497b3428d5caebd6069585d 1042 b2evolution_2.4.2-1.dsc
 288131c2bdd9d46b64c51a293bd549d8a4ab837d 2283055 b2evolution_2.4.2.orig.tar.gz
 672f9771543789a7a55bd492ea256bce5bd47575 33117 b2evolution_2.4.2-1.diff.gz
 de73ac7daa739e6c1718bdeb593ab65a2cebc021 2229936 b2evolution_2.4.2-1_all.deb
Checksums-Sha256: 
 b5d90023d064c5fa5b8601d1acb553ff2ecce09255ed42213150fae6c9c08be5 1042 
b2evolution_2.4.2-1.dsc
 0601ea8e53745c80db099fd046eb42bcd06c5d24b03abdac7628914b8c8d0a64 2283055 
b2evolution_2.4.2.orig.tar.gz
 9e03f62b8a5aa084840894d80377ed203b7fab815d9fc3b29ce68cbb06771189 33117 
b2evolution_2.4.2-1.diff.gz
 86e935fd2b331e819f7051bc0ee261f01a8de2c8ccb40aa600e3a251dc30f9b7 2229936 
b2evolution_2.4.2-1_all.deb
Files: 
 e9a76adef89ca8104bb2a36f0dee 1042 web optional b2evolution_2.4.2-1.dsc
 90cddc8ba1ff75c779d1a0ee976b7907 2283055 web optional 
b2evolution_2.4.2.orig.tar.gz
 0ec052dd84ff2057ba2b1cf240b95121 33117 web optional b2evolution_2.4.2-1.diff.gz
 69533614c3db2d1a078b694364741a35 2229936 web optional 
b2evolution_2.4.2-1_all.deb

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

iD8DBQFIKvU8gT/oOnSXSCQRAh0JAJ9gcds+6n/H2302iz8O4JGP01rikgCgzorY
Hnv52FNvwEhCjdJnR2WeTz4=
=MOEr
-END PGP SIGNATURE-


Accepted:
b2evolution_2.4.2-1.diff.gz
  to pool/main/b/b2evolution/b2evolution_2.4.2-1.diff.gz
b2evolution_2.4.2-1.dsc
  to pool/main/b/b2evolution/b2evolution_2.4.2-1.dsc
b2evolution_2.4.2-1_all.deb
  to pool/main/b/b2evolution/b2evolution_2.4.2-1_all.deb
b2evolution_2.4.2.orig.tar.gz
  to pool/main/b/b2evolution/b2evolution_2.4.2.orig.tar.gz


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



Accepted nitrogen 1.3-1 (source amd64)

2008-05-14 Thread Nico Golde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 16:03:35 +0200
Source: nitrogen
Binary: nitrogen
Architecture: source amd64
Version: 1.3-1
Distribution: unstable
Urgency: low
Maintainer: Nico Golde [EMAIL PROTECTED]
Changed-By: Nico Golde [EMAIL PROTECTED]
Description: 
 nitrogen   - wallpaper browser and changing utility for X
Changes: 
 nitrogen (1.3-1) unstable; urgency=low
 .
   * New upstream release:
 - Made the program not recurse when no directory argument is given, thus
   not loading your entire home dir when you least expect it!
 - Made thumbnail loading lazy. Only thumbnails that you see in the GUI are
   actually loaded into memory.
Checksums-Sha1: 
 6449733726171d4923feed688240bb59365c34c2 1017 nitrogen_1.3-1.dsc
 5f846df9c70da163f6e05d4357a9c271a5e901b8 281508 nitrogen_1.3.orig.tar.gz
 3b21e3a4ff61c9ab67fb11da951b00c9379f065a 2621 nitrogen_1.3-1.diff.gz
 3a735bf93dac150ef5250bcf55668e007a56411e 142246 nitrogen_1.3-1_amd64.deb
Checksums-Sha256: 
 1895e457fd50aa6eb8550a57dde8dbe8dbb512259c8d7dee9f00dc37ced2408d 1017 
nitrogen_1.3-1.dsc
 a387529ef829cc2033c3e0e35c7ee1cce6803911729555968d8e8b4d4d7d5413 281508 
nitrogen_1.3.orig.tar.gz
 5a4249938560d56b189f7bdcffbdd49a6babed1d11df3036a204792a79986500 2621 
nitrogen_1.3-1.diff.gz
 d67232cff3f27c9e5545a538814b112c8325a6de300aa5c6dadc90f3defbff74 142246 
nitrogen_1.3-1_amd64.deb
Files: 
 4b32c77d11680163b15f4bd0ffb7c335 1017 x11 extra nitrogen_1.3-1.dsc
 1f2b0b40ac286d0b185b23f234b237dd 281508 x11 extra nitrogen_1.3.orig.tar.gz
 541e4dcd3eb4b51faa23019beab0008f 2621 x11 extra nitrogen_1.3-1.diff.gz
 e8b689c49660abf075c37ae1abfb3ec9 142246 x11 extra nitrogen_1.3-1_amd64.deb

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

iD8DBQFIKvW9HYflSXNkfP8RAgcuAKCjggaKNoPkRhkh+4ZtSFqPKbnyhACfQcek
jz9FT4KjiVYtG2xriurvFRM=
=jXhH
-END PGP SIGNATURE-


Accepted:
nitrogen_1.3-1.diff.gz
  to pool/main/n/nitrogen/nitrogen_1.3-1.diff.gz
nitrogen_1.3-1.dsc
  to pool/main/n/nitrogen/nitrogen_1.3-1.dsc
nitrogen_1.3-1_amd64.deb
  to pool/main/n/nitrogen/nitrogen_1.3-1_amd64.deb
nitrogen_1.3.orig.tar.gz
  to pool/main/n/nitrogen/nitrogen_1.3.orig.tar.gz


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



Accepted audacity 1.3.5-1 (source amd64)

2008-05-14 Thread Free Ekanayaka
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 13:54:33 +0100
Source: audacity
Binary: audacity
Architecture: source amd64
Version: 1.3.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Team [EMAIL PROTECTED]
Changed-By: Free Ekanayaka [EMAIL PROTECTED]
Description: 
 audacity   - A fast, cross-platform audio editor
Changes: 
 audacity (1.3.5-1) unstable; urgency=low
 .
   * New upstream release
   * Included patches from Ubuntu (thanks to Bruno Barrera Yever):
 - debian/patches/desktop_file.patch:
   - removed deprecated Encoding field
   - removed deprecated Application value from Categories
   - updated Name fields
   - updated Icon field
   * Removed liblame patch, included upstream
Checksums-Sha1: 
 a249e26a4998f4adb75fcad170edcebf2947d3ab 1363 audacity_1.3.5-1.dsc
 35c1cf05fbc9408da1e751dff817870ded58be64 6445478 audacity_1.3.5.orig.tar.gz
 5213e01f6b9f9235b97faa2235e17a286efa887e 23932 audacity_1.3.5-1.diff.gz
 a6ddc03d0036406a843313c0532a8d12d41df123 3350300 audacity_1.3.5-1_amd64.deb
Checksums-Sha256: 
 d2a7b9be0d3e5399d7ec027ad831aa49db0b6d3f3b07f7040ad3dffb997142a2 1363 
audacity_1.3.5-1.dsc
 6b79ad24c4e81b9e6c611c11ea0a520ef3fac446b32d40939064bda11e7452fa 6445478 
audacity_1.3.5.orig.tar.gz
 f8278481a2330de372e5b286cafd4288c2a360d7370788ff044aa4f1f4e02e0b 23932 
audacity_1.3.5-1.diff.gz
 80980fb961bcb23b51a677167ed1fe59d33bc974cfc35d4d01e202a11d1e32c9 3350300 
audacity_1.3.5-1_amd64.deb
Files: 
 f40d27d57da3209161533be96b0a6f31 1363 sound optional audacity_1.3.5-1.dsc
 49fb288b0d8da28be53e06210fdc8521 6445478 sound optional 
audacity_1.3.5.orig.tar.gz
 47e6f381c2d7d2f0923e9328f07988ea 23932 sound optional audacity_1.3.5-1.diff.gz
 110a4e26e0cc89d916b0dc53370ac88d 3350300 sound optional 
audacity_1.3.5-1_amd64.deb

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

iD8DBQFIKwH0canJGlcVnlkRAvvhAKCHNQzTLHK/XMjKzY5GfilxFEBEDACfaISi
UnWVEcM5LWPX0XH0bEFzllA=
=M6ny
-END PGP SIGNATURE-


Accepted:
audacity_1.3.5-1.diff.gz
  to pool/main/a/audacity/audacity_1.3.5-1.diff.gz
audacity_1.3.5-1.dsc
  to pool/main/a/audacity/audacity_1.3.5-1.dsc
audacity_1.3.5-1_amd64.deb
  to pool/main/a/audacity/audacity_1.3.5-1_amd64.deb
audacity_1.3.5.orig.tar.gz
  to pool/main/a/audacity/audacity_1.3.5.orig.tar.gz


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



Accepted ucspi-proxy 0.97-1 (source powerpc)

2008-05-14 Thread Gerrit Pape
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 13 May 2008 20:44:00 +
Source: ucspi-proxy
Binary: ucspi-proxy
Architecture: source powerpc
Version: 0.97-1
Distribution: unstable
Urgency: low
Maintainer: Gerrit Pape [EMAIL PROTECTED]
Changed-By: Gerrit Pape [EMAIL PROTECTED]
Description: 
 ucspi-proxy - Connection proxy for UCSPI tools
Changes: 
 ucspi-proxy (0.97-1) unstable; urgency=low
 .
   * new upstream version.
   * debian/implicit: update to revision a09db2e.
   * debian/control: Build-Depends: libbg1-dev; Standards-Version:
 3.7.3.0.
   * debian/copyright: 2006.
   * debian/rules: adjust paths to bglibs; drop diet package for now.
   * debian/diff/0001-INSTHIER-install-the-ucspi-proxy-program.diff,
 debian/diff/0002-TARGETS-don-t-remove-.html.diff: redo
 INSTHIER.diff, TARGETS.diff with git.
   * debian/rules: apply patches with -p1, not -p0.
   * debian/rules: don't ignore error on make clean.
   * debian/diff/0003-Makefile-avoid-rpath.diff: new; avoid rpath.
Checksums-Sha1: 
 7f70402ed1964e38722babe360d8592578a85d7a 948 ucspi-proxy_0.97-1.dsc
 750b0ac0fe09a682e6f36e3f1e97dcc230b57f0e 26717 ucspi-proxy_0.97.orig.tar.gz
 b93451ca0595c8c9a2c61b9c65617e8237ba2d86 3574 ucspi-proxy_0.97-1.diff.gz
 e745dc4e3cc67f11ecd882290519077081dc6e68 38190 ucspi-proxy_0.97-1_powerpc.deb
Checksums-Sha256: 
 6869b735fc54ec6bf2ef3794c9c4086c18d71f433d37b2e7d2f48d39c65d8320 948 
ucspi-proxy_0.97-1.dsc
 14f76fc17b63143245b6a6af86d0d2159c7552e89da40009cccab397cdf8a93b 26717 
ucspi-proxy_0.97.orig.tar.gz
 2fea6d8e9dadda21e89382893971a97a7227da5dd166172b40d4ca3c0f85d78c 3574 
ucspi-proxy_0.97-1.diff.gz
 e05b0a4e5a746a2179ac9cd58dd58ff600a3b0a5c2a4a74f026212e3e28f7d4e 38190 
ucspi-proxy_0.97-1_powerpc.deb
Files: 
 74c35cd6f6e60ff9ec5bb78e0f5fb2ad 948 net optional ucspi-proxy_0.97-1.dsc
 a74d400d7e98a5efbe0d739ed4271479 26717 net optional 
ucspi-proxy_0.97.orig.tar.gz
 9fba8ebfee640a4e552c1c5a709ef6ea 3574 net optional ucspi-proxy_0.97-1.diff.gz
 6404508bddea2303519501300df186ee 38190 net optional 
ucspi-proxy_0.97-1_powerpc.deb

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

iD8DBQFIKvtmGJoyQbxwpv8RAkihAKCLevxLcKydJmjd7X6n1a6tZh/o0gCghjk8
DimTxhv8CQfLrN8EYoAARFU=
=JsIf
-END PGP SIGNATURE-


Accepted:
ucspi-proxy_0.97-1.diff.gz
  to pool/main/u/ucspi-proxy/ucspi-proxy_0.97-1.diff.gz
ucspi-proxy_0.97-1.dsc
  to pool/main/u/ucspi-proxy/ucspi-proxy_0.97-1.dsc
ucspi-proxy_0.97-1_powerpc.deb
  to pool/main/u/ucspi-proxy/ucspi-proxy_0.97-1_powerpc.deb
ucspi-proxy_0.97.orig.tar.gz
  to pool/main/u/ucspi-proxy/ucspi-proxy_0.97.orig.tar.gz


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



Accepted bzrtools 1.5.0-1 (source all)

2008-05-14 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 12 May 2008 20:25:35 +0200
Source: bzrtools
Binary: bzrtools
Architecture: source all
Version: 1.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers [EMAIL PROTECTED]
Changed-By: Jelmer Vernooij [EMAIL PROTECTED]
Description: 
 bzrtools   - Collection of tools for bzr
Changes: 
 bzrtools (1.5.0-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 0484c6b41d36aedc498437c105b868b26c6cc298 1453 bzrtools_1.5.0-1.dsc
 55bbe451af7ac0ed26a8aa7bc58142126c905cae 83739 bzrtools_1.5.0.orig.tar.gz
 fd3d6c423de289d3655e6f5a974a69fa500be98e 5157 bzrtools_1.5.0-1.diff.gz
 08fc8bdee12eb19a81041a0f872157612015f627 76260 bzrtools_1.5.0-1_all.deb
Checksums-Sha256: 
 015e11a29d118b97480ac7ce54f2ce7e8f572520b1d0fbc8147ef22efb9b55a1 1453 
bzrtools_1.5.0-1.dsc
 5f3ebbc032338ffaa6967074f121a48627b3cf70142a06d3fd680e2f35c4a452 83739 
bzrtools_1.5.0.orig.tar.gz
 35b579f1d45a36016a40b024d2db52f2d40ba0a8f1a4de76b9fec579bd1ccba9 5157 
bzrtools_1.5.0-1.diff.gz
 bcbceeb656bb4b33e79528050bfcba779a67113540756982842439dd698dcd9f 76260 
bzrtools_1.5.0-1_all.deb
Files: 
 b599fdee9f2e0e1b752b274b3784ccce 1453 devel optional bzrtools_1.5.0-1.dsc
 35648241d1857086a57860b31026b5e8 83739 devel optional 
bzrtools_1.5.0.orig.tar.gz
 14d5ef7bfa267aa4bf71bb67706affe0 5157 devel optional bzrtools_1.5.0-1.diff.gz
 29d29452890ff73a17705030490262df 76260 devel optional bzrtools_1.5.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Signed by Adeodato Simó [EMAIL PROTECTED]

iEYEARECAAYFAkgq/ZYACgkQOzsxEBcMRN1kYACfYQIOhKd6QWXsv3Dy51cXe+NM
Mr4Ani6folnZdedi+K6nMhXp/HLQEt4e
=DIBt
-END PGP SIGNATURE-


Accepted:
bzrtools_1.5.0-1.diff.gz
  to pool/main/b/bzrtools/bzrtools_1.5.0-1.diff.gz
bzrtools_1.5.0-1.dsc
  to pool/main/b/bzrtools/bzrtools_1.5.0-1.dsc
bzrtools_1.5.0-1_all.deb
  to pool/main/b/bzrtools/bzrtools_1.5.0-1_all.deb
bzrtools_1.5.0.orig.tar.gz
  to pool/main/b/bzrtools/bzrtools_1.5.0.orig.tar.gz


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



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

2008-05-14 Thread maximilian attems
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

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

Accepted libdbd-oracle-perl 1.21-2 (source i386 amd64)

2008-05-14 Thread Peter Eisentraut
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 17:15:45 +0200
Source: libdbd-oracle-perl
Binary: libdbd-oracle-perl
Architecture: amd64 i386 source 
Version: 1.21-2
Distribution: unstable
Urgency: low
Maintainer: Peter Eisentraut [EMAIL PROTECTED]
Changed-By: Peter Eisentraut [EMAIL PROTECTED]
Closes: 480462
Description:
 libdbd-oracle-perl - Perl DBI driver for Oracle
Changes:
 libdbd-oracle-perl (1.21-2) unstable; urgency=low
 .
   * Only remove /usr/share/perl5/ if it exists; apparently, newer Perl
 versions don't create it
   * Rebuilt for Perl 5.10 (closes: #480462)
   * Added lintian override for rpath issue
   * Updated to debhelper level 6
Checksums-Sha1: 
 67d303beebab44d45cca98bf395204ac061601b9 2342 libdbd-oracle-perl_1.21-2.diff.gz
 33e7aa894217996b7b9541f054830815b8ca0c21 1185 libdbd-oracle-perl_1.21-2.dsc
 cdb00475f88d22760fab469fb63d6842b4ba0913 391780 
libdbd-oracle-perl_1.21-2_i386.deb
 eac1624b1a3c8530eca8a4830d2ca6ef777909fb 394822 
libdbd-oracle-perl_1.21-2_amd64.deb
Checksums-Sha256: 
 038a47eed41c486ed1f08a7c7bea4b8f96fec2a288e7811d80215738ffa4cbef 391780 
libdbd-oracle-perl_1.21-2_i386.deb
 4f13b3004122d28ef9ec47a1b0d9d13dcca5b419de13af8476fd0efed575c736 1185 
libdbd-oracle-perl_1.21-2.dsc
 e3c973f86e3071faee591cddba38b46302f6ab751667bfd527baa09960c10b27 2342 
libdbd-oracle-perl_1.21-2.diff.gz
 fc37b126ffc60c85ffd32ce3f16abae7e261a780f57ec7edd8dd955fa57a396b 394822 
libdbd-oracle-perl_1.21-2_amd64.deb
Files: 
 24f61ab6c18c3af8ea7eccffb557d58c 394822 contrib/perl extra 
libdbd-oracle-perl_1.21-2_amd64.deb
 4344463507b7989e7e755c687c7e62a9 2342 contrib/perl extra 
libdbd-oracle-perl_1.21-2.diff.gz
 d27da6557bdad1baeb33bd7543ebdadf 391780 contrib/perl extra 
libdbd-oracle-perl_1.21-2_i386.deb
 104b9f813b82ffe4fb57206caf0404ec 1185 contrib/perl extra 
libdbd-oracle-perl_1.21-2.dsc

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

iD8DBQFIKwgETTx8oVVPtMYRAhs1AJ0fXbT+dUOwJt40FZGmtid7VB7TuQCbBU3m
CXSgTj1vYT/CgNrbb+BHWYg=
=Euhx
-END PGP SIGNATURE-


Accepted:
libdbd-oracle-perl_1.21-2.diff.gz
  to pool/contrib/libd/libdbd-oracle-perl/libdbd-oracle-perl_1.21-2.diff.gz
libdbd-oracle-perl_1.21-2.dsc
  to pool/contrib/libd/libdbd-oracle-perl/libdbd-oracle-perl_1.21-2.dsc
libdbd-oracle-perl_1.21-2_amd64.deb
  to pool/contrib/libd/libdbd-oracle-perl/libdbd-oracle-perl_1.21-2_amd64.deb
libdbd-oracle-perl_1.21-2_i386.deb
  to pool/contrib/libd/libdbd-oracle-perl/libdbd-oracle-perl_1.21-2_i386.deb


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



Accepted dir2ogg 0.11.5-1 (source all)

2008-05-14 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 17:28:31 +0200
Source: dir2ogg
Binary: dir2ogg
Architecture: source all
Version: 0.11.5-1
Distribution: unstable
Urgency: low
Maintainer: Julian Andres Klode [EMAIL PROTECTED]
Changed-By: Julian Andres Klode [EMAIL PROTECTED]
Description: 
 dir2ogg- audio file converter into ogg-vorbis format
Changes: 
 dir2ogg (0.11.5-1) unstable; urgency=low
 .
   * New bugfix release: Fix support for files with no headers (LP: #229179)
Checksums-Sha1: 
 00b675c6cb65619d07bd4a351943634448c39226 1149 dir2ogg_0.11.5-1.dsc
 7709871e0fafd463ba98398214fd6120bbd5aee0 18925 dir2ogg_0.11.5.orig.tar.gz
 b984796a3de0f74b424654a2f678aec2d9acc904 2677 dir2ogg_0.11.5-1.diff.gz
 ff85f3349122814356782bdbf85bbc06bb840dec 16760 dir2ogg_0.11.5-1_all.deb
Checksums-Sha256: 
 254eb46f43d027af36e8f088222c6274ee290900b07a6e1de0a7fc21d0537781 1149 
dir2ogg_0.11.5-1.dsc
 31b4674e970bd357329da752641089711ad3545b7ca829cdf2e21e6ae905aa0c 18925 
dir2ogg_0.11.5.orig.tar.gz
 882749b1ea37f32f642dfbc7c9880b2817c30c9f01aa88aad2ab7896bf36ef48 2677 
dir2ogg_0.11.5-1.diff.gz
 d62f9456380133ca48a977eab4ca812448283fbc98ba8a6516600d5cfdb17946 16760 
dir2ogg_0.11.5-1_all.deb
Files: 
 5bf50e3d6071ccf01082012c9609fac7 1149 sound optional dir2ogg_0.11.5-1.dsc
 9922470656b11f0b8fd8ef2166c3474b 18925 sound optional 
dir2ogg_0.11.5.orig.tar.gz
 1187e1d35d0d4160b1b6c0b44fd028e8 2677 sound optional dir2ogg_0.11.5-1.diff.gz
 8a446eeff5d076d2f1f6b264b722fa21 16760 sound optional dir2ogg_0.11.5-1_all.deb

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

iD8DBQFIKwzwrCpf/gCCPsIRAkbiAJsHzHrWhcH2t/8lvZbxgPOVz2Q0OQCgjIA+
N/ZgzwD208OuUcf1jAwpd4E=
=3JAT
-END PGP SIGNATURE-


Accepted:
dir2ogg_0.11.5-1.diff.gz
  to pool/main/d/dir2ogg/dir2ogg_0.11.5-1.diff.gz
dir2ogg_0.11.5-1.dsc
  to pool/main/d/dir2ogg/dir2ogg_0.11.5-1.dsc
dir2ogg_0.11.5-1_all.deb
  to pool/main/d/dir2ogg/dir2ogg_0.11.5-1_all.deb
dir2ogg_0.11.5.orig.tar.gz
  to pool/main/d/dir2ogg/dir2ogg_0.11.5.orig.tar.gz


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



Accepted libfreemarker-java 2.3.13-1 (source all)

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

Format: 1.8
Date: Wed, 14 May 2008 21:57:58 +0530
Source: libfreemarker-java
Binary: libfreemarker-java
Architecture: source all
Version: 2.3.13-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers [EMAIL PROTECTED]
Changed-By: Varun Hiremath [EMAIL PROTECTED]
Description: 
 libfreemarker-java - a template engine written in Java
Changes: 
 libfreemarker-java (2.3.13-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 820005ccb29989a7e84e2ef40aaa86f08c2bd998 1583 libfreemarker-java_2.3.13-1.dsc
 2d47f8263ada04c13a640a6530163549dffb13be 449214 
libfreemarker-java_2.3.13.orig.tar.gz
 94fc3ff8f141398b992b506310d0b092650bf0c6 5177 
libfreemarker-java_2.3.13-1.diff.gz
 d65152f6b6a03dbd5e080879484bac963b1076db 1127016 
libfreemarker-java_2.3.13-1_all.deb
Checksums-Sha256: 
 d682c774616ab07b869eb0959b3c6f4b95641a462389c3eea939a46c0af7d0c5 1583 
libfreemarker-java_2.3.13-1.dsc
 4bf7ea36090d484ccf0140ee3c97b99df36792257f0eb3a3ffb42dc1088d09f6 449214 
libfreemarker-java_2.3.13.orig.tar.gz
 9d9d44b486fd238fe51af1c161edbbb08cabef469d8705144af84bbbe9725606 5177 
libfreemarker-java_2.3.13-1.diff.gz
 47329a3a2138414f3b5fb898a772f02a7b1b2d91e98b9f38d0e6b96cc314bea4 1127016 
libfreemarker-java_2.3.13-1_all.deb
Files: 
 2c4e82ddb02ed78f81071e4402b2a980 1583 contrib/libs optional 
libfreemarker-java_2.3.13-1.dsc
 f2570f9da65ec9defe49a21b812151d8 449214 contrib/libs optional 
libfreemarker-java_2.3.13.orig.tar.gz
 4d153d7689fc6823115cc887e21246d8 5177 contrib/libs optional 
libfreemarker-java_2.3.13-1.diff.gz
 5eb204854f93e24c2d84616351425d62 1127016 contrib/libs optional 
libfreemarker-java_2.3.13-1_all.deb

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

iD8DBQFIKxSdPEFSUMxFMZcRAvGMAJ4jR7+byRAdfoUBgkAhycJb1douIgCgvdij
k90j87g04fpOHilBUk2Y3Dk=
=kbo0
-END PGP SIGNATURE-


Accepted:
libfreemarker-java_2.3.13-1.diff.gz
  to pool/contrib/libf/libfreemarker-java/libfreemarker-java_2.3.13-1.diff.gz
libfreemarker-java_2.3.13-1.dsc
  to pool/contrib/libf/libfreemarker-java/libfreemarker-java_2.3.13-1.dsc
libfreemarker-java_2.3.13-1_all.deb
  to pool/contrib/libf/libfreemarker-java/libfreemarker-java_2.3.13-1_all.deb
libfreemarker-java_2.3.13.orig.tar.gz
  to pool/contrib/libf/libfreemarker-java/libfreemarker-java_2.3.13.orig.tar.gz


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



Accepted charva 1.1.4-4 (source all i386)

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

Format: 1.8
Date: Wed, 14 May 2008 21:32:23 +0530
Source: charva
Binary: libcharva1-java libcharva1-jni
Architecture: source all i386
Version: 1.1.4-4
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers [EMAIL PROTECTED]
Changed-By: Varun Hiremath [EMAIL PROTECTED]
Description: 
 libcharva1-java - java windowing toolkit for text terminals
 libcharva1-jni - java windowing toolkit for text terminals - jni library
Closes: 480559
Changes: 
 charva (1.1.4-4) unstable; urgency=low
 .
   * Add libcommons-logging-java to Depends (Closes: #480559)
Checksums-Sha1: 
 3ac47d93cd08ca136a30237c4c15aeaf25734375 1431 charva_1.1.4-4.dsc
 04757e585f6dc9f07d9665c858ab07d1c484c2b1 4401 charva_1.1.4-4.diff.gz
 d12a8bf56cb70fda1c11dfeddfd3a6efdc79e899 752204 libcharva1-java_1.1.4-4_all.deb
 0a285b29665f6770578f75c0f81b0f4994bb8415 9140 libcharva1-jni_1.1.4-4_i386.deb
Checksums-Sha256: 
 130923e0453af595de4075eee9eade669b349b50462e6f12874fc1f66cf4d623 1431 
charva_1.1.4-4.dsc
 8bc1e78a734002654ad9ba5321379960f9c616911d43c0597ffa112f6f0e8295 4401 
charva_1.1.4-4.diff.gz
 d704da9252bcdc02330c6f0a464e84870b38a820b2b46a3915ff3ec838fc5119 752204 
libcharva1-java_1.1.4-4_all.deb
 0e013ff86015eaee43db51185adc290b6f9b747d5f6377b71e600c44a03d830a 9140 
libcharva1-jni_1.1.4-4_i386.deb
Files: 
 6fb5c1075151851a7ce06d0d788a5992 1431 libs optional charva_1.1.4-4.dsc
 0fc2507d01e49559b9ca717f689f6eb7 4401 libs optional charva_1.1.4-4.diff.gz
 2047bac19abd8fbed8e3741c00cd9fb5 752204 libs optional 
libcharva1-java_1.1.4-4_all.deb
 0531c975b45a7662c3073223e27f1c9c 9140 libs optional 
libcharva1-jni_1.1.4-4_i386.deb

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

iD8DBQFIKw/CPEFSUMxFMZcRAn8lAKDYYZKOKUalesYUJMQo5S+SYv5TfQCggPBN
3a2eR4ih/iglmm654/qip8c=
=snai
-END PGP SIGNATURE-


Accepted:
charva_1.1.4-4.diff.gz
  to pool/main/c/charva/charva_1.1.4-4.diff.gz
charva_1.1.4-4.dsc
  to pool/main/c/charva/charva_1.1.4-4.dsc
libcharva1-java_1.1.4-4_all.deb
  to pool/main/c/charva/libcharva1-java_1.1.4-4_all.deb
libcharva1-jni_1.1.4-4_i386.deb
  to pool/main/c/charva/libcharva1-jni_1.1.4-4_i386.deb


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



Accepted slrn 0.9.9~pre102-3 (source i386)

2008-05-14 Thread Jörg Sommer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 13 May 2008 16:18:47 +0200
Source: slrn
Binary: slrn slrnpull
Architecture: source i386
Version: 0.9.9~pre102-3
Distribution: unstable
Urgency: low
Maintainer: Jörg Sommer [EMAIL PROTECTED]
Changed-By: Jörg Sommer [EMAIL PROTECTED]
Description: 
 slrn   - threaded news reader (fast for slow links)
 slrnpull   - pulls a small newsfeed from an NNTP server
Closes: 469586 480681
Changes: 
 slrn (0.9.9~pre102-3) unstable; urgency=low
 .
   * Extended dpatch 203_locations.diff to define the marco
 NNTPSERVER_FILE. (closes: #469586)
 .
   * Reset the value of the configuration directory with a make option to
 overwrite the default value of $(sysconfdir)/slrn. This solves also
 the problem that slrnpull search slrnpull.conf in /etc/news/slrn.
 (closes: #480681)
 .
   * Upload sponsored by Norbert Tretkowski
Checksums-Sha1: 
 50a3e704bbf4f74c26518f3157e52210a5ab8fe2 1263 slrn_0.9.9~pre102-3.dsc
 180afad76588e4127b6b57e7893cb6aecb432930 50502 slrn_0.9.9~pre102-3.diff.gz
 34f14c372b84a8ec229d331b2ca210663d004721 806352 slrn_0.9.9~pre102-3_i386.deb
 307eed5910a727e3657da5467f508c41d996e00a 128286 
slrnpull_0.9.9~pre102-3_i386.deb
Checksums-Sha256: 
 09643042976689ae6e082eab77bbec39568faf59cf602b69c01de8ab3364f65a 1263 
slrn_0.9.9~pre102-3.dsc
 5cbd292ce97a1836de46ef1958bb8f7cf6cf8fec7a1669aaa225fb0a8e4d6211 50502 
slrn_0.9.9~pre102-3.diff.gz
 d1d1ef83b3e1f5320050a9f302f71134bc2cfe31b6011fefff12e3834ac73323 806352 
slrn_0.9.9~pre102-3_i386.deb
 1176524f29641cf42f322e05216f768c26f119eb362b97d40669b2ef01e33046 128286 
slrnpull_0.9.9~pre102-3_i386.deb
Files: 
 edc68e9494025f3c45c3a38b80046076 1263 news optional slrn_0.9.9~pre102-3.dsc
 d12589bb605c9ccb91a8b324753622cf 50502 news optional 
slrn_0.9.9~pre102-3.diff.gz
 79cdc2bca8d43f79a9756630dc1b7ffb 806352 news optional 
slrn_0.9.9~pre102-3_i386.deb
 da36ed62fd9ebbddb6ac0b1207c4b6fd 128286 news optional 
slrnpull_0.9.9~pre102-3_i386.deb

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

iD8DBQFIKxw0r/RnCw96jQERAtXrAJ0bh1dFEetLE0I3g9vlgCvXvFHk7ACfYx4Q
+lkmoHXI7pnkG4kgfYgy9Pg=
=yto9
-END PGP SIGNATURE-


Accepted:
slrn_0.9.9~pre102-3.diff.gz
  to pool/main/s/slrn/slrn_0.9.9~pre102-3.diff.gz
slrn_0.9.9~pre102-3.dsc
  to pool/main/s/slrn/slrn_0.9.9~pre102-3.dsc
slrn_0.9.9~pre102-3_i386.deb
  to pool/main/s/slrn/slrn_0.9.9~pre102-3_i386.deb
slrnpull_0.9.9~pre102-3_i386.deb
  to pool/main/s/slrn/slrnpull_0.9.9~pre102-3_i386.deb


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



Accepted isoqlog 2.2.1-1 (source i386)

2008-05-14 Thread Murat Demirten
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed,  14 May 2008 16:40:20 +0300
Source: isoqlog
Binary: isoqlog
Architecture: source i386
Version: 2.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Murat Demirten [EMAIL PROTECTED]
Changed-By: Murat Demirten [EMAIL PROTECTED]
Description: 
 isoqlog- Mail Transport Agent log analysis program
Closes: 308117 308118 379707 426193
Changes: 
 isoqlog (2.2.1-1) unstable; urgency=low
 .
   * New upstream release. Closes: #379707
   * Added es.po debconf translation. Closes: #426193
   * Added config file location information to man page. Closes: #308117
   * Updated for exim4 migration. Closes: #308118
Files: 
 47e5e1ae0eb3d08ced4377108d106452 603 mail optional isoqlog_2.2.1-1.dsc
 ade1c33b39c051f7ff4c5eb67f6f7285 159555 mail optional isoqlog_2.2.1.orig.tar.gz
 f05d0bd9cab87102ea6b6b5cb5517073 119367 mail optional isoqlog_2.2.1-1.diff.gz
 ff9898b2bfffeaf35bb09ba5606daf78 56566 mail optional isoqlog_2.2.1-1_i386.deb

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

iD8DBQFIKx5dAJWfo5xHjUkRAp2OAJ0bl++1miH/V/o/jcKaRq5Xo7JrDACdE1UF
+lgaMWGHtqvb7MmClfO1cDA=
=J3mt
-END PGP SIGNATURE-


Accepted:
isoqlog_2.2.1-1.diff.gz
  to pool/main/i/isoqlog/isoqlog_2.2.1-1.diff.gz
isoqlog_2.2.1-1.dsc
  to pool/main/i/isoqlog/isoqlog_2.2.1-1.dsc
isoqlog_2.2.1-1_i386.deb
  to pool/main/i/isoqlog/isoqlog_2.2.1-1_i386.deb
isoqlog_2.2.1.orig.tar.gz
  to pool/main/i/isoqlog/isoqlog_2.2.1.orig.tar.gz


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



Accepted gforge 4.6.99+svn6496-1 (source all)

2008-05-14 Thread Roland Mas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 18:27:34 +0200
Source: gforge
Binary: gforge gforge-common gforge-plugins-extra gforge-web-apache2 
gforge-web-apache gforge-db-postgresql gforge-mta-exim4 gforge-mta-postfix 
gforge-mta-courier gforge-shell-postgresql gforge-ftp-proftpd gforge-dns-bind9 
gforge-lists-mailman gforge-plugin-scmcvs gforge-plugin-scmsvn 
gforge-plugin-mediawiki
Architecture: source all
Version: 4.6.99+svn6496-1
Distribution: unstable
Urgency: low
Maintainer: Roland Mas [EMAIL PROTECTED]
Changed-By: Roland Mas [EMAIL PROTECTED]
Description: 
 gforge - collaborative development tool - meta-package
 gforge-common - collaborative development tool - shared files
 gforge-db-postgresql - collaborative development tool - database (using 
PostgreSQL)
 gforge-dns-bind9 - collaborative development tool - DNS management (using 
Bind9)
 gforge-ftp-proftpd - collaborative development tool - FTP management (using 
ProFTPd)
 gforge-lists-mailman - collaborative development tool - mailing-lists (using 
Mailman)
 gforge-mta-courier - collaborative development tool - mail tools (using 
Courier)
 gforge-mta-exim4 - collaborative development tool - mail tools (using Exim 4)
 gforge-mta-postfix - collaborative development tool - mail tools (using 
Postfix)
 gforge-plugin-mediawiki - Mediawiki plugin for GForge
 gforge-plugin-scmcvs - collaborative development tool - CVS plugin
 gforge-plugin-scmsvn - collaborative development tool - Subversion plugin
 gforge-plugins-extra - collaborative development tool - extra plugins
 gforge-shell-postgresql - collaborative development tool - shell accounts 
(using PostgreSQL
 gforge-web-apache - transition package to gforge-web-apache2
 gforge-web-apache2 - collaborative development tool - web part (using Apache)
Changes: 
 gforge (4.6.99+svn6496-1) unstable; urgency=low
 .
   * New SVN snapshot, incuding a fix for the previous patch.
Checksums-Sha1: 
 295e8ff5704e5e0a66fa2eb3257769353433fa07 1530 gforge_4.6.99+svn6496-1.dsc
 de2caf6dc46ab2438beca8909a957ce0594509d9 10220058 
gforge_4.6.99+svn6496.orig.tar.gz
 ef8ecbab817138530dc70322f7d660db57d1d190 97619 gforge_4.6.99+svn6496-1.diff.gz
 e9dcbdccb4a92f45d604bedbcc4433f294aa438c 91434 gforge_4.6.99+svn6496-1_all.deb
 9dd800db8af757a251761b9df04f603b43ca149f 1112874 
gforge-common_4.6.99+svn6496-1_all.deb
 643f77428f224bccee7b2977c889e34d71d14126 5220416 
gforge-plugins-extra_4.6.99+svn6496-1_all.deb
 85623be44bd729e828f548b4d3050271d837dffc 1381886 
gforge-web-apache2_4.6.99+svn6496-1_all.deb
 265751aa4d4a29611e0f9437264f36e9180595d0 87108 
gforge-web-apache_4.6.99+svn6496-1_all.deb
 b45cd060cbbb8869c3ac703e98aaa65757b51951 227906 
gforge-db-postgresql_4.6.99+svn6496-1_all.deb
 1d50dcf115f8604fa79acfd40cc37b1f1ed4ef9e 99104 
gforge-mta-exim4_4.6.99+svn6496-1_all.deb
 ad24ee5856c96f295bb7192a40005e6847440f3c 99852 
gforge-mta-postfix_4.6.99+svn6496-1_all.deb
 c1e480b8f13124284a8ceaac5e754acc1b6c6da0 87378 
gforge-mta-courier_4.6.99+svn6496-1_all.deb
 620f82eafa986b6ee82f2b92d28b6e0fa3a60ff9 93714 
gforge-shell-postgresql_4.6.99+svn6496-1_all.deb
 d5530fa4307560fd90c5dde5ddb54c8a7773d6fe 95968 
gforge-ftp-proftpd_4.6.99+svn6496-1_all.deb
 b7cd56b14fe21d42174082af7b83bd529906f8bf 104760 
gforge-dns-bind9_4.6.99+svn6496-1_all.deb
 e656124c8f702714e42911e70347712233f1888d 93220 
gforge-lists-mailman_4.6.99+svn6496-1_all.deb
 b0677c82117100ecfaf3a3f6c260e5d86486344c 127448 
gforge-plugin-scmcvs_4.6.99+svn6496-1_all.deb
 d5a9c0a73fd2b8fbb02fb9f5034e9e18ddb63351 120440 
gforge-plugin-scmsvn_4.6.99+svn6496-1_all.deb
 75aa1ae81bcbbc3fa899b1598d4cd94649ba2a63 212554 
gforge-plugin-mediawiki_4.6.99+svn6496-1_all.deb
Checksums-Sha256: 
 c27b319fc183972df328f913e42f3be667b059aa4d362657807251fbfbfc590f 1530 
gforge_4.6.99+svn6496-1.dsc
 7f930fac4a146cf439fab41ebd80a1e0bd54906468e702358e4d9b544b6730ef 10220058 
gforge_4.6.99+svn6496.orig.tar.gz
 67810c31d2fc5a602d293d5d191f524ec6ff32bbc61796c2b0254d2dfa9659d1 97619 
gforge_4.6.99+svn6496-1.diff.gz
 a60b18d8506487a59cc06b01177df46f2aaa0eed6facda23587fc14e7590c5ca 91434 
gforge_4.6.99+svn6496-1_all.deb
 f3da495d45a5da4d19bc6cbcb2891e8564110c08e2e2275b62df52cc3efca7a7 1112874 
gforge-common_4.6.99+svn6496-1_all.deb
 50ab3fd39f33ecbe8d82ae0e6ce5a3f079df3b132a350c31ee244efcd50e3f0d 5220416 
gforge-plugins-extra_4.6.99+svn6496-1_all.deb
 7d65ef9484d990986803cffad4d298ba5903ce64af31dc5491d28dd4378c446a 1381886 
gforge-web-apache2_4.6.99+svn6496-1_all.deb
 5896adf6a89769073d057e19c0bd3a01b0fff5322ad034983ea48a8877613ca0 87108 
gforge-web-apache_4.6.99+svn6496-1_all.deb
 a9d88282693d84e3c1aab03ea5e2be2b254822e735d22bc0f23169bc02270b7e 227906 
gforge-db-postgresql_4.6.99+svn6496-1_all.deb
 026a2861aac1cb4bfe7afdf65db622f2e7b180ea26b8b3054ffba8ebd360ef05 99104 
gforge-mta-exim4_4.6.99+svn6496-1_all.deb
 51dd7ce113f96c498163b1e3db47de1f9768929cddace422551df53d5f3178c1 99852 
gforge-mta-postfix_4.6.99+svn6496-1_all.deb
 

Accepted powder 105-1 (source i386)

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

Format: 1.8
Date: Wed, 14 May 2008 07:37:51 +0200
Source: powder
Binary: powder
Architecture: source i386
Version: 105-1
Distribution: unstable
Urgency: low
Maintainer: Gürkan Sengün [EMAIL PROTECTED]
Changed-By: Gürkan Sengün [EMAIL PROTECTED]
Description: 
 powder - Graphical dungeon crawling game
Changes: 
 powder (105-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 0e3ebf5fe8ed83a5f350ac8df6efe70ac347895a 975 powder_105-1.dsc
 55c276739a2101e1c713e32345fb854d19fbaba9 1263803 powder_105.orig.tar.gz
 038c803c82af71d00a6a8208ea45b8816a00b839 3466 powder_105-1.diff.gz
 cbbb19ed1ff508c938472d460151974b88746ee2 523148 powder_105-1_i386.deb
Checksums-Sha256: 
 5d9226287a84c298f06c4f7d4a606380aaf90a508fa9eb9509ccb3194bb0b2cf 975 
powder_105-1.dsc
 e2f15b7764532cb84bc7b78ae6c1ad6127a7a2197f99611c9688850b6d592e42 1263803 
powder_105.orig.tar.gz
 be4c60d59c56d7252240c38611d50a5646070c833e505e86a2fa610d8c687110 3466 
powder_105-1.diff.gz
 5783c739475cabb9de7171670d4b0b179f6ba165ba5cc10697c6528fecdb40a5 523148 
powder_105-1_i386.deb
Files: 
 dc9ba9008c69a1a9736001d038352821 975 non-free/games optional powder_105-1.dsc
 e379dedabd1d9f83d00e440badcbabbe 1263803 non-free/games optional 
powder_105.orig.tar.gz
 48447778dbf6b209229cdb275b207d48 3466 non-free/games optional 
powder_105-1.diff.gz
 c55f2a618d1b7d3b1ef7a9d114d48e3f 523148 non-free/games optional 
powder_105-1_i386.deb

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

iD8DBQFIKxzN+ZNUJLHfmlcRArUtAKCJxkPHiGCrGet7UKR0sTcJsqlOuwCgjXLP
+XG4zXhYAtc7dMznEnbAQ7g=
=yq+e
-END PGP SIGNATURE-


Accepted:
powder_105-1.diff.gz
  to pool/non-free/p/powder/powder_105-1.diff.gz
powder_105-1.dsc
  to pool/non-free/p/powder/powder_105-1.dsc
powder_105-1_i386.deb
  to pool/non-free/p/powder/powder_105-1_i386.deb
powder_105.orig.tar.gz
  to pool/non-free/p/powder/powder_105.orig.tar.gz


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



Accepted sane-backends 1.0.19-8 (source amd64)

2008-05-14 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 19:13:29 +0200
Source: sane-backends
Binary: sane-utils libsane libsane-dev libsane-dbg
Architecture: source amd64
Version: 1.0.19-8
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE [EMAIL PROTECTED]
Changed-By: Julien BLACHE [EMAIL PROTECTED]
Description: 
 libsane- API library for scanners
 libsane-dbg - API development library for scanners [debug symbols]
 libsane-dev - API development library for scanners [development files]
 sane-utils - API library for scanners -- utilities
Closes: 480219 480313 480366 480483 480550
Changes: 
 sane-backends (1.0.19-8) unstable; urgency=low
 .
   * Reupload 1.0.19-7 to unstable.
 .
   * debconf translations:
 + pt.po: courtesy of Américo Monteiro (closes: #480219).
 + cs.po: courtesy of Miroslav Kure (closes: #480313).
 + de.po: courtesy of Helge Kreutzmann (closes: #480366).
 + vi.po: courtesy of Clytie Siddall (closes: #480483).
 + fi.po: courtesy of Esko Arajärvi (closes: #480550).
 + fr.po: update by Christian Perrier.
Checksums-Sha1: 
 d60cc4447d0faf4d32fb62628e7172c64bf15864 1400 sane-backends_1.0.19-8.dsc
 159085bf384c574fb3718da834ebe5d106b83898 70400 sane-backends_1.0.19-8.diff.gz
 9d464e749740bec4c5ea33aa4f3ab4aede8ac743 145054 sane-utils_1.0.19-8_amd64.deb
 08dcfdb9ff3d10d383e21716721e376ca0f25a65 3623292 libsane_1.0.19-8_amd64.deb
 3a50ead1881d44fe4cfdea8d96cbbd193d67d806 3114306 libsane-dev_1.0.19-8_amd64.deb
 f3c870e1d5d9bd4665735779b19b517cdbbf9587 3570084 libsane-dbg_1.0.19-8_amd64.deb
Checksums-Sha256: 
 5fc5b00d046e37571c8d9d614c13a6049929a7a925a8683354d6702afd8229b9 1400 
sane-backends_1.0.19-8.dsc
 8b0a9a80f5481b54162875dde50f4928bd4696e3d8fd6655327814e7bfa0a099 70400 
sane-backends_1.0.19-8.diff.gz
 88ae91b6f249a01482b0c7e83cb1be6d5c2cae1a4e071d03be9ab1032d35a291 145054 
sane-utils_1.0.19-8_amd64.deb
 8b66ca7a56d75f9be51f465f187555f6b4ff110f1c56af2aeb4959062d00d5fc 3623292 
libsane_1.0.19-8_amd64.deb
 a74753bdf6ddda24a3263a9b104c265771caebe4b9eaf85e029e981b36d77ce1 3114306 
libsane-dev_1.0.19-8_amd64.deb
 b3a2054c12387b2a119b5021604c291bd775d61a426ebb415cf7d8a965b5fc64 3570084 
libsane-dbg_1.0.19-8_amd64.deb
Files: 
 eee2ff92edd63e4891ab43c089e06b92 1400 graphics optional 
sane-backends_1.0.19-8.dsc
 56e86d575c22f0da166524c8f5ca3ddc 70400 graphics optional 
sane-backends_1.0.19-8.diff.gz
 b65756001a34543ac59be93d0511d6cb 145054 graphics optional 
sane-utils_1.0.19-8_amd64.deb
 08e0bc5f75d300bd6f941915eaebe4b0 3623292 libs optional 
libsane_1.0.19-8_amd64.deb
 a9bd4672d87ea2dedf29ca5d141a0dd4 3114306 libdevel optional 
libsane-dev_1.0.19-8_amd64.deb
 6292cfd6108e11de39c14e18b9ed4541 3570084 libdevel extra 
libsane-dbg_1.0.19-8_amd64.deb

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

iD8DBQFIKx/AzWFP1/XWUWkRApA/AJ9uoWS6hg4HKr6QaiYaJq1/+Ue7DQCfeUlw
XT3lZOFXWLYCrE52V2rPZAA=
=pwDl
-END PGP SIGNATURE-


Accepted:
libsane-dbg_1.0.19-8_amd64.deb
  to pool/main/s/sane-backends/libsane-dbg_1.0.19-8_amd64.deb
libsane-dev_1.0.19-8_amd64.deb
  to pool/main/s/sane-backends/libsane-dev_1.0.19-8_amd64.deb
libsane_1.0.19-8_amd64.deb
  to pool/main/s/sane-backends/libsane_1.0.19-8_amd64.deb
sane-backends_1.0.19-8.diff.gz
  to pool/main/s/sane-backends/sane-backends_1.0.19-8.diff.gz
sane-backends_1.0.19-8.dsc
  to pool/main/s/sane-backends/sane-backends_1.0.19-8.dsc
sane-utils_1.0.19-8_amd64.deb
  to pool/main/s/sane-backends/sane-utils_1.0.19-8_amd64.deb


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



Accepted gnome-common 2.20.0-2 (source all)

2008-05-14 Thread Loic Minier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 19:25:04 +0200
Source: gnome-common
Binary: gnome-common
Architecture: source all
Version: 2.20.0-2
Distribution: unstable
Urgency: low
Maintainer: Jordi Mallach [EMAIL PROTECTED]
Changed-By: Loic Minier [EMAIL PROTECTED]
Description: 
 gnome-common - common scripts and macros to develop with GNOME or GNOME 2.0
Closes: 378736
Changes: 
 gnome-common (2.20.0-2) unstable; urgency=low
 .
   [ Bas Wijnen ]
   * Fix bashisms in variable initialisations.
   * Avoid using AUTOMAKE_VERSION if it isn't defined.  This works around a
 bashism.  (closes: #378736)
Checksums-Sha1: 
 b32570e74a18a9278aef4fd55c061feff7dfde84 1196 gnome-common_2.20.0-2.dsc
 ed97d0216ddfb19b9a8ee4da5bc6ab1dbefcc97f 5579 gnome-common_2.20.0-2.diff.gz
 824d564a7fc7e389d804bb1c10689b7d3ff9f261 24780 gnome-common_2.20.0-2_all.deb
Checksums-Sha256: 
 b4eddebf51d7cefb1b5f7117c5de1ca026f9e4a7482f077557deeac1f3ab87d2 1196 
gnome-common_2.20.0-2.dsc
 dec58832c6545b462c7ab319871401e3eb8b86f32cdf392bd36eec21b08f1850 5579 
gnome-common_2.20.0-2.diff.gz
 9af5a6a065326146bc4868adeddcead73fc4b96383ce6dc48247c323e377aaf2 24780 
gnome-common_2.20.0-2_all.deb
Files: 
 0e528c9dd89341356f88b864a149a84f 1196 gnome optional gnome-common_2.20.0-2.dsc
 25bdeeca81436dc1f63341e869f585bb 5579 gnome optional 
gnome-common_2.20.0-2.diff.gz
 e983da4bc5a23ebc6762a908d8c4bde2 24780 gnome optional 
gnome-common_2.20.0-2_all.deb

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

iD8DBQFIKyGl4VUX8isJIMARAhArAKCB+vOIXGXGwqVy4obBOgfy3j3wYACgi00R
2WSglUYDLyE1uZtD+WxhaOw=
=I1NQ
-END PGP SIGNATURE-


Accepted:
gnome-common_2.20.0-2.diff.gz
  to pool/main/g/gnome-common/gnome-common_2.20.0-2.diff.gz
gnome-common_2.20.0-2.dsc
  to pool/main/g/gnome-common/gnome-common_2.20.0-2.dsc
gnome-common_2.20.0-2_all.deb
  to pool/main/g/gnome-common/gnome-common_2.20.0-2_all.deb


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



Accepted gifsicle 1.51-1 (source i386)

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

Format: 1.8
Date: Tue, 13 May 2008 14:24:41 +0200
Source: gifsicle
Binary: gifsicle
Architecture: source i386
Version: 1.51-1
Distribution: unstable
Urgency: low
Maintainer: Gürkan Sengün [EMAIL PROTECTED]
Changed-By: Gürkan Sengün [EMAIL PROTECTED]
Description: 
 gifsicle   - Tool for manipulating GIF images
Changes: 
 gifsicle (1.51-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 8f1639bcff4d3266176aa2cf1b265a25912b1f36 1056 gifsicle_1.51-1.dsc
 d5495c961227ebc54de97c00c19a7de7b75b48e0 249246 gifsicle_1.51.orig.tar.gz
 eb0141e027039cdcc06410348a0d7f44d793d24f 2365 gifsicle_1.51-1.diff.gz
 eea4c5af11c8da884a87dc1f9e4a860149943e9d 136106 gifsicle_1.51-1_i386.deb
Checksums-Sha256: 
 35280ce001482e8154cb16eab08a043150637626558cb3b24b8701ce6d070f98 1056 
gifsicle_1.51-1.dsc
 3c5a7505d147f7e8425e2f8b20caffd44feca3b2a7b6fb4572745bd9df906825 249246 
gifsicle_1.51.orig.tar.gz
 5bf5731944d92563136abb57649837ba7e732e526a14ba78cbbe3ec025bd9d95 2365 
gifsicle_1.51-1.diff.gz
 d40f08fc93cd06db39ead45be160e14a26e0a4b9737da5b79d349be4fd00647a 136106 
gifsicle_1.51-1_i386.deb
Files: 
 30344296b67586b9d8e6a382a5a4e563 1056 graphics optional gifsicle_1.51-1.dsc
 a06d5db7b724660db31da17a2afb8ebb 249246 graphics optional 
gifsicle_1.51.orig.tar.gz
 396f7c87d89cfdfc23219ad3f07d9bb4 2365 graphics optional gifsicle_1.51-1.diff.gz
 24d54d70fa4ed0563f2a62ac4163e6d3 136106 graphics optional 
gifsicle_1.51-1_i386.deb

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

iD8DBQFIKx3++ZNUJLHfmlcRAlruAJ93skRJq3Jg3Lzyx022X4rHJsK3+wCfXQbb
2lYk0QkWiC/OL0mnxi2HFIY=
=CK7C
-END PGP SIGNATURE-


Accepted:
gifsicle_1.51-1.diff.gz
  to pool/main/g/gifsicle/gifsicle_1.51-1.diff.gz
gifsicle_1.51-1.dsc
  to pool/main/g/gifsicle/gifsicle_1.51-1.dsc
gifsicle_1.51-1_i386.deb
  to pool/main/g/gifsicle/gifsicle_1.51-1_i386.deb
gifsicle_1.51.orig.tar.gz
  to pool/main/g/gifsicle/gifsicle_1.51.orig.tar.gz


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



Accepted aufs 0+20080514-1 (source all amd64)

2008-05-14 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 19:02:50 +0200
Source: aufs
Binary: aufs-tools aufs-source linux-patch-aufs
Architecture: source all amd64
Version: 0+20080514-1
Distribution: unstable
Urgency: low
Maintainer: Julian Andres Klode [EMAIL PROTECTED]
Changed-By: Julian Andres Klode [EMAIL PROTECTED]
Description: 
 aufs-source - Source for the aufs driver
 aufs-tools - Tools to manage aufs filesystems
 linux-patch-aufs - Kernel patches for aufs
Changes: 
 aufs (0+20080514-1) unstable; urgency=low
 .
   * New upstream release (mostly bugfix)
   * debian/conf.mk:
 - Enable CONFIG_AUFS_STAT (non-arm[el] architectures only)
 - Enable CONFIG_AUFS_BR_XFS for kernel 2.6.24 and newer
Checksums-Sha1: 
 340b7550952f3e1cd573b89748af3123daf4e128 1093 aufs_0+20080514-1.dsc
 1b96f7f3400d7b395dace846012fc6a473202670 422763 aufs_0+20080514.orig.tar.gz
 120c9449cc7645b3703ebd85a99690270658f904 10749 aufs_0+20080514-1.diff.gz
 e073f8d7335ef66eb257ee912db61293e6a46be1 36220 
linux-patch-aufs_0+20080514-1_all.deb
 021877ad51bbd2fbb34d4a13b22e38b1170aa932 213704 
aufs-source_0+20080514-1_all.deb
 8a6482e2c900264a72a9b66396f9346eb246d249 115416 
aufs-tools_0+20080514-1_amd64.deb
Checksums-Sha256: 
 856bdca87c71207c36c2488132ca7e4421eb1891e9c04dfeadc2e7e87b864da2 1093 
aufs_0+20080514-1.dsc
 dbcd626ad29b135d7b08a6263263ff43493999377a0716187ae9ed395f267542 422763 
aufs_0+20080514.orig.tar.gz
 9fa21487ac3ab5715300f488b882ccf616c451d01eba4a5ea25525786c3cdc50 10749 
aufs_0+20080514-1.diff.gz
 0031e78bfac237cea4115b6bf861b98419fbf0d833a1e87bdf5984c005805198 36220 
linux-patch-aufs_0+20080514-1_all.deb
 5d2aa86c4e8874da182f09f4a6ec1f05153416cdf3a14b90a1a4c4497d0ab9e2 213704 
aufs-source_0+20080514-1_all.deb
 cb88bb9787a063a8ed5eaaa394a7425822c3b12d823d9e9a3ff84b0a47b11d86 115416 
aufs-tools_0+20080514-1_amd64.deb
Files: 
 469b25c3251c6d4a19a2a54757829abd 1093 misc optional aufs_0+20080514-1.dsc
 28dd22e2ec5a13d5235f66b5d7c4a6e3 422763 misc optional 
aufs_0+20080514.orig.tar.gz
 97f9da62399cbe8fae21fad04c80e226 10749 misc optional aufs_0+20080514-1.diff.gz
 53e9845888938a5b61b765d641e785b0 36220 misc optional 
linux-patch-aufs_0+20080514-1_all.deb
 4a60dc201cb314ef0c0d1838ca833b08 213704 misc optional 
aufs-source_0+20080514-1_all.deb
 ef4f7bf6ae2cfc8ff0901c49c75ce94f 115416 misc optional 
aufs-tools_0+20080514-1_amd64.deb

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

iD8DBQFIKydLrCpf/gCCPsIRAic3AJ9WfITfOv0ojN7hQLZscytRJfKs/QCghWsm
2gxueDeSmXNPLIaDuOVcSHM=
=8QOR
-END PGP SIGNATURE-


Accepted:
aufs-source_0+20080514-1_all.deb
  to pool/main/a/aufs/aufs-source_0+20080514-1_all.deb
aufs-tools_0+20080514-1_amd64.deb
  to pool/main/a/aufs/aufs-tools_0+20080514-1_amd64.deb
aufs_0+20080514-1.diff.gz
  to pool/main/a/aufs/aufs_0+20080514-1.diff.gz
aufs_0+20080514-1.dsc
  to pool/main/a/aufs/aufs_0+20080514-1.dsc
aufs_0+20080514.orig.tar.gz
  to pool/main/a/aufs/aufs_0+20080514.orig.tar.gz
linux-patch-aufs_0+20080514-1_all.deb
  to pool/main/a/aufs/linux-patch-aufs_0+20080514-1_all.deb


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



Accepted libcoat-perl 0.300-1 (source all)

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

Format: 1.8
Date: Wed, 14 May 2008 20:49:18 +0200
Source: libcoat-perl
Binary: libcoat-perl
Architecture: source all
Version: 0.300-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group [EMAIL PROTECTED]
Changed-By: gregor herrmann [EMAIL PROTECTED]
Description: 
 libcoat-perl - light and Moose-compatible meta-class for Perl5
Changes: 
 libcoat-perl (0.300-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/copyright: adjust according the upstream changes.
   * debian/control: add new (build) dependency on libdatetime-perl.
Checksums-Sha1: 
 ad7cea452b81a30b87171c714a763c37dab719e1 1382 libcoat-perl_0.300-1.dsc
 6f5a7bfefd76ec713e630cfb369f45b12afbbe24 28834 libcoat-perl_0.300.orig.tar.gz
 49e2c2a3d16e72e067929ba1c99e603de36b659c 2593 libcoat-perl_0.300-1.diff.gz
 317f7c595e36244cf1f772e0b917b36e36f19cdb 31438 libcoat-perl_0.300-1_all.deb
Checksums-Sha256: 
 a6bde95d39fc3886ced493e644ca5994bad42a1e594dc0d981609a0218807860 1382 
libcoat-perl_0.300-1.dsc
 3b46daaf96dd0207be19b163fa7b8e877c0360592d22a9ccfb9ec89ecfce54ca 28834 
libcoat-perl_0.300.orig.tar.gz
 6b6a3e8767d41f4dd7fa7911b8fb528f994a3773bbc3bc1f6561cf505ecc18b0 2593 
libcoat-perl_0.300-1.diff.gz
 e5e4a38b36ea2da9a8ae27e9675caa9818d0b8177d8ebc3d4436c0d78de4b176 31438 
libcoat-perl_0.300-1_all.deb
Files: 
 1e2a2241886129c2338a5e7751a23b17 1382 perl optional libcoat-perl_0.300-1.dsc
 bb702ccf5379e0c94c402af780d8c4de 28834 perl optional 
libcoat-perl_0.300.orig.tar.gz
 31b7d77ecc6ea5efcd0169377958 2593 perl optional 
libcoat-perl_0.300-1.diff.gz
 550d6749162f64cd4cb23029493db42a 31438 perl optional 
libcoat-perl_0.300-1_all.deb

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

iD8DBQFIKzRaOzKYnQDzz+QRAgxTAJ9xEAXnrlKsF01lP9ek1txoLAHR9gCgmrDe
rW7YwR3atAoPwikN3tOqca8=
=9j8s
-END PGP SIGNATURE-


Accepted:
libcoat-perl_0.300-1.diff.gz
  to pool/main/libc/libcoat-perl/libcoat-perl_0.300-1.diff.gz
libcoat-perl_0.300-1.dsc
  to pool/main/libc/libcoat-perl/libcoat-perl_0.300-1.dsc
libcoat-perl_0.300-1_all.deb
  to pool/main/libc/libcoat-perl/libcoat-perl_0.300-1_all.deb
libcoat-perl_0.300.orig.tar.gz
  to pool/main/libc/libcoat-perl/libcoat-perl_0.300.orig.tar.gz


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



Accepted lynis 1.1.2-1 (source all)

2008-05-14 Thread Francisco Garcia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 12 May 2008 22:28:43 +0200
Source: lynis
Binary: lynis
Architecture: source all
Version: 1.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Francisco Garcia [EMAIL PROTECTED]
Changed-By: Francisco Garcia [EMAIL PROTECTED]
Description: 
 lynis  - security auditing tool for Unix based systems
Changes: 
 lynis (1.1.2-1) unstable; urgency=low
 .
   * New upstream release
   * Added /etc/lynis/plugins dir.
   * Removed the change in profiles and includedir path in debian/rules.
 Lynis-1.1.2 checks for the correct paths.
Checksums-Sha1: 
 aebb61f13f8a2e1d1ed758fb053d3aa23e42ca47 988 lynis_1.1.2-1.dsc
 83fa87c65bb2df6d295f9f2868a889dba914ba76 52595 lynis_1.1.2.orig.tar.gz
 a7667b808f5d68ec7545c95715ba0f5362f0e813 2040 lynis_1.1.2-1.diff.gz
 d6623674014c031b589bad414cdc279c823042fc 43986 lynis_1.1.2-1_all.deb
Checksums-Sha256: 
 8dfc370678246ad93c98a32010ab66bdf2b7e67d2c687536c51b0711924e83f4 988 
lynis_1.1.2-1.dsc
 be34f1bb2bbc6fb818b8845a6869cc2f7ea04f5e57eb80903056dd274e4f3302 52595 
lynis_1.1.2.orig.tar.gz
 b06a04e0d37efa78a66a35b425df45fde718f824e5187bd7e586ae345000a6b1 2040 
lynis_1.1.2-1.diff.gz
 6acbe8ae3f3a8557e5aeb20bcca7648a334d3c0accfef08f1d9d94fdf3dbf551 43986 
lynis_1.1.2-1_all.deb
Files: 
 8f6a51159a87d180e555e6f0c5b24429 988 utils optional lynis_1.1.2-1.dsc
 ae61225cfe1783005830241e67a9b353 52595 utils optional lynis_1.1.2.orig.tar.gz
 9658d7c67f4789e64102e3900ed7ce29 2040 utils optional lynis_1.1.2-1.diff.gz
 47c4361339b7d8a983d57e40c4d25b4c 43986 utils optional lynis_1.1.2-1_all.deb

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

iD8DBQFIKy7wKFvXofIqeU4RApvoAJoCCeomIdc+qxLr8jAA68qn5FtYzACfYqtM
eia8MBG9/SQizHxe3KozCEE=
=VROS
-END PGP SIGNATURE-


Accepted:
lynis_1.1.2-1.diff.gz
  to pool/main/l/lynis/lynis_1.1.2-1.diff.gz
lynis_1.1.2-1.dsc
  to pool/main/l/lynis/lynis_1.1.2-1.dsc
lynis_1.1.2-1_all.deb
  to pool/main/l/lynis/lynis_1.1.2-1_all.deb
lynis_1.1.2.orig.tar.gz
  to pool/main/l/lynis/lynis_1.1.2.orig.tar.gz


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



Accepted libnet-scp-perl 0.08-1 (source all)

2008-05-14 Thread Ivan Kohler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 10:59:33 -0700
Source: libnet-scp-perl
Binary: libnet-scp-perl
Architecture: source all
Version: 0.08-1
Distribution: unstable
Urgency: low
Maintainer: Ivan Kohler [EMAIL PROTECTED]
Changed-By: Ivan Kohler [EMAIL PROTECTED]
Description: 
 libnet-scp-perl - Perl extension for secure copy protocol
Changes: 
 libnet-scp-perl (0.08-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 724eedf5da9ec4da3262b11deee157e17262e148 1007 libnet-scp-perl_0.08-1.dsc
 4ccf31d11a0e1c5018482dcfab6f01ff1cc1d5da 6425 libnet-scp-perl_0.08.orig.tar.gz
 755b6ce01fa322e94ff3431ee802d44396fabef2 2033 libnet-scp-perl_0.08-1.diff.gz
 cea31dab3e8e51799c5b33342e2c7b293a3a5ef9 13482 libnet-scp-perl_0.08-1_all.deb
Checksums-Sha256: 
 0c3a4c1a4e53c5573de0cd03a2e2c56fa71ac6b047fdd67bc3f4071d0b4eb30b 1007 
libnet-scp-perl_0.08-1.dsc
 88a9b2df69e769e5855a408b19f61915b82e8fe070ab5cf4d525dd3b8bbe31c1 6425 
libnet-scp-perl_0.08.orig.tar.gz
 af404986ff5d44df8620c51afe59f91166815864ba8b81be538f04ddfa66c0c6 2033 
libnet-scp-perl_0.08-1.diff.gz
 d6d8d6c6463a1c7d9599f3df3759e555f919abe1be27472131a99eadb23406af 13482 
libnet-scp-perl_0.08-1_all.deb
Files: 
 a73f257dd3b6c9673bc783d5977914a3 1007 perl optional libnet-scp-perl_0.08-1.dsc
 09005478b3eb9f151163f58d03cf83c4 6425 perl optional 
libnet-scp-perl_0.08.orig.tar.gz
 c64abcce6e5dff46cbef693b06260309 2033 perl optional 
libnet-scp-perl_0.08-1.diff.gz
 4a3bfe296b50100567e8fff144e7fb00 13482 perl optional 
libnet-scp-perl_0.08-1_all.deb

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

iD8DBQFIKykDgYcvm1TBwckRAh26AJ9CAbwqhTrVENTGSVqt64JxGt2eYgCfeuko
VtROpBO3wFxujiwME/88VQE=
=D/4T
-END PGP SIGNATURE-


Accepted:
libnet-scp-perl_0.08-1.diff.gz
  to pool/main/libn/libnet-scp-perl/libnet-scp-perl_0.08-1.diff.gz
libnet-scp-perl_0.08-1.dsc
  to pool/main/libn/libnet-scp-perl/libnet-scp-perl_0.08-1.dsc
libnet-scp-perl_0.08-1_all.deb
  to pool/main/libn/libnet-scp-perl/libnet-scp-perl_0.08-1_all.deb
libnet-scp-perl_0.08.orig.tar.gz
  to pool/main/libn/libnet-scp-perl/libnet-scp-perl_0.08.orig.tar.gz


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



Accepted gcc-4.2 4.2.3-6 (source all i386)

2008-05-14 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 01 May 2008 19:35:43 +0200
Source: gcc-4.2
Binary: gcc-4.2-base gcc-4.2 gcc-4.2-multilib gcc-4.2-hppa64 cpp-4.2 
gcc-4.2-locales g++-4.2 g++-4.2-multilib gobjc++-4.2 gobjc++-4.2-multilib 
gobjc-4.2 gobjc-4.2-multilib gfortran-4.2 gfortran-4.2-multilib libgfortran2 
libgfortran2-dbg lib64gfortran2 lib64gfortran2-dbg lib32gfortran2 
lib32gfortran2-dbg libstdc++6-4.2-dev libstdc++6-4.2-pic libstdc++6-4.2-dbg 
lib32stdc++6-4.2-dbg lib64stdc++6-4.2-dbg libstdc++6-4.2-doc gcc-4.2-soft-float 
gcc-4.2-source
Architecture: source all i386
Version: 4.2.3-6
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers [EMAIL PROTECTED]
Changed-By: Matthias Klose [EMAIL PROTECTED]
Description: 
 cpp-4.2- The GNU C preprocessor
 g++-4.2- The GNU C++ compiler
 g++-4.2-multilib - The GNU C++ compiler (multilib files)
 gcc-4.2- The GNU C compiler
 gcc-4.2-base - The GNU Compiler Collection (base package)
 gcc-4.2-hppa64 - The GNU C compiler (cross compiler for hppa64)
 gcc-4.2-locales - The GNU C compiler (native language support files)
 gcc-4.2-multilib - The GNU C compiler (multilib files)
 gcc-4.2-soft-float - The soft-floating-point gcc libraries (arm)
 gcc-4.2-source - Source of the GNU Compiler Collection
 gfortran-4.2 - The GNU Fortran 95 compiler
 gfortran-4.2-multilib - The GNU Fortran 95 compiler (multilib files)
 gobjc++-4.2 - The GNU Objective-C++ compiler
 gobjc++-4.2-multilib - The GNU Objective-C++ compiler (multilib files)
 gobjc-4.2  - The GNU Objective-C compiler
 gobjc-4.2-multilib - The GNU Objective-C compiler (multilib files)
 lib32gfortran2 - Runtime library for GNU Fortran applications (32bit)
 lib32gfortran2-dbg - Runtime library for GNU Fortran applications (32 bit 
debug symbol
 lib32stdc++6-4.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 lib64gfortran2 - Runtime library for GNU Fortran applications (64bit)
 lib64gfortran2-dbg - Runtime library for GNU Fortran applications (64bit debug 
symbols
 lib64stdc++6-4.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libgfortran2 - Runtime library for GNU Fortran applications
 libgfortran2-dbg - Runtime library for GNU Fortran applications (debug symbols)
 libstdc++6-4.2-dbg - The GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.2-dev - The GNU Standard C++ Library v3 (development files)
 libstdc++6-4.2-doc - The GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.2-pic - The GNU Standard C++ Library v3 (shared library subset 
kit)
Changes: 
 gcc-4.2 (4.2.3-6) unstable; urgency=low
 .
   [Arthur Loiret]
   * Update gdc to upstream SVN 20080427.
 - Don't use svn-gdc-updates this time, new orig tarball.
 .
   [Matthias Klose]
   * Update to SVN 20080512 from the ubuntu/gcc-4_2-branch, corresponding
 to the GCC-4.2.4 release candidate 1.
 - Addresses CERT Vulnerability Note VU#162289.
   * Don't build Obj-C++ on armel.
Checksums-Sha1: 
 de3152645094bb65dee65dc696189443569981fa 2687 gcc-4.2_4.2.3-6.dsc
 4f6ecf2fdc1ad8081d79cf1c6fc316c0445dac2e 1114844 gcc-4.2_4.2.3-6.diff.gz
 f743eb5ad549bd619f6b5cbc8b42a88b8f134f32 38230626 
gcc-4.2-source_4.2.3-6_all.deb
 6b4662e822efe6b02267c0c1988a1fde32e111c6 6614846 
libstdc++6-4.2-doc_4.2.3-6_all.deb
 a65e7b6aed40c7c0f626d3f75f6c46fb7e6b7d46 1951792 
gcc-4.2-locales_4.2.3-6_all.deb
 9c3081e12f443c18a2e7d58d8867f779e4dcd514 98068 gcc-4.2-base_4.2.3-6_i386.deb
 3babcf5f5163ace6e703c10ec74a72993ad2ec69 2470952 cpp-4.2_4.2.3-6_i386.deb
 76a9babaaf3ef85e877b3ae82b8ea2ff2762e969 852 
gobjc++-4.2-multilib_4.2.3-6_i386.deb
 cb5fadbc0938471926fc00cd95cc8aac31254553 2665300 gobjc++-4.2_4.2.3-6_i386.deb
 dad9639ee76af57d58c59cf90f8eea382c6c6669 934 
gobjc-4.2-multilib_4.2.3-6_i386.deb
 5607d3e18df92d864ec17c95b9f10c7fc6e8ad5a 2613366 gobjc-4.2_4.2.3-6_i386.deb
 e33933402441ef3fed9e3179b3cac90703558626 996712 
g++-4.2-multilib_4.2.3-6_i386.deb
 b92cbdb600f10d32615600cbed5879f5581fb760 2781068 g++-4.2_4.2.3-6_i386.deb
 bd3bc2087d8a36057c875e8acb0d0fa71037dca2 4958066 
lib64stdc++6-4.2-dbg_4.2.3-6_i386.deb
 ca6f530b6424a530185165594c7cb907417d20a2 1183434 
libstdc++6-4.2-dev_4.2.3-6_i386.deb
 586a60f8b369913cedd2ba10c9fb43fad6efe67b 468814 
libstdc++6-4.2-pic_4.2.3-6_i386.deb
 75c7c3f7bf636eb6169363995377e28fffccaede 4804034 
libstdc++6-4.2-dbg_4.2.3-6_i386.deb
 eacf13fff0b3c837e289bc49003e25fa5bd7a378 196832 libgfortran2_4.2.3-6_i386.deb
 c4997a4785a0296afc203d62b41722c820b25b08 320320 
libgfortran2-dbg_4.2.3-6_i386.deb
 076c6008123463414e1b67cf6c8a995e05d8385a 223254 lib64gfortran2_4.2.3-6_i386.deb
 e6c5a41559c121c4a70dcdbd72bb633a9c00b220 408644 
lib64gfortran2-dbg_4.2.3-6_i386.deb
 4aa773f736f5997342b4fc0116d3a65c4258499d 260788 
gfortran-4.2-multilib_4.2.3-6_i386.deb
 f5c19ae0e4296a7f4b4dc92f2cfd818966359b47 2834510 gfortran-4.2_4.2.3-6_i386.deb
 ee80aa51b7d3c73ebc49b1f3444f35f020ab6204 57226 
gcc-4.2-multilib_4.2.3-6_i386.deb
 99d8cb7c8ad34ec9163472cb5fcc32f0790a4672 405106 

Accepted gambas2 2.6-1 (source all amd64)

2008-05-14 Thread José L. Redrejo Rodríguez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 19:54:45 +0200
Source: gambas2
Binary: gambas2 gambas2-dev gambas2-doc gambas2-gb-chart gambas2-gb-compress 
gambas2-gb-compress-bzlib2 gambas2-gb-compress-zlib gambas2-gb-crypt 
gambas2-gb-db gambas2-gb-db-firebird gambas2-gb-db-form gambas2-gb-db-mysql 
gambas2-gb-db-odbc gambas2-gb-db-postgresql gambas2-gb-db-sqlite2 
gambas2-gb-db-sqlite gambas2-gb-desktop gambas2-gb-form gambas2-gb-form-dialog 
gambas2-gb-form-mdi gambas2-gb-gtk gambas2-gb-gtk-ext gambas2-gb-gtk-svg 
gambas2-gb-gui gambas2-gb-pdf gambas2-gb-image gambas2-gb-info gambas2-gb-net 
gambas2-gb-net-curl gambas2-gb-net-smtp gambas2-gb-opengl gambas2-gb-pcre 
gambas2-gb-qt gambas2-gb-qt-ext gambas2-gb-qt-kde gambas2-gb-qt-kde-html 
gambas2-gb-qt-opengl gambas2-gb-report gambas2-gb-sdl gambas2-gb-settings 
gambas2-gb-v4l gambas2-gb-vb gambas2-gb-web gambas2-gb-xml gambas2-gb-xml-rpc 
gambas2-gb-xml-xslt gambas2-ide gambas2-runtime gambas2-script
Architecture: source all amd64
Version: 2.6-1
Distribution: unstable
Urgency: low
Maintainer: José L. Redrejo Rodríguez [EMAIL PROTECTED]
Changed-By: José L. Redrejo Rodríguez [EMAIL PROTECTED]
Description: 
 gambas2- Complete visual development environment for Gambas
 gambas2-dev - Gambas compilation tools
 gambas2-doc - Gambas documentation
 gambas2-gb-chart - The Gambas charting component
 gambas2-gb-compress - The Gambas compression component
 gambas2-gb-compress-bzlib2 - The Gambas bzlib2 component
 gambas2-gb-compress-zlib - The Gambas zlib compression component
 gambas2-gb-crypt - The Gambas crypt encription component
 gambas2-gb-db - Gambas database access common libraries
 gambas2-gb-db-firebird - The Firebird driver for the Gambas database component
 gambas2-gb-db-form - Gambas database bound controls
 gambas2-gb-db-mysql - The MySQL driver for the Gambas database component
 gambas2-gb-db-odbc - The Gambas ODBC driver database component
 gambas2-gb-db-postgresql - The PostgreSQL driver for the Gambas database 
component
 gambas2-gb-db-sqlite - The Gambas sqlite3 driver database component
 gambas2-gb-db-sqlite2 - The Gambas sqlite2 driver database component
 gambas2-gb-desktop - Gambas Portland project compatibility component
 gambas2-gb-form - A gambas native form component
 gambas2-gb-form-dialog - A gambas native mdi form component
 gambas2-gb-form-mdi - A gambas native mdi form component
 gambas2-gb-gtk - The Gambas gtk component
 gambas2-gb-gtk-ext - The Gambas extended gtk GUI component
 gambas2-gb-gtk-svg - The Gambas SVG importing component
 gambas2-gb-gui - The graphical toolkit selector component
 gambas2-gb-image - A Gambas image effects component
 gambas2-gb-info - A Gambas information component
 gambas2-gb-net - The Gambas networking component
 gambas2-gb-net-curl - The Gambas advanced networking component
 gambas2-gb-net-smtp - Gambas component to use smtp protocol
 gambas2-gb-opengl - The OpenGL component for Gambas
 gambas2-gb-pcre - The Gambas regexp component
 gambas2-gb-pdf - The Gambas pdf component
 gambas2-gb-qt - The Gambas Qt GUI component
 gambas2-gb-qt-ext - The Gambas extended Qt GUI component
 gambas2-gb-qt-kde - The Gambas KDE component
 gambas2-gb-qt-kde-html - The Gambas KHTML component
 gambas2-gb-qt-opengl - OpenGL with QT toolkit Gambas component
 gambas2-gb-report - Gambas report component
 gambas2-gb-sdl - The Gambas SDL component
 gambas2-gb-settings - Gambas utilities class
 gambas2-gb-v4l - The Gambas video for Linux component
 gambas2-gb-vb - The Gambas to Visual Basic(tm) compatibility component
 gambas2-gb-web - Gambas CGI for web applications component
 gambas2-gb-xml - Gambas XML component
 gambas2-gb-xml-rpc - Gambas RPC component
 gambas2-gb-xml-xslt - Gambas XSLT component
 gambas2-ide - Visual development environment for the Gambas programming languag
 gambas2-runtime - The Gambas runtime
 gambas2-script - The Gambas scripter
Changes: 
 gambas2 (2.6-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 e750aed018de4d040777586e59b4a7ac583daf6e 2401 gambas2_2.6-1.dsc
 1494e4c01bb71466533ca5e04ea5f0d44b92e21b 15465389 gambas2_2.6.orig.tar.gz
 16d64ee78cdaa3fc439ea4b1548f547c4c2cb217 15337 gambas2_2.6-1.diff.gz
 4bee67b94fc6d401acefb92a3dfd586870720d99 5396 gambas2_2.6-1_all.deb
 031feb4fc9bd177b2fe65bb9b777e3195930eee5 9233392 gambas2-doc_2.6-1_all.deb
 f9c76c6d16803e185eb39a8dea6a874ac544beb1 33758 gambas2-gb-chart_2.6-1_all.deb
 f48d89f5e39d8732c6bd2c9f0d90a71b7e80c506 36550 gambas2-gb-db-form_2.6-1_all.deb
 d5f6d5f2c68bbff58c87bc0acc3b904ef44bbe49 812708 gambas2-gb-form_2.6-1_all.deb
 f1caf764f27f34eadd8b35629abf5346cee73898 9100 
gambas2-gb-form-dialog_2.6-1_all.deb
 f863c682c0632f3bef365a47c5a4625497efe580 19500 
gambas2-gb-form-mdi_2.6-1_all.deb
 c1af713c39f29339712851c7234a94f0028c24dd 20784 gambas2-gb-info_2.6-1_all.deb
 282182868cb142b1b49a96702fc914d176364bbe 53160 gambas2-gb-report_2.6-1_all.deb
 

Accepted cmake 2.6.0-4 (source amd64)

2008-05-14 Thread Pierre Habouzit
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 21:01:42 +0200
Source: cmake
Binary: cmake
Architecture: source amd64
Version: 2.6.0-4
Distribution: unstable
Urgency: low
Maintainer: A. Maitland Bottoms [EMAIL PROTECTED]
Changed-By: Pierre Habouzit [EMAIL PROTECTED]
Description: 
 cmake  - A cross-platform, open-source make system
Closes: 471975
Changes: 
 cmake (2.6.0-4) unstable; urgency=low
 .
   * Really remove dependency on emacsen-common (Closes: #471975).
Checksums-Sha1: 
 0f2833739256eedf1b42835feec03b1079963339 1040 cmake_2.6.0-4.dsc
 0b5f6ec3d5ea898e71ab8b513e39d3265ab605fb 153630 cmake_2.6.0-4.diff.gz
 66d47731e53b4b97ddce0f9f2ae39f2fd9d8643a 7599732 cmake_2.6.0-4_amd64.deb
Checksums-Sha256: 
 7a8c53677361fd36668e0d138e1ca04c430d6105c054d018269cf41e9f94f5b6 1040 
cmake_2.6.0-4.dsc
 7ef05ed0855ff9331f3a29f23818e6877bda9b0f07161d510c23e2a9d9c0bfaa 153630 
cmake_2.6.0-4.diff.gz
 c3b610a1b1bf0e07766e4bccd7e283a5dd244ebacf57172c465c47cd64118663 7599732 
cmake_2.6.0-4_amd64.deb
Files: 
 7578416761f4f897f4a6d43c4d4e1019 1040 devel optional cmake_2.6.0-4.dsc
 a3546c6f883522e837285ce5158e25e7 153630 devel optional cmake_2.6.0-4.diff.gz
 54d169d6915b2ec66df092173797b236 7599732 devel optional cmake_2.6.0-4_amd64.deb

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

iD8DBQFIKzgOvGr7W6HudhwRAvTaAKCQnT1iSF4SyoZKmK4iqiXraE44MgCdH/B+
Q7e1HJTYDneYI9IpN3VGnN8=
=HC5K
-END PGP SIGNATURE-


Accepted:
cmake_2.6.0-4.diff.gz
  to pool/main/c/cmake/cmake_2.6.0-4.diff.gz
cmake_2.6.0-4.dsc
  to pool/main/c/cmake/cmake_2.6.0-4.dsc
cmake_2.6.0-4_amd64.deb
  to pool/main/c/cmake/cmake_2.6.0-4_amd64.deb


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



Accepted glademm 2.6.0-2 (source amd64)

2008-05-14 Thread Christoph Egger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 09 May 2008 17:30:17 +0200
Source: glademm
Binary: glademm
Architecture: source amd64
Version: 2.6.0-2
Distribution: unstable
Urgency: low
Maintainer: Christoph Egger [EMAIL PROTECTED]
Changed-By: Christoph Egger [EMAIL PROTECTED]
Description: 
 glademm- C++ code generator for glade and glade-2
Closes: 281736 474123
Changes: 
 glademm (2.6.0-2) unstable; urgency=low
 .
   * New maintainer. (Closes: #474123: ITA: glademm -- C++ code generator
 for glade and glade-2)
   * add watch file (Closes: #281736)
Checksums-Sha1: 
 82c66b2deacd776be92aae615223c88fa605c9ab 977 glademm_2.6.0-2.dsc
 fb08df9279034b592f24a8637115e97cc73f9366 7126 glademm_2.6.0-2.diff.gz
 6cc6e29f417f7fae0bd69ef0b5f576f8e08c3396 595394 glademm_2.6.0-2_amd64.deb
Checksums-Sha256: 
 cb93a70fb88d42b378288d46f1b42fc55c3b75f678ba8378c9ce3f21fa64a1c2 977 
glademm_2.6.0-2.dsc
 a71e7aad3dfaf59178450afc5c8e0144c892bbbfea18b41843e911ec8d25d028 7126 
glademm_2.6.0-2.diff.gz
 1d1e57a41fffa32343debfcf97681f1dedbafce9c082481c5c0d363c5b6d88a1 595394 
glademm_2.6.0-2_amd64.deb
Files: 
 268250015d30d0d6d1d3da03ace46d93 977 devel optional glademm_2.6.0-2.dsc
 8f6d23a9047958fd162129b9123521a8 7126 devel optional glademm_2.6.0-2.diff.gz
 d3cdcd09f4c65010adbccff0a4028cd6 595394 devel optional 
glademm_2.6.0-2_amd64.deb

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

iD8DBQFIKzlQbMaawmho9B8RAl0FAJ4pbTbbr4ojbK6AK5LgolGpfPE7HwCgmcbq
vQHuBCoONWx5lVypRM34nII=
=2sml
-END PGP SIGNATURE-


Accepted:
glademm_2.6.0-2.diff.gz
  to pool/main/g/glademm/glademm_2.6.0-2.diff.gz
glademm_2.6.0-2.dsc
  to pool/main/g/glademm/glademm_2.6.0-2.dsc
glademm_2.6.0-2_amd64.deb
  to pool/main/g/glademm/glademm_2.6.0-2_amd64.deb


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



Accepted python-biopython 1.45-2 (source all powerpc)

2008-05-14 Thread Philipp Benner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 23 Apr 2008 00:01:16 +0200
Source: python-biopython
Binary: python-biopython python-biopython-doc python-biopython-sql 
python-biopython-martel
Architecture: source all powerpc
Version: 1.45-2
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team [EMAIL PROTECTED]
Changed-By: Philipp Benner [EMAIL PROTECTED]
Description: 
 python-biopython - Python library for bioinformatics
 python-biopython-doc - Documentation for the Biopython library
 python-biopython-martel - Flat file parser for the Biopython library
 python-biopython-sql - SQL support for the Biopython library
Changes: 
 python-biopython (1.45-2) unstable; urgency=low
 .
   * Add dependency on python-numeric-ext (Bio.PDB uses MLab from this package)
Checksums-Sha1: 
 769aec35bb414dd3c3fe041bf07c9dd898c65a1e 1531 python-biopython_1.45-2.dsc
 2f490d32230976421b1f3f0d2223498869931d57 4340 python-biopython_1.45-2.diff.gz
 7e80480f0549255b2c633ce0cfa3ac918750e744 3072408 
python-biopython-doc_1.45-2_all.deb
 0a33598988a8aa306e129aa09fcb92bee9848f17 20008 
python-biopython-sql_1.45-2_all.deb
 0851c0d28ece016233cd56d7fa27b79bb68d7791 59140 
python-biopython-martel_1.45-2_all.deb
 a0aa055d34ff5142728ae533cc8403729ce6eaf6 1005922 
python-biopython_1.45-2_powerpc.deb
Checksums-Sha256: 
 7b3d30ae3d0e7fb5eed1c7ef46d861ba9b0e5e5d04964d523a221932803ec5f2 1531 
python-biopython_1.45-2.dsc
 2cc4a0f908450f0a15c72d6abdb463102ed10a9fc8abc80ab9f13903aae4ae95 4340 
python-biopython_1.45-2.diff.gz
 f65dcd3ff4f249e46fe4ae03d8b550641319ff53e7a5d9e89fa92bb766737669 3072408 
python-biopython-doc_1.45-2_all.deb
 04676693c7af2600408648dfb7ba2c0a91902ef2e973a8a585d877a7f4051091 20008 
python-biopython-sql_1.45-2_all.deb
 3c931f549cd3e951f7cd8c12c52203b9995174d50f34304f67381404c8107cc1 59140 
python-biopython-martel_1.45-2_all.deb
 93a27d8f62482a8dcb7ea568e62a64950a4e352550bf64e142b8b9d3c37aa7a7 1005922 
python-biopython_1.45-2_powerpc.deb
Files: 
 52f7196f8382a566d01763ecfdf79789 1531 python optional 
python-biopython_1.45-2.dsc
 c680f360e8eb218af2019313b8f5c919 4340 python optional 
python-biopython_1.45-2.diff.gz
 e4b60519b3326d4913210f832e4cd0e9 3072408 doc optional 
python-biopython-doc_1.45-2_all.deb
 036c21dffa7a7cf43735ba2fe5641022 20008 python optional 
python-biopython-sql_1.45-2_all.deb
 13d521017c3c6a41ae141f5ec3659e66 59140 python optional 
python-biopython-martel_1.45-2_all.deb
 d0474461dfb35f8cbe6dddb625b7d473 1005922 python optional 
python-biopython_1.45-2_powerpc.deb

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

iD8DBQFIKy+4qVw77OuI6TARAk89AJ9SjEjyko9tE/C6iRrYy5RztMHbLACfSX9h
Ej0PNw3Mf18lY8ePN6Yvmhs=
=WTkO
-END PGP SIGNATURE-


Accepted:
python-biopython-doc_1.45-2_all.deb
  to pool/main/p/python-biopython/python-biopython-doc_1.45-2_all.deb
python-biopython-martel_1.45-2_all.deb
  to pool/main/p/python-biopython/python-biopython-martel_1.45-2_all.deb
python-biopython-sql_1.45-2_all.deb
  to pool/main/p/python-biopython/python-biopython-sql_1.45-2_all.deb
python-biopython_1.45-2.diff.gz
  to pool/main/p/python-biopython/python-biopython_1.45-2.diff.gz
python-biopython_1.45-2.dsc
  to pool/main/p/python-biopython/python-biopython_1.45-2.dsc
python-biopython_1.45-2_powerpc.deb
  to pool/main/p/python-biopython/python-biopython_1.45-2_powerpc.deb


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



Accepted libnet-ssh-perl 0.09-1 (source all)

2008-05-14 Thread Ivan Kohler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 11:45:30 -0700
Source: libnet-ssh-perl
Binary: libnet-ssh-perl
Architecture: source all
Version: 0.09-1
Distribution: unstable
Urgency: low
Maintainer: Ivan Kohler [EMAIL PROTECTED]
Changed-By: Ivan Kohler [EMAIL PROTECTED]
Description: 
 libnet-ssh-perl - Perl extension for secure shell
Closes: 278647 333248
Changes: 
 libnet-ssh-perl (0.09-1) unstable; urgency=low
 .
   * New upstream release
   * Depend on ssh-client instead of ssh (closes: Bug#333248)
   * Better description (closes: Bug#278647).
Checksums-Sha1: 
 fc239655cb9110f9a9a95d289855ce442776dac1 1003 libnet-ssh-perl_0.09-1.dsc
 b476a0aa9a2ff82d984b6336bcf70b6fbcb9905e 5081 libnet-ssh-perl_0.09.orig.tar.gz
 58ed651c7650ef06a27fd3b9a2c5b68db641bb3f 1963 libnet-ssh-perl_0.09-1.diff.gz
 5e44ad4c71fde6afd566b7c2849d24312300920f 11400 libnet-ssh-perl_0.09-1_all.deb
Checksums-Sha256: 
 5ed19a2f3eb6b63b21c50d88bcf2596952265908db63df86337c2fe61bd73093 1003 
libnet-ssh-perl_0.09-1.dsc
 7c71c7c3cbe953234dfe25bcc1ad7edb0e1f5a0578601f5523bc6070262a3817 5081 
libnet-ssh-perl_0.09.orig.tar.gz
 599e060bc8f39222f57e7b1389bbd47cefaf4cfca3d379d7641fe0fe032c4d2b 1963 
libnet-ssh-perl_0.09-1.diff.gz
 3040e9371d50b09ac095ae60d5db9d303bea90a5b6e601d830813ecdc8ae07a7 11400 
libnet-ssh-perl_0.09-1_all.deb
Files: 
 02ba98b1f620dad512e33c07ca2c4538 1003 perl optional libnet-ssh-perl_0.09-1.dsc
 96837a66d0329e49cf5febd8b1ff4315 5081 perl optional 
libnet-ssh-perl_0.09.orig.tar.gz
 06df0db607191b7c89403c6b0e80d578 1963 perl optional 
libnet-ssh-perl_0.09-1.diff.gz
 2fe2f0fdc57e62982e2ff01c7471209b 11400 perl optional 
libnet-ssh-perl_0.09-1_all.deb

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

iD8DBQFIK0bygYcvm1TBwckRAmf9AJ9+Png2OcZW/f6bnNUEHGD+YqPsiACfZBzM
rhTEbbhjqTj1FX+/ouxgUXI=
=CN2T
-END PGP SIGNATURE-


Accepted:
libnet-ssh-perl_0.09-1.diff.gz
  to pool/main/libn/libnet-ssh-perl/libnet-ssh-perl_0.09-1.diff.gz
libnet-ssh-perl_0.09-1.dsc
  to pool/main/libn/libnet-ssh-perl/libnet-ssh-perl_0.09-1.dsc
libnet-ssh-perl_0.09-1_all.deb
  to pool/main/libn/libnet-ssh-perl/libnet-ssh-perl_0.09-1_all.deb
libnet-ssh-perl_0.09.orig.tar.gz
  to pool/main/libn/libnet-ssh-perl/libnet-ssh-perl_0.09.orig.tar.gz


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



Accepted atari-bootstrap 3.3-6 (source m68k)

2008-05-14 Thread Stephen R. Marenka
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 29 Apr 2008 07:45:43 -0500
Source: atari-bootstrap
Binary: atari-bootstrap
Architecture: source m68k
Version: 3.3-6
Distribution: unstable
Urgency: low
Maintainer: Roman Hodek [EMAIL PROTECTED]
Changed-By: Stephen R. Marenka [EMAIL PROTECTED]
Description: 
 atari-bootstrap - Bootloader for Linux/m68k kernels for Atari TOS
Closes: 478362
Changes: 
 atari-bootstrap (3.3-6) unstable; urgency=low
 .
   * Fix bashism: 'type -p' - 'type' (Closes: #478362).
   * Change section from base to admin to match sid's reality.
Checksums-Sha1: 
 26a8ebc1e0a8113e5c3f74462b945cd738879f62 1090 atari-bootstrap_3.3-6.dsc
 deeaddb60a0f002a18be6efff218adcf1b151576 188301 atari-bootstrap_3.3-6.diff.gz
 9f166f84ba11d324e24b6cc637af9b8dfb4a362e 239380 atari-bootstrap_3.3-6_m68k.deb
Checksums-Sha256: 
 85d9d2b7f4767e3c62302640a1b85bac86010faa0debad74284e078842941722 1090 
atari-bootstrap_3.3-6.dsc
 eee1089c3f3c049d500b2a72d05e0bc90b8b78c234ee1a701eadd00799504f5d 188301 
atari-bootstrap_3.3-6.diff.gz
 1d25115f7a8ba8da5aacdaaf55639e806bf8a86149020d7bec28a185460e13a5 239380 
atari-bootstrap_3.3-6_m68k.deb
Files: 
 0f129194895e19e671f3e4c4b974aabf 1090 admin required atari-bootstrap_3.3-6.dsc
 5340768bff6c954f0bbfd9c341591e8b 188301 admin required 
atari-bootstrap_3.3-6.diff.gz
 c39b10edda2d65c2e681507466e603c9 239380 admin required 
atari-bootstrap_3.3-6_m68k.deb

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

iD8DBQFIK0HoVKM4J7YoSbMRAg97AJ0SbZLXDmmwP/oBHYVbTlC40Atd6QCeKxxX
sMS9kqEXz/Umlhza21CRyR4=
=TeHw
-END PGP SIGNATURE-


Accepted:
atari-bootstrap_3.3-6.diff.gz
  to pool/main/a/atari-bootstrap/atari-bootstrap_3.3-6.diff.gz
atari-bootstrap_3.3-6.dsc
  to pool/main/a/atari-bootstrap/atari-bootstrap_3.3-6.dsc
atari-bootstrap_3.3-6_m68k.deb
  to pool/main/a/atari-bootstrap/atari-bootstrap_3.3-6_m68k.deb


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



Accepted wise 2.4.1-5 (source all powerpc)

2008-05-14 Thread Philipp Benner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 04 May 2008 15:19:01 +0900
Source: wise
Binary: wise wise-doc
Architecture: source all powerpc
Version: 2.4.1-5
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team [EMAIL PROTECTED]
Changed-By: Philipp Benner [EMAIL PROTECTED]
Description: 
 wise   - comparison of biopolymers, commonly DNA and protein sequences
 wise-doc   - documentation for the wise package
Closes: 478639
Changes: 
 wise (2.4.1-5) unstable; urgency=low
 .
   * Removed a bashism in debian/rules (Closes: #478639).
Checksums-Sha1: 
 a06773da7421f50d12250e9be97f180700c475af 1339 wise_2.4.1-5.dsc
 7ffb0d1a0fdcd78cd2ff8563d20f2634442cc6b7 9623 wise_2.4.1-5.diff.gz
 626dc6bd5d2a9b882587bec23fee8ae10c2f1c29 721354 wise-doc_2.4.1-5_all.deb
 8ce5b4c6dd9543ea5357d340da839bdf1cefb503 4626828 wise_2.4.1-5_powerpc.deb
Checksums-Sha256: 
 26d6e643a1ca87f55bcc2e748e89e1f3279e3ce12f089bb42af975a79627ef0b 1339 
wise_2.4.1-5.dsc
 4d5db836b4e503c4bc31fa0dbd46e50fe6b0a6ad0daf75146786de0ca1cfc830 9623 
wise_2.4.1-5.diff.gz
 c5eefd37f73a5b8c4abd44c6f69cf0a23d236702abe89f45600896470504e99f 721354 
wise-doc_2.4.1-5_all.deb
 ac9e183bb10278ebe1feaac9e08f0fb18b61bd9f5767be8d9f33c19494bdf3e8 4626828 
wise_2.4.1-5_powerpc.deb
Files: 
 903d1ab71a61ec4559e1fffc5f7bcbed 1339 science optional wise_2.4.1-5.dsc
 476c5509ff9c34f5e75f75672878e7c6 9623 science optional wise_2.4.1-5.diff.gz
 2139ce6356ea86e03f1756a2b9b2fbff 721354 doc optional wise-doc_2.4.1-5_all.deb
 a186652853b8cb914fdc37051d850bb5 4626828 science optional 
wise_2.4.1-5_powerpc.deb

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

iD8DBQFIKyWQqVw77OuI6TARAtE2AKCQZtdKfrU2EMiappQpJ+eSxfnk6wCfTPLn
REr19UGF0vRlDxTrZEJJ+KY=
=xjuL
-END PGP SIGNATURE-


Accepted:
wise-doc_2.4.1-5_all.deb
  to pool/main/w/wise/wise-doc_2.4.1-5_all.deb
wise_2.4.1-5.diff.gz
  to pool/main/w/wise/wise_2.4.1-5.diff.gz
wise_2.4.1-5.dsc
  to pool/main/w/wise/wise_2.4.1-5.dsc
wise_2.4.1-5_powerpc.deb
  to pool/main/w/wise/wise_2.4.1-5_powerpc.deb


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



Accepted tasksel 2.74 (source all)

2008-05-14 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 17:07:03 -0400
Source: tasksel
Binary: tasksel tasksel-data
Architecture: source all
Version: 2.74
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team [EMAIL PROTECTED]
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 tasksel- Tool for selecting tasks for installation on Debian systems
 tasksel-data - Official tasks used for installation of Debian systems
Closes: 469948 471172 475398 479430 479432 481255
Changes: 
 tasksel (2.74) unstable; urgency=low
 .
   [ Translations of debconf templates ]
   * Kurdish added. Closes: #479430
   * Belarusian added.
 .
   [ Translations of programs ]
   * Kurdish added. Closes: #479432
   * Belarusian added.
 .
   [ Translations of tasks ]
   * Galician updated
   * Swedish updated
   * Indonesian updated. Closes: #469948
   * Slovak updated
   * Belarusian added.
 .
   [ Joey Hess ]
   * Add nvclock and toshset to laptop task. Closes: #471172
   * Add hpijs-ppds to print-server task. These ppds are recommended ones for
 many HP printers.
   * Add hp-ppd, to cover a few other HP printers.
   * Add openprinting-ppds, supporting a lot of postscript printers.
   * Add kerneloops to dekstop tasks. Closes: #475398
   * Re-add r2034; xorg is in testing.
 .
   [ Eddy Petri?or ]
   * added iceweasel-l10n-ro to the romanian-desktop task
 .
   [ Joey Hess ]
   * Fix enhances handling in the case where a task enhances another
 task that is not available, or not installable. The enhancing task
 should not be installed in this case. Closes:# 481255
   * Move all packages out of Key for the korean task. It should be installed
 even if some are unavailable.
Checksums-Sha1: 
 89e267ea775e0eca98648538899f6a47e1bb3c4c 847 tasksel_2.74.dsc
 5d382f1aa8e0f8d3e7b8154c516b1c4a8134002b 505284 tasksel_2.74.tar.gz
 2e68c0652183c2ab33f26b38754c19b568046b6c 81778 tasksel_2.74_all.deb
 cf534e69c41791c8fdb27dc3dcc5b8b6aad0f773 382528 tasksel-data_2.74_all.deb
Checksums-Sha256: 
 a913af8c8926d765b68d90f4f690c184beabe9ca83764205b60508b03f9814d7 847 
tasksel_2.74.dsc
 00aa50c8c061af151b66acdbf6cac979c45dbd0a4348b3582d8e5bb7f5168cb9 505284 
tasksel_2.74.tar.gz
 8fd286ff6fb7a34264190e86fc34285fd872c0e82263338074f34e039aa21e7d 81778 
tasksel_2.74_all.deb
 72a4465bc90a2ab483de1644495bae2338d4d7796406b4f6c276dd8cb8c50ef0 382528 
tasksel-data_2.74_all.deb
Files: 
 f693ae1a013a7e1c8a357f4d1aeb71b4 847 admin important tasksel_2.74.dsc
 badc2428892af47723f86659ef063b39 505284 admin important tasksel_2.74.tar.gz
 7dfc95890530b3c01367380a4ade2435 81778 admin important tasksel_2.74_all.deb
 2e5bda5339f7dff45832a19fbd267d5e 382528 admin important 
tasksel-data_2.74_all.deb

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

iD8DBQFIK1Tu2tp5zXiKP0wRAmJEAJ4iXPu2jOy5/Tvl/Lbp+++A76A/QwCg0Tqp
JvNb/qjBv5XdhZox77YWVUU=
=hJL4
-END PGP SIGNATURE-


Accepted:
tasksel-data_2.74_all.deb
  to pool/main/t/tasksel/tasksel-data_2.74_all.deb
tasksel_2.74.dsc
  to pool/main/t/tasksel/tasksel_2.74.dsc
tasksel_2.74.tar.gz
  to pool/main/t/tasksel/tasksel_2.74.tar.gz
tasksel_2.74_all.deb
  to pool/main/t/tasksel/tasksel_2.74_all.deb


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



Accepted gwget2 0.99-3 (source i386)

2008-05-14 Thread Arnaud Fontaine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 01 May 2008 13:59:52 +0100
Source: gwget2
Binary: gwget epiphany-extension-gwget
Architecture: source i386
Version: 0.99-3
Distribution: unstable
Urgency: low
Maintainer: Arnaud Fontaine [EMAIL PROTECTED]
Changed-By: Arnaud Fontaine [EMAIL PROTECTED]
Description: 
 epiphany-extension-gwget - Gwget extension for Epiphany web browser
 gwget  - GNOME front-end for wget
Closes: 478356
Changes: 
 gwget2 (0.99-3) unstable; urgency=low
 .
   * New email address.
   * Port to epiphany 2.22. Thanks to Albert Damen [EMAIL PROTECTED].
 Closes: #478356.
 + New patch 60_epi-222, allows epiphany 2.22.
 + Pass epiphany-version 2.22 to configure.
 + Update build-deps and deps.
   * debian/control.in:
 + Add Vcs-{Svn,Browser} and Homepage fields (dpkg supports them now).
 + Update Standards-Version to 3.7.3. No changes needed.
   * debian/copyright:
 + Convert to UTF-8.
Checksums-Sha1: 
 ebbff5979ad9cb4f35a3f848c8f5552ecb126013 1510 gwget2_0.99-3.dsc
 25b74040700673521e0f49a9012c24a13ce5edd6 6494 gwget2_0.99-3.diff.gz
 be495fdb0cfb6c77b0e9360b3a881d67836b4652 235648 gwget_0.99-3_i386.deb
 2e0b88d641a175cbd5d23df965de0cb5643bb140 33932 
epiphany-extension-gwget_0.99-3_i386.deb
Checksums-Sha256: 
 50b2fd1151feb5dc7670ec25fa501f9953f971b74744931f7d19dfeed50171e6 1510 
gwget2_0.99-3.dsc
 0794383d717a4af3555d429041ebe82f0846fb0334c552cf0e0676ad05aa2599 6494 
gwget2_0.99-3.diff.gz
 823f8914e7eedcd1e4fd0905a856ff88f390397666f97d0169615845fd953d7c 235648 
gwget_0.99-3_i386.deb
 3a04556c838d3b619c0b07fcefd988fdf56254aa81dbd2443d87ba4b624de202 33932 
epiphany-extension-gwget_0.99-3_i386.deb
Files: 
 73f52fbd7a7985f84c5673dd8e90dc1c 1510 gnome optional gwget2_0.99-3.dsc
 7e9fc2e47df94dc70826b66ee7bbed0b 6494 gnome optional gwget2_0.99-3.diff.gz
 9fdd4f05f9ae6119d012def371209aea 235648 gnome optional gwget_0.99-3_i386.deb
 1e9a465fd93371b6d0d2d8b6b84c8f5b 33932 gnome optional 
epiphany-extension-gwget_0.99-3_i386.deb

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

iD8DBQFIK1ysvfKiIF42GdMRAg5kAJ9HbiRxgCrgF1aQGsrSsdaMj/K60gCfc63s
j8tPQYqfeP7LjNLJNnB2JZY=
=3MYJ
-END PGP SIGNATURE-


Accepted:
epiphany-extension-gwget_0.99-3_i386.deb
  to pool/main/g/gwget2/epiphany-extension-gwget_0.99-3_i386.deb
gwget2_0.99-3.diff.gz
  to pool/main/g/gwget2/gwget2_0.99-3.diff.gz
gwget2_0.99-3.dsc
  to pool/main/g/gwget2/gwget2_0.99-3.dsc
gwget_0.99-3_i386.deb
  to pool/main/g/gwget2/gwget_0.99-3_i386.deb


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



Accepted adabrowse 4.0.2-6 (source amd64)

2008-05-14 Thread Ludovic Brenta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 23:40:56 +0200
Source: adabrowse
Binary: adabrowse
Architecture: source amd64
Version: 4.0.2-6
Distribution: unstable
Urgency: low
Maintainer: Ludovic Brenta [EMAIL PROTECTED]
Changed-By: Ludovic Brenta [EMAIL PROTECTED]
Description: 
 adabrowse  - HTML generator for Ada 95 library unit specifications
Closes: 479936
Changes: 
 adabrowse (4.0.2-6) unstable; urgency=low
 .
   * Add mips, mipsel and ppc64.
   * Recompile using gnat-4.3 and asis 2007.
   * Update Standards-Version to 3.7.3 with no changes required.
   * debian/adabrowse.gpr: adjust to asis.gpr now being a library project
 file.  Closes: #479936.
   * debian/compat: new.
   * debian/rules: do not export DH_COMPAT anymore.
Checksums-Sha1: 
 906118c27826775a4e81e27affdbfa61caad2bcb 1054 adabrowse_4.0.2-6.dsc
 edd7751376322cf5942de598b5a24ed1b7d45460 9293 adabrowse_4.0.2-6.diff.gz
 340c2c0b631f2ad7eb7aa2fd3abcfa6b26d5378f 602220 adabrowse_4.0.2-6_amd64.deb
Checksums-Sha256: 
 91e5a0add44cf6d3770414f585af23eb6cabe71082ec1a50d206a8b72338 1054 
adabrowse_4.0.2-6.dsc
 3d7637295c2d60db27fc9322630110c1c0d8ea044335d197701a651c3a0418d2 9293 
adabrowse_4.0.2-6.diff.gz
 90e4093b1b76ac808c13f26388fb5040a9e9a322708c3e40f8fd57ee0a2380ac 602220 
adabrowse_4.0.2-6_amd64.deb
Files: 
 ca9111d5853d85e7c96166830ace781b 1054 devel optional adabrowse_4.0.2-6.dsc
 7b3db66d624d9609a68f0bb5d418764b 9293 devel optional adabrowse_4.0.2-6.diff.gz
 4538eef7f3303ee1de3d2b116d8378e5 602220 devel optional 
adabrowse_4.0.2-6_amd64.deb

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

iD8DBQFIK2ADx9kwJZ3/qtQRAkn0AJ98Fo93AEG9Izg94koLDRiSepSLIgCglcPJ
xcZIAYS8JPh7bEfO//j+4LM=
=aOZN
-END PGP SIGNATURE-


Accepted:
adabrowse_4.0.2-6.diff.gz
  to pool/main/a/adabrowse/adabrowse_4.0.2-6.diff.gz
adabrowse_4.0.2-6.dsc
  to pool/main/a/adabrowse/adabrowse_4.0.2-6.dsc
adabrowse_4.0.2-6_amd64.deb
  to pool/main/a/adabrowse/adabrowse_4.0.2-6_amd64.deb


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



Accepted farpd 0.2-9 (source i386)

2008-05-14 Thread Javier Fernandez-Sanguino Pen~a
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 15 May 2008 00:15:59 +0200
Source: farpd
Binary: farpd
Architecture: source i386
Version: 0.2-9
Distribution: unstable
Urgency: low
Maintainer: Javier Fernandez-Sanguino Pen~a [EMAIL PROTECTED]
Changed-By: Javier Fernandez-Sanguino Pen~a [EMAIL PROTECTED]
Description: 
 farpd  - Fake ARP user space daemon
Changes: 
 farpd (0.2-9) unstable; urgency=low
 .
   * Describe in the manpage known issues with nmap as described in Honeyd's
 forums. More specifically at
 
http://honeyd.org/phpBB2/viewtopic.php?t=473sid=8be0cc5c1edeb38458d41c15df04bbc0
Checksums-Sha1: 
 9e704353d6752330ec45cc50cf38a51fee590205 986 farpd_0.2-9.dsc
 350cba5d6eb16ae40676d8b3155f69c66ff60323 68845 farpd_0.2-9.diff.gz
 a49de39d59660e677f81b333c06958fe87b74813 13870 farpd_0.2-9_i386.deb
Checksums-Sha256: 
 68c74d8926c23f3ca97defbaf2d2b34c237e005749e42f187ac1871eb2113640 986 
farpd_0.2-9.dsc
 35b5ee473acac40a76563fb3a4e0c562d6a26c0cf7e7d2c94fd2715ed992d8c9 68845 
farpd_0.2-9.diff.gz
 67ec02614dc276d63fc46ed913ba8a41bf4a4d03bc44ae87d105bf6aa73c7f3b 13870 
farpd_0.2-9_i386.deb
Files: 
 edfc95990578aaf48557e58b696c0fb3 986 net optional farpd_0.2-9.dsc
 bb1ae974fa721c81b3b62d75b520dfff 68845 net optional farpd_0.2-9.diff.gz
 86c451753b496d03e3107e247ceb9920 13870 net optional farpd_0.2-9_i386.deb

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

iD8DBQFIK2V6sandgtyBSwkRAuQLAJ9o0oDYISdvJ47CyfHMcKTkGeXjYQCZARfa
zqQe8jOn/yOL4eAZ7YwDz7c=
=hDrZ
-END PGP SIGNATURE-


Accepted:
farpd_0.2-9.diff.gz
  to pool/main/f/farpd/farpd_0.2-9.diff.gz
farpd_0.2-9.dsc
  to pool/main/f/farpd/farpd_0.2-9.dsc
farpd_0.2-9_i386.deb
  to pool/main/f/farpd/farpd_0.2-9_i386.deb


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



Accepted debconf 1.5.22 (source all)

2008-05-14 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 19:36:48 -0400
Source: debconf
Binary: debconf debconf-i18n debconf-english debconf-doc debconf-utils
Architecture: source all
Version: 1.5.22
Distribution: unstable
Urgency: low
Maintainer: Debconf Developers [EMAIL PROTECTED]
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 debconf- Debian configuration management system
 debconf-doc - debconf documentation
 debconf-english - small footprint English-only debconf
 debconf-i18n - full internationalization support for debconf
 debconf-utils - debconf utilities
Closes: 462780 477531 478041 478431
Changes: 
 debconf (1.5.22) unstable; urgency=low
 .
   * Improve LDAP KeyByKey option by setting the LDAP search base to the exact
 key that is requested. Patch from Davor Ocelic.
   * Initial support for storing templates database in LDAP. (i18n not
 supported). Patch from Davor Ocelic. Closes: #477531
 .
   [ Manpages Translations ]
   * Russian updated. Closes: #462780
 .
   [ Debconf Translations ]
   * Bulgarian updated.
   * Polish updated. Closes: #478041
 .
   [ Programs Translations ]
   * Bulgarian added. Closes: #478431
Checksums-Sha1: 
 7941875411ad228053e94e9cb2f43c07ed5eabfa 1014 debconf_1.5.22.dsc
 899699580ddf81494e89f099aa640d3dd1d584e4 678083 debconf_1.5.22.tar.gz
 3bdf0c7d85bda154d9679c2740ff4a68ad8c9901 153444 debconf_1.5.22_all.deb
 256ad92567cf9e8b291f26d7098f2973cd97d5ad 171886 debconf-i18n_1.5.22_all.deb
 b8d0bbe9201d8850b133868f2c4f269382c1a292 854 debconf-english_1.5.22_all.deb
 a09ad6ef5b5e5b5b81732b29b53e98719911b413 202082 debconf-doc_1.5.22_all.deb
 c488006d4b77a6b9555a7da693c5d250e7ce7720 42666 debconf-utils_1.5.22_all.deb
Checksums-Sha256: 
 64a42b91bbc67ce6f3afd83a56c8f6cf58f2748fd4b06ecb0b5215fbaa3e136e 1014 
debconf_1.5.22.dsc
 5f53e3365387c9aa46f74dc6ec93e0e635a89858b8d30a7d575706b689257da4 678083 
debconf_1.5.22.tar.gz
 3dc1f8758e53bdc5615928db5c20e110c00b88dca8081b4f7f4e60095c970a37 153444 
debconf_1.5.22_all.deb
 780ea92e840ca6dc900f7a441d1292004f7e276355f14d62848147074fb09e7a 171886 
debconf-i18n_1.5.22_all.deb
 47ac2319fd3ba893aee14b32e950193a87db13502bf7c351cd1bfe298d5483af 854 
debconf-english_1.5.22_all.deb
 91086b63f5a6eac9f113dcc0eb0781036426d62b418276c43bde40bde1c32599 202082 
debconf-doc_1.5.22_all.deb
 30f1c894b2d43f5a099feb9ecc829e08c7d66fdcfddf336b71e32a8421e58c65 42666 
debconf-utils_1.5.22_all.deb
Files: 
 25d197a6cb5e7df7af1e28b27163a26c 1014 admin optional debconf_1.5.22.dsc
 d250122f0aae2622f6c78abb47c302a9 678083 admin optional debconf_1.5.22.tar.gz
 d380b565f7fd63d126332fa93e09fe17 153444 admin important debconf_1.5.22_all.deb
 5c42aa6efa65c24cd5ec0852b9ccc0d2 171886 admin important 
debconf-i18n_1.5.22_all.deb
 10d5cbfa5e500dbce9098cadcb54ee0e 854 admin extra debconf-english_1.5.22_all.deb
 0aaf0a5aaefb141d9cd1aa6b07b711a4 202082 doc optional debconf-doc_1.5.22_all.deb
 fb188821762fcf0f9cf44c4fd22a9cb9 42666 devel optional 
debconf-utils_1.5.22_all.deb

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

iD8DBQFIK3fb2tp5zXiKP0wRAgmCAJ9MffIILr3brcIetQZHxhkkfGIPDgCcCRXA
AZ3sA2QV6l1Na8HQUfbuotk=
=f8qA
-END PGP SIGNATURE-


Accepted:
debconf-doc_1.5.22_all.deb
  to pool/main/d/debconf/debconf-doc_1.5.22_all.deb
debconf-english_1.5.22_all.deb
  to pool/main/d/debconf/debconf-english_1.5.22_all.deb
debconf-i18n_1.5.22_all.deb
  to pool/main/d/debconf/debconf-i18n_1.5.22_all.deb
debconf-utils_1.5.22_all.deb
  to pool/main/d/debconf/debconf-utils_1.5.22_all.deb
debconf_1.5.22.dsc
  to pool/main/d/debconf/debconf_1.5.22.dsc
debconf_1.5.22.tar.gz
  to pool/main/d/debconf/debconf_1.5.22.tar.gz
debconf_1.5.22_all.deb
  to pool/main/d/debconf/debconf_1.5.22_all.deb


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



Accepted powstatd 1.5.1-6 (source i386)

2008-05-14 Thread Peter S Galbraith
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 26 Apr 2008 22:08:51 -0400
Source: powstatd
Binary: powstatd
Architecture: source i386
Version: 1.5.1-6
Distribution: unstable
Urgency: low
Maintainer: Peter S Galbraith [EMAIL PROTECTED]
Changed-By: Peter S Galbraith [EMAIL PROTECTED]
Description: 
 powstatd   - Configurable UPS monitoring daemon
Closes: 432774 448931 477535
Changes: 
 powstatd (1.5.1-6) unstable; urgency=low
 .
   * Bug fix: powstatd-crypt transitional package removed, thanks to Ondrej
 Certik (Closes: #477535).
   * Debconf translations:
 - Portuguese from raduz - Portuguese Translation Team (Closes: #432774).
 - Dutch, thanks to cobaco (aka Bart Cornelis) (Closes: #448931).
Checksums-Sha1: 
 94614a7d55a57cc5dbcebc64ad5032ec089d06c7 1084 powstatd_1.5.1-6.dsc
 27bcc0efdb4d6cd6fcff012c56b706d83fbb2dc4 15205 powstatd_1.5.1-6.diff.gz
 330114137ff6df9720da9c91d45901dfb505e3d8 42038 powstatd_1.5.1-6_i386.deb
Checksums-Sha256: 
 c27e80fbe9e652b7aeaab3e17a749cde7a7d4c4b1c452990f1ea9130447dd683 1084 
powstatd_1.5.1-6.dsc
 4c98cad3d52e9e0b107baef99503138ec232636abc462bdb0195f1c706f73e3e 15205 
powstatd_1.5.1-6.diff.gz
 1c1d5cd502a27ba42422899934ad8e48a6ed0eea27cbc1081f7a2bfa1b542865 42038 
powstatd_1.5.1-6_i386.deb
Files: 
 0c7f37eb04b059288e45cee8983917c4 1084 admin extra powstatd_1.5.1-6.dsc
 030c6eed3ed0713201d1ae9ef727063c 15205 admin extra powstatd_1.5.1-6.diff.gz
 15938cec9f96bd07cc9cda17f2729fb6 42038 admin extra powstatd_1.5.1-6_i386.deb

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

iQCVAwUBSCt0+7wVH8jSqROhAQJ/RwP+P3ZqwdXtvkcR87FbaUhQ7M+0JOzgtdw5
+oU9MRUJ8on16RL+Kk1btmsK4ottLOUPlEiKhNRXJmrVDF5EgNhMwQ09sw8aC4lb
0j+8VxLVhPtPFOa8mBQg4MOwXlxtrpbHZ/mqqikC/mSZyc47GKaz+nH2MQ+4YHD/
7hdri7iJfRM=
=+QED
-END PGP SIGNATURE-


Accepted:
powstatd_1.5.1-6.diff.gz
  to pool/main/p/powstatd/powstatd_1.5.1-6.diff.gz
powstatd_1.5.1-6.dsc
  to pool/main/p/powstatd/powstatd_1.5.1-6.dsc
powstatd_1.5.1-6_i386.deb
  to pool/main/p/powstatd/powstatd_1.5.1-6_i386.deb


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



Accepted splitvt 1.6.6-5 (source i386)

2008-05-14 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 19:46:03 -0400
Source: splitvt
Binary: splitvt
Architecture: source i386
Version: 1.6.6-5
Distribution: unstable
Urgency: low
Maintainer: Joey Hess [EMAIL PROTECTED]
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 splitvt- run two programs in a split screen
Changes: 
 splitvt (1.6.6-5) unstable; urgency=low
 .
   * debhelper v7; rules file minimisation
   * Looks like I had forgotten to call dh_md5sums before.
Checksums-Sha1: 
 d2c465fa6d2c3fa4774e9f0f30ee22a630cd4ea0 1082 splitvt_1.6.6-5.dsc
 a19eec779ebff8ca4fd62b63ec3d993b7e427c48 10860 splitvt_1.6.6-5.diff.gz
 06bb08a253e5b66d6143eaba7dfe9abcb4d4377c 34760 splitvt_1.6.6-5_i386.deb
Checksums-Sha256: 
 8cb0a5a4a3f08d1f3853a3ab6cdc073cc31502f17dff2270d408740877af7d70 1082 
splitvt_1.6.6-5.dsc
 397c1a161f9e95ba5f3cc293ecf0e0e4899daa96ae14dc849a8d815b4e08680b 10860 
splitvt_1.6.6-5.diff.gz
 7bcdbd9e8b7cbbb107b9bdc8f1879d1e2811cfaadc6d6a77ca9c447aca897a3c 34760 
splitvt_1.6.6-5_i386.deb
Files: 
 1f1482512dd6bf2cb531958c85ce4876 1082 utils optional splitvt_1.6.6-5.dsc
 babc06221d02dcbd4c5ade9f404f6c34 10860 utils optional splitvt_1.6.6-5.diff.gz
 49d1f0e408424a942dc5c588bc5d4c02 34760 utils optional splitvt_1.6.6-5_i386.deb

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

iD8DBQFIK3pv2tp5zXiKP0wRAgOoAJ9/mhkyJwKKy8RqMbQIZ30Deemp3ACfcSJy
dkikBhgHMLsf56KhrL4BB2U=
=h+Ha
-END PGP SIGNATURE-


Accepted:
splitvt_1.6.6-5.diff.gz
  to pool/main/s/splitvt/splitvt_1.6.6-5.diff.gz
splitvt_1.6.6-5.dsc
  to pool/main/s/splitvt/splitvt_1.6.6-5.dsc
splitvt_1.6.6-5_i386.deb
  to pool/main/s/splitvt/splitvt_1.6.6-5_i386.deb


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



Accepted mr 0.29 (source all)

2008-05-14 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 19:38:18 -0400
Source: mr
Binary: mr
Architecture: source all
Version: 0.29
Distribution: unstable
Urgency: low
Maintainer: Joey Hess [EMAIL PROTECTED]
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 mr - a Multiple Repository management tool
Closes: 480424 480580
Changes: 
 mr (0.29) unstable; urgency=low
 .
   * Allow environment variables in section headers. Pass such headers
 through the shell to expand them. Closes: #480580
   * For the checkout command, MR_REPO was set to the name of the parent
 directory of the directory to checkout. It is supposed to be the
 path to the directory itself though; fixed this. Closes: #480424
Checksums-Sha1: 
 8b0e451bcd3a00c4159f25354bfd7635d44f6322 749 mr_0.29.dsc
 9337e155cdf9172951d5349317097be46f335c0d 31028 mr_0.29.tar.gz
 d36d00809e22438c6876c1b195600ba34f3d1a5f 27280 mr_0.29_all.deb
Checksums-Sha256: 
 c6dedf2e5812d6c84ec71ac28b6274d9960f4eaef5dde7d19fbac4dd31a8d42b 749 
mr_0.29.dsc
 a82ef672daa20e5fa32a1cd9622e867a694d3cb032e51b93f73b04d6c1dc79e4 31028 
mr_0.29.tar.gz
 5ce19189f3c5de9904d5387ba0c080f88d84fe852ac2859490829f3c7e5cc7a6 27280 
mr_0.29_all.deb
Files: 
 5da89311d7e98b2d820dceffc11b6677 749 utils optional mr_0.29.dsc
 0c42a91390bbbaf33db3edc8663b9ec8 31028 utils optional mr_0.29.tar.gz
 6dbee42d25715b708f0b63bd1d137f81 27280 utils optional mr_0.29_all.deb

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

iD8DBQFIK3gY2tp5zXiKP0wRArkEAJ9WcYwcyCcyhyzs1JqlFpcxZXjy6QCfW3bC
gxf2FX+/0Xu0BU+rbcwO/dQ=
=vQlF
-END PGP SIGNATURE-


Accepted:
mr_0.29.dsc
  to pool/main/m/mr/mr_0.29.dsc
mr_0.29.tar.gz
  to pool/main/m/mr/mr_0.29.tar.gz
mr_0.29_all.deb
  to pool/main/m/mr/mr_0.29_all.deb


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



Accepted moreutils 0.30 (source i386)

2008-05-14 Thread Joey Hess
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 19:37:42 -0400
Source: moreutils
Binary: moreutils
Architecture: source i386
Version: 0.30
Distribution: unstable
Urgency: low
Maintainer: Joey Hess [EMAIL PROTECTED]
Changed-By: Joey Hess [EMAIL PROTECTED]
Description: 
 moreutils  - additional unix utilities
Changes: 
 moreutils (0.30) unstable; urgency=low
 .
   * debhelper v7; rules file minimisation
   * Use DESTDIR instead of PREFIX.
   * Add a DOCBOOK2XMAN setting. (Greg KH)
   * ifne: Add -n which makes it run the command if stdin is empty.
   * ifne: If no command is specified, print usage information.
Checksums-Sha1: 
 4d7d11a75c6f06986ba875a81cedc205a9e217d3 822 moreutils_0.30.dsc
 efa46f948c34ea661a9da8656a1a0750df5ad2bf 37050 moreutils_0.30.tar.gz
 5545904eff6ce970f59b4e1700e6e36f24ee9376 44588 moreutils_0.30_i386.deb
Checksums-Sha256: 
 1b59344da2a9ffd16989b44a1e6b6f8a405c86a69f92178f26e1b4c01b524834 822 
moreutils_0.30.dsc
 c263966ed0728ed6157340becd7f781280b1eef05583196ff10f8e46d8f5fcd8 37050 
moreutils_0.30.tar.gz
 f612c3f9690eb7c13d0d645a1f33cbf9de2370a8b302584471fe72eea33e3197 44588 
moreutils_0.30_i386.deb
Files: 
 f12bdf1c9e9bd208cbe4ea8bf3787455 822 utils optional moreutils_0.30.dsc
 436125ebe74b4c1247cf03402fa55f21 37050 utils optional moreutils_0.30.tar.gz
 bd92d078bcae1f3dd2d1fbdd43804d4b 44588 utils optional moreutils_0.30_i386.deb

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

iD8DBQFIK3jW2tp5zXiKP0wRAovzAKCrhSJkpmdHwL2irwBE+Gzoc1eFcgCaA2So
80HvaLmsW12gjWbUpI5igTo=
=JN5i
-END PGP SIGNATURE-


Accepted:
moreutils_0.30.dsc
  to pool/main/m/moreutils/moreutils_0.30.dsc
moreutils_0.30.tar.gz
  to pool/main/m/moreutils/moreutils_0.30.tar.gz
moreutils_0.30_i386.deb
  to pool/main/m/moreutils/moreutils_0.30_i386.deb


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



Accepted fltk1.1 1.1.9-2 (source all amd64)

2008-05-14 Thread Aaron M. Ucko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 21:12:54 -0400
Source: fltk1.1
Binary: fluid libfltk1.1-dev libfltk1.1 libfltk1.1-dbg fltk1.1-doc fltk1.1-games
Architecture: source amd64 all
Version: 1.1.9-2
Distribution: unstable
Urgency: low
Maintainer: Aaron M. Ucko [EMAIL PROTECTED]
Changed-By: Aaron M. Ucko [EMAIL PROTECTED]
Description: 
 fltk1.1-doc - Fast Light Toolkit - documentation
 fltk1.1-games - Fast Light Toolkit - example games: checkers, sudoku
 fluid  - Fast Light Toolkit - user interface designer
 libfltk1.1 - Fast Light Toolkit - shared libraries
 libfltk1.1-dbg - Fast Light Toolkit - shared libraries with debugging symbols
 libfltk1.1-dev - Fast Light Toolkit - development files
Closes: 481026
Changes: 
 fltk1.1 (1.1.9-2) unstable; urgency=low
 .
   * Tweak fl_xfont emulation to map generic font names (sans, etc.) to
 customary equivalents (such as helvetica).  (Closes: #481026.)
Checksums-Sha1: 
 292a72ea59d9323c0f71e4163a25cb60822ea317 1344 fltk1.1_1.1.9-2.dsc
 b480a1e5c3ef0d8e9d8096abdb1aa59034155054 67896 fltk1.1_1.1.9-2.diff.gz
 140a08f1f39e8d0f11e9bdac94d0e2b76947961a 257250 fluid_1.1.9-2_amd64.deb
 0d0617c4f74fc07dd1beebf650ab458058d837fd 636834 
libfltk1.1-dev_1.1.9-2_amd64.deb
 bfb85a0c976e484479063173409934388780cb1d 455868 libfltk1.1_1.1.9-2_amd64.deb
 d648c8cf8f9e7fffd13af7bcfa02b2457aae0018 1172112 
libfltk1.1-dbg_1.1.9-2_amd64.deb
 375e9c2a97974e000956dc54284e412b6b4d77d2 177952 fltk1.1-games_1.1.9-2_amd64.deb
 aae5a656a8a7d138286e13419f9f4a62c711ff41 2277932 fltk1.1-doc_1.1.9-2_all.deb
Checksums-Sha256: 
 12c7451c53e7955d871c072ff454069433e86843f706e8f27c8e803c5459bdcf 1344 
fltk1.1_1.1.9-2.dsc
 1deda63ba2e53c095d4850d21e6fb58ec4fc7b6168b4721b624524db6dd92022 67896 
fltk1.1_1.1.9-2.diff.gz
 2ad1f86b567a7fa6920b314d37df56d1cb098ac6b9a39c00805fc97773568424 257250 
fluid_1.1.9-2_amd64.deb
 aebf524e8f98ef44a65455078aa7ef2f1a7d7041a993f0693deba305f951ac54 636834 
libfltk1.1-dev_1.1.9-2_amd64.deb
 779569b325696d83d7d71db3227ccdd084e31e59c448f9760a740594b3db94a7 455868 
libfltk1.1_1.1.9-2_amd64.deb
 09e7d7c75d4c6ca048546f015445650bf693e6c3ab0f741818a896254420a61a 1172112 
libfltk1.1-dbg_1.1.9-2_amd64.deb
 02eb0366226f8e53b425c577e31d5800c2baef4243cb4356058475034880fc83 177952 
fltk1.1-games_1.1.9-2_amd64.deb
 2e739c18b0d16c0c2fa3bd8da5263df2927b79c16ce84a600ec7d96721255f7a 2277932 
fltk1.1-doc_1.1.9-2_all.deb
Files: 
 b643ee96cc1a93ea5f35b447c0196588 1344 libs optional fltk1.1_1.1.9-2.dsc
 28b3b669bd8df6dec81e0e6d98abab4b 67896 libs optional fltk1.1_1.1.9-2.diff.gz
 b74e64d6a3d56eea6759fcde89a00380 257250 devel optional fluid_1.1.9-2_amd64.deb
 fa19d980c4305a27932b945c01e71646 636834 libdevel optional 
libfltk1.1-dev_1.1.9-2_amd64.deb
 43a0782925792ce53077aaccc705ed58 455868 libs optional 
libfltk1.1_1.1.9-2_amd64.deb
 c40157f01e819ceedf8330a8544eaf3c 1172112 libdevel extra 
libfltk1.1-dbg_1.1.9-2_amd64.deb
 342d6781ab45f182f2993dcc58de3af7 177952 games optional 
fltk1.1-games_1.1.9-2_amd64.deb
 36cb20eff471200c8d1bb5b26a45ad36 2277932 doc optional 
fltk1.1-doc_1.1.9-2_all.deb

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

iD8DBQFIK49wWNCxsidXLEcRAkrHAJsHWwiY7GHYYjT7eci/iFIefWaAvgCguFQW
8rLcALA4SfLGNb9gtX0Qa4Q=
=3cmt
-END PGP SIGNATURE-


Accepted:
fltk1.1-doc_1.1.9-2_all.deb
  to pool/main/f/fltk1.1/fltk1.1-doc_1.1.9-2_all.deb
fltk1.1-games_1.1.9-2_amd64.deb
  to pool/main/f/fltk1.1/fltk1.1-games_1.1.9-2_amd64.deb
fltk1.1_1.1.9-2.diff.gz
  to pool/main/f/fltk1.1/fltk1.1_1.1.9-2.diff.gz
fltk1.1_1.1.9-2.dsc
  to pool/main/f/fltk1.1/fltk1.1_1.1.9-2.dsc
fluid_1.1.9-2_amd64.deb
  to pool/main/f/fltk1.1/fluid_1.1.9-2_amd64.deb
libfltk1.1-dbg_1.1.9-2_amd64.deb
  to pool/main/f/fltk1.1/libfltk1.1-dbg_1.1.9-2_amd64.deb
libfltk1.1-dev_1.1.9-2_amd64.deb
  to pool/main/f/fltk1.1/libfltk1.1-dev_1.1.9-2_amd64.deb
libfltk1.1_1.1.9-2_amd64.deb
  to pool/main/f/fltk1.1/libfltk1.1_1.1.9-2_amd64.deb


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



Accepted postfix 2.5.2-0 (source all i386)

2008-05-14 Thread LaMont Jones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Wed, 14 May 2008 21:30:25 -0600
Source: postfix
Binary: postfix postfix-ldap postfix-cdb postfix-pcre postfix-mysql 
postfix-pgsql postfix-dev postfix-doc
Architecture: all i386 source 
Version: 2.5.2-0
Distribution: unstable
Urgency: low
Maintainer: LaMont Jones [EMAIL PROTECTED]
Changed-By: LaMont Jones [EMAIL PROTECTED]
Description: 
 postfix- High-performance mail transport agent
 postfix-cdb - CDB map support for Postfix
 postfix-dev - Loadable modules development environment for Postfix
 postfix-doc - Documentation for Postfix
 postfix-ldap - LDAP map support for Postfix
 postfix-mysql - MySQL map support for Postfix
 postfix-pcre - PCRE map support for Postfix
 postfix-pgsql - PostgreSQL map support for Postfix
Closes: 468392 479776 480750 480927 480973
Changes: 
 postfix (2.5.2-0) unstable; urgency=low
 .
   [Wietse Venema]
 .
   * New upstream release
 .
   [Sergey Alyoshin]
 .
   * l10n: Po debconf Russian translation.  Closes: #479776
 .
   [LaMont Jones]
 .
   * meta: fix changelog
   * finish cherrypick of 2.5.2~rc2 fixes.
   * lintian: don't depend on a -1 version of a package
   * meta: fix MySQL/PostgreSQL spelling
   * doc-base: change to Network/Communication
 .
   [Rudy Godoy Guillén]
 .
   * l10n: Spanish debconf translation update.  Closes: #480750
 .
   [Michel Grentzinger]
 .
   * l10n: french debconf templates update.  Closes: #468392
 .
   [Jacobo Tarrio]
 .
   * l10n: new Galacian translations.  Closes: #480973
 .
   [Miroslav Kure]
 .
   * l10n: updated Czech (cs.po).  Closes: #480927
Files: 
 076e298302cad45529cc8b211e7a3615 41924 mail extra 
postfix-mysql_2.5.2-0_i386.deb
 05007db9903b90947783329deb701685 1006 mail extra postfix_2.5.2-0.dsc
 2b4e146d8cdf0355b4ff199459c1b9d3 218296 mail extra postfix_2.5.2-0.diff.gz
 3548ae1626006dbd02f73a286a6ef019 1160352 mail extra postfix_2.5.2-0_i386.deb
 3d10ddad626cd74bda47e7a9f8e55d28 47076 mail extra postfix-ldap_2.5.2-0_i386.deb
 51d8f061e1f02e5559ff565a2d436d77 139928 devel extra postfix-dev_2.5.2-0_all.deb
 8242865bd4b895068a186dc6a8b3875d 39944 mail extra postfix-cdb_2.5.2-0_i386.deb
 9dbe19a9d999f0bce9c42699ba2e2104 41992 mail extra 
postfix-pgsql_2.5.2-0_i386.deb
 a33572ae61cc4f0867fbd09a5186ca32 41768 mail extra postfix-pcre_2.5.2-0_i386.deb
 aee7faca77c9eae7ca3c66e6f94feee0 910166 doc extra postfix-doc_2.5.2-0_all.deb
 b0965aea4d548d9bd231af7143aa6942 3155511 mail extra postfix_2.5.2.orig.tar.gz

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

iD8DBQFIK7JizN/kmwoKyScRAmHAAJ9YRTsz5JZeuXVT+Pq0mqVBpm9QwwCglP1y
zdPPTPUSwMT0nIkSPtLB0GQ=
=wGvo
-END PGP SIGNATURE-


Accepted:
postfix-cdb_2.5.2-0_i386.deb
  to pool/main/p/postfix/postfix-cdb_2.5.2-0_i386.deb
postfix-dev_2.5.2-0_all.deb
  to pool/main/p/postfix/postfix-dev_2.5.2-0_all.deb
postfix-doc_2.5.2-0_all.deb
  to pool/main/p/postfix/postfix-doc_2.5.2-0_all.deb
postfix-ldap_2.5.2-0_i386.deb
  to pool/main/p/postfix/postfix-ldap_2.5.2-0_i386.deb
postfix-mysql_2.5.2-0_i386.deb
  to pool/main/p/postfix/postfix-mysql_2.5.2-0_i386.deb
postfix-pcre_2.5.2-0_i386.deb
  to pool/main/p/postfix/postfix-pcre_2.5.2-0_i386.deb
postfix-pgsql_2.5.2-0_i386.deb
  to pool/main/p/postfix/postfix-pgsql_2.5.2-0_i386.deb
postfix_2.5.2-0.diff.gz
  to pool/main/p/postfix/postfix_2.5.2-0.diff.gz
postfix_2.5.2-0.dsc
  to pool/main/p/postfix/postfix_2.5.2-0.dsc
postfix_2.5.2-0_i386.deb
  to pool/main/p/postfix/postfix_2.5.2-0_i386.deb
postfix_2.5.2.orig.tar.gz
  to pool/main/p/postfix/postfix_2.5.2.orig.tar.gz


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



Accepted gnu-smalltalk 3.0.3-1 (source all i386)

2008-05-14 Thread Thomas Girard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 May 2008 22:40:35 +
Source: gnu-smalltalk
Binary: gnu-smalltalk libgst7 libgst-dev gnu-smalltalk-doc gnu-smalltalk-common 
gnu-smalltalk-el libpostgresql-gst libsqlite3-gst libncurses-gst libgdbm-gst 
libtk-gst libgtk2-gst gnu-smalltalk-browser zlib-gst
Architecture: source all i386
Version: 3.0.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNU Smalltalk maintainers [EMAIL PROTECTED]
Changed-By: Thomas Girard [EMAIL PROTECTED]
Description: 
 gnu-smalltalk - GNU Smalltalk interpreter and image
 gnu-smalltalk-browser - GNU Smalltalk browser
 gnu-smalltalk-common - GNU Smalltalk class library sources and extras
 gnu-smalltalk-doc - GNU Smalltalk info documentation
 gnu-smalltalk-el - GNU Smalltalk Emacs front-end
 libgdbm-gst - GDBM bindings for GNU Smalltalk
 libgst-dev - GNU Smalltalk virtual machine development files
 libgst7- GNU Smalltalk virtual machine shared library
 libgtk2-gst - Gtk bindings and environment for GNU Smalltalk
 libncurses-gst - Ncurses bindings for GNU Smalltalk
 libpostgresql-gst - PostgreSQL bindings for GNU Smalltalk
 libsqlite3-gst - SQLite bindings for GNU Smalltalk
 libtk-gst  - Tk environment for GNU Smalltalk
 zlib-gst   - Zlib bindings for GNU Smalltalk
Changes: 
 gnu-smalltalk (3.0.3-1) unstable; urgency=low
 .
   * New upstream release.
   * Drop no longer needed patches:
 o 06_gst_system_libs.diff
 o 10_fix_sqlite3_crash.diff
 o 11_disable_generational_gc_on_alpha.diff
   * Update the following patches:
 o 03_rename_to_gnu_smalltalk.diff
 o 90_rename_to_gnu_smalltalk_part2.diff
 o 99_autotools.diff
   * VFS helper scripts moved to /usr/share/gnu-smalltalk/vfs.
   * Enable Emacs gst-mode autoloading with M-x gst again.
Checksums-Sha1: 
 af9767f2b05cc42df3e4d41cce45b52159d9bd19 1610 gnu-smalltalk_3.0.3-1.dsc
 6b1b72b1d33633374c2f3218e5a1fce35f07f61f 4684034 
gnu-smalltalk_3.0.3.orig.tar.gz
 addc657fd6038b6759fa0562e33e22b9239db07a 90540 gnu-smalltalk_3.0.3-1.diff.gz
 b493394b5e0b699ed1961b93c758b953f2cec6b2 475126 
gnu-smalltalk-doc_3.0.3-1_all.deb
 8f3a4eb38143285f7a75e67628c78cf77c27c9af 1175150 
gnu-smalltalk-common_3.0.3-1_all.deb
 773777b98bc3c92d81441be2b9eda7e31bae3d9d 74020 gnu-smalltalk-el_3.0.3-1_all.deb
 6489ace51913fadc2ee359ac59643ae2c43eae9c 65612 
libpostgresql-gst_3.0.3-1_all.deb
 3cdb0713da34ba3369a12576fe211bc21763605c 76036 libncurses-gst_3.0.3-1_all.deb
 6bdec528a122cbb3c622e9f3664176c648fd6983 651502 gnu-smalltalk_3.0.3-1_i386.deb
 3c06f687c9a1df27c31b1a1ea5245bcbbd528824 303094 libgst7_3.0.3-1_i386.deb
 ab2a22b8b34ada86f9021279813c298aea8a093c 388216 libgst-dev_3.0.3-1_i386.deb
 ee3881c1031ea6296c99f20b24a136e0b3d2a45c 67114 libsqlite3-gst_3.0.3-1_i386.deb
 56bb4398fdaea9bbf191f3e0748c1b9476924195 65014 libgdbm-gst_3.0.3-1_i386.deb
 0d81b2bb148f32e83f6e02315a9cbb70ad121e4d 177170 libtk-gst_3.0.3-1_i386.deb
 6b80fabbdcb2fa7053df20341cd0dba8db862870 231492 libgtk2-gst_3.0.3-1_i386.deb
 4aebaa6c8928b6db90823f0ba670c1f2d9faff8c 137386 
gnu-smalltalk-browser_3.0.3-1_i386.deb
 b8255f456bdcaf11e00e9520dc3c667d07074318 67838 zlib-gst_3.0.3-1_i386.deb
Checksums-Sha256: 
 794ed0f924b117421791b244b8fe767d8a369c7764c3a7466fe6fef03162064c 1610 
gnu-smalltalk_3.0.3-1.dsc
 24110dd2a56509a87c4e304eb1a016496843ed62b35b22c2a351e3a73e5ba5b5 4684034 
gnu-smalltalk_3.0.3.orig.tar.gz
 ac75f710a668f72a1593ac620353adc1110c9b03c71ab2e8e1010e3f82fdff57 90540 
gnu-smalltalk_3.0.3-1.diff.gz
 04ece1324563df36be8122391ffb336c2bd4a35d045af15b86b68091b6ee3cc5 475126 
gnu-smalltalk-doc_3.0.3-1_all.deb
 186cd29133dbc4d4736873caf91d14994c9ad2477d642f84d0f54d11816296fb 1175150 
gnu-smalltalk-common_3.0.3-1_all.deb
 c4bdecdf27ce7331df9b606b672b833153234a5c8649d2e25678da6bae681eb6 74020 
gnu-smalltalk-el_3.0.3-1_all.deb
 52c30186f3baed5cafdd29aff8346f1aae003ca9fcfb37f3bcfa572f8e758bd8 65612 
libpostgresql-gst_3.0.3-1_all.deb
 61cbd89404c759a78172acd9ef9d6f275facbc03426fc50f76dd042fe2dd98ff 76036 
libncurses-gst_3.0.3-1_all.deb
 3907cfcf5f0e4af0cc27242199019d65b04b1b6df6c5879aca1d5999af6cb6ad 651502 
gnu-smalltalk_3.0.3-1_i386.deb
 180abde4b0b0ea2125df9b4e82b3a8893917c9c6c7bc26a237323037a9d03cd8 303094 
libgst7_3.0.3-1_i386.deb
 d1ef4bd2da1171be8d2aa6ef0b1d9c728fce85e8932691768b2ccf2b7ea98c47 388216 
libgst-dev_3.0.3-1_i386.deb
 0b5f6b95ea461ec264cba1972f24595e227af46fd162c3d1700ef8f17b5b32fd 67114 
libsqlite3-gst_3.0.3-1_i386.deb
 83e6aa1d4a94c828a6b0b68d4e101e1502cec53db833a9f709e225aaea193a1d 65014 
libgdbm-gst_3.0.3-1_i386.deb
 5ae3263e72dd95df95de929e3d92f0ae9bb53cf7363c625532f3b6a95ad245c2 177170 
libtk-gst_3.0.3-1_i386.deb
 107199f8b8da59796bcc6e8c3a3f129e6fa242043606e5c52f55c23cd557606f 231492 
libgtk2-gst_3.0.3-1_i386.deb
 54b2fb6eb6acbfa8a8672785025adf0219a8b3264493932cebc94cebdd0037f8 137386 
gnu-smalltalk-browser_3.0.3-1_i386.deb
 6ce46ef4188b893b6e128f11d6c173001b1f5e4818c8e8c0532d39f3b6124790 67838 
zlib-gst_3.0.3-1_i386.deb
Files: