apero pour NM parisiens: 30/11/2009, 19:30, Frog @ BNF

2009-09-28 Thread Stefano Zacchiroli
Salut a tous,
  mercredi soir, on va prendre un apero pour fêter le nouvelles DDs du
labo PPS (Mehdid Dogguy and Stéphane Glondu). En fait, je sais que il y
a beaucoup d'autres nouvelle DDs français, mais je suis pas sur si ils
sont sur Paris au pas.

Bon, si vous voulez participer, le rendez-vous est au Frog and British
Library (Google Maps: http://tinyurl.com/yeer6q8 , Metro Bibliothèque,
ligne 14) à partir des 19:30.  Vous pouvez même vous ajouter au poll
Doodle http://doodle.com/phk8get55cxd3ssn (comme ça, si on est un
certain nombre on va réserver un table).

À bientôt.


PS merci de me dire si il y a des autres listes pour contacter les DDs
   et Debianists Francais / Parisiens ... et si messages comme ce ci
   dérangent ice.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime


signature.asc
Description: Digital signature


Re: /var/www is depracated, which directory to use?

2009-09-28 Thread Stig Sandbeck Mathisen
Holger Levsen hol...@layer-acht.org writes:

 http://lintian.debian.org/tags/dir-or-file-in-var-www.html nor
 debian-policy is helpful to resolve this issue - so I would like to
 discuss this here and come up with a good solution.

 Suggestions?

No package may touch /srv, but we could perhahs recommend its usage in
documentation or examples.

The package should generate html and graphs somewhere in /var/lib/munin,
possibly /var/lib/munin/html, and provide configuration examples for the
most common web servers.

A possible conflict:

Munin uses /var/lib/munin as the root of its dbdir, and if someone makes
a html domain for web servers, confusion may occur, as that directory
will store both the RRD files for that domain, as well as the generated
HTML.

Moving old data:

There should be no need to move old data.  munin-graph should re-create
missing graphs on the first run.  munin-html updates all web pages every
run.

We'll add a notice to NEWS.Debian:

,[ NEWS.Debian ]
| The munin web root default location has moved from /var/www/munin to
| /var/lib/munin/html.  To do this manually, you can:
| 
| * Update htmldir in /etc/munin/munin.conf to point to
|   /var/lib/munin/html.
| 
| * Add configuration to your web server, see fragments in
|   /usr/share/doc/munin/examples for your web server
| 
| * Remove /var/www/munin when convenient.
`

Configuration examples for common web servers:

The following configuration fragments could be placed in
/usr/share/doc/munin/examples/

This is for apache httpd.  Add to /etc/apache2/conf.d/ to cover all
virtual hosts, or include in a virtual host:

,[ /etc/apache2/conf.d/munin.conf ]
| Alias /munin /var/lib/munin/html
| Directory /var/lib/munin/html
| Order allow,deny
| Allow from localhost 127.0.0.0/8 ::1
| Options None
| /Directory
`

For nginx, you will have to add the following to an existing
virtualhost.  

nginx in sid has ipv6 support, and this was enabled in the upload
yesterday, I guess an extra allow ::1; (or allow [::1];) would do
the trick.

,[ /etc/nginx/sites-enabled/default ]
| location /munin {
| alias /var/lib/munin/html;
| allow 127.0.0.0/8;
| deny all;
| }
`

For lighttpd, we need something like the following.  Note that this acl
example may not work with IPv6 enabled, since lighttpd does not do
subnet matching on IPv6 (http://redmine.lighttpd.net/issues/385)

,[ /etc/lighttpd/conf-enabled/munin.conf ]
| alias.url += ( /munin = /var/lib/munin/html )
| 
| $HTTP[url] =~ ^/munin {
|   $HTTP[remoteip] != 127.0.0.0/8 {
| url.access-deny = (  )
|   }
| }
| 
`

-- 
Stig Sandbeck Mathisen


pgpLlS9WfGa1A.pgp
Description: PGP signature


Re: Transitional (dummy) packages considered silly

2009-09-28 Thread Goswin von Brederlow
Guillem Jover guil...@debian.org writes:

 On Wed, 2009-09-23 at 10:51:50 +0200, Goswin von Brederlow wrote:
 Magnus Holmgren holmg...@debian.org writes:
  When a binary package is renamed or split, as well as if several packages 
  are 
  merged under a new name, transitional packages are normally created, which 
  depend on the new packages, which in turn Replaces and Conflicts with, and 
  possibly Provides, the old packages. I find those dummy packages as silly 
  to 
  create as to uninstall after upgrading.
 
 Dpkg has the ability to vanish empty packages. A dummy package should
 be completly empty and not even contain a /usr/share/doc/. That way on
 installation the package pulls in its depends and then vanishes. So no
 more need to uninstall after upgrading. This only works if the
 superseeding packages Provide the old one though. Otherwise depends on
 the old package would become unsatisfied.

 That's not correct. dpkg only disappears packages that have been
 completely replaced while installing other packages. There's two cases
 for this:

  1. The package to disappear has files that get completely replaced by
 the new one. Needs the Replaces field.
  2. The disappearing package contains empty directories, and all of
 them are shipped as well by the new package. Does not need
 Replaces field, because directory takeover is an implicit
 Replaces, so this is actually a subcase of 1.

 dpkg will never disappear a packages just because it's empty w/o the
 previous conditions. And just to clarify, in no case the Provides field
 plays any role in the disappearing process.

 regards,
 guillem

Ok, so one would need to have at least an empty directory (say /usr)
in the package for it to disapear? Why the distinction?

MfG
Goswin



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



Re: Transitional (dummy) packages considered silly

2009-09-28 Thread Goswin von Brederlow
Russ Allbery r...@debian.org writes:

 Goswin von Brederlow goswin-...@web.de writes:

 Dpkg has the ability to vanish empty packages. A dummy package should
 be completly empty and not even contain a /usr/share/doc/.

 Such a package is explicitly forbidden by Debian Policy.  You need to
 propose a Policy change if you want to do this.  I believe it was
 discussed some time past, and the general consensus was against doing
 this, but I could be misremembering.

Do you happen to know the chapter/section where that is said?

Note that 12.7 Changelog files does not require a
/usr/share/doc/changelog for native packages.

MfG
Goswin


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



Re: RC bug: symlinks in /etc

2009-09-28 Thread Goswin von Brederlow
Paul Wise p...@debian.org writes:

 Personally I'd prefer installing the package's patterns to
 /usr/share/l7-protocols. Patterns installed from source could go to
 /usr/local/share/l7-protocols. Patterns created by the sysadmin could
 be stored in /etc/l7-protocols/patterns.d (or similar) and the package
 shouldn't store any symlinks there. That might require getting some
 patches upstream though. The loading order would be /usr/share
 /usr/local /etc so that the sysadmin dirs override the package.

That only works if one never has to remove a pattern or if there is a
simple way to replace a pattern with a dummy.

Apart from that: +1.

Mfg
Goswin


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



Re: different .diff.gz for different platforms (armel) prohibiting upload

2009-09-28 Thread Goswin von Brederlow
Steffen Moeller steffen_moel...@gmx.de writes:

 Russ Allbery wrote:
 Raphael Hertzog hert...@debian.org writes:
 
 That said uploading missing binaries yourself is not the rigt way forward,
 official build daemons must be able to build it and you should work with
 buildd maintainers and porters to get your package built (and building).
 
 I thought that statement didn't apply to non-free packages?

 This is also my understanding, Raphael has probably missed the indication of
 the package being in non-free.

 As a sidenote, and to promote the summary on http://wiki.debian.org/buildd a
 bit, there is a non-free buildd network. This has taken perfect care of my
 non-free packages so far, but it seems defunct for mips and armel these days.

 Cheers,

 Steffen

Non-free has autobuilders on an opt-in basis. Where legally possible
maintainers should opt-in and not build packages themself.

MfG
Goswin


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



Re: zendframework package with or without bin package

2009-09-28 Thread Frank Habermann

Hi folks,

sorry for duplicate message.
I get the hint and a link:
http://lists.debian.org/debian-devel/2009/09/msg00812.html

So ignore this new duplicate thread.

regards,
Frank


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



Re: different .diff.gz for different platforms (armel) prohibiting upload

2009-09-28 Thread Rene Engelhard
Hi,

On Sun, Sep 27, 2009 at 10:59:51AM +0200, Raphael Hertzog wrote:
 That said uploading missing binaries yourself is not the rigt way forward,
 official build daemons must be able to build it and you should work with
 buildd maintainers and porters to get your package built (and building).

If they listened or cared about problems, and not just ignore them, yes...

Grüße/Regards,

Rene
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70


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



Re: GObject introspection mini-policy, take 2

2009-09-28 Thread Josselin Mouette
Le dimanche 27 septembre 2009 à 10:59 +0800, Paul Wise a écrit : 
 gir1.0-foo-2.0 /usr/lib/girepository-1.0/Foo-2.0.typelib
 
 Would this proposal need to be adjusted for multiarch support?

I’m not sure. It will be mostly used by interpreters, which themselves
don’t need support for multiarch with the current state of the proposal.

Cheers,
-- 
 .''`.  Josselin Mouette
: :' :
`. `'   “I recommend you to learn English in hope that you in
  `- future understand things”  -- Jörg Schilling


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


Copyright infringement on www.rossbeazley.co.uk

2009-09-28 Thread Ben Hutchings
The blog at http://www.rossbeazley.co.uk, which is hosted in your IP
space, is a copy of Planet Debian http://planet.debian.org, apparently
intended to gain keyword advertising revenue.

