Bug#582357: ITP: ocs -- Open Conference Systems: scholary conference management system

2010-05-20 Thread Thijs Kinkhorst
Package: wnpp
Severity: wishlist
Owner: Thijs Kinkhorst th...@debian.org

* Package name: ocs
  Version : 2.1.2-1
  Upstream Author : Public Knowledge Project
* URL : http://pkp.sfu.ca/?q=ocs
* License : GPL2 or later
  Programming Lang: PHP
  Description : Open Conference Systems: scholary conference management 
system

Open Conference Systems (OCS) is a Web publishing tool that will create a
complete Web presence for your scholarly conference. OCS will allow you to:

 * create a conference Web site
 * compose and send a call for papers
 * electronically accept paper and abstract submissions
 * allow paper submitters to edit their work
 * post conference proceedings and papers in a searchable format
 * post, if you wish, the original data sets
 * register participants
 * integrate post-conference online discussions


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100520071330.12241.89283.report...@incagijs.uvt.nl



Bug#582359: ITP: histwi -- Histwi is a program for Twitter account management

2010-05-20 Thread Bilal Akhtar
Package: wnpp
Severity: wishlist
Owner: Bilal Akhtar bilalakhta...@yahoo.com

* Package name: histwi
  Version : 0.5.3
  Upstream Author : Nikolay Blohin s...@sourcecode.de
* URL : https://launchpad.net/histwi
* License : GPLv3
  Programming Lang: Python
  Description : Histwi is a program for Twitter account management

Histwi has the following features:
  * Download and save all your Tweets to a Database.
  * View and export all saved tweets to html or txt files.
  * Compare your Following to Followers.
  * Follow/Unfollow any of your friends.
  * Tracking new followers.
  * Advanced Twitter Search.
  * Manage multiple Twitter accounts.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520073754.4961.4236.report...@bilal-laptop



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Ron Johnson

On 05/19/2010 05:36 PM, jaromil wrote:


Package: itp
Severity: wishlist
Version: 0.4;

* Package name : dirsum
Version : 0.4
Upstream Author : Dirk Bartleybartle...@chartermi.net
* URL: http://code.dyne.org/?r=dirsum
* License: GNU GPL
Description: Dirsum is a command line tool to assist sorting out which
directories in a filesystem contain the most bytes.  It will sort
all of the subdirectories of a selected path according to the total
bytes of all files in them, including recursion through further
subdirectories and mounted partitions.



What does this do that existing tools don't?

$ du -Sk | sort -nr | head -n10
131960  ./.Newsletters.Washington_Post/cur
115332  ./.Lists.Debian.User.history.2007q1/cur
90704   ./.Lists.Debian.User.history.2007q2/cur
87364   ./.Lists.Debian.User.history.2005q3/cur
80544   ./.Lists.postgresql.history.2007h1/cur
77712   ./.Lists.postgresql.history.2007h2/cur
77540   ./.Lists.Debian.User.history.2006q2/cur
77024   ./.Lists.Debian.User.history.2006q1/cur
75464   ./.Miscelaneous/cur
75008   ./.Lists.Debian.User.history.2007q3/cur

--
Dissent is patriotic, remember?


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf4ff10.6040...@cox.net



Re: SRWare Iron: Chromium without the data-mining

2010-05-20 Thread Fabian Greffrath

Am 18.05.2010 18:02, schrieb Ryan Oram:

Epiphany has iffy tabbed browsing support and the Javascript engine is
incomplete (I can't edit posts on many forums for example). It's a
great browser and should be worked on, but we should take as many
avenues as possible.


I don't see what you mean by iffy tabbed browsing, what's wrong with 
tabbed browsing in Epiphany? And regarding Javascript, I have never 
experienced the issues you describe. Are you sure you are using the 
latest packages (i.e. browser and webkit-engine) from unstable? Have 
you reported your issues upstream?



Epiphany is actually the default browser in infinityOS.


That's good to know.

Thanks,
Fabian



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf4fe8a.20...@greffrath.com



Re: UPG and the default umask

2010-05-20 Thread Santiago Vila
On Thu, 20 May 2010, Roger Leigh wrote:

 On 19/05/2010 23:22, Santiago Vila wrote:
  On Wed, 19 May 2010, Roger Leigh wrote:
  
   On 19/05/10 18:25, Santiago Vila wrote:
For the record: I've changed the umask setting in /etc/profile to this:

if [ `id -u` -ge 1000 ]; then
   
   Should we also be catering for the reserved globally allocated UIDs in the
   range 6-64999 with this check (Policy §9.2.2)?
  
  Hmm, good question. Can you give me an example of an uid which has
  been allocated that way?
 
 I'm not aware of any, TBH.  It's just a case where future use might cause
 potential vulnerabilities if not catered for as for UIDs 1000 since you'd be
 using 0002 where 0022 would be expected.
 
  Perhaps I should follow policy more closely, yes, but that would mean
  using the range 1000-2 only, not 1000-5, as 3-5 is
  reserved (whatever that means).
  
  If an admin which runs out of UIDs in his system modifies
  /etc/adduser.conf, will he remember to modify the upper bound in
  /etc/profile as well?
 
 Maybe the above check should source /etc/adduser.conf and use the values
 LAST_SYSTEM_UID and LAST_UID (or default to 0022 and then enable and 0002
 umask if in the range FIRST_UID to LAST_UID which is a bit simpler):
 
 UMASK=0022
 # In a UPG setup, relax umask to 0002.
 if [ $(id -u) -ge $FIRST_UID -a $(id -u) -le $LAST_UID ]; then
   UMASK=0002
 fi
 umask $UMASK

That would be much nicer, yes, but adduser is priority important and
base-files is required and essential, so that would not work if
adduser is removed, unless we make the code more complex again,
which I'm trying to avoid.

When adduser goes out of UIDs, this is what happens:

Adding user `somebody' ...
adduser: No UID/GID pair is available in the range 1000-1000 (FIRST_UID - 
LAST_UID).
adduser: The user `somebody' was not created.

So I agree that the sane thing to do here is, at least, to use the
same default range as /etc/adduser.conf (which in turn is the range
defined by policy).

I've just modified base-files accordingly to use the UID range 1000-2.

Thanks a lot for the input.


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/alpine.deb.1.10.1005201121130.18...@kolmogorov.unex.es



Bug#582370: ITP: netexplorer -- Gnome/Gtk Network animation tool

2010-05-20 Thread syq
Package: wnpp
Severity: wishlist
Owner: syq wzss...@gmail.com


* Package name: netexplorer
  Version : 1.1a
  Upstream Author : Andrey Churin aachu...@gmail.com
* URL : http://code.google.com/p/ns-3-shop/
* License : GPLv2
  Programming Lang: C++
  Description : Gnome/Gtk Network animation tool

  Network animation tool for ns3 on gtk platform.
  .
  At this moment only nam model (NetAnim) is supported.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520092415.7601.36552.report...@syq-laptop



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Yves-Alexis Perez
On 20/05/2010 11:21, Ron Johnson wrote:
 hat does this do that existing tools don't?
 
 $ du -Sk | sort -nr | head -n10
 131960./.Newsletters.Washington_Post/cur

not sure dirsum can do that either, but it's painful that du itself
can't sort, since you can't use du -h before piping to sort.

Cheers,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf5097e.80...@debian.org



Re: UPG and the default umask

2010-05-20 Thread Raphael Hertzog
Hi,

On Thu, 20 May 2010, Santiago Vila wrote:
 So I agree that the sane thing to do here is, at least, to use the
 same default range as /etc/adduser.conf (which in turn is the range
 defined by policy).
 
 I've just modified base-files accordingly to use the UID range 1000-2.

I'm not sure this makes lots of sense.

hert...@alioth:~$ id -u maximilinux-guest
220227

There are many installations out there with large numbers of users that
simply can't respect the ranges set by the policy.

I would simply use a minimum of 500 or 1000 to differentiate system users
from normal users. adduser is not a required step to create accounts when
you manage your account database in LDAP/PostgreSQL (or whatever else).

Having a different behaviour betweent accounts simply because some are
above the maximal limits and some are below would be counter productive.

The policy was written when uid/gid were only 16 bits but our systems cope
with greater number of users nowadays... maybe the policy should be
revised on that point.

Cheers,
-- 
Raphaël Hertzog

Like what I do? Sponsor me: http://ouaza.com/wp/2010/01/05/5-years-of-freexian/
My Debian goals: http://ouaza.com/wp/2010/01/09/debian-related-goals-for-2010/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520100849.gc8...@rivendell



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Ron Johnson

On 05/20/2010 05:05 AM, Yves-Alexis Perez wrote:

On 20/05/2010 11:21, Ron Johnson wrote:

hat does this do that existing tools don't?

$ du -Sk | sort -nr | head -n10
131960./.Newsletters.Washington_Post/cur


not sure dirsum can do that either, but it's painful that du itself
can't sort, since you can't use du -h before piping to sort.



Eh?

Filters and do-one-thing-well utilities are The Unix Way.

--
Dissent is patriotic, remember?


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf517e8.9020...@cox.net



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Patrick Schoenfeld
On Thu, May 20, 2010 at 12:05:50PM +0200, Yves-Alexis Perez wrote:
 On 20/05/2010 11:21, Ron Johnson wrote:
  hat does this do that existing tools don't?
  
  $ du -Sk | sort -nr | head -n10
  131960./.Newsletters.Washington_Post/cur
 
 not sure dirsum can do that either, but it's painful that du itself
 can't sort, since you can't use du -h before piping to sort.

Why not? What speaks against using:

du -h | sort -h

I think its suitable for that purpose.

Regards,
Patrick


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520114115.ga9...@lisa



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Mika Pflüger
Hi,

Am Thu, 20 May 2010 12:05:50 +0200
schrieb Yves-Alexis Perez cor...@debian.org:

 On 20/05/2010 11:21, Ron Johnson wrote:
  hat does this do that existing tools don't?
  
  $ du -Sk | sort -nr | head -n10
  131960./.Newsletters.Washington_Post/cur
 
 not sure dirsum can do that either, but it's painful that du itself
 can't sort, since you can't use du -h before piping to sort.

Well, newer versions of sort added the functionality you miss, citing
from the GNU coreutils manual [1]:
‘-h’
‘--human-numeric-sort’
‘--sort=human-numeric’
Sort numerically, as per the --numeric-sort option below, and in
addition handle IEC or SI suffixes like MiB, MB etc (Block size).
Note a mixture of IEC and SI suffixes is not supported and will be
flagged as an error. Also the numbers must be abbreviated
uniformly. I.E. values with different precisions like 6000K and 5M
will be sorted incorrectly.

This feature was introduced in GNU coreutils release 7.5, 2009-08-20 [2]

As the coreutils version in debian sid and squeeze (I couldn't verify
lenny) is newer, the following command will work:
du -sh |sort -hr

to have the largest files first. the sort(1) man page on debian
documents this behaviour.

So if it only takes one pipe and coreutils to implement the
functionality of dirsum, maybe it's not worth a package.

Cheers,

Mika

[1]
http://www.gnu.org/software/coreutils/manual/coreutils.html#sort-invocation
[2]
http://git.savannah.gnu.org/gitweb/?p=coreutils.git;a=blob_plain;f=NEWS;hb=1d10eb8b1eeff9dd0fe1bbbc212e9535203acff0,
search for '--human-numeric-sort'

-- 
Own your own computer. Don't use Windows 7. http://windows7sins.org


signature.asc
Description: PGP signature


Re: UPG and the default umask

2010-05-20 Thread Christoph Anton Mitterer
On Thu, 20 May 2010 00:22:02 +0200 (CEST), Santiago Vila sanv...@unex.es
wrote:
 If an admin which runs out of UIDs in his system modifies
 /etc/adduser.conf, will he remember to modify the upper bound in
 /etc/profile as well?
If these changes are going to be permanent and the discussion about them
has been aborted,... couldn't one grep the values out of adduser.conf?

Cheers,
Chris,


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/13f7ebc613bb2965e22bf960669d2...@imap.dd24.net



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Salvo Tomaselli
On Thursday 20 May 2010 13:07:20 Ron Johnson wrote:
 Eh?
 
 Filters and do-one-thing-well utilities are The Unix Way.

Fully agree on that! If one wants a do-everything-software can always use 
windows.

-- 
Salvo Tomaselli


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


Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Michal Politowski
On Thu, 20 May 2010 06:07:20 -0500, Ron Johnson wrote:
 On 05/20/2010 05:05 AM, Yves-Alexis Perez wrote:
 On 20/05/2010 11:21, Ron Johnson wrote:
 hat does this do that existing tools don't?
 
 $ du -Sk | sort -nr | head -n10
 131960./.Newsletters.Washington_Post/cur
 
 not sure dirsum can do that either, but it's painful that du itself
 can't sort, since you can't use du -h before piping to sort.
 
 
 Eh?
 
 Filters and do-one-thing-well utilities are The Unix Way.

So, alternatively, where is the filter converting 131960 to 128M?

-- 
Michał Politowski
Talking has been known to lead to communication if practiced carelessly.


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520111453.ga27...@meep.pl



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Ron Johnson

On 05/20/2010 06:42 AM, Mika Pflüger wrote:

Hi,

Am Thu, 20 May 2010 12:05:50 +0200
schrieb Yves-Alexis Perezcor...@debian.org:


On 20/05/2010 11:21, Ron Johnson wrote:

hat does this do that existing tools don't?

$ du -Sk | sort -nr | head -n10
131960./.Newsletters.Washington_Post/cur


not sure dirsum can do that either, but it's painful that du itself
can't sort, since you can't use du -h before piping to sort.


Well, newer versions of sort added the functionality you miss, citing
from the GNU coreutils manual [1]:
‘-h’
‘--human-numeric-sort’
‘--sort=human-numeric’
 Sort numerically, as per the --numeric-sort option below, and in
 addition handle IEC or SI suffixes like MiB, MB etc (Block size).
 Note a mixture of IEC and SI suffixes is not supported and will be
 flagged as an error. Also the numbers must be abbreviated
 uniformly. I.E. values with different precisions like 6000K and 5M
 will be sorted incorrectly.



Well that's not The Unix Way!  ;)

--
Dissent is patriotic, remember?


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf525bd.5070...@cox.net



Re: UPG and the default umask

2010-05-20 Thread Peter Palfrader
On Thu, 20 May 2010, Raphael Hertzog wrote:

  So I agree that the sane thing to do here is, at least, to use the
  same default range as /etc/adduser.conf (which in turn is the range
  defined by policy).
  
  I've just modified base-files accordingly to use the UID range 1000-2.
 
 I'm not sure this makes lots of sense.
 
 hert...@alioth:~$ id -u maximilinux-guest
 220227
 
 There are many installations out there with large numbers of users that
 simply can't respect the ranges set by the policy.
 
 I would simply use a minimum of 500 or 1000 to differentiate system users
 from normal users. adduser is not a required step to create accounts when
 you manage your account database in LDAP/PostgreSQL (or whatever else).

System users can come out of ldap/NIS/etc too, and in such cases they
might not be in the 100-999 range either.

I fear anything which relies on ranges being used in some specific way
in deployed systems is fragile and prone to be wrong at least some of
the time.

-- 
   |  .''`.  ** Debian GNU/Linux **
  Peter Palfrader  | : :' :  The  universal
 http://www.palfrader.org/ | `. `'  Operating System
   |   `-http://www.debian.org/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520121046.gs13...@anguilla.noreply.org



Re: UPG and the default umask

2010-05-20 Thread Bastien ROUCARIES
reopen 315089
thanks

On Mon, May 17, 2010 at 11:05 PM, Marvin Renich m...@renich.org wrote:
 * Aaron Toponce aaron.topo...@gmail.com [100517 13:05]:
 On 05/17/2010 10:49 AM, Harald Braumann wrote:
  from pam_umask's description of the usergroups option:
 
  If the user is not root, and the user ID is equal to the group ID, *and*
  the username is the same as primary group name, the umask group bits
  are set to be the same as owner bits (examples: 022 - 002, 077 -
  007).
 
  So if there is a mismatch of *either*, name or ID, then pam_umasks
  detects a non-UPG system, while it might very well be all UPG.

 A bug in pam_umask.so that needs to be addressed (which I believe we've
 already started addressing in this thread).

 Bug #581984.

Closed by maintener and reopened, if we use libpam for umask it could
be even raised to RC critical, so please correct this behavior, report
upstream. I agree that it could be misleading for other distro in this
case, please add a newoption like useupg.

Thanks

Bastien


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktimvzj9octrxzidjc8kdzk6guhvedk5ssnrmo...@mail.gmail.com



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Yves-Alexis Perez
On 20/05/2010 13:41, Patrick Schoenfeld wrote:
 Why not? What speaks against using:
 
 du -h | sort -h
 
 I think its suitable for that purpose.

Wow, thanks, I didn't know that. It doesn't exist in lenny coreutils, so
I guess it's not so old. You made my day :)

Cheers,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf52b9b.30...@debian.org



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Peter Palfrader
On Thu, 20 May 2010, Ron Johnson wrote:

 On 05/19/2010 05:36 PM, jaromil wrote:
 * Package name : dirsum
 Description: Dirsum is a command line tool to assist sorting out which
 directories in a filesystem contain the most bytes.  It will sort
 all of the subdirectories of a selected path according to the total
 bytes of all files in them, including recursion through further
 subdirectories and mounted partitions.


 What does this do that existing tools don't?

 $ du -Sk | sort -nr | head -n10

Or, to compare it to something that my users can use too, what does it
offer over ncdu.

Cheers,
weasel
-- 
   |  .''`.  ** Debian GNU/Linux **
  Peter Palfrader  | : :' :  The  universal
 http://www.palfrader.org/ | `. `'  Operating System
   |   `-http://www.debian.org/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520123433.ga28...@anguilla.noreply.org



Re: UPG and the default umask

2010-05-20 Thread Santiago Vila
On Thu, 20 May 2010, Raphael Hertzog wrote:

 Hi,
 
 On Thu, 20 May 2010, Santiago Vila wrote:
  So I agree that the sane thing to do here is, at least, to use the
  same default range as /etc/adduser.conf (which in turn is the range
  defined by policy).
  
  I've just modified base-files accordingly to use the UID range 1000-2.
 
 I'm not sure this makes lots of sense.
 
 hert...@alioth:~$ id -u maximilinux-guest
 220227
 
 There are many installations out there with large numbers of users that
 simply can't respect the ranges set by the policy.
 
 I would simply use a minimum of 500 or 1000 to differentiate system users
 from normal users. adduser is not a required step to create accounts when
 you manage your account database in LDAP/PostgreSQL (or whatever else).
 
 Having a different behaviour betweent accounts simply because some are
 above the maximal limits and some are below would be counter productive.
 
 The policy was written when uid/gid were only 16 bits but our systems cope
 with greater number of users nowadays... maybe the policy should be
 revised on that point.

Yes, maybe we should modify policy.

But for now, current policy says UIDs over 3 are reserved, which means
they might or might not be ordinary user accounts.

Those who do not use adduser because they know that they are doing
will surely be able to change /etc/profile if the default one is not
suitable for them, as it happens with every default value in the system.

If we don't follow policy closely here, we can't claim that the umask
change does only affect ordinary user accounts (which is what I
think the release notes for squeeze will say).

So, I'm just providing a default which is consistent with other
defaults in the system and also with policy.

If by doing so we realize as a result that policy should be modified,
let us modify policy then.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/alpine.deb.1.10.1005201408240.21...@kolmogorov.unex.es



Re: Bug#582321: TAG: dirsum -- commandline directory summary

2010-05-20 Thread Ron Johnson

On 05/20/2010 07:34 AM, Peter Palfrader wrote:

On Thu, 20 May 2010, Ron Johnson wrote:


On 05/19/2010 05:36 PM, jaromil wrote:

* Package name : dirsum
Description: Dirsum is a command line tool to assist sorting out which
directories in a filesystem contain the most bytes.  It will sort
all of the subdirectories of a selected path according to the total
bytes of all files in them, including recursion through further
subdirectories and mounted partitions.



What does this do that existing tools don't?

$ du -Sk | sort -nr | head -n10


Or, to compare it to something that my users can use too,


You could put that in an alias in /etc/profile.


  what does it
offer over ncdu.



--
Dissent is patriotic, remember?


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf52e00.4060...@cox.net



Re: UPG and the default umask

2010-05-20 Thread Marvin Renich
* Bastien ROUCARIES roucaries.bast...@gmail.com [100520 08:30]:
 reopen 315089
 thanks
 
 Closed by maintener and reopened, if we use libpam for umask it could
 be even raised to RC critical, so please correct this behavior, report
 upstream. I agree that it could be misleading for other distro in this
 case, please add a newoption like useupg.
 
 Thanks
 
 Bastien

I have forwarded this upstream.
https://sourceforge.net/tracker/?func=detailatid=106663aid=3004656group_id=6663

...Marvin


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520124737.gb4...@cleo.wdw



Re: UPG and the default umask

2010-05-20 Thread Bastien ROUCARIES
On Tue, May 18, 2010 at 4:16 PM, Harald Braumann ha...@unheit.net wrote:
 On Tue, May 18, 2010 at 03:40:06PM +0200, Bastien ROUCARIES wrote:
 On Tue, May 18, 2010 at 3:12 PM, Harald Braumann ha...@unheit.net wrote:
  On Tue, May 18, 2010 at 10:08:17AM +, Philipp Kern wrote:
  On 2010-05-18, Christoph Anton Mitterer cales...@scientia.net wrote:
   Not to speak about, that UPG is anyway a questionable abuse of the
   user/group concept.
  
   Neither to speak about the fact, that in the 17 years debian exists
   now,... no majority missed that feature (apparently).
 
  So you present that as universal facts as if you've booked the truth
  (possibly a bad translation of a German saying).
 
  I think that feature is useful for all those who don't want to mess
  with ACLs.  If you are not allowed to use ACLs and don't have UPG
  with sane umasks collaboration is painful (see e.g. Debian infrastrure
  with all users being in group Debian and default umask 0022 which
  leads to wrong permissions in setgid directories, with ACLs being
  disallowed).  So indeed I got a script which does newgrp and
  setting the umask for me which I run whenever I want to do release
  tasks.  But it would be more sane if the user wouldn't have to
  care about that.
 
  Let me quote from the comments in /etc/login.defs:
 
  # 022 is the historical value in Debian for UMASK when it was used
  # 027, or even 077, could be considered better for privacy
  # There is no One True Answer here : each sysadmin must make up his/her
  # mind.
 
  And that's exactly the problem: there is no one-size-fits-all
  for the umask. Yes, for collaboration in a setgid directory you'd have
  to use 002 and thanks to UPG this is possible without compromising
  security. But I consider this just a special case. There are
  cases where Debian runs in a non-UPG environment, where you can't use
  that umask. And I don't think that's uncommon. Think of a mixed
  environment with Windows, where you might have a samba domain in LDAP. And
  last time I checked, the smbldap-tools didn't support UPG.

 Could you fill a bug report against smbldap-tools ?

 There is already an upstream bug [0], but even if it get's
 implemented, that wouldn't magically change all systems out there
 running non-UPG



  So whatever value is used as the default, half of the users will have
  to change it anyway, to fit their needs. And in such a case, where
  there is no single optimal value, I'd rather have the most
  conservative as default.
 
  If the umask is 022 and you create a setgid
  directory and forget to change the umask, you will quickly realise
  that things are not working as expected and fix it. If the umask is
  002 and you add your Debian system to a non-UPG environment and forget
  to change the umask, things will still work perfectly but you put all
  your files at risk and might not even realise it until it is too
  late.

 Why not add a security dialog and assistant for installing and
 upgrading the system?
 It will ease the transition and fit allt the need, documenting
 drawbacks and advantages of each scheme ?

 A umask of 022 is the right choice for most people and at least
 doesn't put the others at risk. Everyone, who knows what a setgid
 directory is and how it works, will also know, that there are certain
 requirements on the umask. And the others really don't care, as long
 as their security is not compromised.

 There is really no need to force everyone to make a useless decision,
 just for the sake of a change to make life of a specific minority easier.

 Cheers,
 harry

 [0] http://gna.org/support/?2040

Reported as #582388

Thanks


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktik2ugx9aqzveuqjfiko6oqqaq6rcyhzoz_ea...@mail.gmail.com



Re: UPG and the default umask

2010-05-20 Thread Michael Banck
On Thu, May 20, 2010 at 02:34:30PM +0200, Santiago Vila wrote:
 But for now, current policy says UIDs over 3 are reserved, which means
 they might or might not be ordinary user accounts.
 
 Those who do not use adduser because they know that they are doing
 will surely be able to change /etc/profile if the default one is not
 suitable for them, as it happens with every default value in the system.
 
 If we don't follow policy closely here, we can't claim that the umask
 change does only affect ordinary user accounts (which is what I
 think the release notes for squeeze will say).

Wouldn't the other way round mean that we cannot claim that the umask
changes will affect *all* ordinary user account?


Michael


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100520142149.ga22...@nighthawk.chemicalconnection.dyndns.org



Re: UPG and the default umask

2010-05-20 Thread Michael Banck
On Wed, May 19, 2010 at 09:48:41PM +, Christoph Anton Mitterer wrote:
 On Wed, 19 May 2010 15:22:04 -0600, Aaron Toponce
 aaron.topo...@gmail.com
 wrote:
  You've only mentioned that SSH won't operate if the write bit is set on
  the keys or anything under the ~/.ssh/ directory. Can you explain how an
  ssh client failing to connect to an external ssh server because of the
  umask is compromising security on the system?
 
 Simply read the mails and those from the other critics again, it's not
 only annoying for myself to repeat things over and over again but also for
 everybody else to read it again.
 Nevertheless just saying everything's fine or you only complained about
 ssh won't really solve the issues, but just help to wave these changes
 through.

The problem is that most of your mails started with OMG Debian will
compromise security, you all suck or a paraphrasing thereof, so most
people didn't bother to read your mails in full and never actually read
a reasonable argument why the default umask should not be changed for
UPG setups.


Michael


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100520142416.gb22...@nighthawk.chemicalconnection.dyndns.org



Re: UPG and the default umask

2010-05-20 Thread Roger Leigh
On Thu, May 20, 2010 at 02:34:30PM +0200, Santiago Vila wrote:
 On Thu, 20 May 2010, Raphael Hertzog wrote:
 
  Hi,
  
  On Thu, 20 May 2010, Santiago Vila wrote:
   So I agree that the sane thing to do here is, at least, to use the
   same default range as /etc/adduser.conf (which in turn is the range
   defined by policy).
   
   I've just modified base-files accordingly to use the UID range 1000-2.
  
  I'm not sure this makes lots of sense.
  
  hert...@alioth:~$ id -u maximilinux-guest
  220227
  
  There are many installations out there with large numbers of users that
  simply can't respect the ranges set by the policy.
  
  I would simply use a minimum of 500 or 1000 to differentiate system users
  from normal users. adduser is not a required step to create accounts when
  you manage your account database in LDAP/PostgreSQL (or whatever else).
  
  Having a different behaviour betweent accounts simply because some are
  above the maximal limits and some are below would be counter productive.
  
  The policy was written when uid/gid were only 16 bits but our systems cope
  with greater number of users nowadays... maybe the policy should be
  revised on that point.
 
 Yes, maybe we should modify policy.
 
 But for now, current policy says UIDs over 3 are reserved, which means
 they might or might not be ordinary user accounts.
 
 Those who do not use adduser because they know that they are doing
 will surely be able to change /etc/profile if the default one is not
 suitable for them, as it happens with every default value in the system.
 
 If we don't follow policy closely here, we can't claim that the umask
 change does only affect ordinary user accounts (which is what I
 think the release notes for squeeze will say).
 
 So, I'm just providing a default which is consistent with other
 defaults in the system and also with policy.

I think using the user range defined by policy is fine for now.  At worst,
sites using the reserved and reserved for Debian ranges will get an
0022 umask for user accounts in this range until they change the user
range, i.e. no decrease in security.

 If by doing so we realize as a result that policy should be modified,
 let us modify policy then.

If all current Debian systems support a 32-bit UID and GID range, then
it would be great if we could amend Policy to move the reserved ranges
to the end of the 32-bit range rather than being at the end of the
16-bit range.  This would give a vast contiguous user range (4294931294
UIDs using the scheme below)

Likewise, 65535 is no longer a prohibited value; it's now (2^32)-1 =
4294967295, so Policy could also amend this restriction.

Additionally, user nobody would then be in the middle of the user
range; it could be shifted back to the end of the 32-bit range.


Suggestion for Policy:

0-99: Debian Global
100-999: Debian Dynamic
1000-4294932293: Users
[65534: nobody; could be moved to 4294967294 for new installs?]

4294932294-4294962293: Reserved
4294962294-4294967293: Debian Static Reserved
4294967294: nobody [new]
4294967295: (uid_t)(-1) == (gid_t)(-1) must not be used, because it is the 
error return sentinel value.

The ranges can be adjusted to make them tider if desired; this is just
adjusting the ranges as above, and drops the final (tiny) reserved range.
For example:

429490-429496: Reserved (6, was 30534)
429496-4294967293: Debian Static Reserved (7293, was 5000)


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


signature.asc
Description: Digital signature


Re: SRWare Iron: Chromium without the data-mining

2010-05-20 Thread Ryan Oram
On Thu, May 20, 2010 at 5:19 AM, Fabian Greffrath fab...@greffrath.com wrote:
 I don't see what you mean by iffy tabbed browsing, what's wrong with
 tabbed browsing in Epiphany? And regarding Javascript, I have never
 experienced the issues you describe. Are you sure you are using the latest
 packages (i.e. browser and webkit-engine) from unstable? Have you reported
 your issues upstream?

 Epiphany is actually the default browser in infinityOS.

 That's good to know.

 Thanks,
 Fabian

The tabbed browsing is greatly improved in 2.30. The forum post
editting bug seems to be isolated to vBulletin based-forums. I filled
a bug upstream: https://bugzilla.gnome.org/show_bug.cgi?id=619197

Right now, infinityOS uses Epiphany 2.28 as it's based on Ubuntu
Karmic, but we'll likely be upgrading to Epiphany 2.30 (with the new
WebKit libraries) in infinityOS 1.1 due to the tabbed browsing
improvements.

Thanks,
Ryan


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktilndqyn2qlvqxrom1hxdihukk8bqx02th-lz...@mail.gmail.com



Bug#582420: ITP: libpod-elemental-perlmunger-perl -- Perl module that rewrites Perl documentation

2010-05-20 Thread Ansgar Burchardt
Package: wnpp
Severity: wishlist
Owner: Ansgar Burchardt ans...@43-1.org
Owner: Ansgar Burchardt ans...@43-1.org

* Package name: libpod-elemental-perlmunger-perl
  Version : 0.093330
  Upstream Author : Ricardo SIGNES r...@cpan.org
* URL : http://search.cpan.org/dist/Pod-Elemental-PerlMunger/
* License : Artistic or GPL-1+ (like perl)
  Programming Lang: Perl
  Description : Perl module that rewrites Perl documentation

 Pod::Elemental::PerlMunger is a role to be included in classes that rewrite
 the documentation of a Perl document, stripping out all the Pod, munging it,
 and replacing it into the Perl.

This is a dependency of libdist-zilla-plugin-podweaver-perl (ITP #582138).



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100520170701.12519.13361.report...@marvin.43-1.org



Re: UPG and the default umask

2010-05-20 Thread Russ Allbery
Roger Leigh rle...@codelibre.net writes:

 If all current Debian systems support a 32-bit UID and GID range, then
 it would be great if we could amend Policy to move the reserved ranges
 to the end of the 32-bit range rather than being at the end of the
 16-bit range.  This would give a vast contiguous user range (4294931294
 UIDs using the scheme below)

You can't move the static reserved space: it contains statically assigned
UIDs.  :)  That's the whole point of it.  We could change where we're
assigning future static UIDs and GIDs from, but I'm not sure it's worth
the effort given that there's always going to have to be a legacy reserved
space for the ones that were already assigned.

 Additionally, user nobody would then be in the middle of the user
 range; it could be shifted back to the end of the 32-bit range.

I don't think it's a good idea to let people assign 65535 to a regular
user.  That's been hardcoded as nobody in a vast number of UNIX systems
for decades.  Reusing that UID for other purposes in any sort of shared
infrastructure is almost certain to cause problems.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/877hmyiip8@windlord.stanford.edu



Who owns /var/log/lighttpd?

2010-05-20 Thread Olaf van der Spek
Hi,

Please CC me, I'm not on the list.

Who owns /var/log/lighttpd?
Lighttpd (running as www-data) expects to be able to create files in
this dir, so the dir is owned by www-data.
What is the recommended way to chown this? Chown manually in postinst?
In the init script? Is there any support for this in the packaging
tools?

It's about http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=563635
-- 
Olaf


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktilzgm_osaslfgl7t4uh4stv0alin2kd2jfte...@mail.gmail.com



Re: UPG and the default umask

2010-05-20 Thread Roger Leigh

On 20/05/2010 18:30, Russ Allbery wrote:

Roger Leighrle...@codelibre.net  writes:


If all current Debian systems support a 32-bit UID and GID range, then
it would be great if we could amend Policy to move the reserved ranges
to the end of the 32-bit range rather than being at the end of the
16-bit range.  This would give a vast contiguous user range (4294931294
UIDs using the scheme below)


You can't move the static reserved space: it contains statically assigned
UIDs.  :)  That's the whole point of it.  We could change where we're
assigning future static UIDs and GIDs from, but I'm not sure it's worth
the effort given that there's always going to have to be a legacy reserved
space for the ones that were already assigned.


Do we have any actual users of this space?  I didn't see anything in 
Policy.  Is there a central database listing the assignments?  If so, 
where may it be found?


In the absence of any existing static assignments, I don't see any
issue with moving the range.  If there are assignments, could these
not be moved for new installs?


Additionally, user nobody would then be in the middle of the user
range; it could be shifted back to the end of the 32-bit range.


I don't think it's a good idea to let people assign 65535 to a regular
user.  That's been hardcoded as nobody in a vast number of UNIX systems
for decades.  Reusing that UID for other purposes in any sort of shared
infrastructure is almost certain to cause problems.


65534 is the UID for nobody.  Anything using the UID for nobody should 
be getting it through the libc functions as for any other user; does any 
code actually hardcode 65534?  IMO that's a bug if so.  Given that 
nobody can't create files except for in /tmp and other world-writable 
locations, there shouldn't be any issues with changing the UID/GID since 
nothing in the filesystem should be owned by them.  A quick check on my 
system shows just two locations:


drwxrwxrwt 2 nobody nogroup 4096 Jan 27  2009 /var/spool/cups-pdf/ANONYMOUS
drwxr-se-x root nogroup 63488 May  2 01:04 /usr/lib/kde4/libexec/kdesud

The first is totally pointless (bug filed), it could just be root:root 
and be even more safe.  The latter looks OK but should we really be 
having a file owned by nogroup in the filesystem at all on general 
principle?


Regarding 65535: Does any software actually hardcode the number 65535? 
Given that its only use is as an error return (-1) for uid_t and this is 
now a uint32_t any code hardcoding this value is already broken.


The main justification I would have for this change is that keeping the 
old 16-bit-constrained assignments fragments the 32-bit range space 
unnecessarily.  For checks such as being discussed, having a contiguous 
user range makes things much simpler for both us and admins.  I accept 
that we can't change things for existing systems where these are already 
being used, but it sucks to be stuck with a 16-bit legacy for evermore 
even for new installs.



Regards,
Roger


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf58e18.3030...@codelibre.net



Re: UPG and the default umask

2010-05-20 Thread Steve Langasek
On Thu, May 20, 2010 at 08:31:36PM +0100, Roger Leigh wrote:
 Do we have any actual users of this space?  I didn't see anything in
 Policy.  Is there a central database listing the assignments?  If
 so, where may it be found?

/usr/share/doc/base-passwd/README

 The main justification I would have for this change is that keeping
 the old 16-bit-constrained assignments fragments the 32-bit range
 space unnecessarily.  For checks such as being discussed, having a
 contiguous user range makes things much simpler for both us and
 admins.  I accept that we can't change things for existing systems
 where these are already being used, but it sucks to be stuck with a
 16-bit legacy for evermore even for new installs.

I don't think it's practical to ever get rid of the legacy UID range
fragmentation in the 16-bit space.  Better would be to plan a transition to
where we start numbering new user accounts from 65536 by default, instead of
from 1000.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
Ubuntu Developerhttp://www.debian.org/
slanga...@ubuntu.com vor...@debian.org


signature.asc
Description: Digital signature


Re: UPG and the default umask

2010-05-20 Thread Bastien ROUCARIÈS



Roger Leigh rle...@codelibre.net a écrit :

On 20/05/2010 18:30, Russ Allbery wrote:
 Roger Leighrle...@codelibre.net  writes:

 If all current Debian systems support a 32-bit UID and GID range, then
 it would be great if we could amend Policy to move the reserved ranges
 to the end of the 32-bit range rather than being at the end of the
 16-bit range.  This would give a vast contiguous user range (4294931294
 UIDs using the scheme below)

 You can't move the static reserved space: it contains statically assigned
 UIDs.  :)  That's the whole point of it.  We could change where we're
 assigning future static UIDs and GIDs from, but I'm not sure it's worth
 the effort given that there's always going to have to be a legacy reserved
 space for the ones that were already assigned.

Do we have any actual users of this space?  I didn't see anything in 
Policy.  Is there a central database listing the assignments?  If so, 
where may it be found?