Planet Debian aggregates a large number of blogs, including mine
(http://womble.decadent.org.uk/blog - latest entry copied as
http://www.rossbeazley.co.uk/ben-hutchings-debian-kernel-team-at-linux-plumbers-conference/open-source/).
  Copyright in each of these blogs remains with their authors.  While Planet 
Debian has permission to copy each of them, the site owner (presumably Ross 
Beazley) does not.

Since there are no contact details for the site, I have no way of
directly demanding the site owner to cease this copyright infringement.
Therefore, please either pass on this demand or suspend hosting of
www.rossbeazley.co.uk until it is no longer infringing.

Ben.

-- 
Ben Hutchings
Any sufficiently advanced bug is indistinguishable from a feature.


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


Re: Copyright infringement on www.rossbeazley.co.uk

2009-09-28 Thread Obey Arthur Liu
There are like hundreds of these cloning scams. Maybe we could implement
some kind of watermarking to blacklist IPs that do the cloning ?

On Mon, Sep 28, 2009 at 1:14 PM, Ben Hutchings b...@decadent.org.uk wrote:

 The blog at http://www.rossbeazley.co.uk, which is hosted in your IP
 space, is a copy of Planet Debian http://planet.debian.org, apparently
 intended to gain keyword advertising revenue.

 Planet Debian aggregates a large number of blogs, including mine
 (http://womble.decadent.org.uk/blog - latest entry copied as

 http://www.rossbeazley.co.uk/ben-hutchings-debian-kernel-team-at-linux-plumbers-conference/open-source/).
  Copyright in each of these blogs remains with their authors.  While Planet
 Debian has permission to copy each of them, the site owner (presumably Ross
 Beazley) does not.

 Since there are no contact details for the site, I have no way of
 directly demanding the site owner to cease this copyright infringement.
 Therefore, please either pass on this demand or suspend hosting of
 www.rossbeazley.co.uk until it is no longer infringing.

 Ben.

 --
 Ben Hutchings
 Any sufficiently advanced bug is indistinguishable from a feature.



Re: Copyright infringement on www.rossbeazley.co.uk

2009-09-28 Thread Ben Hutchings
On Mon, 2009-09-28 at 04:14 -0700, Ben Hutchings wrote:
 The blog at http://www.rossbeazley.co.uk, which is hosted in your IP
 space, is a copy of Planet Debian http://planet.debian.org, apparently
 intended to gain keyword advertising revenue.
 
 Planet Debian aggregates a large number of blogs, including mine
 (http://womble.decadent.org.uk/blog - latest entry copied as
 http://www.rossbeazley.co.uk/ben-hutchings-debian-kernel-team-at-linux-plumbers-conference/open-source/).
   Copyright in each of these blogs remains with their authors.  While Planet 
 Debian has permission to copy each of them, the site owner (presumably Ross 
 Beazley) does not.
 
 Since there are no contact details for the site, I have no way of
 directly demanding the site owner to cease this copyright infringement.
 Therefore, please either pass on this demand or suspend hosting of
 www.rossbeazley.co.uk until it is no longer infringing.

I also encourage Planet Debian bloggers to submit a complaint at:

https://www.google.com/adsense/support/bin/request.py?contact_type=dmca_complaint

The DMCA per se isn't applicable here but this seems to be the most
appropriate form.

Ben.

-- 
Ben Hutchings
Any sufficiently advanced bug is indistinguishable from a feature.


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


Re: Copyright infringement on www.rossbeazley.co.uk

2009-09-28 Thread Paul Wise
On Mon, Sep 28, 2009 at 7:18 PM, Obey Arthur Liu art...@milliways.fr wrote:

 There are like hundreds of these cloning scams. Maybe we could implement
 some kind of watermarking to blacklist IPs that do the cloning ?

It would be trivial for them to work around that due to the OPML and FOAF feeds:

http://planet.debian.org/opml.xml
http://planet.debian.org/foafroll.xml

-- 
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



Bug#548719: ITP: bwa -- Burrows-Wheeler Aligner

2009-09-28 Thread Charles Plessy
Package: wnpp
Severity: wishlist
Owner: Charles Plessy ple...@debian.org

  Package name: bwa
  Version : 0.5.3
  Upstream Author : Heng Li and others, see: 
http://bio-bwa.sourceforge.net/bwa.shtml
  URL : http://bio-bwa.sourceforge.net
  License : GPL
  Programming Lang: C
  Description : Burrows-Wheeler Aligner

Since I tried it at work, I took the opportunity to package bwa, the
Burrows-Wheeler Aligner. Here are copies of the Debian control and
copyright files.

Have a nice day,

-- Charles Plessy, Debian Med packaging team, Tsurumi, Kanagawa, Japan.


Source: bwa
Section: science
Priority: optional
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
DM-Upload-Allowed: yes
Uploaders: Charles Plessy ple...@debian.org
Build-Depends: cdbs, debhelper (= 7), zlib1g-dev
Standards-Version: 3.8.3
Homepage: http://bio-bwa.sourceforge.net/ 
Vcs-Browser: 
http://svn.debian.org/wsvn/debian-med/trunk/packages/bwa/trunk/?rev=0sc=0
Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/bwa/trunk/

Package: bwa
Architecture: any
Depends: ${shlibs:Depends}, ${misc:Depends}
Suggests: samtools
Description: Burrows-Wheeler Aligner
 Burrows-Wheeler Aligner (BWA) is a program that aligns relatively short
 nucleotide sequences against a long reference sequence such as the human
 genome. It implements two algorithms, bwa-short and dBWT-SW. The former works
 for query sequences shorter than 200 bp and the latter for longer sequences up
 to around 100 kbp. Both algorithms do gapped alignment. They are usually more
 accurate and faster on queries with low error rates.

Name  :  Burrows-Wheeler Aligner
Contact   :  bio-bwa-h...@lists.sourceforge.net
Source:  http://downloads.sourceforge.net/project/bio-bwa/bwa-0.5.3.tar.bz2

Copyright :  © 2008 Genome Research Ltd (GRL)
 2008, by Heng Li l...@sanger.ac.uk
 © 2003-2006, 2008, 2009, by Heng Li lh3...@gmail.com
 © 2008, by Attractive Chaos attractivech...@aol.co.uk
 © 2008 Yuta Mori
License   :  MIT

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Software), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


Files :  bwt_gen/bwt_gen.*
Copyright :  © 2004, Wong Chi Kwong
License   :  GPL-2+
 
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


Files :  bwt_gen/QSufSort.*
Copyright :  1999, N. Jesper Larsson
License   :

 This software may be used freely for any purpose. However, when distributed,
 the original source must be clearly stated, and, when the source code is
 distributed, the copyright notice must be retained and any alterations in
 the code must be clearly marked. No warranty is given regarding the quality
 of this software.



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



Re: Copyright infringement on ww w.rossbeazley.co.uk — Overreacting?

2009-09-28 Thread Gunnar Wolf
Ben Hutchings dijo [Mon, Sep 28, 2009 at 04:14:45AM -0700]:
 The blog at http://www.rossbeazley.co.uk, which is hosted in your IP
 space, is a copy of Planet Debian http://planet.debian.org, apparently
 intended to gain keyword advertising revenue.
 (…)
 Since there are no contact details for the site, I have no way of
 directly demanding the site owner to cease this copyright infringement.
 Therefore, please either pass on this demand or suspend hosting of
 www.rossbeazley.co.uk until it is no longer infringing.

[ Ross Beazley's Cc: dropped ]

I won't contact him. In my case, although all of the content I blog is
redisitrbutable/reusable; my website says:

All the material found at this site is freely available, and you
can use it as you wish, except when the document mentions
explicitly different conditions. 

Now... I am surprised this is seen so harshly. This is not the first
site I see that syndicates Planet Debian. What I can understand is
that Beazley originally provided his own content (August and earlier
posts); he has no ads running on his site I could see (they might be
blocked on my browser FWIW) and does not seem to be claiming
authorship for any of our posts. Yes, he does commit the sin of not
directing to the original entries for comments, but to me it looks
more as a guy playing with his WordPress-based aggregator than anybody
with ill intent.

So, even though the complains _are_ formally right, I would rather not
come down with a harsh message at someone who is not really hurting
any of us except for failing to provide a link back. Even the place's
name is clearly personal!

Greetings,

-- 
Gunnar Wolf • gw...@gwolf.org • (+52-55)5623-0154 / 1451-2244


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



Bug#548720: ITP: libkml -- The C++ library for supporting OGC KML 2.2 standard

2009-09-28 Thread Francesco Paolo Lovergine
Package: wnpp
Severity: wishlist
Owner: Francesco Paolo Lovergine fran...@debian.org

* Package name: libkml
  Version : 1.0.1
  Upstream Author : Google Inc. opensou...@google.com
* URL : http://code.google.com/p/libkml/
* License : BSD
  Programming Lang: C++, Python and Java
  Description : The C++ library for supporting OGC KML 2.2 standard

  This is a Google's library for use with applications that want to
  parse, generate and operate on KML. It is an implementation of the OGC
  KML 2.2 standard. It is written in C++ and bindings are available 
  via SWIG to Java and Python. The library depends on boost 1.34.



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



Re: different .diff.gz for different platforms (armel) prohibiting upload

2009-09-28 Thread Holger Levsen
Hi,

On Montag, 28. September 2009, Rene Engelhard wrote:
  That said uploading missing binaries yourself is not the rigt way
  forward, official build daemons must be able to build it and you should
  work with buildd maintainers and porters to get your package built (and
  building).
 If they listened or cared about problems, and not just ignore them, yes...

Uhm, no.


regards,
Holger, looking forward to the day the archive will _only_ accept 
source-only
uploads (or throw away the binaries...)


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


Bug#548730: ITP: libtest-poe-client-tcp-perl -- POE Component providing TCP client services for test cases

2009-09-28 Thread Jonathan Yu
Package: wnpp
Owner: Jonathan Yu jaw...@cpan.org
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org,debian-p...@lists.debian.org

* Package name: libtest-poe-client-tcp-perl
  Version : 1.04
  Upstream Author : Chris Williams ch...@bingosnet.co.uk
* URL : http://search.cpan.org/dist/Test-POE-Client-TCP/
* License : Artistic | GPL-1+
  Programming Lang: Perl
  Description : POE Component providing TCP client services for test cases

 Test::POE::Client::TCP is a POE component that provides a TCP client framework
 for inclusion in client component test cases, instead of having to roll your
 own.
 .
 Once registered with the component, a session will receive events related to
 connections made, disconnects, flushed output and input from the specified
 server.



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



Re: different .diff.gz for different platforms (armel) prohibiting upload

2009-09-28 Thread Rene Engelhard
On Mon, Sep 28, 2009 at 09:48:00PM +0800, Holger Levsen wrote:
 Hi,
 
 On Montag, 28. September 2009, Rene Engelhard wrote:
   That said uploading missing binaries yourself is not the rigt way
   forward, official build daemons must be able to build it and you should
   work with buildd maintainers and porters to get your package built (and
   building).
  If they listened or cared about problems, and not just ignore them, yes...
 
 Uhm, no.

? What do you disagree with? I didn't say upload of random binaries should
be allowed..

I just said that there are buildd admins/porters who are hard to deal
with because they just don't care about build failures not caused by
the package to be built and neither with any package else but by
buildd/machine/arch issues.

 regards,
   Holger, looking forward to the day the archive will _only_ accept 
 source-only
   uploads (or throw away the binaries...)

At which time it'll get even more funny when buildds don't try to
build stuff - and yes, even security buildds. You really believe
a DSA is possible nowadays without uploading handbuilt binaries? Then
you haven't seen reality.

Grüße/Regards,

Rene
-- 
 .''`.  René Engelhard -- Debian GNU/Linux Developer
 : :' : http://www.debian.org | http://people.debian.org/~rene/
 `. `'  r...@debian.org | GnuPG-Key ID: D03E3E70
   `-   Fingerprint: E12D EA46 7506 70CF A960 801D 0AA0 4571 D03E 3E70


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



Re: /var/www is depracated, which directory to use?

2009-09-28 Thread Holger Levsen
Hi,

On Montag, 28. September 2009, Tollef Fog Heen wrote:
 I realise you've had good an constructive responses for webapps, so
 commenting on /srv in particular:

 As I read it, putting stuff there is absolutely not fine. 

Where do you read this? 

http://www.pathname.com/fhs/pub/fhs-2.3.html#FTN.AEN1192 explicitly 
says: This is particularly important as these areas will often contain both 
files initially installed by the distributor, and those added by the 
administrator. which to me very much sounds like the distributor (=Debian 
here) can place directories there...


regards,
Holger


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


Bug#548734: ITP: jruby1.3 -- 100% pure-Java implementation of Ruby

2009-09-28 Thread Sebastien Delafond
Package: wnpp
Severity: wishlist
Owner: Sebastien Delafond s...@debian.org

* Package name: jruby1.3
  Version : 1.3.1
  Upstream Author : The JRuby Team
* URL : http://jruby.codehaus.org/
* License : tri-license CPL/GPL/LGPL
  Programming Lang: Java
  Description : 100% pure-Java implementation of Ruby

JRuby is tightly integrated with Java to allow the embedding of the
interpreter into any Java application with full two-way access between
the Java and the Ruby code.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (501, 'testing'), (500, 'stable'), (499, 
'oldstable'), (1, 'experimental')
Architecture: i386 (i686)



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



Re: Copyright infringement on www.rossbea zley.co.uk — Overreacting?

2009-09-28 Thread Jonathan Carter (highvoltage)
Gunnar Wolf wrote:
 Now... I am surprised this is seen so harshly. This is not the first
 site I see that syndicates Planet Debian. What I can understand is

There's a big difference between aggregating posts and claiming that
their yours. The heading of the site says that the site is the blog, and
the posts link back to entries on the site (not the original author
sites). It gives the (wrong) impression that the entries were
specifically written for the site. If you scroll down all the way there
are Google ads at the bottom. He's clearly abusing the planet's content
for his own gain.

-Jonathan


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



Re: Copyright infringement on www.rossbeazley.co.uk — Overreacting?

2009-09-28 Thread Jonathan Yu
On Mon, Sep 28, 2009 at 8:53 AM, Jonathan Carter (highvoltage)
jonat...@ubuntu.com wrote:
 Gunnar Wolf wrote:
 Now... I am surprised this is seen so harshly. This is not the first
 site I see that syndicates Planet Debian. What I can understand is

 There's a big difference between aggregating posts and claiming that
 their yours. The heading of the site says that the site is the blog, and
 the posts link back to entries on the site (not the original author
 sites). It gives the (wrong) impression that the entries were
 specifically written for the site. If you scroll down all the way there
 are Google ads at the bottom. He's clearly abusing the planet's content
 for his own gain.
Perhaps we can solve this from the Planet Debian side by adding a link
to the original article in the bottom of either the posts or the RSS
feeds (wherever that web site is pulling the articles from). We could
also consider determining and blocking the IPs the person is pulling
from, though that will generally just lead to a cat-and-mouse type
situation

 -Jonathan


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




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



Re: Copyright infringement on www.rossbeazley.co.uk — Overreacting?

2009-09-28 Thread Obey Arthur Liu
On Mon, Sep 28, 2009 at 4:43 PM, Jonathan Yu jonathan.i...@gmail.com wrote:

 On Mon, Sep 28, 2009 at 8:53 AM, Jonathan Carter (highvoltage)
 jonat...@ubuntu.com wrote:
  Gunnar Wolf wrote:
  Now... I am surprised this is seen so harshly. This is not the first
  site I see that syndicates Planet Debian. What I can understand is
 
  There's a big difference between aggregating posts and claiming that
  their yours. The heading of the site says that the site is the blog, and
  the posts link back to entries on the site (not the original author
  sites). It gives the (wrong) impression that the entries were
  specifically written for the site. If you scroll down all the way there
  are Google ads at the bottom. He's clearly abusing the planet's content
  for his own gain.
 Perhaps we can solve this from the Planet Debian side by adding a link
 to the original article in the bottom of either the posts or the RSS
 feeds (wherever that web site is pulling the articles from). We could
 also consider determining and blocking the IPs the person is pulling
 from, though that will generally just lead to a cat-and-mouse type
 situation
 
  -Jonathan

And how is planet debian licensed anyway ? There is an implicit
licensing of the blog authors to the planet since aggregation is
voluntary but what about redistribution ? :D

Arthur


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



Processed: Re: Bug#548661: dpkg: Override package dependencies

2009-09-28 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 548661 general
Bug #548661 [dpkg] dpkg: Override package dependencies
Bug reassigned from package 'dpkg' to 'general'.
Bug No longer marked as found in versions dpkg/1.15.3.1.
 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Re: /var/www is depracated, which directory to use?

2009-09-28 Thread Gabor Gombas
On Mon, Sep 28, 2009 at 10:19:22PM +0800, Holger Levsen wrote:

  As I read it, putting stuff there is absolutely not fine. 
 
 Where do you read this? 
 
 http://www.pathname.com/fhs/pub/fhs-2.3.html#FTN.AEN1192 explicitly 
 says: This is particularly important as these areas will often contain both 
 files initially installed by the distributor, and those added by the 
 administrator. which to me very much sounds like the distributor (=Debian 
 here) can place directories there...

The problem is that people already put a lot of things under /srv and
therefore it is really hard to make sure you do not overwrite anything.
What do you do e.g. if the name of the directory you want to create
already exists as a file?

IMHO the only safe way to populate /srv is inside the Debian Installer
(and even then there can be issues when the user selects to mount a
pre-existing file system over /srv).

Gabor

-- 
 -
 MTA SZTAKI Computer and Automation Research Institute
Hungarian Academy of Sciences
 -


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



Re: Bug#548720: ITP: libkml -- The C++ library for supporting OGC KML 2.2 standard

2009-09-28 Thread Ben Pfaff
Francesco Paolo Lovergine fran...@debian.org writes:

   Description : The C++ library for supporting OGC KML 2.2 standard

   This is a Google's library for use with applications that want to
   parse, generate and operate on KML. It is an implementation of the OGC
   KML 2.2 standard. It is written in C++ and bindings are available 
   via SWIG to Java and Python. The library depends on boost 1.34.

It would be nice to mention what KML is.
-- 
To the engineer, the world is a toy box full of sub-optimized and
 feature-poor toys.
--Scott Adams


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



Re: Transitional (dummy) packages considered silly

2009-09-28 Thread Steve Langasek
On Mon, Sep 28, 2009 at 11:04:25AM +0200, Goswin von Brederlow wrote:
 Ok, so one would need to have at least an empty directory (say /usr)
 in the package for it to disapear? Why the distinction?

Because an empty package is valid (doesn't equivs create these?), and having
Replaces: take effect and disappear a completely empty package would make it
impossible to reinstall an empty package if some other package on the system
declared a Replaces: on it.

-- 
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: Transitional (dummy) packages considered silly

2009-09-28 Thread Russ Allbery
Emilio Pozuelo Monfort po...@debian.org writes:
 Goswin von Brederlow wrote:

 Do you happen to know the chapter/section where that is said?

 Note that 12.7 Changelog files does not require a
 /usr/share/doc/changelog for native packages.

 2.3. Copyright considerations
 -

  Every package must be accompanied by a verbatim copy of its copyright
  and distribution license in the file
  `/usr/share/doc/package/copyright' (see Section 12.5, `Copyright
  information' for further details).

Yup.  And since a package necessarily includes metadata, including a
package description, which is copyrightable material.

-- 
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



Re: different .diff.gz for different platforms (armel) prohibiting upload

2009-09-28 Thread Russ Allbery
Goswin von Brederlow goswin-...@web.de writes:
 Steffen Moeller steffen_moel...@gmx.de writes:

 As a sidenote, and to promote the summary on
 http://wiki.debian.org/buildd a bit, there is a non-free buildd
 network. This has taken perfect care of my non-free packages so far,
 but it seems defunct for mips and armel these days.

 Non-free has autobuilders on an opt-in basis. Where legally possible
 maintainers should opt-in and not build packages themself.

Yes, this thread is about a build for armel, for which see Steffen's
comment above.

-- 
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



Re: Copyright infringement on www.rossbeazley.co.uk — Overreacting?

2009-09-28 Thread Ben Hutchings
On Mon, 2009-09-28 at 07:34 -0500, Gunnar Wolf wrote:
 Ben Hutchings dijo [Mon, Sep 28, 2009 at 04:14:45AM -0700]:
  The blog at http://www.rossbeazley.co.uk, which is hosted in your IP
  space, is a copy of Planet Debian http://planet.debian.org, apparently
  intended to gain keyword advertising revenue.
  (…)
  Since there are no contact details for the site, I have no way of
  directly demanding the site owner to cease this copyright infringement.
  Therefore, please either pass on this demand or suspend hosting of
  www.rossbeazley.co.uk until it is no longer infringing.
 
 [ Ross Beazley's Cc: dropped ]

 I won't contact him. In my case, although all of the content I blog is
 redisitrbutable/reusable; my website says:
 
 All the material found at this site is freely available, and you
 can use it as you wish, except when the document mentions
 explicitly different conditions. 
 
 Now... I am surprised this is seen so harshly. This is not the first
 site I see that syndicates Planet Debian. What I can understand is
 that Beazley originally provided his own content (August and earlier
 posts);

The earliest entries (January 2008) are copied from
http://javaonthefly.blogspot.com/.  Later ones look like real entries
but most of them have little information other than a few keywords to
prime the ad selection.

 he has no ads running on his site I could see (they might be
 blocked on my browser FWIW)

It's using Google AdSense; you must have blocked that.

 and does not seem to be claiming
 authorship for any of our posts. Yes, he does commit the sin of not
 directing to the original entries for comments, but to me it looks
 more as a guy playing with his WordPress-based aggregator than anybody
 with ill intent.

No, it's someone trying to get keyword advertising revenue.

 So, even though the complains _are_ formally right, I would rather not
 come down with a harsh message at someone who is not really hurting
 any of us except for failing to provide a link back. Even the place's
 name is clearly personal!

It's strange that there's no information about the author on a
personal site.

Ben.

-- 
Ben Hutchings
Who are all these weirdos? - David Bowie, about L-Space IRC channel #afp


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


Re: Copyright infringement on www.rossbeazley.co.uk — Overreacting?

2009-09-28 Thread Tollef Fog Heen
]] Obey Arthur Liu 

| And how is planet debian licensed anyway ?

How is that relevant?  Assuming you did put your own blog there (or
asked it to be put there), you're ok with Planet Debian redistributing
your content.

| There is an implicit licensing of the blog authors to the planet since
| aggregation is voluntary but what about redistribution ? :D

Given there's no licence, that's a fairly clear breach of most copyright
laws I know of, at least.

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are


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



Re: /var/www is depracated, which directory to use?

2009-09-28 Thread Tollef Fog Heen
]] Holger Levsen 

| Hi,
| 
| On Montag, 28. September 2009, Tollef Fog Heen wrote:
|  I realise you've had good an constructive responses for webapps, so
|  commenting on /srv in particular:
| 
|  As I read it, putting stuff there is absolutely not fine. 
| 
| Where do you read this? 
| 
| http://www.pathname.com/fhs/pub/fhs-2.3.html#FTN.AEN1192

That's a footnote, and in most standards, footnotes are not
normative.

If they are, I think we have a few RC bugs to file for stuff living in
/sbin and /usr/sbin which should go in /bin or /usr/bin as appropriate.
(See http://www.pathname.com/fhs/pub/fhs-2.3.html#FTN.AEN1058).

-- 
Tollef Fog Heen
UNIX is user friendly, it's just picky about who its friends are


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



Re: Python2.6 in unstable?

2009-09-28 Thread Bastian Venthur
Stefano Zacchiroli schrieb:
 On Thu, Sep 03, 2009 at 04:32:10PM +0800, Paul Wise wrote:
 See the recent threads on debian-python, debian-devel and debian-release.
 
 Given that Bastian's post is the first time I've seen the question
 posed straight away for the -devel public, can you please summarize an
 answer for us?

Since I didn't receive an answer on my question I summarize what I
found. Python 2.6 will definitely not become the standard Python for
Squeeze. It is also very unlikely that it will enter unstable soon as
far as I understood due the way 2.6 handles site packages and the
resulting packaging issues.

Someone asked for a list of open issues so people can jump in and try to
help to solve the issues so 2.6 can at least be in Squeeze, but
apparently this list does not exist.

Python 2.6 is available in experimental, but not very useful so far
since most of the bindings are not built for 2.6.


Cheers,

Bastian


-- 
Bastian Venthur  http://venthur.de
Debian Developer venthur at debian org


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



Re: Python2.6 in unstable?

2009-09-28 Thread Sandro Tosi
On Mon, Sep 28, 2009 at 20:58, Bastian Venthur vent...@debian.org wrote:
 Someone asked for a list of open issues so people can jump in and try to
 help to solve the issues so 2.6 can at least be in Squeeze, but
 apparently this list does not exist.

you can start work on these (Joss filed this bugs some days ago):

http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=debian-pyt...@lists.debian.org;tag=python2.6

Regards,
-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi


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



Re: Python2.6 in unstable?

2009-09-28 Thread Luk Claes
Bastian Venthur wrote:
 Stefano Zacchiroli schrieb:
 On Thu, Sep 03, 2009 at 04:32:10PM +0800, Paul Wise wrote:
 See the recent threads on debian-python, debian-devel and debian-release.
 Given that Bastian's post is the first time I've seen the question
 posed straight away for the -devel public, can you please summarize an
 answer for us?
 
 Since I didn't receive an answer on my question I summarize what I
 found. Python 2.6 will definitely not become the standard Python for
 Squeeze. It is also very unlikely that it will enter unstable soon as
 far as I understood due the way 2.6 handles site packages and the
 resulting packaging issues.

Python 2.6 should become the standard Python for Squeeze.

 Someone asked for a list of open issues so people can jump in and try to
 help to solve the issues so 2.6 can at least be in Squeeze, but
 apparently this list does not exist.

AFAIK the process of filing and fixing bugs to be able to build with
python 2.6 is already happening.

Cheers

Luk


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



Re: Bug#548720: ITP: libkml -- The C++ library for supporting OGC KML 2.2 standard

2009-09-28 Thread Francesco P. Lovergine
On Mon, Sep 28, 2009 at 09:36:58AM -0700, Ben Pfaff wrote:
 
 It would be nice to mention what KML is.

KML is standard for vector geo-data representation, also used in common
applications like Google Maps and Earth.

-- 
Francesco P. Lovergine


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



Re: Python2.6 in unstable?

2009-09-28 Thread Bernd Zeimetz
Luk Claes wrote:
 Bastian Venthur wrote:
 Stefano Zacchiroli schrieb:
 On Thu, Sep 03, 2009 at 04:32:10PM +0800, Paul Wise wrote:
 See the recent threads on debian-python, debian-devel and debian-release.
 Given that Bastian's post is the first time I've seen the question
 posed straight away for the -devel public, can you please summarize an
 answer for us?
 Since I didn't receive an answer on my question I summarize what I
 found. Python 2.6 will definitely not become the standard Python for
 Squeeze. It is also very unlikely that it will enter unstable soon as
 far as I understood due the way 2.6 handles site packages and the
 resulting packaging issues.
 
 Python 2.6 should become the standard Python for Squeeze.

Ack.


-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprints: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79
   ECA1 E3F2 8E11 2432 D485 DD95 EB36 171A 6FF9 435F


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



Re: cupt, the APT competitor

2009-09-28 Thread Free Ekanayaka
Hi,

|--== On Tue, 22 Sep 2009 12:52:14 +0300, Eugene V. Lyubimkin 
jac...@debian.org said:

  EVL This mail is to inform that Debian APT suite now has a competitor named 
Cupt [1].

For the ones who don't know it, I'd like to point out that there is at
least one other competitor/companion/replacement of APT:

http://labix.org/smart

Smart has been developed since several years now and it is in
Debian. The code base is rather stable and actively maintained, and
beside dpkg it has supports for other packaging backends like rpm and
slack. It has a GUI too.

Ciao!

Free


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



Re: Copyright infringement on www.rossbeazley.co.uk — Overreacting?

2009-09-28 Thread Russ Allbery
Obey Arthur Liu art...@milliways.fr writes:

 And how is planet debian licensed anyway ? There is an implicit
 licensing of the blog authors to the planet since aggregation is
 voluntary but what about redistribution ? :D

Personally, my journal posts are intentionally not released under any
license whatsoever.  That means, as far as I'm concerned, that people need
to follow usual and customary implicit licensing rules and fair use rules
which, given that I provide an RSS feed, would allow aggregation.
(Similar to how posting something to Usenet grants an implicit license to
distribute the post throughout Usenet given that it's how the medium
works.)

If they do something unusual with my blog entries, such as create
derivative works, modify the entries, or obscure the authorship, without
obtaining an implicit license and outside the realms of fair use, I
reserve the right to sue them, and there are no statements anywhere in my
blog that waive any of those rights.

This is intentional on my part.  Those things on my web site that are
intended to be released under a free license are explicitly marked as
such, but my personal blog is not something I feel comfortable doing that
with in general.

-- 
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



Orphaning my packages...

2009-09-28 Thread Kevin B. McCarty
Hi all,

I unfortunately don't have the free time at the moment to do much for
the Debian Project, so I'm orphaning my packages.

If anyone wants to stake a claim to any of the following, please go
ahead and say so, otherwise I'll file the orphaning bugs within a couple
days.  (Follow-ups set to debian-devel.)

Cernlib-related (Cernlib is a huge, mostly obsolete set of physics
libraries and tools) packages.  These all have corresponding wnpp ITO
bugs that can be changed to ITA / closed as desired.  Note, Francois
Niedercorn (in CC) has first dibs on these if he wants them.  Francois,
if you still do, please reply to debian-devel.

cernlib - #508413
cfortran - #508500
geant321 - #508496
mclibs - #508498
mn-fit - #508501
paw - #508495

Other packages:

feynmf
viewglob


best regards,

-- 
Kevin B. McCarty kmcca...@gmail.com
WWW: http://www.starplot.org/
WWW: http://people.debian.org/~kmccarty/
GPG: public key ID 4F83C751



signature.asc
Description: OpenPGP digital signature


DEB_MAINTAINER_MODE=1 versus DEB_BUILD_OPTIONS=network.

2009-09-28 Thread Charles Plessy
Le Sun, Sep 27, 2009 at 10:20:40AM -0500, Raphael Geissert a écrit :
 
 Why not reuse the current env var used for that kind of things?
 DEBIAN_BUILD_OPT. 'netavail' or something like that could be used to tell
 the rules file that it is ok to try to do anything that requires an
 interface.

Le Sun, Sep 27, 2009 at 03:49:06PM +, Philipp Kern a écrit :
 
 Although the goal to enable more tests is laudable the approach of modifying
 a maintainer build that is later uploaded to the archive from a buildd build
 doesn't sound right.  Maybe the build could then fail in the end through
 dpkg-buildpackage so that the result cannot be uploaded?

Hi all,

in my first experimentations I used DEB_BUILD_OPTIONS, but this leads to the
possibility of clashing with flag names that can be reserved later with a
different behaviour. On the other hand, if there are enough packages made using
the same convention, then we may set the standard by our usage. Would there be
other maintainers interested in using a 'network' flag for DEB_BUILD_OPTIONS?

Of course, neither the use of DEB_MAINTAINER_MODE nor DEB_BUILD_OPTIONS should
result in source packages that are different from standard builds with no
options. In the case I presented here, the goal is to help the maintainer to
make tests that are not possible on our build network.

Have a nice day,

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


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



Re: DEB_MAINTAINER_MODE=1 versus DEB_BUILD_OPTIONS=network.

2009-09-28 Thread Paul Wise
On Tue, Sep 29, 2009 at 9:37 AM, Charles Plessy ple...@debian.org wrote:

 in my first experimentations I used DEB_BUILD_OPTIONS, but this leads to the
 possibility of clashing with flag names that can be reserved later with a
 different behaviour. On the other hand, if there are enough packages made 
 using
 the same convention, then we may set the standard by our usage. Would there be
 other maintainers interested in using a 'network' flag for DEB_BUILD_OPTIONS?

Just use something like DEB_BUILD_OPTIONS=x-check-network until there
is an option for this enshrined in policy.

-- 
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



Policy §10.4 as a diver gence from usptrea m (renamings to remove extensions like .pl and .sh).

2009-09-28 Thread Charles Plessy
Dear all,

I know that there has already been much of talk about this, but I am am getting
more and more uncomfortable removing .pl or .sh extensions from programs when
upstream does not.

I use the packages I made, and renaming upstream programs names makes my scripts
incompatible with my colleagues work environments using other distributions or
installations from source. So as a maintainer, I spend time creating extra work
for myself as a user. That does not make sense.

Would it be possible to change our Policy and simply follow upstream choices?
Good arguments can be given for not including extension in program names
upstream, but in my opinion removing them before upstream creates more
problems than it solves…

Have a nice day,

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


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



Re: Policy §10.4 as a divergence from usptream (ren amings to remove extensions like .pl and .sh).

2009-09-28 Thread Paul Wise
On Tue, Sep 29, 2009 at 12:36 PM, Charles Plessy ple...@debian.org wrote:

 I know that there has already been much of talk about this, but I am am 
 getting
 more and more uncomfortable removing .pl or .sh extensions from programs when
 upstream does not.

So get upstream to change their filenames before packaging them for Debian.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: Policy §10.4 as a divergence from usptream (ren amings to remove extensions like .pl and .sh).

2009-09-28 Thread Paul Wise
On Tue, Sep 29, 2009 at 1:09 PM, Reinhard Tartler siret...@debian.org wrote:

 Would you consider this a blocker to inclusion into Debian? Upstream may
 either release very slowly or may just not care about Debian, which
 would result in the package to never end up in Debian.

I'd consider not fixing it in the .deb (irrespective of what upstream
does) as a blocker.

Having an uncooperative upstream would likely make me think twice
about putting it in Debian in the first place.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: Policy §10.4 as a divergence from usptream (ren amings to remove extensions like .pl and .sh).

2009-09-28 Thread Paul Wise
On Tue, Sep 29, 2009 at 1:21 PM, Paul Wise p...@debian.org wrote:

 Having an uncooperative upstream would likely make me think twice
 about putting it in Debian in the first place.

Or regret having already done so (gravitation, passage, primrose etc).

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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



Re: Policy §10.4 as a divergence from usptream (renamings to remove extensions like .pl and .sh).

2009-09-28 Thread Ben Finney
Reinhard Tartler siret...@debian.org writes:

 Paul Wise p...@debian.org writes:
  So get upstream to change their filenames before packaging them for
  Debian.

 Would you consider this a blocker to inclusion into Debian? Upstream
 may either release very slowly or may just not care about Debian,
 which would result in the package to never end up in Debian.

That doesn't prevent the maintainer from modifying the work to conform
with Policy though, so upstream's recalcitrance wouldn't be a blocker.

If upstream is actively *obstructing* the compliance with Debian policy
(by being hostile to the changes, or being unresponsive to change
requests) should be a factor in considering whether to maintain the
package at all; but that's a judgement the maintainer should make based
on their own frustration thresholds and available time.

-- 
 \  “[Entrenched media corporations will] maintain the status quo, |
  `\   or die trying. Either is better than actually WORKING for a |
_o__)  living.” —ringsnake.livejournal.com, 2007-11-12 |
Ben Finney


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



Accepted calamaris 2.99.4.0-9.1 (source all)

2009-09-28 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 21 Sep 2009 07:32:24 +0200
Source: calamaris
Binary: calamaris
Architecture: source all
Version: 2.99.4.0-9.1
Distribution: unstable
Urgency: low
Maintainer: Philipp Frauenfelder pfrau...@debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 calamaris  - log analyzer for Squid or Oops proxy log files
Closes: 503743 508878 547312
Changes: 
 calamaris (2.99.4.0-9.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix pending l10n issues. Debconf translations:
 - Dutch (Paul Gevers).  Closes: #503743
 - Spanish (Francisco Javier Cuadrado).  Closes: #508878
 - Japanese (Hideki Yamane (Debian-JP)).  Closes: #547312
Checksums-Sha1: 
 5cfb6098a52816916039459536d966ece8838f64 1071 calamaris_2.99.4.0-9.1.dsc
 b1ca23db47eaa9b5fc46d93c17d4ead33e1b6775 35027 calamaris_2.99.4.0-9.1.diff.gz
 fb1fb9ed8d3ccbbcbc011b84907f9612051e14f3 124110 calamaris_2.99.4.0-9.1_all.deb
Checksums-Sha256: 
 f5f1f61f88140fe2f918192c146ad647ab9c804ab6184e0a30899b2caac494d0 1071 
calamaris_2.99.4.0-9.1.dsc
 06e3721445c1a76fb50c5e7165be7e829b233b041a9652d18ea7facee279d003 35027 
calamaris_2.99.4.0-9.1.diff.gz
 6094194763b342fbbb073b23218fd69ce4e3648ea0948fe5470bbc12c8a51fa0 124110 
calamaris_2.99.4.0-9.1_all.deb
Files: 
 283ae5733ef7e36c3b6c41e49eea90c1 1071 utils optional calamaris_2.99.4.0-9.1.dsc
 0bf5a63ca017a1924ed0deb12d93fb2a 35027 utils optional 
calamaris_2.99.4.0-9.1.diff.gz
 39f0c4ed820128958e764770f6e1cb80 124110 utils optional 
calamaris_2.99.4.0-9.1_all.deb

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

iD8DBQFKtxG31OXtrMAUPS0RAuyCAJ9/+QvgMSP6fFFyikf7RJwMwEnQhQCeMGQJ
pMynkEseh68kwzuQ604XsH0=
=COQs
-END PGP SIGNATURE-


Accepted:
calamaris_2.99.4.0-9.1.diff.gz
  to pool/main/c/calamaris/calamaris_2.99.4.0-9.1.diff.gz
calamaris_2.99.4.0-9.1.dsc
  to pool/main/c/calamaris/calamaris_2.99.4.0-9.1.dsc
calamaris_2.99.4.0-9.1_all.deb
  to pool/main/c/calamaris/calamaris_2.99.4.0-9.1_all.deb


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



Accepted console-cyrillic 0.9-15.3 (source all)

2009-09-28 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 21 Sep 2009 07:31:25 +0200
Source: console-cyrillic
Binary: console-cyrillic
Architecture: source all
Version: 0.9-15.3
Distribution: unstable
Urgency: low
Maintainer: Anton Zinoviev zinov...@debian.org
Changed-By: Christian Perrier bubu...@debian.org
Description: 
 console-cyrillic - Better Cyrillic support for Linux console
Closes: 524830 525474
Changes: 
 console-cyrillic (0.9-15.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix pending l10n issues. Debconf translations:
 - Spanish (César Gómez Martín).  Closes: #524830
 - Italian (Luca Monducci).  Closes: #525474
Checksums-Sha1: 
 4e94be9c380660eadaf792de6347b55ef9d55283 1074 console-cyrillic_0.9-15.3.dsc
 ce8f5f640e22baccee814e0bcb31e996e56be297 155530 
console-cyrillic_0.9-15.3.diff.gz
 b808b2d5eceb1080a9981f8fe9fe2bc6e2a1151d 292746 
console-cyrillic_0.9-15.3_all.deb
Checksums-Sha256: 
 1ed1836b90822f94a9280268faeb46ec7a8ae8a1ea2b253926400fe8166f2b06 1074 
console-cyrillic_0.9-15.3.dsc
 ce1982ac642b4b6c79d98d537b0d41446417e179fadbc3e334b0a378524c8468 155530 
console-cyrillic_0.9-15.3.diff.gz
 bbe7bdd07e2cfe560e438d9270a8f3e1cdc71cabc220c3c2d6eeff4f6f6f0e2c 292746 
console-cyrillic_0.9-15.3_all.deb
Files: 
 bbc7e416527900749e188e3b1e937d62 1074 misc optional 
console-cyrillic_0.9-15.3.dsc
 c315538b1730f532078cc1fcf84c9892 155530 misc optional 
console-cyrillic_0.9-15.3.diff.gz
 07bb00c55acaf472c805b7cb9b0aa3e3 292746 misc optional 
console-cyrillic_0.9-15.3_all.deb

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

iD8DBQFKtxGV1OXtrMAUPS0RAuNFAJ9QA74eVF6+olyliSMQBV6h9M1qbACeKPZi
XfFCCO/eCNgnYacG7R2CxCE=
=FkiV
-END PGP SIGNATURE-


Accepted:
console-cyrillic_0.9-15.3.diff.gz
  to pool/main/c/console-cyrillic/console-cyrillic_0.9-15.3.diff.gz
console-cyrillic_0.9-15.3.dsc
  to pool/main/c/console-cyrillic/console-cyrillic_0.9-15.3.dsc
console-cyrillic_0.9-15.3_all.deb
  to pool/main/c/console-cyrillic/console-cyrillic_0.9-15.3_all.deb


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



Accepted xorg-server 2:1.6.4-1 (source all i386)

2009-09-28 Thread Brice Goglin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 07:23:07 +0200
Source: xorg-server
Binary: xserver-xorg-core xserver-xorg-dev xdmx xdmx-tools xnest xvfb 
xserver-xephyr xserver-xfbdev xserver-xorg-core-dbg xserver-common
Architecture: source all i386
Version: 2:1.6.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Brice Goglin bgog...@debian.org
Description: 
 xdmx   - distributed multihead X server
 xdmx-tools - Distributed Multihead X tools
 xnest  - Nested X server
 xserver-common - common files used by various X servers
 xserver-xephyr - nested X server
 xserver-xfbdev - Linux framebuffer device tiny X server
 xserver-xorg-core - Xorg X server - core server
 xserver-xorg-core-dbg - Xorg - the X.Org X server (debugging symbols)
 xserver-xorg-dev - Xorg X server - development files
 xvfb   - Virtual Framebuffer 'fake' X server
Closes: 548606
Changes: 
 xorg-server (2:1.6.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Update 20_hurd-i386.diff, thanks Samuel Thibault, closes: #548606.
   * Drop render-return-the-supported-version.patch, applied upstream.
Checksums-Sha1: 
 c99cefac5ab08e233d9a2e4c08420f14b56caf02 3146 xorg-server_1.6.4-1.dsc
 b2c036d8b2ea59c21e91e3910981048b40112c61 6173072 xorg-server_1.6.4.orig.tar.gz
 3ce3ffcd5947a4b4f2ab4ead46f7a17546699709 82459 xorg-server_1.6.4-1.diff.gz
 67855d90699a22396b6292e3d6f94623bf160cad 51532 xserver-common_1.6.4-1_all.deb
 4d435a0ba9c38108c4167baad3b30d9b22f7b6e2 2179582 
xserver-xorg-core_1.6.4-1_i386.deb
 e3cd66aeacdd4442070a318771a708c500bcdce4 993444 
xserver-xorg-dev_1.6.4-1_i386.deb
 3f641bc802dd1ff45316f0b7464fb05b2667b12c 1491520 xdmx_1.6.4-1_i386.deb
 f0b1a410f839019c0daa21288ef90288ee1be019 810742 xdmx-tools_1.6.4-1_i386.deb
 527e4d6d7fa2370069ee81dec4af741a81b9d36f 1400172 xnest_1.6.4-1_i386.deb
 c51ea600e93f69d9e0adb016913821eaf68f2d1d 1508982 xvfb_1.6.4-1_i386.deb
 8da545d89e2dc0d39bc02abf34f4bf03b85e5022 1581978 
xserver-xephyr_1.6.4-1_i386.deb
 22140e9abfd576994512469d1251399a8d6549bd 1533842 
xserver-xfbdev_1.6.4-1_i386.deb
 e80e23acbd0418612657d1033bd34e36f760238a 6138508 
xserver-xorg-core-dbg_1.6.4-1_i386.deb
Checksums-Sha256: 
 d4815b31303500a3eaf2a5dc7e427724f1f1860610a1830b626aecb514d9df72 3146 
xorg-server_1.6.4-1.dsc
 3542f9d66ffdd873a4bd24d7446647c54bfd2a57f98a58a2ef793219d1404f51 6173072 
xorg-server_1.6.4.orig.tar.gz
 84ef74eb3ac723bf023a12018154788db19a670b19bf1f216c766d0e17fcaac9 82459 
xorg-server_1.6.4-1.diff.gz
 1c4d6009cf6ff76598a7d8211384e00f5239562df81842566dce328a18a76355 51532 
xserver-common_1.6.4-1_all.deb
 50bfb45288e8b606be4d0fe172ea68a191dbc67a7095c31d6094388512acf5ba 2179582 
xserver-xorg-core_1.6.4-1_i386.deb
 eb32afc0409247f8a313731ee90cf6cad6206b9f10859eda9dd83bcaee567508 993444 
xserver-xorg-dev_1.6.4-1_i386.deb
 6606f19a5fd339262c0a4624c683a9479853c829414988c9718d84b2a211cc12 1491520 
xdmx_1.6.4-1_i386.deb
 9a9d66264b71abca64826b0489260011a03d5584fe649c98b1816a981b5df491 810742 
xdmx-tools_1.6.4-1_i386.deb
 c53e532fbf50487656bf2ceb23d186e4296cb38f61e48738fe276d5e3d7bd6fc 1400172 
xnest_1.6.4-1_i386.deb
 9531796ae2c157aa8cd0f0e96f6da4234cd7dc36f777bb6d75978974676648c7 1508982 
xvfb_1.6.4-1_i386.deb
 fc1b2de694820f39bd505f84fc116d1832c4a74ad3dd79ffa5c8a344e047c2db 1581978 
xserver-xephyr_1.6.4-1_i386.deb
 ece63b3d5e7a8b426e21f667804ba2d9a52742c6c9ee655701d6045f30598ff6 1533842 
xserver-xfbdev_1.6.4-1_i386.deb
 a1660d6c755ba6e8d21b5168462172d5f2e56587c9dfda7ce30cb537b41ece44 6138508 
xserver-xorg-core-dbg_1.6.4-1_i386.deb
Files: 
 65a378b001c698eb61d3293c4385b562 3146 x11 optional xorg-server_1.6.4-1.dsc
 b03a1c9712eb316c9d6811f944f0743a 6173072 x11 optional 
xorg-server_1.6.4.orig.tar.gz
 fabb5718969666ca4b7f5f60ef1aeaaa 82459 x11 optional xorg-server_1.6.4-1.diff.gz
 07f3c1e7ffbbe230cd25fee5e18d809c 51532 x11 optional 
xserver-common_1.6.4-1_all.deb
 e3c70407a7776a70c7b8f532e19ae092 2179582 x11 optional 
xserver-xorg-core_1.6.4-1_i386.deb
 6a5ddc88d39794837f5aa8922fec0f35 993444 x11 optional 
xserver-xorg-dev_1.6.4-1_i386.deb
 f76311d3c35f8da168ecde3f7a419cac 1491520 x11 optional xdmx_1.6.4-1_i386.deb
 d76b1e43615f533bc59c2d6f1832cd48 810742 x11 optional 
xdmx-tools_1.6.4-1_i386.deb
 050c6a129cb358855d5ea0599af56df4 1400172 x11 optional xnest_1.6.4-1_i386.deb
 3a3b7ebddeda44f529732441a3b9bdbd 1508982 x11 optional xvfb_1.6.4-1_i386.deb
 fda01511c527496c1600827e2ab84eb8 1581978 x11 optional 
xserver-xephyr_1.6.4-1_i386.deb
 b24b68b8272b6958cdd96a15fa711128 1533842 x11 optional 
xserver-xfbdev_1.6.4-1_i386.deb
 2a728c6d2d3df876c78bfd9f0138756d 6138508 debug extra 
xserver-xorg-core-dbg_1.6.4-1_i386.deb

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

iEYEARECAAYFAkrATBkACgkQRh88F8PcWfo5xwCg58hz/ZYFcRPxcJWPnx8Em+IP
gmgAn0S6QUgCYxRNfkV08VObPMbtSDM6
=jsWG
-END PGP SIGNATURE-


Accepted:
xdmx-tools_1.6.4-1_i386.deb
  to pool/main/x/xorg-server/xdmx-tools_1.6.4-1_i386.deb

Accepted media-player-info 3-2 (source all)

2009-09-28 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 08:25:11 +0200
Source: media-player-info
Binary: media-player-info
Architecture: source all
Version: 3-2
Distribution: unstable
Urgency: low
Maintainer: Martin Pitt mp...@debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 media-player-info - Media player identification files
Changes: 
 media-player-info (3-2) unstable; urgency=low
 .
   * Now that we finally have a recent udev in unstable, remove build hacks
 from configure and debian/rules, build-depend on recent udev, and use its
 pkg-config file properly.
   * Upload to unstable.
Checksums-Sha1: 
 53534dae662d763f1ba02951dc4392b193ede309 1078 media-player-info_3-2.dsc
 2fecf1eef77e1120a339cbd562a3dcb3020643ab 1882 media-player-info_3-2.diff.gz
 1acc0e089f97bfb4373217cb2be609122bf1424d 16332 media-player-info_3-2_all.deb
Checksums-Sha256: 
 8acb501ca65746d638f17cab96a076ff32f883bea8f972f7266998a72d4fdc7d 1078 
media-player-info_3-2.dsc
 97a82dfdc20dea0ca8ea5dfbb66ebbe47b7ed445ba58d04d4169576e24c8742d 1882 
media-player-info_3-2.diff.gz
 bb05663da101453c033437d6a65cfd5e88d55e6d1a6c8222e6318fa329ec4607 16332 
media-player-info_3-2_all.deb
Files: 
 4b9f02e3d1f12598ac0ec6f944095bbc 1078 admin optional media-player-info_3-2.dsc
 2126e207c667cc636947ee3e366055db 1882 admin optional 
media-player-info_3-2.diff.gz
 df1abd98db71364b9b9448ac7e52369f 16332 admin optional 
media-player-info_3-2_all.deb

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

iEYEARECAAYFAkrAV3YACgkQDecnbV4Fd/JCBQCgw2Y1SdswlDe1SzXVLiPSPmPH
BRgAoIFFrycaZjP2wXwSANXqlmJCeNh5
=3xlk
-END PGP SIGNATURE-


Accepted:
media-player-info_3-2.diff.gz
  to pool/main/m/media-player-info/media-player-info_3-2.diff.gz
media-player-info_3-2.dsc
  to pool/main/m/media-player-info/media-player-info_3-2.dsc
media-player-info_3-2_all.deb
  to pool/main/m/media-player-info/media-player-info_3-2_all.deb


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



Accepted xulrunner 1.9.1.3-2 (source all amd64)

2009-09-28 Thread Mike Hommey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 16 Sep 2009 17:54:36 +0200
Source: xulrunner
Binary: xulrunner-1.9.1 xulrunner-1.9.1-gnome-support libmozjs2d libmozjs-dev 
libmozjs2d-dbg spidermonkey-bin xulrunner-dev xulrunner-1.9.1-dbg 
libmozillainterfaces-java python-xpcom
Architecture: source all amd64
Version: 1.9.1.3-2
Distribution: experimental
Urgency: low
Maintainer: Maintainers of Mozilla-related packages 
pkg-mozilla-maintain...@lists.alioth.debian.org
Changed-By: Mike Hommey gland...@debian.org
Description: 
 libmozillainterfaces-java - XPCOM bindings for Java
 libmozjs-dev - Development files for the Mozilla SpiderMonkey JavaScript 
library
 libmozjs2d - The Mozilla SpiderMonkey JavaScript library
 libmozjs2d-dbg - Development files for the Mozilla SpiderMonkey JavaScript 
library
 python-xpcom - XPCOM bindings for Python
 spidermonkey-bin - standalone JavaScript/ECMAScript (ECMA-262) interpreter
 xulrunner-1.9.1 - XUL + XPCOM application runner
 xulrunner-1.9.1-dbg - Development files for the Gecko engine library
 xulrunner-1.9.1-gnome-support - Support for GNOME in xulrunner applications
 xulrunner-dev - Development files for the Gecko engine library
Closes: 526305 537628 540784 546770 547269
Changes: 
 xulrunner (1.9.1.3-2) experimental; urgency=low
 .
   * debian/xulrunner-dev.install, debian/rules, debian/dh/*: Add a
 dh_xulrunner (deb)helper and a xulrunner dh sequence to add the
 proper xulrunner dependency to shlibs:Depends.
   * debian/xulrunner-1.9.1.install: Install the update.locale file.
 Closes: #540784.
   * debian/control, debian/rules: Build against default-jdk, but keep
 support for java-gcj-compat-dev. Closes: #526305.
   * debian/control: xulrunner-1.9.1-dbg conflicts with xulrunner-1.9-dbg.
 Closes: #537628.
   * js/src/Makefile.in: Properly build twice in a row (picked from upstream
 mercurial repo). Closes: #546770.
   * Don't build oss and wireless geoloc support on *bsd and hurd.
 Thanks Petr Salinger. Closes: #547269.
Checksums-Sha1: 
 0a19bc77cc666bf96812d38ab104acf61e1efd9f 2032 xulrunner_1.9.1.3-2.dsc
 dc1c0ffd59c4fbe04cf268acdd00cd9a2f63a556 136719 xulrunner_1.9.1.3-2.diff.gz
 0fd64c326aa85b4f2a339464455eae1fc363326e 1541870 
libmozillainterfaces-java_1.9.1.3-2_all.deb
 7de2cc12cf27eea7dcb7ca7bf89ab635327d4bd7 8388398 
xulrunner-1.9.1_1.9.1.3-2_amd64.deb
 8b8008728dd766413768976f5bc31e575d16fdbe 108488 
xulrunner-1.9.1-gnome-support_1.9.1.3-2_amd64.deb
 567f2f74aa26ce127f649891cdaf15bd66a4e136 409356 libmozjs2d_1.9.1.3-2_amd64.deb
 68c284ca29ab7fbdc64e20a9ab5091811b4c837f 257378 
libmozjs-dev_1.9.1.3-2_amd64.deb
 7648e4761bbbebea3f1ced7fa2da82c0f0a92a5c 1042868 
libmozjs2d-dbg_1.9.1.3-2_amd64.deb
 a4fc8275836657d218dac8cf59e2e3604ab4f679 77792 
spidermonkey-bin_1.9.1.3-2_amd64.deb
 d82379fcc3a87c7a503d3fd6550ce08ba8f06c21 3533358 
xulrunner-dev_1.9.1.3-2_amd64.deb
 f7c9f1ccb3bd6873b1b9091eddbc25512969660e 55991796 
xulrunner-1.9.1-dbg_1.9.1.3-2_amd64.deb
 6951d7a44f58fcab4d43161a3aea1511389a3ed9 159770 
python-xpcom_1.9.1.3-2_amd64.deb
Checksums-Sha256: 
 3ff28cf781bcecd2b222fe4bdf9030fcad2f473ebfee8b60b956126ae4b6d4c7 2032 
xulrunner_1.9.1.3-2.dsc
 e745f05ddffe866d2cd5b0c5031cb0e63fa24626eca3da7a313753a37f435a1e 136719 
xulrunner_1.9.1.3-2.diff.gz
 d814689f4a26b72235470849e35b22deea46c98bf2fa4194e62cf40963baeb09 1541870 
libmozillainterfaces-java_1.9.1.3-2_all.deb
 a699eb6683c082917aba34aed757da1b0ae7b46cb5292ecc9ed7e26d43cf42b3 8388398 
xulrunner-1.9.1_1.9.1.3-2_amd64.deb
 4c2c8e1d5d77232e080592ead1955cb1fb84d0b32b333505a2d2eea7ded35e82 108488 
xulrunner-1.9.1-gnome-support_1.9.1.3-2_amd64.deb
 c68d4fda7f29195199777e43fa431d6718fc6d24355a4bc1caf59613e6a0bd4f 409356 
libmozjs2d_1.9.1.3-2_amd64.deb
 f47f31f4b5c11c4ab0ee1b51897347a9f1793cf5008813dcacabd1310bdaeb87 257378 
libmozjs-dev_1.9.1.3-2_amd64.deb
 28f156ee044f0fc619ed1cfabfd52dd1f184d98e9765cfcfadc2771481a38f20 1042868 
libmozjs2d-dbg_1.9.1.3-2_amd64.deb
 e974d430862ce172d20096c8d85f85e54d7d1dda8c8aecd8a0ecf23cfb94e4ea 77792 
spidermonkey-bin_1.9.1.3-2_amd64.deb
 48b84826873ff3b6bca31d14d33577d41b1b5f582b2d858807e3d61394b82c7f 3533358 
xulrunner-dev_1.9.1.3-2_amd64.deb
 8f9d2e4151d69f52a2f86d3cb6d412dd75f3fba703a4ef3ee27790a2e71ec2cc 55991796 
xulrunner-1.9.1-dbg_1.9.1.3-2_amd64.deb
 30d5bd7734397b9d80183d246ac5119a6d7bb9da2e7f04a341d3276d3b1fd144 159770 
python-xpcom_1.9.1.3-2_amd64.deb
Files: 
 89e0b626a32df54d484d032b00f72362 2032 devel optional xulrunner_1.9.1.3-2.dsc
 8e2344bb664fa2fb5260cfe1e668c1b0 136719 devel optional 
xulrunner_1.9.1.3-2.diff.gz
 04ef60ddfddc509dc964b689c026108f 1541870 java extra 
libmozillainterfaces-java_1.9.1.3-2_all.deb
 1265397d17019298dff5185b8d34280b 8388398 devel optional 
xulrunner-1.9.1_1.9.1.3-2_amd64.deb
 08df4d07b8c33fc7910372da2bfeee2c 108488 devel optional 
xulrunner-1.9.1-gnome-support_1.9.1.3-2_amd64.deb
 12ff3360281add3ad25cbfc64f3d7eb9 409356 libs optional 
libmozjs2d_1.9.1.3-2_amd64.deb
 

Accepted nted 1.8.1-1 (source all i386)

2009-09-28 Thread Gilles Filippini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 28 Sep 2009 09:25:10 +0200
Source: nted
Binary: nted nted-doc
Architecture: source all i386
Version: 1.8.1-1
Distribution: unstable
Urgency: low
Maintainer: Gilles Filippini gilles.filipp...@free.fr
Changed-By: Gilles Filippini gilles.filipp...@free.fr
Description: 
 nted   - Musical score editor
 nted-doc   - NtEd documentation
Changes: 
 nted (1.8.1-1) unstable; urgency=low
 .
   * New Upstream Version
 + Score creation through midi keyboard
 + Spanish doc and GUI translation updated
 + Bug fixes
Checksums-Sha1: 
 605a732c8b9090af5b4961db498cb755e043e7b6 1421 nted_1.8.1-1.dsc
 63b9b55b19c1674f68a40e8f9a94c2dda3fc07f6 3477016 nted_1.8.1.orig.tar.gz
 42c56b90acde24e93e733cc4668e5a80897088c2 16835 nted_1.8.1-1.diff.gz
 2880162dac92768d9a923eff2757ae1030e373c1 2532962 nted-doc_1.8.1-1_all.deb
 e64b44bac6948adad0194f0bf7f5fc1488057348 538008 nted_1.8.1-1_i386.deb
Checksums-Sha256: 
 ec361a4cdffddd68dce8b19a7d31c9dd07b61eadb402805b74426ced6878367a 1421 
nted_1.8.1-1.dsc
 bc23eb0b3e234c62bb432cbce19d9f688787e5887c4a4a2ab76efac18b5081f9 3477016 
nted_1.8.1.orig.tar.gz
 dd9c3356513e20789c0f4f48e9f44bbcdd63c3daa9841ae4da0bf6d0f2642fd1 16835 
nted_1.8.1-1.diff.gz
 29f4718dba52e3bd2e7e1b68c84396cee7934578dbca4f50ba4747fb2b65c76f 2532962 
nted-doc_1.8.1-1_all.deb
 911bf3e0e9b060dec799bb6c2011dd969530c8d40484573f58766f98b237dac1 538008 
nted_1.8.1-1_i386.deb
Files: 
 e66fe2c4424494c3aeb3c1dd27990750 1421 sound optional nted_1.8.1-1.dsc
 eb3fda356ddb8c3686926d201d04adc7 3477016 sound optional nted_1.8.1.orig.tar.gz
 9522482e457e066a0e14779b4aaa7ba6 16835 sound optional nted_1.8.1-1.diff.gz
 31ab19264c1986e24c9dbafee2d55b90 2532962 doc optional nted-doc_1.8.1-1_all.deb
 8f94fd87fbd7e669c0d7194b5ace8a67 538008 sound optional nted_1.8.1-1_i386.deb

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

iQEcBAEBCAAGBQJKwGeQAAoJEO/obGx//s+D5CEH/A9g5z1BWoUGzJ1LunIWs4X4
kjCxvwi7vcRWvqMco0jIugYkbgz089Itq+mhdCCDgqToqif6Q1CHQSxrhMU1Fd5r
MB3i9SPBYhLUkN0q7+Pcd7DXYW6FWYArU97H2CqoPkXUKCpgjRdjC/OHDCSZhSFy
UBuGz/8W8Z4l2BfWs+1VQqRDybaqmRDguO5aJThaTWGxphO+631BOXOqlVJby9vR
TznJGKNoHR034Ylh95xZXbSofQFGhzfMuGYZDDCRx2Vm/Hr3R0pq00xnNNH0mWrl
hDnCkj6cPCMJSfzmSrEyAP4gciPZv7oTyxnSo/ViY07T/qy8AIvZjgu05/7xPSo=
=0b/V
-END PGP SIGNATURE-


Accepted:
nted-doc_1.8.1-1_all.deb
  to pool/main/n/nted/nted-doc_1.8.1-1_all.deb
nted_1.8.1-1.diff.gz
  to pool/main/n/nted/nted_1.8.1-1.diff.gz
nted_1.8.1-1.dsc
  to pool/main/n/nted/nted_1.8.1-1.dsc
nted_1.8.1-1_i386.deb
  to pool/main/n/nted/nted_1.8.1-1_i386.deb
nted_1.8.1.orig.tar.gz
  to pool/main/n/nted/nted_1.8.1.orig.tar.gz


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



Accepted xserver-xorg-video-geode 2.11.6-1 (source i386)

2009-09-28 Thread Martin-Éric Racine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Sep 2009 12:16:46 +
Source: xserver-xorg-video-geode
Binary: xserver-xorg-video-geode xserver-xorg-video-geode-dbg 
xserver-xorg-video-amd xserver-xorg-video-amd-dbg
Architecture: source i386
Version: 2.11.6-1
Distribution: unstable
Urgency: low
Maintainer: Martin-Éric Racine q-f...@iki.fi
Changed-By: Martin-Éric Racine q-f...@iki.fi
Description: 
 xserver-xorg-video-amd - Geode GX2/LX display driver (dummy transitional 
package)
 xserver-xorg-video-amd-dbg - Geode GX2/LX display driver (debugging symbols) 
(dummy transition
 xserver-xorg-video-geode - X.Org server -- Geode GX2/LX display driver
 xserver-xorg-video-geode-dbg - X.Org server -- Geode GX2/LX display driver 
(debugging symbols)
Changes: 
 xserver-xorg-video-geode (2.11.6-1) unstable; urgency=low
 .
   * New upstream release:
 Revert LX validate display modes because it breaks detection of
 arbitrary non-VESA resolutions such as with the OLPC (LP: #433228).
Checksums-Sha1: 
 cd1ece496323e8d243d06bb947af618587925924 1478 
xserver-xorg-video-geode_2.11.6-1.dsc
 b8db247479b57160e9221e59e17a586d22feabde 759557 
xserver-xorg-video-geode_2.11.6.orig.tar.gz
 77d343e7c10b1c5085f31a7dd1cc7ce114e27a8b 7274 
xserver-xorg-video-geode_2.11.6-1.diff.gz
 4bbf4372b5a201860c6da0099ea43b38a8307e50 168166 
xserver-xorg-video-geode_2.11.6-1_i386.deb
 954db1ddd30acb23c8c614a21ead3440be575075 612048 
xserver-xorg-video-geode-dbg_2.11.6-1_i386.deb
 5532ec0a8581f7dc22f5c42ce0bd5e8609419650 30080 
xserver-xorg-video-amd_2.11.6-1_i386.deb
 94b0a25d77e75c88b46252f0090d10260c55af17 30014 
xserver-xorg-video-amd-dbg_2.11.6-1_i386.deb
Checksums-Sha256: 
 aacff06d91f3304c37835c27e3cb5f434852e6082e35ab284fdee299560dcb7e 1478 
xserver-xorg-video-geode_2.11.6-1.dsc
 b906b9dc4c9a4265ce0805209fad8d36590ef894ddd36b19125e7123e7e940c3 759557 
xserver-xorg-video-geode_2.11.6.orig.tar.gz
 4ef84b45eb48f27c658f4a061aad738b7b5cb4a5526d1c0335e2ace57ffc0c00 7274 
xserver-xorg-video-geode_2.11.6-1.diff.gz
 76ac9470095445bc6ff4281a5ff8386a8db6249dfeb6c873223ea0638b630995 168166 
xserver-xorg-video-geode_2.11.6-1_i386.deb
 6a0d0d612d23834023227af593c20e16f2db59f6e0a29075b293051fea1e4e8b 612048 
xserver-xorg-video-geode-dbg_2.11.6-1_i386.deb
 64427d36c82b87536a0c9d3d16d81c6606f7323d041c9531ced7cf8c32f4c258 30080 
xserver-xorg-video-amd_2.11.6-1_i386.deb
 fb6f510f67fc09194caf69715f879dc9f88d8470d0b499a2c45f1c21ea0c5758 30014 
xserver-xorg-video-amd-dbg_2.11.6-1_i386.deb
Files: 
 3fcb2bf3c1c9e27dc958b5b20fa9d2e2 1478 x11 optional 
xserver-xorg-video-geode_2.11.6-1.dsc
 a673c0f88037d12fbb96d9fefc82785b 759557 x11 optional 
xserver-xorg-video-geode_2.11.6.orig.tar.gz
 d2130b50e4dd5ef28523cd4ce0fbb660 7274 x11 optional 
xserver-xorg-video-geode_2.11.6-1.diff.gz
 0386c92261e3b0db20d318719a8db43f 168166 x11 optional 
xserver-xorg-video-geode_2.11.6-1_i386.deb
 357933d29fdde90c31ddbf8b2e4cf450 612048 debug extra 
xserver-xorg-video-geode-dbg_2.11.6-1_i386.deb
 7ce0fe2053e6f509392bbcc3cdb681d3 30080 x11 extra 
xserver-xorg-video-amd_2.11.6-1_i386.deb
 d25ec3ee9ba6f2aaf364ba47b9a684a6 30014 debug extra 
xserver-xorg-video-amd-dbg_2.11.6-1_i386.deb

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

iEYEARECAAYFAkrAaOwACgkQDecnbV4Fd/IC6QCfY0MZdDLKu/LnMqT1iaZYu+OZ
1a8AnRLolIzHJbyxi8fwHwvnfD5oIBWI
=xTiB
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-amd-dbg_2.11.6-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-geode/xserver-xorg-video-amd-dbg_2.11.6-1_i386.deb
xserver-xorg-video-amd_2.11.6-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-geode/xserver-xorg-video-amd_2.11.6-1_i386.deb
xserver-xorg-video-geode-dbg_2.11.6-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-geode/xserver-xorg-video-geode-dbg_2.11.6-1_i386.deb
xserver-xorg-video-geode_2.11.6-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-geode/xserver-xorg-video-geode_2.11.6-1.diff.gz
xserver-xorg-video-geode_2.11.6-1.dsc
  to pool/main/x/xserver-xorg-video-geode/xserver-xorg-video-geode_2.11.6-1.dsc
xserver-xorg-video-geode_2.11.6-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-geode/xserver-xorg-video-geode_2.11.6-1_i386.deb
xserver-xorg-video-geode_2.11.6.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-geode/xserver-xorg-video-geode_2.11.6.orig.tar.gz


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



Accepted modello 1.1-1 (source all)

2009-09-28 Thread Michael Koch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 09:28:10 +0200
Source: modello
Binary: libmodello-java libmodello-java-doc
Architecture: source all
Version: 1.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Michael Koch konque...@gmx.de
Description: 
 libmodello-java - a Data Model toolkit in use by the Maven 2 Project
 libmodello-java-doc - a Data Model toolkit in use by the Maven 2 Project
Changes: 
 modello (1.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Build-Depends on debhelper = 7.
   * Added myself to Uploaders.
   * Updated Standards-Version to 3.8.3.
Checksums-Sha1: 
 9ae9d9072e0313f355a60c765139a19dd52cabca 1649 modello_1.1-1.dsc
 ae13466c32e1fac2da5a028fa34826d4ea04b19d 319272 modello_1.1.orig.tar.gz
 4cd6a015b8d31d6c55310630760f08722738cc06 5121 modello_1.1-1.diff.gz
 ae64cb5684bb396c0e6a2f739cb9b1a928fc2a64 250316 libmodello-java_1.1-1_all.deb
 b7765c6ee837dca5ed21eeb94d2883670ff61630 170402 
libmodello-java-doc_1.1-1_all.deb
Checksums-Sha256: 
 d02e8cbffc1a176cfed609a686b63595d088dfae086981b629dee97aaabeb00b 1649 
modello_1.1-1.dsc
 6fb13b961223fe621f3c3d9268ce0473c169b305210fdadeb8737ede560ec04a 319272 
modello_1.1.orig.tar.gz
 451d39f0b67f18d4e9d7bc7847f1463cb337c33700dcacd545dfdacef965b3e1 5121 
modello_1.1-1.diff.gz
 53ff804e4d0fc3872184fce0c4ffcc468795fed7791eb584329e20776726c57b 250316 
libmodello-java_1.1-1_all.deb
 67ded08da1a93993a40480a0f4fcb215b599d02fd1874bad5c0a0f773a5df547 170402 
libmodello-java-doc_1.1-1_all.deb
Files: 
 a1f5f677e9fb1ef1f8dfe81b37c3b4b6 1649 java optional modello_1.1-1.dsc
 067177f03de407ba27a26e098e4c18f8 319272 java optional modello_1.1.orig.tar.gz
 12ad450cf641a51ea306f7a944e479f9 5121 java optional modello_1.1-1.diff.gz
 c3db46191b4c31d136bf35ba57d362fa 250316 java optional 
libmodello-java_1.1-1_all.deb
 465823b5f06daa22369321e90400407f 170402 doc optional 
libmodello-java-doc_1.1-1_all.deb

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

iEYEARECAAYFAkrAge4ACgkQWSOgCCdjSDu/HwCdGqAojYeJsnNah/G6R4x83aeW
oHoAn3m7lWzueksCUvSLdk6W6Qx8Y63g
=+VdA
-END PGP SIGNATURE-


Accepted:
libmodello-java-doc_1.1-1_all.deb
  to pool/main/m/modello/libmodello-java-doc_1.1-1_all.deb
libmodello-java_1.1-1_all.deb
  to pool/main/m/modello/libmodello-java_1.1-1_all.deb
modello_1.1-1.diff.gz
  to pool/main/m/modello/modello_1.1-1.diff.gz
modello_1.1-1.dsc
  to pool/main/m/modello/modello_1.1-1.dsc
modello_1.1.orig.tar.gz
  to pool/main/m/modello/modello_1.1.orig.tar.gz


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



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

2009-09-28 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 12:03:27 +0300
Source: firebird2.0
Binary: firebird2.0-super firebird2.0-classic libfbembed2 firebird2.0-common 
firebird2.0-server-common firebird2.0-dev firebird2.0-examples firebird2.0-doc
Architecture: source all amd64
Version: 2.0.5.13206-0.ds2-5
Distribution: unstable
Urgency: low
Maintainer: Debian Firebird Group pkg-firebird-gene...@lists.alioth.debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 firebird2.0-classic - Firebird Classic Server - an RDBMS based on InterBase 
6.0 code
 firebird2.0-common - common files for firebird 2.0 servers and clients
 firebird2.0-dev - Development files for Firebird - an RDBMS based on InterBase 
6.0 
 firebird2.0-doc - Documentation files for firebird database version 2.0
 firebird2.0-examples - Examples for Firebird - an RDBMS based on InterBase 6.0 
code
 firebird2.0-server-common - common files for firebird 2.0 servers
 firebird2.0-super - Firebird Super Server - an RDBMS based on InterBase 6.0 
code
 libfbembed2 - Firebird embedded client/server library
Closes: 542202
Changes: 
 firebird2.0 (2.0.5.13206-0.ds2-5) unstable; urgency=low
 .
   * *.init: made LSB-compliant (Closes: #542202)
 + use real Provides service
 + s/local_fs/remote_fs (we use /usr)
 + add $syslog to Required-Start (-super)
 + remove unused optional headers
   * * -classic.postinst: remove stray stop rc.d symlinks
Checksums-Sha1: 
 ae452da6bb306a0feeb2d0e5d1373e1e941e5e36 1715 
firebird2.0_2.0.5.13206-0.ds2-5.dsc
 c0c9d897adc344cc356d5f62a4ee1f22408fb49c 115946 
firebird2.0_2.0.5.13206-0.ds2-5.diff.gz
 3baf8f1ff32ac9162d7b5e31ef6963eee012e170 453678 
firebird2.0-dev_2.0.5.13206-0.ds2-5_all.deb
 d3ee3b795fbe80af8b8933e71505610c99b6d1d1 552010 
firebird2.0-examples_2.0.5.13206-0.ds2-5_all.deb
 a515fc499688bd8d18f8ce0b8e5d8b933922ca0b 1320366 
firebird2.0-doc_2.0.5.13206-0.ds2-5_all.deb
 e8ae33860768c02771c92576dc1f6206310e0c58 2832788 
firebird2.0-super_2.0.5.13206-0.ds2-5_amd64.deb
 f3b6f194fed1b9b829b34f3f2c992ae487a98cd1 1748132 
firebird2.0-classic_2.0.5.13206-0.ds2-5_amd64.deb
 c33e67866dd895457e8386fcee88d9cb6aee023a 1487554 
libfbembed2_2.0.5.13206-0.ds2-5_amd64.deb
 557986d3644744e91302828bba6f95d2dbd79417 791406 
firebird2.0-common_2.0.5.13206-0.ds2-5_amd64.deb
 1c614074cc81168d280d3deecf1258390a9825c7 520946 
firebird2.0-server-common_2.0.5.13206-0.ds2-5_amd64.deb
Checksums-Sha256: 
 053df27aa32af7c95b34b45cfd97ab2e343c760bfafcaa9c4d7bc55f80ca57b8 1715 
firebird2.0_2.0.5.13206-0.ds2-5.dsc
 11c3719cf0f13479b8dca296f2a097eb65247dd8272a48419d629c0e793150c8 115946 
firebird2.0_2.0.5.13206-0.ds2-5.diff.gz
 560a9c63caf192d842aaecbdd1e9f85a6c82f8d59ba9d818296ffa09df05fdf0 453678 
firebird2.0-dev_2.0.5.13206-0.ds2-5_all.deb
 56aea3202524861f659ac038f24d5b93cb3052572d0a45f7623deb0ab5715178 552010 
firebird2.0-examples_2.0.5.13206-0.ds2-5_all.deb
 d91cc5d7ee343f5128e5a4f2f76b3a2c7bfd71e2f08361b8cbf72ff19ab350b3 1320366 
firebird2.0-doc_2.0.5.13206-0.ds2-5_all.deb
 982c34779c2688a8d36058409b14163ba48c115dde5bb653a34518d981c9e3ea 2832788 
firebird2.0-super_2.0.5.13206-0.ds2-5_amd64.deb
 99e5d587782471c5a0f6cffb3694f5850a98b32b6aebeede0797b51869472638 1748132 
firebird2.0-classic_2.0.5.13206-0.ds2-5_amd64.deb
 83b964f1596fd2e5d6e3e57ed1e15593245b28b43989d79059c823eb4f21379d 1487554 
libfbembed2_2.0.5.13206-0.ds2-5_amd64.deb
 bcadb8b65a94930eb95c979ffcf2d606f41dc27328b059f183b9687973752dfd 791406 
firebird2.0-common_2.0.5.13206-0.ds2-5_amd64.deb
 630df41538d684037ae60222b0ebd586ce8ee8c8afbcddfaf02c2edf925aa57e 520946 
firebird2.0-server-common_2.0.5.13206-0.ds2-5_amd64.deb
Files: 
 3ff4e9ce2f73025e0953d3b29793319a 1715 database optional 
firebird2.0_2.0.5.13206-0.ds2-5.dsc
 71bec286bd90102f2df1a425cae9118a 115946 database optional 
firebird2.0_2.0.5.13206-0.ds2-5.diff.gz
 65f7e1b509e4afad2252bb4a6759216a 453678 libdevel optional 
firebird2.0-dev_2.0.5.13206-0.ds2-5_all.deb
 6d8d13b00cd0cbf593bb58a3c2ee642b 552010 doc optional 
firebird2.0-examples_2.0.5.13206-0.ds2-5_all.deb
 0296fa693812a077bfa05026c1abc489 1320366 doc optional 
firebird2.0-doc_2.0.5.13206-0.ds2-5_all.deb
 a35a9c3f629316311bd79a429bc3ba7a 2832788 database optional 
firebird2.0-super_2.0.5.13206-0.ds2-5_amd64.deb
 ccf2e01106b7a233ecefe4037144f70c 1748132 database optional 
firebird2.0-classic_2.0.5.13206-0.ds2-5_amd64.deb
 95143051c91fda87968a6ea004838bb8 1487554 libs optional 
libfbembed2_2.0.5.13206-0.ds2-5_amd64.deb
 987a21be1f631187412aec1dacb8f45d 791406 database optional 
firebird2.0-common_2.0.5.13206-0.ds2-5_amd64.deb
 96c7e26ad4f3a37da35fc382e276e9ac 520946 database optional 
firebird2.0-server-common_2.0.5.13206-0.ds2-5_amd64.deb

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

iEYEARECAAYFAkrAgrkACgkQHqjlqpcl9jvPMgCdEFFpKIVrsJ8z88bZYC4vq7sc
inIAnjlVubd276Deq+SbhyROjmKumeJf
=gfZt
-END PGP SIGNATURE-


Accepted:
firebird2.0-classic_2.0.5.13206-0.ds2-5_amd64.deb
  to 

Accepted firebird2.1 2.1.3.18185-0.ds1-2 (source all amd64)

2009-09-28 Thread Damyan Ivanov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 12:45:45 +0300
Source: firebird2.1
Binary: firebird2.1-super firebird2.1-classic libfbclient2 libfbembed2.1 
firebird2.1-common firebird2.1-server-common firebird2.1-dev 
firebird2.1-examples firebird2.1-doc firebird2.1-common-doc
Architecture: source all amd64
Version: 2.1.3.18185-0.ds1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Firebird Group pkg-firebird-gene...@lists.alioth.debian.org
Changed-By: Damyan Ivanov d...@debian.org
Description: 
 firebird2.1-classic - Firebird Classic Server - an RDBMS based on InterBase 
6.0 code
 firebird2.1-common - common files for firebird 2.1 servers and clients
 firebird2.1-common-doc - copyright, licensing and changelogs of firebird2.1
 firebird2.1-dev - Development files for Firebird - an RDBMS based on InterBase 
6.0 
 firebird2.1-doc - Documentation files for firebird database version 2.1
 firebird2.1-examples - Examples for Firebird - an RDBMS based on InterBase 6.0 
code
 firebird2.1-server-common - common files for firebird 2.1 servers
 firebird2.1-super - Firebird Super Server - an RDBMS based on InterBase 6.0 
code
 libfbclient2 - Firebird client library
 libfbembed2.1 - Firebird embedded client/server library
Closes: 548299
Changes: 
 firebird2.1 (2.1.3.18185-0.ds1-2) unstable; urgency=low
 .
   * add port-s390.patch from upstream CVS HEAD based on patch from Bastian
 Blank.
 Closes: #548299 -- please port to s390
   * -server-common: remove security database on purge
   * debian/clean-after-build.sh: also remove generated m4/
Checksums-Sha1: 
 b7ae712da9b70dff81e44a64c9e5bef134201452 1714 
firebird2.1_2.1.3.18185-0.ds1-2.dsc
 ac63bfc9069bde6891cce2da44cf7eb4973eb8e0 118046 
firebird2.1_2.1.3.18185-0.ds1-2.diff.gz
 9da62d99153ced79bfd8ee12ffae1830e76794ba 57998 
firebird2.1-dev_2.1.3.18185-0.ds1-2_all.deb
 4fa2f9f11b3a236cdca7f849a96acd1d24f9a349 163592 
firebird2.1-examples_2.1.3.18185-0.ds1-2_all.deb
 a7d3269569fbf13b5e545785a19d3a73115e260b 982584 
firebird2.1-doc_2.1.3.18185-0.ds1-2_all.deb
 2c482835ef59083185d4814c2d51ab5111570c64 471684 
firebird2.1-common-doc_2.1.3.18185-0.ds1-2_all.deb
 cfbdba0e33733625e3d3076eac8e87c0ccec89d2 2918762 
firebird2.1-super_2.1.3.18185-0.ds1-2_amd64.deb
 19c108165477075ffd36d2586ff513c5bd15a5fb 1559268 
firebird2.1-classic_2.1.3.18185-0.ds1-2_amd64.deb
 a595354747aa3d45326acae3fb1e361ba12fd186 265664 
libfbclient2_2.1.3.18185-0.ds1-2_amd64.deb
 b0c3f815dbc175629ae29b4991c0b3ee73417789 1339542 
libfbembed2.1_2.1.3.18185-0.ds1-2_amd64.deb
 3ba20643f81956c182169984ae3937dd41dda69d 468930 
firebird2.1-common_2.1.3.18185-0.ds1-2_amd64.deb
 3e6559c9aa0f2626106b5eee7312215d4ff30f25 135792 
firebird2.1-server-common_2.1.3.18185-0.ds1-2_amd64.deb
Checksums-Sha256: 
 18bcd91e996bd8966713623f8babe186975e941f25ce7066801d5cab7e740601 1714 
firebird2.1_2.1.3.18185-0.ds1-2.dsc
 12b0171a5fa786b91e57ada9bc7603a0a12a44d2bbc8d0e6a54dc9582e0a45ec 118046 
firebird2.1_2.1.3.18185-0.ds1-2.diff.gz
 a04cdac6c00ec8514a6544d7573f3813492b88df9c57bae255c29717bbf505db 57998 
firebird2.1-dev_2.1.3.18185-0.ds1-2_all.deb
 30910f99a2ac99409a71476a14b8db14ef6c2d976b596f3efbd4812fec7c1f47 163592 
firebird2.1-examples_2.1.3.18185-0.ds1-2_all.deb
 0d1865eaf0e44d12c750fc3e81d91096caea2464f2b300c384defc9f3c9facb4 982584 
firebird2.1-doc_2.1.3.18185-0.ds1-2_all.deb
 5c871e0d5613363e64ac55b6c79a2bb7bdf5f6086ab792374834555d3c15a90b 471684 
firebird2.1-common-doc_2.1.3.18185-0.ds1-2_all.deb
 bba8ea6c8c77407f77fb0b77ada028b62c17726f870b1f4788f263051f63c30e 2918762 
firebird2.1-super_2.1.3.18185-0.ds1-2_amd64.deb
 48837c14ab316ab51cb189ec3be9ac2e44339ec4221d14e616ce633125067408 1559268 
firebird2.1-classic_2.1.3.18185-0.ds1-2_amd64.deb
 952a1fbfc4520b106efb3741ed29d6a5777a49801ae0a917e46fcb9e2d40f5a2 265664 
libfbclient2_2.1.3.18185-0.ds1-2_amd64.deb
 2e53636ec919a2d60f358c99bbf8e21a722e1d789a7a223649aab88a69947740 1339542 
libfbembed2.1_2.1.3.18185-0.ds1-2_amd64.deb
 68652d97dfddd4f167e5004e65c781f17a0cf2024d3ae2445ef45f6e55017662 468930 
firebird2.1-common_2.1.3.18185-0.ds1-2_amd64.deb
 1f0561a3e2eb2bba1dc9bd834bd03e0c69a73161d37b3ede8c5a0cac9bb40e21 135792 
firebird2.1-server-common_2.1.3.18185-0.ds1-2_amd64.deb
Files: 
 96a92daeded1028d2a676020aae51c31 1714 database optional 
firebird2.1_2.1.3.18185-0.ds1-2.dsc
 eb80440d041e77b00b01abc0fc3291a5 118046 database optional 
firebird2.1_2.1.3.18185-0.ds1-2.diff.gz
 a92a4291890295adad4f8663c9465ac6 57998 libdevel optional 
firebird2.1-dev_2.1.3.18185-0.ds1-2_all.deb
 2fd5e55c038fe1d669296a4c3de85576 163592 doc optional 
firebird2.1-examples_2.1.3.18185-0.ds1-2_all.deb
 c79a57215c31b37ad6d02abc9f7d5a86 982584 doc optional 
firebird2.1-doc_2.1.3.18185-0.ds1-2_all.deb
 5d3dd78e7be3343357befcf572d61d75 471684 doc optional 
firebird2.1-common-doc_2.1.3.18185-0.ds1-2_all.deb
 afd6c78d7736c70764b4f20f6a0c5a44 2918762 database optional 
firebird2.1-super_2.1.3.18185-0.ds1-2_amd64.deb
 4164ba413a4e51a8d8e822d6e38f6ab9 

Accepted zope.component 3.7.1-4 (source all)

2009-09-28 Thread Fabio Tranchitella
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 06:17:44 +0200
Source: zope.component
Binary: python-zope.component python-zope.component-zcml
Architecture: source all
Version: 3.7.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team 
pkg-zope-develop...@lists.alioth.debian.org
Changed-By: Fabio Tranchitella kob...@debian.org
Description: 
 python-zope.component - Zope Component Architecture
 python-zope.component-zcml - Metapackage for zope.component zcml extra
Closes: 548644
Changes: 
 zope.component (3.7.1-4) unstable; urgency=low
 .
   [ Matthias Klose ]
   * Set section to zope.
 .
   [ Fabio Tranchitella ]
   * debian/control: improved the long descriptions. (Closes: #548644)
Checksums-Sha1: 
 e7272c17f1c1704a3faa4ed63e6c0204f5588607 1349 zope.component_3.7.1-4.dsc
 8c1419ba42cc732e2b142a5652f2440ea8d7e6c8 3397 zope.component_3.7.1-4.diff.gz
 d7f4b1cd44c40676ec1f508fd172479d8975f947 77376 
python-zope.component_3.7.1-4_all.deb
 6e05bc1247f7f9476507c5dd8ad61e7d2f5c72e8 3490 
python-zope.component-zcml_3.7.1-4_all.deb
Checksums-Sha256: 
 639c53aa35c1423f6674072e8bda85ade7d4da1bc1bd4817953bfeedbe64866f 1349 
zope.component_3.7.1-4.dsc
 e7fe6e45d7d0d9266850062f022866ce046ca73aba82ca96c6e719247d9f33c3 3397 
zope.component_3.7.1-4.diff.gz
 794d501d911c42ac18625601775f1157b2460134740065dc5bb61f49e174aecf 77376 
python-zope.component_3.7.1-4_all.deb
 2e8d7716596556f2982a37f56b1d798aa12011ec898c06968c00a02fe8f143f7 3490 
python-zope.component-zcml_3.7.1-4_all.deb
Files: 
 4f749aea7e94db825518d0e6d1cd4fb2 1349 zope extra zope.component_3.7.1-4.dsc
 06f4c631504769c7684b8176e6bc0fc4 3397 zope extra zope.component_3.7.1-4.diff.gz
 1ee256fa18835653cea08bebe450edac 77376 zope extra 
python-zope.component_3.7.1-4_all.deb
 4713ba086f2e146f6a3fcb82503e345b 3490 zope extra 
python-zope.component-zcml_3.7.1-4_all.deb

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

iEYEARECAAYFAkrAOcgACgkQK/juK3+WFWTebQCfe9wLWXbO/XqEuVvleOpyxTwE
rCoAnjriW5j4SFTNsYppuuYrw+X0Uy6v
=NvjI
-END PGP SIGNATURE-


Accepted:
python-zope.component-zcml_3.7.1-4_all.deb
  to pool/main/z/zope.component/python-zope.component-zcml_3.7.1-4_all.deb
python-zope.component_3.7.1-4_all.deb
  to pool/main/z/zope.component/python-zope.component_3.7.1-4_all.deb
zope.component_3.7.1-4.diff.gz
  to pool/main/z/zope.component/zope.component_3.7.1-4.diff.gz
zope.component_3.7.1-4.dsc
  to pool/main/z/zope.component/zope.component_3.7.1-4.dsc


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



Accepted vala 0.7.7-1 (source all amd64)

2009-09-28 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 10:02:15 +0200
Source: vala
Binary: valac vala-utils vala-doc libvala0 libvala-dev valac-dbg libvala0-dbg
Architecture: source all amd64
Version: 0.7.7-1
Distribution: unstable
Urgency: low
Maintainer: Maintainers of Vala packages 
pkg-vala-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 libvala-dev - C# like language for the GObject system - development headers
 libvala0   - C# like language for the GObject system - library
 libvala0-dbg - C# like language for the GObject system - library symbols
 vala-doc   - C# like language for the GObject system - documentation
 vala-utils - C# like language for the GObject system - utilities
 valac  - C# like language for the GObject system
 valac-dbg  - C# like language for the GObject system
Changes: 
 vala (0.7.7-1) unstable; urgency=low
 .
   * debian/control:
 + Fix sections of the debug packages.
   * New upstream version.
Checksums-Sha1: 
 2e6db9155de0212aea6bafcba0315bd0224b4437 1506 vala_0.7.7-1.dsc
 213b3b3173f09459eabe11be91237e85cafdd0fe 2947725 vala_0.7.7.orig.tar.gz
 8d32bc8e72d07da0bbc34463e02f1129ace6784c 6089 vala_0.7.7-1.diff.gz
 b341c93f1f0e0c0be4b89809b73933fea7193b27 45202 vala-doc_0.7.7-1_all.deb
 899663f73554ba106de41a6dbb254c25d5ee4de2 615800 valac_0.7.7-1_amd64.deb
 13ceb612dcc01024eb7b1d70ba2a71f70f9a808b 65352 vala-utils_0.7.7-1_amd64.deb
 761195b015e8df41894f2874e2ad16f36bcc494d 837482 libvala0_0.7.7-1_amd64.deb
 e8491a9bb4b6d07a846f0eaaf0d707c25144990c 84712 libvala-dev_0.7.7-1_amd64.deb
 b3a1c3e26a45a7e9421297933f16bcf0f10f163d 313238 valac-dbg_0.7.7-1_amd64.deb
 c80b4d265675f3d25c8f1030438b8349170c8bdd 1902790 libvala0-dbg_0.7.7-1_amd64.deb
Checksums-Sha256: 
 9cfebd2e5a7960e74211c3c34c3fb5c1fa3818df3793b05d5c0b570a3b14fcdf 1506 
vala_0.7.7-1.dsc
 5fdd5c765fba1bc5d585c9ebec3daa1b53ac5f80717712ab59e97b75f68b1c2f 2947725 
vala_0.7.7.orig.tar.gz
 3e070943a2d44b875be2aa2591e86f679c5be5d1b1cd591f08bee286c6daf592 6089 
vala_0.7.7-1.diff.gz
 7106252d60ab13030f4e5ff99aa3877c8a2f08706aac37cff278d94b3d877a46 45202 
vala-doc_0.7.7-1_all.deb
 9cfe2cec3dc77fcd522b081f194a7c23e4c60b6f4d62b4829259e62ada23db6a 615800 
valac_0.7.7-1_amd64.deb
 b20f5b79c7ed8ae15996116823bd7184e129333186c515553c7d7e48c420c724 65352 
vala-utils_0.7.7-1_amd64.deb
 c65cdcb3038921a267ebc42bb8eb3098f60f5954d007c61c4f267303cbe8aaa4 837482 
libvala0_0.7.7-1_amd64.deb
 9ba77c7cbc861b4264fe99f4d64460ea61e24f6cae48a34dce2ff81566955ac1 84712 
libvala-dev_0.7.7-1_amd64.deb
 f2b6462212e94be24de3ed75a7d52d7cb58990d768aa9b4359c632d10ddc3fcc 313238 
valac-dbg_0.7.7-1_amd64.deb
 7cdb5164acff94786aa32827e54faed08c4f7bd18ad36175cea3992235c01f59 1902790 
libvala0-dbg_0.7.7-1_amd64.deb
Files: 
 08bf221992b43eb98560e09da5bd113b 1506 devel optional vala_0.7.7-1.dsc
 a02d16e153315c92724943066afe63a6 2947725 devel optional vala_0.7.7.orig.tar.gz
 611fe91d09c5bc3af2482b25d73dd2e6 6089 devel optional vala_0.7.7-1.diff.gz
 a77f5295d671aa16421f9995a7424e70 45202 doc optional vala-doc_0.7.7-1_all.deb
 27ca279ba01658bec1f03c19b5eeeb4d 615800 devel optional valac_0.7.7-1_amd64.deb
 6c15cfb5b11a1c0a879ac43bf1af401e 65352 devel optional 
vala-utils_0.7.7-1_amd64.deb
 78b9814dfa3c1e2f1a6bee167a37554e 837482 libs optional 
libvala0_0.7.7-1_amd64.deb
 c5b3f442e3fa8383694759989342ab37 84712 libdevel optional 
libvala-dev_0.7.7-1_amd64.deb
 2640a2e0c9c0e818a0a6bb1a30ceb2e6 313238 debug extra valac-dbg_0.7.7-1_amd64.deb
 762fa8490c59640c7e275816e41e2b8b 1902790 debug extra 
libvala0-dbg_0.7.7-1_amd64.deb

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

iEYEARECAAYFAkrAcsYACgkQBsBdh1vkHyFIwQCgl+PoSiD+gvLV8g20+Kmts0Et
Z6UAoJ3r0x3SeVAaoiYuZZeBUH60Cpj3
=6nCt
-END PGP SIGNATURE-


Accepted:
libvala-dev_0.7.7-1_amd64.deb
  to pool/main/v/vala/libvala-dev_0.7.7-1_amd64.deb
libvala0-dbg_0.7.7-1_amd64.deb
  to pool/main/v/vala/libvala0-dbg_0.7.7-1_amd64.deb
libvala0_0.7.7-1_amd64.deb
  to pool/main/v/vala/libvala0_0.7.7-1_amd64.deb
vala-doc_0.7.7-1_all.deb
  to pool/main/v/vala/vala-doc_0.7.7-1_all.deb
vala-utils_0.7.7-1_amd64.deb
  to pool/main/v/vala/vala-utils_0.7.7-1_amd64.deb
vala_0.7.7-1.diff.gz
  to pool/main/v/vala/vala_0.7.7-1.diff.gz
vala_0.7.7-1.dsc
  to pool/main/v/vala/vala_0.7.7-1.dsc
vala_0.7.7.orig.tar.gz
  to pool/main/v/vala/vala_0.7.7.orig.tar.gz
valac-dbg_0.7.7-1_amd64.deb
  to pool/main/v/vala/valac-dbg_0.7.7-1_amd64.deb
valac_0.7.7-1_amd64.deb
  to pool/main/v/vala/valac_0.7.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



Accepted libxpp2-java 2.1.10-6 (source all)

2009-09-28 Thread Michael Koch
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 11:26:35 +0200
Source: libxpp2-java
Binary: libxpp2-java
Architecture: source all
Version: 2.1.10-6
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Michael Koch konque...@gmx.de
Description: 
 libxpp2-java - XML pull parser library for java V2
Changes: 
 libxpp2-java (2.1.10-6) unstable; urgency=low
 .
   * Make package Depends on java runtime alternatives.
 Thanks to Justus Piater.
   * Added Homepage, Vcs-Browser and Vcs-Svn fields
Checksums-Sha1: 
 b0366a6204960ba47620c8e180bb2a54076f6f43 1324 libxpp2-java_2.1.10-6.dsc
 0d5f74fb06f70e9c4fa4d0c0f5efaf2be6ba0e38 3839 libxpp2-java_2.1.10-6.diff.gz
 f3ed87b9fa5872252ce43ba42642b0a7a2714809 105860 libxpp2-java_2.1.10-6_all.deb
Checksums-Sha256: 
 862412b8a70e7d22eaa13c956e602b66aa9c929e6febe847db5e4c6a0bcc1cfd 1324 
libxpp2-java_2.1.10-6.dsc
 5895810b0576bad2c526d704681558a4909cf49a9745a74e60e05b4bcb6d1d13 3839 
libxpp2-java_2.1.10-6.diff.gz
 30091aacfcc0dd99ea31e3032470c180051408baa44206298bceba3ec4d970ac 105860 
libxpp2-java_2.1.10-6_all.deb
Files: 
 1e0051d21ebb814bc5b007a21f1d124e 1324 java optional libxpp2-java_2.1.10-6.dsc
 451884046d03993080971b17bdd40a1c 3839 java optional 
libxpp2-java_2.1.10-6.diff.gz
 57f8ecf8f6bc24903a33eab1c473a313 105860 java optional 
libxpp2-java_2.1.10-6_all.deb

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

iEYEARECAAYFAkrAgdYACgkQWSOgCCdjSDuKlgCff++o7GE8H7MXDoDtAjQNIyXy
LxMAnR7TLWNzuuf1pZhRyD2J5O16ty2P
=/v6I
-END PGP SIGNATURE-


Accepted:
libxpp2-java_2.1.10-6.diff.gz
  to pool/main/libx/libxpp2-java/libxpp2-java_2.1.10-6.diff.gz
libxpp2-java_2.1.10-6.dsc
  to pool/main/libx/libxpp2-java/libxpp2-java_2.1.10-6.dsc
libxpp2-java_2.1.10-6_all.deb
  to pool/main/libx/libxpp2-java/libxpp2-java_2.1.10-6_all.deb


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



Accepted cairo-dock 2.0.8.2-1 (source i386)

2009-09-28 Thread Nobuhiro Iwamatsu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 25 Sep 2009 07:34:31 +0900
Source: cairo-dock
Binary: cairo-dock cairo-dock-dev
Architecture: source i386
Version: 2.0.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Nobuhiro Iwamatsu iwama...@debian.org
Changed-By: Nobuhiro Iwamatsu iwama...@debian.org
Description: 
 cairo-dock - Light eye-candy fully themable animated dock for Linux desktop
 cairo-dock-dev - Cairo-dock develpment file
Closes: 493736
Changes: 
 cairo-dock (2.0.8.2-1) unstable; urgency=low
 .
   * Initial release. (Closes: #493736)
Checksums-Sha1: 
 9d3b5de637c3c8c4ee7e63db6e1e93c6ab853e32 1265 cairo-dock_2.0.8.2-1.dsc
 479267f355a869b09afa99581085e8f99bad36cd 1420261 cairo-dock_2.0.8.2.orig.tar.gz
 987e515230f737bd3fc18dedb102aaff65528acb 40716 cairo-dock_2.0.8.2-1.diff.gz
 ca6ffbdc01f125152278e741b11ac3eecc77f494 884388 cairo-dock_2.0.8.2-1_i386.deb
 3e9e312c474085ffb1787c03eae387a1574f6a0a 99798 
cairo-dock-dev_2.0.8.2-1_i386.deb
Checksums-Sha256: 
 a64af2c22eee16312349a67eb50972a4ed4ee5577000c6c85875e50d38b5376f 1265 
cairo-dock_2.0.8.2-1.dsc
 2ef44c1a530fcb5bc77dac34f88cfe70e61fe4a2a24cd7ddc1cc971178670042 1420261 
cairo-dock_2.0.8.2.orig.tar.gz
 a7a842e79cf77ea2f4b35bf8fe9c093b7c720525bd41613b949e397e058581af 40716 
cairo-dock_2.0.8.2-1.diff.gz
 4768eb3cbb0815060f6cf365895258a2b67711cf6ae0042291fccd3f0c720c59 884388 
cairo-dock_2.0.8.2-1_i386.deb
 4b7ca529769abae531072bfe96593b093d43dfd942358466f663fb8d4d979bc4 99798 
cairo-dock-dev_2.0.8.2-1_i386.deb
Files: 
 6517d06c8a91c8c84394bfe94f72f186 1265 x11 extra cairo-dock_2.0.8.2-1.dsc
 4d18c7c3d8532025b0fa6927d821d733 1420261 x11 extra 
cairo-dock_2.0.8.2.orig.tar.gz
 623fb7c6955f2bb3db4b6f796efc560e 40716 x11 extra cairo-dock_2.0.8.2-1.diff.gz
 fc7b547a796e6a79a2646018f2b45241 884388 x11 extra cairo-dock_2.0.8.2-1_i386.deb
 593073a69348f6a4a6c65f5fa30ab2dd 99798 x11 extra 
cairo-dock-dev_2.0.8.2-1_i386.deb

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

iEYEARECAAYFAkq+xpYACgkQQSHHQzFw6+l2iwCdHPWyyOMRp4jWcRAX+OT8qz76
fXIAnRTNzqVDsWJwjpCAjuvXfae+vl+P
=hJ+0
-END PGP SIGNATURE-


Accepted:
cairo-dock-dev_2.0.8.2-1_i386.deb
  to pool/main/c/cairo-dock/cairo-dock-dev_2.0.8.2-1_i386.deb
cairo-dock_2.0.8.2-1.diff.gz
  to pool/main/c/cairo-dock/cairo-dock_2.0.8.2-1.diff.gz
cairo-dock_2.0.8.2-1.dsc
  to pool/main/c/cairo-dock/cairo-dock_2.0.8.2-1.dsc
cairo-dock_2.0.8.2-1_i386.deb
  to pool/main/c/cairo-dock/cairo-dock_2.0.8.2-1_i386.deb
cairo-dock_2.0.8.2.orig.tar.gz
  to pool/main/c/cairo-dock/cairo-dock_2.0.8.2.orig.tar.gz


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



Accepted cwiid 0.6.00+svn201-1 (source all amd64)

2009-09-28 Thread Romain Beauxis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 00:04:05 -0500
Source: cwiid
Binary: python-cwiid libcwiid1 cwiid-dbg libcwiid1-dev libcwiid-dev lswm wmgui 
wminput
Architecture: source all amd64
Version: 0.6.00+svn201-1
Distribution: unstable
Urgency: low
Maintainer: Romain Beauxis to...@rastageeks.org
Changed-By: Romain Beauxis to...@rastageeks.org
Description: 
 cwiid-dbg  - library to interface with the wiimote -- debug files
 libcwiid-dev - library to interface with the wiimote -- development
 libcwiid1  - library to interface with the wiimote -- runtime files
 libcwiid1-dev - library to interface with the wiimote -- dummy package
 lswm   - wiimote discover utility
 python-cwiid - library to interface with the wiimote
 wmgui  - GUI interface to the wiimote
 wminput- Userspace driver for the wiimote
Changes: 
 cwiid (0.6.00+svn201-1) unstable; urgency=low
 .
   * New svn snapshot.
   * Dropped patch applied upstream.
   * Bumped standards version to 3.8.3
   * Added debug package.
   * Added Homepage: tag in debian/control
   * Renamed libcwiid1-dev to libcwiid-dev
   * Install cwiid.pc file in libcwiid-dev
 to enable pkg-config support.
Checksums-Sha1: 
 99ef12929af032709d14a454b5bdf7131ba2ba6b 1593 cwiid_0.6.00+svn201-1.dsc
 5180c95d6161cb1860b773d52cc66719ce9ef8d1 148524 cwiid_0.6.00+svn201.orig.tar.gz
 f78333d6a847a8c1c5ae171b553c244bdeb85ddc 18866 cwiid_0.6.00+svn201-1.diff.gz
 9c6deb39a01063d32d413794f7484afaaabff0df 10026 
libcwiid1-dev_0.6.00+svn201-1_all.deb
 1fe1b391a6f7aead04c643bd1cdbf1b02026e76f 20756 
python-cwiid_0.6.00+svn201-1_amd64.deb
 6f73ffba2298cd1f24b445736a7c876c83142f6e 24480 
libcwiid1_0.6.00+svn201-1_amd64.deb
 c35d70c280919c8cb9228edad81906ce49323c55 132390 
cwiid-dbg_0.6.00+svn201-1_amd64.deb
 f297be2205f063db8f2d2205d1e3738a05bf5c3c 26966 
libcwiid-dev_0.6.00+svn201-1_amd64.deb
 c932b56dd8fd80c1b708fb29e00c3819f391d7d7 13920 lswm_0.6.00+svn201-1_amd64.deb
 490f489482b311bcafe0807f2b93ee0fad8de0f1 50108 wmgui_0.6.00+svn201-1_amd64.deb
 df52ce23380265f680c5989e1742cdaacfbf4769 57818 
wminput_0.6.00+svn201-1_amd64.deb
Checksums-Sha256: 
 385dff17e8987eb07ab8225b2c4acd262656324303a2593de65e513f44cc2fa4 1593 
cwiid_0.6.00+svn201-1.dsc
 357252e5b3bf564b71a3f213cb8c52797d305d232a157dc18ce6b75afdcf4771 148524 
cwiid_0.6.00+svn201.orig.tar.gz
 12683e3e8bf6728f0966ec969ac8d0c3d7f4f5d1d569f96342dfaa87fd63e1c2 18866 
cwiid_0.6.00+svn201-1.diff.gz
 a7188031cf63d3ee319df4dcb3db74018eb6e04b790c1e126f527aa37ef0411f 10026 
libcwiid1-dev_0.6.00+svn201-1_all.deb
 7be02f91684d20558f5b8059e0eb796dce37d96f49355a49d7371bc6896268c7 20756 
python-cwiid_0.6.00+svn201-1_amd64.deb
 b65c5b4012a119dd9dfbb0e257bf99d219aa3159eda4ffc1317f8653d0c3298b 24480 
libcwiid1_0.6.00+svn201-1_amd64.deb
 6dd1d5ead6a76ccf36e6acf05e2949f37fa7921a66b6ba8a032addce8c85c621 132390 
cwiid-dbg_0.6.00+svn201-1_amd64.deb
 93c75f0dd399da2daa96d08849fffb357bd5e0c4249af5b1bf19770a84a85517 26966 
libcwiid-dev_0.6.00+svn201-1_amd64.deb
 9ec9f9390e4cfeabd41df06e35285d878987d743a19bd1048dd16a5aa8995de2 13920 
lswm_0.6.00+svn201-1_amd64.deb
 4e8224e4a0057a442f1d3a8fe1e06f46bb54498fd51c00931644fdc780aa192a 50108 
wmgui_0.6.00+svn201-1_amd64.deb
 d90e0b5902afc2f5399bf81e8380aec6115f410cbbd87e81db2d8c272a6cfc2e 57818 
wminput_0.6.00+svn201-1_amd64.deb
Files: 
 9fb558b6f4cadb3fa27dee4e77f0589f 1593 utils extra cwiid_0.6.00+svn201-1.dsc
 a57605bba039dd2d4460574574f950e7 148524 utils extra 
cwiid_0.6.00+svn201.orig.tar.gz
 1df2d7a256ff3fad4c52a75caf0dea00 18866 utils extra 
cwiid_0.6.00+svn201-1.diff.gz
 5ad28aba2a55bbbff36c5361107ba5e0 10026 libdevel extra 
libcwiid1-dev_0.6.00+svn201-1_all.deb
 e20a3274454991213b07f0911c0ac60a 20756 python extra 
python-cwiid_0.6.00+svn201-1_amd64.deb
 60daf5783fd3ff5c16225e71ef5efb43 24480 libs extra 
libcwiid1_0.6.00+svn201-1_amd64.deb
 471ec2f9bc6aab9b747c4b71ef8de6b1 132390 debug extra 
cwiid-dbg_0.6.00+svn201-1_amd64.deb
 1fd0690ce6c60a66741b5bf8a6e51c14 26966 libdevel extra 
libcwiid-dev_0.6.00+svn201-1_amd64.deb
 c7687e8a1b28858cdf025d95eef25738 13920 utils extra 
lswm_0.6.00+svn201-1_amd64.deb
 edf822ae2b8619a366bfce5fe2a449be 50108 utils extra 
wmgui_0.6.00+svn201-1_amd64.deb
 a89b5a4eaff14f4664e3b985cf09d453 57818 utils extra 
wminput_0.6.00+svn201-1_amd64.deb

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

iQEcBAEBAgAGBQJKwE5cAAoJEAC5aaocqV0ZQAcIAKdZGafhwaZWd4HGH3DHIfDk
BQu6RdKuO2FSVUf232YpWTQV20nyGGps74fpJ/K691DUBAUJXyKOX235j6igjL+h
zR3eLfceTHI+k/U4k+Kw8hvP7p09miHxxCIR3EhFKCtq5ZB94e8gdqxoIaVhrOm4
/VbzcPQT1hcn9xtbuPAcsr3UEn3PjYqICGrxVUJOlCmsdubKkaruz5lQdqC0NM3r
i6igIYdw6TMmpAnct+fgCq50Mfhuli99xWDvYr1kf6HwmEhrknIrk/APyV+IE1w2
Ty/B3hs6eY6oE1ndyLPhf8zoidQIjqupy/pMwIxMvuwjaWMTyS8oUqd0W8CABTQ=
=41s/
-END PGP SIGNATURE-


Accepted:
cwiid-dbg_0.6.00+svn201-1_amd64.deb
  to pool/main/c/cwiid/cwiid-dbg_0.6.00+svn201-1_amd64.deb
cwiid_0.6.00+svn201-1.diff.gz
  to pool/main/c/cwiid/cwiid_0.6.00+svn201-1.diff.gz

Accepted libcanberra 0.18 (source all amd64)

2009-09-28 Thread Marc-André Lureau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Sep 2009 01:24:03 +0200
Source: libcanberra
Binary: libcanberra0 libcanberra0-dbg libcanberra-dev libcanberra-pulse 
libcanberra-pulse-dbg libcanberra-gstreamer libcanberra-gstreamer-dbg 
libcanberra-gtk0 libcanberra-gtk0-dbg libcanberra-gtk-dev 
libcanberra-gtk-module gnome-session-canberra libcanberra-gtk-module-dbg 
libcanberra-doc
Architecture: source all amd64
Version: 0.18
Distribution: unstable
Urgency: low
Maintainer: Marc-Andre Lureau marcandre.lur...@gmail.com
Changed-By: Marc-André Lureau marcandre.lur...@gmail.com
Description: 
 gnome-session-canberra - GNOME session log in and log out sound events
 libcanberra-dev - a simple abstract interface for playing event sounds
 libcanberra-doc - a simple abstract interface for playing event sounds - doc
 libcanberra-gstreamer - GStreamer backend for libcanberra
 libcanberra-gstreamer-dbg - GStreamer libcanberra backend detached debugging 
symbols
 libcanberra-gtk-dev - a simple abstract interface for playing event sounds
 libcanberra-gtk-module - translates Gtk+ widgets signals to event sounds
 libcanberra-gtk-module-dbg - libcanberra GtkModule detached debugging symbols
 libcanberra-gtk0 - Gtk+ helper for playing widget event sounds with libcanberra
 libcanberra-gtk0-dbg - libcanberra-gtk libraries detached debugging symbols
 libcanberra-pulse - PulseAudio backend for libcanberra
 libcanberra-pulse-dbg - PulseAudio libcanberra backend detached debugging 
symbols
 libcanberra0 - a simple abstract interface for playing event sounds
 libcanberra0-dbg - libcanberra libraries detached debugging symbols
Closes: 536535 545759
Changes: 
 libcanberra (0.18) unstable; urgency=low
 .
   * New Upstream Version
   * libcanberra0.symbols updated.
   * Packaged the gstreamer backend. Closes: #536535
   * Fix the libcanberra-pulse section. Closes: #545759
   * Added some *-dbg packages.
Checksums-Sha1: 
 2c30d75b0fdf9f2c50395dd81333c2acf14a2f17 1493 libcanberra_0.18.dsc
 16e80b5e759ce8cf769bfa72db4f862fba357e0b 466389 libcanberra_0.18.tar.gz
 088ce8001a5839ec84e988dc8cd18fc1dac22005 6554 
gnome-session-canberra_0.18_all.deb
 882d8316605677bc148ffce47f4dc648eb65269c 26528 libcanberra-doc_0.18_all.deb
 ea60c9c266cac15d9a5b73a46c49c8bf2dc98b2b 43236 libcanberra0_0.18_amd64.deb
 cc87d6baca4d1f5a5974bec45d35ccfebca177b6 68270 libcanberra0-dbg_0.18_amd64.deb
 27677cbcbfc3bf38caa05c90f947411ebde5cb93 11314 libcanberra-dev_0.18_amd64.deb
 7071a1a7f4dd90652e3148210c5831688721b06a 17984 libcanberra-pulse_0.18_amd64.deb
 3b230909aebaa145e83e3f2765d2b99a746099c0 24474 
libcanberra-pulse-dbg_0.18_amd64.deb
 ecd4373f7bff29584933e581148ed353b6521b6a 14224 
libcanberra-gstreamer_0.18_amd64.deb
 a66184386303e944989fe152eeb75ba7257db1d1 23366 
libcanberra-gstreamer-dbg_0.18_amd64.deb
 11aa3dd2dbd9cf38dd3c1b8b842dfeee90dea00b 17370 libcanberra-gtk0_0.18_amd64.deb
 ce9e507784e077950b207bc89e43359530f94ed9 28782 
libcanberra-gtk0-dbg_0.18_amd64.deb
 03dfe1476e6f4e419b46d0db1f0ab46d74b993f8 7404 
libcanberra-gtk-dev_0.18_amd64.deb
 e3075e45d7e723a158b448afc2ce684fa5620190 15724 
libcanberra-gtk-module_0.18_amd64.deb
 012df9cade4b6ac96fc1906b3653441ac61ded03 29430 
libcanberra-gtk-module-dbg_0.18_amd64.deb
Checksums-Sha256: 
 23aab77aa0524928bdf641a06a023f23ad005f21da5bb7506fe0118b76d0c507 1493 
libcanberra_0.18.dsc
 f37cfd7d4c330b52d96594b23cb14d75ec561c0063a16b18b322b2631375fe24 466389 
libcanberra_0.18.tar.gz
 def839786964cbfa6fd7aca290ad2fb4d9178c9d176c33c49a571d303e22f76a 6554 
gnome-session-canberra_0.18_all.deb
 beafcb4aea3f05e1f99a56c6225c267f1638b5584feda9f6f86e7ee0366b7142 26528 
libcanberra-doc_0.18_all.deb
 6769ab0b6f4b006d667fd44712fe7b60651529809ba2086d3937f405d4a46f9d 43236 
libcanberra0_0.18_amd64.deb
 e6f0be4b989f590f657578980114bb9ef4c9f1d50f53435b88f690b95c509eca 68270 
libcanberra0-dbg_0.18_amd64.deb
 3d21b1aaa8b1590f9acb581911cfc54ac839b6c0c401a962fa30ab683833e622 11314 
libcanberra-dev_0.18_amd64.deb
 5e205801fc5ef4c5e553fc21309f51ce03c3115aa8237514ad89c87f7d5accca 17984 
libcanberra-pulse_0.18_amd64.deb
 5e3973b017dee1bb06e7a4d19bb6b8d22ce6282bcd0b96a1238ca395bb1a768c 24474 
libcanberra-pulse-dbg_0.18_amd64.deb
 a1d7a98a1068a6853197cee8d3005b4ef813ece52c56d204c2b074adc3eaf2c4 14224 
libcanberra-gstreamer_0.18_amd64.deb
 eb810d88dd1c7fddb85bc2177b79d1cb4b414a5c47016dcd110519f99701c3ef 23366 
libcanberra-gstreamer-dbg_0.18_amd64.deb
 598500da76f744e6d6a0628fd04efe57eaa10f08fadd4c3bb1021976ea22ec33 17370 
libcanberra-gtk0_0.18_amd64.deb
 9a44bfefe8fd9719316a519b57743cada336811856008dba248b33b296f13e54 28782 
libcanberra-gtk0-dbg_0.18_amd64.deb
 d6b873ecfe52cebe9852763e27cfda7081c179f42054fdcc4c054d15cb2c06aa 7404 
libcanberra-gtk-dev_0.18_amd64.deb
 29a54d7a54ad79cb04c1468d4c563fe6364aab1b4a4add4f2590b9485daee233 15724 
libcanberra-gtk-module_0.18_amd64.deb
 c8c6278b7b6c7e4c62b98b338e53541b5d31e876cd80adb76ed77fe255f85a31 29430 
libcanberra-gtk-module-dbg_0.18_amd64.deb
Files: 
 

Accepted scilab-scimax 2.0.1-3 (source all i386)

2009-09-28 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 26 Sep 2009 13:44:22 +0200
Source: scilab-scimax
Binary: scilab-scimax scilab-scimax-doc
Architecture: source all i386
Version: 2.0.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 scilab-scimax - Symbolic computations for Scilab based on Maxima
 scilab-scimax-doc - Symbolic computations for Scilab based on Maxima - 
Documentation
Changes: 
 scilab-scimax (2.0.1-3) unstable; urgency=low
 .
   * Build of the documentation is now done when only building arch dep packages
Checksums-Sha1: 
 c1a4460b74f6f223c1943421f228e54c5e5d3aa3 1432 scilab-scimax_2.0.1-3.dsc
 f78e499a4d9d369ee49fc7a32a17e887797216fc  scilab-scimax_2.0.1-3.diff.gz
 9b51650198a1eebe9acc3872d8a66401741c3d50 7774130 
scilab-scimax-doc_2.0.1-3_all.deb
 09d3a62439dfa1f73ca3632a5ebf562e27f106e4 340206 scilab-scimax_2.0.1-3_i386.deb
Checksums-Sha256: 
 507b95fb24133d77dd6e0f598074bebd303de38348c5328f14e11be3e410ee66 1432 
scilab-scimax_2.0.1-3.dsc
 055657031707ba069ae9b0b25514662bce1e79ef83caf133326c5e77a0658a37  
scilab-scimax_2.0.1-3.diff.gz
 a21495e0bf29b50cd567acd2c5440d16f8c33c18bfdfbafd76be7de4a22c08af 7774130 
scilab-scimax-doc_2.0.1-3_all.deb
 27eb2db7602ae81e815a6651f19c543bc8d070bdb255f86d048004f9e1dfae3b 340206 
scilab-scimax_2.0.1-3_i386.deb
Files: 
 d92d2856522129d103a432774b15d539 1432 math optional scilab-scimax_2.0.1-3.dsc
 920ebc1e8ce2fed0b432ba51268b2610  math optional 
scilab-scimax_2.0.1-3.diff.gz
 c41186e10e197ddc77ccf8d4bdd673b3 7774130 doc optional 
scilab-scimax-doc_2.0.1-3_all.deb
 f8affe2c35181d76f30015240318721c 340206 math optional 
scilab-scimax_2.0.1-3_i386.deb

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

iEYEARECAAYFAkrAVQwACgkQiOXXM92JlhCVswCfRWq1DMVPzbx9aTMBZVdo+w2f
ajsAoIrQrv95gc30CdJMjxB2LrOiLgxg
=I4iF
-END PGP SIGNATURE-


Accepted:
scilab-scimax-doc_2.0.1-3_all.deb
  to pool/main/s/scilab-scimax/scilab-scimax-doc_2.0.1-3_all.deb
scilab-scimax_2.0.1-3.diff.gz
  to pool/main/s/scilab-scimax/scilab-scimax_2.0.1-3.diff.gz
scilab-scimax_2.0.1-3.dsc
  to pool/main/s/scilab-scimax/scilab-scimax_2.0.1-3.dsc
scilab-scimax_2.0.1-3_i386.deb
  to pool/main/s/scilab-scimax/scilab-scimax_2.0.1-3_i386.deb


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



Accepted eog-plugins 2.28.0-1 (source i386)

2009-09-28 Thread Luca Bruno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 25 Sep 2009 21:42:35 +0200
Source: eog-plugins
Binary: eog-plugins
Architecture: source i386
Version: 2.28.0-1
Distribution: unstable
Urgency: low
Maintainer: Luca Bruno lethalma...@gmail.com
Changed-By: Luca Bruno lethalma...@gmail.com
Description: 
 eog-plugins - set of plugins for eog
Closes: 546995
Changes: 
 eog-plugins (2.28.0-1) unstable; urgency=low
 .
   [ Luca Bruno ]
   * Initial release (Closes: #546995)
   * Add libgconf2-dev to build depends, even it's not mentioned in
 configure.ac exif plugins use its symbols.
 .
   [ Emilio Pozuelo Monfort ]
   * debian/copyright: Add missing copyright holders.
   * Add gconf2 to build depends.
Checksums-Sha1: 
 6c2600b1d1f9ea99e7da85527cd2fc40f1b5b35f 1702 eog-plugins_2.28.0-1.dsc
 38162d2bc5ce4c8f79c7d6355d9c718c1e2fd08f 387919 eog-plugins_2.28.0.orig.tar.gz
 afca24369aab0035747f5e12338dd45db02190b9 2515 eog-plugins_2.28.0-1.diff.gz
 426d92c4dc94317162f912052ea3dae338ed879d 63752 eog-plugins_2.28.0-1_i386.deb
Checksums-Sha256: 
 3e1c3ec5936c8ff8620b908220f6025c5e563ec4003bf68a34e24fb254984a23 1702 
eog-plugins_2.28.0-1.dsc
 3450ad55e360541deee041108b8270ba02e0b806397524dca2c4a0bb9d5915f3 387919 
eog-plugins_2.28.0.orig.tar.gz
 aa0482ad22299c78d2db2482ea7ea60da1b60adad2045474c7eb011513217cd4 2515 
eog-plugins_2.28.0-1.diff.gz
 8f033329e5b875440be362663d78e590e0fdce2c788b93c3c337dd6a6f45b4f4 63752 
eog-plugins_2.28.0-1_i386.deb
Files: 
 9b87dda7ac6e35fa36b75cf0a68dce98 1702 gnome optional eog-plugins_2.28.0-1.dsc
 7932d5eba7d3c4839f3fdebe3de42fb9 387919 gnome optional 
eog-plugins_2.28.0.orig.tar.gz
 7df55dfdc640255d838c94b049455345 2515 gnome optional 
eog-plugins_2.28.0-1.diff.gz
 ae102077e5f40f9fd03dcbf30b0397af 63752 gnome optional 
eog-plugins_2.28.0-1_i386.deb

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

iEYEARECAAYFAkq/kMwACgkQhTV17EoIsv4pwgCgyX9BA8hNPwMfosAPUQnu6YeR
vokAoIqX1Kgd2dMYjuk9RNWFjKleEFi6
=yjBp
-END PGP SIGNATURE-


Accepted:
eog-plugins_2.28.0-1.diff.gz
  to pool/main/e/eog-plugins/eog-plugins_2.28.0-1.diff.gz
eog-plugins_2.28.0-1.dsc
  to pool/main/e/eog-plugins/eog-plugins_2.28.0-1.dsc
eog-plugins_2.28.0-1_i386.deb
  to pool/main/e/eog-plugins/eog-plugins_2.28.0-1_i386.deb
eog-plugins_2.28.0.orig.tar.gz
  to pool/main/e/eog-plugins/eog-plugins_2.28.0.orig.tar.gz


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



Accepted ply 3.3-1 (source all)

2009-09-28 Thread Arnaud Fontaine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 11:18:22 +0100
Source: ply
Binary: python-ply python-ply-doc
Architecture: source all
Version: 3.3-1
Distribution: unstable
Urgency: low
Maintainer: Arnaud Fontaine ar...@debian.org
Changed-By: Arnaud Fontaine ar...@debian.org
Description: 
 python-ply - Lex and Yacc implementation for Python
 python-ply-doc - Lex and Yacc implementation for Python
Closes: 546430
Changes: 
 ply (3.3-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control:
 + Depend on python-pkg-resources instead of python-setuptools as the
   latter is not necessary on runtime. Closes: #546430.
 + Update Standards-Version to 3.8.3. No changes needed.
 + Bump python-support version to 0.90.
   * Remove useless debian/pycompat.
Checksums-Sha1: 
 f02b1db2558519f670de9f70678bf4cdb4544d54 1350 ply_3.3-1.dsc
 23291d8127f9f7189957fe1ff8925494e389fca3 138663 ply_3.3.orig.tar.gz
 563add54cfddb71ca94ea31552ef1c18efc89ec8 3312 ply_3.3-1.diff.gz
 c925171a89d4e67b5e40427e2dc0ed3ed32a9018 67458 python-ply_3.3-1_all.deb
 ace60dc0ffdb37a37f1a762445980822c3bb9243 92676 python-ply-doc_3.3-1_all.deb
Checksums-Sha256: 
 67c04b9a822eb6a1cf38998d197231773b3da788bc070335c2e68735199d6f0f 1350 
ply_3.3-1.dsc
 052f3ba1838e8dfaa7d0b4f2f3957911423f0992c4c240ccfd7ec0c7dd84330b 138663 
ply_3.3.orig.tar.gz
 019e5fa13e286993c93373ada31cf4aab5bf274d0de7ee32b1afd007f112dd9d 3312 
ply_3.3-1.diff.gz
 b101fc60425c6434a481fd5e607a3cc233519259c037237a6f97f3972409a430 67458 
python-ply_3.3-1_all.deb
 5e6d91afc6e0241ece3a0c2ff5b6ed728345b4f0c32dac1c5c995a931794c009 92676 
python-ply-doc_3.3-1_all.deb
Files: 
 355edcd48fae8350f7c95350538e929b 1350 python optional ply_3.3-1.dsc
 4a7f837f71a7c1ea6b5b0c57272909c7 138663 python optional ply_3.3.orig.tar.gz
 a63b1edd4b8c06962d213bb04493a9f0 3312 python optional ply_3.3-1.diff.gz
 7ea2615396e70d0df639f80a20eef236 67458 python optional python-ply_3.3-1_all.deb
 febbaa8e21287e6fa684902831ad1bb5 92676 doc optional 
python-ply-doc_3.3-1_all.deb

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

iEYEARECAAYFAkrAlgMACgkQvfKiIF42GdPMawCdGB3BFBYVcJcfcdzDHIu9B4II
IugAoJim++AIBerkCKs38I4TKsld0kux
=IeRj
-END PGP SIGNATURE-


Accepted:
ply_3.3-1.diff.gz
  to pool/main/p/ply/ply_3.3-1.diff.gz
ply_3.3-1.dsc
  to pool/main/p/ply/ply_3.3-1.dsc
ply_3.3.orig.tar.gz
  to pool/main/p/ply/ply_3.3.orig.tar.gz
python-ply-doc_3.3-1_all.deb
  to pool/main/p/ply/python-ply-doc_3.3-1_all.deb
python-ply_3.3-1_all.deb
  to pool/main/p/ply/python-ply_3.3-1_all.deb


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



Accepted policykit-1-gnome 0.94-1 (source i386)

2009-09-28 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 00:13:17 +0200
Source: policykit-1-gnome
Binary: policykit-1-gnome libpolkit-gtk-1-0 libpolkit-gtk-1-dev
Architecture: source i386
Version: 0.94-1
Distribution: unstable
Urgency: low
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 libpolkit-gtk-1-0 - PolicyKit GTK+ API
 libpolkit-gtk-1-dev - PolicyKit GTK+ API - development files
 policykit-1-gnome - GNOME authentication agent for PolicyKit-1
Changes: 
 policykit-1-gnome (0.94-1) unstable; urgency=low
 .
   * New upstream version which uses the new PolicyKit-1 API. Rename the
 package to make it co-installable with policykit-gnome until everything is
 ported over.
   * Drop all patches, as they no longer apply or have been fixed upstream.
   * debian/control
 - Update Build-Depends
   + Drop libgnome2-dev, libgnomeui-dev, libpolkit-dbus-dev,
 libpolkit-grant-dev, gnome-doc-utils and libxml-parser-perl.
   + Add libpolkit-{agent,gobject}-dev (= 0.93).
   + Bump libgtk2.0-dev to (= 2.17.1) and gtk-doc-tools to (= 1.3).
 - Bump Standards-Version to 3.8.3.
   + Add README.source which refers to the quilt documentation.
 - Update Vcs-* fields. Package is now managed using Git and hosted on
   git.debian.org.
   * Update package layout
 - Rename policykit-gnome → policykit-1-gnome.
 - Update libpolkit-gnome → libpolkit-gtk.
 - Drop policykit-gnome-doc, include API documentation in
   libpolkit-gtk-1-dev.
   * Update and revise all *.install files.
   * Add symbols file for libpolkit-gtk.
   * debian/patches/01-xfce-autostart.patch
 - Start authentication agent in XFCE as well. (LP: #417462)
   * debian/rules
 - Enable API documentation.
   * Update watch file.
   * debian/copyright
 - Update copyright holder.
 - The complete package (besides the documentation) is now LGPL-2+.
Checksums-Sha1: 
 aa8ae987c7f9a67dadd6f2ea1f6511cece222769 1530 policykit-1-gnome_0.94-1.dsc
 bf92eb7c1d4a2903d430cdf96639e72eb13aad2c 466760 
policykit-1-gnome_0.94.orig.tar.gz
 947c686ee5e5fd8fa3db24324aae72c55b87e07b 4212 policykit-1-gnome_0.94-1.diff.gz
 9c16ed70dd7223fe650b7677d415c8c6c5399c62 100122 
policykit-1-gnome_0.94-1_i386.deb
 a2c0387e040c6b7437e70c47bde4f5d7dedbed79 16042 
libpolkit-gtk-1-0_0.94-1_i386.deb
 6bd98ee7939a6510699ca32230bb4612ac1726f3 34040 
libpolkit-gtk-1-dev_0.94-1_i386.deb
Checksums-Sha256: 
 133d6984a4e8fbcf4c6e44c59c07e5594b96198a8f35901722b58a6c25fe4469 1530 
policykit-1-gnome_0.94-1.dsc
 0db3b231de3fede87c8252adca7e10c47d1d7e90598f7651ce10aed04fb1b3a1 466760 
policykit-1-gnome_0.94.orig.tar.gz
 fbcb9c26c87e0d651c6e0faf1f8cdc8c853653cb0177d009ef90320b9178a67a 4212 
policykit-1-gnome_0.94-1.diff.gz
 e6a03fa01b0ff5114660abaa719afe49e5fdbb1a849b0b8741c46013e01ed2ba 100122 
policykit-1-gnome_0.94-1_i386.deb
 aef0dc6bb0442f8b225f7d0c1d0d091777fa4ac20f7d6e244516d201722763b0 16042 
libpolkit-gtk-1-0_0.94-1_i386.deb
 340ed0088c51ba7c854b5d93f8313084e7230ae45f75f546e755c1bfbeaea19b 34040 
libpolkit-gtk-1-dev_0.94-1_i386.deb
Files: 
 cf90d3d6385ab6f09342b8a912a03183 1530 gnome optional 
policykit-1-gnome_0.94-1.dsc
 06167e2d52ea6a88aadb6483d8d36f72 466760 gnome optional 
policykit-1-gnome_0.94.orig.tar.gz
 eba8b32e04a493305f291b0ea0d6de8e 4212 gnome optional 
policykit-1-gnome_0.94-1.diff.gz
 16d04db81aa51a660ebf9d1116fbf9de 100122 gnome optional 
policykit-1-gnome_0.94-1_i386.deb
 777be1f2ffeaeac70379fb65ae813f92 16042 libs optional 
libpolkit-gtk-1-0_0.94-1_i386.deb
 4b5d60e6ec045779c8f376f838304d4e 34040 libdevel optional 
libpolkit-gtk-1-dev_0.94-1_i386.deb

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

iEYEARECAAYFAkq/5t4ACgkQh7PER70FhVTpGQCgg9NldtEfYH4gO/q//LpZZmMw
EUsAnRAvHVZiGep1koZJDr5Y8viD/DdR
=Pj0Y
-END PGP SIGNATURE-


Accepted:
libpolkit-gtk-1-0_0.94-1_i386.deb
  to pool/main/p/policykit-1-gnome/libpolkit-gtk-1-0_0.94-1_i386.deb
libpolkit-gtk-1-dev_0.94-1_i386.deb
  to pool/main/p/policykit-1-gnome/libpolkit-gtk-1-dev_0.94-1_i386.deb
policykit-1-gnome_0.94-1.diff.gz
  to pool/main/p/policykit-1-gnome/policykit-1-gnome_0.94-1.diff.gz
policykit-1-gnome_0.94-1.dsc
  to pool/main/p/policykit-1-gnome/policykit-1-gnome_0.94-1.dsc
policykit-1-gnome_0.94-1_i386.deb
  to pool/main/p/policykit-1-gnome/policykit-1-gnome_0.94-1_i386.deb
policykit-1-gnome_0.94.orig.tar.gz
  to pool/main/p/policykit-1-gnome/policykit-1-gnome_0.94.orig.tar.gz


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



Accepted slv2 0.6.6-2 (source all amd64)

2009-09-28 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Sep 2009 16:51:32 +0200
Source: slv2
Binary: libslv2-9 libslv2-dev slv2-jack slv2-doc
Architecture: source amd64 all
Version: 0.6.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description: 
 libslv2-9  - A library for simple use of LV2 plugins
 libslv2-dev - Development files (headers) for SLV2 library
 slv2-doc   - Documentation for SLV2
 slv2-jack  - Jack support for LV2 plugins
Changes: 
 slv2 (0.6.6-2) unstable; urgency=low
 .
   * Changed lincense to glp-2 and reworked lincese exceptions files in
 copyright file
Checksums-Sha1: 
 5b1abb0b1f5e6b3c8f8015848ed4750d23bd845e 1326 slv2_0.6.6-2.dsc
 4847175f304b802376944fd478d94df83d439122 195451 slv2_0.6.6.orig.tar.gz
 378479974d7b0071f31353a56f570ac03a43f87e 3307 slv2_0.6.6-2.diff.gz
 fd7aba5a309985de0afb0da9d239cfde024e6654 39708 libslv2-9_0.6.6-2_amd64.deb
 d44d44bd9dbf0f307d1048cbad53e1936454ea0e 22836 libslv2-dev_0.6.6-2_amd64.deb
 b84309734079dc059f9f5ab72805ec4e072b4e60 22450 slv2-jack_0.6.6-2_amd64.deb
 23870e00bdefc73b7b758aaaedee92502c0aab1e 48346 slv2-doc_0.6.6-2_all.deb
Checksums-Sha256: 
 b973e99ddf191f9eabc1613421593298de4f187ae15c7b64ae28920da61614d3 1326 
slv2_0.6.6-2.dsc
 0052c73d13c59bd251d417b7ab0ff46a1e7a17e452057b5dd80b42221d64d324 195451 
slv2_0.6.6.orig.tar.gz
 01bdad58eacf3946d1b05d66b27d48abd4ed777902db4994e29bb224e470e6f8 3307 
slv2_0.6.6-2.diff.gz
 fc8fc7d148085bbce734faa1d72c1eae0d3f2252e1fd76286fce19433949ff80 39708 
libslv2-9_0.6.6-2_amd64.deb
 6648a824d50d6520e120f983f50eed6a5a96ffdf49cfad00b1da63bafdb2d028 22836 
libslv2-dev_0.6.6-2_amd64.deb
 4a406247bd14055434f6bb6576426ca86a4a07acaac42678987cd25208ce7cd1 22450 
slv2-jack_0.6.6-2_amd64.deb
 25713a4f9a92c30e5a7de1811bec60e67297caeabbc8db4a8dcb9f86d2a52b05 48346 
slv2-doc_0.6.6-2_all.deb
Files: 
 a8893940407163b33ab2a60de9bd72ef 1326 sound optional slv2_0.6.6-2.dsc
 b48464d5bebfed208cf27fd6f42cd33d 195451 sound optional slv2_0.6.6.orig.tar.gz
 b248e08594576fbc37b356d0c1a89f4b 3307 sound optional slv2_0.6.6-2.diff.gz
 0776706976a237aceea9eae796a0950a 39708 libs optional 
libslv2-9_0.6.6-2_amd64.deb
 c891aa560b311811f4f1b88da70228e6 22836 libdevel optional 
libslv2-dev_0.6.6-2_amd64.deb
 6abb84f5e749d854226d60a1d1eef9e7 22450 utils optional 
slv2-jack_0.6.6-2_amd64.deb
 84a9d71557731a2213330f8592bd0d1e 48346 doc optional slv2-doc_0.6.6-2_all.deb

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

iEYEARECAAYFAkq/gQkACgkQcanJGlcVnlmL5QCePaCSaYkvMOo2eYcXJxQpfnQx
BBAAn1UgH5d4xZquqrGiMm1SlKm/9onb
=JaKF
-END PGP SIGNATURE-


Accepted:
libslv2-9_0.6.6-2_amd64.deb
  to pool/main/s/slv2/libslv2-9_0.6.6-2_amd64.deb
libslv2-dev_0.6.6-2_amd64.deb
  to pool/main/s/slv2/libslv2-dev_0.6.6-2_amd64.deb
slv2-doc_0.6.6-2_all.deb
  to pool/main/s/slv2/slv2-doc_0.6.6-2_all.deb
slv2-jack_0.6.6-2_amd64.deb
  to pool/main/s/slv2/slv2-jack_0.6.6-2_amd64.deb
slv2_0.6.6-2.diff.gz
  to pool/main/s/slv2/slv2_0.6.6-2.diff.gz
slv2_0.6.6-2.dsc
  to pool/main/s/slv2/slv2_0.6.6-2.dsc
slv2_0.6.6.orig.tar.gz
  to pool/main/s/slv2/slv2_0.6.6.orig.tar.gz


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



Accepted libgsm0710 1.2.0-1 (source i386)

2009-09-28 Thread Heiko Stuebner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 18 Sep 2009 22:28:12 +0200
Source: libgsm0710
Binary: libgsm0710-dev libgsm0710-0 libgsm0710-dbg
Architecture: source i386
Version: 1.2.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian FreeSmartphone.Org Team 
pkg-fso-ma...@lists.alioth.debian.org
Changed-By: Heiko Stuebner he...@sntech.de
Description: 
 libgsm0710-0 - Implementation of the 3GPP GSM 07.10 multiplexing protocol
 libgsm0710-dbg - debugging symbols for use with libgsm0710
 libgsm0710-dev - development files for use with libgsm0710
Changes: 
 libgsm0710 (1.2.0-1) unstable; urgency=low
 .
   * Upstream release of the previous snapshot
   * Initial upload to unstable
 .
 libgsm0710 (1.1.3+git20090820-1) UNRELEASED; urgency=low
 .
   * New upstream snapshot
 .
 libgsm0710 (1.1.3-1) UNRELEASED; urgency=low
 .
   * New upstream release
 .
 libgsm0710 (1.1.1+git20090427-1) pkg-fso; urgency=low
 .
   * New upstream snapshot
   * Initial upload to pkg-fso
 .
 libgsm0710 (1.1.1+git20090426-2) pkg-fso; urgency=low
 .
   * Improved packaging
 .
 libgsm0710 (1.1.1+git20090426-1) UNRELEASED; urgency=low
 .
   * New upstream snapshot
   * Improved package-descriptions
 .
 libgsm0710 (1.1.1+git20090419-1) UNRELEASED; urgency=low
 .
   * New upstream snapshot
   * cbds based buildsystem
 .
 libgsm0710 (1.1.1+git20090407-2) UNRELEASED; urgency=low
 .
   * Corrected shlibs generation
 .
 libgsm0710 (1.1.1+git20090407-1) UNRELEASED; urgency=low
 .
   * Initial release
Checksums-Sha1: 
 3dbedeaa15b4334524811e5fa03e339692296c69 1286 libgsm0710_1.2.0-1.dsc
 fd3625f6f17c816151c132255cb275b94a7c4bf4 286039 libgsm0710_1.2.0.orig.tar.gz
 a4a30b476e69090b401a8a2551135b27f0bdfc83 2635 libgsm0710_1.2.0-1.diff.gz
 49ca4999deecf0287391a38dcdf29424ca4f3c04 5678 libgsm0710-dev_1.2.0-1_i386.deb
 b9ec80d7e2eddcbd9d4cc6f13040af485650ddfa 8050 libgsm0710-0_1.2.0-1_i386.deb
 7619bf1e50a43517319ff59de76fa8dc0692545d 9740 libgsm0710-dbg_1.2.0-1_i386.deb
Checksums-Sha256: 
 86dbb77ddf7da964b59a5fa377ba6a44057cc9e7b7a962e934915e2ca0169684 1286 
libgsm0710_1.2.0-1.dsc
 a6637550f4c59a2e5e18cbb2dbbdbc6a7f05961634333a9d8fa7d0616ec2036c 286039 
libgsm0710_1.2.0.orig.tar.gz
 52ca076127f1b97c9ed1b864f4de4330a20a27dcaddf6310c7bca1d5c7c79fc3 2635 
libgsm0710_1.2.0-1.diff.gz
 7b9502f608e3dd7959a7b3461929f3a8d5bc7312c773fd9c4cd7bf9545e60318 5678 
libgsm0710-dev_1.2.0-1_i386.deb
 eed16c06c3c37c9e4d5fadcd31786c8866ceb2539f55658d049d38ee9cfc4cc4 8050 
libgsm0710-0_1.2.0-1_i386.deb
 4f26282598f827c35de35ff891bb14e54e0980c88a3cb137ce0b5d93ba57b241 9740 
libgsm0710-dbg_1.2.0-1_i386.deb
Files: 
 18ed8eb103d2d6c992ab4713b5e4e880 1286 libs extra libgsm0710_1.2.0-1.dsc
 c58f9100d246dcb1245a5336e26718a9 286039 libs extra libgsm0710_1.2.0.orig.tar.gz
 e0bc1ec06db3172b4f2c38f5ae3a23c2 2635 libs extra libgsm0710_1.2.0-1.diff.gz
 039a36335db303ba7c137b37d0ede928 5678 libdevel extra 
libgsm0710-dev_1.2.0-1_i386.deb
 e0e347e3c17abb19552fa29aacfd21d6 8050 libs extra libgsm0710-0_1.2.0-1_i386.deb
 8c917f14430c62c12e8906e648cada12 9740 debug extra 
libgsm0710-dbg_1.2.0-1_i386.deb

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

iEYEARECAAYFAkq/W7EACgkQv3x5OskTLdt+WQCgiBkLb+cHFyCECMKHmHqTJ/Lv
19UAn3+P9Tcwaqq02/ywZRwazb8IJXFp
=Ld1j
-END PGP SIGNATURE-


Accepted:
libgsm0710-0_1.2.0-1_i386.deb
  to pool/main/libg/libgsm0710/libgsm0710-0_1.2.0-1_i386.deb
libgsm0710-dbg_1.2.0-1_i386.deb
  to pool/main/libg/libgsm0710/libgsm0710-dbg_1.2.0-1_i386.deb
libgsm0710-dev_1.2.0-1_i386.deb
  to pool/main/libg/libgsm0710/libgsm0710-dev_1.2.0-1_i386.deb
libgsm0710_1.2.0-1.diff.gz
  to pool/main/libg/libgsm0710/libgsm0710_1.2.0-1.diff.gz
libgsm0710_1.2.0-1.dsc
  to pool/main/libg/libgsm0710/libgsm0710_1.2.0-1.dsc
libgsm0710_1.2.0.orig.tar.gz
  to pool/main/libg/libgsm0710/libgsm0710_1.2.0.orig.tar.gz


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



Accepted zc.buildout 1.4.1-1 (source all)

2009-09-28 Thread Brian Sutherland
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu,  8 Nov 2007 19:27:48 +0100
Source: zc.buildout
Binary: python-zc.buildout
Architecture: source all
Version: 1.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian/Ubuntu Zope Team 
pkg-zope-develop...@lists.alioth.debian.org
Changed-By: Brian Sutherland br...@vanguardistas.net
Description: 
 python-zc.buildout - system for managing development buildouts
Changes: 
 zc.buildout (1.4.1-1) unstable; urgency=low
 .
   * Initial release.
Checksums-Sha1: 
 990e96f5ddc10621da344a0cb7bc97b3d35b26ac 1253 zc.buildout_1.4.1-1.dsc
 4d4934498cc83497087fd241ff585184ecaad7d9 245359 zc.buildout_1.4.1.orig.tar.gz
 356e8c47db5266f8f56fc55ef2a31da6561c579d 2717 zc.buildout_1.4.1-1.diff.gz
 cbfabdb57642161ca650967da771f884d4ae18bb 146106 
python-zc.buildout_1.4.1-1_all.deb
Checksums-Sha256: 
 1b82d1c329eb75118abe5c5fe1177ccced7e809d0aa554142cc45511d6ef576e 1253 
zc.buildout_1.4.1-1.dsc
 427f7beb29e3f9ca20ebb9b61655b9ade6d1f7ce02994ea97e4c663c4aee739e 245359 
zc.buildout_1.4.1.orig.tar.gz
 2c10271c505abe1f8716251c0b9299f5102b60dd83941be3f10c83f745b464d4 2717 
zc.buildout_1.4.1-1.diff.gz
 e98d2ada326c102f0b942d511ee746d417ba214dd5b06fe703dce1d44c79cbd8 146106 
python-zc.buildout_1.4.1-1_all.deb
Files: 
 a4efc108e4e0694a2fbb35115c399dd3 1253 zope optional zc.buildout_1.4.1-1.dsc
 b710b535a458724551f2676cd92f4246 245359 zope optional 
zc.buildout_1.4.1.orig.tar.gz
 868fe4252df843eaf801732a65dcc41c 2717 zope optional zc.buildout_1.4.1-1.diff.gz
 705a69feff55faaa087ce09f184c6949 146106 zope optional 
python-zc.buildout_1.4.1-1_all.deb

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

iEYEARECAAYFAkq/vqwACgkQK/juK3+WFWS5WgCgirgQtrk4BoRD+InZbSJ8fN3r
yVkAni52nIzgKMiZKLDeQcDqVvtRVTSk
=f+GY
-END PGP SIGNATURE-


Accepted:
python-zc.buildout_1.4.1-1_all.deb
  to pool/main/z/zc.buildout/python-zc.buildout_1.4.1-1_all.deb
zc.buildout_1.4.1-1.diff.gz
  to pool/main/z/zc.buildout/zc.buildout_1.4.1-1.diff.gz
zc.buildout_1.4.1-1.dsc
  to pool/main/z/zc.buildout/zc.buildout_1.4.1-1.dsc
zc.buildout_1.4.1.orig.tar.gz
  to pool/main/z/zc.buildout/zc.buildout_1.4.1.orig.tar.gz


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



Accepted libfsotransport 0.9.5-1 (source i386)

2009-09-28 Thread Heiko Stuebner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 23 Sep 2009 20:50:12 +0200
Source: libfsotransport
Binary: libfsotransport-dev libfsotransport0 libfsotransport-dbg
Architecture: source i386
Version: 0.9.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian FreeSmartphone.Org Team 
pkg-fso-ma...@lists.alioth.debian.org
Changed-By: Heiko Stuebner he...@sntech.de
Description: 
 libfsotransport-dbg - debugging symbols for use with libfsotransport
 libfsotransport-dev - Development files for libfsotransport
 libfsotransport0 - freesmartphone.org transport library
Changes: 
 libfsotransport (0.9.5-1) unstable; urgency=low
 .
   * New upstream-release
Checksums-Sha1: 
 282ee199722dea7f52218effcd54c184bc2d4fd0 1449 libfsotransport_0.9.5-1.dsc
 f677ecc0495e21ae5f4f4aceddfe3d1a0411265a 299787 
libfsotransport_0.9.5.orig.tar.gz
 86dcb36b4d814a61460cc653bcf00147e20dd11b 2679 libfsotransport_0.9.5-1.diff.gz
 38bc2254cdf0cbe3feb2d94bf4ba12f62a02d553 5618 
libfsotransport-dev_0.9.5-1_i386.deb
 f2e2df5d363b55e8f7c687723ae644149a6d684c 11832 
libfsotransport0_0.9.5-1_i386.deb
 bee2c1d0efca30a758e2d7c2aaa07a2de965d15f 19742 
libfsotransport-dbg_0.9.5-1_i386.deb
Checksums-Sha256: 
 d1336e9ca52ea786613cebfc44689e006a7db8980384f0803dfff85c476b255e 1449 
libfsotransport_0.9.5-1.dsc
 4aaab87316f4de3b2ea3e17b2f3d156137a87ea29d5fcd977df8a70b5b897ebd 299787 
libfsotransport_0.9.5.orig.tar.gz
 0de1cff8db94117b8d917ebb514252447a1dc6f780fe1bea2cbbfad59280509d 2679 
libfsotransport_0.9.5-1.diff.gz
 fd18b9b8d76d32871de07c4420fcad4b02722535848e72981e4e79e8d273c1fb 5618 
libfsotransport-dev_0.9.5-1_i386.deb
 6e38d1709e156d47b0928fb367b74b3a36986eddd0bd56b4d859f152c3228ed5 11832 
libfsotransport0_0.9.5-1_i386.deb
 76898410d670b8f39cf803f1a6fba327ec1c4ad4e0a7247fbea9491b1cbdd6aa 19742 
libfsotransport-dbg_0.9.5-1_i386.deb
Files: 
 e0edeef66a5c521ac685c59d31c2153f 1449 libs extra libfsotransport_0.9.5-1.dsc
 1a3c208d1172e2d26d47bdf04b334968 299787 libs extra 
libfsotransport_0.9.5.orig.tar.gz
 be68dde6350fe493a62831934eb2976c 2679 libs extra 
libfsotransport_0.9.5-1.diff.gz
 c6ef0816bee1ba5474a3b5ba0a351432 5618 libdevel extra 
libfsotransport-dev_0.9.5-1_i386.deb
 c9c7e749c83257f5b1bd47ab0c564c1d 11832 libs extra 
libfsotransport0_0.9.5-1_i386.deb
 e9da8e0ae6047385d6be5ffde055d936 19742 debug extra 
libfsotransport-dbg_0.9.5-1_i386.deb

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

iEYEARECAAYFAkq/XmQACgkQv3x5OskTLdtsUwCfV3YSj1AI30adl0ydhg6MZXQz
VRIAnRLgKUmfGge93xKPPZuLpHRmSIlH
=Wqws
-END PGP SIGNATURE-


Accepted:
libfsotransport-dbg_0.9.5-1_i386.deb
  to pool/main/libf/libfsotransport/libfsotransport-dbg_0.9.5-1_i386.deb
libfsotransport-dev_0.9.5-1_i386.deb
  to pool/main/libf/libfsotransport/libfsotransport-dev_0.9.5-1_i386.deb
libfsotransport0_0.9.5-1_i386.deb
  to pool/main/libf/libfsotransport/libfsotransport0_0.9.5-1_i386.deb
libfsotransport_0.9.5-1.diff.gz
  to pool/main/libf/libfsotransport/libfsotransport_0.9.5-1.diff.gz
libfsotransport_0.9.5-1.dsc
  to pool/main/libf/libfsotransport/libfsotransport_0.9.5-1.dsc
libfsotransport_0.9.5.orig.tar.gz
  to pool/main/libf/libfsotransport/libfsotransport_0.9.5.orig.tar.gz


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



Accepted jana 0.0+svn20090513-1 (source all i386)

2009-09-28 Thread PaulLiu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 26 Sep 2009 09:55:34 +0800
Source: jana
Binary: libjana0 libjana-dev libjana-doc libjana0-dbg libjana-ecal0 
libjana-ecal-dev libjana-ecal-doc libjana-gtk0 libjana-gtk-dev libjana-gtk-doc 
libjana-test libjana-examples
Architecture: source all i386
Version: 0.0+svn20090513-1
Distribution: unstable
Urgency: low
Maintainer: Ying-Chun Liu (PaulLiu) paul...@debian.org
Changed-By: Ying-Chun Liu (PaulLiu) paul...@debian.org
Description: 
 libjana-dev - An interface library for time-related personal information (dev. 
 libjana-doc - An interface library for time-related personal information (docum
 libjana-ecal-dev - An implementation of libjana based on evolution-data-server 
(dev.
 libjana-ecal-doc - An implementation of libjana based on evolution-data-server 
(docu
 libjana-ecal0 - An implementation of libjana based on evolution-data-server
 libjana-examples - Example applications for libjana, libjana-ecal and 
libjana-gtk
 libjana-gtk-dev - A set of GTK+ widgets to visualise libjana data (development 
file
 libjana-gtk-doc - A set of GTK+ widgets to visualise libjana data 
(documentation)
 libjana-gtk0 - A set of GTK+ widgets to visualise libjana data
 libjana-test - A set of test applications for libjana and libjana-ecal
 libjana0   - An interface library for time-related personal information
 libjana0-dbg - An interface library for time-related personal information 
(debug
Closes: 548281
Changes: 
 jana (0.0+svn20090513-1) unstable; urgency=low
 .
   * Michael Terry michael.te...@canonical.com
 - Remove configure-generated files that caused the build to skip
   autogen.sh
 - debian/control: build against eds-dbus
   * Bruno Dilly bruno.di...@canonical.com
 - Update to latest subversion
   * Chris Lord ch...@openedhand.com
 - Update to latest subversion (0.0+svn20080720)
 - Added libmokoui2 dependency to openmoko-dates
 - Bumping version to rebuild on PPA
 - Package tests, examples and openmoko-dates
 - Update sections
 - Fix source package
 - Initial release. (Closes: #548281)
   * Ying-Chun Liu (PaulLiu) paul@canonical.com
 - debian/copyright: use machine-readable format
 - debian/control: Split the package properly.
 - debian/control: Add missing Build-Depends and Depends.
 - debian/control: Add dbg packages
 - debian/rules: Add proper clean rule. Add get-orig-source rule.
 - Add missing manpages.
Checksums-Sha1: 
 56ab55a779e8496d42551dda973d4234124be0fe 2000 jana_0.0+svn20090513-1.dsc
 283f660b1bd90ef9d032e633c5e502fdfd9913e7 287456 
jana_0.0+svn20090513.orig.tar.gz
 7fd3b7a7ca300d635a9767be4f3b5ab6c87f8a2e 6266 jana_0.0+svn20090513-1.diff.gz
 7b1af9c4d1b2e6b2e6db4e358aca5fe8a1508747 54690 
libjana-doc_0.0+svn20090513-1_all.deb
 5beda8b9857b352c7ff3b06e3c908d4f6d397efe 37510 
libjana-ecal-doc_0.0+svn20090513-1_all.deb
 e086a90521fd211a94c092375a0b11eb61910146 60032 
libjana-gtk-doc_0.0+svn20090513-1_all.deb
 fe12dfe501a06d1ea1c00358bf1f6e2289685e68 38772 
libjana0_0.0+svn20090513-1_i386.deb
 ee009791bd9b121fb3b301139baef372f7b6ded8 30024 
libjana-dev_0.0+svn20090513-1_i386.deb
 87427fc638f69bffce6ef258c557da51e5c5c296 343486 
libjana0-dbg_0.0+svn20090513-1_i386.deb
 ca5d5d606a9010ff4b2c63d95ee1859848c25fb2 44526 
libjana-ecal0_0.0+svn20090513-1_i386.deb
 c7284dadb03be6bc92d68a01d844065fc6b4520c 27068 
libjana-ecal-dev_0.0+svn20090513-1_i386.deb
 3f4baff50a89a0a29c0ee431b9534103551d6723 101664 
libjana-gtk0_0.0+svn20090513-1_i386.deb
 fd06eece527f59d69262b5d8dcd7ab12c03a6bbf 30318 
libjana-gtk-dev_0.0+svn20090513-1_i386.deb
 04b77dc2112502bb5789cb53c0fe8c94841be331 40820 
libjana-test_0.0+svn20090513-1_i386.deb
 087a114fa4079b4a930389cf7e618840ba63538d 46910 
libjana-examples_0.0+svn20090513-1_i386.deb
Checksums-Sha256: 
 820e2d3897d2acd04a77526d69c59a2d3f6d0ea09f2d2478ac8ff266b609c262 2000 
jana_0.0+svn20090513-1.dsc
 522022f9d68498799bc71f602bb11a1e7239aad779e670dbcbd212400ecf0dfa 287456 
jana_0.0+svn20090513.orig.tar.gz
 f8debdd13e36d463ae3d0b83d7cd21246f7a5fcdbd5aadda3573398ff273d0d0 6266 
jana_0.0+svn20090513-1.diff.gz
 5a3c8d702d038cc9df1c37c1a9feec75fab673a3167c9eca91395780459890d4 54690 
libjana-doc_0.0+svn20090513-1_all.deb
 51f2e4f76579359308aceb1ade49f64f948b877c45c1b5bd8b85e5e6746ef8df 37510 
libjana-ecal-doc_0.0+svn20090513-1_all.deb
 91f5b500357af1a943515978311dc3e75c1e8f028d5f39f93f4e185377ffc16f 60032 
libjana-gtk-doc_0.0+svn20090513-1_all.deb
 3bf19b0fd2db65e024688cb3600be8d67e2bf188615427720af828bd5ab3e24c 38772 
libjana0_0.0+svn20090513-1_i386.deb
 ab0f3028058615619291345a8311fb8b3c4129d5e80b0e082ce01f4112521e72 30024 
libjana-dev_0.0+svn20090513-1_i386.deb
 82114f125a9f071cd4dea23581f2d5a9af25c5f10bb2c7a5c94e7610383b 343486 
libjana0-dbg_0.0+svn20090513-1_i386.deb
 4a4c39096188ed7cf783432a3ec42453c86dd605f0ab82eb44c93bf0b6dd7443 44526 
libjana-ecal0_0.0+svn20090513-1_i386.deb
 

Accepted libsx 2.05-1 (source i386)

2009-09-28 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 11 Sep 2009 17:32:42 +0100
Source: libsx
Binary: libsx0 libsx-dev
Architecture: source i386
Version: 2.05-1
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry mckins...@debian.org
Changed-By: Alastair McKinstry mckins...@debian.org
Description: 
 libsx-dev  - Development files (headers and static libraries) for libsx
 libsx0 - Simple X library
Closes: 546183
Changes: 
 libsx (2.05-1) unstable; urgency=low
 .
   * Initial release. (Closes: #546183)
Checksums-Sha1: 
 cb59355325464dffd6f11e6e735bc002bc5c9856 1054 libsx_2.05-1.dsc
 3148a903a6ee4aa0019a4a8a103a9e28d5e5d7a4 186059 libsx_2.05.orig.tar.gz
 106a4db05172b6b8d89defa739b80fc3e194b7b6 7625 libsx_2.05-1.diff.gz
 facf7f2acda9dd2658a45f9ec93f29ca8790396f 40432 libsx0_2.05-1_i386.deb
 131509ba36b7aa11c5f20d2583cd064b501e1306 185498 libsx-dev_2.05-1_i386.deb
Checksums-Sha256: 
 1dfc080dd9d2c9c0bd68eb7c4526a51016e6dfaa22399d082029d12cd049c3d8 1054 
libsx_2.05-1.dsc
 7ae0fcbc9708a08f24c9008af5ed4e10e64f86b48364202547e2db0dc1bed5e8 186059 
libsx_2.05.orig.tar.gz
 cd922bcfd292009be16289a9cc0b0069c25ba513ae4aaf53cf5ff8361e339d20 7625 
libsx_2.05-1.diff.gz
 4d666d37c17367b85ef3afc0233d6458a2759d1751148f17d066f476c7385c81 40432 
libsx0_2.05-1_i386.deb
 afc4dc747ab31f6edae5c29f84aec1d6bd7c84998a01e8e2d4504e5262be40fb 185498 
libsx-dev_2.05-1_i386.deb
Files: 
 e147617ab0aca933e5ed677e3c03a44e 1054 utils optional libsx_2.05-1.dsc
 566e87966e26f9b0565ed090e8d1f5e0 186059 utils optional libsx_2.05.orig.tar.gz
 d316284d6721538397efd69912460857 7625 utils optional libsx_2.05-1.diff.gz
 8d62bf61fa40f7f0531d3e9ff00f4566 40432 libs optional libsx0_2.05-1_i386.deb
 69b7d98472d60b28ebe4a216355ed7fa 185498 libdevel optional 
libsx-dev_2.05-1_i386.deb

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

iD8DBQFKruKfQTK/kCo4XFcRAinoAKC+JrhCANjVor1/E7FKvvVofYbNVgCeInlh
tg9n9Kg7eFXwFzUGKQp5vM4=
=IW9z
-END PGP SIGNATURE-


Accepted:
libsx-dev_2.05-1_i386.deb
  to pool/main/libs/libsx/libsx-dev_2.05-1_i386.deb
libsx0_2.05-1_i386.deb
  to pool/main/libs/libsx/libsx0_2.05-1_i386.deb
libsx_2.05-1.diff.gz
  to pool/main/libs/libsx/libsx_2.05-1.diff.gz
libsx_2.05-1.dsc
  to pool/main/libs/libsx/libsx_2.05-1.dsc
libsx_2.05.orig.tar.gz
  to pool/main/libs/libsx/libsx_2.05.orig.tar.gz


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



Accepted qtl 1.13-7-1 (source amd64)

2009-09-28 Thread Steffen Moeller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 13:39:40 +0200
Source: qtl
Binary: r-cran-qtl
Architecture: source amd64
Version: 1.13-7-1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Steffen Moeller moel...@debian.org
Description: 
 r-cran-qtl - GNU R package for genetic marker linkage analysis
Changes: 
 qtl (1.13-7-1) unstable; urgency=low
 .
   * new upstream version with various bug fixes
   * bumped standard compliance to 3.8.3 (no changes required)
Checksums-Sha1: 
 93c972a9cf51764ba21e3d99e799eefeb8e52312 1241 qtl_1.13-7-1.dsc
 1e441d134d1a13285356d078f8e7666d1eb9198f 1194647 qtl_1.13-7.orig.tar.gz
 ae57603daf05017b8b7fbcf5a7f6ed1802dcf09f 4186 qtl_1.13-7-1.diff.gz
 e3d6fc46866d03fd83a2d1268b18c611c81af11e 1642080 r-cran-qtl_1.13-7-1_amd64.deb
Checksums-Sha256: 
 a7ed2822c40c7fcbbf6f51b158a6bcff5e895a8b56d6397d6675f1bbefba169b 1241 
qtl_1.13-7-1.dsc
 d120d9a031d84fae800098aea4c309b2d5048d7b17d8457be60ad84a717f942c 1194647 
qtl_1.13-7.orig.tar.gz
 4c6d12853acb32b86bbd33530f5e20cdef6cfa0247c10d694e0170c371893b5c 4186 
qtl_1.13-7-1.diff.gz
 5f002178ae8039744d81097aafc397301db9eee53f0f739e58d41c3c0d041116 1642080 
r-cran-qtl_1.13-7-1_amd64.deb
Files: 
 4663ccb58a4318b39761c7075885cae7 1241 gnu-r optional qtl_1.13-7-1.dsc
 9e20356a7f602e3f3c48aecd9aea46d8 1194647 gnu-r optional qtl_1.13-7.orig.tar.gz
 cf0c41437928fa2fd63704cb3c4af439 4186 gnu-r optional qtl_1.13-7-1.diff.gz
 0e8e10277dd67ea92e3ee75c4c8dda82 1642080 gnu-r optional 
r-cran-qtl_1.13-7-1_amd64.deb

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

iEYEARECAAYFAkrAqhcACgkQ1gXdnL6dUzn6sQCeKtqOIgLjoUczI+7lQ1GT7k4H
CN0AnRlabpkAIo35veeYWOlg8oyWm+7P
=NkuO
-END PGP SIGNATURE-


Accepted:
qtl_1.13-7-1.diff.gz
  to pool/main/q/qtl/qtl_1.13-7-1.diff.gz
qtl_1.13-7-1.dsc
  to pool/main/q/qtl/qtl_1.13-7-1.dsc
qtl_1.13-7.orig.tar.gz
  to pool/main/q/qtl/qtl_1.13-7.orig.tar.gz
r-cran-qtl_1.13-7-1_amd64.deb
  to pool/main/q/qtl/r-cran-qtl_1.13-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



Accepted aubio 0.3.2-4 (source i386 all)

2009-09-28 Thread Paul Brossier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 13:34:53 +0200
Source: aubio
Binary: libaubio-dev libaubio2 aubio-tools libaubio-doc python-aubio pd-aubio
Architecture: source i386 all
Version: 0.3.2-4
Distribution: unstable
Urgency: low
Maintainer: Paul Brossier p...@debian.org
Changed-By: Paul Brossier p...@debian.org
Description: 
 aubio-tools - a library for audio segmentation -- utilities
 libaubio-dev - a library for audio segmentation
 libaubio-doc - a library for audio segmentation -- documentation
 libaubio2  - a library for audio segmentation
 pd-aubio   - aubio external for PureData
 python-aubio - python interface for aubio, a library for audio segmentation
Changes: 
 aubio (0.3.2-4) unstable; urgency=low
 .
   * Fix building of architecture dependent packages
   * Do not compress search.js in libaubio-doc
Checksums-Sha1: 
 1bf78978a4ed96e5f3de6a161143c70d2459a7b8 1251 aubio_0.3.2-4.dsc
 186205cb66c2b1cac0682dc5b45a5044f13f7c74 7441 aubio_0.3.2-4.diff.gz
 69a42b95b253e52f5106cd623d73e0b746649f9f 68364 libaubio-dev_0.3.2-4_i386.deb
 a0e335d66e21a69ff9fb9536572d3f3da43eeb7f 49494 libaubio2_0.3.2-4_i386.deb
 8639e9a900fe6090e988afb48440835b6f41029d 30600 aubio-tools_0.3.2-4_i386.deb
 42b2f884ebec29741882c61e8efd070f7b922476 76314 python-aubio_0.3.2-4_i386.deb
 8a0aa520bc01d075b7ba850dbb82e4029cb91254 14128 pd-aubio_0.3.2-4_i386.deb
 3511d0bca57894f84c1c74c7a38af8730345d590 286504 libaubio-doc_0.3.2-4_all.deb
Checksums-Sha256: 
 0b3c38d41c1796951ad36cf0716f7277b3292da73a8e4f60cc398cf7f4ccca0b 1251 
aubio_0.3.2-4.dsc
 4623346d7e46f07736b8605f65e233764cf0641df7015ce949644454dd96e742 7441 
aubio_0.3.2-4.diff.gz
 0242004aa2dce20264d5b1b3a159b0ea0853616e1a06b76f2c7931c2670a6573 68364 
libaubio-dev_0.3.2-4_i386.deb
 964bd438d09fbbeb192ebcb3cab0bac39894bc2a0b142bef757c9baaf0d41bd7 49494 
libaubio2_0.3.2-4_i386.deb
 22f6e940bdc047e4e7f04ccbfdb7531048f897aabdaba9050ee8cb6fa24e106f 30600 
aubio-tools_0.3.2-4_i386.deb
 62ba283a0434e6626f20ddca551067796210d27ded927c92e0f208425223dc9c 76314 
python-aubio_0.3.2-4_i386.deb
 103002a9badf0f27d0250792ca39b6b7c6ddaa36abffbc7daa56e0fe7e031a40 14128 
pd-aubio_0.3.2-4_i386.deb
 b923d39016a0a24115888eaa67088b36f1174368d2d312231dc62344cc2c170e 286504 
libaubio-doc_0.3.2-4_all.deb
Files: 
 fc306211a65720f985d8507c7a973754 1251 sound optional aubio_0.3.2-4.dsc
 cd9ade761f969d8ac53f7c8323672541 7441 sound optional aubio_0.3.2-4.diff.gz
 58cb986bb8dad51d8083e03159baa04c 68364 libdevel optional 
libaubio-dev_0.3.2-4_i386.deb
 31d41d859b1d166227b057b9a626a429 49494 libs optional libaubio2_0.3.2-4_i386.deb
 0d856a45300c8912e42c672a86773db4 30600 sound optional 
aubio-tools_0.3.2-4_i386.deb
 302c05c80225079ae2979259e05b7831 76314 python optional 
python-aubio_0.3.2-4_i386.deb
 6dbf3adc8481d3cf1ece48c5d853919b 14128 sound optional pd-aubio_0.3.2-4_i386.deb
 52c28585211a6575c28b6770d160479c 286504 doc optional 
libaubio-doc_0.3.2-4_all.deb

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

iEYEARECAAYFAkrAqiIACgkQkuC958YALL1BZQCglncpu4dz43b+aNtZwN0TbhGp
RkkAoJzISExTOZICTmg69VKi6eJOPKhO
=HzgL
-END PGP SIGNATURE-


Accepted:
aubio-tools_0.3.2-4_i386.deb
  to pool/main/a/aubio/aubio-tools_0.3.2-4_i386.deb
aubio_0.3.2-4.diff.gz
  to pool/main/a/aubio/aubio_0.3.2-4.diff.gz
aubio_0.3.2-4.dsc
  to pool/main/a/aubio/aubio_0.3.2-4.dsc
libaubio-dev_0.3.2-4_i386.deb
  to pool/main/a/aubio/libaubio-dev_0.3.2-4_i386.deb
libaubio-doc_0.3.2-4_all.deb
  to pool/main/a/aubio/libaubio-doc_0.3.2-4_all.deb
libaubio2_0.3.2-4_i386.deb
  to pool/main/a/aubio/libaubio2_0.3.2-4_i386.deb
pd-aubio_0.3.2-4_i386.deb
  to pool/main/a/aubio/pd-aubio_0.3.2-4_i386.deb
python-aubio_0.3.2-4_i386.deb
  to pool/main/a/aubio/python-aubio_0.3.2-4_i386.deb


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



Accepted bareftp 0.2.3-1 (source all)

2009-09-28 Thread Mirco Bauer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 16 Aug 2009 00:11:06 +0200
Source: bareftp
Binary: bareftp
Architecture: source all
Version: 0.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian CLI Applications Team 
pkg-cli-apps-t...@lists.alioth.debian.org
Changed-By: Mirco Bauer mee...@debian.org
Description: 
 bareftp- FTP client for GNOME
Closes: 520876
Changes: 
 bareftp (0.2.3-1) unstable; urgency=low
 .
   * Initial release. (Closes: #520876)
Checksums-Sha1: 
 81305ee4b2ed3e414bfdd73abe7562ed1429f49a 1511 bareftp_0.2.3-1.dsc
 2a3527bd337da1ddeb2589aff4bbefa7eb7feefd 540962 bareftp_0.2.3.orig.tar.gz
 1f339d937db0ae01a8ca4c82cf2a4d7273135932 2375 bareftp_0.2.3-1.diff.gz
 dfd698e88b36eace4b1a09e8ea7d817a9f319845 195652 bareftp_0.2.3-1_all.deb
Checksums-Sha256: 
 2c6252c3fece17cdee144e389b326d8c757ab5f46247fbf6dd593661ca93be5f 1511 
bareftp_0.2.3-1.dsc
 15aa42386bd55a1a6f7f8a7e86f4b9bdf4b43aec993f60dfe77d2a8a28f1a0a6 540962 
bareftp_0.2.3.orig.tar.gz
 b22915684d73ec2f0cfd5cb95be2a73bc0273f5a9ac12eb23ec7eed313da4ea5 2375 
bareftp_0.2.3-1.diff.gz
 7fce4d3787591f8563d47b3123fc1ce02310b1bce11725a6981fe60200a1de97 195652 
bareftp_0.2.3-1_all.deb
Files: 
 51b290d8bb76f8474723d7ae508a2ab7 1511 gnome optional bareftp_0.2.3-1.dsc
 bd1cdf22f6215144945b21d693b5ab0e 540962 gnome optional 
bareftp_0.2.3.orig.tar.gz
 65bc0e51514a75fe39b2bde953e25cb7 2375 gnome optional bareftp_0.2.3-1.diff.gz
 af2d9ca218ed87c6ff2f9090ff44cbda 195652 gnome optional bareftp_0.2.3-1_all.deb

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

iJwEAQECAAYFAkq/VkMACgkQcJWf5zskR2FdYAQAlAkCtNwYKKnI2Nrhy5EAv3hP
O3G6AnuO5I2OyR+fAHwefTtz1btsD2PiKqogMOZOwCAtRhJF3U4Kme3nC/h96UBa
NxBrxv9VGBZTh/IRQRe8i80akE/rltGwIrDtTxQAiKX93vPb9LvyPvrDl5ojPvAT
MFTDLpbYkaxHY0nkiAc=
=lBU7
-END PGP SIGNATURE-


Accepted:
bareftp_0.2.3-1.diff.gz
  to pool/main/b/bareftp/bareftp_0.2.3-1.diff.gz
bareftp_0.2.3-1.dsc
  to pool/main/b/bareftp/bareftp_0.2.3-1.dsc
bareftp_0.2.3-1_all.deb
  to pool/main/b/bareftp/bareftp_0.2.3-1_all.deb
bareftp_0.2.3.orig.tar.gz
  to pool/main/b/bareftp/bareftp_0.2.3.orig.tar.gz


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



Accepted urca 1.2-3-1 (source i386)

2009-09-28 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 07:20:22 -0500
Source: urca
Binary: r-cran-urca
Architecture: source i386
Version: 1.2-3-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-urca - GNU R package providing unit root and cointegration tests
Changes: 
 urca (1.2-3-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
   * debian/control: Set Standards-Version: to current version
 .
   * debian/control: Changed Section: to section 'gnu-r'
Checksums-Sha1: 
 14ab576fb7f5bf07e3fd8215a3fe289a043244a4 963 urca_1.2-3-1.dsc
 72f93254c2d85cd396144a6e5258cf2b498b6b3a 677832 urca_1.2-3.orig.tar.gz
 df264407dd0f96944fe61c44052b37771657d034 1737 urca_1.2-3-1.diff.gz
 1bb00adcccf3cfeff0554cb5a63047f6f8016354 826744 r-cran-urca_1.2-3-1_i386.deb
Checksums-Sha256: 
 9ee795908c1653e7813f73f0b9c573bdcf00b3b69ac842658626ce1ebf2a4891 963 
urca_1.2-3-1.dsc
 431ac0a57248cbae5d669b417dfd55fe1185421049540fd9176eb36a3818987f 677832 
urca_1.2-3.orig.tar.gz
 638e9651c9e05f7d96f84baaed667882233b692c5da2b5e1ed540c9c1bce2cc0 1737 
urca_1.2-3-1.diff.gz
 fc9f1be35cae8511c82d333c13b470376aad27426d77d71de61eb30bf7b24e22 826744 
r-cran-urca_1.2-3-1_i386.deb
Files: 
 5ed2dc931b4750979f70f7fa3c7e7f33 963 gnu-r optional urca_1.2-3-1.dsc
 7908517e5e09f6305b8e0315d6bc170a 677832 gnu-r optional urca_1.2-3.orig.tar.gz
 4531d64f5945da20fc57a9b5d0134ef4 1737 gnu-r optional urca_1.2-3-1.diff.gz
 b938ddd51a38d4afad065f2083cf901f 826744 gnu-r optional 
r-cran-urca_1.2-3-1_i386.deb

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

iD8DBQFKwKt3CZSR95Gw07cRAuIGAJ4uz6kyJoZhDAHpFD6qn6gVLm1vEACfeqXn
af49/hvMNCAZWRKj3940I74=
=rVRy
-END PGP SIGNATURE-


Accepted:
r-cran-urca_1.2-3-1_i386.deb
  to pool/main/u/urca/r-cran-urca_1.2-3-1_i386.deb
urca_1.2-3-1.diff.gz
  to pool/main/u/urca/urca_1.2-3-1.diff.gz
urca_1.2-3-1.dsc
  to pool/main/u/urca/urca_1.2-3-1.dsc
urca_1.2-3.orig.tar.gz
  to pool/main/u/urca/urca_1.2-3.orig.tar.gz


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



Accepted nasty 0.6-1 (source i386)

2009-09-28 Thread Tiago Bortoletto Vaz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Sep 2009 18:52:18 -0300
Source: nasty
Binary: nasty
Architecture: source i386
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Tiago Bortoletto Vaz ti...@debian.org
Changed-By: Tiago Bortoletto Vaz ti...@debian.org
Description: 
 nasty  - A tool which helps you to recover your GPG passphrase
Closes: 547667
Changes: 
 nasty (0.6-1) unstable; urgency=low
 .
   * Initial Release. (Closes: #547667)
Checksums-Sha1: 
 e7a6447c5a7e6242e9760a93c3c53996220d2f18 1103 nasty_0.6-1.dsc
 32de89249dcbdc8642868efdf0c406ede3923616 3811 nasty_0.6.orig.tar.gz
 a56ef0ec51bbb3a464b48635aa42a94bf66f1732 2650 nasty_0.6-1.diff.gz
 0592365476241ecae4d92db0ec5223a8fd5c94ef 8734 nasty_0.6-1_i386.deb
Checksums-Sha256: 
 d0d3ea817c2e489955a4e62dd03a08e25238a2ddb24a7909441a6cc358a7270b 1103 
nasty_0.6-1.dsc
 7607256d4672f1c52f2603d7b9691e7250bfe3a9b4f219fcbb61227172a7f6b7 3811 
nasty_0.6.orig.tar.gz
 9f2d67e2910ea9acf2602791fb9ed0a379e54e86ef5564bb0ba0e8cbf4647323 2650 
nasty_0.6-1.diff.gz
 c94aa22c7d00751a1bd5e6bbc3dbd5938441981b554613d201a5232474e82e99 8734 
nasty_0.6-1_i386.deb
Files: 
 8866a2997588bbc1541d217be06a34db 1103 utils extra nasty_0.6-1.dsc
 f8181bd8d887acd869ce677034465c6f 3811 utils extra nasty_0.6.orig.tar.gz
 ee1c29723aeede75df2529e588df6745 2650 utils extra nasty_0.6-1.diff.gz
 52fb896d135a129d64324c8b5111a8b5 8734 utils extra nasty_0.6-1_i386.deb

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

iEYEARECAAYFAkrARVAACgkQaQ1iFKUE/sozQACfRhkza49cW0bHn22dx7jutSsp
R7MAoKFrZ1r5NnsoiAF8PkcQQj02Iaos
=Rhws
-END PGP SIGNATURE-


Accepted:
nasty_0.6-1.diff.gz
  to pool/main/n/nasty/nasty_0.6-1.diff.gz
nasty_0.6-1.dsc
  to pool/main/n/nasty/nasty_0.6-1.dsc
nasty_0.6-1_i386.deb
  to pool/main/n/nasty/nasty_0.6-1_i386.deb
nasty_0.6.orig.tar.gz
  to pool/main/n/nasty/nasty_0.6.orig.tar.gz


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



Accepted awesome 3.4~rc2-1 (source amd64)

2009-09-28 Thread Julien Danjou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 14:25:12 +0200
Source: awesome
Binary: awesome
Architecture: source amd64
Version: 3.4~rc2-1
Distribution: experimental
Urgency: low
Maintainer: Julien Danjou a...@debian.org
Changed-By: Julien Danjou a...@debian.org
Description: 
 awesome- highly configurable, next generation framework window manager for
Changes: 
 awesome (3.4~rc2-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 e575bdbc1e509b4828201ebe12df83542180a378 1658 awesome_3.4~rc2-1.dsc
 4243a9a95fe155441f394216b25d7b1970e3895f 316396 awesome_3.4~rc2.orig.tar.gz
 4786498a013458d90767334c62cf378bb832e7fa 5783 awesome_3.4~rc2-1.diff.gz
 19b0d48241b648b826d7e94be1b0c4766d059df8 360310 awesome_3.4~rc2-1_amd64.deb
Checksums-Sha256: 
 60ccbf7170533ef1054cac6ddb605f95b5e9fbe46f09dbce1876823eed654644 1658 
awesome_3.4~rc2-1.dsc
 34f2743bc9b56ec0f1fb9355c804616aafc48cad86afedd787912beadee83cb0 316396 
awesome_3.4~rc2.orig.tar.gz
 716f320c7081b157db29820fe86cdf495c0ad737f4a6fc72b2b541f8ba461339 5783 
awesome_3.4~rc2-1.diff.gz
 bd67e6f956087a179f1dc3b0565791f1660776f6a0dcddbd30cd8926ef7e2306 360310 
awesome_3.4~rc2-1_amd64.deb
Files: 
 3e477c86942cf6e832f263818cab80ce 1658 x11 optional awesome_3.4~rc2-1.dsc
 c5894d7e66497e87374a6be8ae2600d0 316396 x11 optional 
awesome_3.4~rc2.orig.tar.gz
 b70728d916e840ab90dd427880c0e110 5783 x11 optional awesome_3.4~rc2-1.diff.gz
 9f5f7e38a61c394ce57b57ab5e3d7bce 360310 x11 optional 
awesome_3.4~rc2-1_amd64.deb

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

iEYEARECAAYFAkrArEUACgkQpGK1HsL+5c2/uQCfScX86yu5rqdKMTlP2MkOL8ra
smgAn3J7DZhrLTDsjG551qtw97OJxhGT
=8vEq
-END PGP SIGNATURE-


Accepted:
awesome_3.4~rc2-1.diff.gz
  to pool/main/a/awesome/awesome_3.4~rc2-1.diff.gz
awesome_3.4~rc2-1.dsc
  to pool/main/a/awesome/awesome_3.4~rc2-1.dsc
awesome_3.4~rc2-1_amd64.deb
  to pool/main/a/awesome/awesome_3.4~rc2-1_amd64.deb
awesome_3.4~rc2.orig.tar.gz
  to pool/main/a/awesome/awesome_3.4~rc2.orig.tar.gz


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



Accepted vr 7.2.49-1 (source i386)

2009-09-28 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 07:22:18 -0500
Source: vr
Binary: r-cran-vr
Architecture: source i386
Version: 7.2.49-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-vr  - GNU R package accompanying the Venables and Ripley book on S
Changes: 
 vr (7.2.49-1) unstable; urgency=low
 .
   * New upstream release
 .
   * debian/control: Set (Build-)Depends: to current R version
   * debian/control: Set Standards-Version: to current version
Checksums-Sha1: 
 132d01e245bdb8b1d87a7fd371970275d97869c4 941 vr_7.2.49-1.dsc
 2ffcd8739fc2e5109e5266b9065e02e96a769021 489119 vr_7.2.49.orig.tar.gz
 abfbda4d0781c2ea404bbe687f694e5cf5da0dcc 4501 vr_7.2.49-1.diff.gz
 51f68c8e7cce09a72c439dfae51690a26a883a31 983912 r-cran-vr_7.2.49-1_i386.deb
Checksums-Sha256: 
 6e1f447b0e7343b51e66d5ed9dc6b4aef0bf43e8fe72ba3e50cf90a6d720c972 941 
vr_7.2.49-1.dsc
 7812c56e9a6232777a8049c21e02749d9731765c076885ad9ba178c31ee76d60 489119 
vr_7.2.49.orig.tar.gz
 1f8b73ed0a1710feafa3272772e869c5425f696d0ab4ad9c65437cfc5688fca5 4501 
vr_7.2.49-1.diff.gz
 edae6c3d39b47a778a2c184bbfc6b7b6e66b3fa9da7f1d05da84ab6d6d5bbdad 983912 
r-cran-vr_7.2.49-1_i386.deb
Files: 
 ddb6316440b566a869490598494b7b82 941 gnu-r optional vr_7.2.49-1.dsc
 fc89ca81af8800b861d7af6cb3dd83a2 489119 gnu-r optional vr_7.2.49.orig.tar.gz
 5d0e15ba8b8ce450d72b7d778b956dfb 4501 gnu-r optional vr_7.2.49-1.diff.gz
 ace6824f4dd591658c8491cc8b9fe5fd 983912 gnu-r optional 
r-cran-vr_7.2.49-1_i386.deb

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

iD8DBQFKwKv2CZSR95Gw07cRArmJAJ9LSRmfxhdFFBDdMa75iEG0j1/h8wCbBH9/
CAx8zcKv36yO5e4BhbNFA9k=
=v4ku
-END PGP SIGNATURE-


Accepted:
r-cran-vr_7.2.49-1_i386.deb
  to pool/main/v/vr/r-cran-vr_7.2.49-1_i386.deb
vr_7.2.49-1.diff.gz
  to pool/main/v/vr/vr_7.2.49-1.diff.gz
vr_7.2.49-1.dsc
  to pool/main/v/vr/vr_7.2.49-1.dsc
vr_7.2.49.orig.tar.gz
  to pool/main/v/vr/vr_7.2.49.orig.tar.gz


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



Accepted json-glib 0.8.0-1 (source all amd64)

2009-09-28 Thread Ross Burton
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 13:20:19 +0100
Source: json-glib
Binary: libjson-glib-1.0-0 libjson-glib-1.0-0-dbg libjson-glib-dev 
libjson-glib-doc
Architecture: source all amd64
Version: 0.8.0-1
Distribution: unstable
Urgency: low
Maintainer: Ross Burton r...@debian.org
Changed-By: Ross Burton r...@debian.org
Description: 
 libjson-glib-1.0-0 - GLib JSON manipulation library
 libjson-glib-1.0-0-dbg - GLib JSON manipulation library (debug symbols)
 libjson-glib-dev - GLib JSON manipulation library (development files)
 libjson-glib-doc - GLib JSON manipulation library (documentation)
Closes: 532712 547673
Changes: 
 json-glib (0.8.0-1) unstable; urgency=low
 .
   * New upstream release (Closes: #547673)
   * Fix documentation symlink (Closes: #532712)
Checksums-Sha1: 
 3fb5b3a9ecb418cec438be4b5d0d6b8c0849f1f5 1141 json-glib_0.8.0-1.dsc
 c185df080ed41254f67b27193e7e4ab1fe90b7b7 503100 json-glib_0.8.0.orig.tar.gz
 60f03f745e18d3f70f4e94656757b0709f6d79e2 21651 json-glib_0.8.0-1.diff.gz
 0d3c816dc9f49c52b33a1f855bfe2ff058979ffc 81436 libjson-glib-doc_0.8.0-1_all.deb
 9eed52a3a685e4d2f8c2719ddab2b0539e754155 76434 
libjson-glib-1.0-0_0.8.0-1_amd64.deb
 4869b5d9e3d7f0a5515949c17554bffb7daf929e 102908 
libjson-glib-1.0-0-dbg_0.8.0-1_amd64.deb
 a6eed7320aabf199679773127fc1543e0165f153 48058 
libjson-glib-dev_0.8.0-1_amd64.deb
Checksums-Sha256: 
 8e845c09027558476595d95e5a9cdfb6014152ad54ee6939103763a23312d0ec 1141 
json-glib_0.8.0-1.dsc
 5b9ec387c9c62c82586db5b5af9af6155a702fdd7870bd73b9977daff079970c 503100 
json-glib_0.8.0.orig.tar.gz
 d0f649232f404f7bb0beb965828036e12066b191e17fe03b22a252486d74b541 21651 
json-glib_0.8.0-1.diff.gz
 ca07d1ce6eca2df330a32fbe3e74f6a9756cf3a505f47632be4707d0c330ab6c 81436 
libjson-glib-doc_0.8.0-1_all.deb
 fead2bc53214edb37508b2e7c32f196dbf4ff59c57559501150d8c5a3bcc6ad4 76434 
libjson-glib-1.0-0_0.8.0-1_amd64.deb
 2abb471998701c68c65f16e0129f33a8c73865e04ca45db3b8d7ed58b8c751ea 102908 
libjson-glib-1.0-0-dbg_0.8.0-1_amd64.deb
 3ae3041fba217bbbc85e246eb66292482f11d63d1fc7424e76c0f7b76a3ad081 48058 
libjson-glib-dev_0.8.0-1_amd64.deb
Files: 
 3997dec90895db546adb4d15068348f2 1141 libs optional json-glib_0.8.0-1.dsc
 220dafb2fd804e74d1f5057ba72ae0b6 503100 libs optional 
json-glib_0.8.0.orig.tar.gz
 e237e654458805d4b434f9ac1b27ae57 21651 libs optional json-glib_0.8.0-1.diff.gz
 cfcb4272b364b449ab6646eb6eba5f18 81436 doc optional 
libjson-glib-doc_0.8.0-1_all.deb
 f5c45963fd456f1f7aed66e9de0f8dac 76434 libs optional 
libjson-glib-1.0-0_0.8.0-1_amd64.deb
 69540145a54b959dfb59061a4810977f 102908 debug extra 
libjson-glib-1.0-0-dbg_0.8.0-1_amd64.deb
 b228046d06c7b069c62fcb17ca31d1aa 48058 libdevel optional 
libjson-glib-dev_0.8.0-1_amd64.deb

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

iD8DBQFKwKu7LQnkR9C0M98RAr10AKC39QpQNx7DJkF/BGTQBMR/yNOIegCggkmR
o89tROQo+Eo13L33FkbqePI=
=U4Je
-END PGP SIGNATURE-


Accepted:
json-glib_0.8.0-1.diff.gz
  to pool/main/j/json-glib/json-glib_0.8.0-1.diff.gz
json-glib_0.8.0-1.dsc
  to pool/main/j/json-glib/json-glib_0.8.0-1.dsc
json-glib_0.8.0.orig.tar.gz
  to pool/main/j/json-glib/json-glib_0.8.0.orig.tar.gz
libjson-glib-1.0-0-dbg_0.8.0-1_amd64.deb
  to pool/main/j/json-glib/libjson-glib-1.0-0-dbg_0.8.0-1_amd64.deb
libjson-glib-1.0-0_0.8.0-1_amd64.deb
  to pool/main/j/json-glib/libjson-glib-1.0-0_0.8.0-1_amd64.deb
libjson-glib-dev_0.8.0-1_amd64.deb
  to pool/main/j/json-glib/libjson-glib-dev_0.8.0-1_amd64.deb
libjson-glib-doc_0.8.0-1_all.deb
  to pool/main/j/json-glib/libjson-glib-doc_0.8.0-1_all.deb


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



Accepted kluppe 0.6.14-1 (source i386)

2009-09-28 Thread Paul Brossier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 15:02:10 +0200
Source: kluppe
Binary: kluppe
Architecture: source i386
Version: 0.6.14-1
Distribution: unstable
Urgency: low
Maintainer: Paul Brossier p...@debian.org
Changed-By: Paul Brossier p...@debian.org
Description: 
 kluppe - a loop-player and recorder designed for live use
Changes: 
 kluppe (0.6.14-1) unstable; urgency=low
 .
   * New upstream release
   * debian/compat: bump to 7
   * debian/control: bump Standards-Version to 3.8.3
   * debian/copyright: add copyright for gtkmeter
   * debian/rules: use zen guru mode
   * debian/control: adjust debhelper version to 7.0.0, switch to quilt
   * debian/patches/10_install_man.diff: merge with upstream
   * debian/README.source: add pointer to quilt documentation
Checksums-Sha1: 
 642b18a8b5339d2e250ce3739d959c595175302c 1100 kluppe_0.6.14-1.dsc
 cfd4eece3d6085f74fd1c84fe3f36ce683211e73 141143 kluppe_0.6.14.orig.tar.gz
 9e65531731195fa7f0c4708f040bc9e60a73b769 3413 kluppe_0.6.14-1.diff.gz
 9e6c19b1f228dcea6801999e539841237028423b 98920 kluppe_0.6.14-1_i386.deb
Checksums-Sha256: 
 84b8fbae9deb5610907d465b7f34bf52045fb6ada4b552ee33908bcef65ded4e 1100 
kluppe_0.6.14-1.dsc
 08e2b9d4f46acf9ac776ad4c4954db4518a674b43dbf0c3b1f9f92abae049b06 141143 
kluppe_0.6.14.orig.tar.gz
 262f16d64910cdf7ac424b54ead842ab74ed659dbd1100c823bce9b6c95377d5 3413 
kluppe_0.6.14-1.diff.gz
 1224169a9a5624064e0a010b33401f898d54d59f7fd9aca0a32d9048d2b606b1 98920 
kluppe_0.6.14-1_i386.deb
Files: 
 85ceb18da9cb41645b8277b8e695b1a1 1100 sound optional kluppe_0.6.14-1.dsc
 547b587d18cdfa4692f174ad8d7e2d5a 141143 sound optional 
kluppe_0.6.14.orig.tar.gz
 531c4102c206f0331529eb3dd24e8bcc 3413 sound optional kluppe_0.6.14-1.diff.gz
 b40669031ef5c73a3a81d3df58c28922 98920 sound optional kluppe_0.6.14-1_i386.deb

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

iEYEARECAAYFAkrAuRUACgkQkuC958YALL2odwCgopxKqR3xQYSVHe4EO2kZmwpQ
zAIAnikONgE4KqwYUj+MkN0K/cjJoxRC
=zVzr
-END PGP SIGNATURE-


Accepted:
kluppe_0.6.14-1.diff.gz
  to pool/main/k/kluppe/kluppe_0.6.14-1.diff.gz
kluppe_0.6.14-1.dsc
  to pool/main/k/kluppe/kluppe_0.6.14-1.dsc
kluppe_0.6.14-1_i386.deb
  to pool/main/k/kluppe/kluppe_0.6.14-1_i386.deb
kluppe_0.6.14.orig.tar.gz
  to pool/main/k/kluppe/kluppe_0.6.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



Accepted hostname 2.99 (source amd64)

2009-09-28 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 15:31:05 +0200
Source: hostname
Binary: hostname
Architecture: source amd64
Version: 2.99
Distribution: unstable
Urgency: low
Maintainer: Debian Hostname Team hostname-de...@lists.alioth.debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 hostname   - utility to set/show the host name or domain name
Changes: 
 hostname (2.99) unstable; urgency=low
 .
   [ Cristian Greco ]
   * attempt to clarify program documentation in usage() and manpage.
   * bump version to 2.99
   * Add versioned Replaces/Conflicts against nis ( 3.17-29), which
 drops the {yp,nis,} commands.
Checksums-Sha1: 
 2283b47fcf026003a2396ba4a2b105e6d4939e68 804 hostname_2.99.dsc
 8cc7a736a1c1b27817a366e889d9c9ef2f700d3e 11216 hostname_2.99.tar.gz
 fc43c9c7e631a00f42b2a53efe7ca6fed07bc375 14104 hostname_2.99_amd64.deb
Checksums-Sha256: 
 7934a9b668dae3269f14b9db44da247d12f2bf7de8467c1f728a46abcc97c69b 804 
hostname_2.99.dsc
 509979f3125fe7c9dbb9dfcac2ac8c5e24545b8074685368bde25de9690f9ef5 11216 
hostname_2.99.tar.gz
 1f56034e0de346e1dbf3358dca6b4d168351a63dcb16be46bee64553e65f3cb6 14104 
hostname_2.99_amd64.deb
Files: 
 44c3518f136e5ebd44e1706a04ae3f6e 804 admin required hostname_2.99.dsc
 df1436232a71ea0397714f8593bb7edd 11216 admin required hostname_2.99.tar.gz
 60bff2fd7b96e64801c54ce967fff249 14104 admin required hostname_2.99_amd64.deb

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

iD4DBQFKwLszVkEm8inxm9ERAgrlAJ4sSu0VJ1mhHbrQVEMNOM/wrRT4WgCWM50Q
HmXzEF0hcB7mHKn5Tz0jPw==
=APp5
-END PGP SIGNATURE-


Accepted:
hostname_2.99.dsc
  to pool/main/h/hostname/hostname_2.99.dsc
hostname_2.99.tar.gz
  to pool/main/h/hostname/hostname_2.99.tar.gz
hostname_2.99_amd64.deb
  to pool/main/h/hostname/hostname_2.99_amd64.deb


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



Accepted djview4 4.5-2 (source i386)

2009-09-28 Thread Barak A. Pearlmutter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 10:53:40 -0400
Source: djview4
Binary: djview4
Architecture: source i386
Version: 4.5-2
Distribution: unstable
Urgency: low
Maintainer: Barak A. Pearlmutter b...@debian.org
Changed-By: Barak A. Pearlmutter b...@debian.org
Description: 
 djview4- Viewer for the DjVu image format
Changes: 
 djview4 (4.5-2) unstable; urgency=low
 .
   * rev deb std
   * fancier shorter debian/rules
   * lintian issues (stop ignoring errors in installation scripts)
Checksums-Sha1: 
 85c12a9a85f7a9d0689cfa77394dd8c66a645e93 1279 djview4_4.5-2.dsc
 a37eb32ddf2ecb44fa97694639d85a55195e09cf 63994 djview4_4.5-2.diff.gz
 df3d54bf1428e9498662297a1f2352e26afe1432 658598 djview4_4.5-2_i386.deb
Checksums-Sha256: 
 a28ed0dc47b7f7a89e6ce257b7e49db0526eb8fd1972aab93e7436f90b4029ef 1279 
djview4_4.5-2.dsc
 693bbb9feb8e6edd8f88153605a00c780c14e3bd10321f88b919661fe9300f3c 63994 
djview4_4.5-2.diff.gz
 41434d066e74347a14c5f73b6d62c2325c354790e2e14adb25a8c1754d1738b1 658598 
djview4_4.5-2_i386.deb
Files: 
 e691c20e5beb75ef449329dff455784c 1279 web optional djview4_4.5-2.dsc
 c7c2f0137a20c41bbac98f7735975bf9 63994 web optional djview4_4.5-2.diff.gz
 4bcd14a9c6574cdd5d1c7c21e862e7b1 658598 graphics optional 
djview4_4.5-2_i386.deb

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

iEYEARECAAYFAkrA0TkACgkQLz4Gnv7CP7LAFQCgiAhM5y7ipTVhDrAIABQnUYeI
Qu4Ani8cClH0QPSomL2YoT7Ey6UH6nub
=QcD+
-END PGP SIGNATURE-


Accepted:
djview4_4.5-2.diff.gz
  to pool/main/d/djview4/djview4_4.5-2.diff.gz
djview4_4.5-2.dsc
  to pool/main/d/djview4/djview4_4.5-2.dsc
djview4_4.5-2_i386.deb
  to pool/main/d/djview4/djview4_4.5-2_i386.deb


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



Accepted org-mode 6.30e-1 (source all)

2009-09-28 Thread Sebastien Delafond
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 16:57:29 +0200
Source: org-mode
Binary: org-mode
Architecture: source all
Version: 6.30e-1
Distribution: unstable
Urgency: low
Maintainer: Sebastien Delafond s...@debian.org
Changed-By: Sebastien Delafond s...@debian.org
Description: 
 org-mode   - keep notes, maintain ToDo lists, and do project planning in emacs
Changes: 
 org-mode (6.30e-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 8ce5aee8b005425a9bffc76dfab4bb93f9009949 1008 org-mode_6.30e-1.dsc
 73f3825506cf426b723903ea1b847fd1668b3bab 2157794 org-mode_6.30e.orig.tar.gz
 56d25d03569ba83412e16760301d860335879c3a 7981 org-mode_6.30e-1.diff.gz
 7f30fdba26e0ae3c760509a476c21da37f05b8ac 2059142 org-mode_6.30e-1_all.deb
Checksums-Sha256: 
 06157c21d5f75f0c2e66b8c89dffde6a8140a86a7ede593bdba34746c5a298ef 1008 
org-mode_6.30e-1.dsc
 365076c8409ebd2587f014a23c02936510ddb9f31eaaf5a03ae72f40370f8636 2157794 
org-mode_6.30e.orig.tar.gz
 a4e948406c0ec1f9d414111659ce024ab687cf63864d1d37b7b9f0b761040751 7981 
org-mode_6.30e-1.diff.gz
 e2697f69ca88f7abfa2dcc8d74b81277ec89e011149dc7a215f55aaa30b27c12 2059142 
org-mode_6.30e-1_all.deb
Files: 
 e5fadce2c1b235707a6a61bbd75ba0d3 1008 misc optional org-mode_6.30e-1.dsc
 225d4b8fe3d5862b9a69a956205c4f72 2157794 misc optional 
org-mode_6.30e.orig.tar.gz
 c514d83f8e20175d84591243589c60fa 7981 misc optional org-mode_6.30e-1.diff.gz
 80f07e53939d337bd12d5e14001bab98 2059142 misc optional org-mode_6.30e-1_all.deb

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

iEYEARECAAYFAkrA4MMACgkQiZgNKcDdyD9gzQCgsDsXlIPNBNhnDtDcWz9hHujP
nlYAn2l7M4lj4U7FF2YMpoa6pPNC47lk
=1gKs
-END PGP SIGNATURE-


Accepted:
org-mode_6.30e-1.diff.gz
  to pool/main/o/org-mode/org-mode_6.30e-1.diff.gz
org-mode_6.30e-1.dsc
  to pool/main/o/org-mode/org-mode_6.30e-1.dsc
org-mode_6.30e-1_all.deb
  to pool/main/o/org-mode/org-mode_6.30e-1_all.deb
org-mode_6.30e.orig.tar.gz
  to pool/main/o/org-mode/org-mode_6.30e.orig.tar.gz


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



Accepted pixman 0.16.2-1 (source amd64)

2009-09-28 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 18:12:47 +0200
Source: pixman
Binary: libpixman-1-0 libpixman-1-0-udeb libpixman-1-0-dbg libpixman-1-dev
Architecture: source amd64
Version: 0.16.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libpixman-1-0 - pixel-manipulation library for X and cairo
 libpixman-1-0-dbg - pixel-manipulation library for X and cairo (debugging 
symbols)
 libpixman-1-0-udeb - pixel-manipulation library for X and cairo (udeb)
 libpixman-1-dev - pixel-manipulation library for X and cairo (development 
files)
Closes: 546849
Changes: 
 pixman (0.16.2-1) unstable; urgency=low
 .
   * New upstream release (closes: #546849).
   * Upload to unstable.
Checksums-Sha1: 
 ec1ab01b49daaa3e479fe28f50ace4e0cd00eee0 1272 pixman_0.16.2-1.dsc
 137ab09e8556543ca28e3c545a7a753b3b2521a7 482516 pixman_0.16.2.orig.tar.gz
 ecdbf3d5bf170a97c1a8502b4137c788efc9bdfc 97741 pixman_0.16.2-1.diff.gz
 cb5dfbf6f2d5a563cbaf6949023835b3bc15e824 230312 
libpixman-1-0_0.16.2-1_amd64.deb
 11277e9af1ab3509b51d773c6d90f8dfb3df9d71 142836 
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
 3003f892527003087249974d36c7fba95d48f08e 527042 
libpixman-1-0-dbg_0.16.2-1_amd64.deb
 02bb4cf340e020b478a87e7e4662daed1ce4c412 257704 
libpixman-1-dev_0.16.2-1_amd64.deb
Checksums-Sha256: 
 c309c08938f68bc5efd8cf845377a853b236657a9f6268a53efbef73b3d715a7 1272 
pixman_0.16.2-1.dsc
 05f78c2fd3a5f054c0d716e8ba1b67a0c04a7a7e642d6946828ec383b389d185 482516 
pixman_0.16.2.orig.tar.gz
 fdca9c4054856a0266fe8f396f59f68172c9e87a31bb9c53cf9b0017c771933a 97741 
pixman_0.16.2-1.diff.gz
 40af44cf418688db136cd27e14e97ca3dd10453e0d967278df2c8e9049bd2054 230312 
libpixman-1-0_0.16.2-1_amd64.deb
 262eea1f1f8dcbe6d1bb0add23f8a9e143995b5557ae953e3a5cc6e11194ff69 142836 
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
 723aad8a7974fecb63b01757229ba51cfb92ddd7ca2cbfc192c2ee9724da24f6 527042 
libpixman-1-0-dbg_0.16.2-1_amd64.deb
 6048b90a43c0109d378094c0c0e96318ed967365c9a1bebfa5e7776277d6 257704 
libpixman-1-dev_0.16.2-1_amd64.deb
Files: 
 323ed48bd1ee147eed9e26ba9b2b243a 1272 devel optional pixman_0.16.2-1.dsc
 02bd3669f53c404c19980d5efb6f86fb 482516 devel optional 
pixman_0.16.2.orig.tar.gz
 42297d3515298eaa0e148e38ec08144f 97741 devel optional pixman_0.16.2-1.diff.gz
 731617e1fc67e14840082348b2e95b6e 230312 libs optional 
libpixman-1-0_0.16.2-1_amd64.deb
 5ec7b56bc3c0c66b1288865de4de0cbd 142836 debian-installer optional 
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
 0dfd960bf0b60d61951b7467231c8769 527042 debug extra 
libpixman-1-0-dbg_0.16.2-1_amd64.deb
 dd9f80bab86ffa8478a5620693b96bd5 257704 libdevel optional 
libpixman-1-dev_0.16.2-1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAkrA4PMACgkQmEvTgKxfcAzBlwCguzXqKXKjRfG5EXCC/Ycf3yxr
O4cAoMUdQy8cVheCt1vLWx9hfGsLYwx0
=ecXJ
-END PGP SIGNATURE-


Accepted:
libpixman-1-0-dbg_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-0-dbg_0.16.2-1_amd64.deb
libpixman-1-0-udeb_0.16.2-1_amd64.udeb
  to pool/main/p/pixman/libpixman-1-0-udeb_0.16.2-1_amd64.udeb
libpixman-1-0_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-0_0.16.2-1_amd64.deb
libpixman-1-dev_0.16.2-1_amd64.deb
  to pool/main/p/pixman/libpixman-1-dev_0.16.2-1_amd64.deb
pixman_0.16.2-1.diff.gz
  to pool/main/p/pixman/pixman_0.16.2-1.diff.gz
pixman_0.16.2-1.dsc
  to pool/main/p/pixman/pixman_0.16.2-1.dsc
pixman_0.16.2.orig.tar.gz
  to pool/main/p/pixman/pixman_0.16.2.orig.tar.gz


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



Accepted devicekit-power 010-2 (source all i386)

2009-09-28 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 16:59:43 +0200
Source: devicekit-power
Binary: devicekit-power devicekit-power-doc libdevkit-power-gobject1 
libdevkit-power-gobject-dev
Architecture: source all i386
Version: 010-2
Distribution: unstable
Urgency: low
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 devicekit-power - abstraction for power management
 devicekit-power-doc - abstraction for power management - documentation
 libdevkit-power-gobject-dev - abstraction for power management - development 
files
 libdevkit-power-gobject1 - abstraction for power management - shared library
Changes: 
 devicekit-power (010-2) unstable; urgency=low
 .
   [ Martin Pitt ]
   * debian/control: Add missing libdevkit-power-gobject1 dependency to -dev.
   * Add debian/devicekit-power.postinst: Kill the old devkit-power-daemon on
 upgrade, to ensure that the new version will be used at the next occasion.
 .
   [ Michael Biebl ]
   * debian/devicekit-power.{install,manpages}: Install manpages using the
 *.install file and drop redundant *.manpages file.
   * debian/libdevkit-power-gobject1.symbols: Add symbols file for improved
 shlibs dependencies.
Checksums-Sha1: 
 f4a335860c3a978e600db576835cfb8a98ca83c5 1619 devicekit-power_010-2.dsc
 3be2f369df395f86419e25c24ad3db4c06a3dc12 2970 devicekit-power_010-2.diff.gz
 32d4883ebf1cacbedc5e3662e38b5362da7920a0 34064 
devicekit-power-doc_010-2_all.deb
 b8f911e86f799c75c009a19f4f5718a8ce1c8f78 65658 devicekit-power_010-2_i386.deb
 c3ebabae9e5f37fb448171f60c71ba13c54bded3 23440 
libdevkit-power-gobject1_010-2_i386.deb
 901849a3fcfb18c840fa78fd4f9c7fd7089d734c 27290 
libdevkit-power-gobject-dev_010-2_i386.deb
Checksums-Sha256: 
 15087c3d7b7cbe74cc018e43f48c87b92a023ce266a3952f0b834e72009e0e71 1619 
devicekit-power_010-2.dsc
 48e046b8aaa2f7a9393dda7226583da246a0ffebdaa148e1c0b83dfcfc7f 2970 
devicekit-power_010-2.diff.gz
 1ad8dbc826d6619e2827948d280a2f367671e2a28b2fe26338f850e9d4e78df9 34064 
devicekit-power-doc_010-2_all.deb
 df227607cff364fcd36d2a30c9fa3576f6060aa26e3afcee23937bc2aba1caad 65658 
devicekit-power_010-2_i386.deb
 a081ed0d7c6106d3279dff875427fc6e15e8c081312f2e3d6b735076c655c30b 23440 
libdevkit-power-gobject1_010-2_i386.deb
 7b8e19c5ff28f2cc095658c94e82d59f064a8934745b7b298ae52ba127ac98f1 27290 
libdevkit-power-gobject-dev_010-2_i386.deb
Files: 
 81447f815117c75a3c2fcd1b1865bd69 1619 admin optional devicekit-power_010-2.dsc
 e257bc3ed642993a1c687e7c5a7d9b7b 2970 admin optional 
devicekit-power_010-2.diff.gz
 159d4d4488a496ee7e36aad058b6b1db 34064 doc optional 
devicekit-power-doc_010-2_all.deb
 925310208d82ab7973b35120b468f48b 65658 admin optional 
devicekit-power_010-2_i386.deb
 4aa8b5cc5c6cbe595cbb6d771e222771 23440 libs optional 
libdevkit-power-gobject1_010-2_i386.deb
 6ce29a5430e317aa7733e7cbb92dd0d7 27290 libdevel optional 
libdevkit-power-gobject-dev_010-2_i386.deb

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

iEYEARECAAYFAkrAu0QACgkQh7PER70FhVTGwQCfYQ9UX4e5/jZWarzCn1gjyQDs
MNAAoKtacfPgYuT/GfF+SWvGFAAm8g+C
=LitJ
-END PGP SIGNATURE-


Accepted:
devicekit-power-doc_010-2_all.deb
  to pool/main/d/devicekit-power/devicekit-power-doc_010-2_all.deb
devicekit-power_010-2.diff.gz
  to pool/main/d/devicekit-power/devicekit-power_010-2.diff.gz
devicekit-power_010-2.dsc
  to pool/main/d/devicekit-power/devicekit-power_010-2.dsc
devicekit-power_010-2_i386.deb
  to pool/main/d/devicekit-power/devicekit-power_010-2_i386.deb
libdevkit-power-gobject-dev_010-2_i386.deb
  to pool/main/d/devicekit-power/libdevkit-power-gobject-dev_010-2_i386.deb
libdevkit-power-gobject1_010-2_i386.deb
  to pool/main/d/devicekit-power/libdevkit-power-gobject1_010-2_i386.deb


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



Accepted gnome-disk-utility 2.28.0-1 (source i386)

2009-09-28 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 17:15:02 +0200
Source: gnome-disk-utility
Binary: gnome-disk-utility libgdu0 libgdu-gtk0 libgdu-dev libgdu-gtk-dev
Architecture: source i386
Version: 2.28.0-1
Distribution: unstable
Urgency: low
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 gnome-disk-utility - manage and configure disk drives and media
 libgdu-dev - GObject based Disk Utility Library - development files
 libgdu-gtk-dev - GTK+ standard dialog library for libgdu - development files
 libgdu-gtk0 - GTK+ standard dialog library for libgdu
 libgdu0- GObject based Disk Utility Library
Changes: 
 gnome-disk-utility (2.28.0-1) unstable; urgency=low
 .
   * New upstream version:
 - Port to PolicyKit-1 (which essentially means to drop all the PK code).
 - Follow GNOME release cycle now.
 - Lots of bug fixes and translation updates.
 - Land new ATA SMART user interface (requires DK-disks 007).
   * debian/control:
 - Drop old libpolkit*-dev build and binary dependencies.
 - Bump devicekit-disks build/binary dependency to = 007.
 - Bump libgtk2.0-dev and libatasmart-dev build dependencies as required by
   upstream.
 - Drop libsexy-dev build dependency, not necessary any more.
   * debian/control: Add alternative build dependency rarian-compat, the
 successor of scrollkeeper.
   * debian/libgdu0.symbols, debian/libgdu-gtk0.symbols: Update for new
 release.
   * debian/control: Bump Standards-Version to 3.8.3 (no changes necessary).
   * debian/rules: When building for Ubuntu, update palimpsest .desktop's
 Category field to appear in System → Administration instead of Apps →
 System Tools.
   * debian/*.install: Drop debian/tmp/ prefix, since we use dh compat 7.
 Also, simplify and sort the file lists.
   * debian/control: Added myself to uploaders, with Michael's consent.
Checksums-Sha1: 
 44b56700b9f9e6cf9b5987345ffcc98b3c27eab2 1783 gnome-disk-utility_2.28.0-1.dsc
 a47bc0fb7b2da12e6a1f9f8d779353deb92275af 2427981 
gnome-disk-utility_2.28.0.orig.tar.gz
 9a2932f09980a2cf938c2508d6a0ee33c9aab157 4775 
gnome-disk-utility_2.28.0-1.diff.gz
 85509a26fb9f56c42babc2a597390b7e2c156dd8 1627786 
gnome-disk-utility_2.28.0-1_i386.deb
 23cfe730f4cbd2727ed5c08f1dd174bda23c830c 56852 libgdu0_2.28.0-1_i386.deb
 244ab65ad5f35796d7d02ef5fdf54f565097b20b 59986 libgdu-gtk0_2.28.0-1_i386.deb
 498d4d468ba1bb138e7ae9fab23eeda33458b415 17796 libgdu-dev_2.28.0-1_i386.deb
 21451ebc7a622ee500266e6ed69478a4cd7bbab7 13444 libgdu-gtk-dev_2.28.0-1_i386.deb
Checksums-Sha256: 
 3f266ec9d0e49c622a43688cae5e1455aa3ab944777fd00c5f41899b3e76d810 1783 
gnome-disk-utility_2.28.0-1.dsc
 700fdafd2a4c788903d52a41ed4b47e3e442145d2b773618a5f1be7825bcf7e6 2427981 
gnome-disk-utility_2.28.0.orig.tar.gz
 06730618bf04e4cad0da841d969e717ee1abdad73b724c4d36602f3a27616203 4775 
gnome-disk-utility_2.28.0-1.diff.gz
 2e92df166d3db535c7c3f5a7cee0942071315a12cea7d349034fc06778a36c1d 1627786 
gnome-disk-utility_2.28.0-1_i386.deb
 dbd05c60d2a1ca27a6fe1dbec742f909b0616a8fcd2fc70caab5355b3a646b5a 56852 
libgdu0_2.28.0-1_i386.deb
 5d36fe87b4c38e58e1687e1d6cda849937d9f3e65bd1c96d844c83e6189d1491 59986 
libgdu-gtk0_2.28.0-1_i386.deb
 c1f2a07080003ae9f29f12ee3d683c64b7a347723406434886cb357c517d3ce0 17796 
libgdu-dev_2.28.0-1_i386.deb
 9ee002c7f8245fe289658a80b94d2f00713a2de03bcb1ce5c4c7d1d1bea55eac 13444 
libgdu-gtk-dev_2.28.0-1_i386.deb
Files: 
 d352a8044e1126a340484babed590a79 1783 admin optional 
gnome-disk-utility_2.28.0-1.dsc
 8a4e3ef9d6e44f7fab9839130ff08630 2427981 admin optional 
gnome-disk-utility_2.28.0.orig.tar.gz
 1123b37902d0b5e007e43d6b282427d5 4775 admin optional 
gnome-disk-utility_2.28.0-1.diff.gz
 2fc60d48d730e6be2bf527789080e2d9 1627786 admin optional 
gnome-disk-utility_2.28.0-1_i386.deb
 b262b8a3031ea4ae5768e7cd6383af1a 56852 libs optional libgdu0_2.28.0-1_i386.deb
 a0629f694c0fb7eb641246cfe2954c67 59986 libs optional 
libgdu-gtk0_2.28.0-1_i386.deb
 63b5cacf6ee3f677c7e54e77b03d02d1 17796 libdevel optional 
libgdu-dev_2.28.0-1_i386.deb
 3e8316abe93785e125bba6614445d5fa 13444 libdevel optional 
libgdu-gtk-dev_2.28.0-1_i386.deb

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

iEYEARECAAYFAkrA1PsACgkQDecnbV4Fd/JW3QCg0HZV97sLj1ysIMdgckwC3xiJ
8xgAnRp6d5YVkRyaYHYJm/nkrPc1PNdQ
=+XjJ
-END PGP SIGNATURE-


Accepted:
gnome-disk-utility_2.28.0-1.diff.gz
  to pool/main/g/gnome-disk-utility/gnome-disk-utility_2.28.0-1.diff.gz
gnome-disk-utility_2.28.0-1.dsc
  to pool/main/g/gnome-disk-utility/gnome-disk-utility_2.28.0-1.dsc
gnome-disk-utility_2.28.0-1_i386.deb
  to pool/main/g/gnome-disk-utility/gnome-disk-utility_2.28.0-1_i386.deb
gnome-disk-utility_2.28.0.orig.tar.gz
  to pool/main/g/gnome-disk-utility/gnome-disk-utility_2.28.0.orig.tar.gz
libgdu-dev_2.28.0-1_i386.deb
  to pool/main/g/gnome-disk-utility/libgdu-dev_2.28.0-1_i386.deb

Accepted devicekit-disks 007-1 (source all i386)

2009-09-28 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 16:58:46 +0200
Source: devicekit-disks
Binary: devicekit-disks devicekit-disks-doc
Architecture: source all i386
Version: 007-1
Distribution: unstable
Urgency: low
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 devicekit-disks - abstraction for enumerating block devices
 devicekit-disks-doc - abstraction for enumerating block devices - documentation
Changes: 
 devicekit-disks (007-1) unstable; urgency=low
 .
   * New upstream release:
 - Drop usage of DeviceKit, talk directly to udev now.
 - Port to PolicyKit 1 API.
 - Lots of bug fixes.
   * debian/control:
 - libpolkit-dbus-dev → libpolkit-gobject-1-dev, libpolkit-backend-1-dev
   build dependency. (PolicyKit 1 API)
 - libdevkit-gobject-dev → libgudev-1.0-dev build dependency, drop
   devicekit dependency (death to DeviceKit).
 - Bump libatasmart-dev build dependency to = 0.14 as required by
   upstream.
 - Bump libudev-dev build dependency to = 0.142 as required by upstream.
 - Drop libsqlite3-dev build-dependency, not necessary any more.
 - Add libsgutils2-dev build dependency as required by upstream.
   * debian/devicekit-disks.install:
 - Update path for new policykit-1 files.
 - Add new pkgconfig file.
 - Install usr/share/locale and usr/share/man.
   * debian/rules: Ignore usr/lib/polkit-1/ for dh_makeshlibs, they are backends
 for PolicyKit.
   * debian/rules: Explicitly enable gtk-doc, not done by default any more.
   * debian/control: Bump Standards-Version to 3.8.3 (no changes necessary).
   * Add debian/devicekit-disks.postinst: Kill the old devkit-disks-daemon on
 upgrade, to ensure that the new version will be used at the next occasion.
 (LP: #403192)
   * debian/control: Add Breaks to GDU libraries  2.28, since the D-Bus API
 changed.
   * debian/*.install: Drop debian/tmp/ prefix, since we use dh compat 7.
 Also, simplify and sort the file lists.
   * Drop reduntant debian/devicekit-disks.manpages, already done in *.install.
   * debian/control: Add myself to Uploaders: with Michael's consent.
Checksums-Sha1: 
 d0821efd55acb0d2b18bf2301b7888671deb7644 1744 devicekit-disks_007-1.dsc
 4d9f9171e73b965670029fb6928703c9a65c9d02 592935 devicekit-disks_007.orig.tar.gz
 8810b77361fe3255e38049e589a74a1fc60420e8 2437 devicekit-disks_007-1.diff.gz
 a9bae29af82a2afaed816b8001868567bc8b1bb0 54846 
devicekit-disks-doc_007-1_all.deb
 969e96463977282c52715e6ebaf814d572e6a4c5 178350 devicekit-disks_007-1_i386.deb
Checksums-Sha256: 
 6d66bf84e5c99f0c65ce37363d182016456a67c7579f39e12c693aebdd7c4a79 1744 
devicekit-disks_007-1.dsc
 973f89e7a6b347d3367577c6524dbfd053d2242bb7c9e2496d8cdcaeb93dc1c9 592935 
devicekit-disks_007.orig.tar.gz
 f9b40e68a6231b3d18f8a04b86bc3c4b1d0f35f2d4eef8a5746499a995cdf38f 2437 
devicekit-disks_007-1.diff.gz
 73e7c98d84df5d358135f020569467a5245d94e8627dc56d7687a9787cabc79f 54846 
devicekit-disks-doc_007-1_all.deb
 fcc0dc96eb89155bed0282bcb556ede1a7a27f67d0124132f5cec46d9264f03a 178350 
devicekit-disks_007-1_i386.deb
Files: 
 74219120d99ff61704ada6779e477bd5 1744 admin optional devicekit-disks_007-1.dsc
 6fa70c6a67beacbc55374e92c671a568 592935 admin optional 
devicekit-disks_007.orig.tar.gz
 805ce90f9f01fcdbb2e651721f4c3a14 2437 admin optional 
devicekit-disks_007-1.diff.gz
 96d7ddb7dcd1bbd76d16c2d93d0a932b 54846 doc optional 
devicekit-disks-doc_007-1_all.deb
 2415fa22aff8dde5d10255ede32a6b40 178350 admin optional 
devicekit-disks_007-1_i386.deb

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

iEYEARECAAYFAkrAz9sACgkQDecnbV4Fd/LpMQCg7Ue42DpnLrmQ5y90te4TJK6M
aiUAoM5P+3mt6Gd95o7EDEl63UlGVilX
=n4Tl
-END PGP SIGNATURE-


Accepted:
devicekit-disks-doc_007-1_all.deb
  to pool/main/d/devicekit-disks/devicekit-disks-doc_007-1_all.deb
devicekit-disks_007-1.diff.gz
  to pool/main/d/devicekit-disks/devicekit-disks_007-1.diff.gz
devicekit-disks_007-1.dsc
  to pool/main/d/devicekit-disks/devicekit-disks_007-1.dsc
devicekit-disks_007-1_i386.deb
  to pool/main/d/devicekit-disks/devicekit-disks_007-1_i386.deb
devicekit-disks_007.orig.tar.gz
  to pool/main/d/devicekit-disks/devicekit-disks_007.orig.tar.gz


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



Accepted ofono 0.6-1 (source all i386)

2009-09-28 Thread Andres Salomon
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 16:21:52 +
Source: ofono
Binary: ofono ofono-dev
Architecture: source all i386
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Andres Salomon dilin...@debian.org
Changed-By: Andres Salomon dilin...@debian.org
Description: 
 ofono  - Mobile telephony stack (daemon)
 ofono-dev  - Mobile telephony stack (development files)
Changes: 
 ofono (0.6-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 29d9d6a1f8a6a124635b032dad390a348a66146c 1009 ofono_0.6-1.dsc
 a370b1724e8d99eb613416d7927aeb21472ebbef 527387 ofono_0.6.orig.tar.gz
 7b833d36c558f2d673cf652c12c3f0f4fdcfdfe7 2440 ofono_0.6-1.diff.gz
 f0a6ecb09c8633fff746cca6483ea6491e194a2b 12030 ofono-dev_0.6-1_all.deb
 bc7cc3e09a31efe0f645f421071a5ff568a59ba4 139936 ofono_0.6-1_i386.deb
Checksums-Sha256: 
 64df93712dcef0c54ed3fa148fd9d900598be6416b524ed9eb3ba572b6a9b367 1009 
ofono_0.6-1.dsc
 6119f4bc73081b28dc91c0383894ab7c880d72a855a5cc8b2204aa682df6382f 527387 
ofono_0.6.orig.tar.gz
 cfce56ed6e5612b69e71cefa130f59411607a7df306ddbb0b3e69c1004823c10 2440 
ofono_0.6-1.diff.gz
 5d15b72a58a6af4057f52e74f177b09769d138b7f2663493fbc922b4dbf74a8e 12030 
ofono-dev_0.6-1_all.deb
 770a423a0298034100adeff172160d6b763b4efa85824e87d1133d7b06f12f52 139936 
ofono_0.6-1_i386.deb
Files: 
 428fb59353e07dde2c035188671d9ab4 1009 admin optional ofono_0.6-1.dsc
 438187a4d9729bff3f828257907d19ad 527387 admin optional ofono_0.6.orig.tar.gz
 a1e7e6ce5c85e00012c1a0f202afab8f 2440 admin optional ofono_0.6-1.diff.gz
 21e659bf6c10bac9f8a0a324cdca22e5 12030 admin optional ofono-dev_0.6-1_all.deb
 146c4904c8e99a49aafd48be1816760c 139936 admin optional ofono_0.6-1_i386.deb

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

iEYEARECAAYFAkrA42gACgkQOmXwGc/ULybBmACfQcFyQhOb0if309/6sCakXq+I
VesAnjafa/Y4ndlKnfXfE2j9IHKbe+vq
=grHi
-END PGP SIGNATURE-


Accepted:
ofono-dev_0.6-1_all.deb
  to pool/main/o/ofono/ofono-dev_0.6-1_all.deb
ofono_0.6-1.diff.gz
  to pool/main/o/ofono/ofono_0.6-1.diff.gz
ofono_0.6-1.dsc
  to pool/main/o/ofono/ofono_0.6-1.dsc
ofono_0.6-1_i386.deb
  to pool/main/o/ofono/ofono_0.6-1_i386.deb
ofono_0.6.orig.tar.gz
  to pool/main/o/ofono/ofono_0.6.orig.tar.gz


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



Accepted telepathy-glib 0.9.0-1 (source all i386)

2009-09-28 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 28 Sep 2009 16:45:32 +0100
Source: telepathy-glib
Binary: libtelepathy-glib0 libtelepathy-glib-dev libtelepathy-glib0-dbg 
libtelepathy-glib-doc
Architecture: source all i386
Version: 0.9.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Telepathy maintainers 
pkg-telepathy-maintain...@lists.alioth.debian.org
Changed-By: Simon McVittie s...@debian.org
Description: 
 libtelepathy-glib-dev - GLib Telepathy connection manager library (headers)
 libtelepathy-glib-doc - GLib Telepathy library (documentation)
 libtelepathy-glib0 - Telepathy framework - GLib library
 libtelepathy-glib0-dbg - GLib Telepathy library (debug symbols)
Changes: 
 telepathy-glib (0.9.0-1) unstable; urgency=low
 .
   * New upstream version (API, ABI added)
Checksums-Sha1: 
 efe77ee0e05c74d163a0b37916bc9c305a08f4ba 2289 telepathy-glib_0.9.0-1.dsc
 abfb07a006d52014bb40b8c2c9e3b8de26ead04e 2511566 
telepathy-glib_0.9.0.orig.tar.gz
 dc3210d07527daa740328a17c6438bc6d03aad76 16137 telepathy-glib_0.9.0-1.diff.gz
 bc6d18b3422a442142c3cfaaa521e6404a015a52 852244 
libtelepathy-glib-doc_0.9.0-1_all.deb
 3e0d58154b1c8d8877a6c76ea8164dd3b6189e0d 515362 
libtelepathy-glib0_0.9.0-1_i386.deb
 d6a2649f1cc18d0420839a9ae77e12a5fb6d4049 517254 
libtelepathy-glib-dev_0.9.0-1_i386.deb
 ca30ba2f6b43e85ea0c4f232aec7db6abf6ee2f9 642098 
libtelepathy-glib0-dbg_0.9.0-1_i386.deb
Checksums-Sha256: 
 f00bc0b0c4539ac698a4550ef5ffbd0853dde22624b3553effae82c22044ede9 2289 
telepathy-glib_0.9.0-1.dsc
 e8c6f36db00af8a17f9a874f8474241b59894a02accdc4d879dfa363e8e22d17 2511566 
telepathy-glib_0.9.0.orig.tar.gz
 115a7602fbaf059d155d648451c766205deb587bc48921fe305ca1e9da83c71a 16137 
telepathy-glib_0.9.0-1.diff.gz
 7cb6a102b8a749504c13ab8e5c49c13a9c46d21d84640996571278301dc3e604 852244 
libtelepathy-glib-doc_0.9.0-1_all.deb
 72bae1e228c0631799c31fa4408ed65026678833edcdb263789791d6a72b2e30 515362 
libtelepathy-glib0_0.9.0-1_i386.deb
 86aef53113d8662352931178a631b2b5dea2fa4b5cf96fe9c99c670351bc612c 517254 
libtelepathy-glib-dev_0.9.0-1_i386.deb
 f167bab66839267639958e63d5472683529645c0ab9d42887510fe2360c8d942 642098 
libtelepathy-glib0-dbg_0.9.0-1_i386.deb
Files: 
 ef55e39a625f70d36c649307f7f42b31 2289 libs optional telepathy-glib_0.9.0-1.dsc
 1ebb5b089db66db42647d62df5194327 2511566 libs optional 
telepathy-glib_0.9.0.orig.tar.gz
 1e09e006004ba0f2e8b0ef3605f88b61 16137 libs optional 
telepathy-glib_0.9.0-1.diff.gz
 abd6027b2f12ccae7e60f5d37f661f57 852244 doc optional 
libtelepathy-glib-doc_0.9.0-1_all.deb
 651f7ea112c2fc5cc74e539ae8db7164 515362 libs optional 
libtelepathy-glib0_0.9.0-1_i386.deb
 7935203bb08f636e2a04a8a3a4c49b3f 517254 libdevel optional 
libtelepathy-glib-dev_0.9.0-1_i386.deb
 9547f834463bdcc2024e74e2617fba61 642098 debug extra 
libtelepathy-glib0-dbg_0.9.0-1_i386.deb

-BEGIN PGP SIGNATURE-

iQIVAwUBSsDdwk3o/ypjx8yQAQikqw/9GmLMoJxL3Uc2JJQNxtsXNlS0SXwwg8Yt
i535vQpNd9/MH1I4q41Pr6At3y+WMy8rM03x0FuRo4wsHUBJjkuHEBOfU7GTn7Lv
ATG9K/HaxM+l1d1jdlV5pApJNyj5wfx8++YklRtSqbrkk0Md+M780s+REkU/obAr
d0Itygc5UfFHIbIl0K1PtDfMGdZQ4XYYP9WJyMlsLz0zN/gh8BMJc7wmIZbM8Neo
KkG8jTB++7MRW8zUjvD7RxCHQhI0vnhntLyQiADv4DnAAwr7igd3nuuoAbXDo5rz
YRafqGOgMfD/im2imcaui1h5Kx9H8uTw+PF9WyTgSSufdbpi3S9W4Wg7E2HMku2p
Hkvd8KR3DfG4+tl4/sS6+C8EeLYKeKcNNEOSP1oQ3owosKFumFKXMuscENhNQQdL
Voqaje50G2G+JRQdicIfpL/D0Zi5pI4lbwQixY8u8Wp0emZbtluJPxLQYnIRdwEV
CuEEvPBme7gn9viV3rTAtXidBnCAqZXTzYUE5NS+Sk7XoIZ7TcKjv+muzJqYAXH6
7VftGGhmWgQ1fq7ayyruXjCxBlla337a48mjOPZTl1mWvGt/8P5SCYqoBZfejS4k
QJcp2H1dj1ZfgXQ4iyGCMYVTG/D8bBJpGsmGOSgVukO9QfkymAxipDsGcPWY1wm0
UV+r//IQQWQ=
=7NFq
-END PGP SIGNATURE-


Accepted:
libtelepathy-glib-dev_0.9.0-1_i386.deb
  to pool/main/t/telepathy-glib/libtelepathy-glib-dev_0.9.0-1_i386.deb
libtelepathy-glib-doc_0.9.0-1_all.deb
  to pool/main/t/telepathy-glib/libtelepathy-glib-doc_0.9.0-1_all.deb
libtelepathy-glib0-dbg_0.9.0-1_i386.deb
  to pool/main/t/telepathy-glib/libtelepathy-glib0-dbg_0.9.0-1_i386.deb
libtelepathy-glib0_0.9.0-1_i386.deb
  to pool/main/t/telepathy-glib/libtelepathy-glib0_0.9.0-1_i386.deb
telepathy-glib_0.9.0-1.diff.gz
  to pool/main/t/telepathy-glib/telepathy-glib_0.9.0-1.diff.gz
telepathy-glib_0.9.0-1.dsc
  to pool/main/t/telepathy-glib/telepathy-glib_0.9.0-1.dsc
telepathy-glib_0.9.0.orig.tar.gz
  to pool/main/t/telepathy-glib/telepathy-glib_0.9.0.orig.tar.gz


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



Accepted x11proto-render 2:0.11-1 (source all)

2009-09-28 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 18:16:15 +0200
Source: x11proto-render
Binary: x11proto-render-dev
Architecture: source all
Version: 2:0.11-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 x11proto-render-dev - X11 Render extension wire protocol
Changes: 
 x11proto-render (2:0.11-1) unstable; urgency=low
 .
   * Run autoreconf at build time.
   * Bump debhelper compat to 5.
   * Parse space-separated DEB_BUILD_OPTIONS, handle parallel=N.
   * Drop Pre-Depends on x11-common and Conflicts/Replaces on render-dev.  This
 was only needed for upgrades from sarge.
   * Remove the XS- prefix from Vcs-* control fields.
   * Add dependency on x11proto-core-dev.
   * Bump Standards-Version to 3.8.3.
   * New upstream release.
Checksums-Sha1: 
 4272c522dd98a14597a28f362237ce70c8473856 1321 x11proto-render_0.11-1.dsc
 69c6cbae5e67d3a47b31dbf4d711607545e1bb05 78974 x11proto-render_0.11.orig.tar.gz
 6471b476855637e34b3bff741f0ab1db6ce2846f 13591 x11proto-render_0.11-1.diff.gz
 a6e31df93b2e344e2b11a30aec5652273ef58dbf 7368 
x11proto-render-dev_0.11-1_all.deb
Checksums-Sha256: 
 8a8dcff2704b15c16ee50945d92aeeb6760de183d197251f7b7b4e1591c981c9 1321 
x11proto-render_0.11-1.dsc
 256e4af1d3b4007872a276ed9e5c2522f80f5fe69b97268542917635b4dbf758 78974 
x11proto-render_0.11.orig.tar.gz
 083e334c26ff8c7cc638f6fd183bf4c34ab6fa1762ceabed5fe32f0e92289825 13591 
x11proto-render_0.11-1.diff.gz
 c9c7b20659c80bfc451b699b35b4d440d4d5585fa30d7e337f02c507c82e2bff 7368 
x11proto-render-dev_0.11-1_all.deb
Files: 
 fa65d3f78c086dae6bfe05b6f094737a 1321 x11 optional x11proto-render_0.11-1.dsc
 57216f25b9a5edc561b83a7484cb17e8 78974 x11 optional 
x11proto-render_0.11.orig.tar.gz
 184928496178ddbb4cb2fe04dc0d04fc 13591 x11 optional 
x11proto-render_0.11-1.diff.gz
 d049a48e5020f98b0b16661939fe8646 7368 x11 optional 
x11proto-render-dev_0.11-1_all.deb

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

iEYEARECAAYFAkrA4hgACgkQmEvTgKxfcAwh9gCfdspGidqoGaD8BSF9Ko0DL6s5
I+sAn1/72VcbOOk/9GzBEgXubMM1qr6M
=LiQm
-END PGP SIGNATURE-


Accepted:
x11proto-render-dev_0.11-1_all.deb
  to pool/main/x/x11proto-render/x11proto-render-dev_0.11-1_all.deb
x11proto-render_0.11-1.diff.gz
  to pool/main/x/x11proto-render/x11proto-render_0.11-1.diff.gz
x11proto-render_0.11-1.dsc
  to pool/main/x/x11proto-render/x11proto-render_0.11-1.dsc
x11proto-render_0.11.orig.tar.gz
  to pool/main/x/x11proto-render/x11proto-render_0.11.orig.tar.gz


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



Accepted libpciaccess 0.10.9-1 (source amd64)

2009-09-28 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 18:29:27 +0200
Source: libpciaccess
Binary: libpciaccess0 libpciaccess-dev
Architecture: source amd64
Version: 0.10.9-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libpciaccess-dev - Generic PCI access library for X - development files
 libpciaccess0 - Generic PCI access library for X
Changes: 
 libpciaccess (0.10.9-1) unstable; urgency=low
 .
   * New upstream release.
   * Refresh pciaccess-hurd-hack.diff.
   * Update shlibs and symbols file.
Checksums-Sha1: 
 d1301da14b69fae4a5860195b6992dde7bd4237f 1303 libpciaccess_0.10.9-1.dsc
 4c1c06103b89d39f041fa953bc43d105cf548014 389012 libpciaccess_0.10.9.orig.tar.gz
 1e3dfd7599ef212ad9755f51c1c3b455f64b0075 23805 libpciaccess_0.10.9-1.diff.gz
 ed64301ff6e39663754e4280c5df656e3a758681 33924 libpciaccess0_0.10.9-1_amd64.deb
 b167a4bdc0974be70d77e29f5d70951417e6d0fd 37232 
libpciaccess-dev_0.10.9-1_amd64.deb
Checksums-Sha256: 
 f610c2db3b3d5b86c8e394953c616e3e9bec4bf0fea48e0b1229b46bdcb2b34b 1303 
libpciaccess_0.10.9-1.dsc
 a4e994765b578cbd830630095164120a4664a65618f5507d5ccba7ca9ad37c1d 389012 
libpciaccess_0.10.9.orig.tar.gz
 77168e86f0034822b57e5e1af9432ff06a9c1d8057f7882cc0d495dd5e4ba3b5 23805 
libpciaccess_0.10.9-1.diff.gz
 92b45f89813ee6c952e0de3e737e5ed62ef7e15fc52d48baea503bc6e7bb04ae 33924 
libpciaccess0_0.10.9-1_amd64.deb
 0a046ac09f0e9f34bc76da81a4f3366eac9dc94a3d371cec731d5c7cd9ed5fa7 37232 
libpciaccess-dev_0.10.9-1_amd64.deb
Files: 
 fd155fb492134d7513bf7649dcddef25 1303 devel optional libpciaccess_0.10.9-1.dsc
 5dad6221c2766d5a727ef32e83a0a878 389012 devel optional 
libpciaccess_0.10.9.orig.tar.gz
 45a7d672f3facaaa5c5059f62ba71863 23805 devel optional 
libpciaccess_0.10.9-1.diff.gz
 f92349512b87eef1d74d046b2cbb9273 33924 libs optional 
libpciaccess0_0.10.9-1_amd64.deb
 970f425a82ae7109f532b93ba6d197b9 37232 libdevel optional 
libpciaccess-dev_0.10.9-1_amd64.deb

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

iEYEARECAAYFAkrA5OMACgkQmEvTgKxfcAzMeACgwfPt33NU9m7E9na5gnDHNDX2
ozYAoLIgzEQcIHb6bKGr5KDRJ7rROzHD
=4hgr
-END PGP SIGNATURE-


Accepted:
libpciaccess-dev_0.10.9-1_amd64.deb
  to pool/main/libp/libpciaccess/libpciaccess-dev_0.10.9-1_amd64.deb
libpciaccess0_0.10.9-1_amd64.deb
  to pool/main/libp/libpciaccess/libpciaccess0_0.10.9-1_amd64.deb
libpciaccess_0.10.9-1.diff.gz
  to pool/main/libp/libpciaccess/libpciaccess_0.10.9-1.diff.gz
libpciaccess_0.10.9-1.dsc
  to pool/main/libp/libpciaccess/libpciaccess_0.10.9-1.dsc
libpciaccess_0.10.9.orig.tar.gz
  to pool/main/libp/libpciaccess/libpciaccess_0.10.9.orig.tar.gz


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



Accepted libytnef 1.5-2 (source amd64)

2009-09-28 Thread Joshua Kwan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 10:13:48 -0700
Source: libytnef
Binary: libytnef0 libytnef0-dev
Architecture: source amd64
Version: 1.5-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Joshua Kwan jo...@triplehelix.org
Description: 
 libytnef0  - improved decoder for application/ms-tnef attachments
 libytnef0-dev - improved decoder for application/ms-tnef attachments
Changes: 
 libytnef (1.5-2) unstable; urgency=low
 .
   * Orphaning this package. Thanks for the NMUs!
   * Bump debhelper compat to 7 and Standards-Version to 3.8.3.
   * Make dependency between libytnef0-dev and libytnef0 more strict.
Checksums-Sha1: 
 a3c3e4ac25ccc9163d99d08171682e2ee8a3d152 1656 libytnef_1.5-2.dsc
 f05bc709bdd30f263774d0d249d1841a87309f55 403172 libytnef_1.5-2.diff.gz
 367a55687de6dd5155a6222af041900f225b42c5 21258 libytnef0_1.5-2_amd64.deb
 a8ffbf225655f5376cec1d2b731dd367b3e2d401 30382 libytnef0-dev_1.5-2_amd64.deb
Checksums-Sha256: 
 802b6b28188866c56a942d70a46406a57d813b3db2ac5306ee928f0f820f0cd6 1656 
libytnef_1.5-2.dsc
 2b416ddeda9bfae85894d38d47d5a5ebf9264371617582a0bd0aceabed7ff5a4 403172 
libytnef_1.5-2.diff.gz
 a01a855573edbc5ab4dfc2c911edb71c2ce3a85b5a09ab93cfbf9b7d29fef670 21258 
libytnef0_1.5-2_amd64.deb
 50e29fda1d225c154211eb45ab58254c24e92bfd3bba796b0e1074ed7330 30382 
libytnef0-dev_1.5-2_amd64.deb
Files: 
 66b24da82c0c669f017c202151dedd1f 1656 utils extra libytnef_1.5-2.dsc
 e3834c5ffe4e979129ca2d0eb6194c14 403172 utils extra libytnef_1.5-2.diff.gz
 8dbe70a295f21c6beaf6f3a4a9940242 21258 libs extra libytnef0_1.5-2_amd64.deb
 b222f48f6444ee026ee8d1410af45136 30382 libdevel extra 
libytnef0-dev_1.5-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: http://triplehelix.org/~joshk/pubkey_gpg.asc

iQIcBAEBAgAGBQJKwPD7AAoJEKOILr94RG8mO8wP/iuDbYUyzazlXtzU8Qfh32LS
JmEO7ck3SOhspVN0e/mJBLPSrdyrEXfRkDgfHVzv3286bGGJBDsrYv4KKtHoi+cN
udlTAjoTZSY2MjkNgTXWjIrnBhapZ7BcWiW+Y8RTjGE68BQVXnUwKuQIW4WYD9j+
IvecuD+lYsGa1yC4WjckiT/fTL/7idmyrdQcN1ssph7OxYlmGk/lVXLWJ/zKnGp3
j8OChcc9+KkjvmFha2kYfJMu1GfAMckM9fIU/7/34W1ySoX2CRLqEuoe8q36jMjW
FyFFIeLofDDAFeeUHT9qqUWE7225SV2R2bDYJr9BAH4jG+ERrzvNMq6WcKWdp5Pp
0HbLN9TduQ8cya1ehIAtK1aE4dwPEa0Fii1gSlLf2+0pZVd1Q5po4dZuQacLX92Z
U+MFT9tDq5FvuU1UjeePx22xryiBA3kBNsr7TCC2YtKATmByfgwHUKfxLsCPy+FZ
eiTUHPXPArJFzAgfOQF8bKpptLs+ImjhOGSVYC3XK/hgPKPnk5P55KPHLu50YYdo
JLPDHpjR25A+nCo8uV2YMGLf/TEOvgMZ0MMwioeznbTL956VjoITg56P1UNy0Amz
bdxU0wdEtHw8TyEHOdca6SU/ecoXlbVbsCp4hPYfCkUOpFuj+P2wRUVBdZcltKzv
JGChzvaIn5RDYTrovc1S
=npIm
-END PGP SIGNATURE-


Accepted:
libytnef0-dev_1.5-2_amd64.deb
  to pool/main/liby/libytnef/libytnef0-dev_1.5-2_amd64.deb
libytnef0_1.5-2_amd64.deb
  to pool/main/liby/libytnef/libytnef0_1.5-2_amd64.deb
libytnef_1.5-2.diff.gz
  to pool/main/liby/libytnef/libytnef_1.5-2.diff.gz
libytnef_1.5-2.dsc
  to pool/main/liby/libytnef/libytnef_1.5-2.dsc


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



Accepted ytnef 2.6-2 (source amd64)

2009-09-28 Thread Joshua Kwan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 10:05:04 -0700
Source: ytnef
Binary: ytnef
Architecture: source amd64
Version: 2.6-2
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Joshua Kwan jo...@triplehelix.org
Description: 
 ytnef  - improved decoder for application/ms-tnef attachments
Closes: 547785
Changes: 
 ytnef (2.6-2) unstable; urgency=low
 .
   * Orphaning this package. I have no time to maintain a package with
 no upstream (see below.)
   * Fix multiple security vulnerabilities, I hope. Upstream is dead
 on this package so it's really up to us. closes: #547785
   * Bump Standards-Version to 3.8.0 and debhelper compat level to 7.
   * Fix all kinds of lintian errors (the low hanging fruit):
 - drop Recommends on libmime-perl (replaced by Depends: perl)
 - fix FSF address
 - fix some debian/rules nits
 - add a README.source
 - replace dh_clean -k with dh_prep
Checksums-Sha1: 
 ce13db2415f9ea7ae9cc3433a84829f91c0c5aa3 1645 ytnef_2.6-2.dsc
 248c7eb822d839c98692b0a45d8524b66c9fbf02 4257 ytnef_2.6-2.diff.gz
 ece9d912bd4146aeee2c7ef19590b58b4a2519b2 16200 ytnef_2.6-2_amd64.deb
Checksums-Sha256: 
 9ec9b230c420a0297ca6de54d3937da3e5f91e9b5376e79051f58779be9c1e8f 1645 
ytnef_2.6-2.dsc
 a8519d4732cdc85ae5111878fea135818c683f04c2129bed36ad13086c080e4a 4257 
ytnef_2.6-2.diff.gz
 5702b78ac51a4cb6c9ecaff2d49e8d31152c6f56dce1cdd071886561a9cd9408 16200 
ytnef_2.6-2_amd64.deb
Files: 
 a4dac41e1db0b23d3241c61de148a45a 1645 utils extra ytnef_2.6-2.dsc
 86772219a8e773e3082f4760377d1090 4257 utils extra ytnef_2.6-2.diff.gz
 55790e79a10349b96215461f2c84718d 16200 utils extra ytnef_2.6-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: http://triplehelix.org/~joshk/pubkey_gpg.asc

iQIcBAEBAgAGBQJKwPENAAoJEKOILr94RG8mETwP/A4ZQ2LvxupQ0aRQST/vN3Ik
/TClQmFdgH2xgzS1AV3jFJjwWuksztZWSLiuPT3XB1DpV1/sbA4WJ5RMOVrwGAb6
QE54dukryYdaGMT22fIVEiGqkr76+kMWcCqKCvAuemnVyasJBIYCm8oiJ7EQxZOl
Qh4TgspuZDImQyNNRDkTLQAbiJDs/IK8rhvUw7ZdJkqfayt0e0ztdOW4tRlHPGJ/
DqbQwWpENkz+bvCE1inKVRgWtYP9cYNjC9VOLkuDUuT8Umcawq6wcPSwLtea5sST
YQmhoJS5NvAeNa2xTUglGa9U7onBAd2Afi4mZSnlU7L5ehY9DBn39aYDIjYyxiF9
KnnlkS534cMbtrzRXEPj7+ek6GWl2iJWays02ZMAwY15Ea7bfW18scXjLdTcoukP
kA0LYnVc6/0VIiUxEHXfQxj+BPhH77caeDdvqskDesdpirmXmZG0bLxMduKeQbQm
koQe8P+BYG2Cv034q0Sp5LRDAqLPyz5Di3DYUWcc10QcbvxWTEesTpZvtj9P+NHq
nnrmAck+AawZSWFDn3Pmt7L7mRbVvA2X3unsYY0cCefGV7Oa9AcXUUvGa81V/PR8
IhHPgVZ9XCVeQwNCCbWCOzbBjYxb8WRTywm6EneYGnuDmdg3MGTuosgXRSqA7n8M
iydeAHyZidJov0DfzxG8
=44IV
-END PGP SIGNATURE-


Accepted:
ytnef_2.6-2.diff.gz
  to pool/main/y/ytnef/ytnef_2.6-2.diff.gz
ytnef_2.6-2.dsc
  to pool/main/y/ytnef/ytnef_2.6-2.dsc
ytnef_2.6-2_amd64.deb
  to pool/main/y/ytnef/ytnef_2.6-2_amd64.deb


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



Accepted scilab-scimax 2.0.1-4 (source all i386)

2009-09-28 Thread Sylvestre Ledru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 16:36:43 +0200
Source: scilab-scimax
Binary: scilab-scimax scilab-scimax-doc
Architecture: source all i386
Version: 2.0.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sylvestre Ledru sylves...@debian.org
Description: 
 scilab-scimax - Symbolic computations for Scilab based on Maxima
 scilab-scimax-doc - Symbolic computations for Scilab based on Maxima - 
Documentation
Changes: 
 scilab-scimax (2.0.1-4) unstable; urgency=low
 .
   * Simplification of debian/rules
   * On the load of the toolbox, provide the actual path to the demo
   * Lintian warnings removed (*-has-useless-call-to-ldconfig)
Checksums-Sha1: 
 452a74dece6d3b920ea2f55a8ca2caf339504f66 1432 scilab-scimax_2.0.1-4.dsc
 d0d7a130f1cd117b4f57d6f99db24ed987e6c7c5 4851 scilab-scimax_2.0.1-4.diff.gz
 0f16ff78f3c812580acbf9c726c2a686724d24fc 7774202 
scilab-scimax-doc_2.0.1-4_all.deb
 a8ae689ccf4be84c861bfd588c3f326391d35c79 340044 scilab-scimax_2.0.1-4_i386.deb
Checksums-Sha256: 
 615ce6f2bda64f7318642e7c96211cecd60ec7b6ee15de91bcd5ce500bf1fae3 1432 
scilab-scimax_2.0.1-4.dsc
 6ed7fc99ab0880ccfc6222960105bc93f9c8580d60eaa0674c61205446466b24 4851 
scilab-scimax_2.0.1-4.diff.gz
 fea39d96043f9327fc3c73b6f65e40b77e1804ac88508af4f2863812d56cc21a 7774202 
scilab-scimax-doc_2.0.1-4_all.deb
 0115c0c37417d61a60f6d35e36d06ad7e7b02089bb37fea0261224344e121d63 340044 
scilab-scimax_2.0.1-4_i386.deb
Files: 
 612dfcb04e8e8d129bd604042d7bb68c 1432 math optional scilab-scimax_2.0.1-4.dsc
 d8261c4a1b65bea49386b3a8bad6014d 4851 math optional 
scilab-scimax_2.0.1-4.diff.gz
 b42639cc5a704a01157204a2cde80b8c 7774202 doc optional 
scilab-scimax-doc_2.0.1-4_all.deb
 2f9312ac7b82718c14a8352d0f90499e 340044 math optional 
scilab-scimax_2.0.1-4_i386.deb

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

iEYEARECAAYFAkrA8PEACgkQiOXXM92JlhDuyQCePYv+GH5xHw3gtdrmTAt8GDi1
dUUAoO1MQ/fucKte3frURIP1n1a1Pz6B
=Y5qE
-END PGP SIGNATURE-


Accepted:
scilab-scimax-doc_2.0.1-4_all.deb
  to pool/main/s/scilab-scimax/scilab-scimax-doc_2.0.1-4_all.deb
scilab-scimax_2.0.1-4.diff.gz
  to pool/main/s/scilab-scimax/scilab-scimax_2.0.1-4.diff.gz
scilab-scimax_2.0.1-4.dsc
  to pool/main/s/scilab-scimax/scilab-scimax_2.0.1-4.dsc
scilab-scimax_2.0.1-4_i386.deb
  to pool/main/s/scilab-scimax/scilab-scimax_2.0.1-4_i386.deb


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



Accepted skinedit 1.27-2 (source amd64)

2009-09-28 Thread Krzysztof Burghardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Sep 2009 14:05:40 +0200
Source: skinedit
Binary: tiemu-skinedit
Architecture: source amd64
Version: 1.27-2
Distribution: unstable
Urgency: low
Maintainer: Krzysztof Burghardt krzysz...@burghardt.pl
Changed-By: Krzysztof Burghardt krzysz...@burghardt.pl
Description: 
 tiemu-skinedit - skin editor for TiEmu
Closes: 362161
Changes: 
 skinedit (1.27-2) unstable; urgency=low
 .
   * New maintainer (Closes: #362161)
   * Updated to debhelper 5
   * Suggests tiemu
   * Updated debian/copyright
   * Standards-Version updated to 3.8.3
Checksums-Sha1: 
 24326ba2e4148bfc0808886a0803a92e3770ddab 1037 skinedit_1.27-2.dsc
 a24f4f511e5652d811c44dc30d197af77ce9b21a 2686 skinedit_1.27-2.diff.gz
 1117b7fa621ddc0809380008c82b7f982242c2fe 51170 tiemu-skinedit_1.27-2_amd64.deb
Checksums-Sha256: 
 58a457cc1091afc12a3270cbedad8efe6e318142015c96a86f10fa3389394696 1037 
skinedit_1.27-2.dsc
 e048da1206907b44f70987fc2200040b051c3ef4fe47254de693724db0e0c896 2686 
skinedit_1.27-2.diff.gz
 681c663732611821f1ac2e4611d119139ea1faf49633b58dc99b2a214b21b75b 51170 
tiemu-skinedit_1.27-2_amd64.deb
Files: 
 3e6429f56ce03ca11a82b97dfc8e7f4c 1037 math optional skinedit_1.27-2.dsc
 b221ec8202b36c8dcb990da927226419 2686 math optional skinedit_1.27-2.diff.gz
 fac4c238f28a89569bcb8e4172f375f4 51170 math optional 
tiemu-skinedit_1.27-2_amd64.deb

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

iD8DBQFKwO/uzWFP1/XWUWkRAqQ1AKCVzAhopKsr0BvZ8QDaR09tdLzQfgCg0iH8
cHTYY5PRCeEeICU8kB+xZd8=
=0SLC
-END PGP SIGNATURE-


Accepted:
skinedit_1.27-2.diff.gz
  to pool/main/s/skinedit/skinedit_1.27-2.diff.gz
skinedit_1.27-2.dsc
  to pool/main/s/skinedit/skinedit_1.27-2.dsc
tiemu-skinedit_1.27-2_amd64.deb
  to pool/main/s/skinedit/tiemu-skinedit_1.27-2_amd64.deb


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



Accepted tiemu 3.02-1 (source amd64)

2009-09-28 Thread Krzysztof Burghardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 27 Sep 2009 12:15:27 +0200
Source: tiemu
Binary: tiemu
Architecture: source amd64
Version: 3.02-1
Distribution: unstable
Urgency: low
Maintainer: Krzysztof Burghardt krzysz...@burghardt.pl
Changed-By: Krzysztof Burghardt krzysz...@burghardt.pl
Description: 
 tiemu  - Texas Instruments calculators emulator (without GDB)
Closes: 362159
Changes: 
 tiemu (3.02-1) unstable; urgency=low
 .
   * New upstream release.
   * New maintainer. (Closes: #362159)
   * Changed dependency from iceape to iceweasel.
   * Conforms with latest Standards Version 3.8.3.
Checksums-Sha1: 
 2000e9a1411d82a44e0ef45a50d6fb7da9fdd9e5 1247 tiemu_3.02-1.dsc
 4d65f325e5a4faf354839a1c7de61fe8efde5cc4 2748929 tiemu_3.02.orig.tar.gz
 27e07cc620a90376a6f910bf8565a7c0c7c03224 7241 tiemu_3.02-1.diff.gz
 dc80e3dd3b7c46c12559fc629417684756e8ca7a 1960076 tiemu_3.02-1_amd64.deb
Checksums-Sha256: 
 aaa853cb508220a14eeab2676fd5c775c724393f14bef119288cdd1f33e93ba6 1247 
tiemu_3.02-1.dsc
 6bf4bb419615ed37876314b807b470d6fa64df56606741eae15a85fec0268f45 2748929 
tiemu_3.02.orig.tar.gz
 dd36c1a3c43f45fad4a1f1f6d4bd09a9ba0b79223ca5c2b6e54ac071cb52b302 7241 
tiemu_3.02-1.diff.gz
 c6b7c9ca2d2d619c75516ed5fbc48891b7e25c9a3f57a391db0f2f8eeba032c1 1960076 
tiemu_3.02-1_amd64.deb
Files: 
 217c33f10629ae9f313b1f927f8b9d09 1247 math optional tiemu_3.02-1.dsc
 8a68da4a6f62b45fea899e5b9a50cda0 2748929 math optional tiemu_3.02.orig.tar.gz
 6c8a693545f81dd32aa5bad4ab819dc8 7241 math optional tiemu_3.02-1.diff.gz
 c52ccb5a0b44859894ab72f0dc13acd6 1960076 math optional tiemu_3.02-1_amd64.deb

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

iD8DBQFKwPFwzWFP1/XWUWkRAoPqAJ4rf3WN7px8rmXyk3z+TaoAxuRZhwCgubT6
qYMNTdp3j3F3UrqVF9jpfGY=
=WeTH
-END PGP SIGNATURE-


Accepted:
tiemu_3.02-1.diff.gz
  to pool/main/t/tiemu/tiemu_3.02-1.diff.gz
tiemu_3.02-1.dsc
  to pool/main/t/tiemu/tiemu_3.02-1.dsc
tiemu_3.02-1_amd64.deb
  to pool/main/t/tiemu/tiemu_3.02-1_amd64.deb
tiemu_3.02.orig.tar.gz
  to pool/main/t/tiemu/tiemu_3.02.orig.tar.gz


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



Accepted mysql-dfsg-5.1 5.1.39-1 (source all amd64)

2009-09-28 Thread Norbert Tretkowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 28 Sep 2009 17:41:51 +0200
Source: mysql-dfsg-5.1
Binary: libmysqlclient16 libmysqld-pic libmysqld-dev libmysqlclient-dev 
mysql-common mysql-client-5.1 mysql-server-5.1 mysql-server mysql-client
Architecture: source all amd64
Version: 5.1.39-1
Distribution: unstable
Urgency: low
Maintainer: Debian MySQL Maintainers pkg-mysql-ma...@lists.alioth.debian.org
Changed-By: Norbert Tretkowski no...@debian.org
Description: 
 libmysqlclient-dev - MySQL database development files
 libmysqlclient16 - MySQL database client library
 libmysqld-dev - MySQL embedded database development files
 libmysqld-pic - MySQL database development files
 mysql-client - MySQL database client (metapackage depending on the latest 
versio
 mysql-client-5.1 - MySQL database client binaries
 mysql-common - MySQL database common files (e.g. /etc/mysql/my.cnf)
 mysql-server - MySQL database server (metapackage depending on the latest 
versio
 mysql-server-5.1 - MySQL database server binaries
Closes: 545044 545329 545731 545760 545761
Changes: 
 mysql-dfsg-5.1 (5.1.39-1) unstable; urgency=low
 .
   * New upstream release.
   * New patch 60_zlib_innodb_workaround.dpatch to fix an incompatibility
 between zlib and innodb during testsuite run.
   * Wait in the SIGHUP trap to avoid killing an existing mysqld process when a
 HUP signal is sent to mysqld_safe, patch based based on Mathias Gug's fix
 from 5.0 series. (closes: #545044)
   * Update debconf translations:
 - Japanese, from Hideki Yamane. (closes: #545329)
 - Swedish, from Martin Bagge. (closes: #545731)
   * Fix some options in my.cnf about log_file have their named changed, patch
 from Mathias Gug. (closes: #545761)
   * Do not upgrade if there is an ndb management node configured, patch from
 Mathias Gug. (closes: #545760)
   * Switch build-dependency from libreadline5-dev to libreadline-dev.
Checksums-Sha1: 
 c0fdda70a6498d3f30e09c830e3f9a4389e2af5a 1732 mysql-dfsg-5.1_5.1.39-1.dsc
 17fc446cfccb6f94f86095e5969e221921a1604d 19345951 
mysql-dfsg-5.1_5.1.39.orig.tar.gz
 c3d24e357104479443bea9d3b0607ef2823d756b 328121 mysql-dfsg-5.1_5.1.39-1.diff.gz
 26c4a4c2f56109fad90a2a925bfc077410e8d96c 63012 mysql-common_5.1.39-1_all.deb
 cdc2c6d305566ad513f6ed48e88a3f00676de624 57444 mysql-server_5.1.39-1_all.deb
 a602133d0cd66c491de8e630b7a1489e512ce98d 57314 mysql-client_5.1.39-1_all.deb
 bddf326458528e6a0387d53444a6f7f017023388 2002456 
libmysqlclient16_5.1.39-1_amd64.deb
 8ab02e8d14c499497b438257887edd8516fff835 4412422 
libmysqld-pic_5.1.39-1_amd64.deb
 b3f6c4e1dfc5e95f6379526d55247e2d6d7f78e9 5600668 
libmysqld-dev_5.1.39-1_amd64.deb
 68de7066ea90c638ac706844ff7fc4e7cd3d4729 3718682 
libmysqlclient-dev_5.1.39-1_amd64.deb
 cd4cd551ecdbc51389c3152b6120b2e691a10ee4 8658428 
mysql-client-5.1_5.1.39-1_amd64.deb
 e94401fa311977d367c7109eaf014cd22f33ecfd 11176972 
mysql-server-5.1_5.1.39-1_amd64.deb
Checksums-Sha256: 
 3b68c9369961fde27dab598a5f8eed97b722cb4781c021868303b4767e960cee 1732 
mysql-dfsg-5.1_5.1.39-1.dsc
 c7a60beb036e75200d7b460b09f22811222b89d84cf72a3fd195d09b3aa2353e 19345951 
mysql-dfsg-5.1_5.1.39.orig.tar.gz
 ab4cf0ded172b86fb5e4dc390f861d2a88d4eebc6a969ec31a9dd8576afea315 328121 
mysql-dfsg-5.1_5.1.39-1.diff.gz
 8ae9979bdadf28526bb187c70ee61cc9724810c7131c248c042191413b74980d 63012 
mysql-common_5.1.39-1_all.deb
 fc455c736c27fae100c01cfa742efbcd38d953461a412f9dafaa0661b3ddfb7f 57444 
mysql-server_5.1.39-1_all.deb
 70e3da2bd6a5efc3fa6182fb421cd654ce96b61eb53b85e4475b8d4304561fc8 57314 
mysql-client_5.1.39-1_all.deb
 95ebcd63b4d582519def8513f6b51bc0782506a39c9b7d9df2d35bae36e0827f 2002456 
libmysqlclient16_5.1.39-1_amd64.deb
 545497c7030748cd8a92a357ccd7df725a5a09b266f7ce22562114cc610ecf9c 4412422 
libmysqld-pic_5.1.39-1_amd64.deb
 1fa91f8741596fdb8f33b05662d7c761f6e5c2401ae83e9a49ee58d07be07dd7 5600668 
libmysqld-dev_5.1.39-1_amd64.deb
 c916be01abeb1aa3dd24ef639d95a7699723d29fd7dd66d2614c57b4ef3316fd 3718682 
libmysqlclient-dev_5.1.39-1_amd64.deb
 414c45520673194ae8b427d83e52010ca03d867b1295ece2b54e54e1c98620cb 8658428 
mysql-client-5.1_5.1.39-1_amd64.deb
 6986c0b6b4d7c94b4786bc13ef67ae28a8a4c4334196a78d894318bd47561eae 11176972 
mysql-server-5.1_5.1.39-1_amd64.deb
Files: 
 fbc54cd75a25c0190f857589216f4ce8 1732 misc optional mysql-dfsg-5.1_5.1.39-1.dsc
 d75c1160629d35409903195895dd1074 19345951 misc optional 
mysql-dfsg-5.1_5.1.39.orig.tar.gz
 8851f1a7e7742979f4f0ad53d225c1fa 328121 misc optional 
mysql-dfsg-5.1_5.1.39-1.diff.gz
 a7c23e812479777537d0d6471d2551d6 63012 database optional 
mysql-common_5.1.39-1_all.deb
 07aa5a365d165cf82b55f8a9cd03910a 57444 database optional 
mysql-server_5.1.39-1_all.deb
 baace47b82560f82700fd5e8f1197788 57314 database optional 
mysql-client_5.1.39-1_all.deb
 819e3e37c03487af73d230e3455f091d 2002456 libs optional 
libmysqlclient16_5.1.39-1_amd64.deb
 5723bf124cabbbcd899ed1bb5fa1437f 4412422 libdevel optional 
libmysqld-pic_5.1.39-1_amd64.deb
 

  1   2   >