In the absence of any existing static assignments, I don't see any
issue with moving the range.  If there are assignments, could these
not be moved for new installs?

 Additionally, user nobody would then be in the middle of the user
 range; it could be shifted back to the end of the 32-bit range.

 I don't think it's a good idea to let people assign 65535 to a regular
 user.  That's been hardcoded as nobody in a vast number of UNIX systems
 for decades.  Reusing that UID for other purposes in any sort of shared
 infrastructure is almost certain to cause problems.

65534 is the UID for nobody.  Anything using the UID for nobody should 
be getting it through the libc functions as for any other user; does any 
code actually hardcode 65534?  IMO that's a bug if so.  Given that 
nobody can't create files except for in /tmp and other world-writable 
locations, there shouldn't be any issues with changing the UID/GID since 
nothing in the filesystem should be owned by them.  A quick check on my 
system shows just two locations:

drwxrwxrwt 2 nobody nogroup 4096 Jan 27  2009 /var/spool/cups-pdf/ANONYMOUS
drwxr-se-x root nogroup 63488 May  2 01:04 /usr/lib/kde4/libexec/kdesud

The first is totally pointless (bug filed), it could just be root:root 
and be even more safe.  The latter looks OK but should we really be 
having a file owned by nogroup in the filesystem at all on general 
principle?

Regarding 65535: Does any software actually hardcode the number 65535? 
Given that its only use is as an error return (-1) for uid_t and this is 
now a uint32_t any code hardcoding this value is already broken.

The main justification I would have for this change is that keeping the 
old 16-bit-constrained assignments fragments the 32-bit range space 
unnecessarily.  For checks such as being discussed, having a contiguous 
user range makes things much simpler for both us and admins.  I accept 
that we can't change things for existing systems where these are already 
being used, but it sucks to be stuck with a 16-bit legacy for evermore 
even for new installs.


Does it will break reading file from uid16 filesystem?

Regards

Bastien

Regards,
Roger


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf58e18.3030...@codelibre.net



Re: UPG and the default umask

2010-05-20 Thread Roger Leigh

On 20/05/2010 20:44, Bastien ROUCARIÈS wrote:


Roger Leighrle...@codelibre.net  a écrit :



The main justification I would have for this change is that keeping the
old 16-bit-constrained assignments fragments the 32-bit range space
unnecessarily.  For checks such as being discussed, having a contiguous
user range makes things much simpler for both us and admins.  I accept
that we can't change things for existing systems where these are already
being used, but it sucks to be stuck with a 16-bit legacy for evermore
even for new installs.



Does it will break reading file from uid16 filesystem?


This transition took place 10 years ago in the kernel and has been 
supported by all the mainstream filesystems since then; the minor ones 
may have also been fixed up.  This was fixed years ago, the most recent 
being fixing diskquotas.  Should be no problems in 2010!



Regards,
Roger


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf59722.3080...@codelibre.net



Re: UPG and the default umask

2010-05-20 Thread Roger Leigh

On 20/05/2010 20:43, Steve Langasek wrote:

On Thu, May 20, 2010 at 08:31:36PM +0100, Roger Leigh wrote:

Do we have any actual users of this space?  I didn't see anything in
Policy.  Is there a central database listing the assignments?  If
so, where may it be found?


/usr/share/doc/base-passwd/README


Thanks.  Looking at the list, there's only 10 packages in total.  9 
create just one user/group, and one (qmail, which AFIACT isn't even in 
Debian) creates six.  I'm unsure why these 9 packages need a static 
allocation, given that every other service just creates/removes them 
dynamically.  Given the miniscule usage of this reserved range, is 
static allocation justifiable?



The main justification I would have for this change is that keeping
the old 16-bit-constrained assignments fragments the 32-bit range
space unnecessarily.  For checks such as being discussed, having a
contiguous user range makes things much simpler for both us and
admins.  I accept that we can't change things for existing systems
where these are already being used, but it sucks to be stuck with a
16-bit legacy for evermore even for new installs.


I don't think it's practical to ever get rid of the legacy UID range
fragmentation in the 16-bit space.  Better would be to plan a transition to
where we start numbering new user accounts from 65536 by default, instead of
from 1000.


Something probably best left until after Squeeze!  I think the simple 
check we have now will be robust enough until after then.



Regards,
Roger


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf5976a.8080...@codelibre.net



Re: UPG and the default umask

2010-05-20 Thread Russ Allbery
Roger Leigh rle...@codelibre.net writes:
 On 20/05/2010 18:30, Russ Allbery wrote:

 You can't move the static reserved space: it contains statically
 assigned UIDs.  :)  That's the whole point of it.  We could change
 where we're assigning future static UIDs and GIDs from, but I'm not
 sure it's worth the effort given that there's always going to have to
 be a legacy reserved space for the ones that were already assigned.

 Do we have any actual users of this space?  I didn't see anything in
 Policy.  Is there a central database listing the assignments?  If so,
 where may it be found?

Steve got this part.

 Additionally, user nobody would then be in the middle of the user
 range; it could be shifted back to the end of the 32-bit range.

 I don't think it's a good idea to let people assign 65535 to a regular
 user.  That's been hardcoded as nobody in a vast number of UNIX systems
 for decades.  Reusing that UID for other purposes in any sort of shared
 infrastructure is almost certain to cause problems.

 65534 is the UID for nobody.

Sorry, I meant 66534.  You're of course correct with 66535; you can't use
that on 16-bit UID systems, but otherwise it shouldn't be as much of an
issue.

 Anything using the UID for nobody should be getting it through the libc
 functions as for any other user; does any code actually hardcode 65534?
 IMO that's a bug if so.

Different sort of hard-code.  It's in tons of existing /etc/passwd files,
and giving another user the same UID as nobody (such as, for instance, a
mix of LDAP and local /etc/passwd data stores) can produce some nasty
security exposures depending on how nobody is being used.

 Given that nobody can't create files except for in /tmp and other
 world-writable locations, there shouldn't be any issues with changing
 the UID/GID since nothing in the filesystem should be owned by them.

By default, assuming use only of packages in Debian and no changes by
local administrators.  Those aren't good assumptions.

Changing a UID is a very big and disruptive change, and remember that a
lot of sites share UIDs site-wide.

 The main justification I would have for this change is that keeping the
 old 16-bit-constrained assignments fragments the 32-bit range space
 unnecessarily.  For checks such as being discussed, having a contiguous
 user range makes things much simpler for both us and admins.

I agree with Steve: the best way to provide a contiguous range is to start
in 32-bit space above our existing reservations.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87sk5m71it@windlord.stanford.edu



Sus Eventos Especiales en La Casona del Pollo

2010-05-20 Thread La Casona del Pollo









© informacion - Mercranet.com  ( 506) 24403726


Este boletín no tiene fines de venta directa, solo se  informa sobre 
promociones y descuentos disponibles y que usted pueda opinar sobre ellas. Si
usted desea solicitar información sobre las mismas entonces debe comunicarse 
con su proveedor. Si usted no consiente en recibir esta clase de
información por favor envíe una petición para poner fin a los avisos sobre 
promociones y descuentos que habrá disponibles. Si desea saber por qué
existe esta comunidad, por favor visite: Mercranet.com ( 
http://www.Mercranet.com )



 

 

 

 

 

 

 

 

 

 

 

 


Cambiar la suscripción (
http://mercranetpymes.com/index.php?option=com_acajoomItemid=999act=changesubscriber=11803cle=c4b71992bd71327e8969323a5058372alistid=8
 )
De-suscribirse (
http://mercranetpymes.com/index.php?option=com_acajoomItemid=999act=unsubscribesubscriber=11803cle=c4b71992bd71327e8969323a5058372alistid=8
 )


Re: UPG and the default umask

2010-05-20 Thread Roger Lynn
On 19/05/10 22:20, Christoph Anton Mitterer wrote:
 btw: What happened to the idea of movin umask completely away from
 /etc/profile?
 I mean regardless of the discussion about UPGs and which value is the
 best default for umask, I found it to be a good idea to drop it there.

This is a good question. When I was changing my umask to 0002 a few
months ago web searches told me to look in login.defs, which told me to
use pam. So eventually I worked out how to change the umask in pam, but
it still didn't have any affect. It was only have further searching that
I discovered it was being overridden by /etc/profile.

Roger


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4bf5bb38.6050...@rilynn.me.uk



Re: Bug#580814: Parallellizing the boot in Debian Squeeze - ready for wider testing

2010-05-20 Thread Russell Coker
On Friday 14 May 2010 23:25:37 Scott James Remnant wrote:
  Or just have per-user cgroups that a process is moved into when
  logging in, see libpam-cgroup for something that does this.
 
  
 
 Then getty would respawn the second you login, stealing the controlling
 terminal from bash.

Why can't systemd use cgroups for monitoring daemons (the new functionality 
that wasn't in any previous Linux init system) and run getty's in the 
traditional manner?

It seems that cgroups offer significant benefits for some uses but not for 
every 
use.

Also what about sshd, telnetd, etc?  They can also have long-lived processes 
on behalf of users that are separate from the port listening functionality of 
the main daemon.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201005210851.06187.russ...@coker.com.au



Re: APT do not work with Squid as a proxy because of pipelining default

2010-05-20 Thread Pierre Habouzit
On Wed, May 19, 2010 at 03:28:00PM +0200, Bjørn Mork wrote:
 Pierre Habouzit madco...@madism.org writes:
  On Wed, May 19, 2010 at 10:42:55AM +0200, Bjørn Mork wrote:
 
  2) http proxy servers cannot always process pipelined requests due to
 the complexity this adds (complexity is always bad for security), and
 
  This is bullshit. It's *VERY* easy to support pipelining: parse one
  request at a time, and until you're done with a given request, you just
  stop to watch the socket/file-descriptor for reading (IOW you let the
  consecutive request live in the kernel buffers).
 
 Yeah, you make it sound easy.

The fact is that it is. And I know it from a fact having implemented
several custom http interfaces in the past. It's just _that_ easy.

And since it's _that_ easy, when the broken proxy is free software, it
shall be fixed.

-- 
·O·  Pierre Habouzit
··Omadco...@debian.org
OOOhttp://www.madism.org


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100520231042.gb23...@madism.org



Re: Open then gates

2010-05-20 Thread Russell Coker
On Saturday 15 May 2010 22:07:44 Robert Klotzner wrote:
 There is a reason why things like selinux are developed.

http://en.wikipedia.org/wiki/Discretionary_Access_Control
http://en.wikipedia.org/wiki/Mandatory_access_control

Yes.  The design of Unix permissions is based on the DAC principle, allowing 
users to mess up and disclose their own confidential data or other people's 
data that they are entrusted with is part of the design.

With a MAC system such as SE Linux you can deny users the ability to 
inappropriately share data.  With SE Linux in Squeeze you will be able to 
control file based sharing via category sets and/or by assigning users to 
different SE Linux identities.  For user A to read data from user B the users 
will need to have the same SE Linux identity and user A will need to have a 
level in the MCS system that is equal or superior to the level of user B.

One of many possible uses of MCS would be to have a category for each user in 
a group and have their manager/teacher/whatever have the set of all categories 
to enable reading all their files.  Of course that simplistic model would only 
work in an organisation with less than 1024 users.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201005211015.14821.russ...@coker.com.au



Bug#582470: ITP: haskell-primitive -- Wrappers for primitive operations

2010-05-20 Thread Marco Túlio Gontijo e Silva
Package: wnpp
Severity: wishlist
Owner: Marco Túlio Gontijo e Silva mar...@debian.org

* Package name: haskell-primitive
  Version : 0.3
  Upstream Author : Roman Leshchinskiy r...@cse.unsw.edu.au
* URL : http://code.haskell.org/primitive
* License : BSD
  Programming Lang: Haskell
  Description : Wrappers for primitive operations

 This package provides a library for the Haskell programming language.
 See http://www.haskell.org/ for more information on Haskell.
 .
 This package provides wrappers for primitive array operations from GHC.Prim.



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100521000618.5981.98851.report...@zezinho



Work-needing packages report for May 21, 2010

2010-05-20 Thread wnpp
The following is a listing of packages for which help has been requested
through the WNPP (Work-Needing and Prospective Packages) system in the
last week.

Total number of orphaned packages: 598 (new: 1)
Total number of packages offered up for adoption: 122 (new: 2)
Total number of packages requested help for: 65 (new: 0)

Please refer to http://www.debian.org/devel/wnpp/ for more information.



The following packages have been orphaned:

   dvdrtools (#582378), orphaned today (non-free)
 Description: DVD writing program
 Installations reported by Popcon: 1132

597 older packages have been omitted from this listing, see
http://www.debian.org/devel/wnpp/orphaned for a complete list.



The following packages have been given up for adoption:

   b43-fwcutter (#581798), offered 5 days ago
 Description: Utility for extracting Broadcom 43xx firmware
 Reverse Depends: firmware-b43-installer firmware-b43-lpphy-installer
   firmware-b43legacy-installer
 Installations reported by Popcon: 1172

   linux-libertine (#581839), offered 4 days ago
 Description: Linux Libertine family of fonts
 Installations reported by Popcon: 1580

120 older packages have been omitted from this listing, see
http://www.debian.org/devel/wnpp/rfa_bypackage for a complete list.



For the following packages help is requested:

   apt-cross (#540341), requested 286 days ago
 Description: retrieve, build and install libraries for
   cross-compiling
 Reverse Depends: apt-cross emdebian-buildsupport emdebian-qa
   emdebian-rootfs emdebian-tools libemdebian-tools-perl
 Installations reported by Popcon: 357

   apt-xapian-index (#567955), requested 108 days ago
 Description: maintenance tools for a Xapian index of Debian packages
 Reverse Depends: adept ept-cache
 Installations reported by Popcon: 11658

   ara (#450876), requested 921 days ago
 Description: utility for searching the Debian package database
 Installations reported by Popcon: 110

   asymptote (#517342), requested 447 days ago
 Description: script-based vector graphics language inspired by
   MetaPost
 Installations reported by Popcon: 1272

   athcool (#278442), requested 2032 days ago
 Description: Enable powersaving mode for Athlon/Duron processors
 Installations reported by Popcon: 146

   boinc (#511243), requested 497 days ago
 Description: BOINC distributed computing
 Reverse Depends: boinc-app-milkyway boinc-app-seti boinc-dbg
 Installations reported by Popcon: 1638

   cvs (#354176), requested 1547 days ago
 Description: Concurrent Versions System
 Reverse Depends: crossvc cvs-autoreleasedeb cvs-buildpackage cvs2cl
   cvs2html cvschangelogbuilder cvsconnect cvsd cvsps cvsservice (11
   more omitted)
 Installations reported by Popcon: 25376

   dctrl-tools (#448284), requested 936 days ago
 Description: Command-line tools to process Debian package
   information
 Reverse Depends: aptfs debian-goodies debtree dlocate
   haskell-devscripts javahelper libsbuild-perl linux-patch-debianlogo
   simple-cdd ubuntu-dev-tools
 Installations reported by Popcon: 13662

   debtags (#567954), requested 108 days ago
 Description: Enables support for package tags
 Reverse Depends: debtags-edit goplay packagesearch
 Installations reported by Popcon: 2651

   dietlibc (#544060), requested 265 days ago
 Description: diet libc - a libc optimized for small size
 Reverse Depends: libowfat-dev
 Installations reported by Popcon: 238

   doc-central (#566364), requested 117 days ago
 Description: web-based documentation browser
 Installations reported by Popcon: 287

   dpkg (#282283), requested 2006 days ago
 Description: dselect: a user tool to manage Debian packages
 Reverse Depends: acct adacontrol advi advi-examples alien alqalam
   alsa-source am-utils-doc apt-build apt-cross (510 more omitted)
 Installations reported by Popcon: 91964

   elvis (#432298), requested 1046 days ago
 Description: powerful clone of the vi/ex text editor (with X11
   support)
 Reverse Depends: elvis elvis-console elvis-tools
 Installations reported by Popcon: 399

   emdebian-tools (#540333), requested 286 days ago
 Description: emdebian crossbuilding tool set
 Reverse Depends: emdebian-buildsupport emdebian-qa emdebian-tools
   mlton-target-alpha-linux-gnu mlton-target-arm-linux-gnueabi
   mlton-target-hppa-linux-gnu mlton-target-i486-linux-gnu
   mlton-target-ia64-linux-gnu mlton-target-mips-linux-gnu
   mlton-target-mipsel-linux-gnu (4 more omitted)
 Installations reported by Popcon: 187

   fbcat (#565156), requested 127 days ago
 Description: framebuffer 

Re: Parallellizing the boot in Debian Squeeze - ready for wider testing

2010-05-20 Thread Russell Coker
On Sunday 16 May 2010 03:35:09 Steve Langasek wrote:
 Given the difference in how kernels vs. init daemons are usually
 administered as part of a system, I think the runtime impact of supporting
 multiple LSMs in init is much more significant than supporting multiple
 LSMs in the kernel.  I don't think we want init to have shared lib deps
 for each of the available LSMs.

In the early days of LSM development there was the idea that LSM modules could 
be kernel modules, this idea was given up early on. The idea that modules 
could be stacked so that you could have multiple modules active at the same 
time (EG OpenWall /tmp protection as well as SE Linux) but that ended up not 
working well technically, so for ages it was only the Capability module that 
supported stacking.  A quick check of the dmesg on a testing system indicates 
that capability is not regarded as a separate module any more (or at least 
it's not in the dmesg).

The patch to the SysVInit for SE Linux is very small, it wouldn't be difficult 
to have support for a dozen such LSM modules with case statements.  Not that 
it would happen, the only LSM modules that are publicly available are SE 
Linux, Smack, AppArmor, and Tomoyo and I think that SE Linux is the only one 
that needs an init patch.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201005211053.37318.russ...@coker.com.au



Re: Parallellizing the boot in Debian Squeeze - ready for wider testing

2010-05-20 Thread Russell Coker
On Monday 10 May 2010 09:24:59 Steve Langasek wrote:
 And you don't have to use an initramfs; the same result could be achieved
 with a shim init on the root filesystem that does nothing but set up the
 SELinux context correctly and then exec upstart.

That's what I did years ago when we first stopped making the SE Linux kernel 
code load the policy from disk (kernel code isn't supposed to access files).  I 
had a shim named /sbin/init which loaded the policy (if necessary) and then 
executed init.  Of course that shim was run every time you ran telinit u 
which was a minor annoyance.

Another possible way of running it was to use the init=/sbin/shiminit option 
when booting the kernel, but some boot loaders (such as that of the Cobalt 
Qube I used for testing) made that unreasonably difficult.  Diverting init and 
changing the boot loader are both things it's best to avoid if possible.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201005211057.54568.russ...@coker.com.au



Bug#582473: ITP: haskell-vector -- Efficient Arrays for Haskell

2010-05-20 Thread Marco Túlio Gontijo e Silva
Package: wnpp
Severity: wishlist
Owner: Marco Túlio Gontijo e Silva mar...@debian.org

* Package name: haskell-vector
  Version : 0.6.0.1
  Upstream Author : Roman Leshchinskiy r...@cse.unsw.edu.au
* URL : http://code.haskell.org/vector
* License : BSD
  Programming Lang: Haskell
  Description : Efficient Arrays for Haskell

 This package provides a library for the Haskell programming language.
 See http://www.haskell.org/ for more information on Haskell.
 .
 An efficient implementation of Int-indexed arrays (both mutable and
 immutable), with a powerful loop fusion optimization framework.

 This is a dependency for haskell-criterion.



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20100521004233.8938.81876.report...@zezinho



Re: Who owns /var/log/lighttpd?

2010-05-20 Thread Paul Wise
Probably the solution to that bug is to read the user from the
lighttpd configuration instead of hard-coding it. lighttpd -p can
probably help here. Not sure how you would parse the output though.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/aanlktiklkcnlkgdpq_ccftwrbexksab2qzf7dtoam...@mail.gmail.com



Re: UPG and the default umask

2010-05-20 Thread Mike Bird
On Thu May 20 2010 07:24:16 Michael Banck wrote:
 The problem is that most of your mails started with OMG Debian will
 compromise security, you all suck or a paraphrasing thereof, so most
 people didn't bother to read your mails in full and never actually read
 a reasonable argument why the default umask should not be changed for
 UPG setups.

Michael,

Those of us who actually administer Linux systems realize
that the proponents of this change are (a) way out of their
depth so that (b) they cannot forsee the consequences of
their actions yet (c) they have the power to carry their
actions through and (d) they haven't listened to reason yet.

So we just watch and laugh sadly and pray that we can keep
our systems secure.  Debian has survived worse and it will
survive this mess too.

--Mike Bird


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201005201843.00651.mgb-deb...@yosemite.net



Accepted libgettext-ruby 2.1.0-2.1 (source all)

2010-05-20 Thread Jari Aalto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 13 May 2010 16:51:50 +0300
Source: libgettext-ruby
Binary: libgettext-ruby1.8 libgettext-ruby1.9.1 libgettext-ruby-util
Architecture: source all
Version: 2.1.0-2.1
Distribution: unstable
Urgency: low
Maintainer: Tatsuki Sugiura s...@nemui.org
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 libgettext-ruby-util - Gettext utilities for ruby (dummy package)
 libgettext-ruby1.8 - Gettext for ruby1.8
 libgettext-ruby1.9.1 - Gettext for ruby1.9.1
Closes: 580585
Changes: 
 libgettext-ruby (2.1.0-2.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/*.1
 - Fix hyphens.
   * debian/compat
 - Update to 7.
   * debian/control
 - (Build-Depends): Update to debhelper 7.1.
 - (Homepage): New field.
   * debian/libgettext-ruby1.8.docs, debian/libgettext-ruby1.9.1.docs
 - Remove obsolete ChangeLog-1, the ChangeLog mentioned in Gunnar Wolf
   gw...@gwolf.org'S patch in BTS is already installed by
   dh_installchangelog(1) program. (Closes: #580585).
   * debian/patches
 - (fix_loadpath_mangle): Add description.
Checksums-Sha1: 
 76de9a7707902b4c65e8d6b17a321f146cdabfa9 1272 libgettext-ruby_2.1.0-2.1.dsc
 a8b8b175e054d8af270a5cae0495f39e6633eea7 8436 
libgettext-ruby_2.1.0-2.1.debian.tar.gz
 351b64ab3c983096e1f2bbb0f452902d03da1bdc 159662 
libgettext-ruby1.8_2.1.0-2.1_all.deb
 fe5144b66a304f6d2375b03af9958c8f1958a22f 45880 
libgettext-ruby1.9.1_2.1.0-2.1_all.deb
 9e65f0ed0517e13465f9b34f1c73cc96a8588ab9 6982 
libgettext-ruby-util_2.1.0-2.1_all.deb
Checksums-Sha256: 
 9290ee8d652a1eeaa26d981ce22a25bb11a2803f778f424e12ca571956e3faf4 1272 
libgettext-ruby_2.1.0-2.1.dsc
 fd2eb175a733c4dfa57f8493b5bbfe1dda37aa285cc999beb629656fcefde69b 8436 
libgettext-ruby_2.1.0-2.1.debian.tar.gz
 2279177324c37dd3522659aa0900617e4dbfaf8a41a2018cf0670c4b465cd647 159662 
libgettext-ruby1.8_2.1.0-2.1_all.deb
 7114288b219707f9eb8b701c853fd64c15575f7aaa8928ede9f03d8a59b3b725 45880 
libgettext-ruby1.9.1_2.1.0-2.1_all.deb
 a872a52c88785955884ff7324caaf752baf0fa3717b591a8a2f5a006ada42737 6982 
libgettext-ruby-util_2.1.0-2.1_all.deb
Files: 
 04fecd393571d9f4d817167d9637eb60 1272 ruby optional 
libgettext-ruby_2.1.0-2.1.dsc
 a3e3c75ce52b680179251d9fb11b8b2d 8436 ruby optional 
libgettext-ruby_2.1.0-2.1.debian.tar.gz
 9f969e701ab1864cfee2acc0c9cc1815 159662 ruby optional 
libgettext-ruby1.8_2.1.0-2.1_all.deb
 44705bd8946a2f71485d8f8746988fce 45880 ruby optional 
libgettext-ruby1.9.1_2.1.0-2.1_all.deb
 058a4edea7b146e2f11c697f00cbab0d 6982 ruby optional 
libgettext-ruby-util_2.1.0-2.1_all.deb

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

iEYEARECAAYFAkvuMREACgkQpdwBkPlyvgM9LQCfbOILPJKC08mJnc5L+i85bz7T
KEMAn2NARSgqYK0/Gj2BIz+/WecDpLCJ
=VcTS
-END PGP SIGNATURE-


Accepted:
libgettext-ruby-util_2.1.0-2.1_all.deb
  to main/libg/libgettext-ruby/libgettext-ruby-util_2.1.0-2.1_all.deb
libgettext-ruby1.8_2.1.0-2.1_all.deb
  to main/libg/libgettext-ruby/libgettext-ruby1.8_2.1.0-2.1_all.deb
libgettext-ruby1.9.1_2.1.0-2.1_all.deb
  to main/libg/libgettext-ruby/libgettext-ruby1.9.1_2.1.0-2.1_all.deb
libgettext-ruby_2.1.0-2.1.debian.tar.gz
  to main/libg/libgettext-ruby/libgettext-ruby_2.1.0-2.1.debian.tar.gz
libgettext-ruby_2.1.0-2.1.dsc
  to main/libg/libgettext-ruby/libgettext-ruby_2.1.0-2.1.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oeyph-0006ti...@ries.debian.org



Accepted evolution-rss 0.1.9~20100519+8c2b2d-2 (source amd64)

2010-05-20 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 20 May 2010 08:08:00 +0200
Source: evolution-rss
Binary: evolution-rss
Architecture: source amd64
Version: 0.1.9~20100519+8c2b2d-2
Distribution: unstable
Urgency: low
Maintainer: Debian Evolution Maintainers 
pkg-evolution-maintain...@lists.alioth.debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 evolution-rss - Evolution RSS Reader Plugin
Changes: 
 evolution-rss (0.1.9~20100519+8c2b2d-2) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 a116bd5dddf0863e00251bc66ff9c7dce3a761d6 2578 
evolution-rss_0.1.9~20100519+8c2b2d-2.dsc
 b98dd31ba7f3567e32422a361a47277cee2f1451 4835 
evolution-rss_0.1.9~20100519+8c2b2d-2.diff.gz
 38eb14a070aee48220cfaff1c2fc82a8d4a33d5c 307934 
evolution-rss_0.1.9~20100519+8c2b2d-2_amd64.deb
Checksums-Sha256: 
 c0e8e226fc52301a4f4ce57845ce6f302c1afe84007d103df389b0dc6719406a 2578 
evolution-rss_0.1.9~20100519+8c2b2d-2.dsc
 25c84579d6bdb56d2fa782c8986b26c9eda5eea3e8e3f2de2e6e857ca0b76d57 4835 
evolution-rss_0.1.9~20100519+8c2b2d-2.diff.gz
 b2172ef89c582b95d45e09277ad0b84996fd5edbd2044b27957bd290c2f45d7e 307934 
evolution-rss_0.1.9~20100519+8c2b2d-2_amd64.deb
Files: 
 86b869093efd5eea2d7f676a909017d7 2578 gnome optional 
evolution-rss_0.1.9~20100519+8c2b2d-2.dsc
 7b6dc391badbe0722c68722347c4e386 4835 gnome optional 
evolution-rss_0.1.9~20100519+8c2b2d-2.diff.gz
 f023c52c460e233d0b80a7d61394c316 307934 gnome optional 
evolution-rss_0.1.9~20100519+8c2b2d-2_amd64.deb

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

iQIcBAEBCgAGBQJL9NRxAAoJEDBVD3hx7wuo2q8QANvrY/u9ZggW6acMjM7lDFX7
k19BVuGA+2F1UsJIKtvlluNYDlFKEVFp/VhfVy9Q7HFKNppnhNZJihXHz2COw7Md
m/nXkL9HSkhn0zJSeRy871LAhRZPRYR5ml/vvw2vhOktzuS9KK/R7rIZgCEmHPuz
hZWS5QyXbG2s/lmx0zqHXodIszDYOKEZ/QTOdf61jXGZ6XHCz4gbTb9L/HJ8LPnS
VamVTbY+AUfzoy26vpaxu35hrgf9VdAcjlmFhT9MtU0fS+mp7LB+D9w6H2KpbL8C
lbAKXtmD6cE7oFhvUdyyYaaO7K0EAnVfWMnb7Pe0iz6D3qH53lDEkZ8G9NOdmPjk
rgB2/b3vY0vyVDSGzZ9RaH45AZjrvx4sWeDzDFmgZS55VqNatqNUALHCNvq296yV
d0NjW5H9P3s4vYqFj5zXdNfSLjiV/XVNaKJZoJycX4Iqir16OQ58JtsalzLHAQ2B
C+BbQzdq0iDCKQ7kvGmMZDwwlmTHOK/+Mp+YHEpCY5SJz0hdgcuOLzAceNt3pMxC
mQlne9yfHo2yOeFpnKuxG8t0fgN/SWHQiagysJlJdUbvGR7IDGPKwonI5mk+G6vi
//SxWxGSRAnLuUjORb94aSCrOfi59BDoFun7CYu5zl3qkfrcQL5dCTcIPEP29TCD
fbClr+jeCx42ebazHdKN
=/jrt
-END PGP SIGNATURE-


Accepted:
evolution-rss_0.1.9~20100519+8c2b2d-2.diff.gz
  to main/e/evolution-rss/evolution-rss_0.1.9~20100519+8c2b2d-2.diff.gz
evolution-rss_0.1.9~20100519+8c2b2d-2.dsc
  to main/e/evolution-rss/evolution-rss_0.1.9~20100519+8c2b2d-2.dsc
evolution-rss_0.1.9~20100519+8c2b2d-2_amd64.deb
  to main/e/evolution-rss/evolution-rss_0.1.9~20100519+8c2b2d-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oezif-0008cs...@ries.debian.org



Accepted parser-mysql 10.3-2 (source amd64)

2010-05-20 Thread Sergey B Kirpichev
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 19 May 2010 20:57:06 +0400
Source: parser-mysql
Binary: parser3-mysql
Architecture: source amd64
Version: 10.3-2
Distribution: unstable
Urgency: low
Maintainer: Sergey B Kirpichev skirpic...@gmail.com
Changed-By: Sergey B Kirpichev skirpic...@gmail.com
Description: 
 parser3-mysql - MySQL driver for Parser 3
Closes: 559824
Changes: 
 parser-mysql (10.3-2) unstable; urgency=low
 .
   * Use 3.0 (quilt) package format.
   * Update format of debian/copyright and copyright years.
   * Bump standards-version to 3.8.4.
   * Patch embedded copy ltdl.c from upstream branch-1-5 (CVE-2009-3736).
 Closes: #559824.
Checksums-Sha1: 
 0565cb2b2676cae1cb2f9583b377f4fa1d5f0a59 1293 parser-mysql_10.3-2.dsc
 c2b89d5f6e5f6d19a26fb14cdb6178c5d72bfe73 21737 
parser-mysql_10.3-2.debian.tar.gz
 3d79d3977afa382aca5195c69bec15f8053e46fc 23576 parser3-mysql_10.3-2_amd64.deb
Checksums-Sha256: 
 0ac40782f464622e6dd8de92c38c23d6b4ce240ae12ad7ba9057949456485542 1293 
parser-mysql_10.3-2.dsc
 4c011537d33a1c17c2d811dcde5fea70a46846a7c56f357f52ec4ed6fd1131bb 21737 
parser-mysql_10.3-2.debian.tar.gz
 c6ca1e0405a0aac5c191674f6115c44daf7cd9f97032e53cc4a4582ae3fc4126 23576 
parser3-mysql_10.3-2_amd64.deb
Files: 
 2837715d77bdcc6193bb83c3dbca1e56 1293 web optional parser-mysql_10.3-2.dsc
 0e5ce18b15b503a8acc5e20ba8c6c0d0 21737 web optional 
parser-mysql_10.3-2.debian.tar.gz
 0586a815ebf9b8bfe87b9e63e8d9e263 23576 web optional 
parser3-mysql_10.3-2_amd64.deb

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

iEYEAREDAAYFAkv02LcACgkQq4wAz/jiZTdyIgCgqOEvESsB3BftUSUQ4LWtrmbE
9F8AoLmAlWbz5uYMIgRxQy37J4We95w6
=bGqi
-END PGP SIGNATURE-


Accepted:
parser-mysql_10.3-2.debian.tar.gz
  to main/p/parser-mysql/parser-mysql_10.3-2.debian.tar.gz
parser-mysql_10.3-2.dsc
  to main/p/parser-mysql/parser-mysql_10.3-2.dsc
parser3-mysql_10.3-2_amd64.deb
  to main/p/parser-mysql/parser3-mysql_10.3-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1oezxn-zz...@ries.debian.org



Accepted gst-plugins-base0.10 0.10.29-3 (source all amd64)

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

Format: 1.8
Date: Thu, 20 May 2010 09:09:38 +0200
Source: gst-plugins-base0.10
Binary: gstreamer0.10-plugins-base-apps gstreamer0.10-plugins-base-doc 
libgstreamer-plugins-base0.10-0 libgstreamer-plugins-base0.10-dev 
gstreamer0.10-alsa gstreamer0.10-gnomevfs gstreamer0.10-plugins-base 
gstreamer0.10-plugins-base-dbg gstreamer0.10-x gir1.0-gst-plugins-base-0.10
Architecture: source all amd64
Version: 0.10.29-3
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gir1.0-gst-plugins-base-0.10 - Description: GObject introspection data for the 
GStreamer Plugins
 gstreamer0.10-alsa - GStreamer plugin for ALSA
 gstreamer0.10-gnomevfs - GStreamer plugin for GnomeVFS
 gstreamer0.10-plugins-base - GStreamer plugins from the base set
 gstreamer0.10-plugins-base-apps - GStreamer helper programs from the base set
 gstreamer0.10-plugins-base-dbg - GStreamer plugins from the base set
 gstreamer0.10-plugins-base-doc - GStreamer documentation for plugins from the 
base set
 gstreamer0.10-x - GStreamer plugins for X11 and Pango
 libgstreamer-plugins-base0.10-0 - GStreamer libraries from the base set
 libgstreamer-plugins-base0.10-dev - GStreamer development files for libraries 
from the base set
Changes: 
 gst-plugins-base0.10 (0.10.29-3) unstable; urgency=low
 .
   * 
debian/patches/0006-ogg-Some-more-minor-adjustments-for-the-VP8-Ogg-mapp.patch:
 + Small update to the Ogg VP8 mapping.
Checksums-Sha1: 
 84d93f26229ead40114224ccc9bb8560356a3c95 2765 
gst-plugins-base0.10_0.10.29-3.dsc
 85f279626b034063cb98f668c5b928da2adfd16f 42136 
gst-plugins-base0.10_0.10.29-3.diff.gz
 070a79ac7e4836a0e72b96d89b1a828e6f2d2c95 435796 
gstreamer0.10-plugins-base-doc_0.10.29-3_all.deb
 fbf2baf970603d03da5d319ba0c3f2bed9e344a0 59254 
gstreamer0.10-plugins-base-apps_0.10.29-3_amd64.deb
 36385952ae84f4e11d8965512a4b10e4c31286d6 454230 
libgstreamer-plugins-base0.10-0_0.10.29-3_amd64.deb
 9a6c90ff89f28e606a64616b7b925144f4d6e9e7 200070 
libgstreamer-plugins-base0.10-dev_0.10.29-3_amd64.deb
 2ccb722214f8d2eecd677c481c87c4e86646174e 95894 
gstreamer0.10-alsa_0.10.29-3_amd64.deb
 084f33b03cf76640e469bfa40d8433ed79ec108c 73622 
gstreamer0.10-gnomevfs_0.10.29-3_amd64.deb
 f91c10bb399265e325739efb4deccc81801a0b2e 738074 
gstreamer0.10-plugins-base_0.10.29-3_amd64.deb
 3039a659a974f1ec13bda02a18bdecf0a11211d7 2399092 
gstreamer0.10-plugins-base-dbg_0.10.29-3_amd64.deb
 e9b48cf9931ccb3c634b27ab0e61708b03eb2b63 141140 
gstreamer0.10-x_0.10.29-3_amd64.deb
 37cf6bcf371d9cbde2fb4828fdc4ccaa24bedb65 99808 
gir1.0-gst-plugins-base-0.10_0.10.29-3_amd64.deb
Checksums-Sha256: 
 a26ce95fb838ccdb196a7f124e74a19497699bbec8a2c9396dde5ba8b977ce14 2765 
gst-plugins-base0.10_0.10.29-3.dsc
 d8ec22cb0ffd4bf68bf3dcf65842b645c6593662a4eb9cebc8518c94f467c855 42136 
gst-plugins-base0.10_0.10.29-3.diff.gz
 3b3534a493c69667223a7e5cf99cfc4925d74916ee90c442c21f3b04ad985dbb 435796 
gstreamer0.10-plugins-base-doc_0.10.29-3_all.deb
 1d8758a4b7c5ec44f66abc46e657d20c1cdadebcef2f5333c94d0d1c08abeac1 59254 
gstreamer0.10-plugins-base-apps_0.10.29-3_amd64.deb
 c4ffdc8898d40ce742fcf6c9a1aa22e0eee8e85aec37d6b22a66f50d0759fa18 454230 
libgstreamer-plugins-base0.10-0_0.10.29-3_amd64.deb
 57d37dabeabd9fa9f1dcf1c430f03837da893eac7a0f8035e1c9c9427d7c7c66 200070 
libgstreamer-plugins-base0.10-dev_0.10.29-3_amd64.deb
 63f280326fd3f8b07c8a221c16caa99f34151fb5130046cc73498c375abc4f3d 95894 
gstreamer0.10-alsa_0.10.29-3_amd64.deb
 d8f81088094f7c7baba5d31ab0b4dc49965f8feb50d559aa5d2b9c11b3f467a6 73622 
gstreamer0.10-gnomevfs_0.10.29-3_amd64.deb
 eadeab4b90535aada312bb6bafee3a331e2aedaf3738f1f2929fd25b496a90c0 738074 
gstreamer0.10-plugins-base_0.10.29-3_amd64.deb
 090d5bb809e96adaafbddf8ac90d97529a3ea1cd611147c17b413b30bd393884 2399092 
gstreamer0.10-plugins-base-dbg_0.10.29-3_amd64.deb
 7cf4adda7a576f5039e9e9872950171d9f5976acacf4b9897de149d880bde608 141140 
gstreamer0.10-x_0.10.29-3_amd64.deb
 1947a16c80d9370455c1dfc164d54a7437de04b673c524d1184525924b729ede 99808 
gir1.0-gst-plugins-base-0.10_0.10.29-3_amd64.deb
Files: 
 03059535064664138a97c92ed483816d 2765 libs optional 
gst-plugins-base0.10_0.10.29-3.dsc
 bb35f28be936de498d5f439905164fdd 42136 libs optional 
gst-plugins-base0.10_0.10.29-3.diff.gz
 a3476e5666f1b8a0a0f6ff204e1b0e7d 435796 doc optional 
gstreamer0.10-plugins-base-doc_0.10.29-3_all.deb
 6c170e7bec242d8d185bb29d3031c68b 59254 utils optional 
gstreamer0.10-plugins-base-apps_0.10.29-3_amd64.deb
 8e6a93a2f6a90cdc8d7e8629b8660034 454230 libs optional 
libgstreamer-plugins-base0.10-0_0.10.29-3_amd64.deb
 1cb352183f89ad9eefb7061778bcc245 200070 libdevel optional 
libgstreamer-plugins-base0.10-dev_0.10.29-3_amd64.deb
 1a599a7f4851df92931a6f99e3315a69 95894 libs optional 
gstreamer0.10-alsa_0.10.29-3_amd64.deb
 9d6e9f50a6542c16581448498e1761b9 73622 libs optional 

Accepted jags 2.1.0-2 (source i386)

2010-05-20 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 18 May 2010 14:46:08 -0500
Source: jags
Binary: jags
Architecture: source i386
Version: 2.1.0-2
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 jags   - Just Another Gibbs Sampler for Bayesian MCMC simulation
Changes: 
 jags (2.1.0-2) unstable; urgency=low
 .
   * configure: Once again patched for sh4.
 .
   * debian/rules: Also run make docs inside doc/manual/
   * debian/control: Added Build-Depends: for manual creation
   * debian/jags.doc: Install the three pdf manuals
Checksums-Sha1: 
 832a0031b8f29154838e80fe3c79d4c554875f09 1194 jags_2.1.0-2.dsc
 e9244e97be8d33c61130cfd32c299fe7cbc83371 2846 jags_2.1.0-2.diff.gz
 26fcba03ca06683cbb0497a29154d4910e7e59fb 1242634 jags_2.1.0-2_i386.deb
Checksums-Sha256: 
 32c3adb64c87d0009d1a79b2b2f0ae206d33b8a97f4fe5aa372f4c8020640dd2 1194 
jags_2.1.0-2.dsc
 9f682c4c0b9eca5e11ac40b0bdb4e0a7b00796c1dcf751f5978f78f35d7ad4b7 2846 
jags_2.1.0-2.diff.gz
 8f6b8b5d4898187776a8bf135a99dcea795a13d7cb6653899c836b802e98dac9 1242634 
jags_2.1.0-2_i386.deb
Files: 
 e9f0ae0b0e2dad487ed5511bf6da417b 1194 math optional jags_2.1.0-2.dsc
 e1311dee4a937b3d817b2fafe2fe84b4 2846 math optional jags_2.1.0-2.diff.gz
 1640d43655ff997c183ed2c3a47f29a9 1242634 math optional jags_2.1.0-2_i386.deb

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

iD8DBQFL8wzQCZSR95Gw07cRArMxAJ4mwjZfyG+quYg776GYJafx8VaJFwCfX81c
UtYyNrys4rxgwRUOuqHNfJc=
=cfSB
-END PGP SIGNATURE-


Accepted:
jags_2.1.0-2.diff.gz
  to main/j/jags/jags_2.1.0-2.diff.gz
jags_2.1.0-2.dsc
  to main/j/jags/jags_2.1.0-2.dsc
jags_2.1.0-2_i386.deb
  to main/j/jags/jags_2.1.0-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of0mo-0004yg...@ries.debian.org



Accepted wajig 2.0.47 (source all)

2010-05-20 Thread Graham Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 19 May 2010 20:16:10 +1000
Source: wajig
Binary: wajig
Architecture: source all
Version: 2.0.47
Distribution: unstable
Urgency: low
Maintainer: Graham Williams graham.willi...@togaware.com
Changed-By: Graham Williams graham.willi...@togaware.com
Description: 
 wajig  - simplified Debian package management front end
Closes: 579419
Changes: 
 wajig (2.0.47) unstable; urgency=low
 .
   * Use apt-get remove --auto-remove to implement remove-depend.  This is
 simpler than making wajig do the dependency checking, and runs much
 faster. (Closes: #579419).
Checksums-Sha1: 
 8332aeeaab6561112a546445c8440bcd2c87c54d 811 wajig_2.0.47.dsc
 329ef32dfc5bfa92888b84d57b50a39fdce69da8 243188 wajig_2.0.47.tar.gz
 62380b1975a76e05667ff55388d1a4b68b330558 98364 wajig_2.0.47_all.deb
Checksums-Sha256: 
 ddd7eebda94ceab3c52c5860276ecd195372d8959b323aedc0b9bdea5b174d19 811 
wajig_2.0.47.dsc
 359848a70a8c29dbb6af9980606e8dc6a41d9133fcdc5af36f2255e6d12d8009 243188 
wajig_2.0.47.tar.gz
 71d6826a822ea2e54d87dbd949fca675c76da4fcb49317fe493fbc501a0f7fda 98364 
wajig_2.0.47_all.deb
Files: 
 ce9aec36a4c38bb668624286a0f6d8fc 811 admin optional wajig_2.0.47.dsc
 ffca5c2c39ba4a8db66eb377faa47c70 243188 admin optional wajig_2.0.47.tar.gz
 166c74eb08c9bf4120b1fb2658e30e19 98364 admin optional wajig_2.0.47_all.deb

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

iD8DBQFL9OMiCZSR95Gw07cRAssjAKCU7LkJQg1+HFkAerrPu58tWhjQpQCeKy8s
Sh+TGMaXuUgM8dJxwThSNGA=
=N2RL
-END PGP SIGNATURE-


Accepted:
wajig_2.0.47.dsc
  to main/w/wajig/wajig_2.0.47.dsc
wajig_2.0.47.tar.gz
  to main/w/wajig/wajig_2.0.47.tar.gz
wajig_2.0.47_all.deb
  to main/w/wajig/wajig_2.0.47_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of0bm-0005pi...@ries.debian.org



Accepted avr-evtd 1.7.6-1 (source i386)

2010-05-20 Thread Rogério Brito
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 05:09:09 -0300
Source: avr-evtd
Binary: avr-evtd
Architecture: source i386
Version: 1.7.6-1
Distribution: unstable
Urgency: low
Maintainer: Rogério Brito rbr...@ime.usp.br
Changed-By: Rogério Brito rbr...@ime.usp.br
Description: 
 avr-evtd   - AVR watchdog daemon for Linkstation/Kuroboxes
Changes: 
 avr-evtd (1.7.6-1) unstable; urgency=low
 .
   * New upstream release:
 + Code cleanup.
   * Update Standards-Version to 3.8.4 (no changes).
   * Minor cleanup of the rules file.
   * Convert to source format 3.0 (quilt)
Checksums-Sha1: 
 41b0b3f929a847f79421df794d26bd2601777a8d 1048 avr-evtd_1.7.6-1.dsc
 1a2f3473935193f2d451edc6da1231075c7d0f1f 39149 avr-evtd_1.7.6.orig.tar.gz
 8a48124fcc9e1b6d33f1c42dc5d00793b82fc203 3427 avr-evtd_1.7.6-1.debian.tar.gz
 95d8859d9186efd9960651d3fdcd38eddd63d50d 24040 avr-evtd_1.7.6-1_i386.deb
Checksums-Sha256: 
 6e295597b1e1652641ba7d42e737cc644639eca60ae8036739640be2f25b77d0 1048 
avr-evtd_1.7.6-1.dsc
 cdbb045d6109a55fe690ab8a6ddada50463b121559406a38459318a94a48445c 39149 
avr-evtd_1.7.6.orig.tar.gz
 27d9aa8261f16c6df7fa5a2ae70e95ed528f6bd76e7aebe3368ca7f4d445be0f 3427 
avr-evtd_1.7.6-1.debian.tar.gz
 774a93d4e8a99d83432f5de38458ce60fd680f93b9e1c2738a40c8c63fa607da 24040 
avr-evtd_1.7.6-1_i386.deb
Files: 
 a56b3b57e752166a825facda28a41349 1048 misc optional avr-evtd_1.7.6-1.dsc
 cb0c898acc04e1296db08113968c5471 39149 misc optional avr-evtd_1.7.6.orig.tar.gz
 3ca1271c8d6c67af794e33a9ccfd6194 3427 misc optional 
avr-evtd_1.7.6-1.debian.tar.gz
 381fd8035e83701f8feb860fe1514cfa 24040 misc optional avr-evtd_1.7.6-1_i386.deb

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

iEYEARECAAYFAkv07wEACgkQCFqbMnwsrrgAfwCgoAkI4T/4raea1EnMf9nem3hm
nqQAoJqoPe7nbyiMtVml7l60TEsPztix
=fYvv
-END PGP SIGNATURE-


Accepted:
avr-evtd_1.7.6-1.debian.tar.gz
  to main/a/avr-evtd/avr-evtd_1.7.6-1.debian.tar.gz
avr-evtd_1.7.6-1.dsc
  to main/a/avr-evtd/avr-evtd_1.7.6-1.dsc
avr-evtd_1.7.6-1_i386.deb
  to main/a/avr-evtd/avr-evtd_1.7.6-1_i386.deb
avr-evtd_1.7.6.orig.tar.gz
  to main/a/avr-evtd/avr-evtd_1.7.6.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of27d-0004fi...@ries.debian.org



Accepted dolfin 0.9.7-3 (source all i386)

2010-05-20 Thread Johannes Ring
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 10:27:06 +0200
Source: dolfin
Binary: libdolfin0-dev dolfin-dev libdolfin0 libdolfin0-dbg python-dolfin 
dolfin-doc dolfin-bin
Architecture: source all i386
Version: 0.9.7-3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Johannes Ring joha...@simula.no
Description: 
 dolfin-bin - Executable scripts for DOLFIN
 dolfin-dev - Empty package depending on latest DOLFIN development package
 dolfin-doc - Documentation and demo programs for DOLFIN
 libdolfin0 - shared libraries for DOLFIN
 libdolfin0-dbg - Shared libraries with debugging symbols for DOLFIN
 libdolfin0-dev - Shared links and header files for DOLFIN
 python-dolfin - Python interface for DOLFIN
Closes: 581470
Changes: 
 dolfin (0.9.7-3) unstable; urgency=low
 .
   * debian/rules: Remove bashism (closes: #581470).
Checksums-Sha1: 
 eae04fa76d5dbe54de6fba45f535ca0bae08fc06 2446 dolfin_0.9.7-3.dsc
 5814cdd0e86c1ec906c3001b7c96f1edad06de57 33997 dolfin_0.9.7-3.diff.gz
 f08f68318cb9cbf498cf94e84e532525e65508cc 29114 dolfin-dev_0.9.7-3_all.deb
 e4b0a1c9e35614652a4a8c62d6ebb3199e0aab05 4686540 dolfin-doc_0.9.7-3_all.deb
 b6431d81d6f9fcea8076e1a9bb73afc9a1554309 32330 dolfin-bin_0.9.7-3_all.deb
 85219ebfa5b1fda6f4888ae101574ac5afa81b9a 245134 libdolfin0-dev_0.9.7-3_i386.deb
 a7cbf52aedbb9955369bb8f59701c02426826c3d 1047242 libdolfin0_0.9.7-3_i386.deb
 50a917df8da48cfd550c979505b013c0080e2374 12377748 
libdolfin0-dbg_0.9.7-3_i386.deb
 d3be1fc0b6d92e118c87f596dc4ab97b90011f6f 1438226 python-dolfin_0.9.7-3_i386.deb
Checksums-Sha256: 
 2290cb1267a74265a5544c7096e4af072ac248e5645ce8ad2c93cfc996e0f3e6 2446 
dolfin_0.9.7-3.dsc
 44aad68cf1be1bc544cab58e80355ae5217f4f47a0ee86da397c2e2047609480 33997 
dolfin_0.9.7-3.diff.gz
 2c4e111268db548c6ab62a4ef3691e14efb4a8abc609fc7a250ffd0d221d9280 29114 
dolfin-dev_0.9.7-3_all.deb
 b190e60e9f8966e78a333fd5d50fb9fc50542aba73c8cc9533de60a20d0c698d 4686540 
dolfin-doc_0.9.7-3_all.deb
 14fd78b1fb6f98c63e3583159945abab5898d067dbff076eefd74db42178843b 32330 
dolfin-bin_0.9.7-3_all.deb
 89d14e5333064884fb0693e384836f637fba4e15cb52322aa6e84e01d24db0a3 245134 
libdolfin0-dev_0.9.7-3_i386.deb
 cdc59c3ebac69b5005107bab4af001a21522ef9a0119d5b663c02f507c9b16cb 1047242 
libdolfin0_0.9.7-3_i386.deb
 b92e01526ce7fbcad0b3f0e11b13ab5fcd5e90a40eea45b7b988983d4cf060d8 12377748 
libdolfin0-dbg_0.9.7-3_i386.deb
 2f9173dba9f7a6d965253bb792aa308fe016c674a4cd8028f3fdac7ff74dcf3b 1438226 
python-dolfin_0.9.7-3_i386.deb
Files: 
 a0d96621de7b45ab01175a85f5340e54 2446 math extra dolfin_0.9.7-3.dsc
 203471fc253151e7a57a6a49da30f012 33997 math extra dolfin_0.9.7-3.diff.gz
 e2b66f16db43a58aea75436ad73f444e 29114 libdevel extra 
dolfin-dev_0.9.7-3_all.deb
 38f7cf3dc06e6e591853f35f2ed0664e 4686540 doc extra dolfin-doc_0.9.7-3_all.deb
 ba506c2346606714642a3d842f3a1627 32330 math extra dolfin-bin_0.9.7-3_all.deb
 5f8af1121fb0c748752c522687d112f2 245134 libdevel extra 
libdolfin0-dev_0.9.7-3_i386.deb
 aa5c6bf0c3e13a5fcc09f30527ca1cf3 1047242 libs extra libdolfin0_0.9.7-3_i386.deb
 1a3ea953e1359762a0121f9ed3844ec7 12377748 debug extra 
libdolfin0-dbg_0.9.7-3_i386.deb
 3d1a3726f5013d34c81c5d74962efb21 1438226 python extra 
python-dolfin_0.9.7-3_i386.deb

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

iQIVAwUBS/T/fYsTRN6fgH8UAQJX1Q/9FnKVUlgmo24cXdd/B7ObF1ryal6z95Vn
BNifGBoUWNbzfcwKBvp4ma8FPa+3R63rVVQnngAkALnpvfsDyi/1vbt74m828k6X
jgto70eU5BfsELeuFukGxKwo/nnBMAzaFXSYJwH/q+oUnLgu3oQq5auygOFYTkHk
aHdGDqXdwUhnkzlttWWsAOC/XnrBWJv60024u0yID0XgQoUrZin7jGRnkjSTK/6H
wVz95GfScm5uaRLpoFi57DD4IqxBvzlpTRtJMzUsHbMuBfAFYxxTSiltvECcZtXJ
2YuP6BJZHQrIOqzvvHesqFzB22e1387Y7HSG3ZyB3sLqd6zJkNLdwPQUqaNDtHPE
0LtupdgC+q477dhHB2O5uJdVlC0OtGTvZf6mTEFCUdzbedZWYo1dEMplmkxwAsIf
h/Le7k9BQzltKY85PKLwMVHBqwXLzj9WPlF3rCMIZEyHQjRylDUnuCKtx/PoeDqq
zE+c5MFz1TIGEVS3f+merOtmj10f5akHov9shG0zelSOGgLRf2irOvV59AozH3os
TqpH2P0kv6sC5B5rtkG0SNmuBX+oOiSNuddty/p34j3MV+AUERAbrbSbQMtSnK9S
wb9xLZBYJpCf7bpKUE/4+l6102HFEq0AamyUspz2MWd7g4DFRLMt0pWV+3scHHRs
g18LawEHbLk=
=UDN+
-END PGP SIGNATURE-


Accepted:
dolfin-bin_0.9.7-3_all.deb
  to main/d/dolfin/dolfin-bin_0.9.7-3_all.deb
dolfin-dev_0.9.7-3_all.deb
  to main/d/dolfin/dolfin-dev_0.9.7-3_all.deb
dolfin-doc_0.9.7-3_all.deb
  to main/d/dolfin/dolfin-doc_0.9.7-3_all.deb
dolfin_0.9.7-3.diff.gz
  to main/d/dolfin/dolfin_0.9.7-3.diff.gz
dolfin_0.9.7-3.dsc
  to main/d/dolfin/dolfin_0.9.7-3.dsc
libdolfin0-dbg_0.9.7-3_i386.deb
  to main/d/dolfin/libdolfin0-dbg_0.9.7-3_i386.deb
libdolfin0-dev_0.9.7-3_i386.deb
  to main/d/dolfin/libdolfin0-dev_0.9.7-3_i386.deb
libdolfin0_0.9.7-3_i386.deb
  to main/d/dolfin/libdolfin0_0.9.7-3_i386.deb
python-dolfin_0.9.7-3_i386.deb
  to main/d/dolfin/python-dolfin_0.9.7-3_i386.deb


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

Accepted glib2.0 2.25.6-1 (source all amd64)

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

Format: 1.8
Date: Thu, 20 May 2010 10:27:41 +0200
Source: glib2.0
Binary: libglib2.0-0 libglib2.0-udeb libglib2.0-bin libglib2.0-dev 
libglib2.0-0-dbg libglib2.0-data libglib2.0-doc libgio-fam libglib2.0-0-refdbg
Architecture: source all amd64
Version: 2.25.6-1
Distribution: experimental
Urgency: low
Maintainer: Loic Minier l...@dooz.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 libgio-fam - GLib Input, Output and Streaming Library (fam module)
 libglib2.0-0 - The GLib library of C routines
 libglib2.0-0-dbg - The GLib libraries and debugging symbols
 libglib2.0-0-refdbg - The GLib library of C routines - refdbg library
 libglib2.0-bin - The programs for the GLib library
 libglib2.0-data - Common files for GLib library
 libglib2.0-dev - Development files for the GLib library
 libglib2.0-doc - Documentation files for the GLib library
 libglib2.0-udeb - The GLib library of C routines - minimal runtime (udeb)
Changes: 
 glib2.0 (2.25.6-1) experimental; urgency=low
 .
   * New upstream development release.
Checksums-Sha1: 
 e1215df159aad987e79f37990b27c76e4650e1a3 1686 glib2.0_2.25.6-1.dsc
 35d43ed3e01d072f283c7e40a00259b441c41fae 8506435 glib2.0_2.25.6.orig.tar.gz
 b919231b17968287f857a36604460b62decb391c 41630 glib2.0_2.25.6-1.diff.gz
 9efbbcb35f99ae777a6f233b3e86a02f56f8eaca 980440 
libglib2.0-data_2.25.6-1_all.deb
 88ca4a0de021402c5f027917f357b3fdc18c39ff 1788858 
libglib2.0-doc_2.25.6-1_all.deb
 542a9df92afe2b0234d1a6507bfa5fd813a90314 1292252 
libglib2.0-0_2.25.6-1_amd64.deb
 d5ba834c5e4790419c8a47899623cec219ee1c8d 1882992 
libglib2.0-udeb_2.25.6-1_amd64.udeb
 8c1d579f7be7b543c389881c2ffa55f53dedb737 211732 
libglib2.0-bin_2.25.6-1_amd64.deb
 5632b279758db8ffb97d68147e21a4cfc5602208 1514612 
libglib2.0-dev_2.25.6-1_amd64.deb
 0da5598097b25f1f4591098461ff3b1b30f618f3 1766260 
libglib2.0-0-dbg_2.25.6-1_amd64.deb
 4326c736c5eaa10287eae7d07d8879ebc00350a2 526508 
libglib2.0-0-refdbg_2.25.6-1_amd64.deb
Checksums-Sha256: 
 ea42fc197cc85551ac2760e359746e974e34da1ddad287e2535d4318d324b7a4 1686 
glib2.0_2.25.6-1.dsc
 3dd62553461e7e88b1f1511d7d9fdb46ddeb822ccb1a3a195b0eab41d6a042af 8506435 
glib2.0_2.25.6.orig.tar.gz
 12f142cb981f3732fd0016414c08b8af575f942d3f15b6441deec41294a02e74 41630 
glib2.0_2.25.6-1.diff.gz
 05b66ed0438c4fb0f7aba729447cf43893e05b6f3315ba6b77cfa0fa61a7dab8 980440 
libglib2.0-data_2.25.6-1_all.deb
 df597bdf48450d25443f76980ef9d58d41f1f2bfc3c79efa51b190b7fc61b286 1788858 
libglib2.0-doc_2.25.6-1_all.deb
 d1fafbcd859d834e326fc31f35eee5d5c5d6ef81e6042b7b46a2677853479683 1292252 
libglib2.0-0_2.25.6-1_amd64.deb
 6782af8e0ff0665107da2ae1d744b2b63a3c23f0b1766732371821edfedd12e3 1882992 
libglib2.0-udeb_2.25.6-1_amd64.udeb
 35c3002f9cdacc4ce1b3ac2a88528b842fdb66377b8183acad1e3af6c1ef56db 211732 
libglib2.0-bin_2.25.6-1_amd64.deb
 ea2da171a8aa5082ce8d9f3a8c05e407f4ee872dc47bd316e1aad365b2c818bf 1514612 
libglib2.0-dev_2.25.6-1_amd64.deb
 1f682f0495d01141006494f05b7a81fdfeb792a84b6ec6361b4e2ff0609fd44f 1766260 
libglib2.0-0-dbg_2.25.6-1_amd64.deb
 953abea06ee1d2afe5defdcddc3e2b5f98841614b0f79f75e6493bedc159e415 526508 
libglib2.0-0-refdbg_2.25.6-1_amd64.deb
Files: 
 d9a25749f04b3adb8e94dded9b228eb1 1686 libs optional glib2.0_2.25.6-1.dsc
 43524409c043c795f04626427d701180 8506435 libs optional 
glib2.0_2.25.6.orig.tar.gz
 bb0cac46399c0ab5ec4b529047f2ec8d 41630 libs optional glib2.0_2.25.6-1.diff.gz
 b6374101e8b0c0f5a9ffcfddf60034f5 980440 libs optional 
libglib2.0-data_2.25.6-1_all.deb
 580d65718bda60f5ea527f23fa5f4e0a 1788858 doc optional 
libglib2.0-doc_2.25.6-1_all.deb
 248bb75366bb3924a21e7c42fe6bf32d 1292252 libs optional 
libglib2.0-0_2.25.6-1_amd64.deb
 3e06d044ec7c67a336af4f6a6803227e 1882992 debian-installer optional 
libglib2.0-udeb_2.25.6-1_amd64.udeb
 6370608bd8a41ed05117c9d7757375f9 211732 misc optional 
libglib2.0-bin_2.25.6-1_amd64.deb
 8aa4caa83c495a68e60f6e7d1893dede 1514612 libdevel optional 
libglib2.0-dev_2.25.6-1_amd64.deb
 976ab501833959ad7bc5520a35d82b07 1766260 debug extra 
libglib2.0-0-dbg_2.25.6-1_amd64.deb
 703cebb371d8ae88d4181474458490a6 526508 debug extra 
libglib2.0-0-refdbg_2.25.6-1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAkv0/kIACgkQBsBdh1vkHyGZRwCghTK65zY3PkKjG8ngHx6y8elY
79AAn24UWEWUaZkpPwmJZygoaTz+I1+h
=Y8bV
-END PGP SIGNATURE-


Accepted:
glib2.0_2.25.6-1.diff.gz
  to main/g/glib2.0/glib2.0_2.25.6-1.diff.gz
glib2.0_2.25.6-1.dsc
  to main/g/glib2.0/glib2.0_2.25.6-1.dsc
glib2.0_2.25.6.orig.tar.gz
  to main/g/glib2.0/glib2.0_2.25.6.orig.tar.gz
libglib2.0-0-dbg_2.25.6-1_amd64.deb
  to main/g/glib2.0/libglib2.0-0-dbg_2.25.6-1_amd64.deb
libglib2.0-0-refdbg_2.25.6-1_amd64.deb
  to main/g/glib2.0/libglib2.0-0-refdbg_2.25.6-1_amd64.deb
libglib2.0-0_2.25.6-1_amd64.deb
  to main/g/glib2.0/libglib2.0-0_2.25.6-1_amd64.deb
libglib2.0-bin_2.25.6-1_amd64.deb
  to main/g/glib2.0/libglib2.0-bin_2.25.6-1_amd64.deb

Accepted iproute 20100519-1 (source all amd64)

2010-05-20 Thread Andreas Henriksson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 10:19:14 +0200
Source: iproute
Binary: iproute iproute-doc iproute-dev
Architecture: source all amd64
Version: 20100519-1
Distribution: unstable
Urgency: low
Maintainer: Debian iproute maintainers ah-ipro...@debian.org
Changed-By: Andreas Henriksson andr...@fatal.se
Description: 
 iproute- networking and traffic control tools
 iproute-dev - networking and traffic control tools - development files
 iproute-doc - networking and traffic control tools - documentation
Changes: 
 iproute (20100519-1) unstable; urgency=low
 .
   * New upstream release.
   * drop debian/patches/disable-ifstat.dpatch:
 - ifstat is not installed anyway, no need for this patch.
Checksums-Sha1: 
 cab24ecd4e9b04d910996da5a6f9ec7116c6d97c 1439 iproute_20100519-1.dsc
 3d961eede51524c758eb025f1d65aea985a26c2f 459720 iproute_20100519.orig.tar.gz
 6f9c93eacc97ccf54c8c5ab85cf3173da4fd306b 26433 iproute_20100519-1.diff.gz
 61177bb3a1fa9610830763b6871b7810e7853282 933962 iproute-doc_20100519-1_all.deb
 cf5fb5db4825072ac91bd5ea8e361354fc88f6f9 423052 iproute_20100519-1_amd64.deb
 daf8e5063d6ee39be90d5ae4e8a2f2b945112884 18996 iproute-dev_20100519-1_amd64.deb
Checksums-Sha256: 
 e86d5ef62c1a36fd502595a19fb0d5d3c4519c536af0b639c1e9a522f87f319e 1439 
iproute_20100519-1.dsc
 1d47efd6646de4dd36b2df1692d27850118fe336fc6cc7bb7d599435848537d0 459720 
iproute_20100519.orig.tar.gz
 b6a63abf6933db8120d08ef26ea01a1a87eb4b617d020b08e598bf19ba51106e 26433 
iproute_20100519-1.diff.gz
 844af8f692be51a4366eff6086fa3080215e82012873a7a7401e036084970ff4 933962 
iproute-doc_20100519-1_all.deb
 168becfa0503f888f53b53ded2ad03f7548da3d076ac24e134f26f25145336dc 423052 
iproute_20100519-1_amd64.deb
 f6bb27335bd05a3cb8bc7d3ded4acb765f3a8fe8e44f0a8a901701a1f00329f0 18996 
iproute-dev_20100519-1_amd64.deb
Files: 
 bc4d0276332d654eaa3a3defb45d7882 1439 net optional iproute_20100519-1.dsc
 1c8e5e847519c2062241f7bf92dd482a 459720 net optional 
iproute_20100519.orig.tar.gz
 4a79b83114d79a5e5e108c5f66dc3184 26433 net optional iproute_20100519-1.diff.gz
 76ee401dec0788a4630262a14ec7c90f 933962 doc optional 
iproute-doc_20100519-1_all.deb
 694bb6258f1dbea5ba97059428fd9e49 423052 net important 
iproute_20100519-1_amd64.deb
 78c250ab6f8ee9f5e0e885f1e5ff242d 18996 libdevel optional 
iproute-dev_20100519-1_amd64.deb

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

iEYEARECAAYFAkv09yMACgkQcgQ2cL3l8e4VjQCeL3P+CyMQiSQBJHVndhzlyhfv
jYkAoI6hftW4hfFdaJNT6M6gLNzrjNIP
=swHG
-END PGP SIGNATURE-


Accepted:
iproute-dev_20100519-1_amd64.deb
  to main/i/iproute/iproute-dev_20100519-1_amd64.deb
iproute-doc_20100519-1_all.deb
  to main/i/iproute/iproute-doc_20100519-1_all.deb
iproute_20100519-1.diff.gz
  to main/i/iproute/iproute_20100519-1.diff.gz
iproute_20100519-1.dsc
  to main/i/iproute/iproute_20100519-1.dsc
iproute_20100519-1_amd64.deb
  to main/i/iproute/iproute_20100519-1_amd64.deb
iproute_20100519.orig.tar.gz
  to main/i/iproute/iproute_20100519.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of2k7-0006co...@ries.debian.org



Accepted kde-style-qtcurve 1.4.1-1 (source amd64)

2010-05-20 Thread Fathi Boudra
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 11:20:13 +0300
Source: kde-style-qtcurve
Binary: kde-style-qtcurve kwin-style-qtcurve qtcurve
Architecture: source amd64
Version: 1.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Fathi Boudra f...@debian.org
Description: 
 kde-style-qtcurve - Unified widget styles for KDE and GTK+
 kwin-style-qtcurve - Unified window decoration for KDE and GTK+
 qtcurve- Unified window decoration for KDE and GTK+
Changes: 
 kde-style-qtcurve (1.4.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 3b5c3bf5229346b799181df3010f5a69aca06d27 1607 kde-style-qtcurve_1.4.1-1.dsc
 d7fe82929d78804c22c1290424b3500050096125 231792 
kde-style-qtcurve_1.4.1.orig.tar.bz2
 40146de61361555267f1d8ade3cd39b272f8d4c2 6094 
kde-style-qtcurve_1.4.1-1.debian.tar.gz
 20f30efe253b138827818cf134f0c9fb43d82b9c 425772 
kde-style-qtcurve_1.4.1-1_amd64.deb
 5c94941eb967527080dd39c67db50c7dbfb141d6 104546 
kwin-style-qtcurve_1.4.1-1_amd64.deb
 af1f4c16c466e9ffdf7cb9f7bfc6858498785a93 25236 qtcurve_1.4.1-1_amd64.deb
Checksums-Sha256: 
 66deedae281d6e48f2bb9f6c4a1cf73bf996384b420435461ca76ab49925f2df 1607 
kde-style-qtcurve_1.4.1-1.dsc
 c995fd11e5092fd1a29c82b73fd929e64e4dff3aebf3291ddb08798ffcd65a72 231792 
kde-style-qtcurve_1.4.1.orig.tar.bz2
 0f0d8fc58aa5709b0c70ede186fd1836808112ce15399ac14412975e164c93f4 6094 
kde-style-qtcurve_1.4.1-1.debian.tar.gz
 7cada725743d3b8f4b595c8d2f011eb0d81f8e23b47a8256a5e663457a85ed2b 425772 
kde-style-qtcurve_1.4.1-1_amd64.deb
 3fbcbe28bde0d62f24ed81db767fbd22542c745e7d56d4b24da901d0b0226d6f 104546 
kwin-style-qtcurve_1.4.1-1_amd64.deb
 50cf58b0e361a1d7ce1e3032c55668d22f71ad23fea77e0c3c6456a374a7e42f 25236 
qtcurve_1.4.1-1_amd64.deb
Files: 
 3c7a21d2558c34099b882eafae811f62 1607 kde optional 
kde-style-qtcurve_1.4.1-1.dsc
 c9404370d41bc4538e62e84fe13677e3 231792 kde optional 
kde-style-qtcurve_1.4.1.orig.tar.bz2
 24b1b404373f90322a48201c53494d46 6094 kde optional 
kde-style-qtcurve_1.4.1-1.debian.tar.gz
 df5da1456f8502eee3fcef226423fccd 425772 kde optional 
kde-style-qtcurve_1.4.1-1_amd64.deb
 5d10fe2a8798d346de707ca25bbb85ac 104546 kde optional 
kwin-style-qtcurve_1.4.1-1_amd64.deb
 029dd3fca7929b1d89f99f05ac00 25236 kde optional qtcurve_1.4.1-1_amd64.deb

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

iJwEAQECAAYFAkv083wACgkQjPU19mqlcvcaYwP9HZtU9djgFxtcSBfUrCYXj+Hx
PTLxMvwiBQzszdYpqaT0uxL3ORSro3DDQu4DDCCIX+u2Do8EUMORe2cvNIeGt8Xw
8nQd0vsTAeTXO0bfo0zLWKH9aMFEJFXFDlRPs1wAr/SeIkUkAq4hLbQ5QKn149N2
mtvqx7Vkv/3CMicgOiI=
=YT0s
-END PGP SIGNATURE-


Accepted:
kde-style-qtcurve_1.4.1-1.debian.tar.gz
  to main/k/kde-style-qtcurve/kde-style-qtcurve_1.4.1-1.debian.tar.gz
kde-style-qtcurve_1.4.1-1.dsc
  to main/k/kde-style-qtcurve/kde-style-qtcurve_1.4.1-1.dsc
kde-style-qtcurve_1.4.1-1_amd64.deb
  to main/k/kde-style-qtcurve/kde-style-qtcurve_1.4.1-1_amd64.deb
kde-style-qtcurve_1.4.1.orig.tar.bz2
  to main/k/kde-style-qtcurve/kde-style-qtcurve_1.4.1.orig.tar.bz2
kwin-style-qtcurve_1.4.1-1_amd64.deb
  to main/k/kde-style-qtcurve/kwin-style-qtcurve_1.4.1-1_amd64.deb
qtcurve_1.4.1-1_amd64.deb
  to main/k/kde-style-qtcurve/qtcurve_1.4.1-1_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of2ks-0006ht...@ries.debian.org



Accepted lattice 0.18-8-1 (source i386)

2010-05-20 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 04:02:50 -0500
Source: lattice
Binary: r-cran-lattice
Architecture: source i386
Version: 0.18-8-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-lattice - GNU R package for 'Trellis' graphics
Changes: 
 lattice (0.18-8-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 7c624522d26b03206bcb1d5a92e789ef5f110d66 983 lattice_0.18-8-1.dsc
 99eeb8e26dc961f0a67267c7adee0097dc897b68 322426 lattice_0.18-8.orig.tar.gz
 0864e5d3e60d7be6e9da2a3d7a42c96f9dcd23de 3647 lattice_0.18-8-1.diff.gz
 0d14892bbaf25ef74d06fb5598bc8df696c43e8a 670064 
r-cran-lattice_0.18-8-1_i386.deb
Checksums-Sha256: 
 56455afc76c2f019ab601f5d3d0e6e5c314460807dae1bf5a0d2709e4fc81635 983 
lattice_0.18-8-1.dsc
 bac9b12cbc2583d944b4f83aa71a8ffac1602ff40b9d5fafb6c38f45fa5f342d 322426 
lattice_0.18-8.orig.tar.gz
 dece2e65a6d6fcb5880259ec454e6834a31e27a4eeef1954a6fa900c3f509837 3647 
lattice_0.18-8-1.diff.gz
 06f63abe23492187e4f2e2c2542865d95a92ea370df450d1c918bb068b8a4fad 670064 
r-cran-lattice_0.18-8-1_i386.deb
Files: 
 8df90123d6076ed1fe0910510331487a 983 gnu-r optional lattice_0.18-8-1.dsc
 fc0b5adf287abf15193abab2abc91643 322426 gnu-r optional 
lattice_0.18-8.orig.tar.gz
 25c62599135c653ea6da65e32756fefb 3647 gnu-r optional lattice_0.18-8-1.diff.gz
 066f7e5a0e81f5c472be8176566191a5 670064 gnu-r optional 
r-cran-lattice_0.18-8-1_i386.deb

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

iD8DBQFL9PtaCZSR95Gw07cRAsq6AJ4jw52Bq5e7XC8FEDmgAk5x1P+oEACfXa/O
WVJpAfIvzDCdDkAYkzYhgkA=
=hhVY
-END PGP SIGNATURE-


Accepted:
lattice_0.18-8-1.diff.gz
  to main/l/lattice/lattice_0.18-8-1.diff.gz
lattice_0.18-8-1.dsc
  to main/l/lattice/lattice_0.18-8-1.dsc
lattice_0.18-8.orig.tar.gz
  to main/l/lattice/lattice_0.18-8.orig.tar.gz
r-cran-lattice_0.18-8-1_i386.deb
  to main/l/lattice/r-cran-lattice_0.18-8-1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of2n6-0006xh...@ries.debian.org



Accepted ldiskfsprogs 1.41.10-1 (source amd64)

2010-05-20 Thread Patrick Winnertz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 10:52:27 +0200
Source: ldiskfsprogs
Binary: ldiskfsck lfsck
Architecture: source amd64
Version: 1.41.10-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lustre Packaging Team 
pkg-lustre-maintain...@lists.alioth.debian.org
Changed-By: Patrick Winnertz win...@debian.org
Description: 
 ldiskfsck  - statically-linked lustre version of the ext2 filesystem checker
 lfsck  - statically linked version of the lustre filesystem checker
Changes: 
 ldiskfsprogs (1.41.10-1) unstable; urgency=low
 .
   * Imported Upstream version 1.41.10
   * Imported new patches for 1.41.10
   * Updated debian/changelog
   * Removed patches with binary stuff inside
   * Some more changes on the series file
   * configure option --with-ccopts doesn't exist anymore.. switching to
 CFLAGS
   * link statically
Checksums-Sha1: 
 9452f017dcf2344ad0950f9b3a994b6f2e4e064b 1334 ldiskfsprogs_1.41.10-1.dsc
 1b345d5eb0a5940f713cb575ce8d2e56569fb855 4419908 
ldiskfsprogs_1.41.10.orig.tar.gz
 21bef23c0c0750f0ca8e12fca46b663f7dc92c78 573914 ldiskfsprogs_1.41.10-1.diff.gz
 2edbb62da90eb3c36cc7d066190d964f02dc16ee 1120220 ldiskfsck_1.41.10-1_amd64.deb
 fabd1799e19230a35245a58281b72f590deed266 909684 lfsck_1.41.10-1_amd64.deb
Checksums-Sha256: 
 aad42f2643f2c10a144a203f442714c95352548ad6cc7165924dea3b99a958cf 1334 
ldiskfsprogs_1.41.10-1.dsc
 ab9ade45a4fe43f01d4f4c0797d4e99e7915bf8cfd8572ae7fa21bb03a9b9fa7 4419908 
ldiskfsprogs_1.41.10.orig.tar.gz
 30ba9e09f30d27b2f1565c234ce66ab50320bfefb4cf7c568640ca2da93aa014 573914 
ldiskfsprogs_1.41.10-1.diff.gz
 8a9164be38615564ab3b030a7b9fedb0d46080845a9e24e179113b0316a8eea3 1120220 
ldiskfsck_1.41.10-1_amd64.deb
 1e6f1b0a3eb532ae70bdc441400c9d674d4a3c8bd616538f65604d5047c141f3 909684 
lfsck_1.41.10-1_amd64.deb
Files: 
 c60735c423a4f8b45d9135f60b84a4ac 1334 admin optional ldiskfsprogs_1.41.10-1.dsc
 b15ff042c0995904487a9f9afa35da41 4419908 admin optional 
ldiskfsprogs_1.41.10.orig.tar.gz
 ca83ba3dab8f3ac4265a62fe8f7d3f94 573914 admin optional 
ldiskfsprogs_1.41.10-1.diff.gz
 278acf4025113343c043621040401119 1120220 admin optional 
ldiskfsck_1.41.10-1_amd64.deb
 4b595c25b8f7ffdbaab3c43fd9e6a04e 909684 admin optional 
lfsck_1.41.10-1_amd64.deb

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

iEYEARECAAYFAkv0/oEACgkQzgm26bkTFDq1CACfYmSYYzOMaRiWBZOyI/Jw8lWr
xDcAnR/xaiai8Oz/mVJIoPKDJgW3nCzy
=Afip
-END PGP SIGNATURE-


Accepted:
ldiskfsck_1.41.10-1_amd64.deb
  to main/l/ldiskfsprogs/ldiskfsck_1.41.10-1_amd64.deb
ldiskfsprogs_1.41.10-1.diff.gz
  to main/l/ldiskfsprogs/ldiskfsprogs_1.41.10-1.diff.gz
ldiskfsprogs_1.41.10-1.dsc
  to main/l/ldiskfsprogs/ldiskfsprogs_1.41.10-1.dsc
ldiskfsprogs_1.41.10.orig.tar.gz
  to main/l/ldiskfsprogs/ldiskfsprogs_1.41.10.orig.tar.gz
lfsck_1.41.10-1_amd64.deb
  to main/l/ldiskfsprogs/lfsck_1.41.10-1_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of2ns-0006b1...@ries.debian.org



Accepted lustre 1.8.3-1 (source all amd64)

2010-05-20 Thread Patrick Winnertz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 12 May 2010 14:54:51 +0200
Source: lustre
Binary: linux-patch-lustre lustre-source lustre-utils lustre-tests liblustre 
lustre-dev
Architecture: source all amd64
Version: 1.8.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Lustre Packaging team 
pkg-lustre-maintain...@lists.alioth.debian.org
Changed-By: Patrick Winnertz win...@debian.org
Description: 
 liblustre  - Runtime library for Lustre filesystem utilities
 linux-patch-lustre - Linux kernel patch for the Lustre Filesystem
 lustre-dev - Development files for the Lustre filesystem
 lustre-source - source for Lustre filesystem client kernel modules
 lustre-tests - Test suite for the Lustre filesystem
 lustre-utils - Userspace utilities for the Lustre filesystem
Changes: 
 lustre (1.8.3-1) unstable; urgency=low
 .
   * [93cd284] Imported Upstream version 1.8.3
   * [e89f2a4] Remove LBUG patches as they are part of 1.8.3
   * [9f19dda] Updated no-darwin patch for 1.8.3
   * [4b619b5] Remove configure_error_on_unstable.dpatch as it seems to
 be unnecessary with 1.8.3
   * [0033ec8] New changelog for 1.8.3
   * [29825e3] Fix bashism in configure script, which fails on unstable
Checksums-Sha1: 
 bc04882ddbfe12fbb679ecc42e8836523be0b382 1414 lustre_1.8.3-1.dsc
 68f7bfedfaf6dea48599f0eb0d70f8e5bf1c8f3a 5643983 lustre_1.8.3.orig.tar.gz
 7637e9e1c1b78f7cbc092c96e36cb27944f692b7 64984 lustre_1.8.3-1.diff.gz
 a1acc6c8803b23287cc4ee44ca659390bd9c3711 609492 
linux-patch-lustre_1.8.3-1_all.deb
 4010a1ecb7e0eaff2673aa24a18d1af81d7ce45c 3726494 lustre-source_1.8.3-1_all.deb
 823ecbf7f078b24d59fd2eb10ed3692839b04728 727690 lustre-utils_1.8.3-1_amd64.deb
 81bb8caa8eabaff596d8baee791949c8a74b6f41 469242 lustre-tests_1.8.3-1_amd64.deb
 e85015bb7dceb52bcda0e0d1f96ab099b36e3135 5428660 lustre-dev_1.8.3-1_amd64.deb
 ab5f6806f993fe77208ddf8260e0d2abcf2895ed 862438 liblustre_1.8.3-1_amd64.deb
Checksums-Sha256: 
 09e0353b638b17e85413c357b84338c15db9162d156c0c5c000d1a655a7f4464 1414 
lustre_1.8.3-1.dsc
 0834bafad30b58aec44bd98388c509d0e7ce40599ec9391db397d4d0159b9c3c 5643983 
lustre_1.8.3.orig.tar.gz
 d2771cdf710dbb89a2111ae02a1a2113db5441c591c801b5c0c461799e3bc5ec 64984 
lustre_1.8.3-1.diff.gz
 7e35852aec75beada7a6d41de46a63c2b154bba6d9a83a0c9af908e7c108c713 609492 
linux-patch-lustre_1.8.3-1_all.deb
 312966505c6350ffdaebcd669ac0b6a0e4eecb3e214c68169daab1299259de3e 3726494 
lustre-source_1.8.3-1_all.deb
 6868def79aeb6735a13252523b942d0b98aff70dafb47e5668413784cfc9ae4d 727690 
lustre-utils_1.8.3-1_amd64.deb
 c5e6d458bfedd50caf7e94d8193cefa30cbdb174711f889380231ef0676e8a8f 469242 
lustre-tests_1.8.3-1_amd64.deb
 cad6306e280fb4e1d8f60b69dc34b8a97a3f63aa37491d7a7fef3b1f0957c204 5428660 
lustre-dev_1.8.3-1_amd64.deb
 de6d7fca44b555dd03167d2e6823f33c402dcae58da88f7ab0faee4c3978dd33 862438 
liblustre_1.8.3-1_amd64.deb
Files: 
 4a0187bb1467c220c2a37d8f084d536d 1414 admin optional lustre_1.8.3-1.dsc
 76ec288a449a7007eddff08a45357325 5643983 admin optional 
lustre_1.8.3.orig.tar.gz
 f139090e904808d8394ad3a78865c131 64984 admin optional lustre_1.8.3-1.diff.gz
 951c130025664f67fd10cda3c996f5df 609492 kernel optional 
linux-patch-lustre_1.8.3-1_all.deb
 b98359ea04c337eb8380bf6071634421 3726494 kernel optional 
lustre-source_1.8.3-1_all.deb
 4d19c4fdbf69bb5420ade3bc290fb42e 727690 utils optional 
lustre-utils_1.8.3-1_amd64.deb
 adc716de6149592074e6ad4f5312decb 469242 admin optional 
lustre-tests_1.8.3-1_amd64.deb
 40b5b3a6d042e0c0dca28029a3844ccf 5428660 libdevel optional 
lustre-dev_1.8.3-1_amd64.deb
 55fd9a9e5d0e4ee1dc0766b795d3b52f 862438 otherosfs optional 
liblustre_1.8.3-1_amd64.deb

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

iEYEARECAAYFAkv0/o4ACgkQzgm26bkTFDordQCdGS3RntF29qL9CPChXtaTpdzj
xxMAnjy8LNmnIwWdVkUtnN/G+NhqcA8w
=pcWK
-END PGP SIGNATURE-


Accepted:
liblustre_1.8.3-1_amd64.deb
  to main/l/lustre/liblustre_1.8.3-1_amd64.deb
linux-patch-lustre_1.8.3-1_all.deb
  to main/l/lustre/linux-patch-lustre_1.8.3-1_all.deb
lustre-dev_1.8.3-1_amd64.deb
  to main/l/lustre/lustre-dev_1.8.3-1_amd64.deb
lustre-source_1.8.3-1_all.deb
  to main/l/lustre/lustre-source_1.8.3-1_all.deb
lustre-tests_1.8.3-1_amd64.deb
  to main/l/lustre/lustre-tests_1.8.3-1_amd64.deb
lustre-utils_1.8.3-1_amd64.deb
  to main/l/lustre/lustre-utils_1.8.3-1_amd64.deb
lustre_1.8.3-1.diff.gz
  to main/l/lustre/lustre_1.8.3-1.diff.gz
lustre_1.8.3-1.dsc
  to main/l/lustre/lustre_1.8.3-1.dsc
lustre_1.8.3.orig.tar.gz
  to main/l/lustre/lustre_1.8.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of2tc-0007s6...@ries.debian.org



Accepted multcomp 1.1-7-1 (source all)

2010-05-20 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 03:47:40 -0500
Source: multcomp
Binary: r-cran-multcomp
Architecture: source all
Version: 1.1-7-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-multcomp - GNU R package for multiple comparison procedures
Changes: 
 multcomp (1.1-7-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
Checksums-Sha1: 
 bf754f0b995da3204b36e28352aa5c5ed0ea2f00 1040 multcomp_1.1-7-1.dsc
 91cfd03ff8b80e0b0e0ff594a6b0c82b40118aaa 889936 multcomp_1.1-7.orig.tar.gz
 94a66574624e31f27a6f133828a7b31f41d92d6d 2618 multcomp_1.1-7-1.diff.gz
 5926d56bd84c52d7dbafdc1a12ab747d4084ca45 961568 r-cran-multcomp_1.1-7-1_all.deb
Checksums-Sha256: 
 c40c8c55b8c3a5017fc9b75f801df605bc70e02b6a76916b8dfa5957d4ea96d1 1040 
multcomp_1.1-7-1.dsc
 225f443e092418ac2cd53a6204636874bda60e921efe1621956060a605d86d13 889936 
multcomp_1.1-7.orig.tar.gz
 a5b8301af15740bc6c9078ae0e2cd57c79fda8b951f8e50f75adebb0628f104b 2618 
multcomp_1.1-7-1.diff.gz
 90be8ea4c4d974aff1ec19e21877033287596743224febc5eafdd3fe3db83c85 961568 
r-cran-multcomp_1.1-7-1_all.deb
Files: 
 effd8da513e22d9cfb92874457c6e9d7 1040 gnu-r optional multcomp_1.1-7-1.dsc
 0c87bcea58ad5fbd4341d6a6b20f2bd6 889936 gnu-r optional 
multcomp_1.1-7.orig.tar.gz
 9ef7fd77b81d218eb617afc31c69f95b 2618 gnu-r optional multcomp_1.1-7-1.diff.gz
 53627e8070d9ad43e9c64dd88478e84f 961568 gnu-r optional 
r-cran-multcomp_1.1-7-1_all.deb

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

iD8DBQFL9PoxCZSR95Gw07cRAlYuAJ4oI91TuW13pcgAUGmfGNA4rrHgiQCfTwWE
9WBp+d1ey0oVHI9u93Pw87A=
=HU7O
-END PGP SIGNATURE-


Accepted:
multcomp_1.1-7-1.diff.gz
  to main/m/multcomp/multcomp_1.1-7-1.diff.gz
multcomp_1.1-7-1.dsc
  to main/m/multcomp/multcomp_1.1-7-1.dsc
multcomp_1.1-7.orig.tar.gz
  to main/m/multcomp/multcomp_1.1-7.orig.tar.gz
r-cran-multcomp_1.1-7-1_all.deb
  to main/m/multcomp/r-cran-multcomp_1.1-7-1_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of2v2-0007yz...@ries.debian.org



Accepted rmatrix 0.999375-39-1 (source i386)

2010-05-20 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 04:01:17 -0500
Source: rmatrix
Binary: r-cran-matrix
Architecture: source i386
Version: 0.999375-39-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-matrix - GNU R package of classes for dense and sparse matrices
Changes: 
 rmatrix (0.999375-39-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
Checksums-Sha1: 
 c16a1dcfffa20982299e2be2c600273fe233d9b3 1051 rmatrix_0.999375-39-1.dsc
 b093f46e05c026be11f3aaf3ac98c31838d7c7e1 2613891 
rmatrix_0.999375-39.orig.tar.gz
 8340442e6395dde01dd65f0d0eb369942a0910b4 4096 rmatrix_0.999375-39-1.diff.gz
 864fb19f4ea1ac39fdc4cf0f889415533ed45de3 3074780 
r-cran-matrix_0.999375-39-1_i386.deb
Checksums-Sha256: 
 078b9f89e9245fab36d5c3966bbf13a209d74037da129c1a856497f58aae4860 1051 
rmatrix_0.999375-39-1.dsc
 234e0583189b5a9ff97be77d53c1dbb114eb7deca38b73efcecb392dce34f374 2613891 
rmatrix_0.999375-39.orig.tar.gz
 cdeaa2fc9ab2797f78b4cfe1f1677b74530ee48e0e63259ce18907f7abe7bd0a 4096 
rmatrix_0.999375-39-1.diff.gz
 a588346eae028ffa6c10b87066b690591a8655e6cf05492ec03c5f25736225a7 3074780 
r-cran-matrix_0.999375-39-1_i386.deb
Files: 
 e408e7c5255d9c1be9c51b2620bc3465 1051 gnu-r optional rmatrix_0.999375-39-1.dsc
 9cf46f43bb68fac3811476bd463c4e31 2613891 gnu-r optional 
rmatrix_0.999375-39.orig.tar.gz
 344002e5384d6f3704983b0be994701c 4096 gnu-r optional 
rmatrix_0.999375-39-1.diff.gz
 2cb9182a54757a38b1715a00ef884933 3074780 gnu-r optional 
r-cran-matrix_0.999375-39-1_i386.deb

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

iD8DBQFL9Pq5CZSR95Gw07cRAv5MAJ90nozIgNIHXjHiUrkz+5yseBtpDgCfTnnL
FffKJE0wdP2BxXkkWru1TBw=
=f2+5
-END PGP SIGNATURE-


Accepted:
r-cran-matrix_0.999375-39-1_i386.deb
  to main/r/rmatrix/r-cran-matrix_0.999375-39-1_i386.deb
rmatrix_0.999375-39-1.diff.gz
  to main/r/rmatrix/rmatrix_0.999375-39-1.diff.gz
rmatrix_0.999375-39-1.dsc
  to main/r/rmatrix/rmatrix_0.999375-39-1.dsc
rmatrix_0.999375-39.orig.tar.gz
  to main/r/rmatrix/rmatrix_0.999375-39.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of2cy-le...@ries.debian.org



Accepted singularity 0.30a-2 (source all)

2010-05-20 Thread Kari Pahula
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 08:28:02 +0300
Source: singularity
Binary: singularity
Architecture: source all
Version: 0.30a-2
Distribution: unstable
Urgency: low
Maintainer: Kari Pahula k...@debian.org
Changed-By: Kari Pahula k...@debian.org
Description: 
 singularity - game where one becomes the singularity
Closes: 574786
Changes: 
 singularity (0.30a-2) unstable; urgency=low
 .
   * New French translation (Closes: #574786)
Checksums-Sha1: 
 3d99da99358c04401791c679777027acbd4884c0 1114 singularity_0.30a-2.dsc
 c3d3caf8c737bc49fb03b9cabd101905d48a7ad4 34495 
singularity_0.30a-2.debian.tar.gz
 37ce1c3d597f26151046f6d3710913757dbe5e8e 1843228 singularity_0.30a-2_all.deb
Checksums-Sha256: 
 bf98cc3a75f82b0e9f58ae3fc910ed0151ee39c85065767b867c565808015b3d 1114 
singularity_0.30a-2.dsc
 aea4139a30d377c37e826edfcd2d0abfad7e68385a6d89445085699ca9ef116e 34495 
singularity_0.30a-2.debian.tar.gz
 d77ddfe2b9ee9f804a6d88eefae532334e6f3b3d6919c5072d69a7872a2efaec 1843228 
singularity_0.30a-2_all.deb
Files: 
 6140cf4b368a9a1aaf233d52ec5bc00e 1114 games optional singularity_0.30a-2.dsc
 17355ad46fca181730169efff817dd0c 34495 games optional 
singularity_0.30a-2.debian.tar.gz
 753b915749bf82b1a2c5cf7d1e5d1fee 1843228 games optional 
singularity_0.30a-2_all.deb

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

iEYEARECAAYFAkv07ZQACgkQeYl9593Atw1R0ACeK4FgmnrysadTEkCVsEbTuVbf
/8QAnRl/zUwz2MuVsHwCNQQkK8KXAJnN
=e+yO
-END PGP SIGNATURE-


Accepted:
singularity_0.30a-2.debian.tar.gz
  to main/s/singularity/singularity_0.30a-2.debian.tar.gz
singularity_0.30a-2.dsc
  to main/s/singularity/singularity_0.30a-2.dsc
singularity_0.30a-2_all.deb
  to main/s/singularity/singularity_0.30a-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of2fv-gj...@ries.debian.org



Accepted linux-2.6 2.6.34-1~experimental.1 (source all amd64)

2010-05-20 Thread maximilian attems
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 19 May 2010 17:06:13 +0200
Source: linux-2.6
Binary: linux-source-2.6.34 linux-doc-2.6.34 linux-manual-2.6.34 
linux-patch-debian-2.6.34 firmware-linux-free linux-support-2.6.34-1 linux-base 
linux-libc-dev linux-headers-2.6.34-1-all linux-headers-2.6.34-1-all-alpha 
linux-headers-2.6.34-1-common linux-image-2.6.34-1-alpha-generic 
linux-headers-2.6.34-1-alpha-generic linux-image-2.6.34-1-alpha-smp 
linux-headers-2.6.34-1-alpha-smp linux-image-2.6.34-1-alpha-legacy 
linux-headers-2.6.34-1-alpha-legacy linux-headers-2.6.34-1-all-amd64 
linux-image-2.6.34-1-amd64 linux-headers-2.6.34-1-amd64 
linux-image-2.6.34-1-amd64-dbg linux-headers-2.6.34-1-all-armel 
linux-image-2.6.34-1-iop32x linux-headers-2.6.34-1-iop32x 
linux-image-2.6.34-1-ixp4xx linux-headers-2.6.34-1-ixp4xx 
linux-image-2.6.34-1-kirkwood linux-headers-2.6.34-1-kirkwood 
linux-image-2.6.34-1-orion5x linux-headers-2.6.34-1-orion5x 
linux-image-2.6.34-1-versatile linux-headers-2.6.34-1-versatile 
linux-headers-2.6.34-1-all-hppa linux-image-2.6.34-1-parisc linux-headers-2.6.3
 4-1-parisc
 linux-image-2.6.34-1-parisc-smp linux-headers-2.6.34-1-parisc-smp 
linux-image-2.6.34-1-parisc64 linux-headers-2.6.34-1-parisc64 
linux-image-2.6.34-1-parisc64-smp linux-headers-2.6.34-1-parisc64-smp 
linux-headers-2.6.34-1-all-i386 linux-image-2.6.34-1-486 
linux-headers-2.6.34-1-486 linux-image-2.6.34-1-686 linux-headers-2.6.34-1-686 
linux-image-2.6.34-1-686-bigmem linux-headers-2.6.34-1-686-bigmem 
linux-image-2.6.34-1-686-bigmem-dbg linux-headers-2.6.34-1-all-ia64 
linux-image-2.6.34-1-itanium linux-headers-2.6.34-1-itanium 
linux-image-2.6.34-1-mckinley linux-headers-2.6.34-1-mckinley 
linux-headers-2.6.34-1-all-m68k linux-image-2.6.34-1-amiga 
linux-headers-2.6.34-1-amiga linux-image-2.6.34-1-atari 
linux-headers-2.6.34-1-atari linux-image-2.6.34-1-bvme6000 
linux-headers-2.6.34-1-bvme6000 linux-image-2.6.34-1-mac 
linux-headers-2.6.34-1-mac linux-image-2.6.34-1-mvme147 
linux-headers-2.6.34-1-mvme147 linux-image-2.6.34-1-mvme16x 
linux-headers-2.6.34-1-mvme16x linux-headers-2.6.34-
 1-all-mips
 linux-image-2.6.34-1-r4k-ip22 linux-headers-2.6.34-1-r4k-ip22 
linux-image-2.6.34-1-r5k-ip32 linux-headers-2.6.34-1-r5k-ip32 
linux-image-2.6.34-1-sb1-bcm91250a linux-headers-2.6.34-1-sb1-bcm91250a 
linux-image-2.6.34-1-sb1a-bcm91480b linux-headers-2.6.34-1-sb1a-bcm91480b 
linux-image-2.6.34-1-4kc-malta linux-headers-2.6.34-1-4kc-malta 
linux-image-2.6.34-1-5kc-malta linux-headers-2.6.34-1-5kc-malta 
linux-headers-2.6.34-1-all-mipsel linux-image-2.6.34-1-r5k-cobalt 
linux-headers-2.6.34-1-r5k-cobalt linux-headers-2.6.34-1-all-powerpc 
linux-image-2.6.34-1-powerpc linux-headers-2.6.34-1-powerpc 
linux-image-2.6.34-1-powerpc-smp linux-headers-2.6.34-1-powerpc-smp 
linux-image-2.6.34-1-powerpc64 linux-headers-2.6.34-1-powerpc64 
linux-headers-2.6.34-1-all-s390 linux-image-2.6.34-1-s390x 
linux-headers-2.6.34-1-s390x linux-image-2.6.34-1-s390x-tape 
linux-headers-2.6.34-1-all-sh4 linux-image-2.6.34-1-sh7751r 
linux-headers-2.6.34-1-sh7751r linux-image-2.6.34-1-sh7785lcr 
linux-headers-2.6.34-1
 -sh7785lcr
 linux-headers-2.6.34-1-all-sparc linux-image-2.6.34-1-sparc64 
linux-headers-2.6.34-1-sparc64 linux-image-2.6.34-1-sparc64-smp 
linux-headers-2.6.34-1-sparc64-smp linux-headers-2.6.34-1-all-sparc64
Architecture: source all amd64
Version: 2.6.34-1~experimental.1
Distribution: experimental
Urgency: low
Maintainer: Debian Kernel Team debian-ker...@lists.debian.org
Changed-By: maximilian attems m...@debian.org
Description: 
 firmware-linux-free - Binary firmware for various drivers in the Linux kernel
 linux-base - Linux image base package
 linux-doc-2.6.34 - Linux kernel specific documentation for version 2.6.34
 linux-headers-2.6.34-1-486 - Header files for Linux 2.6.34-1-486
 linux-headers-2.6.34-1-4kc-malta - Header files for Linux 2.6.34-1-4kc-malta
 linux-headers-2.6.34-1-5kc-malta - Header files for Linux 2.6.34-1-5kc-malta
 linux-headers-2.6.34-1-686 - Header files for Linux 2.6.34-1-686
 linux-headers-2.6.34-1-686-bigmem - Header files for Linux 2.6.34-1-686-bigmem
 linux-headers-2.6.34-1-all - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-alpha - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-amd64 - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-armel - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-hppa - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-i386 - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-ia64 - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-m68k - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-mips - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-mipsel - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-powerpc - All header files for Linux 2.6.34
 linux-headers-2.6.34-1-all-s390 - All header files for Linux 2.6.34
 

Accepted linux-kbuild-2.6 2.6.34-1~experimental.1 (source i386)

2010-05-20 Thread Ben Hutchings
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 20 May 2010 01:19:43 +0100
Source: linux-kbuild-2.6
Binary: linux-kbuild-2.6.34
Architecture: i386 source
Version: 2.6.34-1~experimental.1
Distribution: experimental
Urgency: low
Maintainer: Debian Kernel Team debian-ker...@lists.debian.org
Changed-By: Ben Hutchings b...@decadent.org.uk
Description: 
 linux-kbuild-2.6.34 - Kbuild infrastructure for Linux 2.6.34
Changes: 
 linux-kbuild-2.6 (2.6.34-1~experimental.1) experimental; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 a821ee19bbed501dfc83ea04788b6ecc30d4385f 226516 
linux-kbuild-2.6.34_2.6.34-1~experimental.1_i386.deb
 64e754c103bcb7c2e1bf4ac82c8dfffe660d8c43 1826 
linux-kbuild-2.6_2.6.34-1~experimental.1.dsc
 1a23839bda2782dc17424861b877b52aa81d2d57 458775 
linux-kbuild-2.6_2.6.34.orig.tar.gz
 cba5436b52f76cd18ef68100f81f259f7bca91fb 13877 
linux-kbuild-2.6_2.6.34-1~experimental.1.diff.gz
Checksums-Sha256: 
 f1b971e774dd2b728b1488f5169330933e2f49d240b735289544471c66d9f193 226516 
linux-kbuild-2.6.34_2.6.34-1~experimental.1_i386.deb
 edfe2a9363d2f7d9caf879104b903055e17a2d0d3f2957d3ec5335b9efd72cf9 1826 
linux-kbuild-2.6_2.6.34-1~experimental.1.dsc
 cf082f10992af32f7d12dd03af02f3e31fea1bc1bc9765b52c08c56314f20424 458775 
linux-kbuild-2.6_2.6.34.orig.tar.gz
 f6d16971a97e439b6e943967a50dfccde10b2f22f2b0ee53d2e4dd39819c 13877 
linux-kbuild-2.6_2.6.34-1~experimental.1.diff.gz
Files: 
 ee73b4dcd2a40763799c3c34e0219caf 226516 devel optional 
linux-kbuild-2.6.34_2.6.34-1~experimental.1_i386.deb
 50faedcb7eed2bd2f0ad11036cedfe34 1826 devel optional 
linux-kbuild-2.6_2.6.34-1~experimental.1.dsc
 4648ecc7a9b643f72ca86d6958468060 458775 devel optional 
linux-kbuild-2.6_2.6.34.orig.tar.gz
 5496f186551acb8321ec207793500f39 13877 devel optional 
linux-kbuild-2.6_2.6.34-1~experimental.1.diff.gz

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

iQIVAwUBS/SC6ee/yOyVhhEJAQrk2A//esl6EQX3UvR04l/I9VKOiq6czT5nncEp
C1h2UkG1WUgntAW+mIGx2KNKqL0iCuo0Qn7N6+aeHzC0xRlMYrXoVknF46Uk3vBX
kWwHjszucDwRfTAtbHHNhDyg4UsWu6fInziXejXooZEC4j8PU3naRf+vwEE/ytDF
fN0406MR4dC3WpeQyFyZExZ99S5GA5px9tX00p0lBwZF0sac153tDP6+LO2u/Xf/
YWcvcpWRQMTzzZxlWkbiKtAo6mVsBPcyp/I5ZzeXvYIT3jCAAY8N/gzRPMiR0VzX
SHmXW/WK5SMeXpxHemIcbV5p73tsICv7V4ZZZWUAG++dyO6MMz1ov35kY7dhGcCu
S0U80fJ2xB+pd984z118WJdlmc7S4FrJ5NP8eKxClz1lZVMnPR6XsbRaIMKpHVKX
svky8l95w6q4IQd2xld0R12uqGah7Bn1XB9wrp5pqjcZQmaPn0Np7dwBUg5Fk5IK
Z2xmTbzh9juHljRDAIXHnMdmvJzLfns43kFaUxvvXpmt8jNYg/CfvbspDCPOVyir
MVHISce2sl+lomTMiUJswTjW2CHCNvb3HWLe4ObG8Nms05GgjGIfMn9dd04wFNsM
vkTOz0hReRmKfaMjbOspj0IIM3GsmeCAf6dHCYs5PzFOFtvUAaMW3WPoi0hroK5Q
/DcWqvnaquo=
=ewdh
-END PGP SIGNATURE-


Accepted:
linux-kbuild-2.6.34_2.6.34-1~experimental.1_i386.deb
  to 
main/l/linux-kbuild-2.6/linux-kbuild-2.6.34_2.6.34-1~experimental.1_i386.deb
linux-kbuild-2.6_2.6.34-1~experimental.1.diff.gz
  to main/l/linux-kbuild-2.6/linux-kbuild-2.6_2.6.34-1~experimental.1.diff.gz
linux-kbuild-2.6_2.6.34-1~experimental.1.dsc
  to main/l/linux-kbuild-2.6/linux-kbuild-2.6_2.6.34-1~experimental.1.dsc
linux-kbuild-2.6_2.6.34.orig.tar.gz
  to main/l/linux-kbuild-2.6/linux-kbuild-2.6_2.6.34.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of3nv-0002nj...@ries.debian.org



Accepted base-files 5.6 (source powerpc)

2010-05-20 Thread Santiago Vila
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 20 May 2010 11:34:34 +0200
Source: base-files
Binary: base-files
Architecture: source powerpc
Version: 5.6
Distribution: unstable
Urgency: low
Maintainer: Santiago Vila sanv...@debian.org
Changed-By: Santiago Vila sanv...@debian.org
Description: 
 base-files - Debian base system miscellaneous files
Changes: 
 base-files (5.6) unstable; urgency=low
 .
   * Ordinary user accounts start at UID 1000 by default, but they also
 end at 2 by default. Modified default /etc/profile accordingly.
Checksums-Sha1: 
 a561cbc27f085a55fef0949435774e9e4c430d98 971 base-files_5.6.dsc
 236e9e3aafdcaac5f25397e8add5c7b609e5c37e 71438 base-files_5.6.tar.gz
 0766184063edf5300dfb4dffcb4df57f53484a62 73584 base-files_5.6_powerpc.deb
Checksums-Sha256: 
 cb154e46ce683a07c31af7da100c8f3af8ee0f68133b976d0f2e9f801ffab8ca 971 
base-files_5.6.dsc
 43ade3387bfd276714bfaff4649f8d05eafa55cd9b62125abd5993078d41dc0f 71438 
base-files_5.6.tar.gz
 45081bfdbff54a59197925d1a4d3632046745480e64d4ce63db50d428a6a4899 73584 
base-files_5.6_powerpc.deb
Files: 
 3a25d4e763ead35fd6eda459f8d4e7e9 971 admin required base-files_5.6.dsc
 48ef982c167e96c6603a0ce3dac65e5f 71438 admin required base-files_5.6.tar.gz
 6b0b6373e9c05a92504feabb005db16a 73584 admin required 
base-files_5.6_powerpc.deb

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

iQEcBAEBCAAGBQJL9QK0AAoJEEHOfwufG4symC8H/A2m/5OqkxmRz8jsXO7kByvy
kAqKI65Yycmb3aEBFotk0xg/XzX2Dv8iRDE7D3d5fKykC+gaquKQKv5R/nG/f/6x
8F8kiQ29vLkc9lRd/o8Bc8HJIpomIYBHZB7Eu4iuKrhUHtY+fSSUArHLQm0GOFhk
GQNPKRe++GeTw0YqcJNCrpOnH41ZnU1Jbz34yhjNQyMqBP9jh8NtX8m+qSEMCJ5T
iJp4eSeRAW+5Ni6ZFnsGpRw8zOxO1VSOqPiLgZbcuzJ1lWiFnAG4oc3dZpYnIWia
lwJ2d5yyXDxZklhIoMPWxSZw71UhESs2x8xWW/FnygWlLWfxh5pklNnHtNk8biM=
=doHv
-END PGP SIGNATURE-


Accepted:
base-files_5.6.dsc
  to main/b/base-files/base-files_5.6.dsc
base-files_5.6.tar.gz
  to main/b/base-files/base-files_5.6.tar.gz
base-files_5.6_powerpc.deb
  to main/b/base-files/base-files_5.6_powerpc.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of3no-0002pp...@ries.debian.org



Accepted merkaartor 0.16~dev1-1 (source amd64)

2010-05-20 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 10:40:20 +0200
Source: merkaartor
Binary: merkaartor
Architecture: source amd64
Version: 0.16~dev1-1
Distribution: experimental
Urgency: low
Maintainer: Bernd Zeimetz b...@debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 merkaartor - map editor for OpenStreetMap.org
Changes: 
 merkaartor (0.16~dev1-1) experimental; urgency=low
 .
   * [d9c0ad7d] Use ZBAR=1/libzbarqt-dev to support walking-papers.
   * [aee038e6] Disable nvidia_hack again, did not help at all.
   * [51503a29] Update copyright file.
   * [04b41e20] Build and install translations.
   * [17b467a6] Bump dh compat level to 7.
   * [965a0900] Merge branch 'upstream'
   * [f8f234a3] Update merged gbp.conf.
   * [8e36fedb] Make debian/rules executable.
   * [8943dad1] Remove unnecessary lrelease call.
   * [cc6b89f3] Require zbar version 0.10.
Checksums-Sha1: 
 d309e78525d50611d9d60fc59bcf6f7997bea89a 1414 merkaartor_0.16~dev1-1.dsc
 57ebf5720a9962d36725b189125b6547aae24995 6802752 
merkaartor_0.16~dev1.orig.tar.gz
 67c1c573c9edd6e284946f9e5802b000da783d50 19481 merkaartor_0.16~dev1-1.diff.gz
 085c05bc02665f9c1c94411a056c1bafa4d454c3 3354562 
merkaartor_0.16~dev1-1_amd64.deb
Checksums-Sha256: 
 bd4828a53dd7d4a42f7487839552173eb1c8efeebfb4cc0b61e277cf4d2794a9 1414 
merkaartor_0.16~dev1-1.dsc
 a4ad47a16b3950f5ff442f5121fb51eecfc67d9e700fc8b9c632682cde6a5340 6802752 
merkaartor_0.16~dev1.orig.tar.gz
 461616e9c76faf6e085853fc54c0ba7a78a42dc529824fb82900a14c6be639f5 19481 
merkaartor_0.16~dev1-1.diff.gz
 677e5be15065dcfbcfe4345480fcb113af946f942b2894195168b2689d92d59a 3354562 
merkaartor_0.16~dev1-1_amd64.deb
Files: 
 7eebc8bb0bd148d263e942b0e32bf040 1414 science extra merkaartor_0.16~dev1-1.dsc
 bbb3eb3e3273336bec5fb475b94cbcd1 6802752 science extra 
merkaartor_0.16~dev1.orig.tar.gz
 0dc3a008b51e44d4e456729ffb9bbe98 19481 science extra 
merkaartor_0.16~dev1-1.diff.gz
 ea08c09de4ac61ec06c1c74676398ca6 3354562 science extra 
merkaartor_0.16~dev1-1_amd64.deb

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

iEYEARECAAYFAkv1BfIACgkQBnqtBMk7/3kLiACgp0mZAvDPRzOsH/9DV6t1cfCf
OlIAnjb0DJiD9yaJqTcH9mugsj1jzd2/
=aZfo
-END PGP SIGNATURE-


Accepted:
merkaartor_0.16~dev1-1.diff.gz
  to main/m/merkaartor/merkaartor_0.16~dev1-1.diff.gz
merkaartor_0.16~dev1-1.dsc
  to main/m/merkaartor/merkaartor_0.16~dev1-1.dsc
merkaartor_0.16~dev1-1_amd64.deb
  to main/m/merkaartor/merkaartor_0.16~dev1-1_amd64.deb
merkaartor_0.16~dev1.orig.tar.gz
  to main/m/merkaartor/merkaartor_0.16~dev1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of3oo-0002tp...@ries.debian.org



Accepted gupnp-igd 0.1.7-1 (source all amd64)

2010-05-20 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 20 May 2010 12:31:10 +0200
Source: gupnp-igd
Binary: libgupnp-igd-1.0-3 libgupnp-igd-1.0-dev libgupnp-igd-1.0-dbg 
libgupnp-igd-1.0-doc python-gupnp-igd
Architecture: source all amd64
Version: 0.1.7-1
Distribution: unstable
Urgency: low
Maintainer: Laurent Bigonville bi...@debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 libgupnp-igd-1.0-3 - library to handle UPnP IGD port mapping
 libgupnp-igd-1.0-dbg - library to handle UPnP IGD port mapping - debug symbols
 libgupnp-igd-1.0-dev - library to handle UPnP IGD port mapping - development 
files
 libgupnp-igd-1.0-doc - library to handle UPnP IGD port mapping - documentation
 python-gupnp-igd - Python binding for the UPnP IGD port mapping library
Changes: 
 gupnp-igd (0.1.7-1) unstable; urgency=low
 .
   * New upstream release
 - Fix race in some conditions, should fix bug #568892
   * Use source format '3.0 (quilt)'
   * debian/rules: Enable test suite on build
Checksums-Sha1: 
 1192b80ebea24ae59f14b83ab6c4d10c83cc9acf 1695 gupnp-igd_0.1.7-1.dsc
 b37d44af7172af3e4d0c7f331519bba7e31f752b 362614 gupnp-igd_0.1.7.orig.tar.gz
 3d278211c0fc2d973a694313512b33fa394abb4b 2982 gupnp-igd_0.1.7-1.debian.tar.gz
 76a863bf6dc0aeb75b590649d247e3443dcbe3eb 18920 
libgupnp-igd-1.0-doc_0.1.7-1_all.deb
 3eb0d5e5011e83f64c82ef772147162dc9c02baf 23244 
libgupnp-igd-1.0-3_0.1.7-1_amd64.deb
 86e85c424e02a94050aa33c131be99140cb95232 24848 
libgupnp-igd-1.0-dev_0.1.7-1_amd64.deb
 0f8b84bc5f20c29f441824faf8722f385ede8153 44334 
libgupnp-igd-1.0-dbg_0.1.7-1_amd64.deb
 01fa146e08f135f1239776d91f0baa9922683859 15012 
python-gupnp-igd_0.1.7-1_amd64.deb
Checksums-Sha256: 
 116751334c193d0f731677fa64f5ae6fec41a297fcbaf954946db6355fbdbb9e 1695 
gupnp-igd_0.1.7-1.dsc
 c1d80ed20081992fabe70331f02efe9435bbfcc79287676121a855fea6561bf6 362614 
gupnp-igd_0.1.7.orig.tar.gz
 3b6cf7cf5c2edc9038069591b236524ee338928746af08c91f5ca45cf2d462ac 2982 
gupnp-igd_0.1.7-1.debian.tar.gz
 52c52bc6dc77cb18ca5dc61595a523fdc46549317313d7c16ab478576d490d0c 18920 
libgupnp-igd-1.0-doc_0.1.7-1_all.deb
 91618b276690ec33a50538a53a030e1632260eba91f87c4ef97ba6dd03bc8d75 23244 
libgupnp-igd-1.0-3_0.1.7-1_amd64.deb
 dd9af646ba71f30b4439cc2accdad532429f6caf79e16db4ee874a90b0aa21b4 24848 
libgupnp-igd-1.0-dev_0.1.7-1_amd64.deb
 51968e58cf91356ef4004480be06c672b8efab1051d5680377f607f55021976f 44334 
libgupnp-igd-1.0-dbg_0.1.7-1_amd64.deb
 4434d9514642a6e1900059afc9e995de9fbc77746de4bd7b65b911889ad10cb2 15012 
python-gupnp-igd_0.1.7-1_amd64.deb
Files: 
 9350f91c0ecb686a35d1f4df872a515f 1695 libs optional gupnp-igd_0.1.7-1.dsc
 75aaca3361046ac42125f81d07c072ac 362614 libs optional 
gupnp-igd_0.1.7.orig.tar.gz
 8106452abf49ad8dea5361f3e4b76413 2982 libs optional 
gupnp-igd_0.1.7-1.debian.tar.gz
 c531980793140f601f3f2cbee8da3620 18920 doc optional 
libgupnp-igd-1.0-doc_0.1.7-1_all.deb
 e0b446586621e9998b37d82b68e30503 23244 libs optional 
libgupnp-igd-1.0-3_0.1.7-1_amd64.deb
 d28d5cee266d534cdd4d1061e8596279 24848 libdevel optional 
libgupnp-igd-1.0-dev_0.1.7-1_amd64.deb
 60f4a857522a7fefd01c724dcb96493d 44334 debug extra 
libgupnp-igd-1.0-dbg_0.1.7-1_amd64.deb
 3f374616737aab4281bac373d5b0115d 15012 python optional 
python-gupnp-igd_0.1.7-1_amd64.deb

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

iQEcBAEBCAAGBQJL9RudAAoJEB/FiR66sEPVWZ4H/iY3I0h3cvgJfUnrVg9goTD5
HveU7YMquQXWqUi8NGfySK6HyWU3SieMFoQL82JRroWshOAaphcmN0vIdfAorlle
gX+9G6YoGd1G3wi9LHWDWL/n+Z6quIe5NMwsuasU3fhwfxCWAVj/7KfgKjVB8gm+
KOFjsR4sjpj4L418xqwaom5LdA41QZU4p8b5GUDkXGaY7cve8qZAOIMJMXYr0M6A
JWHpXhp41YTQjaeq6PY9yyEl4ENMz+ZYhdWe172wt4KjVgCPgaKxhfs2WBK78VXh
2qbR2r+ZEF4Ql89LkSrMs1CzISJvbfFZZnJAuFHq7EMbii//dbZci4YU2GB9tu4=
=c6CU
-END PGP SIGNATURE-


Accepted:
gupnp-igd_0.1.7-1.debian.tar.gz
  to main/g/gupnp-igd/gupnp-igd_0.1.7-1.debian.tar.gz
gupnp-igd_0.1.7-1.dsc
  to main/g/gupnp-igd/gupnp-igd_0.1.7-1.dsc
gupnp-igd_0.1.7.orig.tar.gz
  to main/g/gupnp-igd/gupnp-igd_0.1.7.orig.tar.gz
libgupnp-igd-1.0-3_0.1.7-1_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-3_0.1.7-1_amd64.deb
libgupnp-igd-1.0-dbg_0.1.7-1_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-dbg_0.1.7-1_amd64.deb
libgupnp-igd-1.0-dev_0.1.7-1_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-dev_0.1.7-1_amd64.deb
libgupnp-igd-1.0-doc_0.1.7-1_all.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-doc_0.1.7-1_all.deb
python-gupnp-igd_0.1.7-1_amd64.deb
  to main/g/gupnp-igd/python-gupnp-igd_0.1.7-1_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of3z2-0004kb...@ries.debian.org



Accepted otf-yozvox-yozfont 13.00~beta8-dfsg-1 (source all)

2010-05-20 Thread Hideki Yamane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 18 May 2010 18:52:31 +0900
Source: otf-yozvox-yozfont
Binary: otf-yozvox-yozfont otf-yozvox-yozfont-new-kana 
otf-yozvox-yozfont-standard-kana otf-yozvox-yozfont-antique 
otf-yozvox-yozfont-cute otf-yozvox-yozfont-edu
Architecture: source all
Version: 13.00~beta8-dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Hideki Yamane henr...@debian.org
Description: 
 otf-yozvox-yozfont - Japanese proportional Handwriting OpenType font
 otf-yozvox-yozfont-antique - Japanese proportional Handwriting OpenType font 
(antique kana)
 otf-yozvox-yozfont-cute - Japanese proportional Handwriting OpenType font 
(cute kana)
 otf-yozvox-yozfont-edu - Japanese proportional Handwriting OpenType font 
(educational cana
 otf-yozvox-yozfont-new-kana - Japanese proportional Handwriting OpenType font 
(new kana)
 otf-yozvox-yozfont-standard-kana - Japanese proportional Handwriting OpenType 
font (standard kana)
Changes: 
 otf-yozvox-yozfont (13.00~beta8-dfsg-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 4f8ebaf28773bdac7a5f0c7339ad9d0f62a6cb48 2231 
otf-yozvox-yozfont_13.00~beta8-dfsg-1.dsc
 6477268ccfc631ddcbd970b74c2cf854ed4a8e1d 152979805 
otf-yozvox-yozfont_13.00~beta8-dfsg.orig.tar.bz2
 cba21bcc606a4f3b04f30e0305c780082df9dfcc 4495 
otf-yozvox-yozfont_13.00~beta8-dfsg-1.debian.tar.gz
 78fd29987aee642240eb2450b9a542f8832ea228 4686 
otf-yozvox-yozfont_13.00~beta8-dfsg-1_all.deb
 3b90192ed0dab977df942633f30455b64eb6a66d 29656246 
otf-yozvox-yozfont-new-kana_13.00~beta8-dfsg-1_all.deb
 f65c904a853f7d852fa206f7237571fea1252910 42576384 
otf-yozvox-yozfont-standard-kana_13.00~beta8-dfsg-1_all.deb
 d732efa4b1b29614b615653e34213dd25fe7f15a 42587502 
otf-yozvox-yozfont-antique_13.00~beta8-dfsg-1_all.deb
 988f42af75667ec0981fb47edd9a6ff0da674cc2 29667432 
otf-yozvox-yozfont-cute_13.00~beta8-dfsg-1_all.deb
 03ec5779692e00cc44febda86eaa8d89c9992770 29663276 
otf-yozvox-yozfont-edu_13.00~beta8-dfsg-1_all.deb
Checksums-Sha256: 
 4c73907d6ecc3d598e180e8a0ec03b9e1bd5470f90296654327f6a3bd43f42a5 2231 
otf-yozvox-yozfont_13.00~beta8-dfsg-1.dsc
 bbb0ff4867a2647bbe0c2682c9eb284dfd4e818b4c31c953f741229c96a2ec73 152979805 
otf-yozvox-yozfont_13.00~beta8-dfsg.orig.tar.bz2
 94ec4b9ee1e6e5a590380b8201ab438ea9e3b6cc9f618e56bd337cb0c3e7ba20 4495 
otf-yozvox-yozfont_13.00~beta8-dfsg-1.debian.tar.gz
 48d8a778c2f10a512575c8b3f2307578c74468344f088f0d4963623995e51b42 4686 
otf-yozvox-yozfont_13.00~beta8-dfsg-1_all.deb
 52f17625709e4e76151a1186ea9154a997687bfc5cb90091cf4abe373081e833 29656246 
otf-yozvox-yozfont-new-kana_13.00~beta8-dfsg-1_all.deb
 d7ea9ad36da2dbb6d9fcf0ec56006165769348a7f30add67c481012093373285 42576384 
otf-yozvox-yozfont-standard-kana_13.00~beta8-dfsg-1_all.deb
 1e86dec0f6b3ee265907cd678cb9c773a6eb8cbcf7af097b472b41ad82b6c290 42587502 
otf-yozvox-yozfont-antique_13.00~beta8-dfsg-1_all.deb
 508eaa0bafcf37f5f26273a52c99cad3c861aeee71e336634be7ce13ace06b5a 29667432 
otf-yozvox-yozfont-cute_13.00~beta8-dfsg-1_all.deb
 ba8dc9b1bbddb5130ab9d52b08e95fa186bb4488fd7443ba918a6fb5765c7350 29663276 
otf-yozvox-yozfont-edu_13.00~beta8-dfsg-1_all.deb
Files: 
 30cc93e63db561bdadb025115ad7a17d 2231 fonts extra 
otf-yozvox-yozfont_13.00~beta8-dfsg-1.dsc
 6b15e59a8520524319bd63b276cb3b5b 152979805 fonts extra 
otf-yozvox-yozfont_13.00~beta8-dfsg.orig.tar.bz2
 fefdb63bc500b3c8341a7ea0b84a10ff 4495 fonts extra 
otf-yozvox-yozfont_13.00~beta8-dfsg-1.debian.tar.gz
 9dc23ea07ca01bfc42068a0456c4f44d 4686 fonts extra 
otf-yozvox-yozfont_13.00~beta8-dfsg-1_all.deb
 4e4fbc8e8b4b0bd05607e2dde56293f2 29656246 fonts extra 
otf-yozvox-yozfont-new-kana_13.00~beta8-dfsg-1_all.deb
 57c24f4d343b6ac814ef2a374c00e972 42576384 fonts extra 
otf-yozvox-yozfont-standard-kana_13.00~beta8-dfsg-1_all.deb
 8dfd868eb23238a6c6b20d96f4ac676e 42587502 fonts extra 
otf-yozvox-yozfont-antique_13.00~beta8-dfsg-1_all.deb
 49ab61d33feac7eafe0b9707aaa5acac 29667432 fonts extra 
otf-yozvox-yozfont-cute_13.00~beta8-dfsg-1_all.deb
 8be7908a51af217c99b997117ff47c20 29663276 fonts extra 
otf-yozvox-yozfont-edu_13.00~beta8-dfsg-1_all.deb

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

iQIcBAEBCgAGBQJL8mrUAAoJEF0yjQgqqrFAgf8P/08gNjnm8ax/20JEdc15R70R
yjyam6PHitcw7S9j+Jyhx10oCh/zA+O4VnTEq3Ue4AD2vPtP22UJtLYuNPCM2ZGM
tOWJwl88d61Lpp9uGn/A5OTgbckyE6ZrfS6nXriJmFfvxmAeHejnAqlqdBSlUKlv
xm+C2fDslpRnP4KXTG7Wj+sCQVxiYd+3YpaRUauJpaIhNlqRzsuMl1a8hpJE55Gz
aDoN4H7OlylOydO2prYqpDVfcdjkk6k/W3I1vwt8Xmx/V/86M3VJ9jFxmD9jOPbE
Ei2JF/xkMWj67lG+D3QEK7fPrbynRZca031SCaTvGOPklj2xnjk3bGt6jL6Tx74b
avCubVETxLjtojAPxqzY0G4ZYjjXvaBD25mocymynGU2kLPUBkcSAjTPCLCVdHaW
/J/Q4PSh7GaBt/enPvGJ9d3CGpP74sClp15omGfvaDOxMQpNIVFm4LpxNq1WKolt
dSUMx2t9suGDqqhZR+DOfgSDn0kekgR6H58mG/mwiwi+d0TqVHOuKxZJoK6ebz7R
1bXxwjD8D6LaRmsxCm3k7dPZVXP+0UgA8q2qKc8TNXmr4OHYqmPo+qZW0CW+B+kY
a1cPQV6L2GKT9AtLOiBXc0DHyTQKu11/2FTZ3HITSbjnk+YOye6bQJJdrC72GPsn

Accepted telepathy-salut 0.3.12-1 (source amd64)

2010-05-20 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 20 May 2010 12:08:02 +0100
Source: telepathy-salut
Binary: telepathy-salut
Architecture: source amd64
Version: 0.3.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers 
pkg-telepathy-maintain...@lists.alioth.debian.org
Changed-By: Simon McVittie s...@debian.org
Description: 
 telepathy-salut - Link-local XMPP connection manager for the Telepathy 
framework
Closes: 565154
Changes: 
 telepathy-salut (0.3.12-1) unstable; urgency=low
 .
   * New upstream release
 - no longer tries to do Linux credentials-passing on kFreeBSD
   (closes: #565154)
Checksums-Sha1: 
 9f5e058b8cbcdb7eded1f2cf2e1d7c89521cdd4e 2152 telepathy-salut_0.3.12-1.dsc
 db0d2d590c7cfa1f1d92cd3c12dbb7b6aa848f58 1215907 
telepathy-salut_0.3.12.orig.tar.gz
 c8d159e2af437fbde63a9fdec742da244f8f643b 4280 telepathy-salut_0.3.12-1.diff.gz
 e4b375248c16e2277fa34d96f40c2095b8e83594 596196 
telepathy-salut_0.3.12-1_amd64.deb
Checksums-Sha256: 
 a88b0052e718b1443f32e695a76d37cc2d4cae91281a2eaa978cb02a5fde4c15 2152 
telepathy-salut_0.3.12-1.dsc
 d2780902940394fd81217042f29998e485b821d3fab484c857546f4376f87d09 1215907 
telepathy-salut_0.3.12.orig.tar.gz
 733777aa8ff6a57ce33e81a27421049062c6b3f14d517fa99d6f8d2914a2da8e 4280 
telepathy-salut_0.3.12-1.diff.gz
 5b9a69a20db0bbf4801073894e29ee0aad6f2012c845cac29e39de5832f660a7 596196 
telepathy-salut_0.3.12-1_amd64.deb
Files: 
 fd8d15a302dabb7c19236706777dcea3 2152 net optional telepathy-salut_0.3.12-1.dsc
 95968f871737e7cd75e4df39b521b692 1215907 net optional 
telepathy-salut_0.3.12.orig.tar.gz
 14caf57e01c0fc8f37b7521778cd2dfb 4280 net optional 
telepathy-salut_0.3.12-1.diff.gz
 859b07afabecd819a13afe3990e4173b 596196 net optional 
telepathy-salut_0.3.12-1_amd64.deb

-BEGIN PGP SIGNATURE-

iQIVAwUBS/UbBE3o/ypjx8yQAQjacQ//bhp5+w5IhwAUo31BbERaBKc2lcO6/Cdv
/U7mDwvXPWomIy9qROSylGXsKeyVzmu3TgaNX3kye2R9cWykDCu0qP8HTSJH2PCB
LFaQvh9QU3Yh7ym6F1UmKh1DUZtVKORVF0J3XnOq1joWbbUppkNXny+oiSq53uuU
r9rRdWJRqWFQ2Aj+3wAZvQNretVvKeEWsH4MpH+RSGrFLvtr6VM3p1d9ERAEe/gC
RyuFLayJhpdnI4Jg8rNg/12FnhwzXPYg+h5ErtxviH8xdz5pRC2FzlCBwvbRiNxr
QE1rHEG9fZya/bw5kUMw1kpAOtMXeaQvRzha+CcI4kegeDdsLccZBF/q4YDjhJhX
+AkRi8j2VlzU/vDvQg8Lda38p70pKGjbWwoe+zWRJeLS+WzyZrXMJ+IkuTLuOZDL
S5gFbhhFqLW8zi2lliA3SvnGlobAkIMNPAcLIeqy+4HgPmpHj5GZhuQwuLFcj0cB
6D8hKD1xdvX3SPATZa1RuLATf47tA8Epks/izeBBhq9YLzg0N0MK1iIeSWKh5Od2
GmIEV7WLjz579F+ubpOAus5QH7AduCz3+t1cVgduIqiB13A6RLa6O3oJY83KgiVB
avhlb7kV5rBI79C3OfmW13PvocE7NzQJ+9MdUb118JEjlyAiiABc6dzQ/kt2rru0
TdI9EvbDHb8=
=yv9f
-END PGP SIGNATURE-


Accepted:
telepathy-salut_0.3.12-1.diff.gz
  to main/t/telepathy-salut/telepathy-salut_0.3.12-1.diff.gz
telepathy-salut_0.3.12-1.dsc
  to main/t/telepathy-salut/telepathy-salut_0.3.12-1.dsc
telepathy-salut_0.3.12-1_amd64.deb
  to main/t/telepathy-salut/telepathy-salut_0.3.12-1_amd64.deb
telepathy-salut_0.3.12.orig.tar.gz
  to main/t/telepathy-salut/telepathy-salut_0.3.12.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of42t-00055h...@ries.debian.org



Accepted farsight2 0.0.19-1 (source all amd64)

2010-05-20 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 12:09:16 +0100
Source: farsight2
Binary: libgstfarsight0.10-0 libgstfarsight0.10-dev libgstfarsight0.10-doc 
libgstfarsight0.10-dbg python-farsight
Architecture: source all amd64
Version: 0.0.19-1
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers 
pkg-telepathy-maintain...@lists.alioth.debian.org
Changed-By: Sjoerd Simons sjo...@debian.org
Description: 
 libgstfarsight0.10-0 - Audio/Video communications framework: core library
 libgstfarsight0.10-dbg - Audio/Video communications framework: debugging 
symbols
 libgstfarsight0.10-dev - Audio/Video communications framework: development 
files
 libgstfarsight0.10-doc - Audio/Video communications framework: documentation
 python-farsight - Audio/Video communications framework: Python bindings
Changes: 
 farsight2 (0.0.19-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 35a00c4cf9f2ff791572396ece3ae5e90c754697 1757 farsight2_0.0.19-1.dsc
 7f679905b6013ede25121b09ceb028a246e126af 1067517 farsight2_0.0.19.orig.tar.gz
 8c301f4974f4827eedbc5d6e6107bd1fa289561d 5009 farsight2_0.0.19-1.diff.gz
 a8dc2cc53ed9af02d131a131fc22e7fe11b541e7 215888 
libgstfarsight0.10-doc_0.0.19-1_all.deb
 29a8686856dd1fcf9072d1617873183037f75f22 339102 
libgstfarsight0.10-0_0.0.19-1_amd64.deb
 b1d1824118d7cad7060db68aa30daa9a7644ebce 182772 
libgstfarsight0.10-dev_0.0.19-1_amd64.deb
 337ea518853aed2f103f77d00d9b9ef1783b1fc1 626074 
libgstfarsight0.10-dbg_0.0.19-1_amd64.deb
 f2bbca60528ab70d45069a8618671cd33b495e78 159026 
python-farsight_0.0.19-1_amd64.deb
Checksums-Sha256: 
 101aa211609fe6ac0816dc123d4f1902527602f0cbe7ccd58c537a7db3f44542 1757 
farsight2_0.0.19-1.dsc
 71e6f487bf7434c424234c136c2a8233ddecf3178acbe4fd9295b742b59ea04c 1067517 
farsight2_0.0.19.orig.tar.gz
 a7a739834b013528f97db0918e34ca126ed32a953cc6cc969a40eed9aa0b5b1b 5009 
farsight2_0.0.19-1.diff.gz
 4b435ab1d914684c208ec0d227530b8053b54ea527e8f01bae0bd43c9242ae9b 215888 
libgstfarsight0.10-doc_0.0.19-1_all.deb
 3d04828dd4a5a94ecab5b9fe41bde954f0cdd519c2e2c3868320a0eb6fa7456b 339102 
libgstfarsight0.10-0_0.0.19-1_amd64.deb
 9c2730f2783455dd907d03913214beae607574825535d27c774cd1e3f83be558 182772 
libgstfarsight0.10-dev_0.0.19-1_amd64.deb
 e4490f5c9b4bdd49e275509f478c2d8c03bec4a55b3a0665e6bd74ec535676db 626074 
libgstfarsight0.10-dbg_0.0.19-1_amd64.deb
 592f8f715db43556728e3fdf3dae357e52717e54025447c3417dc73913d45b5c 159026 
python-farsight_0.0.19-1_amd64.deb
Files: 
 5e21e8c7452ca492f6c637e6949aef43 1757 libs optional farsight2_0.0.19-1.dsc
 0ce00833b1baaab2b9d8b6dbba56fbfd 1067517 libs optional 
farsight2_0.0.19.orig.tar.gz
 f092bae1464b3c968dff28813930f823 5009 libs optional farsight2_0.0.19-1.diff.gz
 b4256e7194efd5a90b35e680cf67f188 215888 doc optional 
libgstfarsight0.10-doc_0.0.19-1_all.deb
 20938728827ada501e8480ed15620889 339102 libs optional 
libgstfarsight0.10-0_0.0.19-1_amd64.deb
 b11c7515bef8b9a429cd5efad93741e6 182772 libdevel optional 
libgstfarsight0.10-dev_0.0.19-1_amd64.deb
 757f91a9c8dc1bb4aeb6c6314e349828 626074 debug extra 
libgstfarsight0.10-dbg_0.0.19-1_amd64.deb
 1ad7e13eca3d90831cada737ac462700 159026 python extra 
python-farsight_0.0.19-1_amd64.deb

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

iEYEARECAAYFAkv1HMYACgkQgTd+SodosdLZcACeINFDoTn+Bxs8ZEZoFReC+hbZ
MrwAoKENOWM7rLth8d8B+jcD7Rj+KMHL
=62aX
-END PGP SIGNATURE-


Accepted:
farsight2_0.0.19-1.diff.gz
  to main/f/farsight2/farsight2_0.0.19-1.diff.gz
farsight2_0.0.19-1.dsc
  to main/f/farsight2/farsight2_0.0.19-1.dsc
farsight2_0.0.19.orig.tar.gz
  to main/f/farsight2/farsight2_0.0.19.orig.tar.gz
libgstfarsight0.10-0_0.0.19-1_amd64.deb
  to main/f/farsight2/libgstfarsight0.10-0_0.0.19-1_amd64.deb
libgstfarsight0.10-dbg_0.0.19-1_amd64.deb
  to main/f/farsight2/libgstfarsight0.10-dbg_0.0.19-1_amd64.deb
libgstfarsight0.10-dev_0.0.19-1_amd64.deb
  to main/f/farsight2/libgstfarsight0.10-dev_0.0.19-1_amd64.deb
libgstfarsight0.10-doc_0.0.19-1_all.deb
  to main/f/farsight2/libgstfarsight0.10-doc_0.0.19-1_all.deb
python-farsight_0.0.19-1_amd64.deb
  to main/f/farsight2/python-farsight_0.0.19-1_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of4dk-0005yv...@ries.debian.org



Accepted gst-plugins-good0.10 0.10.22.2-3 (source all amd64)

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

Format: 1.8
Date: Thu, 20 May 2010 13:55:29 +0200
Source: gst-plugins-good0.10
Binary: gstreamer0.10-plugins-good-doc gstreamer0.10-esd 
gstreamer0.10-pulseaudio gstreamer0.10-plugins-good 
gstreamer0.10-plugins-good-dbg
Architecture: source all amd64
Version: 0.10.22.2-3
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gstreamer0.10-esd - GStreamer plugin for ESD
 gstreamer0.10-plugins-good - GStreamer plugins from the good set
 gstreamer0.10-plugins-good-dbg - GStreamer plugins from the good set
 gstreamer0.10-plugins-good-doc - GStreamer documentation for plugins from the 
good set
 gstreamer0.10-pulseaudio - GStreamer plugin for PulseAudio
Changes: 
 gst-plugins-good0.10 (0.10.22.2-3) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 9951badb1f2c183823fe02b0f404b3b097ca85a4 3031 
gst-plugins-good0.10_0.10.22.2-3.dsc
 198e838f7423fbd780f0f381d3803b8d50e06a3d 36462 
gst-plugins-good0.10_0.10.22.2-3.diff.gz
 648c2610b7326451bbe745aa6face81d4551536c 299274 
gstreamer0.10-plugins-good-doc_0.10.22.2-3_all.deb
 4d03369a883d0d855155eed2477ba347a0935d4f 64026 
gstreamer0.10-esd_0.10.22.2-3_amd64.deb
 d710c4161e955b2b868a9b63340f2e942a8d3e8f 94708 
gstreamer0.10-pulseaudio_0.10.22.2-3_amd64.deb
 a505f660be6fe6d0de76fab6bd3eed2c500d1d4f 1665006 
gstreamer0.10-plugins-good_0.10.22.2-3_amd64.deb
 f42895d66ecd3553bf282709a707528c6760b257 3983744 
gstreamer0.10-plugins-good-dbg_0.10.22.2-3_amd64.deb
Checksums-Sha256: 
 6dd05c1d6406dedc6c2b248effbb39bd946cb01871f2421db61f4c02a775bd55 3031 
gst-plugins-good0.10_0.10.22.2-3.dsc
 be857bda6159a69d5f5838cefdfde699437c15048769f0e95269d6c946e6c38a 36462 
gst-plugins-good0.10_0.10.22.2-3.diff.gz
 6b41f5fe7e34a1ade6b43cbcd398098824f382cd710a9056e2ae99409758651c 299274 
gstreamer0.10-plugins-good-doc_0.10.22.2-3_all.deb
 e74d73c2536d02fe0a1775c5c6cd23f6d98a866da101ef859e4b9c126ccbadb1 64026 
gstreamer0.10-esd_0.10.22.2-3_amd64.deb
 0debb3229db5e96cdb604a2e826b7fbf528acf756fefe8fe5977c4296aa229c2 94708 
gstreamer0.10-pulseaudio_0.10.22.2-3_amd64.deb
 4028725653cafc836531cd664a1292078fc17342b38cd5ea1c485081466e9568 1665006 
gstreamer0.10-plugins-good_0.10.22.2-3_amd64.deb
 b020f8d2fbeb47225e142e31fe83b0c311933922b8e497a4b9e7c6bb69b75192 3983744 
gstreamer0.10-plugins-good-dbg_0.10.22.2-3_amd64.deb
Files: 
 0409be1ab5f66fe25e2cdf9b75aa025a 3031 libs optional 
gst-plugins-good0.10_0.10.22.2-3.dsc
 c889b5a57ed661a5fd921f3a4fb7b603 36462 libs optional 
gst-plugins-good0.10_0.10.22.2-3.diff.gz
 8f2256f701105287ef8d25d93c1f8974 299274 doc optional 
gstreamer0.10-plugins-good-doc_0.10.22.2-3_all.deb
 ec5fc5d161cf563076b063b10aa527eb 64026 libs optional 
gstreamer0.10-esd_0.10.22.2-3_amd64.deb
 8a45f8f4f57c6f19fdaf8f00860cd37a 94708 sound optional 
gstreamer0.10-pulseaudio_0.10.22.2-3_amd64.deb
 fd0edf341fabd1007590812900db4281 1665006 libs optional 
gstreamer0.10-plugins-good_0.10.22.2-3_amd64.deb
 6e64115405fe5c61e964e18d95a5f3c7 3983744 debug extra 
gstreamer0.10-plugins-good-dbg_0.10.22.2-3_amd64.deb

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

iEYEARECAAYFAkv1KoUACgkQBsBdh1vkHyGarQCgoZ9lXY5u5MRCLUAeRtlbjpTE
fJwAnin9q6cdS2vBgp20jHD7UZUbeNCd
=Ehu2
-END PGP SIGNATURE-


Accepted:
gst-plugins-good0.10_0.10.22.2-3.diff.gz
  to main/g/gst-plugins-good0.10/gst-plugins-good0.10_0.10.22.2-3.diff.gz
gst-plugins-good0.10_0.10.22.2-3.dsc
  to main/g/gst-plugins-good0.10/gst-plugins-good0.10_0.10.22.2-3.dsc
gstreamer0.10-esd_0.10.22.2-3_amd64.deb
  to main/g/gst-plugins-good0.10/gstreamer0.10-esd_0.10.22.2-3_amd64.deb
gstreamer0.10-plugins-good-dbg_0.10.22.2-3_amd64.deb
  to 
main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good-dbg_0.10.22.2-3_amd64.deb
gstreamer0.10-plugins-good-doc_0.10.22.2-3_all.deb
  to 
main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good-doc_0.10.22.2-3_all.deb
gstreamer0.10-plugins-good_0.10.22.2-3_amd64.deb
  to 
main/g/gst-plugins-good0.10/gstreamer0.10-plugins-good_0.10.22.2-3_amd64.deb
gstreamer0.10-pulseaudio_0.10.22.2-3_amd64.deb
  to main/g/gst-plugins-good0.10/gstreamer0.10-pulseaudio_0.10.22.2-3_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of4vb-ic...@ries.debian.org



Accepted gst-plugins-ugly0.10 0.10.14.2-2 (source all amd64)

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

Format: 1.8
Date: Thu, 20 May 2010 13:55:52 +0200
Source: gst-plugins-ugly0.10
Binary: gstreamer0.10-plugins-ugly-doc gstreamer0.10-plugins-ugly 
gstreamer0.10-plugins-ugly-dbg
Architecture: source all amd64
Version: 0.10.14.2-2
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gstreamer0.10-plugins-ugly - GStreamer plugins from the ugly set
 gstreamer0.10-plugins-ugly-dbg - GStreamer plugins from the ugly set (debug 
symbols)
 gstreamer0.10-plugins-ugly-doc - GStreamer documentation for plugins from the 
ugly set
Changes: 
 gst-plugins-ugly0.10 (0.10.14.2-2) unstable; urgency=low
 .
   * debian/control.in:
 + Let the -dev package depend on the GStreamer core/base documentation
   for cross references.
   * Upload to unstable.
Checksums-Sha1: 
 fcd31bc71de110a00d28f6bb541b9fc35698ea09 1816 
gst-plugins-ugly0.10_0.10.14.2-2.dsc
 8772a4934f36e4b197ad597a880553d3fe09dec6 24016 
gst-plugins-ugly0.10_0.10.14.2-2.diff.gz
 111ea14d4aee25b37cbd4d596e36ee08b3a866bb 75950 
gstreamer0.10-plugins-ugly-doc_0.10.14.2-2_all.deb
 cc60ddc6199a6e253709c99b89ece65def9d14ee 342702 
gstreamer0.10-plugins-ugly_0.10.14.2-2_amd64.deb
 0d485d676569f2992f88f052e877824c37eb3ddb 711192 
gstreamer0.10-plugins-ugly-dbg_0.10.14.2-2_amd64.deb
Checksums-Sha256: 
 17abf952b6e8119a386b34b95e8d0e0ec8979af62f4c7aaadad14c16d63b6bf5 1816 
gst-plugins-ugly0.10_0.10.14.2-2.dsc
 58a2d5c26b4e2114acf7493e9edd96a2d21534f65cb2d7d25bb0bd6d12f0580f 24016 
gst-plugins-ugly0.10_0.10.14.2-2.diff.gz
 f5de991f0ae96822f94f26c3bc21777d57f90861e8faa9fa2e7e81db71a19494 75950 
gstreamer0.10-plugins-ugly-doc_0.10.14.2-2_all.deb
 aa42affcc281babdeef110e1ba8e0e9eded36a16caf33ccf54dbfeb6695e9cad 342702 
gstreamer0.10-plugins-ugly_0.10.14.2-2_amd64.deb
 bf4426779475157f3d2cbc622ba8bab52c21dcc58ed3b05e4535c1d39ab7da49 711192 
gstreamer0.10-plugins-ugly-dbg_0.10.14.2-2_amd64.deb
Files: 
 22e51c6c0ce504751ceed0975aed9807 1816 libs optional 
gst-plugins-ugly0.10_0.10.14.2-2.dsc
 b07030c904e8fdb346771286864eca1c 24016 libs optional 
gst-plugins-ugly0.10_0.10.14.2-2.diff.gz
 3d34dd31fcea4740b66f25d019d92278 75950 doc optional 
gstreamer0.10-plugins-ugly-doc_0.10.14.2-2_all.deb
 9f4ba02e39f2174f5e3c7842b364f2bf 342702 libs optional 
gstreamer0.10-plugins-ugly_0.10.14.2-2_amd64.deb
 5f98e47b686c5f3044dae99d10751fcc 711192 debug extra 
gstreamer0.10-plugins-ugly-dbg_0.10.14.2-2_amd64.deb

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

iEYEARECAAYFAkv1KpYACgkQBsBdh1vkHyEtbgCfc5Eervms1YJGeQkcBZamndGR
td0AoJcCMc/IPrS5iGTPOKIj21A9FX/w
=x5SC
-END PGP SIGNATURE-


Accepted:
gst-plugins-ugly0.10_0.10.14.2-2.diff.gz
  to main/g/gst-plugins-ugly0.10/gst-plugins-ugly0.10_0.10.14.2-2.diff.gz
gst-plugins-ugly0.10_0.10.14.2-2.dsc
  to main/g/gst-plugins-ugly0.10/gst-plugins-ugly0.10_0.10.14.2-2.dsc
gstreamer0.10-plugins-ugly-dbg_0.10.14.2-2_amd64.deb
  to 
main/g/gst-plugins-ugly0.10/gstreamer0.10-plugins-ugly-dbg_0.10.14.2-2_amd64.deb
gstreamer0.10-plugins-ugly-doc_0.10.14.2-2_all.deb
  to 
main/g/gst-plugins-ugly0.10/gstreamer0.10-plugins-ugly-doc_0.10.14.2-2_all.deb
gstreamer0.10-plugins-ugly_0.10.14.2-2_amd64.deb
  to 
main/g/gst-plugins-ugly0.10/gstreamer0.10-plugins-ugly_0.10.14.2-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of4vv-sz...@ries.debian.org



Accepted gst-plugins-base0.10 0.10.29-4 (source all amd64)

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

Format: 1.8
Date: Thu, 20 May 2010 14:03:47 +0200
Source: gst-plugins-base0.10
Binary: gstreamer0.10-plugins-base-apps gstreamer0.10-plugins-base-doc 
libgstreamer-plugins-base0.10-0 libgstreamer-plugins-base0.10-dev 
gstreamer0.10-alsa gstreamer0.10-gnomevfs gstreamer0.10-plugins-base 
gstreamer0.10-plugins-base-dbg gstreamer0.10-x gir1.0-gst-plugins-base-0.10
Architecture: source all amd64
Version: 0.10.29-4
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gir1.0-gst-plugins-base-0.10 - Description: GObject introspection data for the 
GStreamer Plugins
 gstreamer0.10-alsa - GStreamer plugin for ALSA
 gstreamer0.10-gnomevfs - GStreamer plugin for GnomeVFS
 gstreamer0.10-plugins-base - GStreamer plugins from the base set
 gstreamer0.10-plugins-base-apps - GStreamer helper programs from the base set
 gstreamer0.10-plugins-base-dbg - GStreamer plugins from the base set
 gstreamer0.10-plugins-base-doc - GStreamer documentation for plugins from the 
base set
 gstreamer0.10-x - GStreamer plugins for X11 and Pango
 libgstreamer-plugins-base0.10-0 - GStreamer libraries from the base set
 libgstreamer-plugins-base0.10-dev - GStreamer development files for libraries 
from the base set
Changes: 
 gst-plugins-base0.10 (0.10.29-4) unstable; urgency=low
 .
   * 
debian/patches/0007-oggdemux-Drop-all-other-Ogg-VP8-header-packets-and-m.patch,
 debian/patches/0008-oggdemux-Fix-size-checks.patch:
 + Some more fixes for the Ogg VP8 mapping.
Checksums-Sha1: 
 b309139f11992b69544072231f3a44ab8197ff58 2787 
gst-plugins-base0.10_0.10.29-4.dsc
 a85125ae4ca29ce9860ad0e23f74236dfecf8ab1 42738 
gst-plugins-base0.10_0.10.29-4.diff.gz
 d7ef3ac8c5e34efe4f293a1cb25b6693d75bb9d9 435904 
gstreamer0.10-plugins-base-doc_0.10.29-4_all.deb
 9e49a29feeedfbe2469155c9a219a2ea8fbc04b0 59310 
gstreamer0.10-plugins-base-apps_0.10.29-4_amd64.deb
 0f994053b2b9c39bc0a0799ac4f1f37e606e974a 454298 
libgstreamer-plugins-base0.10-0_0.10.29-4_amd64.deb
 ca1400f57e131a25771b7cbca9f684ad24b70bb4 200210 
libgstreamer-plugins-base0.10-dev_0.10.29-4_amd64.deb
 de244d90299b128a7a3e0f12efb39b6df04ccca7 95946 
gstreamer0.10-alsa_0.10.29-4_amd64.deb
 22cd5c84d051349df24854e8aca304f9f04ce87c 73680 
gstreamer0.10-gnomevfs_0.10.29-4_amd64.deb
 f141d468d5155e9b78051cc3826734b3f5c42b1e 738124 
gstreamer0.10-plugins-base_0.10.29-4_amd64.deb
 a3e5b976c17093653db660dfdd391d982232859b 2399084 
gstreamer0.10-plugins-base-dbg_0.10.29-4_amd64.deb
 256752210f372f5f71984c18988b83ffc9ced38b 141188 
gstreamer0.10-x_0.10.29-4_amd64.deb
 b2748572aded709ebeca563e9f4743942e00379a 99874 
gir1.0-gst-plugins-base-0.10_0.10.29-4_amd64.deb
Checksums-Sha256: 
 58ec87d5a0f8823e26caacb29e97d863bf6e6f235fdd504efae9a568a020ec45 2787 
gst-plugins-base0.10_0.10.29-4.dsc
 4fd3fd6eb87c610e3e4712bc06942e101ccacba7cc2e684f1b4c0ecb3fec4101 42738 
gst-plugins-base0.10_0.10.29-4.diff.gz
 0d6672ee17bf3cb06b22f5962fa77d2bfda272f30c592ccb3fd578d86df89599 435904 
gstreamer0.10-plugins-base-doc_0.10.29-4_all.deb
 9afc79d69a6d855a88bbe0ef21e8ef83f18ce5cedf923246e5bea73e63cf76a8 59310 
gstreamer0.10-plugins-base-apps_0.10.29-4_amd64.deb
 bcdbf83284acb210ebd4f812a52c7f6c37131885c080e9e53cdb77c4d25c8500 454298 
libgstreamer-plugins-base0.10-0_0.10.29-4_amd64.deb
 aed9a8acea609e93868c4f007caeefedeebbda158b6040ebdce1d3dae8f9b7ad 200210 
libgstreamer-plugins-base0.10-dev_0.10.29-4_amd64.deb
 781e5a3c1b60688a0eb93bd45265ba58610269a31349767602a5c35e45ce5dee 95946 
gstreamer0.10-alsa_0.10.29-4_amd64.deb
 35304dc82ac97c7a3c650a5e0df0f80086d887816f36ea2bac85ce6c57048c27 73680 
gstreamer0.10-gnomevfs_0.10.29-4_amd64.deb
 21fcefeb4130e00eb78ce211c2328bce41882809c4d5ec3d04dcfd5f71af6ebd 738124 
gstreamer0.10-plugins-base_0.10.29-4_amd64.deb
 4eb92b8e894bb271facd3b6f78f345595b0c8c67be82c86049816d5c4d13346c 2399084 
gstreamer0.10-plugins-base-dbg_0.10.29-4_amd64.deb
 b40e60667fac6b5586d960a63423f6b3a2efdf147e9d3efef20c40dfcc97defb 141188 
gstreamer0.10-x_0.10.29-4_amd64.deb
 a06e16796559b6b980e91307a7a3d4a980607c3ba2cf9deb52e8433587e72d08 99874 
gir1.0-gst-plugins-base-0.10_0.10.29-4_amd64.deb
Files: 
 298d4806716a2aec939539f6468bbbae 2787 libs optional 
gst-plugins-base0.10_0.10.29-4.dsc
 5594aa418dc481c853974265a46d6265 42738 libs optional 
gst-plugins-base0.10_0.10.29-4.diff.gz
 93ad7864b862f090d4c74f0f1f866370 435904 doc optional 
gstreamer0.10-plugins-base-doc_0.10.29-4_all.deb
 207302a283811030c6583ed29051d674 59310 utils optional 
gstreamer0.10-plugins-base-apps_0.10.29-4_amd64.deb
 7331c79812d897ac1acfb44689cd8b06 454298 libs optional 
libgstreamer-plugins-base0.10-0_0.10.29-4_amd64.deb
 0be693608a11e3d5f762d25f79bc4b7b 200210 libdevel optional 
libgstreamer-plugins-base0.10-dev_0.10.29-4_amd64.deb
 9c940d49865d0f83a6584b1131956aa5 95946 libs optional 
gstreamer0.10-alsa_0.10.29-4_amd64.deb
 

Accepted zfs-fuse 0.6.0+critical20100301-5 (source i386)

2010-05-20 Thread Sebastien Delafond
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 14:36:06 +0200
Source: zfs-fuse
Binary: zfs-fuse
Architecture: source i386
Version: 0.6.0+critical20100301-5
Distribution: unstable
Urgency: low
Maintainer: Sebastien Delafond s...@debian.org
Changed-By: Sebastien Delafond s...@debian.org
Description: 
 zfs-fuse   - ZFS on FUSE
Closes: 581668
Changes: 
 zfs-fuse (0.6.0+critical20100301-5) unstable; urgency=low
 .
   * Silence the init script a bit in case zfs-fuse was disabled
 (Closes: #581668).
Checksums-Sha1: 
 1f600c083662366a0393a0e527c02cc56ae9ef7c 1256 
zfs-fuse_0.6.0+critical20100301-5.dsc
 4482c82a04c51caca9b7b0894c42ff66687c83ca 38172 
zfs-fuse_0.6.0+critical20100301-5.debian.tar.gz
 7278b1520380699143607cba2717e410561307ba 1296384 
zfs-fuse_0.6.0+critical20100301-5_i386.deb
Checksums-Sha256: 
 c6fde6f31aa264af7e68efc546a0abc47fbefdc03e1f414fb40219a5ebe1efa0 1256 
zfs-fuse_0.6.0+critical20100301-5.dsc
 481ba1009f3d4c727a8adcef91a623da2fd3a9b7bd5dcf564d0b3c5d3b60e1db 38172 
zfs-fuse_0.6.0+critical20100301-5.debian.tar.gz
 e1a8c2f345501150c88e62daa674549599671fb9569b06e7976648f95150f753 1296384 
zfs-fuse_0.6.0+critical20100301-5_i386.deb
Files: 
 7ee45e589a0ee6a1483851a94f324e69 1256 otherosfs optional 
zfs-fuse_0.6.0+critical20100301-5.dsc
 0f33d2b6a188128101d6ad4c8d19526f 38172 otherosfs optional 
zfs-fuse_0.6.0+critical20100301-5.debian.tar.gz
 59c3c3a7459493606bae3bdca6b2f2cc 1296384 otherosfs optional 
zfs-fuse_0.6.0+critical20100301-5_i386.deb

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

iEYEARECAAYFAkv1LisACgkQiZgNKcDdyD9QcACgyqDONLCdKLP4KKrywsvBDVni
aK4AoIgOtQNqUp+A7uaROgGXBaicuKLt
=DbXf
-END PGP SIGNATURE-


Accepted:
zfs-fuse_0.6.0+critical20100301-5.debian.tar.gz
  to main/z/zfs-fuse/zfs-fuse_0.6.0+critical20100301-5.debian.tar.gz
zfs-fuse_0.6.0+critical20100301-5.dsc
  to main/z/zfs-fuse/zfs-fuse_0.6.0+critical20100301-5.dsc
zfs-fuse_0.6.0+critical20100301-5_i386.deb
  to main/z/zfs-fuse/zfs-fuse_0.6.0+critical20100301-5_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of5p5-0002ur...@ries.debian.org



Accepted r-cran-amore 0.2-12-1 (source amd64)

2010-05-20 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 14:49:30 +0200
Source: r-cran-amore
Binary: r-cran-amore
Architecture: source amd64
Version: 0.2-12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 r-cran-amore - GNU R: A MORE flexible neural network package
Changes: 
 r-cran-amore (0.2-12-1) unstable; urgency=low
 .
   * New upstream version
   * Depend on a version equal or superior than the R upstream release that
 was used to build this package, using a R:Depends substvar
 (debian/control, debian/rules).
   * Standards-Version: 3.8.4 (no changes needed)
   * debian/README.Debian: explain how to test this package
Checksums-Sha1: 
 159bdb1c3e87454d3154caaa1a94b4d0c375c2cf 1337 r-cran-amore_0.2-12-1.dsc
 4f8214d08e348aaca9209ecb33d4d24e1ab3c391 17255 r-cran-amore_0.2-12.orig.tar.gz
 79344e714b1f62d36f1e6af5a695de15a4c2937f 2035 r-cran-amore_0.2-12-1.diff.gz
 abdf8164edf6fed016069a41964af67ac72b61fc 68326 r-cran-amore_0.2-12-1_amd64.deb
Checksums-Sha256: 
 5afcb2026b7c04b792718e2e7cbcdd4c2dd5b0b96b898e16815a0f728c17effe 1337 
r-cran-amore_0.2-12-1.dsc
 257173f392c50b5c364356285c26752f8fa1da81b7855a4859c8dc7ab8cf3b60 17255 
r-cran-amore_0.2-12.orig.tar.gz
 eee1cd1bfb1c8abac068ea68ec1cb59dd99f729b48d5145bef52e5a877158b32 2035 
r-cran-amore_0.2-12-1.diff.gz
 9416d5382c379e08683e18672e0c67d2c164cda6ac27ecb7fe22cdae0b53651d 68326 
r-cran-amore_0.2-12-1_amd64.deb
Files: 
 d48250ee8bc40fd59bcf42719c4ad0f4 1337 gnu-r optional r-cran-amore_0.2-12-1.dsc
 83898c59a4e5006810e82d1f33bf82dd 17255 gnu-r optional 
r-cran-amore_0.2-12.orig.tar.gz
 45ede3fa9ca2a847c4740d7c55c190a1 2035 gnu-r optional 
r-cran-amore_0.2-12-1.diff.gz
 334c7870ee083dd40409d13aba247308 68326 gnu-r optional 
r-cran-amore_0.2-12-1_amd64.deb

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

iD8DBQFL9TOrYDBbMcCf01oRAhRJAJ9Ck7W4O0Vc18EcF0Yr3Y96/kBS6QCgqBka
dykj30T/JMDQoCyOsNCpTPY=
=rdLC
-END PGP SIGNATURE-


Accepted:
r-cran-amore_0.2-12-1.diff.gz
  to main/r/r-cran-amore/r-cran-amore_0.2-12-1.diff.gz
r-cran-amore_0.2-12-1.dsc
  to main/r/r-cran-amore/r-cran-amore_0.2-12-1.dsc
r-cran-amore_0.2-12-1_amd64.deb
  to main/r/r-cran-amore/r-cran-amore_0.2-12-1_amd64.deb
r-cran-amore_0.2-12.orig.tar.gz
  to main/r/r-cran-amore/r-cran-amore_0.2-12.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of5cz-000329...@ries.debian.org



Accepted kvirc 4:4.0.0~svn4340+rc3-1 (source all amd64)

2010-05-20 Thread Kai Wasserbäch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 18 May 2010 18:30:31 +0200
Source: kvirc
Binary: kvirc kvirc-data kvirc-dbg
Architecture: source amd64 all
Version: 4:4.0.0~svn4340+rc3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian KDE Extras Team pkg-kde-ext...@lists.alioth.debian.org
Changed-By: Kai Wasserbäch deb...@carbon-project.org
Description: 
 kvirc  - KDE-based next generation IRC client with module support
 kvirc-data - Data files for KVIrc
 kvirc-dbg  - KVIrc (IRC client) debugging symbols
Closes: 580289 581321
Changes: 
 kvirc (4:4.0.0~svn4340+rc3-1) unstable; urgency=medium
 .
   The Grave Consequences release.
 .
   * Synced to upstream's SVN revision 4340:
 - Now RC3.
 - A lot of bug fixes, including:
   + a security fix for the DCC part (therefore urgency=medium), and
   + a crash. (Closes: #580289)
 - And some translation updates including the remainder of Holger Wansing's
   suggestions.
   * debian/patches:
 - 10_fix_desktop_entry.patch: Refreshed.
 - 21_make_shared-mime-info_B-D_superfluous.patch: Added. (Closes: #581321)
Checksums-Sha1: 
 d54220f12f3fc8aa13a9b4790b1f05191290e536 1583 kvirc_4.0.0~svn4340+rc3-1.dsc
 3cf3541b724032a0418d88c0f126ef99790d733a 4909611 
kvirc_4.0.0~svn4340+rc3.orig.tar.bz2
 503ad1d0148ef95660db391692b5e982943bb4ce 30822 
kvirc_4.0.0~svn4340+rc3-1.debian.tar.gz
 56e2be023e9266127769c3b91c9bcebe4d1203e4 3343974 
kvirc_4.0.0~svn4340+rc3-1_amd64.deb
 3f3e4065bda8874ac269b7dc656ec23b33719619 3510902 
kvirc-data_4.0.0~svn4340+rc3-1_all.deb
 db60fece9fdef7ac0397c3f1b4b733a982e2e4d1 774648 
kvirc-dbg_4.0.0~svn4340+rc3-1_amd64.deb
Checksums-Sha256: 
 7ea3f7f92b58d94aa73290796365ab805e671e06cb6b2ed27f6782b50ed1e8de 1583 
kvirc_4.0.0~svn4340+rc3-1.dsc
 33e32f8b11db4976c005f2f2bab8aa15df369c9501d5bd01f2988cfa9f41002d 4909611 
kvirc_4.0.0~svn4340+rc3.orig.tar.bz2
 1787a307f36c2244aa6d7fcb4830717d62570218c0843be0296397a7413d89e1 30822 
kvirc_4.0.0~svn4340+rc3-1.debian.tar.gz
 54b3852a1dcf88328d8215b3a05ded4b9f896f3cba80b75d712b05a8ada064bd 3343974 
kvirc_4.0.0~svn4340+rc3-1_amd64.deb
 7b8188e05750f20e5bc764ffa733ed2d4b66e7e00910244fcb116b7e842aa805 3510902 
kvirc-data_4.0.0~svn4340+rc3-1_all.deb
 744d3acaff2c11c83d07a1ffeb03efc6d4e4d58e36a66a15f57194bc53998bb5 774648 
kvirc-dbg_4.0.0~svn4340+rc3-1_amd64.deb
Files: 
 35d21fd569f8a7c66d5f7135b96bb735 1583 net optional 
kvirc_4.0.0~svn4340+rc3-1.dsc
 8fc8996d0346b6c0cac69c7a1fd1b65a 4909611 net optional 
kvirc_4.0.0~svn4340+rc3.orig.tar.bz2
 9b84cbefd65fbf80c7d06d1512190843 30822 net optional 
kvirc_4.0.0~svn4340+rc3-1.debian.tar.gz
 855e991b694f2cf35f4f92c8e012057d 3343974 net optional 
kvirc_4.0.0~svn4340+rc3-1_amd64.deb
 ed4b70dbfad9542375cddc2c36ace2d9 3510902 net optional 
kvirc-data_4.0.0~svn4340+rc3-1_all.deb
 f202219302abffe8f81dd9efc4107f46 774648 debug extra 
kvirc-dbg_4.0.0~svn4340+rc3-1_amd64.deb

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

iEYEARECAAYFAkv1MugACgkQoCzanz0IthLQUACgimFwVI4wh4FQV2JvJTKnYKP2
73oAmQHLWSPhvXuVqIbQND2P/KqhK/gw
=9lyK
-END PGP SIGNATURE-


Accepted:
kvirc-data_4.0.0~svn4340+rc3-1_all.deb
  to main/k/kvirc/kvirc-data_4.0.0~svn4340+rc3-1_all.deb
kvirc-dbg_4.0.0~svn4340+rc3-1_amd64.deb
  to main/k/kvirc/kvirc-dbg_4.0.0~svn4340+rc3-1_amd64.deb
kvirc_4.0.0~svn4340+rc3-1.debian.tar.gz
  to main/k/kvirc/kvirc_4.0.0~svn4340+rc3-1.debian.tar.gz
kvirc_4.0.0~svn4340+rc3-1.dsc
  to main/k/kvirc/kvirc_4.0.0~svn4340+rc3-1.dsc
kvirc_4.0.0~svn4340+rc3-1_amd64.deb
  to main/k/kvirc/kvirc_4.0.0~svn4340+rc3-1_amd64.deb
kvirc_4.0.0~svn4340+rc3.orig.tar.bz2
  to main/k/kvirc/kvirc_4.0.0~svn4340+rc3.orig.tar.bz2


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of5rd-0004b7...@ries.debian.org



Accepted lyx 1.6.6-1 (source i386 all)

2010-05-20 Thread Sven Hoexter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 13:34:14 +0200
Source: lyx
Binary: lyx lyx-common ttf-lyx latex-xft-fonts
Architecture: source i386 all
Version: 1.6.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian LyX Maintainers pkg-lyx-de...@lists.alioth.debian.org
Changed-By: Sven Hoexter hoex...@debian.org
Description: 
 latex-xft-fonts - TrueType versions of some TeX fonts -- transitional package
 lyx- Document Processor
 lyx-common - Architecture-independent files for LyX
 ttf-lyx- TrueType versions of some TeX fonts
Closes: 508939 579630
Changes: 
 lyx (1.6.6-1) unstable; urgency=low
 .
   [ Per Olofsson ]
   * Add texlive-science to Recommends. It's not big, and it's required
 for compiling the LyX math manual. Closes: #508939
 .
   [ Sven Hoexter ]
   * New upstream release.
 + Should no longer crash when inserting floats. Closes: #579630
 + Refresh debian/patches/prefer-xdg-open.
   * Bump Standards-Version to 3.8.4 - no changes required.
   * Add debian/source/format to state that this is still a package in
 1.0 format.
Checksums-Sha1: 
 8bb05565c7b4b989ce1e508a73aafeb48ff46f54 1477 lyx_1.6.6-1.dsc
 45f174b558f99236219c4c5648b8813b17f5cabe 15695979 lyx_1.6.6.orig.tar.gz
 ce459b4f72bba089aa5ac2d232aee78895366023 28795 lyx_1.6.6-1.diff.gz
 4c731dd47ec48a73922a2d14dba7ac76fc0c0e0c 3219272 lyx_1.6.6-1_i386.deb
 8c5cc41190c2138242251e585529ce313bccb807 6076630 lyx-common_1.6.6-1_all.deb
 3d89a67259e698fc168bb4b1254ad56a5491948c 177534 ttf-lyx_1.6.6-1_all.deb
 eebe603c87db9a222a7b3a96b12e6ff68ad3e9d9 21862 latex-xft-fonts_1.6.6-1_all.deb
Checksums-Sha256: 
 2809b6bc71ccf3f6416dcb1fcebcb15990e3381441d6f23dddf5b052a4cc84ef 1477 
lyx_1.6.6-1.dsc
 ee2a87e7a243c47520148aceb0e44e76dbd05b3643c6b970a55e3d459448e0c1 15695979 
lyx_1.6.6.orig.tar.gz
 dac8a8612bed161eb7084e0a141ba3b59103a49bde256c4f1a0a327ca68c2cc3 28795 
lyx_1.6.6-1.diff.gz
 0965eb5762d42a4d1eb157fa71bd19f1d609497bb160869a4f8772839c90edea 3219272 
lyx_1.6.6-1_i386.deb
 cd0f346cdeb7f3895bedfb8c96fb119fcf10e78f23f2fccb7672c1b133360cc4 6076630 
lyx-common_1.6.6-1_all.deb
 b450667b6abd3b0779a42204c79fbcdb61156bc9a99b0190c7428de0a9ab796c 177534 
ttf-lyx_1.6.6-1_all.deb
 5bca77b6826984bf6c41e92cfcc3b95bd06d316435690ced00ac3e3796a0f69d 21862 
latex-xft-fonts_1.6.6-1_all.deb
Files: 
 7b25909fc18a7d0779d2f9f02f27644a 1477 editors optional lyx_1.6.6-1.dsc
 0faa057c49f570eddb5474a639f0357e 15695979 editors optional 
lyx_1.6.6.orig.tar.gz
 c69422fa5133a1f7ad2104285747d329 28795 editors optional lyx_1.6.6-1.diff.gz
 3d700c1666aacdee510072601519565a 3219272 editors optional lyx_1.6.6-1_i386.deb
 f3cbae2de7ab6283b7793875ab24f088 6076630 editors optional 
lyx-common_1.6.6-1_all.deb
 062a4a4514c5fa4c3fae82fe1b70414f 177534 fonts optional ttf-lyx_1.6.6-1_all.deb
 425054b93de331411579ee4bd48b3a93 21862 fonts extra 
latex-xft-fonts_1.6.6-1_all.deb

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

iEYEARECAAYFAkv1Nz4ACgkQxKXVjqqse7zGpACeO6MVtS9MvCr/E5tKXFNlBf/u
ee8An0hA9UThzSEGfvmrxM6MqAHakpFF
=0pvM
-END PGP SIGNATURE-


Accepted:
latex-xft-fonts_1.6.6-1_all.deb
  to main/l/lyx/latex-xft-fonts_1.6.6-1_all.deb
lyx-common_1.6.6-1_all.deb
  to main/l/lyx/lyx-common_1.6.6-1_all.deb
lyx_1.6.6-1.diff.gz
  to main/l/lyx/lyx_1.6.6-1.diff.gz
lyx_1.6.6-1.dsc
  to main/l/lyx/lyx_1.6.6-1.dsc
lyx_1.6.6-1_i386.deb
  to main/l/lyx/lyx_1.6.6-1_i386.deb
lyx_1.6.6.orig.tar.gz
  to main/l/lyx/lyx_1.6.6.orig.tar.gz
ttf-lyx_1.6.6-1_all.deb
  to main/l/lyx/ttf-lyx_1.6.6-1_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of663-0004ln...@ries.debian.org



Accepted r-cran-maptools 1:0.7-34-1 (source amd64)

2010-05-20 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 15:22:15 +0200
Source: r-cran-maptools
Binary: r-cran-maptools
Architecture: source amd64
Version: 1:0.7-34-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 r-cran-maptools - GNU R Tools for reading and handling spatial objects
Changes: 
 r-cran-maptools (1:0.7-34-1) unstable; urgency=low
 .
   * New upstream version
   * Depend on a version equal or superior than the R upstream release that
 was used to build this package, using a R:Depends substvar
 (debian/control, debian/rules).
   * debian/copyright: More generic value for Upstream-Source field
   * debian/README.Debian: explain how to test this package
Checksums-Sha1: 
 b2d7cac84df7295972b360ddf6ea861e387ee6f0 1416 r-cran-maptools_0.7-34-1.dsc
 5aa0d856c00a518f29c2d89497029dd47ecde308 886211 
r-cran-maptools_0.7-34.orig.tar.gz
 b1206cbbd798e265d97002e7d21be5ac611c93a5 5548 r-cran-maptools_0.7-34-1.diff.gz
 615eb2a75691dc0cc38111f1e8f3e8174b8d1d7d 1057814 
r-cran-maptools_0.7-34-1_amd64.deb
Checksums-Sha256: 
 ef53d784d503bf57d182fc4ccee194553998aea35fb955df32ff80cc47d9b716 1416 
r-cran-maptools_0.7-34-1.dsc
 faa088b2ec442b2c9f99640c8f34d53ff5148c4afacd8a5600b3800c2a4883fe 886211 
r-cran-maptools_0.7-34.orig.tar.gz
 0c5b058b16f67177955a65de33f74dfb0798fb3b7693c5c411ff9fa9e1a339b4 5548 
r-cran-maptools_0.7-34-1.diff.gz
 2b3c1dd4571e1c8eb3fc58f6bdade1079bf4b0f22425f164fb9cad49fe1642d4 1057814 
r-cran-maptools_0.7-34-1_amd64.deb
Files: 
 dec6b197739d8a2cd03ff8bd495b8e7e 1416 non-free/gnu-r optional 
r-cran-maptools_0.7-34-1.dsc
 aee41f64a2b533ca103bdf9097498348 886211 non-free/gnu-r optional 
r-cran-maptools_0.7-34.orig.tar.gz
 61752c33be80bcd734ff3a265e17ed51 5548 non-free/gnu-r optional 
r-cran-maptools_0.7-34-1.diff.gz
 e2a28a61ed2736fbe2533ff233041eb0 1057814 non-free/gnu-r optional 
r-cran-maptools_0.7-34-1_amd64.deb

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

iD8DBQFL9TkyYDBbMcCf01oRAgyRAJ0bN0Um0x9Ffp8yqIOi3SEa3DSkwQCgm4/J
mWIT9KXF59CfC9wkxzgzj4U=
=n8Q/
-END PGP SIGNATURE-


Accepted:
r-cran-maptools_0.7-34-1.diff.gz
  to non-free/r/r-cran-maptools/r-cran-maptools_0.7-34-1.diff.gz
r-cran-maptools_0.7-34-1.dsc
  to non-free/r/r-cran-maptools/r-cran-maptools_0.7-34-1.dsc
r-cran-maptools_0.7-34-1_amd64.deb
  to non-free/r/r-cran-maptools/r-cran-maptools_0.7-34-1_amd64.deb
r-cran-maptools_0.7-34.orig.tar.gz
  to non-free/r/r-cran-maptools/r-cran-maptools_0.7-34.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of66i-0004np...@ries.debian.org



Accepted r-cran-msm 0.9.7-1 (source amd64)

2010-05-20 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 15:36:53 +0200
Source: r-cran-msm
Binary: r-cran-msm
Architecture: source amd64
Version: 0.9.7-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 r-cran-msm - GNU R Multi-state Markov and hidden Markov models in continuous t
Changes: 
 r-cran-msm (0.9.7-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 3cba1ff9f59cb745838a437177d78e666d0a2c36 1344 r-cran-msm_0.9.7-1.dsc
 3b576c8640cd2dd2b44e3b93d5221a7513d71437 641603 r-cran-msm_0.9.7.orig.tar.gz
 427696011e3bfa98e56204546a8cbff4ec136025 2467 r-cran-msm_0.9.7-1.diff.gz
 6202bf24bc1f3fb76ff867e468a04ac657ad0232 792158 r-cran-msm_0.9.7-1_amd64.deb
Checksums-Sha256: 
 550d8f847773db1b055c6965e4dd035aada04fe746731f48a6d6a1d753e45caf 1344 
r-cran-msm_0.9.7-1.dsc
 642bceebc76ce2fca9d5bb0a1b110508b712cf6dc55945b4004905d9dbfab70a 641603 
r-cran-msm_0.9.7.orig.tar.gz
 949672e744d2c94dcd0b46534c7c70a62aabe803e39f066c10cedab6eb80f9ba 2467 
r-cran-msm_0.9.7-1.diff.gz
 da9bbd568d30005ab0b041daa4288fd6f7055c8820dabf94eca588e74313aabb 792158 
r-cran-msm_0.9.7-1_amd64.deb
Files: 
 86b47c1fb12c7059ca782e211c095da7 1344 gnu-r optional r-cran-msm_0.9.7-1.dsc
 88c2cbf62a646f49c7329e09a6273aef 641603 gnu-r optional 
r-cran-msm_0.9.7.orig.tar.gz
 56af9573de3fb189a6cd42f5cdf86090 2467 gnu-r optional r-cran-msm_0.9.7-1.diff.gz
 a5e185fa96094e4a0ba9289c05b3c221 792158 gnu-r optional 
r-cran-msm_0.9.7-1_amd64.deb

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

iD8DBQFL9TttYDBbMcCf01oRAkX4AJ9HrX/XmxXOYGvUQLHt/9ISw8rw5gCgnPfl
PsAeOPEE20GuvnKBerieDo0=
=TsjS
-END PGP SIGNATURE-


Accepted:
r-cran-msm_0.9.7-1.diff.gz
  to main/r/r-cran-msm/r-cran-msm_0.9.7-1.diff.gz
r-cran-msm_0.9.7-1.dsc
  to main/r/r-cran-msm/r-cran-msm_0.9.7-1.dsc
r-cran-msm_0.9.7-1_amd64.deb
  to main/r/r-cran-msm/r-cran-msm_0.9.7-1_amd64.deb
r-cran-msm_0.9.7.orig.tar.gz
  to main/r/r-cran-msm/r-cran-msm_0.9.7.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of66w-0004q3...@ries.debian.org



Accepted farsight2 0.0.19-2 (source all amd64)

2010-05-20 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 15:05:47 +0100
Source: farsight2
Binary: libgstfarsight0.10-0 libgstfarsight0.10-dev libgstfarsight0.10-doc 
libgstfarsight0.10-dbg python-farsight
Architecture: source all amd64
Version: 0.0.19-2
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers 
pkg-telepathy-maintain...@lists.alioth.debian.org
Changed-By: Sjoerd Simons sjo...@debian.org
Description: 
 libgstfarsight0.10-0 - Audio/Video communications framework: core library
 libgstfarsight0.10-dbg - Audio/Video communications framework: debugging 
symbols
 libgstfarsight0.10-dev - Audio/Video communications framework: development 
files
 libgstfarsight0.10-doc - Audio/Video communications framework: documentation
 python-farsight - Audio/Video communications framework: Python bindings
Changes: 
 farsight2 (0.0.19-2) unstable; urgency=low
 .
   * debian/python-farsight.install:
 - Make the wildcard match both dist-packages and site-packages
Checksums-Sha1: 
 3d1365b49c59e795cc0c5260acce5ad35cdd0497 1757 farsight2_0.0.19-2.dsc
 0709581469cb2d85fed47563dac557e854d546fc 5061 farsight2_0.0.19-2.diff.gz
 0673f8b3dc721ee8c6a8848ac7799d2733be9f59 215942 
libgstfarsight0.10-doc_0.0.19-2_all.deb
 86e772682d934be911991e06eccab583e060fa09 339224 
libgstfarsight0.10-0_0.0.19-2_amd64.deb
 8e97e505dce73e5fdb1f1b3fc1472be676946790 182830 
libgstfarsight0.10-dev_0.0.19-2_amd64.deb
 d0ed94be66d0c329a4d2e275773d57fa8f79056b 626110 
libgstfarsight0.10-dbg_0.0.19-2_amd64.deb
 bfce24dd4206868ca133ca1eafc2a5c24c443c2a 159086 
python-farsight_0.0.19-2_amd64.deb
Checksums-Sha256: 
 d6553382c109439101df2613cac0fed8aab13636566780bbbaa9b638590b57f9 1757 
farsight2_0.0.19-2.dsc
 c1f337824902f34f5150b91d8ebfce48be82a1bda38bc1dc53665f6724a5c54b 5061 
farsight2_0.0.19-2.diff.gz
 45e0d96fc633db0b709c73955a39ef9d745e38633ccc220bc4ae46921330d1c8 215942 
libgstfarsight0.10-doc_0.0.19-2_all.deb
 1f636510a9c9bda666f05ccc11bf7100d81a5d00dbe93377b621aa9d343ade34 339224 
libgstfarsight0.10-0_0.0.19-2_amd64.deb
 c360efe9388e2e771d251c74c24d9c337260d017c4c8e35a99783ba3251dfced 182830 
libgstfarsight0.10-dev_0.0.19-2_amd64.deb
 da1e6c25219d6bbc20accb0f1f3e73d574e36eb6c9d04fedc18fe4c561ef21f6 626110 
libgstfarsight0.10-dbg_0.0.19-2_amd64.deb
 b59c7833c19f54a3365a1955ee0e2d0b373007dbf46511beb6c005296090d098 159086 
python-farsight_0.0.19-2_amd64.deb
Files: 
 c48e0789c6a56ce163b12687e9111078 1757 libs optional farsight2_0.0.19-2.dsc
 4748fa6fd0f5d74da2ca7538cfe9fee4 5061 libs optional farsight2_0.0.19-2.diff.gz
 cce7b0ce3be3c111c0f13fae25a6f403 215942 doc optional 
libgstfarsight0.10-doc_0.0.19-2_all.deb
 7e07c2265e14c796d331e8b53bead51a 339224 libs optional 
libgstfarsight0.10-0_0.0.19-2_amd64.deb
 6aa6109e87915aacc382ca73ea09a273 182830 libdevel optional 
libgstfarsight0.10-dev_0.0.19-2_amd64.deb
 0cd1ccf8513bb261e28a83b50e580b87 626110 debug extra 
libgstfarsight0.10-dbg_0.0.19-2_amd64.deb
 4660ad799632e683732ba28c482e2fa8 159086 python extra 
python-farsight_0.0.19-2_amd64.deb

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

iEYEARECAAYFAkv1RrIACgkQgTd+SodosdLS+wCgm2AUYzDknnlWe39/RBHhQpVb
L08An0glpg+GgtjTJr0hLuOoK/h4sRmo
=UkEV
-END PGP SIGNATURE-


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


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8fn-0005hr...@ries.debian.org



Accepted gnome-main-menu 0.9.14-1 (source amd64)

2010-05-20 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Thu, 20 May 2010 16:18:52 +0200
Source: gnome-main-menu
Binary: gnome-main-menu
Architecture: source amd64
Version: 0.9.14-1
Distribution: unstable
Urgency: low
Maintainer: Julian Andres Klode j...@debian.org
Changed-By: Julian Andres Klode j...@debian.org
Description: 
 gnome-main-menu - GNOME start menu applet
Closes: 579565
Changes: 
 gnome-main-menu (0.9.14-1) unstable; urgency=low
 .
   [ Emilio Pozuelo Monfort ]
   * Stop suggesting beagle, it's going to be removed from the archive.
 Closes: #579565.
 .
   [ Julian Andres Klode ]
   * New upstream release.
   * Drop patches applied upstream:
- fix-trigger-panel-run-dialog.diff
- respect-nautilus-spacial-setting.diff
- applet-category.diff
- fix-binutils-gold-build.diff
- use-xdg-user-directories.diff
- nm-glib-0.8.diff
   * Drop disabled patches:
- gnome-session-kill.diff
- ltmain-as-needed.diff
   * Refresh patches:
- default-applications.diff: Drop the nautilus change merged upstream
   * Replace the remaining patch series with a new one proposed for upstream.
- 0001-Drop-usage-of-libgnome-2.0-and-libgnomeui-2.0.patch
- 0002-Replace-libglade-with-gtkbuilder.patch
- 0003-Drop-hal-storage-requirement.patch
- 0004-Drop-the-dbus-glib-1-requirement.patch
- 0005-Allow-building-without-NetworkManager-and-iwlib.patch
- 0006-Change-default-search-tool-to-tracker-search-tool.patch
   * Drop the build-dependencies not required anymore:
- libdbus-glib-1-dev
- libglade2-dev
- libgnome2-dev
- libgnomeui-dev
- libhal-storage-dev
   * Build-depend on dh-autoreconf and drop our own dh_autoreconf* scripts.
   * Build-depend on libslab-dev (= 2.30)
   * Convert package to 3.0 (quilt).
Checksums-Sha1: 
 8ad698991a76d11806b60fb15635ebf6d375a168 1569 gnome-main-menu_0.9.14-1.dsc
 6c9de49da7f5cfccc6ea16e69dc3822a9efbff87 700870 
gnome-main-menu_0.9.14.orig.tar.gz
 61e4d1d235b2d83887188333174eeec1d0123b99 18331 
gnome-main-menu_0.9.14-1.debian.tar.gz
 dddf15ccfc83b247e5b61dd2f7b237f14ee48d78 340782 
gnome-main-menu_0.9.14-1_amd64.deb
Checksums-Sha256: 
 e3c350034343c9e44f2c02227cfd1623c2403e6105fe367ccc4220cbcd78b4d6 1569 
gnome-main-menu_0.9.14-1.dsc
 587dab2b9925b232400830e14de98d41d16615c85469229870cef9b11338ee69 700870 
gnome-main-menu_0.9.14.orig.tar.gz
 03ca82a5981c2e2102699f9ad9d7a20954f698201a1ab37110b91032d8afdd92 18331 
gnome-main-menu_0.9.14-1.debian.tar.gz
 1ab4e7e203610be1df2aa2b847f3727e1d40b411ff6837db81d8ab34d057e3d8 340782 
gnome-main-menu_0.9.14-1_amd64.deb
Files: 
 2d1c87a8a784e65800ae38696958046f 1569 gnome optional 
gnome-main-menu_0.9.14-1.dsc
 8f172ebed1fed339b74df50bc376ff19 700870 gnome optional 
gnome-main-menu_0.9.14.orig.tar.gz
 61dc60aa57cb1e0ccce8a5820f844ada 18331 gnome optional 
gnome-main-menu_0.9.14-1.debian.tar.gz
 9557f4fc2ba3749afb066714a08672a6 340782 gnome optional 
gnome-main-menu_0.9.14-1_amd64.deb

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

iEYEAREDAAYFAkv1R1IACgkQrCpf/gCCPsIiSwCeJafC1PZbtQ/xEuH7imRgFN7g
fgsAn1cTfLr1zBdpqauF91GlqLMhRcQS
=slkY
-END PGP SIGNATURE-


Accepted:
gnome-main-menu_0.9.14-1.debian.tar.gz
  to main/g/gnome-main-menu/gnome-main-menu_0.9.14-1.debian.tar.gz
gnome-main-menu_0.9.14-1.dsc
  to main/g/gnome-main-menu/gnome-main-menu_0.9.14-1.dsc
gnome-main-menu_0.9.14-1_amd64.deb
  to main/g/gnome-main-menu/gnome-main-menu_0.9.14-1_amd64.deb
gnome-main-menu_0.9.14.orig.tar.gz
  to main/g/gnome-main-menu/gnome-main-menu_0.9.14.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8g7-0005op...@ries.debian.org



Accepted gurlchecker 0.13-1 (source i386)

2010-05-20 Thread dale
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Wed, 19 May 2010 22:54:51 +0200
Source: gurlchecker
Binary: gurlchecker
Architecture: source i386
Version: 0.13-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Leidert (dale) daniel.leid...@wgdd.de
Changed-By: Daniel Leidert (dale) daniel.leid...@wgdd.de
Description: 
 gurlchecker - Graphical websites checker
Closes: 574996
Changes: 
 gurlchecker (0.13-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/compat: Increased to v7.
   * debian/control: Added Homepage, Vcs-Browser and DM-Upload-Allowed.
 (Maintainer): ITA (closes: #574996).
 (Build-Depends): Increased dh version. Adjusted dependencies. Replaced
 cdbs by debhelper.
 (Standards-Version): Bumped to 3.8.4.
   * debian/rules: Rewritten for dh 7. Don't install COPYING file via
 override_dh_auto_install.
   * debian/source/format: Added and set to be 1.0.
   * debian/patches/01_COPYING.diff: Dropped (done via debian/rules).
   * debian/patches/03_kfreebsd.diff: Dropped (applied upstream).
Checksums-Sha1: 
 8d52999c219fc23f72e60e20a454f7c3677f4477 1424 gurlchecker_0.13-1.dsc
 9ddb78c7504520698cb42c981a61e35d3018a233 732343 gurlchecker_0.13.orig.tar.gz
 86ebb4c7e31232257d7425745c43b78687269ff7 4168 gurlchecker_0.13-1.diff.gz
 4a8d64477ee5f2ff9c1074220a2e02a9c536e54f 267014 gurlchecker_0.13-1_i386.deb
Checksums-Sha256: 
 000a36caa1a197a5a6e2517d3244fe6c03bcd0907743dc91ae3bf32261a47b3f 1424 
gurlchecker_0.13-1.dsc
 efa76a8dba3b523fdf564957072d1172b3b492668f7c6bc138c57663f477ed60 732343 
gurlchecker_0.13.orig.tar.gz
 48225f5adba96bd3b70e3950a253f75d9153c78157b6c0a907d9c45f23d61b83 4168 
gurlchecker_0.13-1.diff.gz
 dd180ecf4864e37f6517516ba5a56c77c2bedfc5887239f3dcab21443834f375 267014 
gurlchecker_0.13-1_i386.deb
Files: 
 bc1d5a60a95e707b82f0ba1e5464beed 1424 net optional gurlchecker_0.13-1.dsc
 5450c646c40ba367793dbd00caeb1a0c 732343 net optional 
gurlchecker_0.13.orig.tar.gz
 79debda4cbaee970f548c2bbdd1d1d50 4168 net optional gurlchecker_0.13-1.diff.gz
 4947e1c4bef05c9d9e0aa789de34837d 267014 net optional 
gurlchecker_0.13-1_i386.deb

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

iD8DBQFL9UkMmHaJYZ7RAb8RA6LcAKCWnelCj1c5C6tPPIrNQXyp+KO5TgCfaC5q
pBL+VlCfuk240Y6pt/bSX0A=
=s9n8
-END PGP SIGNATURE-


Accepted:
gurlchecker_0.13-1.diff.gz
  to main/g/gurlchecker/gurlchecker_0.13-1.diff.gz
gurlchecker_0.13-1.dsc
  to main/g/gurlchecker/gurlchecker_0.13-1.dsc
gurlchecker_0.13-1_i386.deb
  to main/g/gurlchecker/gurlchecker_0.13-1_i386.deb
gurlchecker_0.13.orig.tar.gz
  to main/g/gurlchecker/gurlchecker_0.13.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8j6-00060y...@ries.debian.org



Accepted libnice 0.0.12-1 (source all amd64)

2010-05-20 Thread Sjoerd Simons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 14:38:50 +0100
Source: libnice
Binary: libnice0 libnice-dev gstreamer0.10-nice libnice-doc
Architecture: source all amd64
Version: 0.0.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers 
pkg-telepathy-maintain...@lists.alioth.debian.org
Changed-By: Sjoerd Simons sjo...@debian.org
Description: 
 gstreamer0.10-nice - ICE library (GStreamer plugin)
 libnice-dev - ICE library (development files)
 libnice-doc - ICE library (documentation)
 libnice0   - ICE library (shared library)
Changes: 
 libnice (0.0.12-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 d36b98f5b251de97911a7b45f9cd0ce3a1d5ff70 1568 libnice_0.0.12-1.dsc
 839b88f01ebf92e1cc2b6696b91ff556f2f3e40c 636926 libnice_0.0.12.orig.tar.gz
 039f7e8ed311a36eb1ba02df2b049b89fbf235c8 13425 libnice_0.0.12-1.diff.gz
 0c2b6fe43452efaaa8f540d777452a9a70da9a19 88866 libnice-doc_0.0.12-1_all.deb
 dbf136332d6b8a78f1e04f0bd935e6b2b023c110 96766 libnice0_0.0.12-1_amd64.deb
 d0602f417e2a953623f88361197d7a655a9a777c 149000 libnice-dev_0.0.12-1_amd64.deb
 1801ee3c68bda6bd98338ecad21342da5da1d471 22366 
gstreamer0.10-nice_0.0.12-1_amd64.deb
Checksums-Sha256: 
 00add8da56f74816f167ba8242720cea1a0c92c7e779f90ccbe8d5436f08504c 1568 
libnice_0.0.12-1.dsc
 ec4ee9d50afccd421d3fb75a60a0713234f78538fa5eabf55b3c7c9185b51f11 636926 
libnice_0.0.12.orig.tar.gz
 d03320c70121e48e6eb6fc4305d120792490e992ef2228038352d1c26fec677d 13425 
libnice_0.0.12-1.diff.gz
 f2b154ea740b9437700617b3805a86ba83550bb9ebcce4455de242d2759ed3cb 88866 
libnice-doc_0.0.12-1_all.deb
 1b08474931c90925482e87636e41fad74c99989bbce09c1e2aa42edcc8af03fa 96766 
libnice0_0.0.12-1_amd64.deb
 195ad1719255d3e7b6f3fcccbe557cea1acb4f186099ca6250b409cbfc9aef04 149000 
libnice-dev_0.0.12-1_amd64.deb
 e48d0fe29fa27c8aec26dced81348e2ca854edd0a6f23fbee0ec40b6d64794f2 22366 
gstreamer0.10-nice_0.0.12-1_amd64.deb
Files: 
 258bad0cce08e41ce4d04fecf6e3684b 1568 libs optional libnice_0.0.12-1.dsc
 fe25005032c441ecfaa0c19ac6b78ee7 636926 libs optional 
libnice_0.0.12.orig.tar.gz
 e8f66aeab35741c05de34ac09c59ea0c 13425 libs optional libnice_0.0.12-1.diff.gz
 6461fd9012ab5486896766ae69ec241a 88866 doc optional 
libnice-doc_0.0.12-1_all.deb
 68f5fb4c8ea00b368163b93b33d8148b 96766 libs optional 
libnice0_0.0.12-1_amd64.deb
 67319e4457fa7a84f59125bf1776e7b1 149000 libdevel optional 
libnice-dev_0.0.12-1_amd64.deb
 dca1cd6c21e027e2e668b7df8301d31c 22366 net optional 
gstreamer0.10-nice_0.0.12-1_amd64.deb

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

iEYEARECAAYFAkv1Pb8ACgkQgTd+SodosdIhrgCZAQOX5e46eT231cANzpBIiBSP
VLwAoIhPvkJ9YGl2RQ4/+C/Jmiqx0SCy
=2zK9
-END PGP SIGNATURE-


Accepted:
gstreamer0.10-nice_0.0.12-1_amd64.deb
  to main/libn/libnice/gstreamer0.10-nice_0.0.12-1_amd64.deb
libnice-dev_0.0.12-1_amd64.deb
  to main/libn/libnice/libnice-dev_0.0.12-1_amd64.deb
libnice-doc_0.0.12-1_all.deb
  to main/libn/libnice/libnice-doc_0.0.12-1_all.deb
libnice0_0.0.12-1_amd64.deb
  to main/libn/libnice/libnice0_0.0.12-1_amd64.deb
libnice_0.0.12-1.diff.gz
  to main/libn/libnice/libnice_0.0.12-1.diff.gz
libnice_0.0.12-1.dsc
  to main/libn/libnice/libnice_0.0.12-1.dsc
libnice_0.0.12.orig.tar.gz
  to main/libn/libnice/libnice_0.0.12.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8ms-0006rt...@ries.debian.org



Accepted libslab 2.30.0-1 (source amd64)

2010-05-20 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Thu, 20 May 2010 16:08:55 +0200
Source: libslab
Binary: libslab0a libslab-dev
Architecture: source amd64
Version: 2.30.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Julian Andres Klode j...@debian.org
Description: 
 libslab-dev - development file for libslab
 libslab0a  - beautification app library file
Changes: 
 libslab (2.30.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Drop patches applied upstream:
 - libslab-bnc187879-fix-crash.patch
 - libslab-bnc537483-fix-redraw.patch
 - use-xdg-user-directories.diff
   * Breaks: gnome-main-menu ( 0.9.14) due to API and ABI break. Since this
 does not affect control-center, that's better than changing to libslab0b.
   * debian/libslab0a.symbols: Add new bookmark_agent_purge_items symbol.
   * Convert the package to 3.0 (quilt).
Checksums-Sha1: 
 afa6f2cc031fe50b9628154e62a7eead03640c29 1185 libslab_2.30.0-1.dsc
 fce2fc70642cfc48f4cf04bc3f3426237581f25a 587211 libslab_2.30.0.orig.tar.gz
 49428208af3cdba01e57aad8d89bd5c9059bbfe8 4554 libslab_2.30.0-1.debian.tar.gz
 c6425e6e0dabce6188517e954a30c5c3359c4841 174852 libslab0a_2.30.0-1_amd64.deb
 4e5ec996ae8c948300042988dd0512b61c55b746 20726 libslab-dev_2.30.0-1_amd64.deb
Checksums-Sha256: 
 7bdd9b64a9a9d035bbb87e29b239722fce0ca4538c3cb0a3415375fcefb246e5 1185 
libslab_2.30.0-1.dsc
 47810af7586dc854379d8926f6ddf79d122d705f73b94231a15699f22477c9b8 587211 
libslab_2.30.0.orig.tar.gz
 23cb6e4c04c259099983c148ffc586e231770481910b66a6a876de7914e67c66 4554 
libslab_2.30.0-1.debian.tar.gz
 3fcb8e2f4001499a35df0de71249a9b31e921f0524d53945b877cb9c9488452d 174852 
libslab0a_2.30.0-1_amd64.deb
 8cbba9471ebc4bcc61c9d6eb1d4c227421360ad8a3d43f37a858623cb6088a8a 20726 
libslab-dev_2.30.0-1_amd64.deb
Files: 
 8c428fab41071ca8d7f735195e2cf2cf 1185 libs optional libslab_2.30.0-1.dsc
 a205c68706d151e2272f4c82efd02332 587211 libs optional 
libslab_2.30.0.orig.tar.gz
 ccb5daa582e533ce1c5c32fc8c950b2e 4554 libs optional 
libslab_2.30.0-1.debian.tar.gz
 d93f52e5e2df7cc5a22139cd3b3a2bff 174852 libs optional 
libslab0a_2.30.0-1_amd64.deb
 72592763bcb35ee17eedff5458edd7e2 20726 libdevel optional 
libslab-dev_2.30.0-1_amd64.deb

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

iEYEAREDAAYFAkv1Q60ACgkQrCpf/gCCPsJY7ACfWw529gP5tQMoQiQnuKOgVEbs
FGoAnRmt3XXfDBDRxjucIS0rmE4Mb9xu
=HNvQ
-END PGP SIGNATURE-


Accepted:
libslab-dev_2.30.0-1_amd64.deb
  to main/libs/libslab/libslab-dev_2.30.0-1_amd64.deb
libslab0a_2.30.0-1_amd64.deb
  to main/libs/libslab/libslab0a_2.30.0-1_amd64.deb
libslab_2.30.0-1.debian.tar.gz
  to main/libs/libslab/libslab_2.30.0-1.debian.tar.gz
libslab_2.30.0-1.dsc
  to main/libs/libslab/libslab_2.30.0-1.dsc
libslab_2.30.0.orig.tar.gz
  to main/libs/libslab/libslab_2.30.0.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8nk-0006wh...@ries.debian.org



Accepted pathfinder 1.1.3-0.3 (source i386)

2010-05-20 Thread Hideki Yamane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 21 May 2010 00:23:56 +0900
Source: pathfinder
Binary: pathfinderd pathfinder-utils libpathfinder-openssl-1 
libpathfinder-nss-1 libpathfinder-dev
Architecture: source i386
Version: 1.1.3-0.3
Distribution: unstable
Urgency: low
Maintainer: Patrick Patterson ppatt...@debian.org
Changed-By: Hideki Yamane henr...@debian.org
Description: 
 libpathfinder-dev - Development files for pathfinder
 libpathfinder-nss-1 - Pathfinder integration Library for LibNSS
 libpathfinder-openssl-1 - Pathfinder integration Library for OpenSSL
 pathfinder-utils - Utilities to use with the Pathfinder Daemon
 pathfinderd - Daemon for X.509 Path Discovery and Validation
Closes: 582019
Changes: 
 pathfinder (1.1.3-0.3) unstable; urgency=low
 .
   * NMU to fix RC bug
   * debian/pathfinderd.preinst
 - Fix violation of policy 10.7.3, prompt when upgrading from 0.2.4-4.
   Thanks for report  advice, Holger! (Closes: #582019)
   * 
debian/{libpathfinder-dev,libpathfinder-openssl-nss,libpathfinder-nss}.install
 - also fix Broken Symlinks
Checksums-Sha1: 
 37d71218b59183803def1b06b30427eafee5f6c9 1903 pathfinder_1.1.3-0.3.dsc
 f413a80f5bae34fece3b7ce458e8fa14ee3b9a5b 6584 
pathfinder_1.1.3-0.3.debian.tar.gz
 c06a440d3ec650ff542eee67edbbb0c5978149e5 114280 pathfinderd_1.1.3-0.3_i386.deb
 36191f8eda3fc0a4139481cb163578f3ca3e8187 112528 
pathfinder-utils_1.1.3-0.3_i386.deb
 c8305f736ce8fdd7bdbea6bee18ef975b798a0f0 7414 
libpathfinder-openssl-1_1.1.3-0.3_i386.deb
 03353d93be51b8edd5f6be0fea007f356aa166aa 7298 
libpathfinder-nss-1_1.1.3-0.3_i386.deb
 c058771a9d5a522cca575c79794794af3c7b5b98 4924 
libpathfinder-dev_1.1.3-0.3_i386.deb
Checksums-Sha256: 
 ed6b2881fe14adc311209b583150bd97e66ae060c34bf302c3794792b39fa995 1903 
pathfinder_1.1.3-0.3.dsc
 b0d9599082f3ffc108fbd1795362491601126ed87f65a12ecc09207d1832a81d 6584 
pathfinder_1.1.3-0.3.debian.tar.gz
 bafe52bf3d92ca542ab6465fddc4990775f60bd7c66ed60c375ef75d0b38a8b7 114280 
pathfinderd_1.1.3-0.3_i386.deb
 3dc94a355718e87e874475534fcae605cd3d98be93c2acc2aa79a5c538f616c4 112528 
pathfinder-utils_1.1.3-0.3_i386.deb
 471e8ddb9967a8f8520a5b99219f2bf870e6e1b5bbbfb877b8d191dc5e1eb145 7414 
libpathfinder-openssl-1_1.1.3-0.3_i386.deb
 7f494b4b2d927be477914160bc5d9f11cdc33bbd51a803cfc3c5e33dd7bb8a26 7298 
libpathfinder-nss-1_1.1.3-0.3_i386.deb
 ea490d5c5e97231909306b7fa38094b08329ca28d9b4e4b2e2e076bfd9268036 4924 
libpathfinder-dev_1.1.3-0.3_i386.deb
Files: 
 ef2e660cf49eeae74f49bf9dc6052b4f 1903 utils optional pathfinder_1.1.3-0.3.dsc
 2d2ae6c89066dd1f4bf7d0ff256bc0f1 6584 utils optional 
pathfinder_1.1.3-0.3.debian.tar.gz
 520c44739af78dc397dede610b8eb1c7 114280 utils optional 
pathfinderd_1.1.3-0.3_i386.deb
 d3c27393a0672ba96395efac18ff5c91 112528 utils optional 
pathfinder-utils_1.1.3-0.3_i386.deb
 6549d44614644c313f2f2681bc3c0a0d 7414 libs optional 
libpathfinder-openssl-1_1.1.3-0.3_i386.deb
 6b5ba1bf889a181d7d8fa182fdb58600 7298 libs optional 
libpathfinder-nss-1_1.1.3-0.3_i386.deb
 329720424f54e7c7870ba7cd402e0275 4924 libdevel optional 
libpathfinder-dev_1.1.3-0.3_i386.deb

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

iQIcBAEBCgAGBQJL9Vd8AAoJEF0yjQgqqrFAhnAP/Ajub+oDg+iJC2BxzKwzHoKo
YkqcFii5kf+WFCYRf1aYos5Bfk+uxfwXzpov3Pxn6qbwGFslLbaL5+qon+nYicFR
TdOCTTpQ8UbChygOoABalocEhHKLtYYTsKWzMCcJ0l5Dlc+FpqtBIcLecXBC8X+1
xoHG4l5lUwPGO/yDWRR8kQyhSlKC6UXxll1juHmqhZChzwmUnpM3qeC6lQYPjdCe
c4Vep+1I8Oz9YFZDyskDYJFoZFiPKowsBcF0qxNf8uveBdIqpGjwQdFNHsNLnso2
uEW0VJZuQhDg//+mX+qror5pYPhuwBozI6CUUMIOIXo1H4mc8qC+S54U7+HiolNd
V4ANItJc5pskDha9+E+YHdLjc0zbRqqtlItJhdgp+sCoC/iPt9XN8vV4AyeFkgvf
W+Euz2VWqIvYgShk21ZPRwrSFqmoA3o/5muDSvqeowSbd31iKLFc2HtXbFChd8CD
PFQ5is6Q1NaTvlFcEqSg+cMk3Lqz2KRN1FSAz8OIWPHmhk282tpo2mfv71MxmspP
ZksCrZ/lGgYaYoqDkVol1OsyWPPk1jHiksHEb1y+yafjK52+wHxlKPXzAD8Y1Kze
JtZwT4xwY2QqrpItOHnVhiEGXQp0LNc1qbUaihVs/LWmtxAMm7O7HpeUGmGDcWPX
kYLJEU2fnrCj44pij5wg
=6goJ
-END PGP SIGNATURE-


Accepted:
libpathfinder-dev_1.1.3-0.3_i386.deb
  to main/p/pathfinder/libpathfinder-dev_1.1.3-0.3_i386.deb
libpathfinder-nss-1_1.1.3-0.3_i386.deb
  to main/p/pathfinder/libpathfinder-nss-1_1.1.3-0.3_i386.deb
libpathfinder-openssl-1_1.1.3-0.3_i386.deb
  to main/p/pathfinder/libpathfinder-openssl-1_1.1.3-0.3_i386.deb
pathfinder-utils_1.1.3-0.3_i386.deb
  to main/p/pathfinder/pathfinder-utils_1.1.3-0.3_i386.deb
pathfinder_1.1.3-0.3.debian.tar.gz
  to main/p/pathfinder/pathfinder_1.1.3-0.3.debian.tar.gz
pathfinder_1.1.3-0.3.dsc
  to main/p/pathfinder/pathfinder_1.1.3-0.3.dsc
pathfinderd_1.1.3-0.3_i386.deb
  to main/p/pathfinder/pathfinderd_1.1.3-0.3_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8rc-0006pr...@ries.debian.org



Accepted r-cran-plotrix 2.9-3-1 (source all)

2010-05-20 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 15:43:36 +0200
Source: r-cran-plotrix
Binary: r-cran-plotrix
Architecture: source all
Version: 2.9-3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 r-cran-plotrix - GNU R package providing various plotting functions
Changes: 
 r-cran-plotrix (2.9-3-1) unstable; urgency=low
 .
   * New upstream version
   * Depend on a version equal or superior than the R upstream release that
 was used to build this package, using a R:Depends substvar
 (debian/control, debian/rules).
   * debian/copyright: More specific value for Upstream-Source field
   * debian/README.Debian: explain how to test this package
Checksums-Sha1: 
 45995e14ba5b4e2d31611703d6f2ae884fdd4ddb 1326 r-cran-plotrix_2.9-3-1.dsc
 561b06be62c1fed222a3c9e4acbab4435a2c7465 147853 
r-cran-plotrix_2.9-3.orig.tar.gz
 7220e6a314d854ddf594054e580945ae621f3940 2630 r-cran-plotrix_2.9-3-1.diff.gz
 01abb4863869a37f9c970dd071e8292d2f6a3378 425740 r-cran-plotrix_2.9-3-1_all.deb
Checksums-Sha256: 
 ff35373db9c88ec7b12129c8bfe51b75b42c25b122c1cc3d4f060ed029471c54 1326 
r-cran-plotrix_2.9-3-1.dsc
 af56403463a91d836426af3c8afb1544e8753067261fe7c42745265b49d0790a 147853 
r-cran-plotrix_2.9-3.orig.tar.gz
 40e82f2d45f2994bf0a1b9aa49e558f49cdead63f4b5841dbb4bf473d30cdb76 2630 
r-cran-plotrix_2.9-3-1.diff.gz
 d8f6f808f13da329e90ee1b2a935f5489ecdae0fc35644624b3c586f921ba64f 425740 
r-cran-plotrix_2.9-3-1_all.deb
Files: 
 43926e6ee470fa3e43cddd67fdb8b636 1326 gnu-r optional r-cran-plotrix_2.9-3-1.dsc
 440f7e1479c9247d31bb0070c74f16d0 147853 gnu-r optional 
r-cran-plotrix_2.9-3.orig.tar.gz
 354c1c927aecb8d6b14fbbe837199397 2630 gnu-r optional 
r-cran-plotrix_2.9-3-1.diff.gz
 cda6910cd4ee6c95f62f17b2c9f8b311 425740 gnu-r optional 
r-cran-plotrix_2.9-3-1_all.deb

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

iD8DBQFL9T4HYDBbMcCf01oRAlgNAJ4na4o36Dtq1gZjwCVXSHJouSXuJgCgweci
9i32QycAndOzFIc76rb3bA4=
=Y80k
-END PGP SIGNATURE-


Accepted:
r-cran-plotrix_2.9-3-1.diff.gz
  to main/r/r-cran-plotrix/r-cran-plotrix_2.9-3-1.diff.gz
r-cran-plotrix_2.9-3-1.dsc
  to main/r/r-cran-plotrix/r-cran-plotrix_2.9-3-1.dsc
r-cran-plotrix_2.9-3-1_all.deb
  to main/r/r-cran-plotrix/r-cran-plotrix_2.9-3-1_all.deb
r-cran-plotrix_2.9-3.orig.tar.gz
  to main/r/r-cran-plotrix/r-cran-plotrix_2.9-3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8uh-00072m...@ries.debian.org



Accepted r-cran-sp 1:0.9-64-1 (source amd64)

2010-05-20 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 15:59:55 +0200
Source: r-cran-sp
Binary: r-cran-sp
Architecture: source amd64
Version: 1:0.9-64-1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 r-cran-sp  - GNU R classes and methods for spatial data
Changes: 
 r-cran-sp (1:0.9-64-1) unstable; urgency=low
 .
   * New upstream version
   * Standards-Version: 3.8.4 (no changes needed)
   * Depend on a version equal or superior than the R upstream release that
 was used to build this package, using a R:Depends substvar
 (debian/control, debian/rules).
   * debian/copyright: Upstream-Source field points to sp specific URL
   * debian/README.Debian: explain how to test this package
Checksums-Sha1: 
 063d9b336a2a046b248309f2adf4cd9efe46b365 1316 r-cran-sp_0.9-64-1.dsc
 973b52b9eddec273f0d90897180339438be1de2a 437016 r-cran-sp_0.9-64.orig.tar.gz
 aec68efc19d50e29256eea1e09a971cfb3f2085c 2700 r-cran-sp_0.9-64-1.diff.gz
 03b2972af51b2867925550732d9c577e4d17193b 746214 r-cran-sp_0.9-64-1_amd64.deb
Checksums-Sha256: 
 3fbd7525c8b067067f6beb24a4c78d4ba63286136eff51d60901b77e8de35fff 1316 
r-cran-sp_0.9-64-1.dsc
 2eb2fc64b2e314dcfcdb4ca2d69ca4f2ecf74809df11149ead121e39e24f3681 437016 
r-cran-sp_0.9-64.orig.tar.gz
 f2c2fc4d75d7c84c59d80421254511827efd5e1ca4dee546d35418ee6699 2700 
r-cran-sp_0.9-64-1.diff.gz
 91a97345b75b5b20c93e5569e3afcd1d636328050864792a17fb27dda2f9d27a 746214 
r-cran-sp_0.9-64-1_amd64.deb
Files: 
 427991aab88f74763e7ef53dcf9a5405 1316 gnu-r optional r-cran-sp_0.9-64-1.dsc
 84f96c6b846268a9ebbaec8ea2b1de9d 437016 gnu-r optional 
r-cran-sp_0.9-64.orig.tar.gz
 4382562cf8b927c57ddcf7ebd2584db4 2700 gnu-r optional r-cran-sp_0.9-64-1.diff.gz
 5e737e2417028365be054672ecfdb98b 746214 gnu-r optional 
r-cran-sp_0.9-64-1_amd64.deb

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

iD8DBQFL9UqxYDBbMcCf01oRAi/jAKCssg0uyikPkeTAjDtWx0+31QQTwwCfTadz
CnJnhAAONxAk7PRiKMH/hu4=
=hqx4
-END PGP SIGNATURE-


Accepted:
r-cran-sp_0.9-64-1.diff.gz
  to main/r/r-cran-sp/r-cran-sp_0.9-64-1.diff.gz
r-cran-sp_0.9-64-1.dsc
  to main/r/r-cran-sp/r-cran-sp_0.9-64-1.dsc
r-cran-sp_0.9-64-1_amd64.deb
  to main/r/r-cran-sp/r-cran-sp_0.9-64-1_amd64.deb
r-cran-sp_0.9-64.orig.tar.gz
  to main/r/r-cran-sp/r-cran-sp_0.9-64.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8uz-00075n...@ries.debian.org



Accepted tap-plugins-doc 20040817-2 (source all)

2010-05-20 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 17:01:15 +0200
Source: tap-plugins-doc
Binary: tap-plugins-doc
Architecture: source all
Version: 20040817-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Packages Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia quadris...@ubuntu.com
Description: 
 tap-plugins-doc - TAP-plugins documentation
Closes: 582402
Changes: 
 tap-plugins-doc (20040817-2) unstable; urgency=medium
 .
   * Add proper Replaces/Conflicts fields to avoid errors on installation
 due to file overwrite (Closes: #582402).
   * Correct Vcs-Browser field value.
Checksums-Sha1: 
 b0bc6128aa66e45848b81623d48bf8f34b98ec13 1387 tap-plugins-doc_20040817-2.dsc
 70cc305400d177bf951f41862efb0dc68c4a88da 1802 
tap-plugins-doc_20040817-2.diff.gz
 76a5e96f027585a8dd7f1bdf38bac0b30be928b0 533762 
tap-plugins-doc_20040817-2_all.deb
Checksums-Sha256: 
 95c2cf473367a45ab831ce4bc2ef02a4d47825070964c014dcca97bdec72dc58 1387 
tap-plugins-doc_20040817-2.dsc
 347d36de5e70da26352bfc96c14d762ec004f0fbcd650f1fc9e447b5b205fe4f 1802 
tap-plugins-doc_20040817-2.diff.gz
 0095b461d7e64270e0c9622196cdb33b1b0b04b64627841739cc5ba983805c60 533762 
tap-plugins-doc_20040817-2_all.deb
Files: 
 6ab01f969ecf45c515c1e631054b1b2f 1387 doc optional 
tap-plugins-doc_20040817-2.dsc
 9e91f737225a04d0f056eab3e700ce3c 1802 doc optional 
tap-plugins-doc_20040817-2.diff.gz
 9f0dd35bf1db67c2aa1c37b7b24c962a 533762 doc optional 
tap-plugins-doc_20040817-2_all.deb

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

iEYEARECAAYFAkv1UkAACgkQRdSMfNz8P9Bc7QCeLFTqNqnW6ICYpOX4pV7qnyQG
vxwAoIYw61ZIpKiGatbeG+Pp3h2H9ySP
=QqMi
-END PGP SIGNATURE-


Accepted:
tap-plugins-doc_20040817-2.diff.gz
  to main/t/tap-plugins-doc/tap-plugins-doc_20040817-2.diff.gz
tap-plugins-doc_20040817-2.dsc
  to main/t/tap-plugins-doc/tap-plugins-doc_20040817-2.dsc
tap-plugins-doc_20040817-2_all.deb
  to main/t/tap-plugins-doc/tap-plugins-doc_20040817-2_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8wu-0007bo...@ries.debian.org



Accepted tuxmath 1.8.0-2 (source i386)

2010-05-20 Thread Holger Levsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 19 May 2010 14:07:08 +0200
Source: tuxmath
Binary: tuxmath
Architecture: source i386
Version: 1.8.0-2
Distribution: unstable
Urgency: low
Maintainer: Holger Levsen hol...@debian.org
Changed-By: Holger Levsen hol...@debian.org
Description: 
 tuxmath- math game for kids with Tux
Changes: 
 tuxmath (1.8.0-2) unstable; urgency=low
 .
   * Make debian menu use the .xpm icon.
Checksums-Sha1: 
 7244c8547925969e6302aae56d485c48d021d5df 1242 tuxmath_1.8.0-2.dsc
 8227653a4c6a026da44d609b16aa784456717f06 8016 tuxmath_1.8.0-2.diff.gz
 84e1e7291ea9f102705365b21af4a179c49d4f51 6664744 tuxmath_1.8.0-2_i386.deb
Checksums-Sha256: 
 28d699aa3a9c874c0ae44babc257ecc60de458563760229ab8897f74719a6577 1242 
tuxmath_1.8.0-2.dsc
 9497be4e9da6e9042d1122e8e9909d974cd9a02efcaa29edccd7d12b560bb8da 8016 
tuxmath_1.8.0-2.diff.gz
 cc0bf7356b72c186bbe2b723e14bb316f64b7a0c62191262c913b4869c9fab0a 6664744 
tuxmath_1.8.0-2_i386.deb
Files: 
 d01b9ab02010d65a4db05fa133f19a59 1242 games optional tuxmath_1.8.0-2.dsc
 5fd8e4645baf2a7a48f271ae6a843e25 8016 games optional tuxmath_1.8.0-2.diff.gz
 450431e5abcc4baf98b58604fabaaa12 6664744 games optional 
tuxmath_1.8.0-2_i386.deb

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

iD8DBQFL9Uy8UHLQNqxYNSARAlp3AJ0T7ZNe0wslfGg/NjJY7MgCAgA3swCePvgF
PwTzddxKaTvre9/01F/Kdh4=
=jK8I
-END PGP SIGNATURE-


Accepted:
tuxmath_1.8.0-2.diff.gz
  to main/t/tuxmath/tuxmath_1.8.0-2.diff.gz
tuxmath_1.8.0-2.dsc
  to main/t/tuxmath/tuxmath_1.8.0-2.dsc
tuxmath_1.8.0-2_i386.deb
  to main/t/tuxmath/tuxmath_1.8.0-2_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of8xf-0007ii...@ries.debian.org



Accepted darkstat 3.0.713-2 (source amd64)

2010-05-20 Thread Rene Mayorga
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 20 May 2010 10:01:02 -0600
Source: darkstat
Binary: darkstat
Architecture: source amd64
Version: 3.0.713-2
Distribution: unstable
Urgency: low
Maintainer: Rene Mayorga rmayo...@debian.org
Changed-By: Rene Mayorga rmayo...@debian.org
Description: 
 darkstat   - network traffic analyzer
Closes: 581553
Changes: 
 darkstat (3.0.713-2) unstable; urgency=low
 .
   * Patches forwarded from Emil
 and Ubuntu Maintainers, thank you guys :) :
   + Improve comments on init.cfg to be less confusing to users.
   + Add $DAYLOG and $FILTER vars to init.cfg conf
 file and init.d script.
   + Remove unused options from configure-stamp target.
   * Allow extra OPTIONS at the config file, thanks goes to
 Javier Barroso. (Closes: #581553)
Checksums-Sha1: 
 64402b484fb02c7f287ea81186e7c9fca1f66776 1728 darkstat_3.0.713-2.dsc
 dffc7dfa475d02761bb46328b2abef7cae2e2543 15917 darkstat_3.0.713-2.debian.tar.gz
 aed285d6714b4e9bab16e69eebe2d71754491287 63896 darkstat_3.0.713-2_amd64.deb
Checksums-Sha256: 
 e46807fccf8a7e9bd563664fc90f6076e7a246d499d73c07a4baf85fa607ab49 1728 
darkstat_3.0.713-2.dsc
 df470e714070cfdd17fc43647958cb0e95bff521fa7361c078110642c56f23f6 15917 
darkstat_3.0.713-2.debian.tar.gz
 51fc21883298c42feafca1d3b68a3deafa68921dcf88158fa852b6636db73e07 63896 
darkstat_3.0.713-2_amd64.deb
Files: 
 e3c72cc79bf3413ac23d47963af84dea 1728 net optional darkstat_3.0.713-2.dsc
 35cf1c19186b69f4bad41620801ea8f0 15917 net optional 
darkstat_3.0.713-2.debian.tar.gz
 d069ee6ad6a1b6c1c7f2600f0d82009d 63896 net optional 
darkstat_3.0.713-2_amd64.deb

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

iQIcBAEBCAAGBQJL9Wi0AAoJELsgrCDgt9a+pAcP/j5UjO1OJ3Izgv7p9RQFnNBj
VP6qTjLTlEx7pwgAa/XRVQ3VJ69aHq/+UQv8koOKq/5ZeZHNmtAwstMu/fXeGiRh
Aoqp4rx4fSCf088RosTNkTN90QGTD7v2bcrTvCyhm4IH/VgP7UyctjsnhnPs9l4e
xwL9YSkDdjGsNvGP3BkN94sf7ROl8XHum1q2i195V+E2Lkp13GUKH5OOQrFTKpMm
gKd9DlW7VhH1HCq+TISpZhTYhBFQL9vkSaejdLEhZBLmbR7hEt3Frv34uMp/5Olu
h/EE6Igi1HkQS0Z8+4sGkhyYZSsoyAhqb5Ha8PCjCcDRPxkGcvefGYxCsiHnYslB
E0zQ4g11a5DE9bxNeHMH9AUTX7vTrSj41iQLL/mM0Z0R5UHb29N4OrBoJrd8nrwj
QkSLsTfPDKWtX63Pz0mbD7UOCdYj1qXzvIkj6xyq8kSaHNRLdaLVpzk+COohD+el
oDVU+p3Hn/twTDChqATDfJByfSu8/cqEzIVqS8TX6xRv2fN8cT/Fb5B0t+YwCfF5
qhtEAFHMv2xO1lX+vnEhPGHqwtX7sgSswIB9ssbeLuoaQdnzssMC+wL78Tjq14ei
PvU+YuotiBPRZz/Ign6faSkghQoaLCgmhF7q40OCGzJVxdnrYpsWthWb4NTa4vGA
l0C5WIPbbkbQTt+9OiFv
=dLCX
-END PGP SIGNATURE-


Accepted:
darkstat_3.0.713-2.debian.tar.gz
  to main/d/darkstat/darkstat_3.0.713-2.debian.tar.gz
darkstat_3.0.713-2.dsc
  to main/d/darkstat/darkstat_3.0.713-2.dsc
darkstat_3.0.713-2_amd64.deb
  to main/d/darkstat/darkstat_3.0.713-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of98k-7t...@ries.debian.org



Accepted libmodule-corelist-perl 2.34-1 (source all)

2010-05-20 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 21 May 2010 01:31:02 +0900
Source: libmodule-corelist-perl
Binary: libmodule-corelist-perl
Architecture: source all
Version: 2.34-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@43-1.org
Description: 
 libmodule-corelist-perl - module to determine modules shipped with perl
Changes: 
 libmodule-corelist-perl (2.34-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 ff3ab32bd98c46ee8c4003df8d862152db18bc1d 2298 
libmodule-corelist-perl_2.34-1.dsc
 a112dea389295a82342e9b887f06971a505d852d 56603 
libmodule-corelist-perl_2.34.orig.tar.gz
 459cccda950fe992b34108aa9ffe8e1abc6ad564 4155 
libmodule-corelist-perl_2.34-1.debian.tar.gz
 4faa6cccb2e0e1768ec99b43ae2ca0e6a6900fb3 67676 
libmodule-corelist-perl_2.34-1_all.deb
Checksums-Sha256: 
 0e3e132d8f9bedcd7d5ea538646346001fe5d7dd7f9ea71e04e7f74d298d7ee9 2298 
libmodule-corelist-perl_2.34-1.dsc
 f59958850b0ba5fac4277718cf07c554ac00901aea7903b7e61ba407f0c67aa3 56603 
libmodule-corelist-perl_2.34.orig.tar.gz
 b3ed29118f90f378d7eef157eac2788e7bc5097e1821f68659acb0d9a901d4f6 4155 
libmodule-corelist-perl_2.34-1.debian.tar.gz
 36bbb11e45118e849ba9f120b8b0060e4913552ead52f38a26ed64e520dd8f6c 67676 
libmodule-corelist-perl_2.34-1_all.deb
Files: 
 35b8af17fdc74a84fd6edeb4cda8467f 2298 perl optional 
libmodule-corelist-perl_2.34-1.dsc
 78d62b2d20cd31b1c88f01e3bd262302 56603 perl optional 
libmodule-corelist-perl_2.34.orig.tar.gz
 1c456518990792dfb503c029d67a0dee 4155 perl optional 
libmodule-corelist-perl_2.34-1.debian.tar.gz
 fd98f1b8800b0465a3865815e29b62e8 67676 perl optional 
libmodule-corelist-perl_2.34-1_all.deb

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

iQIcBAEBCAAGBQJL9Wl5AAoJELs6aAGGSaoGkiQQAJfDrkcFSBHajasav/NDEdXB
CZMUOZGK3fdo3Gv+7tz6nTMMPeRmKsxn4QnQwA+9zxHbJ6k6qgRvIKMRMnzk+J7x
WPRCch6OqkYiNXxyDsMf8TvTcYUsoAFTp6hDWUkV9k+CVofV9kdJScKLemsBqv+8
FMPdPOEAhOFWJqb+jGIbyAhQF8DR488My+UCyUMN09g3gwupx1iM63BP5koBVCqe
1T1rZ8abmy26oN6mgbOOmwAhaVzj4Hgr7ROmPj/Ri5eOjiPw+LSCTPGSw6RIK7yB
RwFigYliO14ilpRfEjezwAoVmD7DZO+of8QnT90AJbdHIvW5aoZs3SoXvXzCo0wE
kgIiV1RWEMzEblbjiJlDMVXcuKujW4O3CgNprTlKwCn0ojyVSFfm32hhJaRzy7jg
swhSn4Q7TrQDkqbPBXPfgAsoXQxJlpqurvF9OoU2iujtoZ7Bdo+DXvXm4e9UPBRz
OYkul7tP2D6C0L9Wu/7DCy7qjR4JRKzv/TYdafMjEzBfXwU3lG1SsUGUp99oIqSW
tJifcCz1Xc9Moc2C2HMuuJ9MMJl9iqVKUO9/9Cjk9hQfoqwQiqkPoapMwcQ4xMdM
Z2GQxXLV4dNvBtwhksxUaQFBNGLlQnaN2qSYjhnf2w2TZLKW9su7Z/hQHuo7Vh0o
9fkyXgMqkCCeEKanQij+
=e9k2
-END PGP SIGNATURE-


Accepted:
libmodule-corelist-perl_2.34-1.debian.tar.gz
  to 
main/libm/libmodule-corelist-perl/libmodule-corelist-perl_2.34-1.debian.tar.gz
libmodule-corelist-perl_2.34-1.dsc
  to main/libm/libmodule-corelist-perl/libmodule-corelist-perl_2.34-1.dsc
libmodule-corelist-perl_2.34-1_all.deb
  to main/libm/libmodule-corelist-perl/libmodule-corelist-perl_2.34-1_all.deb
libmodule-corelist-perl_2.34.orig.tar.gz
  to main/libm/libmodule-corelist-perl/libmodule-corelist-perl_2.34.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of98t-0004au...@ries.debian.org



Accepted libpod-readme-perl 0.10-1 (source all)

2010-05-20 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 20 May 2010 18:06:36 +0900
Source: libpod-readme-perl
Binary: libpod-readme-perl
Architecture: source all
Version: 0.10-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@43-1.org
Description: 
 libpod-readme-perl - Perl module to convert POD to README file
Closes: 550287
Changes: 
 libpod-readme-perl (0.10-1) unstable; urgency=low
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ Salvatore Bonaccorso ]
   * debian/control: Changed: Replace versioned (build-)dependency on
 perl (= 5.6.0-{12,16}) with an unversioned dependency on perl (as
 permitted by Debian Policy 3.8.3).
 .
   [ gregor herrmann ]
   * Improve short description, thanks to Jari Aalto for the bug report
 (closes: #550287).
 .
   [ Ansgar Burchardt ]
   * New upstream release.
   * Add myself to Uploaders.
   * Use tiny debian/rules.
   * Use Build.PL instead of Makefile.PL, add build-dep on
 perl (= 5.10) | libmodule-build-perl.
   * No longer run author tests, remove build-dep on libtest-pod-perl and
 libtest-pod-coverage-perl.
   * Bump Standards-Version to 3.8.4.
   * debian/copyright: Formatting changes for current DEP-5 proposal.
Checksums-Sha1: 
 6878421a3aa064abee81775abd9fdd42c634acd6 2080 libpod-readme-perl_0.10-1.dsc
 2a3f1515c02931d3f0b303fcb28bb039582b4ffa 9144 
libpod-readme-perl_0.10.orig.tar.gz
 9e17795e319b7835e7c45cc90e9a3957528e0f46 1995 
libpod-readme-perl_0.10-1.debian.tar.gz
 06f33822ce9ec3f261bae5e70a9e989c3c9c26db 14826 
libpod-readme-perl_0.10-1_all.deb
Checksums-Sha256: 
 862c834b1e1f80ecfa347ca5206e107ab0286819719254e8cdacf351cf79ad6c 2080 
libpod-readme-perl_0.10-1.dsc
 557b229d6379480c17bc1be0c021bfe507ed3b0672c806e98cbd189d67ac7655 9144 
libpod-readme-perl_0.10.orig.tar.gz
 c5924ff1496ab7c29d072bbf5b2b3b81d5d4c23140bfd72d50532ac6c3f711b4 1995 
libpod-readme-perl_0.10-1.debian.tar.gz
 e0a2a067ebd0320a9a0bbbf31a39ebc2acdf628fb159dc00aa6cd2bf4bc4ca62 14826 
libpod-readme-perl_0.10-1_all.deb
Files: 
 ce7d549e948af45b758753335f338093 2080 perl optional 
libpod-readme-perl_0.10-1.dsc
 ee7043323b43bbdbfbfecf0e9a32c64a 9144 perl optional 
libpod-readme-perl_0.10.orig.tar.gz
 4218c48ebfb737bd137f47b59d682e0d 1995 perl optional 
libpod-readme-perl_0.10-1.debian.tar.gz
 bf905e957e787bc405954ff8a827fda4 14826 perl optional 
libpod-readme-perl_0.10-1_all.deb

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

iQIcBAEBCAAGBQJL9WbjAAoJELs6aAGGSaoGOZ0P/0XK44T+2XpQDKINzgtGkt0S
1mBi/b3Qa0Oc3WujinM7QBscgOFQhoZyjBd1HfhtDNccykRRLrcr7b3DeSn4WQ3Z
gyEs/HNuBVmmlUEsDAEC/WvAK8nF3tBaMSU2lKpzEYPX2+LmYUCb6Yq1FlSxh6G1
U9vge0yLdeKcv2vB3+3DHYZzIwoM93FZA4NVHOgTOKLSz5klTuYX+jZJP+a043Zg
oUch0HGYnGxMDmODMfBHAfs6WIyvYXzZYjxw2Lwx63QwMEPNxYfThGBg8huiSJqB
oeN8WIc/aWicC2ayBmgXgYWrQId8DQ5QBq5S2qHxre2bLdsfwns8nnvyXXi1xnvy
khg2qlRhTV1vXhRFL8LSuTmci4X3q8a3TFGzZI475jHuTSzsoUj6nFnjO5NkVEtm
mS/yUh3m4h53BWF0XKUhnCfb2/WKvnHoP2g8b48VW8caHhGrtq8RNwkR155aCQAC
UiVxKXuw2PQRXsfJxnfjGRpX5Nhy+rkyV96WfRdKZR2yXHGcYegK9ctFscg8TBbT
v/GbMVD7PYqVUGxDk5m5BhzpYjOG00Xj8JNXbcJvX4PkuXzBFP1V0YX4tv4epbjR
NRwuoPefvpKKk7ZZ4Sa2gCZ0hiKoG0uOr7piDP/qs7IikcOJSRCom4ZOmBQb/Wzj
TUEWlWS42YgjFG34Tc3r
=6y8K
-END PGP SIGNATURE-


Accepted:
libpod-readme-perl_0.10-1.debian.tar.gz
  to main/libp/libpod-readme-perl/libpod-readme-perl_0.10-1.debian.tar.gz
libpod-readme-perl_0.10-1.dsc
  to main/libp/libpod-readme-perl/libpod-readme-perl_0.10-1.dsc
libpod-readme-perl_0.10-1_all.deb
  to main/libp/libpod-readme-perl/libpod-readme-perl_0.10-1_all.deb
libpod-readme-perl_0.10.orig.tar.gz
  to main/libp/libpod-readme-perl/libpod-readme-perl_0.10.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of999-00065s...@ries.debian.org



Accepted libsys-virt-perl 0.2.4-1 (source i386)

2010-05-20 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 20 May 2010 10:52:04 +0200
Source: libsys-virt-perl
Binary: libsys-virt-perl
Architecture: source i386
Version: 0.2.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso salvatore.bonacco...@gmail.com
Description: 
 libsys-virt-perl - Perl module providing an extension for the libvirt library
Changes: 
 libsys-virt-perl (0.2.4-1) unstable; urgency=low
 .
   * New upstream release
   * Drop fix_spelling-error-in-manpage.patch patch which is applied upstream.
   * Bump Build-Depends on libvirt-dev to (= 0.8.1).
   * Referesh debian/copyright for upstream files.
   * Bump Standards-Version to 3.8.4.
Checksums-Sha1: 
 091c56b8b9a178cebad60e3b34e308cd9bad71b0 2086 libsys-virt-perl_0.2.4-1.dsc
 dd03539544c7a3ab6f0c9253167c923eef3a6819 54780 
libsys-virt-perl_0.2.4.orig.tar.gz
 86cd123aee6dd6b5dfbe116596327cd1787c 2135 
libsys-virt-perl_0.2.4-1.debian.tar.gz
 d5ae031d1a96138c8b149e8614e61f8f6439fbb6 184108 
libsys-virt-perl_0.2.4-1_i386.deb
Checksums-Sha256: 
 84e832c87e4e8d645d80737c04ec67875403c7da4b07eb0e317da2f1bfb9fd5a 2086 
libsys-virt-perl_0.2.4-1.dsc
 d51b6e7de3a59d87457bd7673e936905a3863cd737de03b24537129622a6d979 54780 
libsys-virt-perl_0.2.4.orig.tar.gz
 147aab6d03fa0a648f6d02535ace0534dda5aa98a0c1ef9b9c51775b6ed0c08d 2135 
libsys-virt-perl_0.2.4-1.debian.tar.gz
 c3ad812e6f7e29ef61e9c16057dc011ad60d78fa2b4325bf9ab74e672a8e9f96 184108 
libsys-virt-perl_0.2.4-1_i386.deb
Files: 
 d8fa170da123d91cfaa4b9bec0391908 2086 perl optional 
libsys-virt-perl_0.2.4-1.dsc
 68398f270be6e6c476fd659f3458e835 54780 perl optional 
libsys-virt-perl_0.2.4.orig.tar.gz
 300afbde4f8734bce4fd0fc33e66b838 2135 perl optional 
libsys-virt-perl_0.2.4-1.debian.tar.gz
 e1ea717dbea1bb71d770aa4245676f86 184108 perl optional 
libsys-virt-perl_0.2.4-1_i386.deb

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

iQIcBAEBCAAGBQJL9WgiAAoJELs6aAGGSaoGA68P+wXDzYhBkE5tjV57h0tuTmHa
G0BEXN2zeOs0Jze5lzsDGH92CJHDwucb9y0zx0a8lNDYElFccbOqe/9TstVbzl9L
NfxhL2/usoayDOqNjT1NHhpvWUPGssznJfzfwYi0kZHsSM65uLgziCvyeUCCSvKb
USpFcpdMYv0Tn4wSdqc/ObB6XHMnyVKIrTDLQ4osEJjY/MLcH5DujMfaqGbkM7dR
EXwC+vU8D1Q/IeAFA5D1Uqm9wUDlsYe9qHYD3JpbnKqaKcvLwNHBpbXw8Xljq5XH
hlKYNMkx33HVq9mGH9sACWwEexCPFdhva+g3MnKgTNNh+OTCwQr4YTPyx0E2Fw3E
z6ZnjLbrlXV3pNlC9LV28/yeuRdEVcS/aXhM9NVFnHIl3ac1XBIf/hm1q3wqsLkH
A6CvtCymYObJxMBjcQbitSuGuPm6ztFDzpMi6goFwSHO2dgM0Ffa8J/sMPnb8XaS
IIY6gOmASEsSfNpp+4o/6hgezKxdO/E3eTujs8JRprsnfvioaNjrwTzHwxJaFMPm
LA4VR9h96KyXtZ4h5Okj5RNcXIRpjNU1sn2IeT4kzk6QmP4FQE97yRRPWtA511nk
94p6V1n7Gld/CAIcJ0MCBiGYZxgOp/zUsfjUOFkCXEp3AqGE6UNBtrHBsN706wey
TEKIanQP1zvj/RNjaZBT
=SPAw
-END PGP SIGNATURE-


Accepted:
libsys-virt-perl_0.2.4-1.debian.tar.gz
  to main/libs/libsys-virt-perl/libsys-virt-perl_0.2.4-1.debian.tar.gz
libsys-virt-perl_0.2.4-1.dsc
  to main/libs/libsys-virt-perl/libsys-virt-perl_0.2.4-1.dsc
libsys-virt-perl_0.2.4-1_i386.deb
  to main/libs/libsys-virt-perl/libsys-virt-perl_0.2.4-1_i386.deb
libsys-virt-perl_0.2.4.orig.tar.gz
  to main/libs/libsys-virt-perl/libsys-virt-perl_0.2.4.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of99p-0006jq...@ries.debian.org



Accepted python-django-debug-toolbar 0.8.3-1 (source all)

2010-05-20 Thread Chris Lamb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 17:44:11 +0100
Source: python-django-debug-toolbar
Binary: python-django-debug-toolbar
Architecture: source all
Version: 0.8.3-1
Distribution: unstable
Urgency: low
Maintainer: Chris Lamb la...@debian.org
Changed-By: Chris Lamb la...@debian.org
Description: 
 python-django-debug-toolbar - Embedded debugging toolbar for Django projects
Changes: 
 python-django-debug-toolbar (0.8.3-1) unstable; urgency=low
 .
   * New upstream release.
   * Move to dpkg '3.0 (quilt)' source format
   * Bump Standards-Version to 3.8.4
   * Use less-brittle method of symlinking jQuery.
Checksums-Sha1: 
 c43c6aa68fdf7c92e223fec35138491671e1906e 1390 
python-django-debug-toolbar_0.8.3-1.dsc
 7e915cbbf3bb64948218b07e5a5843bee30fb29e 182543 
python-django-debug-toolbar_0.8.3.orig.tar.gz
 5c719ad6aa8c13efe0594c4638954809a49f5814 4342 
python-django-debug-toolbar_0.8.3-1.debian.tar.gz
 0d4907b7a7c1e7b4fba24a011d80427feb81797d 63642 
python-django-debug-toolbar_0.8.3-1_all.deb
Checksums-Sha256: 
 abe87a96f3e29f9f0aee268bf80b27b4ee6c93f8b811909377c0ae4de1dccfbe 1390 
python-django-debug-toolbar_0.8.3-1.dsc
 1ab2e5c24a13314722f584d94d87a96518df4129632ca68e2d515c081cbcb3ac 182543 
python-django-debug-toolbar_0.8.3.orig.tar.gz
 c042b681e84a38bd630f47020eca4fe14eb83692ae24a67917404363635092f2 4342 
python-django-debug-toolbar_0.8.3-1.debian.tar.gz
 d1b9618ef2005b95a9a2db1cca95b32dbd725b91cffddd1d7c2dce11b1337447 63642 
python-django-debug-toolbar_0.8.3-1_all.deb
Files: 
 135a76061a855ea71e72483a1fc9585e 1390 python optional 
python-django-debug-toolbar_0.8.3-1.dsc
 242026ef0926d23c5096826c167bbfd7 182543 python optional 
python-django-debug-toolbar_0.8.3.orig.tar.gz
 c8e02bac5b1054f30053d375b7dff565 4342 python optional 
python-django-debug-toolbar_0.8.3-1.debian.tar.gz
 e20c25bb2c277ced16f2b926fdc063c8 63642 python optional 
python-django-debug-toolbar_0.8.3-1_all.deb

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

iEYEARECAAYFAkv1ZvsACgkQ5/8uW2NPmiAWHwCfVD6gLXOIq7LNtWyHOwzGdQr/
8rsAnA8VbtWTI1dsnarLfaROiPb5IIZu
=jWAD
-END PGP SIGNATURE-


Accepted:
python-django-debug-toolbar_0.8.3-1.debian.tar.gz
  to 
main/p/python-django-debug-toolbar/python-django-debug-toolbar_0.8.3-1.debian.tar.gz
python-django-debug-toolbar_0.8.3-1.dsc
  to main/p/python-django-debug-toolbar/python-django-debug-toolbar_0.8.3-1.dsc
python-django-debug-toolbar_0.8.3-1_all.deb
  to 
main/p/python-django-debug-toolbar/python-django-debug-toolbar_0.8.3-1_all.deb
python-django-debug-toolbar_0.8.3.orig.tar.gz
  to 
main/p/python-django-debug-toolbar/python-django-debug-toolbar_0.8.3.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of99g-0006p9...@ries.debian.org



Accepted coffeescript 0.6.2-1 (source all)

2010-05-20 Thread Geza Kovacs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 16 May 2010 12:31:23 -0400
Source: coffeescript
Binary: coffeescript coffeescript-doc
Architecture: source all
Version: 0.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Geza Kovacs gkov...@mit.edu
Changed-By: Geza Kovacs gkov...@mit.edu
Description: 
 coffeescript - interpreter and compiler for the CoffeeScript language
 coffeescript-doc - documentation for coffeescript
Closes: 581913
Changes: 
 coffeescript (0.6.2-1) unstable; urgency=low
 .
   * New upstream release
 - Syntax for block comments
 - DRY-style pattern matching supported
 - Pattern matching allowed within comprehension variables
 - unless statement allowed in block form
 - until loops added
 - switch statements allowed without switch object clauses
   * Added Vcs-Git and Vcs-Browser fields
   * Updated nodejs dependency to 0.1.95
   * Don't install cake to /usr/bin (Closes: #581913)
Checksums-Sha1: 
 10e2657153c9ed4dfcbee5c30b3573db1c0f2ea6 1844 coffeescript_0.6.2-1.dsc
 573a32f0bbaa19b9fe4ec885635471ec45c63f0d 370426 coffeescript_0.6.2.orig.tar.gz
 d2682ffa826bdc387d7e7cef0572a3b7f0cac352 3788 
coffeescript_0.6.2-1.debian.tar.gz
 be9bd6891c51c85b95f7ce56b536f886c7fdc78b 88146 coffeescript_0.6.2-1_all.deb
 ed474a871f764dcadfdacbbe614154f82afa491b 78538 coffeescript-doc_0.6.2-1_all.deb
Checksums-Sha256: 
 6e413b87f1b00811bbe66cd7e857c81a48280a2a85accbbe8af9ca467abf9c14 1844 
coffeescript_0.6.2-1.dsc
 e70254d0b6c5d961dd51edc72b2b23dde37eabaf24f655bc2fa7a5345d2c024d 370426 
coffeescript_0.6.2.orig.tar.gz
 4d614db4a315f46f60efcd7a2f03d6921f5f7484bf7e21004117410d8f9ba3a6 3788 
coffeescript_0.6.2-1.debian.tar.gz
 92c3076e845fed2e733dd83166ff5b5773db6eb2fed29daa70f9c59558dca724 88146 
coffeescript_0.6.2-1_all.deb
 3f3483651a705428d1cafbd2f19bd50550db4b4c762b63a9de044185f4e67660 78538 
coffeescript-doc_0.6.2-1_all.deb
Files: 
 ee72ea134a292824e5aa61112d061181 1844 devel extra coffeescript_0.6.2-1.dsc
 c5a148d7ea5ef8e1b2bb8e6231559331 370426 devel extra 
coffeescript_0.6.2.orig.tar.gz
 ae93421c930c8a6e593968efd23f257b 3788 devel extra 
coffeescript_0.6.2-1.debian.tar.gz
 09d78ae293f95a57e7adaadc668e323b 88146 devel extra coffeescript_0.6.2-1_all.deb
 aab5a5c4284c094facc70f65d5d08dad 78538 doc extra 
coffeescript-doc_0.6.2-1_all.deb

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

iQIcBAEBCgAGBQJL9WrVAAoJEKv/7bJACMb5zUgQAKFwWJDqsqmwEzzOkeSY954C
qgwetAZTc0oH8q3ewVF/OXoLSrqVhBuyNCnBcU61uc9SUHKnVICRUEHKfnPXPgiU
QREwFhh244ZfhT1TNPuVmLZqYlpAlEhYww8oFvyRxMMZylYl++Y+gPgwZ6wVoRV8
oKmDd7BYjlr/qHZ6jek73FvWsULuAndSXAzQkB4HxZRAfVzOMB86jacgHnTrkrgx
k07Q3gEgnXO4VvEAIKvW1ztvjfZCxpRM3Z8cm7MDFjWvli6GkeF6Jl3cTpRIP85/
S3Q9sDtiM0NfDRHiukxheoMVBkQix/9qITnmDypkG9xs8tpv4BFhrMHHESO/+1Wd
1ypoj9WpgKqnRzvioxESIGzLjsxsvMb17vPgk8WBz+x26pqMZ/msj5Bu8gPj7ena
jMElst74N25z+OL5aa6A/RNpCFIPSlu69zIt8pD21q84C57J7EGsHt8AKUtNF2Ar
aOv87H228WAJcCagmFw5t5HHBYZX9V1x/pWDkJp1VySBgAH/nX7kMXhe1k2Cz5cd
SG0V/nujsILf1twqCH6AoPeNreTuwzYKKf0xGia2B3WGdo0mxAUDQBEws5IjPMXJ
g2VYRQ8bEXw7CkjRUyBTS+CCXzzf5Xre75+F883GauWr8fyIJzjFq+Ni5sSwZfDh
dBI21rIYAfv1dkJ1aq2N
=T1de
-END PGP SIGNATURE-


Accepted:
coffeescript-doc_0.6.2-1_all.deb
  to main/c/coffeescript/coffeescript-doc_0.6.2-1_all.deb
coffeescript_0.6.2-1.debian.tar.gz
  to main/c/coffeescript/coffeescript_0.6.2-1.debian.tar.gz
coffeescript_0.6.2-1.dsc
  to main/c/coffeescript/coffeescript_0.6.2-1.dsc
coffeescript_0.6.2-1_all.deb
  to main/c/coffeescript/coffeescript_0.6.2-1_all.deb
coffeescript_0.6.2.orig.tar.gz
  to main/c/coffeescript/coffeescript_0.6.2.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of9n1-0007u0...@ries.debian.org



Accepted gss 1.0.1-1 (source all i386)

2010-05-20 Thread Simon Josefsson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 20 May 2010 17:48:39 +0200
Source: gss
Binary: gss-doc gss-man libgss3 libgss-dev libgss-dbg
Architecture: source all i386
Version: 1.0.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian GSS Team help-...@gnu.org
Changed-By: Simon Josefsson si...@josefsson.org
Description: 
 gss-doc- Documentation for GSS (except man pages)
 gss-man- Man pages for GSS
 libgss-dbg - Debugging symbols for GSS
 libgss-dev - Development and documentation files for Generic Security Services
 libgss3- Library for Generic Security Services
Changes: 
 gss (1.0.1-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1: 
 fa4af7c317e94b3d2b2ecf62137301061f0adf29 1594 gss_1.0.1-1.dsc
 ae1ef7c7fa708db8a399312041d75e73621689ea 2172908 gss_1.0.1.orig.tar.gz
 699664cc1a646bba4bf662fd4aecbfae8ba2ca4e 7442 gss_1.0.1-1.debian.tar.gz
 1d2eba75e43ad22a8e91b342fd33cab5efd05a3c 970448 gss-doc_1.0.1-1_all.deb
 28b15e300db3250229ddf9a1c920632c295c9df1 121354 gss-man_1.0.1-1_all.deb
 cda5ced9e34cd02859bc3ed87c21495a60e3cb8e 99978 libgss3_1.0.1-1_i386.deb
 5d1d40b8f44b033d9c621f0555fc078532486d1a 98152 libgss-dev_1.0.1-1_i386.deb
 b9bdb8a0a066c60879f40ecda5d209a6e53d2ab7 109174 libgss-dbg_1.0.1-1_i386.deb
Checksums-Sha256: 
 0749abbfd35ffb941f8a07e83c9b7116f42b0b52a3cf3ba371bbf3d42b96764d 1594 
gss_1.0.1-1.dsc
 a0267f37ca2d0b44847082f01a0f21bd7110571ee1a5e0a91803b4fa0ab9e915 2172908 
gss_1.0.1.orig.tar.gz
 45feb5a9855023b7c657a5b842e5a151cda3f5e60d806a9892a4511b3a16632d 7442 
gss_1.0.1-1.debian.tar.gz
 e695ec56533cc523214e3a96c44cb614c0ce73c7197f6102ca7751f950949c3d 970448 
gss-doc_1.0.1-1_all.deb
 36b249176215656df5b8e4859cbbe2ba03b7c0305eed2c8e1c23ef3629686a22 121354 
gss-man_1.0.1-1_all.deb
 ffb346fcba9b5233f9bd8d6a4ad3be71223e917e70437b541e859848ed066733 99978 
libgss3_1.0.1-1_i386.deb
 439cfb9106a0096b29452e568d20ff77cc1f6b8bc50b77f5afdf7b002be5b3f9 98152 
libgss-dev_1.0.1-1_i386.deb
 55bd95e653fe35ae6b8f0cd58316d2109723024d0fee9cad73a034e88216f70c 109174 
libgss-dbg_1.0.1-1_i386.deb
Files: 
 124ac6e13f5fa48a8a1abd8e9cda67b5 1594 net extra gss_1.0.1-1.dsc
 b044abfe64ad94e509f316c06d9b7422 2172908 net extra gss_1.0.1.orig.tar.gz
 dd77b91dcec2db780d440d13e1352f90 7442 net extra gss_1.0.1-1.debian.tar.gz
 0d9ba3b5dd3c688b0456b55d3b700a4c 970448 doc extra gss-doc_1.0.1-1_all.deb
 7c4e6af9c5616d0d528feabd50bbbd98 121354 doc extra gss-man_1.0.1-1_all.deb
 9639bbd37917383f98758d29809fa303 99978 libs extra libgss3_1.0.1-1_i386.deb
 a94c5dfc3da64010de462a9b7574ab80 98152 libdevel extra 
libgss-dev_1.0.1-1_i386.deb
 a5f6e6a785e613a62393327123eaa4c7 109174 debug extra libgss-dbg_1.0.1-1_i386.deb

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

iOoEAQECADQFAkv1bIgtFIAAFQAPcGthLWFkZHJlc3NAZ251cGcub3JnamFz
QGV4dHVuZG8uY29tAAoJEO2iHpS1ZXFvOw0E/19xpBAEeYSb4yQvf14y0/32IHRZ
2XptAEfcdyibZBihedJj7IehUBbVkTwALAkbVSyhLzEyIQalJZNVgxNhFicY2iNl
Vq+Gp63Y/nx7yyTNl8fSY5ou94vUVPqCigATnF0hDIyt6nKBB4ZAegIh+RzxMUfj
hsEALSQLFS2mvAAF/ee/TLo6VZdUvJCLE7kpThVUYSfhSgMjyyK1dAOBIzw=
=SYcq
-END PGP SIGNATURE-


Accepted:
gss-doc_1.0.1-1_all.deb
  to main/g/gss/gss-doc_1.0.1-1_all.deb
gss-man_1.0.1-1_all.deb
  to main/g/gss/gss-man_1.0.1-1_all.deb
gss_1.0.1-1.debian.tar.gz
  to main/g/gss/gss_1.0.1-1.debian.tar.gz
gss_1.0.1-1.dsc
  to main/g/gss/gss_1.0.1-1.dsc
gss_1.0.1.orig.tar.gz
  to main/g/gss/gss_1.0.1.orig.tar.gz
libgss-dbg_1.0.1-1_i386.deb
  to main/g/gss/libgss-dbg_1.0.1-1_i386.deb
libgss-dev_1.0.1-1_i386.deb
  to main/g/gss/libgss-dev_1.0.1-1_i386.deb
libgss3_1.0.1-1_i386.deb
  to main/g/gss/libgss3_1.0.1-1_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of9nm-00080b...@ries.debian.org



Accepted gupnp-igd 0.1.7-2 (source all amd64)

2010-05-20 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 20 May 2010 19:01:08 +0200
Source: gupnp-igd
Binary: libgupnp-igd-1.0-3 libgupnp-igd-1.0-dev libgupnp-igd-1.0-dbg 
libgupnp-igd-1.0-doc python-gupnp-igd
Architecture: source all amd64
Version: 0.1.7-2
Distribution: unstable
Urgency: low
Maintainer: Laurent Bigonville bi...@debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 libgupnp-igd-1.0-3 - library to handle UPnP IGD port mapping
 libgupnp-igd-1.0-dbg - library to handle UPnP IGD port mapping - debug symbols
 libgupnp-igd-1.0-dev - library to handle UPnP IGD port mapping - development 
files
 libgupnp-igd-1.0-doc - library to handle UPnP IGD port mapping - documentation
 python-gupnp-igd - Python binding for the UPnP IGD port mapping library
Changes: 
 gupnp-igd (0.1.7-2) unstable; urgency=low
 .
   * Re-disable tests as it FTBFS on buildd
   * debian/python-gupnp-igd.install: Also install modules in python2.6 path
Checksums-Sha1: 
 021493964afed16ed8dda6abf681549ddf6842da 1695 gupnp-igd_0.1.7-2.dsc
 384ddac364546bec6c4254a94035b4ad5b520d0e 3002 gupnp-igd_0.1.7-2.debian.tar.gz
 8ae0563e0357c6d148a271abf063cf254bd9d0dd 18998 
libgupnp-igd-1.0-doc_0.1.7-2_all.deb
 7ab681c5ced65d6e011bb8e68c7d2a92ba95a522 23318 
libgupnp-igd-1.0-3_0.1.7-2_amd64.deb
 d57146fecbb08b0337834079955e39531d060bd3 24910 
libgupnp-igd-1.0-dev_0.1.7-2_amd64.deb
 784ebef822f2df6d48936e663d59c7cf87a69ce5 44402 
libgupnp-igd-1.0-dbg_0.1.7-2_amd64.deb
 a8df74a219e35983e83d9600d0583312d535a3b2 15086 
python-gupnp-igd_0.1.7-2_amd64.deb
Checksums-Sha256: 
 071537152fabad80887b24e85f92f20a49e72b363f22b763a08b8629e3a50ff3 1695 
gupnp-igd_0.1.7-2.dsc
 89e8d2f95e8ea7f1a79d17c56f9472de1f15eb85b6a30e73926fcfe4143f6d34 3002 
gupnp-igd_0.1.7-2.debian.tar.gz
 61228cedd37cdf56bda51ebec9c344b0ff06f749ac5502205d84116bfee23b73 18998 
libgupnp-igd-1.0-doc_0.1.7-2_all.deb
 abd4fbe7d66258ff6b995e95edf0042b11d884f9919c3632edeee5ab30333c7b 23318 
libgupnp-igd-1.0-3_0.1.7-2_amd64.deb
 82b9c8e45fd6c045ef1a1730fa690dac93c47f6182b5c7fcb0d86838476776f1 24910 
libgupnp-igd-1.0-dev_0.1.7-2_amd64.deb
 8acb62e272c56198dedf8e9cd2b566bc9c73250189f45fa43696008f5fd8271b 44402 
libgupnp-igd-1.0-dbg_0.1.7-2_amd64.deb
 52562d861e6abe1b230991ce2680ee2c8e4492bcc898d2f9deeef45816def284 15086 
python-gupnp-igd_0.1.7-2_amd64.deb
Files: 
 09f526816e65d931d80cd7950e8bb2b2 1695 libs optional gupnp-igd_0.1.7-2.dsc
 795155538e81936ff6f82bcc8bcbd265 3002 libs optional 
gupnp-igd_0.1.7-2.debian.tar.gz
 b52871b868b611a5b33cc81c88789b47 18998 doc optional 
libgupnp-igd-1.0-doc_0.1.7-2_all.deb
 f7dfd9f330de330e1bb594ad82975464 23318 libs optional 
libgupnp-igd-1.0-3_0.1.7-2_amd64.deb
 3e399958f060efabe92adce08e0c53d6 24910 libdevel optional 
libgupnp-igd-1.0-dev_0.1.7-2_amd64.deb
 27b2ba850d74f307775aafb3b751456f 44402 debug extra 
libgupnp-igd-1.0-dbg_0.1.7-2_amd64.deb
 38600742959e1e4b37de2cb3d0718aa9 15086 python optional 
python-gupnp-igd_0.1.7-2_amd64.deb

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

iQEcBAEBCAAGBQJL9WwmAAoJEB/FiR66sEPVVxAIAJi8r6lXA11ePQBjIXCpJcou
KYoeMsL99Eetyg1ewud6BidO7hUBgXSRFVSc6PF/A7ktFd2Ckw+OxZqMhfTHVuob
4YGAIaO//qM1GAGiEmLcvrsaIGQ+GV1hfj0SkY3Vm7JOH3Rru6E64CypeHWdyZv+
iJ1u9x3bGzzSLb7GVxH87nN0pU0a49lzqgk3zJ023Ap8BJK56RTKhVp1aAfSaMFa
DLqwAtQjsH9jPrBSZRC0MTV+d0TEIoJ14zVrgs0DIwcx07+CVN61ZYhYlk8Y7g3C
jvZPnk601QE+4SyVRRv8rF22Oh82iuo+G4i+7eIq96YTBJby5oWuVVCKCVdd5mw=
=Pbgf
-END PGP SIGNATURE-


Accepted:
gupnp-igd_0.1.7-2.debian.tar.gz
  to main/g/gupnp-igd/gupnp-igd_0.1.7-2.debian.tar.gz
gupnp-igd_0.1.7-2.dsc
  to main/g/gupnp-igd/gupnp-igd_0.1.7-2.dsc
libgupnp-igd-1.0-3_0.1.7-2_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-3_0.1.7-2_amd64.deb
libgupnp-igd-1.0-dbg_0.1.7-2_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-dbg_0.1.7-2_amd64.deb
libgupnp-igd-1.0-dev_0.1.7-2_amd64.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-dev_0.1.7-2_amd64.deb
libgupnp-igd-1.0-doc_0.1.7-2_all.deb
  to main/g/gupnp-igd/libgupnp-igd-1.0-doc_0.1.7-2_all.deb
python-gupnp-igd_0.1.7-2_amd64.deb
  to main/g/gupnp-igd/python-gupnp-igd_0.1.7-2_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1of9oo-000890...@ries.debian.org



  1   2   >