Re: apt-get wrapper for maintaining Partial Mirrors

2009-06-18 Thread Goswin von Brederlow
Joseph Rawson umebos...@gmail.com writes:

 There is another application that will help with the dependencies.  It's 
 called germinate, and it will take a short list of packages and a list of 
 repositories and build a bunch of different lists of packages and their 
 dependencies.  Germinate will also determine build dependencies for those 
 packages and recursively build a list of builddeps and the builddeps' 
 builddeps.

 I have thought of making an application that would get germinate and reprepro 
 to work together to help build a decent partial mirror that had the correct 
 set of packages, but the process was a bit time consuming.  It's been a while 
Was it that bad? It only needs to run 4 times a day when the mirror
push comes in.

 since I've worked on this, since my temporary solution to the problem was to 
 buy a larger hard drive.  Currently, I have a full mirror that I keep 
 updated, and a repository of locally built packages next to it.  I'm not 
 really happy with this solution, as it uses too much disk space and I'm 
 downloading packages that will never be used, but it's given me time to 
 tackle more important problems.

 Before writing any code, I would recommend taking a look at both reprepro and 
 germinate, as each of these applications is good at solving half of the 
 problems you describe.  I think that an ideal solution would be to write a 
 frontend program that takes a list of packages and upstream repositories, 
 feeds them into germinate, obtains the result from germinate, parse those 
 results and build a reprepro configuration from that, then get reprepro to 
 fetch the appropriate packages.

Combining germinate and reprepro is the right thing to do. Or reprepro
and a new filter instead of germinate. But don't rewrite reprepro.

Given a little bit of care when writing the reprepro config this can
be completly done as part of the filtering. There is no need for a
seperate run that scanns all upstream repositories as long as you can
define a partial order between them, i.e. contrib needs things from
main but main never from contrib. That would also have the benefit
that you only need to process those packages files that have changed.

 I would be happy to help with this, as I could use such an application, and I 
 already have a meager bit of python code that parses the output of germinate 
 (germinate uses a wiki-type markup in it's output files).  I stopped working 
 on the code since I bought a new hard drive, since I just used the extra 
 space to solve the problem for me, but I can bring it back to life, as I 
 would desire to use a more correct solution.

Urgs, that sucks. It should take a Packages/Sources style input and
output the same format.

Maybe rewriting it using libapt would be better than wrapping germinate.

MfG
Goswin


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



Re: apt-get wrapper for maintaining Partial Mirrors

2009-06-18 Thread Frank Lin PIAT
On Tue, 2009-06-09 at 16:16 -0500, Joseph Rawson wrote:
 On Tuesday 09 June 2009 13:14:53 sanket agarwal wrote:
  I had an idea in mind whereby the task of making mirrors for personal
  distributions can be automated.

lazy-way
Depending on what you want to achieve, a caching proxy might be an easy
solution (there are a specialized in the archive already)
/lazy-way

  This can be stated as: if a person
  wants to keep a customised set of packages for usage with the
  distribution, the tool should be able to develop dependencies, fetch
  packages, generate appropriate documentation and then create the
  corresponding directory structure in the target mirror! The task can
  be extended to include packages which are currently not under one of
  the standard mirrors!

lazy-way
One don't have to merge the repositories, one can just declare multiple
sources in /etc/apt/*
/lazy-way

  I think the tool can have immense utility in helping people automate
  the task of mantaining the repositories. Suggestions, positive and
  negative are invited.
 
  I have not included the impl details as I would first like to evaluate
  the idea at a feasibility and utility level.

If the scope of your project includes being able to bootstrap systems
from the mirror, resolving dependency is much more complex (some
packages aren't resolved by dependencies. For instance, the right kernel
is select by some logic in Debian-installer).
I found some interesting logic in debian-cd package.

Still, I don't consider that allowing bootstrapping is mandatory. Your
project would still be extremely valuable without it. [for those 95% of
the people that install from CD, as opposed to netboot].

Regards,

Franklin


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



Bug#533508: ITP: libcap-ng -- Library for manipulating POSIX.1e capabilities

2009-06-18 Thread Pierre Chifflier
Package: wnpp
Severity: wishlist
Owner: Pierre Chifflier pol...@debian.org

* Package name: libcap-ng
  Version : 0.4.2
  Upstream Author : Steve Grubb sgr...@redhat.com
* URL : http://people.redhat.com/sgrubb/libcap-ng
* License : LGPLv2+
  Programming Lang: C
  Description : An alternate posix capabilities library

 This library implements the user-space interfaces to the POSIX
 1003.1e capabilities available in Linux kernels.  These capabilities
are
 a partitioning of the all powerful root privilege into a set of
distinct
 privileges.
 .
 The libcap-ng library is intended to make programming with posix
 capabilities much easier than the traditional libcap library.



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



Re: apt-get wrapper for maintaining Partial Mirrors

2009-06-18 Thread Goswin von Brederlow
Frank Lin PIAT fp...@klabs.be writes:

 On Tue, 2009-06-09 at 16:16 -0500, Joseph Rawson wrote:
 On Tuesday 09 June 2009 13:14:53 sanket agarwal wrote:
  This can be stated as: if a person
  wants to keep a customised set of packages for usage with the
  distribution, the tool should be able to develop dependencies, fetch
  packages, generate appropriate documentation and then create the
  corresponding directory structure in the target mirror! The task can
  be extended to include packages which are currently not under one of
  the standard mirrors!

 lazy-way
 One don't have to merge the repositories, one can just declare multiple
 sources in /etc/apt/*
 /lazy-way

Lets say I want to mirror xserver-xorg from experimental. Then I would
want it to include xserver-xorg-core (= xyz) also from experimental
as the dependency dictates but not include libc6 from experimental as
the sid one is sufficient.

A key point here would be flexibility.

  I think the tool can have immense utility in helping people automate
  the task of mantaining the repositories. Suggestions, positive and
  negative are invited.
 
  I have not included the impl details as I would first like to evaluate
  the idea at a feasibility and utility level.

 If the scope of your project includes being able to bootstrap systems
 from the mirror, resolving dependency is much more complex (some
 packages aren't resolved by dependencies. For instance, the right kernel
 is select by some logic in Debian-installer).
 I found some interesting logic in debian-cd package.

You would include linux-image-type in your package list. That
isn't really a problem of the tool. Just of the input you need to provide.
Also you would include everything udeb and everything
essential/required for bootstraping purposes.

Again flexibility is the key.

 Still, I don't consider that allowing bootstrapping is mandatory. Your
 project would still be extremely valuable without it. [for those 95% of
 the people that install from CD, as opposed to netboot].

 Regards,

 Franklin

MfG
Goswin

PS: the essential/required packages can already easily be filtered
with grep-dctrl.


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



Re: Intel Atom Poulsbo chipset Xorg driver in Debian

2009-06-18 Thread Julien Cristau
On Wed, Jun 17, 2009 at 18:49:13 +0100, Jonathan Wiltshire wrote:

 On Wed, Jun 17, 2009 at 10:42:55AM -0700, Kushal Koolwal wrote:
  
  It seems that the support for Intel's Poulsbo chipset (Graphics GMA 500) 
  for Atom processor (US15) is sparse [1].
  So far I have been able to find a driver package in Ubuntu Hardy [2].
  
  I was wondering if anyone has ideas as to if Debian will get the support 
  for Poulsbo chipset.
 
 From a brief look at the package in Hardy, the license would be
 considered free, so I suggest you file a Request for Packaging [1] and
 hopefully somebody will take you up on it.
 
The driver depends on a kernel component that is not upstream, and
doesn't look like it will be any time soon.  (And the 3d driver is
proprietary, with no prospect of being freed afaik.)  So far poulsbo is
a pretty big pile of fail.

Cheers,
Julien


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



dpkg: error processing gawk (--configure)

2009-06-18 Thread markus schnalke
Hoi,

during the installation of `geda' on sid, I received following output:

[...]
Setting up gawk (1:3.1.6.dfsg-3) ...
update-alternatives: error: alternative nawk can't be slave of awk: it is a 
master alternative.
dpkg: error processing gawk (--configure):
 subprocess installed post-installation script returned error exit status 2
dpkg: dependency problems prevent configuration of geda-gnetlist:
 geda-gnetlist depends on gawk; however:
  Package gawk is not configured yet.
dpkg: error processing geda-gnetlist (--configure):
 dependency problems - leaving unconfigured
dpkg: dependency problems prevent configuration of geda:
 geda depends on geda-gnetlist; however:
  Package geda-gnetlist is not configured yet.
dpkg: error processing geda (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 gawk
 geda-gnetlist
 geda
E: Sub-process /usr/bin/dpkg returned an error code (1)


Anyone who can help me / fix the gawk package / knows what the problem
is ...?


meillo


signature.asc
Description: Digital signature


Re: dpkg: error processing gawk (--configure)

2009-06-18 Thread markus schnalke
[2009-06-18 21:03] markus schnalke mei...@marmaro.de
 
 during the installation of `geda' on sid, I received following output:
 
 [...]
 Setting up gawk (1:3.1.6.dfsg-3) ...
 update-alternatives: error: alternative nawk can't be slave of awk: it is a 
 master alternative.

I had some deeper look and am now sure enough to consider this a bug
in the package.

Hence, I filed a bug against gawk.


A (maybe too simple) solution is removing all `nawk' stuff from
debian/postinst. Then I can build the package and install it without
problems.


meillo


signature.asc
Description: Digital signature


RE: Intel Atom Poulsbo chipset Xorg driver in Debian

2009-06-18 Thread Kushal Koolwal

Thank you, Julien for your insights.
 The driver depends on a kernel component that is not upstream, and
 doesn't look like it will be any time soon. (And the 3d driver is
 proprietary, with no prospect of being freed afaik.)
Can you point out which code of the kernel has not been made upstream yet so 
that I keep a track of it when it goes into mainline.

Also I tried compiling the source packages from Ubuntu repo (see original mail) 
but did not have any luck with that. Right now I don't care much about 3D 
stuff, I just need to get the basic 2D working.

Kushal Koolwal

I do blog at http://blogs.koolwal.net/
_
Insert movie times and more without leaving Hotmail®.
http://windowslive.com/Tutorial/Hotmail/QuickAdd?ocid=TXT_TAGLM_WL_HM_Tutorial_QuickAdd_062009

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



Bug#533578: ITP: torrentinfo -- display Torrent file information

2009-06-18 Thread Carl Chenet
Package: wnpp
Severity: wishlist
Owner: Carl Chenet cha...@ohmytux.com


* Package name: torrentinfo
  Version : 1.0.2
  Upstream Author : Vrai Stacey v...@acherondevelopment.com
* URL : http://vrai.net/project.php?project=torrentinfo
* License : GPL
  Programming Lang: Python
  Description : display Torrent file information

 TorrentInfo is a simple command-line tool that parses .torrent
 files and provides a summary of their contents.
 By default it shows:
  * The torrent's name
  * The URL of the tracker
  * The torrent's creator
  * The creation date of the torrent
  * The number of files in the torrent (if multi-file)
  * The name of the file (if single-file)
  * The size of the torrent's contents 



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



Bug#533581: ITP: cirkuit -- Cirkuit is a KDE4 GUI for the Circuit macros for drawing high-quality line diagrams to include in TeX, LaTeX, or similar documents

2009-06-18 Thread Lisandro Damián Nicanor Pérez Meyer
Package: wnpp
Severity: wishlist
Owner: Lisandro Damián Nicanor Pérez Meyer perezme...@gmail.com

* Package name: cirkuit
  Version : 0.1
  Upstream Author : Matteo Agostinelli matteo.agostine...@uni-klu.ac.at
* URL : http://wwwu.uni-klu.ac.at/magostin/cirkuit.html
* License : GPL v2
  Programming Lang: C++
  Description : Cirkuit is a KDE4 GUI for the Circuit macros for drawing 
high-quality line diagrams to include in TeX, LaTeX, or similar documents

Cirkuit is a KDE4 GUI for the Circuit macros by Dwight Aplevich, which is a 
set of macros for drawing high-quality line diagrams to include in TeX, LaTeX, 
or similar documents.
Cirkuit builds a live preview of the source code and can export the resulting 
images in EPS, PDF, PNG or PSTricks format.



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



Work-needing packages report for Jun 19, 2009

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

Total number of orphaned packages: 373 (new: 1)
Total number of packages offered up for adoption: 130 (new: 1)
Total number of packages requested help for: 51 (new: 0)

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



The following packages have been orphaned:

   ctorrent (#533229), orphaned 3 days ago
 Description: BitTorrent Client written in C++
 Installations reported by Popcon: 341

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



The following packages have been given up for adoption:

   vimoutliner (#533313), offered 2 days ago
 Description: script for building an outline editor on top of Vim
 Installations reported by Popcon: 443

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



For the following packages help is requested:

   apache2 (#470795), requested 462 days ago
 Description: Co-maintainer wanted
 Reverse Depends: ampache apache2 apache2-dbg apache2-mpm-event
   apache2-mpm-itk apache2-mpm-prefork apache2-mpm-worker
   apache2-prefork-dev apache2-suexec apache2-suexec-custom (162 more
   omitted)
 Installations reported by Popcon: 44614

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

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

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

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

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

   dctrl-tools (#448284), requested 600 days ago
 Description: Command-line tools to process Debian package
   information
 Reverse Depends: aptfs debian-goodies dlocate haskell-devscripts
   hg-buildpackage ia32-archive ia32-libs-tools libsbuild-perl mlmmj
   simple-cdd
 Installations reported by Popcon: 11897

   dpkg (#282283), requested 1670 days ago
 Description: dselect: a user tool to manage Debian packages
 Reverse Depends: alien alsa-source apt-build apt-cross apt-src
   backuppc biblatex biblatex-dw build-essential bzr-builddeb (220 more
   omitted)
 Installations reported by Popcon: 84856

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

   fglrx-driver (#454993), requested 558 days ago (non-free)
 Description: non-free AMD/ATI r5xx, r6xx display driver
 Reverse Depends: fglrx-amdcccle fglrx-atieventsd fglrx-control
   fglrx-driver fglrx-glx fglrx-glx-ia32 fglrx-kernel-src
 Installations reported by Popcon: 1940

   flightgear (#487388), requested 362 days ago
 Description: Flight Gear Flight Simulator
 Installations reported by Popcon: 904

   gentoo (#422498), requested 774 days ago
 Description: a fully GUI-configurable, two-pane X file manager
 Installations reported by Popcon: 281

   gnat-4.3 (#475374), requested 434 days ago
 Description: help needed to execute test cases
 Reverse Depends: adabrowse adacontrol asis-programs ghdl gnade-bin
   gnat gnat-4.3 gnat-gps libadasockets-dev libahven16 (49 more
   omitted)
 Installations reported by Popcon: 930

   gnat-gps (#496905), requested 294 days ago
 Description: co-maintainer needed
 Installations reported by Popcon: 128

   grub2 (#248397), requested 1865 days ago
 Description: GRand Unified Bootloader
 Reverse Depends: grub grub-coreboot grub-disk grub-efi grub-ieee1275
   grub-linuxbios grub-pc grub2
 Installations reported by Popcon: 50045

   hotkey-setup (#483107), requested 387 days ago
 Description: auto-configures laptop hotkeys
 Installations reported by Popcon: 19668

   imagemagick (#452314), requested 575 days ago
 

Re: apt-get wrapper for maintaining Partial Mirrors

2009-06-18 Thread Joseph Rawson
On Thursday 18 June 2009 02:46:42 Goswin von Brederlow wrote:
 Joseph Rawson umebos...@gmail.com writes:
  There is another application that will help with the dependencies.  It's
  called germinate, and it will take a short list of packages and a list of
  repositories and build a bunch of different lists of packages and their
  dependencies.  Germinate will also determine build dependencies for those
  packages and recursively build a list of builddeps and the builddeps'
  builddeps.
 
  I have thought of making an application that would get germinate and
  reprepro to work together to help build a decent partial mirror that had
  the correct set of packages, but the process was a bit time consuming. 
  It's been a while

 Was it that bad? It only needs to run 4 times a day when the mirror
 push comes in.

It wasn't the running that was time consuming, but the writing of all the code 
to seed germinate, then try and use the results for reprepro.  I'm sorry if I 
wasn't clear on which part was consuming time.

  since I've worked on this, since my temporary solution to the problem was
  to buy a larger hard drive.  Currently, I have a full mirror that I keep
  updated, and a repository of locally built packages next to it.  I'm not
  really happy with this solution, as it uses too much disk space and I'm
  downloading packages that will never be used, but it's given me time to
  tackle more important problems.
 
  Before writing any code, I would recommend taking a look at both reprepro
  and germinate, as each of these applications is good at solving half of
  the problems you describe.  I think that an ideal solution would be to
  write a frontend program that takes a list of packages and upstream
  repositories, feeds them into germinate, obtains the result from
  germinate, parse those results and build a reprepro configuration from
  that, then get reprepro to fetch the appropriate packages.

 Combining germinate and reprepro is the right thing to do. Or reprepro
 and a new filter instead of germinate. But don't rewrite reprepro.

I never intended to rewrite reprepro.  It does it's job very well.  It's not 
reprepro's job to resolve dependencies, nor should it be, as a dependency 
could lie in an entirely different repository.

I do think that since each program has it's specific area of responsibility, 
that a program that glues them together would be appropriate, and help from 
reinventing wheels when it's not necessary.


 Given a little bit of care when writing the reprepro config this can
 be completly done as part of the filtering. There is no need for a
 seperate run that scanns all upstream repositories as long as you can
 define a partial order between them, i.e. contrib needs things from
 main but main never from contrib. That would also have the benefit
 that you only need to process those packages files that have changed.

  I would be happy to help with this, as I could use such an application,
  and I already have a meager bit of python code that parses the output of
  germinate (germinate uses a wiki-type markup in it's output files).  I
  stopped working on the code since I bought a new hard drive, since I just
  used the extra space to solve the problem for me, but I can bring it back
  to life, as I would desire to use a more correct solution.

 Urgs, that sucks. It should take a Packages/Sources style input and
 output the same format.

I don't like the output either, but I haven't taken much time to dig into the 
germinate code very much.
 Maybe rewriting it using libapt would be better than wrapping germinate.
Germinate uses libapt.  It imports apt_pkg from the python-apt package, which 
is a python binding to libapt, AFAIK.  It might be easier to just 
add '/usr/lib/germinate' to the sys.path and control the Germinator object 
directly, bypassing the way that the package lists are output from germinate.

Germinate does have an advantage in that it can recursively add the builddeps 
for a package list, making a list for a partial, self-building mirror.

BTW, the subject of this thread is apt-get wrapper for maintaining Partial 
Mirrors.  The solution I'm proposing is a simple tool for maintaining 
Partial Mirrors (which could possibly be wrapped by apt-get later).  

I think that just pursuing an apt-get wrapper leads to some complications 
that could be avoided by creating the partial mirror tool first, then 
looking at wrapping it later.  One complication might be how do handle 
apt-get remove, and another might be how to handle sid libraries that 
disappear from official repository, yet local machines must have them.


 MfG
 Goswin



-- 
Thanks:
Joseph Rawson


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


Re: apt-get wrapper for maintaining Partial Mirrors

2009-06-18 Thread Goswin von Brederlow
Joseph Rawson umebos...@gmail.com writes:

 BTW, the subject of this thread is apt-get wrapper for maintaining Partial 
 Mirrors.  The solution I'm proposing is a simple tool for maintaining 
 Partial Mirrors (which could possibly be wrapped by apt-get later).  

 I think that just pursuing an apt-get wrapper leads to some complications 
 that could be avoided by creating the partial mirror tool first, then 
 looking at wrapping it later.  One complication might be how do handle 
 apt-get remove, and another might be how to handle sid libraries that 
 disappear from official repository, yet local machines must have them.

Ahh, so maybe I completly misread that part.

Do you mean a wrapper around apt-get so that apt-get install foo on
any client would automatically add foo to the list of packages being
mirrored on the server?

If so then you can configure a post invoke hook in apt that will copy
the dpkg status file of the host to the server [as status.$(hostname)]
and then use those on the server to generate the filter for
reprepro. I think I still have a script for that somewhere but it is
easy enough to rewrite.

MfG
Goswin


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



Bug#533589: ITP: bt747 -- GPS data logger software, allows download, convert, and configure MTK Chipset Based Devices.

2009-06-18 Thread Gustavo Andrés Angulo
Package: wnpp
Severity: wishlist
Owner: Gustavo Andrés Angulo woa...@gfc.edu.co


* Package name: bt747
  Version : 1.68.22
  Upstream Author : Mario De Weerd mdewe...@users.sourceforge.net
* URL : http://bt747.free.fr/content/
* License : GPL
  Programming Lang: Java 
  Description : GPS data logger software, allows download, convert, and 
configure MTK Chipset Based Devices.

This is a GPS data logger software, allows download, convert, and configure MTK 
Chipset Based Devices.  
 # Download recorded position data from GPS Data Loggers based on the MTK 
chipset.
 # Convert GPS position data in many formats (HTML, GPX, KML, KMZ, ...)
 # Geotag JPG pictures and position any other filetype on the map (voice, 
documents, ...)
 # Supports handheld devices (Palm, WinCE, Mobile Phones supporting Java (J2ME))
 # Supports Desktops (Windows, MacOSX, Linux flavors)
 # Configure MTK Chipset Based Devices and Loggers
 # Upload AGPS(EPO) data to MTK II Chipset Based Devices and Loggers



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



Accepted migemo 0.40-7.3 (source all)

2009-06-18 Thread Yukiharu YABUKI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Jun 2009 22:19:23 +0900
Source: migemo
Binary: migemo
Architecture: source all
Version: 0.40-7.3
Distribution: unstable
Urgency: low
Maintainer: Fumitoshi UKAI u...@debian.or.jp
Changed-By: Yukiharu YABUKI yab...@netfort.gr.jp
Description: 
 migemo - Japanese incremental search with Romaji on Emacsen
Closes: 527782
Changes: 
 migemo (0.40-7.3) unstable; urgency=low
 .
   * Non-maintainer upload.
   * debian/control: Fix Build-Depends-Indep  (Closes: #527782).
Checksums-Sha1: 
 43e5cd35776adb9449b2ff7da4464297ab8d0499 1705 migemo_0.40-7.3.dsc
 83cf16337b41d03ce2adf931e90ce88063652b21 44828 migemo_0.40-7.3.diff.gz
 f0e3185423eeab6e0980e798cb332bb41c55bb73 1643056 migemo_0.40-7.3_all.deb
Checksums-Sha256: 
 0c71139848bbc3adb320c2aabbbcf5285c0b2e889c97b334c2939f7f6a00143c 1705 
migemo_0.40-7.3.dsc
 c8fa471463f1d9eaa4d376f7992fc7158f2bb26a03c452025323a5d52be21452 44828 
migemo_0.40-7.3.diff.gz
 e34c9fc43987070825c26b0f598c683bb5e1f64c6cb3d8a4e3ef50228853d47e 1643056 
migemo_0.40-7.3_all.deb
Files: 
 6c4fa363adcd5709064f75e6dc964990 1705 utils optional migemo_0.40-7.3.dsc
 c008743b31fdf768dc196cc27c9564fc 44828 utils optional migemo_0.40-7.3.diff.gz
 a59ba4639aba5531bf2614a6f6e4dc07 1643056 utils optional migemo_0.40-7.3_all.deb

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

iQIcBAEBCAAGBQJKOdogAAoJEB5qw/OH8O2sWE4QAIDWYlBcrpo8hUz6H8g4btKh
aRO/1HJsz9/lzfZoTRc9Y9Z8PrLDwNSxIlkfLm92d4TcfQFq1AWJqhPcJxJaH3LK
+84EobbZRCTbp2xQ4eaZn0vYlHeZcjTueePLww5UQog/SY96M9jF7a2ZmiHbknCD
JRrX2XX7eMkFsZs27P3urrKvKKJKgq03rmS89ceG7F2kcD954ysgaguhlOUhzMn2
edfvzcMf/1gWu3DvXR8w/v8ga6pqaioP9NYPjglR0v2vPGLGEtb/fGRh92gf690E
3oygBqxTF8HNWeaCaleCH/FTjzFULXVt6O+kzzhx9kzmnCLWUlIDyet+4mDte4EL
5OnvaR7cBXKuc0hq0JyceuJOu9Y6Q7XjQofEnc9wjltNw4A7MzOUxas2CvMc4ZLd
67S0hT7k+473i1/a7xlYKBsfArUrPwXIMEV0kKgWR5F63PGpM2PIR/RcF1dU8BVC
2zitRj1J7TOBFYfTOPMrO5JFj27uiaRQR3M8vJYShoeGvcVFwPCe54FWYKAyYKxb
8Aqg+fXGgz9ky7omhmdvCy2aQgFI4RzWpYMhsomeyVlwFUA6wxl4/kfZZFKM+eIc
5A0c5YjSpUzw0mOy7ToZXVAM0M5wibu/2DOpiVKL1Bvdkg8d+zaA901xNtKjJ2R8
PT4ukliu+YhVqC64WZ3L
=C7yw
-END PGP SIGNATURE-


Accepted:
migemo_0.40-7.3.diff.gz
  to pool/main/m/migemo/migemo_0.40-7.3.diff.gz
migemo_0.40-7.3.dsc
  to pool/main/m/migemo/migemo_0.40-7.3.dsc
migemo_0.40-7.3_all.deb
  to pool/main/m/migemo/migemo_0.40-7.3_all.deb


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



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

2009-06-18 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 17 Jun 2009 12:04:43 +0200
Source: gst-plugins-base0.10
Binary: gstreamer0.10-plugins-base-apps gstreamer0.10-plugins-base-doc 
libgstreamer-plugins-base0.10-0 libgstreamer-plugins-base0.10-dev 
gstreamer0.10-alsa gstreamer0.10-gnomevfs gstreamer0.10-plugins-base 
gstreamer0.10-plugins-base-dbg gstreamer0.10-x
Architecture: source all amd64
Version: 0.10.23-3
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gstreamer0.10-alsa - GStreamer plugin for ALSA
 gstreamer0.10-gnomevfs - GStreamer plugin for GnomeVFS
 gstreamer0.10-plugins-base - GStreamer plugins from the base set
 gstreamer0.10-plugins-base-apps - GStreamer helper programs from the base set
 gstreamer0.10-plugins-base-dbg - GStreamer plugins from the base set
 gstreamer0.10-plugins-base-doc - GStreamer documentation for plugins from the 
base set
 gstreamer0.10-x - GStreamer plugins for X11 and Pango
 libgstreamer-plugins-base0.10-0 - GStreamer libraries from the base set
 libgstreamer-plugins-base0.10-dev - GStreamer development files for libraries 
from the base set
Closes: 532469
Changes: 
 gst-plugins-base0.10 (0.10.23-3) unstable; urgency=low
 .
   * debian/build-deps.in,
 debian/control.in:
 + (Build-) depend on libglib2.0-doc and gstreamer0.10-doc to
   get correct cross references.
   * debian/control.in:
 + Add ${misc:Depends} everywhere.
 + Let the -dbg package only suggest the gnomevfs package
   as the GNOME metapackage now conflicts with the gnomevfs
   package (Closes: #532469).
Checksums-Sha1: 
 fe06a5bd89add68d0c2631759251a6526b55a26b 2390 
gst-plugins-base0.10_0.10.23-3.dsc
 9f822ece67dda8ffc67e56b1902008c760c3a3bd 32864 
gst-plugins-base0.10_0.10.23-3.diff.gz
 390670883ea71edb5e1baf55d76365a04f57d2d6 417956 
gstreamer0.10-plugins-base-doc_0.10.23-3_all.deb
 f481315cf9218e03f6935ed966bd72b7af794457 49274 
gstreamer0.10-plugins-base-apps_0.10.23-3_amd64.deb
 10ecc8d30da8c527a504b98241199f2034ad66a9 404090 
libgstreamer-plugins-base0.10-0_0.10.23-3_amd64.deb
 b13f868e40f60945e82e6331a6c93847bf2cbf3f 110648 
libgstreamer-plugins-base0.10-dev_0.10.23-3_amd64.deb
 aec5deb7d0253d85a17dc4a6f5f51a10f904b081 85526 
gstreamer0.10-alsa_0.10.23-3_amd64.deb
 4b83f6b38519976a5a3e1ee824b6ff4a3e417649 63418 
gstreamer0.10-gnomevfs_0.10.23-3_amd64.deb
 963590afe983cfa7e52fcbaaf5d7931507e3fb95 659194 
gstreamer0.10-plugins-base_0.10.23-3_amd64.deb
 70f627e12bcbf74e4a1d0e9c3c7f90ab32362ce2 2300042 
gstreamer0.10-plugins-base-dbg_0.10.23-3_amd64.deb
 92e17893f0273dbfa737a817f3780055d25f9230 123184 
gstreamer0.10-x_0.10.23-3_amd64.deb
Checksums-Sha256: 
 83ec15581a9cbbeb182b91e20fa53125a227df03e6436ab76f7e1cc860df8924 2390 
gst-plugins-base0.10_0.10.23-3.dsc
 68285a3a71d4a5fc5914c0fb83c5aa6366d568aeabb7761942e98a15efef998f 32864 
gst-plugins-base0.10_0.10.23-3.diff.gz
 40a1ae7a300807cd82fc93287622366b243d50430e5c6611f13607d57deecf9c 417956 
gstreamer0.10-plugins-base-doc_0.10.23-3_all.deb
 cf704d9f41d349ed4d56ec3a9a2aa3d2d7fc30a62b84cd094f6ccc7e0e76258c 49274 
gstreamer0.10-plugins-base-apps_0.10.23-3_amd64.deb
 aa6695bb91b395fdac54f7c9610ee8c1778b3c96a46b99c28a19fe58e17e5421 404090 
libgstreamer-plugins-base0.10-0_0.10.23-3_amd64.deb
 e3bb8f5b164564de154c58c4d738214c4149fa7977be17e8a2a34f5d6a7fd707 110648 
libgstreamer-plugins-base0.10-dev_0.10.23-3_amd64.deb
 96cd2baa511a1aabd1d7e4fae14ce310c05d274fcde9e533617429cfb7612654 85526 
gstreamer0.10-alsa_0.10.23-3_amd64.deb
 bf4bebb950a2fdf9858400129acf78ee37fc7d121bb590720c37737b6b9f8f17 63418 
gstreamer0.10-gnomevfs_0.10.23-3_amd64.deb
 a43a67a53802a3443265bf887b2a96a8cfdaa5821aff8cab140d5c177196fed0 659194 
gstreamer0.10-plugins-base_0.10.23-3_amd64.deb
 c4b511209677eac8780a48128779b584272991d81069ddbcfd9a9067a77369e7 2300042 
gstreamer0.10-plugins-base-dbg_0.10.23-3_amd64.deb
 5e33eb7cf6c529356c3ab19d22b0968850bff61b80cd1a3ee36117b020731097 123184 
gstreamer0.10-x_0.10.23-3_amd64.deb
Files: 
 c20e423887067e7d603e0565c269fc89 2390 libs optional 
gst-plugins-base0.10_0.10.23-3.dsc
 0edfbb63e6b77d900e179d6bf967d7e1 32864 libs optional 
gst-plugins-base0.10_0.10.23-3.diff.gz
 128a229812a4db99c33837bc352b3448 417956 doc optional 
gstreamer0.10-plugins-base-doc_0.10.23-3_all.deb
 7076e15e6087f7c0f495812e36eefac4 49274 utils optional 
gstreamer0.10-plugins-base-apps_0.10.23-3_amd64.deb
 fcd184dfe511a42a820e9e49bd6c941b 404090 libs optional 
libgstreamer-plugins-base0.10-0_0.10.23-3_amd64.deb
 e7be6ea96df3b67f28a1adc072f23fc2 110648 libdevel optional 
libgstreamer-plugins-base0.10-dev_0.10.23-3_amd64.deb
 19b456491a54bd8402a166c5dfc4a414 85526 libs optional 
gstreamer0.10-alsa_0.10.23-3_amd64.deb
 393ac343c12fe775ccecd081faa42501 63418 libs optional 
gstreamer0.10-gnomevfs_0.10.23-3_amd64.deb
 1c3835fb2accfea0b46f50f0aff832b4 659194 libs optional 

Accepted cairo 1.8.8-2 (source all amd64)

2009-06-18 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:59:17 +0200
Source: cairo
Binary: libcairo2-dev libcairo2 libcairo2-dbg libcairo2-doc 
libcairo-directfb2-udeb libcairo-directfb2 libcairo-directfb2-dev
Architecture: source all amd64
Version: 1.8.8-2
Distribution: unstable
Urgency: low
Maintainer: Dave Beckett daj...@debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 libcairo-directfb2 - The Cairo 2D vector graphics library DirectFB build 
(dummy packag
 libcairo-directfb2-dev - Development files for Cairo graphics library DirectFB 
build (dumm
 libcairo-directfb2-udeb - The Cairo 2D vector graphics library DirectFB build 
(udeb)
 libcairo2  - The Cairo 2D vector graphics library
 libcairo2-dbg - The Cairo 2D vector graphics library (debugging symbols)
 libcairo2-dev - Development files for the Cairo 2D graphics library
 libcairo2-doc - Documentation for the Cairo Multi-platform 2D graphics library
Changes: 
 cairo (1.8.8-2) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 67de1297ea7b595f1ae2d3df8874ba5fa3c31f00 1481 cairo_1.8.8-2.dsc
 12bc439b3f7425e4d2bd0c1329ec5dcd150814a8 22917 cairo_1.8.8-2.diff.gz
 04c2861ce168960bffcf962f2aef4c4289ae7d1b 422382 libcairo2-doc_1.8.8-2_all.deb
 cf222eafb1a1197c489e83277eb58a6d288817ce 622996 libcairo2-dev_1.8.8-2_amd64.deb
 227bdfeae0086f6ba50eb1cc5817b5cb4553e379 521316 libcairo2_1.8.8-2_amd64.deb
 4a7e1a363c8ac0e774e42df029d40bd085707a0c 883722 libcairo2-dbg_1.8.8-2_amd64.deb
 533192676a1a0d65647becfd44d13c024b00d197 205678 
libcairo-directfb2-udeb_1.8.8-2_amd64.udeb
 bd6e931749444a92b5a977265d1fe7d0425dfedd 271712 
libcairo-directfb2_1.8.8-2_amd64.deb
 89714e02dfd08970e6c53fb54988f798b67c0670 271928 
libcairo-directfb2-dev_1.8.8-2_amd64.deb
Checksums-Sha256: 
 0b63d4d8908d51a263d4fc66bc09aacd2dbf1a838a02b050c579df00bf34b881 1481 
cairo_1.8.8-2.dsc
 afe8c089aadbbbc2fba91d193db2c59ba78d128aaa41ad4b2ea5175170ccf1f5 22917 
cairo_1.8.8-2.diff.gz
 53a664c927da9670d0f843946056c7743c7c3e890c2e969caa1e1446628df29d 422382 
libcairo2-doc_1.8.8-2_all.deb
 59ca28d0ec69939d4e81dfd6accf44cca469aa04d03b927a2a8aee3de73fa22e 622996 
libcairo2-dev_1.8.8-2_amd64.deb
 2917ce007ae324b44c76e352d654eddc722e228f1ddc3172c6c658a37d5a4519 521316 
libcairo2_1.8.8-2_amd64.deb
 775496dcb24be33b15dcb6a82f2f303c277e6a32b2f890b6806cf91951ba7e49 883722 
libcairo2-dbg_1.8.8-2_amd64.deb
 087113db48dc85d1f4e0d92c07e205563aa25d70ea52b4377e2bd0fdcf5c 205678 
libcairo-directfb2-udeb_1.8.8-2_amd64.udeb
 fd140c7b9a4c8d8ac2bca511e576dcc0aaec6f4f60dd2a0aa43e527f6fe9116c 271712 
libcairo-directfb2_1.8.8-2_amd64.deb
 d2265d16f696482dc1c54cf9ec2b31126d02f40069370e8a2928ec26a89b84d7 271928 
libcairo-directfb2-dev_1.8.8-2_amd64.deb
Files: 
 c1e1cb85101e9393accd3bd2dd4c2337 1481 libs optional cairo_1.8.8-2.dsc
 72c312f6be0b729020b11891e0e631ef 22917 libs optional cairo_1.8.8-2.diff.gz
 deda3c06ef199fecb2f9448f5195dde4 422382 doc optional 
libcairo2-doc_1.8.8-2_all.deb
 9b23efb5f83ae572deb737eecdaa8fd3 622996 libdevel optional 
libcairo2-dev_1.8.8-2_amd64.deb
 6be0227060c18bc016f76752fa8bf234 521316 libs optional 
libcairo2_1.8.8-2_amd64.deb
 24b782f45ea9cc7050212932b93b46b8 883722 debug extra 
libcairo2-dbg_1.8.8-2_amd64.deb
 f5d28ae60f3b72b40056cff6a516fd56 205678 debian-installer optional 
libcairo-directfb2-udeb_1.8.8-2_amd64.udeb
 d2a2b9d41a7c9bd2dc335f7716caf336 271712 libs optional 
libcairo-directfb2_1.8.8-2_amd64.deb
 0acf5827f2610fba44ec71e6c9b31b84 271928 libdevel optional 
libcairo-directfb2-dev_1.8.8-2_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAko55ywACgkQBsBdh1vkHyFtNwCdEBNBHUj0iFPV1xCWOsMAt71J
62MAn2UtaJE3D/Lu5spXVVJcM39Aajxg
=hNb1
-END PGP SIGNATURE-


Accepted:
cairo_1.8.8-2.diff.gz
  to pool/main/c/cairo/cairo_1.8.8-2.diff.gz
cairo_1.8.8-2.dsc
  to pool/main/c/cairo/cairo_1.8.8-2.dsc
libcairo-directfb2-dev_1.8.8-2_amd64.deb
  to pool/main/c/cairo/libcairo-directfb2-dev_1.8.8-2_amd64.deb
libcairo-directfb2-udeb_1.8.8-2_amd64.udeb
  to pool/main/c/cairo/libcairo-directfb2-udeb_1.8.8-2_amd64.udeb
libcairo-directfb2_1.8.8-2_amd64.deb
  to pool/main/c/cairo/libcairo-directfb2_1.8.8-2_amd64.deb
libcairo2-dbg_1.8.8-2_amd64.deb
  to pool/main/c/cairo/libcairo2-dbg_1.8.8-2_amd64.deb
libcairo2-dev_1.8.8-2_amd64.deb
  to pool/main/c/cairo/libcairo2-dev_1.8.8-2_amd64.deb
libcairo2-doc_1.8.8-2_all.deb
  to pool/main/c/cairo/libcairo2-doc_1.8.8-2_all.deb
libcairo2_1.8.8-2_amd64.deb
  to pool/main/c/cairo/libcairo2_1.8.8-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 videocut 0.2.0-4 (source i386)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:57:51 +0200
Source: videocut
Binary: videocut
Architecture: source i386
Version: 0.2.0-4
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 videocut   - application for creating compositions of screenshots from videos
Changes: 
 videocut (0.2.0-4) unstable; urgency=low
 .
   * Move packages section to video.
   * Fix typo in get-orig-source target.
   * Bump Standards-Version to 3.8.2 (no changes needed).
Checksums-Sha1: 
 24bec7475b3eff7a5a4156e14e3a7437d26f9826 1147 videocut_0.2.0-4.dsc
 de0480c8c57dd77b87d36bba246eccb075b3f983 5575 videocut_0.2.0-4.diff.gz
 1be0c99fca361b9b954af216977600a37d79ce5a 181256 videocut_0.2.0-4_i386.deb
Checksums-Sha256: 
 083364ba6ff41d9434207073332b8cd4446d28ab84ac8fc13d1f2359c2e759cb 1147 
videocut_0.2.0-4.dsc
 bfc1abbdec6cc6e850c22640e98759576a417d4058037a1797648b0ad212470e 5575 
videocut_0.2.0-4.diff.gz
 17f0fd4bc8a5f725009b99b4215c511e33faec1a0d5187e1e6a6286add98e8e5 181256 
videocut_0.2.0-4_i386.deb
Files: 
 373f8df41142f6ce0e8861467690ba66 1147 video optional videocut_0.2.0-4.dsc
 c997593a5efdceeb2d9993082d10c23c 5575 video optional videocut_0.2.0-4.diff.gz
 8f8a6c156572bfb67c2c1927bb0e96a9 181256 video optional 
videocut_0.2.0-4_i386.deb

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

iEYEARECAAYFAko57G0ACgkQ2XA5inpabMei/wCfT85ACT7/q7ZeJK2McKH4PUUF
6k0AniQyJGUMNEknIpHE7AwNy9rhsvNN
=7QIW
-END PGP SIGNATURE-


Accepted:
videocut_0.2.0-4.diff.gz
  to pool/main/v/videocut/videocut_0.2.0-4.diff.gz
videocut_0.2.0-4.dsc
  to pool/main/v/videocut/videocut_0.2.0-4.dsc
videocut_0.2.0-4_i386.deb
  to pool/main/v/videocut/videocut_0.2.0-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 cuetools 1.3.1-7 (source i386)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:58:47 +0200
Source: cuetools
Binary: cuetools
Architecture: source i386
Version: 1.3.1-7
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 cuetools   - tools for manipulating CUE/TOC files
Closes: 532151
Changes: 
 cuetools (1.3.1-7) unstable; urgency=low
 .
   * Add flac as recommends.
 Closes: #532151
   * Bump Standards-Version to 3.8.2 (no changes needed).
Checksums-Sha1: 
 b1fa012d21dfefbe454018cef5069a38a9ada13a 1035 cuetools_1.3.1-7.dsc
 059ec8e23a91cb198689ed98bb5c4da4f6fa3379 12946 cuetools_1.3.1-7.diff.gz
 c676e8f0708b0c2d75a566b1938ca4fd92db1fb2 80068 cuetools_1.3.1-7_i386.deb
Checksums-Sha256: 
 ee3f304422ba1533e62e41e1da88f3297a1e1df928f4cbb40516262b9da4bd39 1035 
cuetools_1.3.1-7.dsc
 ab514de36a3ebdfca4ae98d599ac1ec711f5b519cebfdad6b6a6a9d50d1747dc 12946 
cuetools_1.3.1-7.diff.gz
 b15a8050d35e6143b254be174e63b3b8016c046390ccda3ddec56b046d5b95d7 80068 
cuetools_1.3.1-7_i386.deb
Files: 
 3e87b337e3552955c509c6f273c40904 1035 utils extra cuetools_1.3.1-7.dsc
 aa2414aebad17960a4060390fe00ab76 12946 utils extra cuetools_1.3.1-7.diff.gz
 3b266c01e073a62bcf45c75e5f2a1284 80068 utils extra cuetools_1.3.1-7_i386.deb

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

iEYEARECAAYFAko57GwACgkQ2XA5inpabMf1TQCfQqBiUHj8N4jSjg9K2axjblfY
GNcAnRYEUB3+d9KES4uNAOCH1LXf7vqm
=LfAJ
-END PGP SIGNATURE-


Accepted:
cuetools_1.3.1-7.diff.gz
  to pool/main/c/cuetools/cuetools_1.3.1-7.diff.gz
cuetools_1.3.1-7.dsc
  to pool/main/c/cuetools/cuetools_1.3.1-7.dsc
cuetools_1.3.1-7_i386.deb
  to pool/main/c/cuetools/cuetools_1.3.1-7_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 imvirt 0.2.1-3 (source all)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:58:18 +0200
Source: imvirt
Binary: imvirt
Architecture: source all
Version: 0.2.1-3
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 imvirt - detects several virtualizations
Changes: 
 imvirt (0.2.1-3) unstable; urgency=low
 .
   * Fix typo in get-orig-source target.
   * Merge 0.2-1~bpo50+1 and 0.2.1-1~bpo50+1 changelog.
   * Bump Standards-Version to 3.8.2 (no changes needed).
Checksums-Sha1: 
 c15776dec3b61f722c601d3e77906ee5b9ac6139 989 imvirt_0.2.1-3.dsc
 64a395137be40ce867770c5cdb59dcdae84e6ba4 2623 imvirt_0.2.1-3.diff.gz
 bee65d1a908e9eef64911db5fb5ca211c98089e8 5460 imvirt_0.2.1-3_all.deb
Checksums-Sha256: 
 73aa8e29c602e247836d81712576c9ad725a1a5a42d0ae77e4c0a0aa52be0e82 989 
imvirt_0.2.1-3.dsc
 812531aaa9c8f66a7ab75019336765865e398b1a84b9d8beaf04be5d5b7dbf0c 2623 
imvirt_0.2.1-3.diff.gz
 8a8e704db8f76c219d2a372772ca1f135ddd90e917f59246f3979a057ba083b8 5460 
imvirt_0.2.1-3_all.deb
Files: 
 3cba35cedacfbcceb68de3b2a337e36f 989 admin optional imvirt_0.2.1-3.dsc
 bd3660ffac553786440413813aa87944 2623 admin optional imvirt_0.2.1-3.diff.gz
 40739a2888a9ff5622e8646e197ae669 5460 admin optional imvirt_0.2.1-3_all.deb

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

iEYEARECAAYFAko57GwACgkQ2XA5inpabMfcqgCgmMD1h3+K6KPIf4CGvhYHtryF
WnMAoJEKlsldEmHHk5iZZlplDNG86FSB
=CLkt
-END PGP SIGNATURE-


Accepted:
imvirt_0.2.1-3.diff.gz
  to pool/main/i/imvirt/imvirt_0.2.1-3.diff.gz
imvirt_0.2.1-3.dsc
  to pool/main/i/imvirt/imvirt_0.2.1-3.dsc
imvirt_0.2.1-3_all.deb
  to pool/main/i/imvirt/imvirt_0.2.1-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 tmw-music 0.2-4 (source all)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:58:12 +0200
Source: tmw-music
Binary: tmw-music
Architecture: source all
Version: 0.2-4
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 tmw-music  - The Mana World is a 2D MMORPG (music files)
Changes: 
 tmw-music (0.2-4) unstable; urgency=low
 .
   * Fix typo in get-orig-source target.
   * Merge 0.2-2~bpo50+1 changelog.
   * Bump Standards-Version to 3.8.2 (no changes needed).
Checksums-Sha1: 
 cd0230d01578c5db945f32fc59fab6e8264c2d37 994 tmw-music_0.2-4.dsc
 3a8e6e5a7f65d1a0a72b2eab2a356cd0bba16cf8 2296 tmw-music_0.2-4.diff.gz
 d1d34ad5639abe78694cf4c3af7e14a74fcb7227 17861022 tmw-music_0.2-4_all.deb
Checksums-Sha256: 
 a45bd42b7ade2676ade5d576b5d0426531ca652b92e3149f1ed899d661d57bc6 994 
tmw-music_0.2-4.dsc
 8444794b8d52007674f6e0e0a5409061de49cce75655d9871328e6a5332e29a4 2296 
tmw-music_0.2-4.diff.gz
 7fe004c7acdc131097ebfdbf9a141e902aa89253aa83ef65fa033632a4c3d17d 17861022 
tmw-music_0.2-4_all.deb
Files: 
 f4d36b04ba6475ed810819f833d0480f 994 games optional tmw-music_0.2-4.dsc
 99d96b16e20a5cc398ec58c20e7a520f 2296 games optional tmw-music_0.2-4.diff.gz
 3b25f2048f9da3c2e86e6065f93958d9 17861022 games optional 
tmw-music_0.2-4_all.deb

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

iEYEARECAAYFAko57G0ACgkQ2XA5inpabMfCXgCgnyhZKLsS7rd8B86lDgOvX03O
qdUAnjXCmF4fDgkmTXWCU7vxYsbXeoih
=+Ag6
-END PGP SIGNATURE-


Accepted:
tmw-music_0.2-4.diff.gz
  to pool/main/t/tmw-music/tmw-music_0.2-4.diff.gz
tmw-music_0.2-4.dsc
  to pool/main/t/tmw-music/tmw-music_0.2-4.dsc
tmw-music_0.2-4_all.deb
  to pool/main/t/tmw-music/tmw-music_0.2-4_all.deb


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



Accepted webissues-server 0.8.4-3 (source all)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:56:28 +0200
Source: webissues-server
Binary: webissues-server
Architecture: source all
Version: 0.8.4-3
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 webissues-server - a network system supporting team collaboration (server)
Changes: 
 webissues-server (0.8.4-3) unstable; urgency=low
 .
   * Change my email address in debian/copyright.
   * Bump Standards-Version to 3.8.2 (no changes needed).
Checksums-Sha1: 
 37197b437d0f5d4240413e5347325856ccbb0466 1108 webissues-server_0.8.4-3.dsc
 3be52e1178f0a145924331940c71a1ee0312a4b2 4560 webissues-server_0.8.4-3.diff.gz
 90da46f3e1327c5fea4d03dc3a3373f523d6bdc9 62910 webissues-server_0.8.4-3_all.deb
Checksums-Sha256: 
 73375d15deab3176ac3d5af71182a868369f35c348d9ad47bdbfe03a8a600bcd 1108 
webissues-server_0.8.4-3.dsc
 c12beebf3622e4057bb7b4ed76abbaf63bda614742d5b9e6881e10a68e5a26f4 4560 
webissues-server_0.8.4-3.diff.gz
 287c9d45cafa969792d497b5b7728769a78b3077f1da2cf4ba8f480ea48e166a 62910 
webissues-server_0.8.4-3_all.deb
Files: 
 981b5a33690a22813c1a40d6d2417731 1108 web optional webissues-server_0.8.4-3.dsc
 8d7e32fe0931d750a2d8096112ff9e33 4560 web optional 
webissues-server_0.8.4-3.diff.gz
 2248074346978504b6af0f6db2400785 62910 web optional 
webissues-server_0.8.4-3_all.deb

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

iEYEARECAAYFAko57G0ACgkQ2XA5inpabMeKVgCfRDNZLzFjdVq7IwR2F2EB07gJ
mjsAnjng6cmDdSrOENVpyBDA/R33Kt1r
=egRy
-END PGP SIGNATURE-


Accepted:
webissues-server_0.8.4-3.diff.gz
  to pool/main/w/webissues-server/webissues-server_0.8.4-3.diff.gz
webissues-server_0.8.4-3.dsc
  to pool/main/w/webissues-server/webissues-server_0.8.4-3.dsc
webissues-server_0.8.4-3_all.deb
  to pool/main/w/webissues-server/webissues-server_0.8.4-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 gphotofs 0.4.0-2 (source i386)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:58:37 +0200
Source: gphotofs
Binary: gphotofs
Architecture: source i386
Version: 0.4.0-2
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 gphotofs   - filesystem to mount digital cameras
Changes: 
 gphotofs (0.4.0-2) unstable; urgency=low
 .
   * Add my own copyright for the Debian packaging.
   * Bump Standards-Version to 3.8.2 (no changes needed).
Checksums-Sha1: 
 86e6fff876177d0607093786727cef82690131d4 1054 gphotofs_0.4.0-2.dsc
 6bc66b1ea98b7242c5df0ebb8bbb4f9419cc73dc 4754 gphotofs_0.4.0-2.diff.gz
 e64123b6399157fcc2c2e0278535f39a4ef67987 16442 gphotofs_0.4.0-2_i386.deb
Checksums-Sha256: 
 8b0cbc743457e445262e03881929c94ed908ccee37a09bccd9e29c8a8ff4 1054 
gphotofs_0.4.0-2.dsc
 443638281b1631a1df08ac7c151d38c159b4c5e6cd6afa91f9c6d1da9a4a66ef 4754 
gphotofs_0.4.0-2.diff.gz
 e5d5220f06331fa20c9691493b65334b3bc6d43993cf9f4c5a67b1531e96f560 16442 
gphotofs_0.4.0-2_i386.deb
Files: 
 2e129edcbe32b1584a6219dd4ffef8b9 1054 utils optional gphotofs_0.4.0-2.dsc
 d8c18a1dada50e2a792b766560cf8c06 4754 utils optional gphotofs_0.4.0-2.diff.gz
 83c72924377d7e170f4176c440cb0ec4 16442 utils optional gphotofs_0.4.0-2_i386.deb

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

iEYEARECAAYFAko57GwACgkQ2XA5inpabMfcZQCgrh/9aPt3xMqIj9U8FfSKksGs
TNcAnjw16Pl0360YpVQXgcPSJaRIq/xk
=MBYN
-END PGP SIGNATURE-


Accepted:
gphotofs_0.4.0-2.diff.gz
  to pool/main/g/gphotofs/gphotofs_0.4.0-2.diff.gz
gphotofs_0.4.0-2.dsc
  to pool/main/g/gphotofs/gphotofs_0.4.0-2.dsc
gphotofs_0.4.0-2_i386.deb
  to pool/main/g/gphotofs/gphotofs_0.4.0-2_i386.deb


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



Accepted guichan 0.8.1-6 (source i386)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:58:30 +0200
Source: guichan
Binary: libguichan-0.8.1-1 libguichan-allegro-0.8.1-1 libguichan-sdl-0.8.1-1 
libguichan-opengl-0.8.1-1 libguichan-0.8.1-1-dbg libguichan-dev
Architecture: source i386
Version: 0.8.1-6
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 libguichan-0.8.1-1 - small, efficient C++ GUI library
 libguichan-0.8.1-1-dbg - small, efficient C++ GUI library (debugging symbols)
 libguichan-allegro-0.8.1-1 - small, efficient C++ GUI library (allegro 
integration)
 libguichan-dev - small, efficient C++ GUI library (development headers)
 libguichan-opengl-0.8.1-1 - small, efficient C++ GUI library (OpenGL 
integration)
 libguichan-sdl-0.8.1-1 - small, efficient C++ GUI library (SDL integration)
Changes: 
 guichan (0.8.1-6) unstable; urgency=low
 .
   * Fix typo in get-orig-source target.
   * Change my email address in debian/copyright.
   * Bump Standards-Version to 3.8.2 (no changes needed).
Checksums-Sha1: 
 da80194588465c363e4a13de3c73b08220916946 1191 guichan_0.8.1-6.dsc
 bd5b553d057e4c5d86236f454fa95471e82af3ed 5610 guichan_0.8.1-6.diff.gz
 1d9038a648b6281ee26e98bba526ad0f50886bb6 129306 
libguichan-0.8.1-1_0.8.1-6_i386.deb
 f16cf867959aa23653d48ec5bcc481f82335905c 32892 
libguichan-allegro-0.8.1-1_0.8.1-6_i386.deb
 7759ede226fa36933302c97df2e3cfbf86e96acd 32226 
libguichan-sdl-0.8.1-1_0.8.1-6_i386.deb
 88e1a5f3e66b93fefcd5ad39eab6aa2936adcd3a 22924 
libguichan-opengl-0.8.1-1_0.8.1-6_i386.deb
 e8235f21f1a679f16c8de21c3d42fe6991d15373 785644 
libguichan-0.8.1-1-dbg_0.8.1-6_i386.deb
 1b5e0affe4c1b731ec1f5abcceb57a64dcae6aba 278918 libguichan-dev_0.8.1-6_i386.deb
Checksums-Sha256: 
 cc44b62579a7049153d3ba7174d29244b4b1351a67790809937bccf6929a1d2e 1191 
guichan_0.8.1-6.dsc
 48ff6a02807b53f4f5d4d2b57122b2ca56045bda95f5336dd8abc62076c084b1 5610 
guichan_0.8.1-6.diff.gz
 b6d5835f6878075882da0d848073e2fb07c3200217c164c41e188e519d5780d3 129306 
libguichan-0.8.1-1_0.8.1-6_i386.deb
 9323e13eaeb4f12becbd75a348a0879f512386294380dc11db232883155ec855 32892 
libguichan-allegro-0.8.1-1_0.8.1-6_i386.deb
 670812a7385cf537316b6b39c1856021fd39162d46fff76682b02a1236e58788 32226 
libguichan-sdl-0.8.1-1_0.8.1-6_i386.deb
 4a4574c37c392d19c6b0d6228fe2aa0a9316ea9a23408177d15b8dcbb204a185 22924 
libguichan-opengl-0.8.1-1_0.8.1-6_i386.deb
 1045409fca3510269975ba8dff4d7533979941e96134b19399e47add2de0c991 785644 
libguichan-0.8.1-1-dbg_0.8.1-6_i386.deb
 5faea84226dd6c321f337944dedd7304af2f40bddb1a82c24c1088b8bdce09df 278918 
libguichan-dev_0.8.1-6_i386.deb
Files: 
 6558350602327c806c1511072578e03f 1191 libs optional guichan_0.8.1-6.dsc
 f129f12f920fa049591fbf7f19beb0da 5610 libs optional guichan_0.8.1-6.diff.gz
 162eaca2dc1dff4c7505b6fe61ebcc98 129306 libs optional 
libguichan-0.8.1-1_0.8.1-6_i386.deb
 f9e6d03454151cec5c25bf9526635629 32892 libs optional 
libguichan-allegro-0.8.1-1_0.8.1-6_i386.deb
 626bdc183b04407616fd46755d4bbc66 32226 libs optional 
libguichan-sdl-0.8.1-1_0.8.1-6_i386.deb
 7b0b736e6d0960c0b2eedd5ba44035e7 22924 libs optional 
libguichan-opengl-0.8.1-1_0.8.1-6_i386.deb
 adf2ac97323586ff5bea7fb35c416100 785644 debug extra 
libguichan-0.8.1-1-dbg_0.8.1-6_i386.deb
 5c4cad439ff2d81fda91a865b5f9da6c 278918 libdevel optional 
libguichan-dev_0.8.1-6_i386.deb

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

iEYEARECAAYFAko57GwACgkQ2XA5inpabMeX2ACfRuTmxigE09E2ql5Qok7ZTBJ8
uO4Aniqovsyv8O2LxD+4VeQOqkFU/3Fy
=/qwe
-END PGP SIGNATURE-


Accepted:
guichan_0.8.1-6.diff.gz
  to pool/main/g/guichan/guichan_0.8.1-6.diff.gz
guichan_0.8.1-6.dsc
  to pool/main/g/guichan/guichan_0.8.1-6.dsc
libguichan-0.8.1-1-dbg_0.8.1-6_i386.deb
  to pool/main/g/guichan/libguichan-0.8.1-1-dbg_0.8.1-6_i386.deb
libguichan-0.8.1-1_0.8.1-6_i386.deb
  to pool/main/g/guichan/libguichan-0.8.1-1_0.8.1-6_i386.deb
libguichan-allegro-0.8.1-1_0.8.1-6_i386.deb
  to pool/main/g/guichan/libguichan-allegro-0.8.1-1_0.8.1-6_i386.deb
libguichan-dev_0.8.1-6_i386.deb
  to pool/main/g/guichan/libguichan-dev_0.8.1-6_i386.deb
libguichan-opengl-0.8.1-1_0.8.1-6_i386.deb
  to pool/main/g/guichan/libguichan-opengl-0.8.1-1_0.8.1-6_i386.deb
libguichan-sdl-0.8.1-1_0.8.1-6_i386.deb
  to pool/main/g/guichan/libguichan-sdl-0.8.1-1_0.8.1-6_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 trophy 1.1.5-3 (source all i386)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:57:59 +0200
Source: trophy
Binary: trophy trophy-dbg trophy-data
Architecture: source all i386
Version: 1.1.5-3
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 trophy - A 2D car racing action game
 trophy-data - A 2D car racing action game (data files)
 trophy-dbg - A 2D car racing action game (debugging symbols)
Changes: 
 trophy (1.1.5-3) unstable; urgency=low
 .
   * Fix typo in get-orig-source target.
   * Add my own copyright for the Debian packaging.
   * Bump Standards-Version to 3.8.2 (no changes needed).
Checksums-Sha1: 
 357274672bdad049d7b2642156e2fbf474ead56a 1126 trophy_1.1.5-3.dsc
 2a390a9be68fc669c675e37c0df80d1410b7c454 6543 trophy_1.1.5-3.diff.gz
 f3fb306798ec8c021b4f5f408f6fbdda4784cf45 14231498 trophy-data_1.1.5-3_all.deb
 de6668aee209c1f009525df4cc148c032b846d2d 74890 trophy_1.1.5-3_i386.deb
 de5403e0bd3b4c259cee04b5b6f4e14b2458c3ec 495344 trophy-dbg_1.1.5-3_i386.deb
Checksums-Sha256: 
 311c182d41d6a08dc9f7d2b5e0a88d15f62df6f3eeb459f9c04f1c8873c7c1d5 1126 
trophy_1.1.5-3.dsc
 23857c887dce37a97056c2398791a5bd656a8f8f6d2d7e89e78689e0bce8 6543 
trophy_1.1.5-3.diff.gz
 d6dea216e12246257bc3576b81f6f6c662d7b146ba6f20e6d9b4cb87d52170b6 14231498 
trophy-data_1.1.5-3_all.deb
 bd414a69110fa79cb5eaa32f7bd43514b9c583c72f7b90316ee269a11d684149 74890 
trophy_1.1.5-3_i386.deb
 9b9ac13b979489bd0b4d094169ff59a5424d9da601eca0a77b4902458488d839 495344 
trophy-dbg_1.1.5-3_i386.deb
Files: 
 7f82feda5a555cdca33bed0162b5c9a6 1126 games optional trophy_1.1.5-3.dsc
 3fa9f05516f54043e084290568525eaf 6543 games optional trophy_1.1.5-3.diff.gz
 7576f4ef1e201678e7c72611729f589d 14231498 games optional 
trophy-data_1.1.5-3_all.deb
 60491328ac89aada3e558adc8d58cf45 74890 games optional trophy_1.1.5-3_i386.deb
 983620892a60ca9b25a68efd27ef8c55 495344 debug extra trophy-dbg_1.1.5-3_i386.deb

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

iEYEARECAAYFAko57G0ACgkQ2XA5inpabMcB/ACgnQ75fhsHYfwp4qDuKaJeGhm9
XPEAn3HLmVkVU7UoWVCgmCmu1VMbq6KA
=Mpq8
-END PGP SIGNATURE-


Accepted:
trophy-data_1.1.5-3_all.deb
  to pool/main/t/trophy/trophy-data_1.1.5-3_all.deb
trophy-dbg_1.1.5-3_i386.deb
  to pool/main/t/trophy/trophy-dbg_1.1.5-3_i386.deb
trophy_1.1.5-3.diff.gz
  to pool/main/t/trophy/trophy_1.1.5-3.diff.gz
trophy_1.1.5-3.dsc
  to pool/main/t/trophy/trophy_1.1.5-3.dsc
trophy_1.1.5-3_i386.deb
  to pool/main/t/trophy/trophy_1.1.5-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 policykit 0.9-4 (source all i386)

2009-06-18 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 09:55:34 +0200
Source: policykit
Binary: policykit policykit-doc libpolkit2 libpolkit-dev libpolkit-dbus2 
libpolkit-dbus-dev libpolkit-grant2 libpolkit-grant-dev
Architecture: source all i386
Version: 0.9-4
Distribution: unstable
Urgency: low
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 libpolkit-dbus-dev - library for accessing PolicyKit via D-Bus - development 
files
 libpolkit-dbus2 - library for accessing PolicyKit via D-Bus
 libpolkit-dev - library for accessing PolicyKit - development files
 libpolkit-grant-dev - library for obtaining privileges via PolicyKit - 
development file
 libpolkit-grant2 - library for obtaining privileges via PolicyKit
 libpolkit2 - library for accessing PolicyKit
 policykit  - framework for managing administrative policies and privileges
 policykit-doc - documentation for PolicyKit
Closes: 521756 523565 532101
Changes: 
 policykit (0.9-4) unstable; urgency=low
 .
   * Add support for /var/run being a tmpfs. (Closes: #532101)
 - Create /var/run/PolicyKit dynamically on boot by using an init script.
   Original patch by Martin Pitt, thanks. Updated patch to only run the
   init script in runlevel S at priority 75.
 - Do no longer ship /var/run/PolicyKit in the package itself.
   * debian/control
 - Bump Standards-Version to 3.8.1.
   * debian/patches/04_entry_leak.patch
 - Plug a memory leak. Patch pulled from Fedora.
   * debian/patches/05_manpage_typo_fix.patch
 - Fix a small typo in the polkit-auth man page. (Closes: #523565)
   * debian/patches/06_no_inotify_or_path_max.patch
 - Add support for systems which don't support inotify (like hurd) and
   don't use PATH_MAX unconditionally, instead use dynamically growing
   buffers. (Closes: #521756)
   Patch by Samuel Thibault, thanks.
Checksums-Sha1: 
 ecdb9121f77d0376af21ef0fbcae6ded0d35c5d9 1591 policykit_0.9-4.dsc
 3799d6bfde534afa5f6c223382c13ee364ffad95 10915 policykit_0.9-4.diff.gz
 e9470b7cb931bcf3e386d24ee31c8be77930f9ee 363748 policykit-doc_0.9-4_all.deb
 8439a49e5dff843b251e3aee71372889885bf568 130698 policykit_0.9-4_i386.deb
 9a2f64b7377945d9e5bdbf9e8ee3c57d46f36c56 105246 libpolkit2_0.9-4_i386.deb
 5c80be55eeb66cfeb6561122ebf32bdb52739d15 122594 libpolkit-dev_0.9-4_i386.deb
 74f78a6894b7ce41c7ccaeb94564587a601fca86 86596 libpolkit-dbus2_0.9-4_i386.deb
 96dfc8c31cfd070b9a1e212ed4273c1832b0aa8e 90928 
libpolkit-dbus-dev_0.9-4_i386.deb
 c20614ea81fb720c9ff1ef6d34532e0104f89591 83298 libpolkit-grant2_0.9-4_i386.deb
 f22dabb004696fe308500dbfb29595b7d0cc48f9 89924 
libpolkit-grant-dev_0.9-4_i386.deb
Checksums-Sha256: 
 f06f1666cc1216608289a20ee1edcbc67f1fb01a811316502b153082be922531 1591 
policykit_0.9-4.dsc
 83640fbcb3507e8f41c6eb0b8d4ffc985577f39f9926ee46479f212f50a1b832 10915 
policykit_0.9-4.diff.gz
 7825ef76224778bf94564474c3ecf4afbceffb5ffee1fa7d3c700d26bd0fa707 363748 
policykit-doc_0.9-4_all.deb
 3d2f23e7493c3e4e1651fc566f5b498547d323770f4dc9136337097840713df2 130698 
policykit_0.9-4_i386.deb
 c8a02e64f5a4a95f39a0bb739a61b7097dcd255a3d6061c8b395b261052d4552 105246 
libpolkit2_0.9-4_i386.deb
 ef9af3610a578d41a2b0238e692502f384e3c498494e629709f9a7913411667e 122594 
libpolkit-dev_0.9-4_i386.deb
 a32b0eee8361262a861dd220102d88df7b3985f56d9de854cd0094ceb0b0837b 86596 
libpolkit-dbus2_0.9-4_i386.deb
 8fb1ab15d95473b0b304ed86385eae39a953c2e6f9e02fe15e217e58cd040abd 90928 
libpolkit-dbus-dev_0.9-4_i386.deb
 19a5736a29eb74fe7e45416a2f560c5b303c8269e730bc6892a71450db89bec9 83298 
libpolkit-grant2_0.9-4_i386.deb
 eb03bebb83492b3a2748fd969a2a3f4ee74d6311571bdd0af3896660e74f0cf0 89924 
libpolkit-grant-dev_0.9-4_i386.deb
Files: 
 d997c22c02e6bef8b4d2de2537ffc01a 1591 admin optional policykit_0.9-4.dsc
 4a6184b709f1f33aabe99bc5faed58a5 10915 admin optional policykit_0.9-4.diff.gz
 3b99d46a04cdd90bb709d95ba5c0f527 363748 doc optional 
policykit-doc_0.9-4_all.deb
 9d05dbab25d91fbe39f0f673fe19cca8 130698 admin optional policykit_0.9-4_i386.deb
 22515f80e761453ca335282e441961d4 105246 libs optional libpolkit2_0.9-4_i386.deb
 954057a6dc2284fd76d0ab8c7cce6c59 122594 libdevel optional 
libpolkit-dev_0.9-4_i386.deb
 8423f530002c0ca29747fe90aa08bc69 86596 libs optional 
libpolkit-dbus2_0.9-4_i386.deb
 3733fb78d256d20a8fe6eb6c6944c2a4 90928 libdevel optional 
libpolkit-dbus-dev_0.9-4_i386.deb
 db6eb7979fc0f4057bbda97ca657a6bb 83298 libs optional 
libpolkit-grant2_0.9-4_i386.deb
 816907035a2f959165944911df489216 89924 libdevel optional 
libpolkit-grant-dev_0.9-4_i386.deb

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

iEYEARECAAYFAko59IYACgkQh7PER70FhVQ53wCfRf80bjj82jn1vGfZJPZtPX7r
flkAoK2cYeOPZjY8g1a1QRnSRL0Ippto
=aqf+
-END PGP SIGNATURE-


Accepted:
libpolkit-dbus-dev_0.9-4_i386.deb
  to pool/main/p/policykit/libpolkit-dbus-dev_0.9-4_i386.deb
libpolkit-dbus2_0.9-4_i386.deb
  to 

Accepted mlt 0.4.2+git20090618-1 (source i386 all)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 09:41:39 +0200
Source: mlt
Binary: libmlt-dev libmlt1 libmlt-data libmlt++-dev libmlt++2 inigo melt
Architecture: source i386 all
Version: 0.4.2+git20090618-1
Distribution: unstable
Urgency: low
Maintainer: Fathi Boudra f...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 inigo  - command line media player and video editor (dummy package)
 libmlt++-dev - MLT multimedia framework C++ wrapper (development)
 libmlt++2  - MLT multimedia framework C++ wrapper (runtime)
 libmlt-data - multimedia framework (data)
 libmlt-dev - multimedia framework (development)
 libmlt1- multimedia framework (runtime)
 melt   - command line media player and video editor
Changes: 
 mlt (0.4.2+git20090618-1) unstable; urgency=low
 .
   * New git snapshot.
 - Drop merged 07_custom_ldflags.diff patch.
 - Drop merged 09_add_gcc4.3_support.diff patch.
 - Drop merged 01_remove_ldconfig.diff patch.
 - Drop merged 02_update_have_mmx.diff patch.
   * Add libmlt-data as dependency for melt, it can not play movies without the
 profiles.
   * Bump Standards-Version to 3.8.2 (no changes needed).
   * Drop our melt manpage and install the new one from upstream.
 - Add 01_fix_man_whatis.diff which fixes the whatis entry.
   * Drop versioned build dependency on ffmpeg.
   * Extend a little bit the long-description of melt. Fixes lintian warning
 extended-description-is-probably-too-short.
Checksums-Sha1: 
 5423747e1debce285fd4028a440249a6f2122d71 1442 mlt_0.4.2+git20090618-1.dsc
 d922c40885c640f1cfb22717f86cfa138d6d78e2 734612 
mlt_0.4.2+git20090618.orig.tar.gz
 aa793f79f2b4b030fbfecb774135e3d468732136 5226 mlt_0.4.2+git20090618-1.diff.gz
 6ddbfeb613cbff594e6ed4c6b0b0d744de5bbc1a 112500 
libmlt-dev_0.4.2+git20090618-1_i386.deb
 bc7e37789f04621c72bdc091c48149871d4d8f3a 375444 
libmlt1_0.4.2+git20090618-1_i386.deb
 3934776195565a09bb48847a2911bb1791371799 1385768 
libmlt-data_0.4.2+git20090618-1_all.deb
 fad26c413c97d0d6a26f5b23a55da2754909771d 71788 
libmlt++-dev_0.4.2+git20090618-1_i386.deb
 307607004abab6609a3a2ff48d48474cd8d2de84 102938 
libmlt++2_0.4.2+git20090618-1_i386.deb
 50761f8a5cdf984a73c2697a23bee3d46725ecdd 63952 
inigo_0.4.2+git20090618-1_all.deb
 743ee6fb231020f208046c9fc7d3a785a3a51d9c 105276 
melt_0.4.2+git20090618-1_i386.deb
Checksums-Sha256: 
 37a921ce94679e50e99fc0853244c26e310ea4a5274fed9c12d9b2ffc1c2ee78 1442 
mlt_0.4.2+git20090618-1.dsc
 c94bd35741cd3bdfc5dd41936b286f82c4a55511c54e8e0205a822ce9a78ffe1 734612 
mlt_0.4.2+git20090618.orig.tar.gz
 5104ed1b6764eca8e3fcb5ebf1b05113363ccfa0ca2c20ec84917b8c2d7cccd4 5226 
mlt_0.4.2+git20090618-1.diff.gz
 9d97814ac01cdb102387aff567f92b7c058a00133b246e24ed88bcc73c760f45 112500 
libmlt-dev_0.4.2+git20090618-1_i386.deb
 8255c9fc18525408dc6ec0a6c14f7c0f4a58231dcbd86d106acbf64a6b91a8c9 375444 
libmlt1_0.4.2+git20090618-1_i386.deb
 1254d4224f39e3e5039804011f909e990c7e449ead032cff509f4b7998088065 1385768 
libmlt-data_0.4.2+git20090618-1_all.deb
 7c5897c19aa40e348ed677e39f215c9dfa2c6776917d197d35bbcd30b61071de 71788 
libmlt++-dev_0.4.2+git20090618-1_i386.deb
 1c01a09fcd79efa1e31398d9b30eb03dfc5301330fb9588caf74fd9db218afd8 102938 
libmlt++2_0.4.2+git20090618-1_i386.deb
 d059b34489044eac7c5a838b6c11bbbdce61f3629df2cb00111d0a4acdaaf408 63952 
inigo_0.4.2+git20090618-1_all.deb
 9497d1656e6b7e66f3a8bed11d8f9513ca3be84275b67aa6e378fdcd1d706f09 105276 
melt_0.4.2+git20090618-1_i386.deb
Files: 
 a886349e50c1e29fba90a86fd137b604 1442 libs optional mlt_0.4.2+git20090618-1.dsc
 18ebed3ce67e616f0d84c9c78d56a724 734612 libs optional 
mlt_0.4.2+git20090618.orig.tar.gz
 65fb3e8d2f0246cb39c9423cbfb68c99 5226 libs optional 
mlt_0.4.2+git20090618-1.diff.gz
 e2e5b01bad4566e691c75f1ddfceb348 112500 libdevel optional 
libmlt-dev_0.4.2+git20090618-1_i386.deb
 cbc37cb62e31613b2b7de0860a1cddf4 375444 libs optional 
libmlt1_0.4.2+git20090618-1_i386.deb
 cf84a0f5137917c6ac2c7abec23a381a 1385768 libs optional 
libmlt-data_0.4.2+git20090618-1_all.deb
 42be003a52ec6a25af0703ffb84adc40 71788 libdevel optional 
libmlt++-dev_0.4.2+git20090618-1_i386.deb
 bba208aa9bcd28b0b7a961f7e7e1e604 102938 libs optional 
libmlt++2_0.4.2+git20090618-1_i386.deb
 b2e37485c1dabe8421a1c47c543fad37 63952 utils optional 
inigo_0.4.2+git20090618-1_all.deb
 aa5d3fda5f3bca38753d9a29c4664d90 105276 utils optional 
melt_0.4.2+git20090618-1_i386.deb

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

iEYEARECAAYFAko5+UYACgkQ2XA5inpabMdcfgCgo3OvM4AdXy6w3+1Bk4NFRxmi
4KsAoJNujUqkLKs0rj66u3Wm2h21uzRm
=stox
-END PGP SIGNATURE-


Accepted:
inigo_0.4.2+git20090618-1_all.deb
  to pool/main/m/mlt/inigo_0.4.2+git20090618-1_all.deb
libmlt++-dev_0.4.2+git20090618-1_i386.deb
  to pool/main/m/mlt/libmlt++-dev_0.4.2+git20090618-1_i386.deb
libmlt++2_0.4.2+git20090618-1_i386.deb
  to pool/main/m/mlt/libmlt++2_0.4.2+git20090618-1_i386.deb
libmlt-data_0.4.2+git20090618-1_all.deb
  to 

Accepted epcr 2.3.11-1 (source powerpc)

2009-06-18 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 17:39:15 +0900
Source: epcr
Binary: ncbi-epcr
Architecture: source powerpc
Version: 2.3.11-1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Charles Plessy ple...@debian.org
Description: 
 ncbi-epcr  - Tool to test a DNA sequence for the presence of sequence tagged s
Changes: 
 epcr (2.3.11-1) unstable; urgency=low
 .
   * New upstream release. When parsing commandline if -d was used before -w or
 -f default size was reset to program's default.
 .
   [ Andreas Tille ]
   * debian/control:
 - Fixed Vcs-Svn (missing svn/)
 - Updated Standards-Version to 3.8.2 (no changes needed)
 .
   [ Charles Plessy ]
   * debian/control:
 - Added myself to the Uploaders.
 - Using Debhelper 7 (also in debian/compat).
 - Removed patch system (also in debian/rules).
Checksums-Sha1: 
 25dcc40ffd8df259c372bfd4c25221e2d19babf9 1335 epcr_2.3.11-1.dsc
 5a59b8e0d627f707a2cce34679d67370d9d961a7 76295 epcr_2.3.11.orig.tar.gz
 f9139ab664efee36932e3073ec7e6a61bec8a5ea 6294 epcr_2.3.11-1.diff.gz
 d77dd4f043ecaa3f1472ed901c100deb7ce99430 206220 ncbi-epcr_2.3.11-1_powerpc.deb
Checksums-Sha256: 
 409f18a22815fb5375600496c62501411d3db54ac725c8cd3299b89b95835797 1335 
epcr_2.3.11-1.dsc
 06769e150b60b9cd38f732abd388ba3719e666946598854c703ff32a62d0d1da 76295 
epcr_2.3.11.orig.tar.gz
 49f44944b334be69c5f1fb1131b3aaedc34798da9056b03b99d137dad4326097 6294 
epcr_2.3.11-1.diff.gz
 a4bd247f694a097baccc06c845e43f357422e47d119f18cfda328e03e4213cde 206220 
ncbi-epcr_2.3.11-1_powerpc.deb
Files: 
 2cdd93872c3c53c1d7d430cbe4f7ff46 1335 science optional epcr_2.3.11-1.dsc
 6ccc6d88755ac8ad08712e2f63b579b3 76295 science optional epcr_2.3.11.orig.tar.gz
 9449cbe010f0d3a67cb9d0f0c264f68d 6294 science optional epcr_2.3.11-1.diff.gz
 0fe7858d84bfbda80b6111423f00b624 206220 science optional 
ncbi-epcr_2.3.11-1_powerpc.deb

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

iEYEARECAAYFAko6APMACgkQdYl1krr+x/IL6gCfXop5QfYrqiAU3M46vzAper4r
OlcAn3TgqOJCgTUJv5s5C299O3RMLG35
=MXdX
-END PGP SIGNATURE-


Accepted:
epcr_2.3.11-1.diff.gz
  to pool/main/e/epcr/epcr_2.3.11-1.diff.gz
epcr_2.3.11-1.dsc
  to pool/main/e/epcr/epcr_2.3.11-1.dsc
epcr_2.3.11.orig.tar.gz
  to pool/main/e/epcr/epcr_2.3.11.orig.tar.gz
ncbi-epcr_2.3.11-1_powerpc.deb
  to pool/main/e/epcr/ncbi-epcr_2.3.11-1_powerpc.deb


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



Accepted gforge 4.8-1 (source all)

2009-06-18 Thread Roland Mas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 12 Jun 2009 13:44:57 +0200
Source: gforge
Binary: gforge gforge-common gforge-web-apache2 gforge-web-apache 
gforge-db-postgresql gforge-mta-exim4 gforge-mta-postfix gforge-mta-courier 
gforge-shell-postgresql gforge-ftp-proftpd gforge-dns-bind9 
gforge-lists-mailman gforge-plugin-scmcvs gforge-plugin-scmsvn 
gforge-plugin-mediawiki
Architecture: source all
Version: 4.8-1
Distribution: experimental
Urgency: low
Maintainer: Roland Mas lola...@debian.org
Changed-By: Roland Mas lola...@debian.org
Description: 
 gforge - collaborative development tool - metapackage
 gforge-common - collaborative development tool - shared files
 gforge-db-postgresql - collaborative development tool - database (using 
PostgreSQL)
 gforge-dns-bind9 - collaborative development tool - DNS management (using 
Bind9)
 gforge-ftp-proftpd - collaborative development tool - FTP management (using 
ProFTPd)
 gforge-lists-mailman - collaborative development tool - mailing-lists (using 
Mailman)
 gforge-mta-courier - collaborative development tool - mail tools (using 
Courier)
 gforge-mta-exim4 - collaborative development tool - mail tools (using Exim 4)
 gforge-mta-postfix - collaborative development tool - mail tools (using 
Postfix)
 gforge-plugin-mediawiki - Mediawiki plugin for FusionForge
 gforge-plugin-scmcvs - collaborative development tool - CVS plugin
 gforge-plugin-scmsvn - collaborative development tool - Subversion plugin
 gforge-shell-postgresql - collaborative development tool - shell accounts 
(using PostgreSQL
 gforge-web-apache - transition package to gforge-web-apache2
 gforge-web-apache2 - collaborative development tool - web part (using Apache)
Changes: 
 gforge (4.8-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 2a9ee72011dba484ce09825adb99367d794a100c 1435 gforge_4.8-1.dsc
 4f9a5d244e66a8a2a6ab0c1e71bc72c16571495e 11025730 gforge_4.8.orig.tar.gz
 bbfa3ebbb0bed4efebaaf102507d1c8e139b939a 2811 gforge_4.8-1.diff.gz
 4e0830e87fbaf4db334b7b0570bbfa3f527086d5 95088 gforge_4.8-1_all.deb
 e9115c8ad0366db5bd383e019a6bf7ff7f04208b 1100398 gforge-common_4.8-1_all.deb
 acbe39c0fcb068edd95439ddec47e33af77c0705 1323420 
gforge-web-apache2_4.8-1_all.deb
 7813a04a04067669d102e22f1623f50348e6547c 90742 gforge-web-apache_4.8-1_all.deb
 2726b9fc55cca28f6c4a9cb1d54612b32c464523 235188 
gforge-db-postgresql_4.8-1_all.deb
 bc251fbdd343630ad273bbf0baec7abf2d2da89e 103080 gforge-mta-exim4_4.8-1_all.deb
 99218922597314b45e6944b205e80f53e35733ca 103920 
gforge-mta-postfix_4.8-1_all.deb
 d80ea2940334058e1b576248c5ff1cb53bddb0a8 91012 gforge-mta-courier_4.8-1_all.deb
 294d9d47b4f55805fffdf9ed1ba18a9ccecb635b 97328 
gforge-shell-postgresql_4.8-1_all.deb
 70b3c779461bca50f2ef26f9c408f59f880e5731 98048 gforge-ftp-proftpd_4.8-1_all.deb
 90f627ce60c67e015e145004e1688c3fffb67d6f 109594 gforge-dns-bind9_4.8-1_all.deb
 fee8042d305b070db6c12ca7efafdbf8af68449d 97132 
gforge-lists-mailman_4.8-1_all.deb
 1035562f2e83ba553c2b1a628a2e15ba17cebc6b 122854 
gforge-plugin-scmcvs_4.8-1_all.deb
 27008b8a4a72a95edea3da1f005d17c85d2284bb 120456 
gforge-plugin-scmsvn_4.8-1_all.deb
 673ddca418699c62d34283be56c6749db20721c4 215980 
gforge-plugin-mediawiki_4.8-1_all.deb
Checksums-Sha256: 
 012fc8f13e2e1d9435f64bb929f72128f60d1d1bd8ebb6a55f5adea84c5b06be 1435 
gforge_4.8-1.dsc
 c50acf3faf87ed9ef4a6f0af09f4d8a5568e24f5090effc3df5a4a650301f5cc 11025730 
gforge_4.8.orig.tar.gz
 1b41ff2e4707fe253b4b5362d959134ddd03419b76fc2656b3b674ef7f0e1bfb 2811 
gforge_4.8-1.diff.gz
 43bce468828e8dda6df33ff9e81530689e55b374be2e4099c339d46599390775 95088 
gforge_4.8-1_all.deb
 a758e9d95c2c22eb267fe80cb893b62334d94f799043e074aea69ef3fda03744 1100398 
gforge-common_4.8-1_all.deb
 a604b2284472aeceb26f57e83b811cdfeaed4611fbf956adb8c9f4cfebe255f9 1323420 
gforge-web-apache2_4.8-1_all.deb
 200d832119349fc206cb74e14c50d0c2e8783c71fc4564560f7ae3dabfcadb03 90742 
gforge-web-apache_4.8-1_all.deb
 1b95c17975dbe2e6a1299807451db07c65c5d5a75c5fce2467015b239221c5de 235188 
gforge-db-postgresql_4.8-1_all.deb
 f15604dd725090b3295d89bc76f837784382d9d8d101d08ef177cff5b69cb8df 103080 
gforge-mta-exim4_4.8-1_all.deb
 bbc6d40ff4b0ff92349910bf079367dad813a5e2c8487042fede4c541f1b2b26 103920 
gforge-mta-postfix_4.8-1_all.deb
 5c3e9a267de4465d388924288a0a5868555c784cb50a932e6a598297ce086224 91012 
gforge-mta-courier_4.8-1_all.deb
 9c60ba79dd0cb621224fbfbfd7abde66f55941ed9f26d8203f55e423b2387bab 97328 
gforge-shell-postgresql_4.8-1_all.deb
 ded92ad3c008c9eb917160bb31a4ee5fe2a562eb950cbea5397b6ffe90902dc0 98048 
gforge-ftp-proftpd_4.8-1_all.deb
 3d9fc0c72dc7e2f78a743e2482fc54099f8280f864f690381a2b0a3a966edfdd 109594 
gforge-dns-bind9_4.8-1_all.deb
 645b074c3d276b56183b3d1ec158d5ead016dbe2e3c47297b160a7fd73c4f9e4 97132 
gforge-lists-mailman_4.8-1_all.deb
 d70629a3ea0955dabb621c812e90d2df994806eb28fa73b76c1265b81e097471 122854 
gforge-plugin-scmcvs_4.8-1_all.deb
 

Accepted clamtk 4.14-1 (source all)

2009-06-18 Thread David Paleino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 17 Jun 2009 22:14:15 +0200
Source: clamtk
Binary: clamtk
Architecture: source all
Version: 4.14-1
Distribution: unstable
Urgency: low
Maintainer: d.pale...@gmail.com
Changed-By: David Paleino d.pale...@gmail.com
Description: 
 clamtk - graphical front-end for ClamAV
Changes: 
 clamtk (4.14-1) unstable; urgency=low
 .
   * New upstream version
   * debian/patches/:
 - 01-fix_clamtk.desktop.patch, 04-add_recursive_checkbox.patch
   refreshed to cleanly apply.
Checksums-Sha1: 
 2f00b70587d0d714f51e410aa321265db428aeae 1174 clamtk_4.14-1.dsc
 4ecd444f1018aeae2f6f689fa8b6ebf5dd2bf115 208338 clamtk_4.14.orig.tar.gz
 494cd80049cc8f080c97aa6ddb23669972c17d96 11136 clamtk_4.14-1.diff.gz
 7409f56297d69727a716a4f1e6d0c7b8b61642d4 123332 clamtk_4.14-1_all.deb
Checksums-Sha256: 
 2e4c63f93027c3aa3f6fd8baf8da2dc4bed0190fa15ed6f279b90ee3010e2fa0 1174 
clamtk_4.14-1.dsc
 fa9d4b1497a39685d350725a9fe324f6c95fb747e5529767dec944ef9f9efd10 208338 
clamtk_4.14.orig.tar.gz
 41b9bfea09bfdbf7aedcf7e02a221caaad864c732371e114982250cfab2ff2b8 11136 
clamtk_4.14-1.diff.gz
 191a3b79e5996759d6a133e2f81b401b0465b2c426c1ef5c71d7fdc2a6db4df5 123332 
clamtk_4.14-1_all.deb
Files: 
 e8fe2d4d9ca43d371fee9009886bc641 1174 utils optional clamtk_4.14-1.dsc
 05ff2863afe3d271f1f3f76017e31ecd 208338 utils optional clamtk_4.14.orig.tar.gz
 1b7a5e48e15873802979f0068a89328d 11136 utils optional clamtk_4.14-1.diff.gz
 b630108000f50a09358626f713daee95 123332 utils optional clamtk_4.14-1_all.deb

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

iEYEARECAAYFAko6HPQACgkQ5qqQFxOSsXRMtACfdJodEy26tl0YIjWP7KBfTfxA
J2YAoL0U4+knBP7Z/is0B8439m5tYpdK
=rMYT
-END PGP SIGNATURE-


Accepted:
clamtk_4.14-1.diff.gz
  to pool/main/c/clamtk/clamtk_4.14-1.diff.gz
clamtk_4.14-1.dsc
  to pool/main/c/clamtk/clamtk_4.14-1.dsc
clamtk_4.14-1_all.deb
  to pool/main/c/clamtk/clamtk_4.14-1_all.deb
clamtk_4.14.orig.tar.gz
  to pool/main/c/clamtk/clamtk_4.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 mlt 0.4.2+git20090618-2 (source i386 all)

2009-06-18 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 13:06:18 +0200
Source: mlt
Binary: libmlt-dev libmlt1 libmlt-data libmlt++-dev libmlt++2 inigo melt
Architecture: source i386 all
Version: 0.4.2+git20090618-2
Distribution: unstable
Urgency: low
Maintainer: Fathi Boudra f...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 inigo  - command line media player and video editor (dummy package)
 libmlt++-dev - MLT multimedia framework C++ wrapper (development)
 libmlt++2  - MLT multimedia framework C++ wrapper (runtime)
 libmlt-data - multimedia framework (data)
 libmlt-dev - multimedia framework (development)
 libmlt1- multimedia framework (runtime)
 melt   - command line media player and video editor
Changes: 
 mlt (0.4.2+git20090618-2) unstable; urgency=low
 .
   * Add 02_missing_math_ftbfs.diff patch, which fixes a FTBFS on some arches.
Checksums-Sha1: 
 85b21c22bfc2afccf8c3d912a6ea67a3fb6f3146 1442 mlt_0.4.2+git20090618-2.dsc
 cc9315ee91fc57c4e2dd59f96e792567f6f69978 5393 mlt_0.4.2+git20090618-2.diff.gz
 f65b6daea9c7f5bd9f5bcbaebfa0bedc5f0572ca 112538 
libmlt-dev_0.4.2+git20090618-2_i386.deb
 618d546f58a2c7173b904ca75b7c38b3ea425a0c 375490 
libmlt1_0.4.2+git20090618-2_i386.deb
 633530b86a5c79f5a592b843f39e129a772b97c2 1385826 
libmlt-data_0.4.2+git20090618-2_all.deb
 005320f80ed5f768b33dd254f3c719221f427fd3 71816 
libmlt++-dev_0.4.2+git20090618-2_i386.deb
 db2c77115bb6d8154e8f2778c8060a35b6b3a554 102992 
libmlt++2_0.4.2+git20090618-2_i386.deb
 ce730d8e70e1f0b6611d38c82a9351adf60c284f 63990 
inigo_0.4.2+git20090618-2_all.deb
 a0f46992a54323bfc49cc5711406b4fef96a94db 105336 
melt_0.4.2+git20090618-2_i386.deb
Checksums-Sha256: 
 84661af89db025d95e75598fca7016ce09e1e84de35e31430800035376474051 1442 
mlt_0.4.2+git20090618-2.dsc
 e5f6625c4757aa671148dab7617dc77fe6a2b57bdb5efef18459ddbc976c8628 5393 
mlt_0.4.2+git20090618-2.diff.gz
 9f2ca29618e56de5e747220a8eaab3032ba0bee08b636c888cc90a9a2e554138 112538 
libmlt-dev_0.4.2+git20090618-2_i386.deb
 0a971a7388b1b8c831a62663b5578aeabdeed2c60afdaa524e931ccf8bdfaed9 375490 
libmlt1_0.4.2+git20090618-2_i386.deb
 e544bf8a97af597434d429149c2dd1da3114c08f538ece10cadfe63adde35342 1385826 
libmlt-data_0.4.2+git20090618-2_all.deb
 2e8a1c24ed3de6a2578bd9fcbab5b61cc830b42e1c71988c54d09e993ae2e13c 71816 
libmlt++-dev_0.4.2+git20090618-2_i386.deb
 25348bccbe12cf42505a2ca9a347e13ac0d6f0efa3290e7f41384a657ae286f9 102992 
libmlt++2_0.4.2+git20090618-2_i386.deb
 9e1b63ba08b90bd393a392383551e3bf12822cd8db24d94c6c0f3f7a42449b9d 63990 
inigo_0.4.2+git20090618-2_all.deb
 506ebf5aca669d8d537c0a6f8f31b30b6abad92f8f7fb473cd182b327353f8d2 105336 
melt_0.4.2+git20090618-2_i386.deb
Files: 
 de99a64ca6a55e689e8fd673e1a86ca0 1442 libs optional mlt_0.4.2+git20090618-2.dsc
 e757cce2c9d68900463ffef4ff6366e8 5393 libs optional 
mlt_0.4.2+git20090618-2.diff.gz
 31616a147be20098b33a89d21ace0ec3 112538 libdevel optional 
libmlt-dev_0.4.2+git20090618-2_i386.deb
 e7a5781c36c4cf3f6ace0fe86e12193e 375490 libs optional 
libmlt1_0.4.2+git20090618-2_i386.deb
 25cb0afb0cd6d173de021125fe8bc7eb 1385826 libs optional 
libmlt-data_0.4.2+git20090618-2_all.deb
 a151068bcf53f525087f6ac07ee1 71816 libdevel optional 
libmlt++-dev_0.4.2+git20090618-2_i386.deb
 54691cc1a1a3b5772ab70ef4eacc0895 102992 libs optional 
libmlt++2_0.4.2+git20090618-2_i386.deb
 9dc4372aedcd19d1d620a1c84797e9f0 63990 utils optional 
inigo_0.4.2+git20090618-2_all.deb
 258ddd2686e14b5408ddc96eabb33180 105336 utils optional 
melt_0.4.2+git20090618-2_i386.deb

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

iEYEARECAAYFAko6IZcACgkQ2XA5inpabMduzQCbBiU41vsgD9U+hD2w00FxM+0h
sZoAnRoh97CbGglzOrnwqZeTdf93X7xQ
=sdmZ
-END PGP SIGNATURE-


Accepted:
inigo_0.4.2+git20090618-2_all.deb
  to pool/main/m/mlt/inigo_0.4.2+git20090618-2_all.deb
libmlt++-dev_0.4.2+git20090618-2_i386.deb
  to pool/main/m/mlt/libmlt++-dev_0.4.2+git20090618-2_i386.deb
libmlt++2_0.4.2+git20090618-2_i386.deb
  to pool/main/m/mlt/libmlt++2_0.4.2+git20090618-2_i386.deb
libmlt-data_0.4.2+git20090618-2_all.deb
  to pool/main/m/mlt/libmlt-data_0.4.2+git20090618-2_all.deb
libmlt-dev_0.4.2+git20090618-2_i386.deb
  to pool/main/m/mlt/libmlt-dev_0.4.2+git20090618-2_i386.deb
libmlt1_0.4.2+git20090618-2_i386.deb
  to pool/main/m/mlt/libmlt1_0.4.2+git20090618-2_i386.deb
melt_0.4.2+git20090618-2_i386.deb
  to pool/main/m/mlt/melt_0.4.2+git20090618-2_i386.deb
mlt_0.4.2+git20090618-2.diff.gz
  to pool/main/m/mlt/mlt_0.4.2+git20090618-2.diff.gz
mlt_0.4.2+git20090618-2.dsc
  to pool/main/m/mlt/mlt_0.4.2+git20090618-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 gst-plugins-ugly0.10 0.10.12-1 (source all amd64)

2009-06-18 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 13:42:13 +0200
Source: gst-plugins-ugly0.10
Binary: gstreamer0.10-plugins-ugly-doc gstreamer0.10-plugins-ugly 
gstreamer0.10-plugins-ugly-dbg
Architecture: source all amd64
Version: 0.10.12-1
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gstreamer0.10-plugins-ugly - GStreamer plugins from the ugly set
 gstreamer0.10-plugins-ugly-dbg - GStreamer plugins from the ugly set (debug 
symbols)
 gstreamer0.10-plugins-ugly-doc - GStreamer documentation for plugins from the 
ugly set
Changes: 
 gst-plugins-ugly0.10 (0.10.12-1) unstable; urgency=low
 .
   * New upstream release, 'Moving Along The Highway'.
Checksums-Sha1: 
 dcbd80cae49a94beab14be42e00c9a40a7f861ec 1748 
gst-plugins-ugly0.10_0.10.12-1.dsc
 c7e2d2828b1e2a93cb53b047851d10e9d83def01 1397583 
gst-plugins-ugly0.10_0.10.12.orig.tar.gz
 eeb70ba5ab775c811418f15fbbe8aa5adb042b46 23505 
gst-plugins-ugly0.10_0.10.12-1.diff.gz
 1336dcab0d9f88fd6b62a839c828d8c77c403a16 73502 
gstreamer0.10-plugins-ugly-doc_0.10.12-1_all.deb
 8cb123387dbf66ba0159ac6d612e76da6640503e 320262 
gstreamer0.10-plugins-ugly_0.10.12-1_amd64.deb
 b80c3ba12ddcbc332e62157f0ba9090f916ebca8 658340 
gstreamer0.10-plugins-ugly-dbg_0.10.12-1_amd64.deb
Checksums-Sha256: 
 7418c503c69b165690d2f819ec3a84a698f0c2a4617021e2b5369efdf5f09ef8 1748 
gst-plugins-ugly0.10_0.10.12-1.dsc
 74c62d98d7a4ba9e6672bf2e154e40768d5d910c0331017e6c78fa4fbd235a44 1397583 
gst-plugins-ugly0.10_0.10.12.orig.tar.gz
 b7b5e9ff9f9ece292c52ba91f05025738a086b8f9d52761e66278759e1b2871c 23505 
gst-plugins-ugly0.10_0.10.12-1.diff.gz
 fc5372176e89c34342361ba3e82e4684862da972daaf4cb32721228ed81c64c3 73502 
gstreamer0.10-plugins-ugly-doc_0.10.12-1_all.deb
 34c551de77b0cfcaf61c9d5579d83ab1989f3d8d58c05b963e53846aa17f8db8 320262 
gstreamer0.10-plugins-ugly_0.10.12-1_amd64.deb
 d6190c86a3ec4c7fe5a5e956db0e5d204621e1382f25a998e998f44462980225 658340 
gstreamer0.10-plugins-ugly-dbg_0.10.12-1_amd64.deb
Files: 
 2d3b53e469bac01b6a289aa35ee13d3e 1748 libs optional 
gst-plugins-ugly0.10_0.10.12-1.dsc
 44d048a18db20318803c8ae66dbfff56 1397583 libs optional 
gst-plugins-ugly0.10_0.10.12.orig.tar.gz
 ec9fa048fe18d906478b91ee6e63724f 23505 libs optional 
gst-plugins-ugly0.10_0.10.12-1.diff.gz
 b55a69ff6091b0f809efd2621acb1dc2 73502 doc optional 
gstreamer0.10-plugins-ugly-doc_0.10.12-1_all.deb
 47dd2da71294ad834cd3af5fc38370b2 320262 libs optional 
gstreamer0.10-plugins-ugly_0.10.12-1_amd64.deb
 f6f40df8563263d80b007728983d035a 658340 debug extra 
gstreamer0.10-plugins-ugly-dbg_0.10.12-1_amd64.deb

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

iEYEARECAAYFAko6KsAACgkQBsBdh1vkHyGIxQCgq1TVh3Y0I9DxjUgKPJaxbi6Q
GAUAnR9uXvA4EjtQqOemXZ6Cb9axUlj4
=5OEC
-END PGP SIGNATURE-


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


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



Accepted aspell-ml 0.04-1-2 (source all)

2009-06-18 Thread Debian-IN Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 17:24:46 +0530
Source: aspell-ml
Binary: aspell-ml
Architecture: source all
Version: 0.04-1-2
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Description: 
 aspell-ml  - Malayalam (ml) dictionary for GNU aspell
Changes: 
 aspell-ml (0.04-1-2) unstable; urgency=low
 .
   [Kartik Mistry]
   * debian/control:
 + Updated Standards-Version to 3.8.1
 + Updated my maintainer email address
 + [Lintian] Added ${misc:Depends} for debhelper dependency
Checksums-Sha1: 
 34ea1e52b68b653d6a4476e4236c542a99727ff9 1330 aspell-ml_0.04-1-2.dsc
 97896494b327c35aa18f362507eae5fb5089dcdf 2144 aspell-ml_0.04-1-2.diff.gz
 929d43a644e933d29993df689c3dffcf2a303310 588132 aspell-ml_0.04-1-2_all.deb
Checksums-Sha256: 
 b194fd86b292332341583e57fd546996a92b1865dcaefaaa6510683b34ca1b4f 1330 
aspell-ml_0.04-1-2.dsc
 3eecbc11d66a60332a686473e210fd544e0061d182cc8704edae32976a92e235 2144 
aspell-ml_0.04-1-2.diff.gz
 0eb07ee02e421a3c27e7baa7ac146feb677e2d4e2317eb9ca3c4cfa90ee3c9b3 588132 
aspell-ml_0.04-1-2_all.deb
Files: 
 e9158f8ac9b022110927e899200b60a2 1330 text optional aspell-ml_0.04-1-2.dsc
 8db698932e02c5955886d5e8e334b086 2144 text optional aspell-ml_0.04-1-2.diff.gz
 920622791d1e66cf5f1f1a2c7b30955d 588132 text optional 
aspell-ml_0.04-1-2_all.deb

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

iEYEARECAAYFAko6LDUACgkQoRg/jtECjI2PtgCfRYH02mdHFJsb/PMtpFSexjB8
ykwAn2LAsbP2acQLk4N/luxVkIY4SP2b
=ppAd
-END PGP SIGNATURE-


Accepted:
aspell-ml_0.04-1-2.diff.gz
  to pool/main/a/aspell-ml/aspell-ml_0.04-1-2.diff.gz
aspell-ml_0.04-1-2.dsc
  to pool/main/a/aspell-ml/aspell-ml_0.04-1-2.dsc
aspell-ml_0.04-1-2_all.deb
  to pool/main/a/aspell-ml/aspell-ml_0.04-1-2_all.deb


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



Accepted gst-plugins-bad0.10 0.10.13-1 (source all amd64)

2009-06-18 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 13:47:30 +0200
Source: gst-plugins-bad0.10
Binary: gstreamer0.10-plugins-bad-doc gstreamer0.10-plugins-bad 
gstreamer0.10-sdl gstreamer0.10-plugins-bad-dbg
Architecture: source all amd64
Version: 0.10.13-1
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gstreamer0.10-plugins-bad - GStreamer plugins from the bad set
 gstreamer0.10-plugins-bad-dbg - GStreamer plugins from the bad set (debug 
symbols)
 gstreamer0.10-plugins-bad-doc - GStreamer documentation for plugins from the 
bad set
 gstreamer0.10-sdl - GStreamer plugin for SDL output
Changes: 
 gst-plugins-bad0.10 (0.10.13-1) unstable; urgency=low
 .
   * New upstream release, 'Supersonic Rocket':
 + debian/patches/01_hdvparse-link-libm.patch:
   - Dropped, merged upstream.
Checksums-Sha1: 
 584fd57f10f8920f759c00e4cacd1691aa8e10cb 2632 gst-plugins-bad0.10_0.10.13-1.dsc
 d9163cfcb8448149806d8ef759d15f6441b97c84 3994753 
gst-plugins-bad0.10_0.10.13.orig.tar.gz
 2fef0e78640f288e99b09a9a9fb2ac307c458a5b 14913 
gst-plugins-bad0.10_0.10.13-1.diff.gz
 4a21f193747ec04ac46ba5f7174d253736050f07 183024 
gstreamer0.10-plugins-bad-doc_0.10.13-1_all.deb
 90adc5e5a95c57e221038d00931753b4a4299686 1346158 
gstreamer0.10-plugins-bad_0.10.13-1_amd64.deb
 ff5da764e3de88f19467c448db71c763a4c40dc6 43504 
gstreamer0.10-sdl_0.10.13-1_amd64.deb
 835d7c9ecee4f89c842abdcabf9830a677f59956 3231582 
gstreamer0.10-plugins-bad-dbg_0.10.13-1_amd64.deb
Checksums-Sha256: 
 527890afc4a34a8f483350884bdeae01d7b15f2494858ae02918505298c91327 2632 
gst-plugins-bad0.10_0.10.13-1.dsc
 c2e49f4d08d8516ae29dbe2b08846105b741ed929884370371c8bc786ef8e527 3994753 
gst-plugins-bad0.10_0.10.13.orig.tar.gz
 14978cbcedd8c7542a9b15f6456241de6a7588271419f4701ba88646efdcd54d 14913 
gst-plugins-bad0.10_0.10.13-1.diff.gz
 753eb5427d8cfcbe592b536b54206b1b503d8da684eddd71976d7c9bd3ef4ac4 183024 
gstreamer0.10-plugins-bad-doc_0.10.13-1_all.deb
 dc9eae308f777a47e6fd460582dc23558824b1051e4ceb8686ab7839f4fe0510 1346158 
gstreamer0.10-plugins-bad_0.10.13-1_amd64.deb
 8e72cec96e442d0d33477205de332db7a5bf68a26279ff828864736786363d43 43504 
gstreamer0.10-sdl_0.10.13-1_amd64.deb
 8a75dbffc6d1e27f93eb902de12459dab5211526d50ef2688872886c50cfc0dd 3231582 
gstreamer0.10-plugins-bad-dbg_0.10.13-1_amd64.deb
Files: 
 d0a443eec474216614b5da95a0851915 2632 libs extra 
gst-plugins-bad0.10_0.10.13-1.dsc
 60cd24efc92cfd2847e7c4074f9fc868 3994753 libs extra 
gst-plugins-bad0.10_0.10.13.orig.tar.gz
 f06a626579562147a17cf381bbd04a93 14913 libs extra 
gst-plugins-bad0.10_0.10.13-1.diff.gz
 936b52c8f338cded2f2cf136e54d8f54 183024 doc extra 
gstreamer0.10-plugins-bad-doc_0.10.13-1_all.deb
 64044e870e4742366ebf729d43bb7d87 1346158 libs extra 
gstreamer0.10-plugins-bad_0.10.13-1_amd64.deb
 8388395af82bd90620c68b6a875d6229 43504 libs extra 
gstreamer0.10-sdl_0.10.13-1_amd64.deb
 93145dbef02f526245f8a4eefa6acd8d 3231582 debug extra 
gstreamer0.10-plugins-bad-dbg_0.10.13-1_amd64.deb

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

iEYEARECAAYFAko6LbYACgkQBsBdh1vkHyHzlQCfXAXqblQyDQ8Aybj/i0pr4Azd
tcUAn1fAxhFwvqDW6znQTXW9JXcfuehS
=Ft1l
-END PGP SIGNATURE-


Accepted:
gst-plugins-bad0.10_0.10.13-1.diff.gz
  to pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.13-1.diff.gz
gst-plugins-bad0.10_0.10.13-1.dsc
  to pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.13-1.dsc
gst-plugins-bad0.10_0.10.13.orig.tar.gz
  to pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.13.orig.tar.gz
gstreamer0.10-plugins-bad-dbg_0.10.13-1_amd64.deb
  to 
pool/main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad-dbg_0.10.13-1_amd64.deb
gstreamer0.10-plugins-bad-doc_0.10.13-1_all.deb
  to 
pool/main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad-doc_0.10.13-1_all.deb
gstreamer0.10-plugins-bad_0.10.13-1_amd64.deb
  to 
pool/main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad_0.10.13-1_amd64.deb
gstreamer0.10-sdl_0.10.13-1_amd64.deb
  to pool/main/g/gst-plugins-bad0.10/gstreamer0.10-sdl_0.10.13-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 r-base 2.9.1~20090618-1 (source i386 all)

2009-06-18 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 07:00:11 -0500
Source: r-base
Binary: r-base r-base-core r-base-dev r-mathlib r-base-html r-base-latex 
r-doc-pdf r-doc-html r-doc-info r-recommended r-base-core-dbg
Architecture: source i386 all
Version: 2.9.1~20090618-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-base - GNU R statistical computation and graphics system
 r-base-core - GNU R core of statistical computation and graphics system
 r-base-core-dbg - GNU R debug symbols for statistical comp. language and 
environmen
 r-base-dev - GNU R installation of auxiliary GNU R packages
 r-base-html - GNU R html docs for statistical computing system functions
 r-base-latex - GNU R LaTeX docs for statistical computing system functions
 r-doc-html - GNU R html manuals for statistical computing system
 r-doc-info - GNU R info manuals statistical computing system
 r-doc-pdf  - GNU R pdf manuals for statistical computing system
 r-mathlib  - GNU R standalone mathematics library
 r-recommended - GNU R collection of recommended packages [metapackage]
Changes: 
 r-base (2.9.1~20090618-1) unstable; urgency=low
 .
   * First beta release of R 2.9.1 which should be released on June 26
 .
   * debian/control: Switched (Build-)Depends: from xpdf-reader to xdg-utils;
 pdf files will now be opened with xdg-open to reflect desktop choices.
 .
   * debian/README.Atlas: Further editing, added test script
 .
   * debian/r-cran.mk: Do not remove src/Makevars.in in clean step as this was
 seen to upset some packages when used by cran2deb for all of CRAN
Checksums-Sha1: 
 7a43ddcbc6e6ce2c51a639cb455784622f91acbe 1795 r-base_2.9.1~20090618-1.dsc
 43a4fc17e210ddfd5eb816d535445c89b0a44167 18619273 
r-base_2.9.1~20090618.orig.tar.gz
 d4bce25843e50897df57f5cb11cb1502ecbdf8b1 67018 r-base_2.9.1~20090618-1.diff.gz
 da6b9468b742163f54330d44dabefa535aceb715 10747926 
r-base-core_2.9.1~20090618-1_i386.deb
 d9c2387cd4e3b4ee1843d1196205e4a52f15767a 523754 
r-mathlib_2.9.1~20090618-1_i386.deb
 c5f307e13b13f4fce08c3ec170d60799cca84a9a 2380998 
r-base-core-dbg_2.9.1~20090618-1_i386.deb
 5b59c65c4468866d3c99e94f7a6192bb8c749c0a 31994 r-base_2.9.1~20090618-1_all.deb
 1f93c7390e1d58f868f7356bf349ff11f90e3563 3490 
r-base-dev_2.9.1~20090618-1_all.deb
 f97e5705be70d0652b5c8d232b5863d811855875 1355404 
r-base-html_2.9.1~20090618-1_all.deb
 00fc106a3482cba9662d97d480cae3de36515e92 1261640 
r-base-latex_2.9.1~20090618-1_all.deb
 9a7ce6701f8af9a2b47f916b81a7d417d4fafab5 6984670 
r-doc-pdf_2.9.1~20090618-1_all.deb
 bcb887e8b63b82fd4c535dcfaea79bc4e15bab9d 642494 
r-doc-html_2.9.1~20090618-1_all.deb
 18fc89a97bb1090ea27d933ef49a6984f60e85ad 553456 
r-doc-info_2.9.1~20090618-1_all.deb
 0b939575f3211523c991078be353d198304eddc9 2670 
r-recommended_2.9.1~20090618-1_all.deb
Checksums-Sha256: 
 dc99134c49d572c7688d9ab8900e2bcfde224c62792ad2de0ac5f1066a8c89dc 1795 
r-base_2.9.1~20090618-1.dsc
 fbba0a2ef50aeb4dde7b007a862ca13255662ac0e061e6b038eeadc08c1db0f2 18619273 
r-base_2.9.1~20090618.orig.tar.gz
 543a172a558b260a97c95fe89cfa3246433fa9f0555930a0111cf024407f5c9a 67018 
r-base_2.9.1~20090618-1.diff.gz
 d0fc54f5dbb7146d66b45537542bf899727ea7d066b20c65db47bd02b5cebe0c 10747926 
r-base-core_2.9.1~20090618-1_i386.deb
 85117b30cf3d14e0c497d8933f3a90cdbb6a15ede75560456045a16be7c093da 523754 
r-mathlib_2.9.1~20090618-1_i386.deb
 0326e52d9b860cd07a09700af0a68f4525cc778f911b79221a2d6f04c41a09f4 2380998 
r-base-core-dbg_2.9.1~20090618-1_i386.deb
 f6fcaf99d6b4e1de81781c23752049e71c3ea07429005f3974d8e1f1a07ae962 31994 
r-base_2.9.1~20090618-1_all.deb
 3d045ab220fdc5617abea7db008de50551eaf3892a936b846e7a47e52813e3d6 3490 
r-base-dev_2.9.1~20090618-1_all.deb
 cdd7d0170d72369ac562e561d3d7aa6d7a3a05a1c6c0512df4f9df55c6e417e7 1355404 
r-base-html_2.9.1~20090618-1_all.deb
 a2c75e2fcf95c9e61efac48d8066624afe646ec1d418b7b37493167cc0c365ea 1261640 
r-base-latex_2.9.1~20090618-1_all.deb
 b4f3e0e1b9ea75bb8e2ac546b13d7c8c05ad8683d59a9391da03527ad970f774 6984670 
r-doc-pdf_2.9.1~20090618-1_all.deb
 c5d28a9cc3407abc6c337b83f5214abe62dc1e0331de986c27b239ba2df96d7b 642494 
r-doc-html_2.9.1~20090618-1_all.deb
 9e3003bf256b6c67992a611e7a7f07d037cf162910085ea6d60f5b79a7420b9d 553456 
r-doc-info_2.9.1~20090618-1_all.deb
 cc728e8e1b88028d5c4a77f6b19c60076d6960ae08b2fe23b2e23f2dff95c925 2670 
r-recommended_2.9.1~20090618-1_all.deb
Files: 
 f2fcf4f456c403e28e9710f2f5b646a6 1795 gnu-r optional 
r-base_2.9.1~20090618-1.dsc
 b9db4e9f2f838c528d973c54c58ccdf9 18619273 gnu-r optional 
r-base_2.9.1~20090618.orig.tar.gz
 a53adac6e3b6f02e208aa2f0bc714076 67018 gnu-r optional 
r-base_2.9.1~20090618-1.diff.gz
 770334d7a9001d582fed8af5a9d34414 10747926 gnu-r optional 
r-base-core_2.9.1~20090618-1_i386.deb
 d76b7cfb8f5fbf033ea9966a1c34ff71 523754 gnu-r optional 
r-mathlib_2.9.1~20090618-1_i386.deb
 513e337f4059bbbc07bba15cd01d3fc7 2380998 debug extra 
r-base-core

Accepted subvertpy 0.6.8-1 (source i386)

2009-06-18 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 13:56:09 +0200
Source: subvertpy
Binary: python-subvertpy
Architecture: source i386
Version: 0.6.8-1
Distribution: unstable
Urgency: low
Maintainer: Jelmer Vernooij jel...@debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 python-subvertpy - Alternative Python bindings for Subversion
Changes: 
 subvertpy (0.6.8-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 a05e9586f7a463b2227cc07cfdcd4bd4d2c20bbe 1309 subvertpy_0.6.8-1.dsc
 f867df7b54ae32a13d18a7de4c0ccad3ebe6c171 73574 subvertpy_0.6.8.orig.tar.gz
 456042e5fc67415616b99c30e7fa11965da5d2a7 1458 subvertpy_0.6.8-1.diff.gz
 c02037aa2a448335b9c57d28f04366f7f21d78e8 182998 
python-subvertpy_0.6.8-1_i386.deb
Checksums-Sha256: 
 45e0b317591cd26eeffd37dcf7004c6e89018cfaaa7d0021e31a70408ff6703f 1309 
subvertpy_0.6.8-1.dsc
 6b6597f05df8afd9ff045157cda277bf608ce2109025dd970261e119f8418607 73574 
subvertpy_0.6.8.orig.tar.gz
 87c4323f0fa3b0260f78aaf3b8d09ae794c47b34fa18821e1aa9017a0f06df3a 1458 
subvertpy_0.6.8-1.diff.gz
 f2f05ae369364f500bc58d85bc263f838b12c45d05e049970b7118de79367339 182998 
python-subvertpy_0.6.8-1_i386.deb
Files: 
 98b54f105459346a7b44617a7a9355f6 1309 python optional subvertpy_0.6.8-1.dsc
 7075b971301fa8efa5fae4021fa9b087 73574 python optional 
subvertpy_0.6.8.orig.tar.gz
 055be0f9934a255350b1451cd39ad6ac 1458 python optional subvertpy_0.6.8-1.diff.gz
 aed4da178c222061e8736c63128d52c4 182998 python optional 
python-subvertpy_0.6.8-1_i386.deb

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

iJwEAQECAAYFAko6Mw0ACgkQDLQl4QYPZuWx1AQAmZ9Nx8eCwrvwLfXWXJpB0YcP
uM3AjaFvG0eMulXN6r9VbDySZI+6M1uopweboqFPmLIN9LASg8Q7j5zSEcqbwY1L
qqwJCyhP9WbC575xiQ4G35qbfS9+fFjACTt7u5mIsjJpI2iAT28SY9AKODn0mEKm
NzEid5Eeo7iaZ7VM46Q=
=R1JX
-END PGP SIGNATURE-


Accepted:
python-subvertpy_0.6.8-1_i386.deb
  to pool/main/s/subvertpy/python-subvertpy_0.6.8-1_i386.deb
subvertpy_0.6.8-1.diff.gz
  to pool/main/s/subvertpy/subvertpy_0.6.8-1.diff.gz
subvertpy_0.6.8-1.dsc
  to pool/main/s/subvertpy/subvertpy_0.6.8-1.dsc
subvertpy_0.6.8.orig.tar.gz
  to pool/main/s/subvertpy/subvertpy_0.6.8.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 bzrtools 1.16.0-1 (source all)

2009-06-18 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 12:55:45 +0200
Source: bzrtools
Binary: bzrtools
Architecture: source all
Version: 1.16.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzrtools   - Collection of tools for bzr
Changes: 
 bzrtools (1.16.0-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 eccfbe140e232aa7fdd6ee35f8d91e6602af95d6 1479 bzrtools_1.16.0-1.dsc
 4c3299bd7bb8a934cf327ba1d8deeb17106d1a88 70950 bzrtools_1.16.0.orig.tar.gz
 72aefeac2a8759ab4dd293fd6c3aadfdb109e0fc 5423 bzrtools_1.16.0-1.diff.gz
 6a3b0f9232acf1dbcc899207dbdaff7f1e7ce039 63076 bzrtools_1.16.0-1_all.deb
Checksums-Sha256: 
 3f4f831ce62ec5fc6fc00134c299f6e2eb5660e0a17746d716c97f5c420f9bbf 1479 
bzrtools_1.16.0-1.dsc
 8f1b0f1a0cf3e3b016f28b2fbf8c311017c46da1fb5b574f1c3837a2132bca51 70950 
bzrtools_1.16.0.orig.tar.gz
 b1e65ec864f521c80766280ec8fa4ce1f98f2f1eacbde0f4a987661fee972bf7 5423 
bzrtools_1.16.0-1.diff.gz
 d2314a895a7dd23be956abcd648607da38ab46136f04da2dd4ebd953cea60cdf 63076 
bzrtools_1.16.0-1_all.deb
Files: 
 9e0ff6a6b99580813c3cf0b99272a411 1479 vcs optional bzrtools_1.16.0-1.dsc
 9d0b7ad49570631ff5847cf7a74d2af7 70950 vcs optional bzrtools_1.16.0.orig.tar.gz
 e61718061c629b81d00c3c5b13d771c5 5423 vcs optional bzrtools_1.16.0-1.diff.gz
 e7df507a78c63ba853e77374269aed3d 63076 vcs optional bzrtools_1.16.0-1_all.deb

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

iJwEAQECAAYFAko6N/oACgkQDLQl4QYPZuUgFgQAlXVv7GUUOECO4NqeBXbH+1i6
H+mw0cduMkUv815xPgsA/hh90u9Wbvtds6ZiFSqbo9e9JrxKyEt4JwQpk4Wpf2M+
pD2Xiw86bhEBZvnieny63U5tePAaR3XSsuFn4rVLpxItJ7QO09UuU6c3F4g4faYP
1U/BCS/gDhcaXg36scA=
=9kqU
-END PGP SIGNATURE-


Accepted:
bzrtools_1.16.0-1.diff.gz
  to pool/main/b/bzrtools/bzrtools_1.16.0-1.diff.gz
bzrtools_1.16.0-1.dsc
  to pool/main/b/bzrtools/bzrtools_1.16.0-1.dsc
bzrtools_1.16.0-1_all.deb
  to pool/main/b/bzrtools/bzrtools_1.16.0-1_all.deb
bzrtools_1.16.0.orig.tar.gz
  to pool/main/b/bzrtools/bzrtools_1.16.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 bzr 1.16-1 (source i386)

2009-06-18 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 13:08:56 +0200
Source: bzr
Binary: bzr
Architecture: source i386
Version: 1.16-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr- easy to use distributed version control system
Changes: 
 bzr (1.16-1) unstable; urgency=low
 .
   * New upstream release.
   * Add python-pyrex to build-deps to ensure C extensions are always build.
Checksums-Sha1: 
 7dd4f995616ac7c96c510791b0365594025eda5b 1499 bzr_1.16-1.dsc
 ab4f72726ea743a539a62b1ee12d75f191ce 5075879 bzr_1.16.orig.tar.gz
 8eea2df8f5540320cb2cc09a430c7e3f196025ac 11804 bzr_1.16-1.diff.gz
 97a86cc7ab30258b2859babbe7da45e74769434a 5600648 bzr_1.16-1_i386.deb
Checksums-Sha256: 
 67152aa97e2952b9e68bf1557df29e58d10a33b27acd77a2cabc9c38fd8f162f 1499 
bzr_1.16-1.dsc
 31a583bb5e58403886b9a54b426ffb6d8e11702c2e527ebce5b6766919c7aebd 5075879 
bzr_1.16.orig.tar.gz
 787acab04e66fb58323fadfd9b40f22e4c3c71ef8ef771ac7ae2ed9629c1044c 11804 
bzr_1.16-1.diff.gz
 ecde5e001cecd188b1f50c3916dd54b45d118daf75a63a7d4e0b6eaa34375d8e 5600648 
bzr_1.16-1_i386.deb
Files: 
 a2d0d1f7d0899256be26eb4c46cbbf82 1499 vcs optional bzr_1.16-1.dsc
 e18b38e2c4e33203c8f6c9b4029cea7a 5075879 vcs optional bzr_1.16.orig.tar.gz
 209d520ac6e2e95683adb42f98129f7b 11804 vcs optional bzr_1.16-1.diff.gz
 dcf6161c8abae09d3438e8708e05ad26 5600648 vcs optional bzr_1.16-1_i386.deb

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

iJwEAQECAAYFAko6ObUACgkQDLQl4QYPZuU4bgQAiy6W7mM/THiJWSIZ2389f7nJ
OevE3HBViSIffimS7Dw26MqS7wQY3nk9jrrEurwSovkllWBfaNeNx4DNTMTzGQhD
eNqVA2j5dmQNNYwTMlxabxeSG5WdxbCCWoF16HEpwWRhqdNbc1O+zhp9kg1D4jM1
qOtKRoNyEmlxhWvxxPk=
=kDGS
-END PGP SIGNATURE-


Accepted:
bzr_1.16-1.diff.gz
  to pool/main/b/bzr/bzr_1.16-1.diff.gz
bzr_1.16-1.dsc
  to pool/main/b/bzr/bzr_1.16-1.dsc
bzr_1.16-1_i386.deb
  to pool/main/b/bzr/bzr_1.16-1_i386.deb
bzr_1.16.orig.tar.gz
  to pool/main/b/bzr/bzr_1.16.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 partman-base 131 (source amd64)

2009-06-18 Thread Otavio Salvador
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 10:18:28 -0300
Source: partman-base
Binary: partman-base partman-utils
Architecture: source amd64
Version: 131
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Otavio Salvador ota...@debian.org
Description: 
 partman-base - Partition the storage devices (partman) (udeb)
 partman-utils - Utilities related to partitioning (udeb)
Changes: 
 partman-base (131) unstable; urgency=low
 .
   * Adapt parted_server code to handle new GNU Parted swap filesystem
 handling.
Checksums-Sha1: 
 4f9b67ccb8a28f62b464b676f7b8395d24005902 995 partman-base_131.dsc
 479c5115cd05afc992062daf152819d1c0858282 168522 partman-base_131.tar.gz
 32ec0786d8fcb8dca08ab1dfc0466bbeb2fa9984 138792 partman-base_131_amd64.udeb
 aaf582964ecf1a65d4188471f71aeee6bf9b1215 3782 partman-utils_131_amd64.udeb
Checksums-Sha256: 
 4de8f70d8cdaafdee0b05a9fadf432de028e1fec164e76fd7cdc6f59650f1e17 995 
partman-base_131.dsc
 71fe398380889179a14b993b165c32cc21a2d964ae8fba967594d06eff570157 168522 
partman-base_131.tar.gz
 a1657efd1feafdf2d16fb9573bf40a26d08af74150859899a66123823a6884fb 138792 
partman-base_131_amd64.udeb
 d61db78078271df7fd3257d1edc1e220cfb74471af64dea89e2515a7f56c04a8 3782 
partman-utils_131_amd64.udeb
Files: 
 0cd136cc77b6124dede719cd64cafa3d 995 debian-installer standard 
partman-base_131.dsc
 4892d6287433f9ec735a4a0343efcd0a 168522 debian-installer standard 
partman-base_131.tar.gz
 ede7183bcfd1fda9d40f0829973a1baa 138792 debian-installer standard 
partman-base_131_amd64.udeb
 bd920b9de3f5d14ab1ed1c33c3a5bd33 3782 debian-installer extra 
partman-utils_131_amd64.udeb
Package-Type: udeb

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

iEYEARECAAYFAko6PvoACgkQLqiZQEml+FUZ5ACfSGcfz1nNSO64Caa75NyVO16K
sQIAoJNumafDZbDZl+CAu8eaurSigAnI
=9is3
-END PGP SIGNATURE-


Accepted:
partman-base_131.dsc
  to pool/main/p/partman-base/partman-base_131.dsc
partman-base_131.tar.gz
  to pool/main/p/partman-base/partman-base_131.tar.gz
partman-base_131_amd64.udeb
  to pool/main/p/partman-base/partman-base_131_amd64.udeb
partman-utils_131_amd64.udeb
  to pool/main/p/partman-base/partman-utils_131_amd64.udeb


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



Accepted bzr-git 0.4.0-1 (source all)

2009-06-18 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 15:45:17 +0200
Source: bzr-git
Binary: bzr-git
Architecture: source all
Version: 0.4.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-git- Bazaar plugin providing Git integration
Changes: 
 bzr-git (0.4.0-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 9a2377d11d9131443f47aa8b8c7f68a20799c9e8 1406 bzr-git_0.4.0-1.dsc
 1be7c07335c5af91ae4a15f773b1c4a8a140ce48 52186 bzr-git_0.4.0.orig.tar.gz
 8b46f38ed3f6fb9abbb0562d968d3c63923ca504 1804 bzr-git_0.4.0-1.diff.gz
 8230463626240df92e0712dfb2bebb85232a361c 48494 bzr-git_0.4.0-1_all.deb
Checksums-Sha256: 
 02eb30091c2f3c95c84d5cbba01cd57034fdbb6f91030410f7a6a32ba96a4080 1406 
bzr-git_0.4.0-1.dsc
 1c33e1a502230084a72287bfadac325c1a5644b7c67c6c1e2e21ff9f4d4fcb16 52186 
bzr-git_0.4.0.orig.tar.gz
 42fe0b3ebedec319bd647bcdf3fca7fdb8fc5bda9490693425c3545591ac5b23 1804 
bzr-git_0.4.0-1.diff.gz
 51b43306c8e7eaeaf43d0861c8576aad08edab3fff61600f175bec9743ff5611 48494 
bzr-git_0.4.0-1_all.deb
Files: 
 fbc86cda78d8c48c7c58f0107beea6bc 1406 vcs optional bzr-git_0.4.0-1.dsc
 2ae5ac84c448c4a990d5cbc23d82a89f 52186 vcs optional bzr-git_0.4.0.orig.tar.gz
 ebe4fb797d6677bc82e462ae96ab4fc0 1804 vcs optional bzr-git_0.4.0-1.diff.gz
 0690c7a31d50a6ec17c5e6fd20b73483 48494 vcs optional bzr-git_0.4.0-1_all.deb

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

iJwEAQECAAYFAko6RZUACgkQDLQl4QYPZuWlHwP+P6cFq2+HGfKpwB3hsuJDraNy
/N1I9sInbfBJkN667j4Z7njHMR3J2Ert2IQYJuSw4/HuzsF26PvO1LOzIkXNpROz
MndD0+R2RBFcZDOlQPgK1+UP647xZLRDWbk3jw2XJjqY3L8bmPVvQD3i9zdWE5l2
+NoOegssdTdjZvU7swM=
=fjeq
-END PGP SIGNATURE-


Accepted:
bzr-git_0.4.0-1.diff.gz
  to pool/main/b/bzr-git/bzr-git_0.4.0-1.diff.gz
bzr-git_0.4.0-1.dsc
  to pool/main/b/bzr-git/bzr-git_0.4.0-1.dsc
bzr-git_0.4.0-1_all.deb
  to pool/main/b/bzr-git/bzr-git_0.4.0-1_all.deb
bzr-git_0.4.0.orig.tar.gz
  to pool/main/b/bzr-git/bzr-git_0.4.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 fakeroot 1.12.4 (source amd64)

2009-06-18 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 09:21:10 -0400
Source: fakeroot
Binary: fakeroot
Architecture: source amd64
Version: 1.12.4
Distribution: unstable
Urgency: medium
Maintainer: Clint Adams sch...@debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 fakeroot   - Gives a fake root environment
Closes: 533456
Changes: 
 fakeroot (1.12.4) unstable; urgency=medium
 .
   * libfakeroot.c: avoid crashing on fts_read() error conditions.
 closes: #533456.
Checksums-Sha1: 
 3b40a78b8e8b421022048a744b9d45ab90399478 1003 fakeroot_1.12.4.dsc
 b729d690bce93ebeb1f436d3ee7cf16169114243 398481 fakeroot_1.12.4.tar.gz
 d572c024f9c42a51b5353fb0c3d6d0a232c6427c 116620 fakeroot_1.12.4_amd64.deb
Checksums-Sha256: 
 bbac14597ab1f3f40a449c93caa5c248d23d7de6c83979dd4d5d83e73d6d210a 1003 
fakeroot_1.12.4.dsc
 dbcab1f495b857e67feff882e018ca59958b8d189ff1f76684d28e35463ec29d 398481 
fakeroot_1.12.4.tar.gz
 11cf56539109fa51d7d2ee0754c6dcf9430a7940e2568476b7725301f94484eb 116620 
fakeroot_1.12.4_amd64.deb
Files: 
 67ad42d6baa547d616ab70b3d06968c2 1003 utils optional fakeroot_1.12.4.dsc
 aaefede2405a40c87438e7e833d69b70 398481 utils optional fakeroot_1.12.4.tar.gz
 6fb32204aa835aa2b40dd1c67c07e14d 116620 utils optional 
fakeroot_1.12.4_amd64.deb

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

iEYEARECAAYFAko6QTUACgkQ5m0u66uWM3AgTACgrRjGeWTsi5n1HUH/m8ShPi3C
QusAoNw41sfy+N8qxKhCE3K4T9ZNdQ+Y
=NFjc
-END PGP SIGNATURE-


Accepted:
fakeroot_1.12.4.dsc
  to pool/main/f/fakeroot/fakeroot_1.12.4.dsc
fakeroot_1.12.4.tar.gz
  to pool/main/f/fakeroot/fakeroot_1.12.4.tar.gz
fakeroot_1.12.4_amd64.deb
  to pool/main/f/fakeroot/fakeroot_1.12.4_amd64.deb


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



Accepted partman-partitioning 67 (source i386)

2009-06-18 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 14:47:44 +0100
Source: partman-partitioning
Binary: partman-partitioning
Architecture: source i386
Version: 67
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 partman-partitioning - Partitioning operations for partman (udeb)
Changes: 
 partman-partitioning (67) unstable; urgency=low
 .
   * Remove dependency on partman-base; main-menu does not support circular
 dependencies, and the versioned dependency is not all that critical
 (thanks, Per Andersson).
Checksums-Sha1: 
 c462e7806490f972e945c9f2763bf6817c905cf6 956 partman-partitioning_67.dsc
 ee76944568d2f2317ea71d60053b3c5f9cbfa551 168420 partman-partitioning_67.tar.gz
 6fe8fe2488197ad6e2a963cf822ad9c97bf19d8e 167870 
partman-partitioning_67_i386.udeb
Checksums-Sha256: 
 e19cb6fa0bef7f33f8293ab8d627c0384b459be450e3765a13580b54a412aacc 956 
partman-partitioning_67.dsc
 bf0b62b03ce37edc9faacb6510c52e29bb0dcad136403225288bd3975b991de0 168420 
partman-partitioning_67.tar.gz
 c3d6ac26612834f876a4bbb3d5df7d0029942245a3f9fa18482ec23478c42ef1 167870 
partman-partitioning_67_i386.udeb
Files: 
 62fbe895740a9a378c911b07d4b7581c 956 debian-installer optional 
partman-partitioning_67.dsc
 6bbc97036a8a1b1ea108f24ad4c5ce5a 168420 debian-installer optional 
partman-partitioning_67.tar.gz
 d47fddc80487b704ba7540fd3e99cc7c 167870 debian-installer optional 
partman-partitioning_67_i386.udeb
Package-Type: udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Colin Watson cjwat...@debian.org -- Debian developer

iD8DBQFKOkX69t0zAhD6TNERAmRXAJ9pm+3asgLKjmLbUwj5q5G8arDa8QCfYA+q
YUS1CiY8PUsf46GmpNe3/Mo=
=VsGh
-END PGP SIGNATURE-


Accepted:
partman-partitioning_67.dsc
  to pool/main/p/partman-partitioning/partman-partitioning_67.dsc
partman-partitioning_67.tar.gz
  to pool/main/p/partman-partitioning/partman-partitioning_67.tar.gz
partman-partitioning_67_i386.udeb
  to pool/main/p/partman-partitioning/partman-partitioning_67_i386.udeb


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



Accepted haskell-haskeline 0.6.1.6-1 (source all amd64)

2009-06-18 Thread Marco Túlio Gontijo e Silva
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Jun 2009 10:18:27 -0300
Source: haskell-haskeline
Binary: libghc6-haskeline-dev libghc6-haskeline-prof libghc6-haskeline-doc
Architecture: source all amd64
Version: 0.6.1.6-1
Distribution: unstable
Urgency: low
Maintainer: Marco Túlio Gontijo e Silva mar...@holoscopio.com
Changed-By: Marco Túlio Gontijo e Silva mar...@holoscopio.com
Description: 
 libghc6-haskeline-dev - A command-line interface for user input, written in 
Haskell
 libghc6-haskeline-doc - A command-line interface for user input, written in 
Haskell; docu
 libghc6-haskeline-prof - A command-line interface for user input; profiling 
libraries
Changes: 
 haskell-haskeline (0.6.1.6-1) unstable; urgency=low
 .
   * New upstream version.
   * Remove extensible-exceptions patch, since ghc6 now ships it.
   * debian/control:
 - Use versioned Build-Depends.
 - Use unversioned Recommends for ghc6-doc in libghc6-terminfo-doc.
 - Use haskell Section.
 - Use new Standards-Version: 3.8.1.
 - Use DM-Upload-Allowed: yes.
 - Use haskell:Recommends and haskell:Suggests.
 - Don't use shlibs:Depends for -prof.
 - Split dependencies in more than one line.
Checksums-Sha1: 
 87beedf35d962c1aff2be4528ee2ec1be982e3de 1986 haskell-haskeline_0.6.1.6-1.dsc
 5d0934c099d7aa40fa1bb5854d5c4c268a6ac0a4 41906 
haskell-haskeline_0.6.1.6.orig.tar.gz
 c7eb24e255338f395fbc34d6e0b6f1448c46d319 4113 
haskell-haskeline_0.6.1.6-1.diff.gz
 31677917f54814ed0446bd5aa9a0083fe3b8b7c4 95006 
libghc6-haskeline-doc_0.6.1.6-1_all.deb
 9147c5c5b6e1df0e66e48fdb6b580c0c7250d3cc 642766 
libghc6-haskeline-dev_0.6.1.6-1_amd64.deb
 2853777ee7ded0f286e68c5f679e617fb3f295fb 743128 
libghc6-haskeline-prof_0.6.1.6-1_amd64.deb
Checksums-Sha256: 
 d2cc33012178f30aa81e001d1bdb7db253eef35fa38fe68b05dc50dd58879a74 1986 
haskell-haskeline_0.6.1.6-1.dsc
 d3206b73937eeea638f3f1035969161af9182396699af8790a5455a8b5bbcde1 41906 
haskell-haskeline_0.6.1.6.orig.tar.gz
 3785e6ed9ca25bbcd13c4ff12446321e54580d05d4ad76b39cdb975c5e6475a6 4113 
haskell-haskeline_0.6.1.6-1.diff.gz
 0dadf1bf633ecc58e4a814d5cb3d37734a68cdcd46650a2f6c5b92ad705f01fd 95006 
libghc6-haskeline-doc_0.6.1.6-1_all.deb
 9a8113fd4a458ad04ffab6f40b15bae2179621efed86f78111951d59279cff13 642766 
libghc6-haskeline-dev_0.6.1.6-1_amd64.deb
 1ea2549ca7255394a7ca22677c41870bf664e6cfb6ce3b3a3b042fb610fd7fe5 743128 
libghc6-haskeline-prof_0.6.1.6-1_amd64.deb
Files: 
 950b182e7b2fd155a83c6879be0f8baf 1986 haskell optional 
haskell-haskeline_0.6.1.6-1.dsc
 9147ccdf85e7532066e5edfa580a2916 41906 haskell optional 
haskell-haskeline_0.6.1.6.orig.tar.gz
 303e530a93c271338a53f5372a454eab 4113 haskell optional 
haskell-haskeline_0.6.1.6-1.diff.gz
 a93430704f76a8e35a6d86682fe56bd1 95006 doc optional 
libghc6-haskeline-doc_0.6.1.6-1_all.deb
 4aafb4cfb651f21d3c75ffe87baea2f0 642766 haskell optional 
libghc6-haskeline-dev_0.6.1.6-1_amd64.deb
 cfe933fca7010c84cb21559d0ceef154 743128 haskell optional 
libghc6-haskeline-prof_0.6.1.6-1_amd64.deb

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

iEYEARECAAYFAko6QLQACgkQ9ijrk0dDIGytZQCfRArRq83T/QqoKL7b697jqpWA
L8cAoMEORUCv05S75Z8Ln1QfNu3dugrx
=icw0
-END PGP SIGNATURE-


Accepted:
haskell-haskeline_0.6.1.6-1.diff.gz
  to pool/main/h/haskell-haskeline/haskell-haskeline_0.6.1.6-1.diff.gz
haskell-haskeline_0.6.1.6-1.dsc
  to pool/main/h/haskell-haskeline/haskell-haskeline_0.6.1.6-1.dsc
haskell-haskeline_0.6.1.6.orig.tar.gz
  to pool/main/h/haskell-haskeline/haskell-haskeline_0.6.1.6.orig.tar.gz
libghc6-haskeline-dev_0.6.1.6-1_amd64.deb
  to pool/main/h/haskell-haskeline/libghc6-haskeline-dev_0.6.1.6-1_amd64.deb
libghc6-haskeline-doc_0.6.1.6-1_all.deb
  to pool/main/h/haskell-haskeline/libghc6-haskeline-doc_0.6.1.6-1_all.deb
libghc6-haskeline-prof_0.6.1.6-1_amd64.deb
  to pool/main/h/haskell-haskeline/libghc6-haskeline-prof_0.6.1.6-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 bzr-svn 0.6.2-1 (source all)

2009-06-18 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 03 Jun 2009 16:30:56 +0200
Source: bzr-svn
Binary: bzr-svn
Architecture: source all
Version: 0.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-svn- Bazaar plugin providing Subversion integration
Changes: 
 bzr-svn (0.6.2-1) unstable; urgency=low
 .
   * New upstream snapshot.
   * Allow python-sqlite to not be installed if python-tdb is installed.
Checksums-Sha1: 
 f8e9845d5458d661b9256cdcef85b32856dea1ad 1458 bzr-svn_0.6.2-1.dsc
 5178b874db2f57c91b09b09b4917d0e4a1390227 247167 bzr-svn_0.6.2.orig.tar.gz
 8a6e5366bd6e8f9c6d9e0a7bba4c89e8958610e5 4498 bzr-svn_0.6.2-1.diff.gz
 145c3ae13e1d27ea75df1b63e24be9daab89f069 239810 bzr-svn_0.6.2-1_all.deb
Checksums-Sha256: 
 aa72d3165acb8e8e80eba5a9ff834361cf1486f1c0b5a2147cf2e8d770680993 1458 
bzr-svn_0.6.2-1.dsc
 e64afe2f7eb60a4dacb9bfde4618821eea9b0d20546ff504024a975701046bbd 247167 
bzr-svn_0.6.2.orig.tar.gz
 11a97727ea0ff1ae9200e7d31b83416ee034e34c87a48ca44613a4a03d5f8fd1 4498 
bzr-svn_0.6.2-1.diff.gz
 72458241e63eb1eaa80458582decf4c2af19ead3b792af4dc207ea1d8cd50b84 239810 
bzr-svn_0.6.2-1_all.deb
Files: 
 3614aeec6b4e5cda2c170f425dafeec9 1458 vcs optional bzr-svn_0.6.2-1.dsc
 a4faf7c86cec5cdd8c3b1ab2f828f033 247167 vcs optional bzr-svn_0.6.2.orig.tar.gz
 d38559ae48ab9c8c22627b5f342c717c 4498 vcs optional bzr-svn_0.6.2-1.diff.gz
 62ff733135ff3647eb756f5c95a6117b 239810 vcs optional bzr-svn_0.6.2-1_all.deb

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

iJwEAQECAAYFAko6Q1IACgkQDLQl4QYPZuXWCAP/dfSwodnNiwcQZik12WUIKgTS
4CF+JlmTNjE0ucD5tLGDHMS3I6SRsv9MJSkNLI/X9cnfBYOIkJSaVE96508GEUD3
1HsSwXDdRoWMsjmhAm6/bKZOeayNlJXtdxLyPwEFAFs1R02reFzL7fP5pjpiZfU2
grpTAiJnlTawuAtPLmA=
=ZerD
-END PGP SIGNATURE-


Accepted:
bzr-svn_0.6.2-1.diff.gz
  to pool/main/b/bzr-svn/bzr-svn_0.6.2-1.diff.gz
bzr-svn_0.6.2-1.dsc
  to pool/main/b/bzr-svn/bzr-svn_0.6.2-1.dsc
bzr-svn_0.6.2-1_all.deb
  to pool/main/b/bzr-svn/bzr-svn_0.6.2-1_all.deb
bzr-svn_0.6.2.orig.tar.gz
  to pool/main/b/bzr-svn/bzr-svn_0.6.2.orig.tar.gz


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



Accepted xtables-addons 1.17-1 (source all amd64)

2009-06-18 Thread Pierre Chifflier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 16:08:45 +0200
Source: xtables-addons
Binary: xtables-addons-source xtables-addons-common
Architecture: source all amd64
Version: 1.17-1
Distribution: unstable
Urgency: low
Maintainer: Pierre Chifflier pol...@debian.org
Changed-By: Pierre Chifflier pol...@debian.org
Description: 
 xtables-addons-common - Userspace components of xtables-addons
 xtables-addons-source - Source for the xtables-addons driver
Changes: 
 xtables-addons (1.17-1) unstable; urgency=low
 .
   * New Upstream Version
Checksums-Sha1: 
 db3d815b7644e90728101fea9b05819474e07894 1148 xtables-addons_1.17-1.dsc
 baf9b0aee893fbd883bcdfe72a33f461470ab943 418080 xtables-addons_1.17.orig.tar.gz
 41ef02cd42b959f2ccb4573b4125f62b5c871685 5974 xtables-addons_1.17-1.diff.gz
 44008e863e026dc8d4a875cc31ff2f058995e87b 472616 
xtables-addons-source_1.17-1_all.deb
 87894040cca39ec2155fd81ef41547ee050c77c9 92260 
xtables-addons-common_1.17-1_amd64.deb
Checksums-Sha256: 
 f6faa0fe04a9b44a60aaf1253a8acb900c1c93d6386d2cfd404531b1fbadcd2b 1148 
xtables-addons_1.17-1.dsc
 626efff47f9e72a507b2cdbd7434ec4101b6d15301c95ff550c9ba30be25826a 418080 
xtables-addons_1.17.orig.tar.gz
 4ede6ed827f1a2f7114593c7e95d60aea9a892838d41a85ba10e49cc842e605e 5974 
xtables-addons_1.17-1.diff.gz
 e488cccb7b821df62be2867c2a328a2a5eb3cab8966d083fe677a2562b7209f1 472616 
xtables-addons-source_1.17-1_all.deb
 2ed4a188bb74a539ac111a02de34f5a9d54d23af1d70b4b1e12ebfa79100556c 92260 
xtables-addons-common_1.17-1_amd64.deb
Files: 
 10ad67c2cabd331ab0a977f8f7201575 1148 admin extra xtables-addons_1.17-1.dsc
 8541a4e79c03631b575b691e5524543f 418080 admin extra 
xtables-addons_1.17.orig.tar.gz
 ca4543177b52b337896e240dbe7875ec 5974 admin extra xtables-addons_1.17-1.diff.gz
 b229317dff45659c637b12d59bc426ed 472616 admin extra 
xtables-addons-source_1.17-1_all.deb
 f41ad136e634980030932f5ab0a063b2 92260 admin extra 
xtables-addons-common_1.17-1_amd64.deb

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

iD8DBQFKOksStwVrWo1fQMsRAm1JAKDSGW3UBmXfNGtOGl7c8HgcQSApeACfSpn/
KOfePjFJBsAzh/E5FcSg4FY=
=eBPk
-END PGP SIGNATURE-


Accepted:
xtables-addons-common_1.17-1_amd64.deb
  to pool/main/x/xtables-addons/xtables-addons-common_1.17-1_amd64.deb
xtables-addons-source_1.17-1_all.deb
  to pool/main/x/xtables-addons/xtables-addons-source_1.17-1_all.deb
xtables-addons_1.17-1.diff.gz
  to pool/main/x/xtables-addons/xtables-addons_1.17-1.diff.gz
xtables-addons_1.17-1.dsc
  to pool/main/x/xtables-addons/xtables-addons_1.17-1.dsc
xtables-addons_1.17.orig.tar.gz
  to pool/main/x/xtables-addons/xtables-addons_1.17.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.3.1-1 (source amd64)

2009-06-18 Thread Julien Danjou
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 16:25:05 +0200
Source: awesome
Binary: awesome
Architecture: source amd64
Version: 3.3.1-1
Distribution: unstable
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
Closes: 527872
Changes: 
 awesome (3.3.1-1) unstable; urgency=low
 .
   * New upstream release
 + Do not exit when D-Bus connection is closed (Closes: #527872)
Checksums-Sha1: 
 872e2378d24070c6bbce2b489c69b89e10d66fb5 1602 awesome_3.3.1-1.dsc
 ad187a6a93a6e822afed14f3c60fe08471a3d980 283852 awesome_3.3.1.orig.tar.gz
 7c15ab193b041bb6fc6360adc92d4a866f088a35 5532 awesome_3.3.1-1.diff.gz
 7065daa8a61cbdfacb6851e16fbd3a521ea2a387 350216 awesome_3.3.1-1_amd64.deb
Checksums-Sha256: 
 cffb7d9a4c360cc38b733e10bc5e6ce0418674fcfa3534f6363867fab617aabe 1602 
awesome_3.3.1-1.dsc
 d4dc674fd0b5dd54f3a1d1cb4d726d389c5ef72226bb88f5ae5fca7f59524826 283852 
awesome_3.3.1.orig.tar.gz
 35228554fe094bdd9197082100c9151edede673c0f54fcb7b6ec2a92747b0364 5532 
awesome_3.3.1-1.diff.gz
 24ddaacc145202b36d84e7dcc7e48ddf574f7d35141bcaad1f7a23fc9508d4a4 350216 
awesome_3.3.1-1_amd64.deb
Files: 
 70209750869a01a4d317d8f49e3fb009 1602 x11 optional awesome_3.3.1-1.dsc
 a873af7831f7f63d9d655b227b5ea76f 283852 x11 optional awesome_3.3.1.orig.tar.gz
 f1c881a4fb60ea9385b19d7e8ebc619b 5532 x11 optional awesome_3.3.1-1.diff.gz
 d23d39b87cc2cf3f670186a51ab23e60 350216 x11 optional awesome_3.3.1-1_amd64.deb

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

iEYEARECAAYFAko6UIsACgkQpGK1HsL+5c30iACfXcR3YQjNaqdefkWIBFRQfqVB
aoEAnjpjR++Xce9Cdw+t7epOoBjD/VW4
=lBuh
-END PGP SIGNATURE-


Accepted:
awesome_3.3.1-1.diff.gz
  to pool/main/a/awesome/awesome_3.3.1-1.diff.gz
awesome_3.3.1-1.dsc
  to pool/main/a/awesome/awesome_3.3.1-1.dsc
awesome_3.3.1-1_amd64.deb
  to pool/main/a/awesome/awesome_3.3.1-1_amd64.deb
awesome_3.3.1.orig.tar.gz
  to pool/main/a/awesome/awesome_3.3.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 sks 1.1.0-5 (source i386)

2009-06-18 Thread Christoph Martin
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Thu, 18 Jun 2009 16:39:09 +0200
Source: sks
Binary: sks
Architecture: source i386
Version: 1.1.0-5
Distribution: unstable
Urgency: low
Maintainer: Peter Palfrader wea...@debian.org
Changed-By: Christoph Martin christoph.mar...@uni-mainz.de
Description: 
 sks- Synchronizing OpenPGP Key Server
Closes: 493335
Changes: 
 sks (1.1.0-5) unstable; urgency=low
 .
   * Check spool directories for existance (Thanks to Filippo Giunchedi
 fili...@debian.org) (Closes: #493335)
   * make PIDDIR on startup to workaround /var/run on a tempfs
Checksums-Sha1: 
 2a86bdb934d4e847af53c4619c4b617f91b1ad58 1179 sks_1.1.0-5.dsc
 0a980545453a69f9b6944c5fc9378d67427de1f7 173238 sks_1.1.0.orig.tar.gz
 a5256e378321dc085d15a13a601b77a85fb92653 16315 sks_1.1.0-5.diff.gz
 385fac2d841dda5ad540c821e3a0d8ceea2e8499 626440 sks_1.1.0-5_i386.deb
Checksums-Sha256: 
 e883122c4fb02eb7aa397bb428e494e8047c8b3c9a45c1b54413180ccf9f2e6d 1179 
sks_1.1.0-5.dsc
 51d169ea7871f09f8dcf868158eece54bf2a333f23adff8d06bbca02ab7a5c5d 173238 
sks_1.1.0.orig.tar.gz
 97265efb5a66dfc03d0efacbe98ec83f4492f7c592121c65b709b1c287c4b481 16315 
sks_1.1.0-5.diff.gz
 fb79d0798e7ecb6e529224efce7dcf9530fb52021e3f5807a593489f7e69e957 626440 
sks_1.1.0-5_i386.deb
Files: 
 1ccbc78555db62828cc41de33d996371 1179 net optional sks_1.1.0-5.dsc
 78e6359209f29d5ac96343e0035ca3d9 173238 net optional sks_1.1.0.orig.tar.gz
 5319625bdad75c8c9300d16fdb0a6dc8 16315 net optional sks_1.1.0-5.diff.gz
 cfa72c387b6ab879da5de59532c71d1a 626440 net optional sks_1.1.0-5_i386.deb

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

iD8DBQFKOlQsgeVih7XOVJcRA5a/AKCAM2oDMjSJNG+sLksQ4eZcTg1xTACgkOfy
zr/iXkndfESk+yEVNW89clw=
=02jA
-END PGP SIGNATURE-


Accepted:
sks_1.1.0-5.diff.gz
  to pool/main/s/sks/sks_1.1.0-5.diff.gz
sks_1.1.0-5.dsc
  to pool/main/s/sks/sks_1.1.0-5.dsc
sks_1.1.0-5_i386.deb
  to pool/main/s/sks/sks_1.1.0-5_i386.deb


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



Accepted sofa-framework 1.0~beta4-2 (source all i386)

2009-06-18 Thread Dominique Belhachemi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 17 Jun 2009 23:10:35 -0400
Source: sofa-framework
Binary: sofa-apps libsofa1-dev libsofa1 sofa-tutorials sofa-data sofa-doc
Architecture: source all i386
Version: 1.0~beta4-2
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Dominique Belhachemi domi...@cs.tu-berlin.de
Description: 
 libsofa1   - Simulation Open Framework Architecture - runtime
 libsofa1-dev - Simulation Open Framework Architecture - development
 sofa-apps  - GUI for the Simulation Open Framework Architecture (SOFA)
 sofa-data  - Simulation Open Framework Architecture - data
 sofa-doc   - SOFA class reference documentation
 sofa-tutorials - Simulation Open Framework Architecture - tutorials
Closes: 532396 532693
Changes: 
 sofa-framework (1.0~beta4-2) unstable; urgency=low
 .
   * csparse support disabled because it conflicts with the
 newer version in libsuitesparse-dev (Closes: #532693)
   * Build-Conflicts: qt3-dev-tools added
   * lost GCC 4.4 patches added (Closes: #532396)
Checksums-Sha1: 
 c06d1ea90639bd8df9eed623bf80660443f613fb 1514 sofa-framework_1.0~beta4-2.dsc
 93620c9e54416acf8e47e863c976cd1d140473a5 12951 
sofa-framework_1.0~beta4-2.diff.gz
 c59e569645df7de573bbd1f1a66e7c31975feb07 76802 
sofa-tutorials_1.0~beta4-2_all.deb
 9f35afdf6d6fbfa3842974a472ace6a5f00fba8e 32411488 sofa-data_1.0~beta4-2_all.deb
 70542c39a61d3a5fd58284f61f9f2a254ac7c64c 3794 sofa-doc_1.0~beta4-2_all.deb
 f1863de90a7bd7cecd7eda2044bedd020632d7ac 25174 sofa-apps_1.0~beta4-2_i386.deb
 115b8bb8cb5e45b901ca0f35a8c07933ce5da25c 1007628 
libsofa1-dev_1.0~beta4-2_i386.deb
 87e873127fb705e81168599199d4f6cab13e87b6 9756722 libsofa1_1.0~beta4-2_i386.deb
Checksums-Sha256: 
 c672c5d73eddfffc8cdedb7ae6eeba7dd291382ea4c3ee97d9dedd5676122807 1514 
sofa-framework_1.0~beta4-2.dsc
 58f8534e885336872c03ab3ba9473537205a1c089302b363ffbbcb28a0e910d1 12951 
sofa-framework_1.0~beta4-2.diff.gz
 44366c60426ddecf310a8c6c0f7f1c81ac6293011701e426630ee6cc30019beb 76802 
sofa-tutorials_1.0~beta4-2_all.deb
 1148615c78257d25ce232ecfa1fe1f69959bd7ee7267637478211d3a4dbbf11a 32411488 
sofa-data_1.0~beta4-2_all.deb
 514b3e8f4504efe426491053da56e793c3b21fb18922648022edf290561adf79 3794 
sofa-doc_1.0~beta4-2_all.deb
 c15659dc09c428d16c8c5a9a4b558578e8a8480a91e51dcfb5b25b4015361a3e 25174 
sofa-apps_1.0~beta4-2_i386.deb
 c8280c5d322cc15a2c9832bab89075160290e0ee77d0f17272dcd88dd4deb5c0 1007628 
libsofa1-dev_1.0~beta4-2_i386.deb
 d253f9d087589b27743ed4eba05a8b9ccd7c5ee5e1cdcb0efd5ec36a99d01b8b 9756722 
libsofa1_1.0~beta4-2_i386.deb
Files: 
 bf522632a3e142752849ba7ab473b252 1514 graphics optional 
sofa-framework_1.0~beta4-2.dsc
 9e9ce8d5f49a7f3aac2e11c8b0fb4ef7 12951 graphics optional 
sofa-framework_1.0~beta4-2.diff.gz
 8cb652fd6e15195e40c95de4bebe889f 76802 graphics optional 
sofa-tutorials_1.0~beta4-2_all.deb
 f3a952eef6d633c4fdb9d4d27be3087e 32411488 graphics optional 
sofa-data_1.0~beta4-2_all.deb
 217c6513f7860114dce21ed86c2821da 3794 doc optional sofa-doc_1.0~beta4-2_all.deb
 e06caba3a1121cc0db7e5842ceadfa7c 25174 graphics optional 
sofa-apps_1.0~beta4-2_i386.deb
 50af2efa75af9afb0bdefb0d7e5516c9 1007628 libdevel optional 
libsofa1-dev_1.0~beta4-2_i386.deb
 49097b0fd3511a1a6468bccf37ab5a8e 9756722 libs optional 
libsofa1_1.0~beta4-2_i386.deb

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

iEYEARECAAYFAko6YT0ACgkQGACh+LNRqQBOtwCfVR3Tv495fVu/itZ+7PgPmq5Z
gLYAn24gQ6E4gh07Hd8Bz6dVpOIASxlH
=G3l0
-END PGP SIGNATURE-


Accepted:
libsofa1-dev_1.0~beta4-2_i386.deb
  to pool/main/s/sofa-framework/libsofa1-dev_1.0~beta4-2_i386.deb
libsofa1_1.0~beta4-2_i386.deb
  to pool/main/s/sofa-framework/libsofa1_1.0~beta4-2_i386.deb
sofa-apps_1.0~beta4-2_i386.deb
  to pool/main/s/sofa-framework/sofa-apps_1.0~beta4-2_i386.deb
sofa-data_1.0~beta4-2_all.deb
  to pool/main/s/sofa-framework/sofa-data_1.0~beta4-2_all.deb
sofa-doc_1.0~beta4-2_all.deb
  to pool/main/s/sofa-framework/sofa-doc_1.0~beta4-2_all.deb
sofa-framework_1.0~beta4-2.diff.gz
  to pool/main/s/sofa-framework/sofa-framework_1.0~beta4-2.diff.gz
sofa-framework_1.0~beta4-2.dsc
  to pool/main/s/sofa-framework/sofa-framework_1.0~beta4-2.dsc
sofa-tutorials_1.0~beta4-2_all.deb
  to pool/main/s/sofa-framework/sofa-tutorials_1.0~beta4-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 zodb 1:3.8.1-1 (source amd64)

2009-06-18 Thread Fabio Tranchitella
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 17:37:28 +0200
Source: zodb
Binary: python-zodb
Architecture: source amd64
Version: 1:3.8.1-1
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-zodb - set of tools for using the Zope Object Database (ZODB)
Changes: 
 zodb (1:3.8.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 da4cdc154b0a45b6513f015b7b3c2dd61656 1236 zodb_3.8.1-1.dsc
 a65ca977f8d0745f5dd6e516fc411b14c6ac0d09 800129 zodb_3.8.1.orig.tar.gz
 f8aeadbc60f086a58c19b3c9c0d7a4e388453fb1 3745 zodb_3.8.1-1.diff.gz
 5f2d4e90bbd7887cffd35c4e1b98fd17d1382eaf 1251604 python-zodb_3.8.1-1_amd64.deb
Checksums-Sha256: 
 02b825e99f4c55e3ad3493b5e98d13bd512f8cbabee6a42d8b922b72e064f487 1236 
zodb_3.8.1-1.dsc
 c910bb4c9b73cd108462132c14387f4461ea49424e6c4bf0f2e4e3b446d17d5b 800129 
zodb_3.8.1.orig.tar.gz
 41eccfc8cfb4d3f25bb91d0ba2dabf765ae3a9f5556148d4f99ef99beed02ebc 3745 
zodb_3.8.1-1.diff.gz
 501e304b4c1da783d629a6818535eb2149913f8db64ad9924f052b1957b721b0 1251604 
python-zodb_3.8.1-1_amd64.deb
Files: 
 377bae5d908db485f8594090dcfecca4 1236 python extra zodb_3.8.1-1.dsc
 4905b5949c734e1a00e5d97577c6d47e 800129 python extra zodb_3.8.1.orig.tar.gz
 b1672f331d1d3f9fa6f538f987e1dd88 3745 python extra zodb_3.8.1-1.diff.gz
 e0e79fa85e9d4d0455c189bf07cde9c0 1251604 python extra 
python-zodb_3.8.1-1_amd64.deb

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

iEYEARECAAYFAko6YVUACgkQK/juK3+WFWR0DACfYJKwc5RE7U+szvE+nQnZ8ViC
basAoJ2XwBQvUxFA6WE1oLR/Pm58NYoi
=RAn3
-END PGP SIGNATURE-


Accepted:
python-zodb_3.8.1-1_amd64.deb
  to pool/main/z/zodb/python-zodb_3.8.1-1_amd64.deb
zodb_3.8.1-1.diff.gz
  to pool/main/z/zodb/zodb_3.8.1-1.diff.gz
zodb_3.8.1-1.dsc
  to pool/main/z/zodb/zodb_3.8.1-1.dsc
zodb_3.8.1.orig.tar.gz
  to pool/main/z/zodb/zodb_3.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 gnome-games 1:2.26.2-1 (source all amd64)

2009-06-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 17:53:30 +0200
Source: gnome-games
Binary: gnome-games gnome-games-data gnome-cards-data gnome-games-servers
Architecture: source all amd64
Version: 1:2.26.2-1
Distribution: unstable
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gnome-cards-data - data files for the GNOME card games
 gnome-games - games for the GNOME desktop
 gnome-games-data - data files for the GNOME games
 gnome-games-servers - GGZ gaming zone servers for the GNOME games
Closes: 517540
Changes: 
 gnome-games (1:2.26.2-1) unstable; urgency=low
 .
   [ Luca Bruno ]
   * New upstream release.
 + Allow non-king to open tableau in baker’s game. Closes: #517540.
   * debian/control.in:
 - Build-Depends:
   + Remove libgnome2-dev and libgnomeui-dev.
   + Bump libgtk2.0-dev to 2.14.0.
   + Added libsm-dev for smclient support.
   + Added gconf2 for gconftool-2 needed during build.
 - Updated Standards-Version to 3.8.1, no additional changes needed.
   * debian/patches/10_glchess_crash.patch:
 - Removed as applied upstream.
   * debian/patches/02_desktop-path.patch:
 - Updated to apply correctly.
 .
   [ Josselin Mouette ]
   * Use SDL_Mixer instead of GStreamer, per upstream’s advice.
   * Only require python-gconf.
   * Massive update to build-dependencies.
Checksums-Sha1: 
 31fb10a3194e89ec93c3fd7321dc63e54e7d9dad 1796 gnome-games_2.26.2-1.dsc
 b2873d4443b519b0696ed218726bc2070314141d 26714858 
gnome-games_2.26.2.orig.tar.gz
 0cf57a7b94a9a4a695b6d0f86fc5ec4173dbb2c2 64406 gnome-games_2.26.2-1.diff.gz
 9e30c16f90a96ddad4b65b6dba0dd48992fc40ce 22116958 
gnome-games-data_2.26.2-1_all.deb
 743fa35634a4e81c4a526bf94c23a75cc49d6c26 431336 
gnome-cards-data_2.26.2-1_all.deb
 f242102ee7bc0e16b5c926f1fdc8fb18d87dbecb 1232162 gnome-games_2.26.2-1_amd64.deb
 bd98e550b5874d4d1f5bca9bce2c848b091ea637 99274 
gnome-games-servers_2.26.2-1_amd64.deb
Checksums-Sha256: 
 759b31b80e443d80b7489b37c012b12b3264dc7614887ce12369d441efb9c420 1796 
gnome-games_2.26.2-1.dsc
 12da95f0f7605f0277837a5bd4e73d7fb4a2add67096fc5bc51fe8fc30d32f96 26714858 
gnome-games_2.26.2.orig.tar.gz
 d86fce40b1874d3bf1d9527ae0936bcc8f77085607fb850c11dee570af68cc58 64406 
gnome-games_2.26.2-1.diff.gz
 276c52f1be75c67c8be593708680873178f3cd9882fc95677816a3dc3dbd2174 22116958 
gnome-games-data_2.26.2-1_all.deb
 e63bfadf8d0f98a4807ef48f156a291aa9854161cba9a985c65e92b0769d4dfd 431336 
gnome-cards-data_2.26.2-1_all.deb
 09f08d8e3f46bcdd8b115f92554c6a407fa0d1d0d8912ba8bfd0875b57333ef4 1232162 
gnome-games_2.26.2-1_amd64.deb
 b65c842279dda974b11a8c8de281a6af3e2075c127ed45b25e665f25859267ef 99274 
gnome-games-servers_2.26.2-1_amd64.deb
Files: 
 574d80c6016a303907cae3f16bd0b8aa 1796 gnome optional gnome-games_2.26.2-1.dsc
 bc09ae219ab082c9a509d1056340fde0 26714858 gnome optional 
gnome-games_2.26.2.orig.tar.gz
 b93fe8ecb5e74d9c8f946a5813bd30b1 64406 gnome optional 
gnome-games_2.26.2-1.diff.gz
 d6c86941f45b3add67b584450246274c 22116958 gnome optional 
gnome-games-data_2.26.2-1_all.deb
 adc07a050ffcd534c62b463e05f3c809 431336 gnome optional 
gnome-cards-data_2.26.2-1_all.deb
 34d1dd85f3ca5ce60066f805995d8141 1232162 gnome optional 
gnome-games_2.26.2-1_amd64.deb
 f32f0ed62b9a76c8b426969a5c4dfde2 99274 gnome optional 
gnome-games-servers_2.26.2-1_amd64.deb

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

iD8DBQFKOnLxrSla4ddfhTMRAtZbAKCxGzepdad9ErIeySnPTYCSZTxVdgCeLzwC
jVZ63NKKUWlvRjfp9SoQ/rM=
=GEsY
-END PGP SIGNATURE-


Accepted:
gnome-cards-data_2.26.2-1_all.deb
  to pool/main/g/gnome-games/gnome-cards-data_2.26.2-1_all.deb
gnome-games-data_2.26.2-1_all.deb
  to pool/main/g/gnome-games/gnome-games-data_2.26.2-1_all.deb
gnome-games-servers_2.26.2-1_amd64.deb
  to pool/main/g/gnome-games/gnome-games-servers_2.26.2-1_amd64.deb
gnome-games_2.26.2-1.diff.gz
  to pool/main/g/gnome-games/gnome-games_2.26.2-1.diff.gz
gnome-games_2.26.2-1.dsc
  to pool/main/g/gnome-games/gnome-games_2.26.2-1.dsc
gnome-games_2.26.2-1_amd64.deb
  to pool/main/g/gnome-games/gnome-games_2.26.2-1_amd64.deb
gnome-games_2.26.2.orig.tar.gz
  to pool/main/g/gnome-games/gnome-games_2.26.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 transfermii 1:0.6.1-2 (source amd64)

2009-06-18 Thread Romain Beauxis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 18:53:06 +0200
Source: transfermii
Binary: transfermii transfermii-gui
Architecture: source amd64
Version: 1:0.6.1-2
Distribution: unstable
Urgency: low
Maintainer: Romain Beauxis to...@rastageeks.org
Changed-By: Romain Beauxis to...@rastageeks.org
Description: 
 transfermii - transfer your mii from and to your wiimotes
 transfermii-gui - transfer your mii from and to your wiimotes -- GUI
Closes: 530356
Changes: 
 transfermii (1:0.6.1-2) unstable; urgency=low
 .
   * Changed build-dep on libbluetooth2-dev to
 libbluetooth-dev. Version build-dep on
 cwiid to binNMUed binary package.
   Closes: #530356
   * Bumped standards version to 3.8.2.0
   * Use cdbs' cmake class.
   * Bumped compat to 7.
   * Drop rpath use: no more needed.
Checksums-Sha1: 
 39c2d8aadf0ab26e885674791ad0389ffe225290 1395 transfermii_0.6.1-2.dsc
 3ba6794fb509418115abd6152e0295efb6008c38 12864 transfermii_0.6.1-2.diff.gz
 a9d37b62af097dbf58c0b70ca0e2f5f21a7dd24b 12814 transfermii_0.6.1-2_amd64.deb
 d85a19339863b30cc92fa25c59fc1adae3cf71c0 31298 
transfermii-gui_0.6.1-2_amd64.deb
Checksums-Sha256: 
 5eb2702f9e129f1a53c5155778ddbef4fbba8df3595d84d876c3f0ef9d108a14 1395 
transfermii_0.6.1-2.dsc
 0354149db48397ba908d88789894b54cc140ef1364457b5fab55320f4ff01db3 12864 
transfermii_0.6.1-2.diff.gz
 8c4f862e3dbd37e746fc30dd5f05f479ef8696a95a6760ea52e11d693970f9d2 12814 
transfermii_0.6.1-2_amd64.deb
 fc9cfa759d941bc8265185414b43918c05d8ad21d10149bf9e40cde12cbedea9 31298 
transfermii-gui_0.6.1-2_amd64.deb
Files: 
 72f86a935d36d2a2445e628a9cb183c4 1395 utils extra transfermii_0.6.1-2.dsc
 28fba29d7d5ee07c77e1877948394510 12864 utils extra transfermii_0.6.1-2.diff.gz
 b14c798be1cd835a9432300736570628 12814 utils extra 
transfermii_0.6.1-2_amd64.deb
 b637e808bee7ee0289adfc6da3ac9ab7 31298 utils extra 
transfermii-gui_0.6.1-2_amd64.deb

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

iQEcBAEBAgAGBQJKOnXlAAoJEAC5aaocqV0ZXzYH/3xewz/z/7t8bSL5EBr41rEx
4ehz1t25MQ9xJE4LLP8k0XbGyQFIxpFbU4HIEZKXtSVhwEZmT/jcg0fFa7d9go4K
SITIY9NcfdXx3YHnaAbkkLdcasBGWyYDWDsgFX82rx6bqdyg3t6ND+k/hTLyfFbW
aaMzdvQHPsQ+lrp7RrRfmp0QB7jEwRKvHlP4gcgvWzF/h/l62UXdY4bSPFnY1MNA
ZCkY1Krlxef6toQ/JVjmVg+KEdxHMf11V7gH9kphtg1RjzftatujwruRc8HcnFCc
6rFQ73FW6U8BNFlNfPoEHPkSBvDXQz5Y8hasDu8ZAqYngCcyBoJyaH7TOJ2HfM8=
=AePA
-END PGP SIGNATURE-


Accepted:
transfermii-gui_0.6.1-2_amd64.deb
  to pool/main/t/transfermii/transfermii-gui_0.6.1-2_amd64.deb
transfermii_0.6.1-2.diff.gz
  to pool/main/t/transfermii/transfermii_0.6.1-2.diff.gz
transfermii_0.6.1-2.dsc
  to pool/main/t/transfermii/transfermii_0.6.1-2.dsc
transfermii_0.6.1-2_amd64.deb
  to pool/main/t/transfermii/transfermii_0.6.1-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 beaker 1.3.1-1 (source all)

2009-06-18 Thread Debian Python Modules Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 16 Jun 2009 21:34:05 +0200
Source: beaker
Binary: python-beaker
Architecture: source all
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Oleksandr Moskalenko ma...@debian.org
Changed-By: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Description: 
 python-beaker - cache and session library
Changes: 
 beaker (1.3.1-1) unstable; urgency=low
 .
   [ Piotr Ożarowski ]
   * New upstream release.
   * debian/rules works fine with python2.6 and its dist-packages now
   * Short and long description updated
   * Moved python-all and python-setuptools to Build-Depends-Indep
   * debian/dirs removed, no longer needed
   * Standards-version bumped to 3.8.2 (no changes needed)
Checksums-Sha1: 
 714b8ad400b0f9e60f53a0f0cdfbd8841202de9c 1333 beaker_1.3.1-1.dsc
 0cd3adf1ef7d25b56d4f9b474c5cf2e6e248e57f 41543 beaker_1.3.1.orig.tar.gz
 849db067035ae7a9a6869d030b6fb74b9e4e6a6b 4231 beaker_1.3.1-1.diff.gz
 f5d24f8f71994f7f74206b6b507884d4485c19db 30234 python-beaker_1.3.1-1_all.deb
Checksums-Sha256: 
 8645ee5a3727ac120f81e9308fccea808ad15531931760834e3b6de17e1c9dbd 1333 
beaker_1.3.1-1.dsc
 96b75a07a9fa34989ffce85970b4a563fbe46d6d368636d82cddcd85f5e4c66b 41543 
beaker_1.3.1.orig.tar.gz
 b8c03ccd8f94cb513e1a021364002d5ef9ecf581353700bfa5996db52ab91c2f 4231 
beaker_1.3.1-1.diff.gz
 af2264c5aa3ea82ddc045e40fff7e9b7ec6820602f043d788be6a4eb0f6c2633 30234 
python-beaker_1.3.1-1_all.deb
Files: 
 f03b920fd2e133fcd9cef3be8a113147 1333 python optional beaker_1.3.1-1.dsc
 bdc4237d68f1a0f9b853d202a2d16617 41543 python optional beaker_1.3.1.orig.tar.gz
 8fec40305d83a920749b4246d31adbfe 4231 python optional beaker_1.3.1-1.diff.gz
 ab145ea50dcbbace4e18cece200b0383 30234 python optional 
python-beaker_1.3.1-1_all.deb

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

iEYEARECAAYFAko6hRIACgkQB01zfu119ZnsHQCfXXtpNGQ5vQD55b3MBZ3ZhBmD
6JMAoL3G+1Dra4Ur7NBAPM0ACblQ/2YK
=QQn1
-END PGP SIGNATURE-


Accepted:
beaker_1.3.1-1.diff.gz
  to pool/main/b/beaker/beaker_1.3.1-1.diff.gz
beaker_1.3.1-1.dsc
  to pool/main/b/beaker/beaker_1.3.1-1.dsc
beaker_1.3.1.orig.tar.gz
  to pool/main/b/beaker/beaker_1.3.1.orig.tar.gz
python-beaker_1.3.1-1_all.deb
  to pool/main/b/beaker/python-beaker_1.3.1-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 iptables 1.4.4-1 (source amd64)

2009-06-18 Thread Laurence J. Lane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 08:14:55 -0400
Source: iptables
Binary: iptables iptables-dev
Architecture: source amd64
Version: 1.4.4-1
Distribution: unstable
Urgency: low
Maintainer: Laurence J. Lane ljl...@debian.org
Changed-By: Laurence J. Lane ljl...@debian.org
Description: 
 iptables   - administration tools for packet filtering and NAT
 iptables-dev - iptables development files
Closes: 524862 528457 528736 531677
Changes: 
 iptables (1.4.4-1) unstable; urgency=low
 .
   * New upstream release
   * Upstream added Ian Bruce's man page errors fix. Thanks.
 Closes: #531677
   * Upstream added Piotr Lewandowski's iptables(8) typo fix. Thanks.
 Closes: #528457
   * Upstream fixed intraposition vs extraposition deprecation warning.
 Thanks. Closes: #528736
   * Added ip6tables-apply symlinks for martin f krafft. Closes: #524862
Checksums-Sha1: 
 ae51fbdd7aed17ef92c8213355b32cb04eaadec1 1043 iptables_1.4.4-1.dsc
 b9145dffcc86058b27693aecce8a16a7c81046bc 571612 iptables_1.4.4.orig.tar.gz
 6ae7f4187f78f2aebde240b56c85624585048bad 34513 iptables_1.4.4-1.diff.gz
 9ae8e280e150e50758398c4d07e35a3400d3a562 416634 iptables_1.4.4-1_amd64.deb
 d156b418765a183244f0916c8158b8a8d63e207e 53146 iptables-dev_1.4.4-1_amd64.deb
Checksums-Sha256: 
 f407a21f0469fa50e84b5256b0eaac8833c481606fef8ea273564bb502d4169d 1043 
iptables_1.4.4-1.dsc
 fa5e1ef43accde5d8aec3b97224d243adfd39bf142c5eb6f2c2c98879c29721f 571612 
iptables_1.4.4.orig.tar.gz
 d898312ec1236a70288378eaca90dc58167e011f01f9d5becc1af209e3b4e5bc 34513 
iptables_1.4.4-1.diff.gz
 fca75dc2ef05ee46c38fa6f92e0704dc46063af33f473e552b1e1b26f074b175 416634 
iptables_1.4.4-1_amd64.deb
 9c73052d0872eda13795d9ae9f9868cabb02f0222e33420ea19a8754c7169fc4 53146 
iptables-dev_1.4.4-1_amd64.deb
Files: 
 49a0fab018010e08130e206c6fdf24a8 1043 net important iptables_1.4.4-1.dsc
 184ca9c51f229fbe2ee536519b3a1b8b 571612 net important 
iptables_1.4.4.orig.tar.gz
 b3f33b2aceeb123d6c112fb0d6ca2b26 34513 net important iptables_1.4.4-1.diff.gz
 bab9aae2b3d3dc934dde069a3f200809 416634 net important 
iptables_1.4.4-1_amd64.deb
 dad78a07471e56809b5315aece1bf32e 53146 devel optional 
iptables-dev_1.4.4-1_amd64.deb

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

iEYEARECAAYFAko6kA8ACgkQxJBkNlXToel9tQCfdmUg1JCA7k9IPpPRGdfpQTKZ
eikAn2KE2QsqF9++0ksvXIp7mj1o+o3k
=yKSf
-END PGP SIGNATURE-


Accepted:
iptables-dev_1.4.4-1_amd64.deb
  to pool/main/i/iptables/iptables-dev_1.4.4-1_amd64.deb
iptables_1.4.4-1.diff.gz
  to pool/main/i/iptables/iptables_1.4.4-1.diff.gz
iptables_1.4.4-1.dsc
  to pool/main/i/iptables/iptables_1.4.4-1.dsc
iptables_1.4.4-1_amd64.deb
  to pool/main/i/iptables/iptables_1.4.4-1_amd64.deb
iptables_1.4.4.orig.tar.gz
  to pool/main/i/iptables/iptables_1.4.4.orig.tar.gz


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



Accepted miro 2.0.4-2 (source all i386)

2009-06-18 Thread Uwe Hermann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 21:38:04 +0200
Source: miro
Binary: miro miro-data democracyplayer democracyplayer-data
Architecture: source all i386
Version: 2.0.4-2
Distribution: unstable
Urgency: low
Maintainer: Uwe Hermann u...@debian.org
Changed-By: Uwe Hermann u...@debian.org
Description: 
 democracyplayer - GTK+ based RSS video aggregator (transitional package)
 democracyplayer-data - GTK+ based RSS video aggregator data files 
(transitional package)
 miro   - GTK+ based RSS video aggregator
 miro-data  - GTK+ based RSS video aggregator data files
Closes: 523620 524712 533355
Changes: 
 miro (2.0.4-2) unstable; urgency=low
 .
   * Add upstream patch debian/patches/40_mozsetup_fix.patch in order to fix
 the Miro Guide is not displayed bug (Closes: #524712).
   * This also fixes a crash when trying to access any item in the Sites
 section (Closes: #523620, #533355).
   * debian/miro.lintian-overrides: Adapt, feedparser.py moved location.
Checksums-Sha1: 
 6e88362fba23799f8e6be447a1dd8f7ddf4b9ce6 1432 miro_2.0.4-2.dsc
 14e419099c9a47941bc213cca1b32d027af6e72a 16924 miro_2.0.4-2.diff.gz
 95a23f46d3500fe6c150afd2e3d0cb6368ee1dea 1416366 miro-data_2.0.4-2_all.deb
 0e51c8f44fce7b3b45cfb967dbd735aeb8c4ea65 14982 democracyplayer_2.0.4-2_all.deb
 197a2f0543e7140afae505704acf8604232f289f 14994 
democracyplayer-data_2.0.4-2_all.deb
 09302d2e821f169e7c505bac3124f8d5932fef39 669936 miro_2.0.4-2_i386.deb
Checksums-Sha256: 
 d2c5d73e41bb23cb76d62d2972bab74f62ffbf923ecf77acedd11de690f9c5e7 1432 
miro_2.0.4-2.dsc
 59bf61157d4ae13cd18dffb45f1486adb54965f919add9d83854d47de2731888 16924 
miro_2.0.4-2.diff.gz
 9e05661902cfc760bb666bec5674293a83753c275afd5a8de7e50a270611cdc3 1416366 
miro-data_2.0.4-2_all.deb
 35b0b9afb5563e4ef2985e9f3eedf3d8a143bbf65406f9e6ce285c251b7f4643 14982 
democracyplayer_2.0.4-2_all.deb
 81dc88257c23f9b0da71d6c2570bfd5470eb3a5d84c3ab4a3c0dcaf8e7245ccd 14994 
democracyplayer-data_2.0.4-2_all.deb
 697f282b3bd7bd71e6715f7a716b0ed97a4472d32aa7f26749ea4d94d2cd953b 669936 
miro_2.0.4-2_i386.deb
Files: 
 370596945a9b8f0183ab94d711b5e500 1432 net extra miro_2.0.4-2.dsc
 977a8b548f52d94faa491d95fbfcbc9a 16924 net extra miro_2.0.4-2.diff.gz
 233bcfb7fad9b94999cd0ec6292be137 1416366 net extra miro-data_2.0.4-2_all.deb
 ab4f687a4cb5254d17e5e0f49d577a62 14982 net extra 
democracyplayer_2.0.4-2_all.deb
 49186225a5c3fdc333668e031f4dcfe0 14994 net extra 
democracyplayer-data_2.0.4-2_all.deb
 063f63a48b895e99ae107322fb6a3c3f 669936 net extra miro_2.0.4-2_i386.deb

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

iEYEARECAAYFAko6mHAACgkQXdVoV3jWIbTENgCfbuVn+VNE1JoKaXm2wVdAFIJ5
pkAAn2l4ePigk9eYLsoODF3lg29pwai/
=g2Rp
-END PGP SIGNATURE-


Accepted:
democracyplayer-data_2.0.4-2_all.deb
  to pool/main/m/miro/democracyplayer-data_2.0.4-2_all.deb
democracyplayer_2.0.4-2_all.deb
  to pool/main/m/miro/democracyplayer_2.0.4-2_all.deb
miro-data_2.0.4-2_all.deb
  to pool/main/m/miro/miro-data_2.0.4-2_all.deb
miro_2.0.4-2.diff.gz
  to pool/main/m/miro/miro_2.0.4-2.diff.gz
miro_2.0.4-2.dsc
  to pool/main/m/miro/miro_2.0.4-2.dsc
miro_2.0.4-2_i386.deb
  to pool/main/m/miro/miro_2.0.4-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 dump 0.4b42-1 (source i386)

2009-06-18 Thread Bdale Garbee
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 14:02:13 -0600
Source: dump
Binary: dump
Architecture: source i386
Version: 0.4b42-1
Distribution: unstable
Urgency: low
Maintainer: Bdale Garbee bd...@gag.com
Changed-By: Bdale Garbee bd...@gag.com
Description: 
 dump   - 4.4bsd dump and restore for ext2 filesystems
Closes: 378349 511651
Changes: 
 dump (0.4b42-1) unstable; urgency=low
 .
   * new upstream version, closes: #378349, #511651
   * add build dependencies on libdevmapper-dev, libselinux1-dev
   * add lintian override since we intentionally statically link against zlib
 so that restore can work without /usr being present as per #117496
Checksums-Sha1: 
 c03bf10fece0b20858974a51f67d2cebe22c52de 1083 dump_0.4b42-1.dsc
 73c4995938ab80c1b959f29afe56c21484a38582 288636 dump_0.4b42.orig.tar.gz
 6373bfdacc7473c1931e7a432a85483a73f379c2 9162 dump_0.4b42-1.diff.gz
 116c71b5bce87ae6e88179db0881bdad25fe5376 258082 dump_0.4b42-1_i386.deb
Checksums-Sha256: 
 05dbaf1d97a28da61ad90534756cc3a9dda4a05591a6697b0a0298daa095daa3 1083 
dump_0.4b42-1.dsc
 801def8fb22eddf89801c26a8fcb581d0389a5ad31f2f1d17e5a94fe9e65ac78 288636 
dump_0.4b42.orig.tar.gz
 4850128918757827d601cb205b98ccb024afadff8614179f3dc8c1c2fe98d196 9162 
dump_0.4b42-1.diff.gz
 e2a4eccb52603f5ef612c422ff9c2b16e2e0a90b789318eee01a8d95dd6b1cdf 258082 
dump_0.4b42-1_i386.deb
Files: 
 b0cbaafa7773d23156a4e41e3dffcf70 1083 utils optional dump_0.4b42-1.dsc
 7202465ed687da2540a7b2b44a09f1b9 288636 utils optional dump_0.4b42.orig.tar.gz
 bf725e3df7f90b129d37e5e77bf49da0 9162 utils optional dump_0.4b42-1.diff.gz
 3846e10f9f0f5ec9ad1ffa1dcc70a6e8 258082 utils optional dump_0.4b42-1_i386.deb

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

iD8DBQFKOqGMZKfAp/LPAagRAm1aAJ9AzVM/bj0QI3XADtIuxdD6bxURYgCeKmwx
SLPbtivFduVKiCU73HtC4Hs=
=I3dN
-END PGP SIGNATURE-


Accepted:
dump_0.4b42-1.diff.gz
  to pool/main/d/dump/dump_0.4b42-1.diff.gz
dump_0.4b42-1.dsc
  to pool/main/d/dump/dump_0.4b42-1.dsc
dump_0.4b42-1_i386.deb
  to pool/main/d/dump/dump_0.4b42-1_i386.deb
dump_0.4b42.orig.tar.gz
  to pool/main/d/dump/dump_0.4b42.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 libcdio 0.81-2 (source i386 powerpc)

2009-06-18 Thread Nicolas Boullis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 21:52:30 +0200
Source: libcdio
Binary: libcdio-dev libcdio10 libiso9660-dev libiso9660-7 libcdio-cdda-dev 
libcdio-cdda0 libcdio-paranoia-dev libcdio-paranoia0 libudf-dev libudf0 
libcdio-utils
Architecture: i386 powerpc source 
Version: 0.81-2
Distribution: experimental
Urgency: low
Maintainer: Nicolas Boullis nboul...@debian.org
Changed-By: Nicolas Boullis nboul...@debian.org
Description:
 libcdio10  - library to read and control CD-ROM
 libcdio-cdda0 - library to read and control digital audio CDs
 libcdio-cdda-dev - library to read and control digital audio CDs (development 
files)
 libcdio-dev - library to read and control CD-ROM (development files)
 libcdio-paranoia0 - library to read digital audio CDs with error correction
 libcdio-paranoia-dev - library to read digital audio CDs with error correction 
(developm
 libcdio-utils - sample applications based on the CDIO libraries
 libiso9660-7 - library to work with ISO9660 filesystems
 libiso9660-dev - library to work with ISO9660 filesystems (development files)
 libudf0- library to work with UDF filesystems
 libudf-dev - library to work with UDF filesystems (development files)
Changes:
 libcdio (0.81-2) experimental; urgency=low
 .
   * Make sure that the check_paranoia.sh won't fail because stderr is not
 a tty.
Checksums-Sha1: 
 093a9f774c7d0626e3505821b3c5898488bcd70e 128814 libiso9660-7_0.81-2_powerpc.deb
 144e6e8d6a10e0f595f655a03e7ad955b8b22ac6 155488 libcdio10_0.81-2_i386.deb
 1e796acd5351645c024e17599a57cd327aa03e79 255274 libcdio-dev_0.81-2_i386.deb
 2141696da3fa297b1600135b366f56298988c822 191898 libcdio-utils_0.81-2_i386.deb
 258d1431a0f52d9ed3c3807800628caa67c51449 122902 
libcdio-paranoia0_0.81-2_powerpc.deb
 31b1f1eb9523dbd41058689860d2712b2ef449cf 124582 libiso9660-7_0.81-2_i386.deb
 35917634ad181e124c55c29512f9c8d57cf5b897 217234 
libcdio-utils_0.81-2_powerpc.deb
 4116adf5d074ef8061060997569f548d101488d7 266560 libcdio-dev_0.81-2_powerpc.deb
 4f84d1f06c525881716cd2bb6be56b8cccda69e7 124032 
libcdio-paranoia-dev_0.81-2_i386.deb
 50590e31e104f364524ee3d4f64da6da878bdbe9 115806 libudf0_0.81-2_powerpc.deb
 555ad98dfa6fd3462828b2ce1b9fe720b7c3c9ee 127136 
libcdio-cdda-dev_0.81-2_powerpc.deb
 58f397cf88db67b2064d9cd5e0cf716e1eb8b2e6 119006 libcdio-cdda0_0.81-2_i386.deb
 6da24d1e47ddbf8be51af6aaf076c215a65b72c5 122566 libudf-dev_0.81-2_i386.deb
 6f51423b23f2a23e7afeae0e34b678ca491dd1ec 120240 
libcdio-paranoia0_0.81-2_i386.deb
 82b828108a5e8bcfa793e7c38db31629e07975fe 112808 libudf0_0.81-2_i386.deb
 8ddadc0b6134a140742632d7cff5028bd2c24bfc 124730 
libcdio-paranoia-dev_0.81-2_powerpc.deb
 98a76a53444116a8e99ffcc02ae8b7f93f572f1f 8309 libcdio_0.81-2.diff.gz
 aca7fa93a46bdbf7546bbfee52db45754b1b6aee 123260 
libcdio-cdda0_0.81-2_powerpc.deb
 c59e2ddf70fa5cc8d7355c3e00defde0676d3dbb 144494 
libiso9660-dev_0.81-2_powerpc.deb
 cd5ba07dd1c86be3897b1ea9f53434dc8ff183fe 163120 libcdio10_0.81-2_powerpc.deb
 7c9dbd95ff8a14c39ec8b103cf72232ae444d5e4 1365 libcdio_0.81-2.dsc
 e00f83b09451458629c8d5f30e5b148bfd5e8c5d 123504 libudf-dev_0.81-2_powerpc.deb
 e144cfb11ebe0c6230fffe2a05adcc740b7d4d0e 140722 libiso9660-dev_0.81-2_i386.deb
 ff760c4a4bd66f46051e03d1157015413ed6e9d8 124018 
libcdio-cdda-dev_0.81-2_i386.deb
Checksums-Sha256: 
 2add8c8d50e0c8d0ccfa215441f57ceba0f91514fd1df01eaa95643b3bcc2b08 127136 
libcdio-cdda-dev_0.81-2_powerpc.deb
 328e5fd823bb3f2ad06b54840d6bed0fd0119933ae68461fe7118cf219980c8d 122566 
libudf-dev_0.81-2_i386.deb
 4b94ec7f1d000c225d2ce67fd5df0d3c5f917cb8c293af80ffe22d19034a8537 120240 
libcdio-paranoia0_0.81-2_i386.deb
 5a686e15c67fb298c27cff3b498bfc1d756421a212d1a56ffbea504e17599e13 112808 
libudf0_0.81-2_i386.deb
 65180ba78f8062a60c4bca232f22f8835c54055595c3a37a0aeda21b0f7f7d88 123260 
libcdio-cdda0_0.81-2_powerpc.deb
 6947b5b4a0353e64ecff94fbb4791d05ceafd8b62f6195d5c5ac275437fafe51 124032 
libcdio-paranoia-dev_0.81-2_i386.deb
 6f589e8fe707c5ce2ada8e70df6b528c95ab33d2e6672a2ebac9b142c3099494 124730 
libcdio-paranoia-dev_0.81-2_powerpc.deb
 732729ff7947aa6a7ae2169b6195d14a485ebf8e4e70fe46fbd4db50c94d7a97 122902 
libcdio-paranoia0_0.81-2_powerpc.deb
 73a0b7e4d2138a3cc4d618dddaa82cb084441b8e6c076225d44da4a24644b5f9 128814 
libiso9660-7_0.81-2_powerpc.deb
 73c3240e7e75678679f23aa23ec4fb7d01893389ddc47b50e6ae1fc794821a24 124018 
libcdio-cdda-dev_0.81-2_i386.deb
 7aa3801d94968e70463698dd91d8bdf6bc72643595eff26a22f5ab577f8c3dcd 266560 
libcdio-dev_0.81-2_powerpc.deb
 8c087675b3ba79019c03a903e936fe41d4e06c62804deef5cd11bb25c728a6aa 144494 
libiso9660-dev_0.81-2_powerpc.deb
 8d1caf443b4ff809fed5b5000b26e5aeba9821baccdb7a89431acd1d686d5c56 191898 
libcdio-utils_0.81-2_i386.deb
 a36ae296f6d5871fd6ffdc8452625711cea2e472b886351aca4c86efffbc854b 8309 
libcdio_0.81-2.diff.gz
 a90eb72a7a15ae4d7679a611459b1119dac28fecb65762149adfb74806dba538 163120 
libcdio10_0.81-2_powerpc.deb
 99d5cd25b8d53b5e76abe2038ffc3d6c9b00398c91bb8467a7151525b86b2713 1365 

Accepted mime-support 3.45-1 (source all)

2009-06-18 Thread Brian White
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 22:04:29 +0200
Source: mime-support
Binary: mime-support
Architecture: source all
Version: 3.45-1
Distribution: unstable
Urgency: medium
Maintainer: Brian White bcwh...@pobox.com
Changed-By: Brian White bcwh...@pobox.com
Description: 
 mime-support - MIME files 'mime.types'  'mailcap', and support programs
Closes: 77985 202586 502977 507665 508381 522001 526690 531225
Changes: 
 mime-support (3.45-1) unstable; urgency=medium
 .
   * added new mime.types (closes: 508381, 502977, 202586, 531225, 507665)
   * added action cat that is like view but ignores copiousoutput 
(closes: 526690)
   * added option norun to display final command without executing it
   * file-type can now be determined by file/magic (closes: 77985)
   * fixed forkbomb bug (closes: 522001)
Checksums-Sha1: 
 140524ec9f1666dc63c923858ae02cba9639 824 mime-support_3.45-1.dsc
 194bdea50c486f328d02068451847849c9359817 30527 mime-support_3.45-1.tar.gz
 af376c8889a3c24d917a602a0fa18443e76f242b 33940 mime-support_3.45-1_all.deb
Checksums-Sha256: 
 79d481720eb80eebfadc384b7680d5d7ce24ce5419bffc3697447982c845569a 824 
mime-support_3.45-1.dsc
 dbf847e8bcddf15f9e9d61472ed2cef057b37c23468ec731433ba16726e3e4d4 30527 
mime-support_3.45-1.tar.gz
 650ab3871acbf849aa62e012764dce41fced0f3c7733d2ebd8c0afd412d8f801 33940 
mime-support_3.45-1_all.deb
Files: 
 d692df4ffc7b81061be206bd913e08bc 824 net standard mime-support_3.45-1.dsc
 bf0ec69674e2d6a5304bdb48a0bce5f8 30527 net standard mime-support_3.45-1.tar.gz
 7c7f6a33a70bb96127e9a3cbb4c8f5e6 33940 net standard mime-support_3.45-1_all.deb

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

iQCVAwUBSjqoivIOJCznesg1AQKUDAP9EH/I+JsAAPaWuRYrg4KpNQwK8SRBkRXy
0pXDu8oOLxIaTuKsCiNbr0/spMryPcx3sOvo4McM64psyLIaQ2d+SFWg0HqPpnPh
2H5ofeGb5M3yH8YBljfNz+WxHRMGlEMJMc7FcgBIbJwwpni/y1DVMBNkZtvGGF3u
3MhdYcNVu3U=
=Tglb
-END PGP SIGNATURE-


Accepted:
mime-support_3.45-1.dsc
  to pool/main/m/mime-support/mime-support_3.45-1.dsc
mime-support_3.45-1.tar.gz
  to pool/main/m/mime-support/mime-support_3.45-1.tar.gz
mime-support_3.45-1_all.deb
  to pool/main/m/mime-support/mime-support_3.45-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 mime-support 3.46-1 (source all)

2009-06-18 Thread Brian White
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 22:54:51 +0200
Source: mime-support
Binary: mime-support
Architecture: source all
Version: 3.46-1
Distribution: unstable
Urgency: medium
Maintainer: Brian White bcwh...@pobox.com
Changed-By: Brian White bcwh...@pobox.com
Description: 
 mime-support - MIME files 'mime.types'  'mailcap', and support programs
Closes: 202586
Changes: 
 mime-support (3.46-1) unstable; urgency=medium
 .
   * added new mime.types
   * added option norun to display final command without executing it 
(closes: 202586)
Checksums-Sha1: 
 5c4a4228d6fba6a6c7d66ea5a0f2132c4eb02548 824 mime-support_3.46-1.dsc
 20204bf62567b7aabd7622d94a7f3014ad4c04cd 30592 mime-support_3.46-1.tar.gz
 3ddb00d0d5a7d314b5768be5a67b185c74b88bde 34038 mime-support_3.46-1_all.deb
Checksums-Sha256: 
 226750e3ab8e8647d1f0f908e5c97da84b1760ff708367bc4e5313397966daf0 824 
mime-support_3.46-1.dsc
 c9082ae06dad2f45dd1adc4a0ab961a186235671d3aea17ec957724118d1254d 30592 
mime-support_3.46-1.tar.gz
 a912957c072c16847e386b82623357984c2e27140375724fb34affb779a4e0fe 34038 
mime-support_3.46-1_all.deb
Files: 
 aa7ab223e0821470a3e3a44d7bc81e16 824 net standard mime-support_3.46-1.dsc
 eeb2d692f451c8bd06a5bfe0d9537fde 30592 net standard mime-support_3.46-1.tar.gz
 bc3118ad0a64bdc71f86d37b8414b9cd 34038 net standard mime-support_3.46-1_all.deb

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

iQCVAwUBSjqrWPIOJCznesg1AQJLTgP9Fb9WWRFUw57VY2mT0/7juO13e9RaWnEo
tbqvY/VUXrF2/W83gLJuo9lFNyTyKDaBxtKmHE+Oco0PKwBXEwFoa2qnXr3Pcojt
gv9jQz7gzejfrHgxa5CH/VvWUeSv4qWlzF9bgPzoiVLcbgri/THGvbGAFAiEC+0C
7lN4O2ZAPp4=
=MEdW
-END PGP SIGNATURE-


Accepted:
mime-support_3.46-1.dsc
  to pool/main/m/mime-support/mime-support_3.46-1.dsc
mime-support_3.46-1.tar.gz
  to pool/main/m/mime-support/mime-support_3.46-1.tar.gz
mime-support_3.46-1_all.deb
  to pool/main/m/mime-support/mime-support_3.46-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 tomcat6 6.0.20-2 (source all)

2009-06-18 Thread Ludovic Claude
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 15 Jun 2009 13:33:13 +0100
Source: tomcat6
Binary: tomcat6-common tomcat6 tomcat6-user libtomcat6-java libservlet2.5-java 
libservlet2.5-java-doc tomcat6-admin tomcat6-examples tomcat6-docs
Architecture: source all
Version: 6.0.20-2
Distribution: unstable
Urgency: low
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Ludovic Claude ludovic.cla...@laposte.net
Description: 
 libservlet2.5-java - Servlet 2.5 and JSP 2.1 Java API classes
 libservlet2.5-java-doc - Servlet 2.5 and JSP 2.1 Java API documentation
 libtomcat6-java - Servlet and JSP engine -- core libraries
 tomcat6- Servlet and JSP engine
 tomcat6-admin - Servlet and JSP engine -- admin web applications
 tomcat6-common - Servlet and JSP engine -- common files
 tomcat6-docs - Servlet and JSP engine -- example web applications
 tomcat6-examples - Servlet and JSP engine -- example web applications
 tomcat6-user - Servlet and JSP engine -- tools to create user instances
Changes: 
 tomcat6 (6.0.20-2) unstable; urgency=low
 .
   * Expose tomcat-juli.jar as a library in /usr/share/java
 as it is a dependency of jasper which is used also by jetty
Checksums-Sha1: 
 2a155e66b67c40c0c963281dab04dcb9146416fc 1445 tomcat6_6.0.20-2.dsc
 398cc6a93e7213cdbae173521061abcf3fdb3d47 18049 tomcat6_6.0.20-2.diff.gz
 2429ed7b3303ccfdb27259ef9c2302df7aa8f1a0 35536 tomcat6-common_6.0.20-2_all.deb
 056371a79cf21307c748db0dc47577684cdc226d 25438 tomcat6_6.0.20-2_all.deb
 3c19d575e9c4a1bbf7980e9c9ca032fd11de1f76 20694 tomcat6-user_6.0.20-2_all.deb
 8f1c04c3df0e1e1149d88a7add04fc48da5711dc 2911718 
libtomcat6-java_6.0.20-2_all.deb
 ff813a6a74a9cf36a35762970c982049ae85da50 181058 
libservlet2.5-java_6.0.20-2_all.deb
 d1ee40c70b10c30a1b6c7c13e63aa2550592c81f 248518 
libservlet2.5-java-doc_6.0.20-2_all.deb
 3781c77823b2b77b94676cf0900ea34a10a29301 37946 tomcat6-admin_6.0.20-2_all.deb
 ab70b7400d3d13775c83527bf0b8cde95530dcad 421922 
tomcat6-examples_6.0.20-2_all.deb
 a5a81f2a3165e3f47ec6b86aa0e492dd5504d595 492314 tomcat6-docs_6.0.20-2_all.deb
Checksums-Sha256: 
 baf3e942f24e56c4ef44707abd241081b84433942c111d205e6ddc8a30d5bd73 1445 
tomcat6_6.0.20-2.dsc
 ce35947e056285c13ca04693b75566d305e12cd7b23d358b1e2b343342ff423b 18049 
tomcat6_6.0.20-2.diff.gz
 8f1ab98c6d5d8ec9f260c6038df1ac5de242ff79b11481d622b1ece23f8c15ef 35536 
tomcat6-common_6.0.20-2_all.deb
 1f92afc3f0fe1b1ed460526aefc2b3de3a28c9018f7057cb58b96f3bffcfd199 25438 
tomcat6_6.0.20-2_all.deb
 732816f3396d059637ba2011eaed1e97d4040c19bad199117c12f8b570b7c670 20694 
tomcat6-user_6.0.20-2_all.deb
 61d46297975123d3cd2a74a316f2479841eed0119fb83835bcfe5f189f23c1f7 2911718 
libtomcat6-java_6.0.20-2_all.deb
 604ea536f2e11a537ae0f98ec6db9b0365da126f057fb51250b3ea8e24bc255c 181058 
libservlet2.5-java_6.0.20-2_all.deb
 7041c404480e6ddc29ad6abc115edb6f00c8822bd71e60384d399225fd6109ea 248518 
libservlet2.5-java-doc_6.0.20-2_all.deb
 45682d1f7eda3b34396e9155c905f4bff3951e5cc26f558e06c8c0ec3fa5b2bf 37946 
tomcat6-admin_6.0.20-2_all.deb
 62e74086eeb5590dada5cd661f14c50e263063ecc497918bad5e9ba26078b95b 421922 
tomcat6-examples_6.0.20-2_all.deb
 e3b2c0703293b78d17011960abe92bd4a23df36ab06d19c20b23378a0c405daf 492314 
tomcat6-docs_6.0.20-2_all.deb
Files: 
 18e0907c928e53eff848ab161bbe6f99 1445 java optional tomcat6_6.0.20-2.dsc
 2a13ed490a4de25307228d8b9bb8fcb5 18049 java optional tomcat6_6.0.20-2.diff.gz
 64e68a88321aac6de2955e9c3a38aba4 35536 java optional 
tomcat6-common_6.0.20-2_all.deb
 7c289015e254e232a614a1b30dfc3c37 25438 java optional tomcat6_6.0.20-2_all.deb
 14cbe696c0c741ae80643048b679810d 20694 java optional 
tomcat6-user_6.0.20-2_all.deb
 3da31133189fc89bda8a98fc17346e91 2911718 java optional 
libtomcat6-java_6.0.20-2_all.deb
 4e3dac0427b41cc2b82ac06cebfe389a 181058 java optional 
libservlet2.5-java_6.0.20-2_all.deb
 6a1c166c02e7d69764183fcccb671682 248518 doc optional 
libservlet2.5-java-doc_6.0.20-2_all.deb
 22f793266e252beffc8c38484520a859 37946 java optional 
tomcat6-admin_6.0.20-2_all.deb
 9f506a40934c1de43ca0f78d5c489795 421922 java optional 
tomcat6-examples_6.0.20-2_all.deb
 f1e93ab7d4e636b4eb253335d660a847 492314 doc optional 
tomcat6-docs_6.0.20-2_all.deb

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

iEYEARECAAYFAko6oekACgkQfY3dicTPjsO1OQCfS3FNQkOJpxaS0cYqA8XJSujU
PYEAnissneJrpmhhfDQHAF/uwUQIg5PG
=p0/n
-END PGP SIGNATURE-


Accepted:
libservlet2.5-java-doc_6.0.20-2_all.deb
  to pool/main/t/tomcat6/libservlet2.5-java-doc_6.0.20-2_all.deb
libservlet2.5-java_6.0.20-2_all.deb
  to pool/main/t/tomcat6/libservlet2.5-java_6.0.20-2_all.deb
libtomcat6-java_6.0.20-2_all.deb
  to pool/main/t/tomcat6/libtomcat6-java_6.0.20-2_all.deb
tomcat6-admin_6.0.20-2_all.deb
  to pool/main/t/tomcat6/tomcat6-admin_6.0.20-2_all.deb
tomcat6-common_6.0.20-2_all.deb
  to pool/main/t/tomcat6/tomcat6-common_6.0.20-2_all.deb
tomcat6-docs_6.0.20-2_all.deb
  to 

Accepted python-qt4 4.5.1-1 (source i386 all)

2009-06-18 Thread Torsten Marek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 20:59:11 +0200
Source: python-qt4
Binary: python-qt4 python-qt4-dbg python-qt4-phonon python-qt4-phonon-dbg 
python-qt4-dbus python-qt4-dbus-dbg python-qt4-gl python-qt4-gl-dbg 
python-qt4-sql python-qt4-sql-dbg python-qt4-dev python-qt4-doc pyqt4-dev-tools
Architecture: source i386 all
Version: 4.5.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Torsten Marek shlo...@debian.org
Description: 
 pyqt4-dev-tools - Development tools for PyQt4
 python-qt4 - Python bindings for Qt4
 python-qt4-dbg - Python bindings for Qt4 (debug extensions)
 python-qt4-dbus - DBus Support for PyQt4
 python-qt4-dbus-dbg - DBus Support for PyQt4 (debug extensions)
 python-qt4-dev - Development files for PyQt4
 python-qt4-doc - Documentation and examples for PyQt4
 python-qt4-gl - Python bindings for Qt4's OpenGL module
 python-qt4-gl-dbg - Python bindings for Qt4's OpenGL module (debug extension)
 python-qt4-phonon - Python bindings for Phonon
 python-qt4-phonon-dbg - Python bindings for Phonon (debug extensions)
 python-qt4-sql - Python bindings for PyQt4's SQL module
 python-qt4-sql-dbg - Python bindings for PyQt4's SQL module (debug extension)
Changes: 
 python-qt4 (4.5.1-1) unstable; urgency=low
 .
   * New upstream bugfix release
   * debian/control
 - Bump all dependencies on sip to 4.8.1
Checksums-Sha1: 
 23a2b522bc9a9feb130e88c17c131ce6aaeda162 1885 python-qt4_4.5.1-1.dsc
 b50b58c3e6f9a15e0986fe63d978eb85db363a46 6942490 python-qt4_4.5.1.orig.tar.gz
 e92e52d4b17d11a5e5f44ea415315c875f57a326 15752 python-qt4_4.5.1-1.diff.gz
 75b78d3e3534d7ec0a6f0a3698fd01359f40c72d 4925186 python-qt4_4.5.1-1_i386.deb
 36d3c0608e32a33034268d919586528298b7bb98 51745942 
python-qt4-dbg_4.5.1-1_i386.deb
 d2c6965e73c40eed798daa39a6718c6b1e02eca9 202314 
python-qt4-phonon_4.5.1-1_i386.deb
 ea0191e1368c4666453a865c03f4298de7b9545f 3108224 
python-qt4-phonon-dbg_4.5.1-1_i386.deb
 48589ed9311a928bf769ddc7511276ea284e8155 84606 python-qt4-dbus_4.5.1-1_i386.deb
 014bed2adf87841a95b19f3cf02ef6d08ba6f997 234036 
python-qt4-dbus-dbg_4.5.1-1_i386.deb
 53f8719bc347cc55b5554838d066861d778b2af9 128132 python-qt4-gl_4.5.1-1_i386.deb
 b2bf69ef686840e2fc11728316651af4813ab9bf 1646280 
python-qt4-gl-dbg_4.5.1-1_i386.deb
 ac48e41fe94c638f721442e95e1a98ca07d879e9 173936 python-qt4-sql_4.5.1-1_i386.deb
 a1afa2caa41d765e8fefc4796c6b11f068259c8f 2350684 
python-qt4-sql-dbg_4.5.1-1_i386.deb
 df117c81c9a9d29a4a45e8467399ffd698673912 152740 
pyqt4-dev-tools_4.5.1-1_i386.deb
 eedf5e20cb268f9a58eaf876d0dd13a7c1d2287f 260636 python-qt4-dev_4.5.1-1_all.deb
 525bd535d0270709ba61f68523782fb3ac00a277 5856002 python-qt4-doc_4.5.1-1_all.deb
Checksums-Sha256: 
 cbaf3da80200498d274596b920a4045d6f51ae667624b6025d3403e6613a7668 1885 
python-qt4_4.5.1-1.dsc
 5ec778056dcbbd5078d696e7407ba6274c1e8dab9b7778c2bb158a29a0b96bfe 6942490 
python-qt4_4.5.1.orig.tar.gz
 63c4548b8357dce61561b67f91a30eba3ed16110077752f27d339b4712607231 15752 
python-qt4_4.5.1-1.diff.gz
 3751a62f33a56fcfe1681a4a296fb74a7789186b7c0b02ada720d70c0818e857 4925186 
python-qt4_4.5.1-1_i386.deb
 295c8e2e6bc50db372b2c1ff120555de60f807cce6b812a214cd642e913c7ce1 51745942 
python-qt4-dbg_4.5.1-1_i386.deb
 b18adbd49644c5dbab68c5f2c95dafb65e32e8865e4e6a07a286ab03c1e296fe 202314 
python-qt4-phonon_4.5.1-1_i386.deb
 e329565fea8026e9896bf9c1f506d078399a21af98b61827e643fccfae704d80 3108224 
python-qt4-phonon-dbg_4.5.1-1_i386.deb
 c96e0f4bf8c76c1ef2b9cf02f7753809cde10fcaede3018cdfaddf84d4e69964 84606 
python-qt4-dbus_4.5.1-1_i386.deb
 6ad81336233d3c0855beb8e476ef30575fd863448b3f672d06a8eedd490c8dfc 234036 
python-qt4-dbus-dbg_4.5.1-1_i386.deb
 a49b4514395542c3358a295c5deaeca975f3da45ff988432b8edf4ff2d73bda3 128132 
python-qt4-gl_4.5.1-1_i386.deb
 0c625b41864f774d9852773bb7ebfde6a332c2a31858f64ee5cbcd3c28151f4e 1646280 
python-qt4-gl-dbg_4.5.1-1_i386.deb
 1640e3e8feb9da657a55bdfbce51b8e9a4c5763a4a1f1b9f881143f90c373ee5 173936 
python-qt4-sql_4.5.1-1_i386.deb
 7d9460e4c8e0e179d4a2b14631cec980ffa54dd89f580838c3af7761a2bdb472 2350684 
python-qt4-sql-dbg_4.5.1-1_i386.deb
 9492ac09a0f07431118d0c314eeb8b18f9534fa2253441fa514149c28b6ad559 152740 
pyqt4-dev-tools_4.5.1-1_i386.deb
 262429012a19db52878f7d33fa8417452af36ff3fb6b8044340338dd24fadc22 260636 
python-qt4-dev_4.5.1-1_all.deb
 da4cde222950dd6718eccd85e883b8b57afc666ed208bd079972e7d15742657c 5856002 
python-qt4-doc_4.5.1-1_all.deb
Files: 
 5db0b9f858ef0072cfccf0aabb6076d9 1885 python optional python-qt4_4.5.1-1.dsc
 80e877799ae8fb82f137c43fda18bff5 6942490 python optional 
python-qt4_4.5.1.orig.tar.gz
 1eb4d9ffac7bb009cf8167471c667065 15752 python optional 
python-qt4_4.5.1-1.diff.gz
 1abb2f7c27f49d7a2f3b0bfae5969bd5 4925186 python optional 
python-qt4_4.5.1-1_i386.deb
 e9891b0db1306cb3dbae4dd1bdfdfa4f 51745942 debug extra 
python-qt4-dbg_4.5.1-1_i386.deb
 c35c10ede412015f3d343e6015b97ec9 202314 python optional 

Accepted sip4-qt3 4.8.1-1 (source all i386)

2009-06-18 Thread Torsten Marek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 20:33:33 +0200
Source: sip4-qt3
Binary: sip4 python-sip4 python-sip4-dbg python-sip4-dev
Architecture: source all i386
Version: 4.8.1-1
Distribution: unstable
Urgency: low
Maintainer: Ricardo Javier Cardenes Medina rcarde...@debian.org
Changed-By: Torsten Marek shlo...@debian.org
Description: 
 python-sip4 - Python/C++ bindings generator runtime library
 python-sip4-dbg - Python/C++ bindings generator runtime library (debug 
extension)
 python-sip4-dev - Python/C++ bindings generator development files
 sip4   - Python/C++ bindings generator
Changes: 
 sip4-qt3 (4.8.1-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 f372ab70a4ad2f9f23051be8da82dd7c51528c8a 1466 sip4-qt3_4.8.1-1.dsc
 7e1b084fc7a20e26f4aa861979de3ea85f70 614105 sip4-qt3_4.8.1.orig.tar.gz
 37361f16fd3a72af846670152bb3e882a2170680 11460 sip4-qt3_4.8.1-1.diff.gz
 8f57e49dc987bb771221168f6c8d4e41d8629e17 74208 python-sip4-dev_4.8.1-1_all.deb
 d5e86c82345d0f90b063f7b929f3809f415424cd 346370 sip4_4.8.1-1_i386.deb
 ae1b93e6514191c1e550b2818c98021ab8795d84 153824 python-sip4_4.8.1-1_i386.deb
 0fff0a9bbb31620124225f986c926ade010a8d06 367596 
python-sip4-dbg_4.8.1-1_i386.deb
Checksums-Sha256: 
 0d4bf2a1fb6ccdd0a03515775e4e07dcf8086585ec4c9ff8a9e9bc7fbb74e2f8 1466 
sip4-qt3_4.8.1-1.dsc
 92094172e5deb00b78e6906945f26fec15963b933315837f9b646bf5044e58e3 614105 
sip4-qt3_4.8.1.orig.tar.gz
 6eeb191bb2d7a1d0c4e4827969c0533ee9df8731e37316bbd79a97055abdc3dd 11460 
sip4-qt3_4.8.1-1.diff.gz
 7d775f17abea9e0c30b656c422b764c6bcfd98ae58ab703329227474a4d43f2f 74208 
python-sip4-dev_4.8.1-1_all.deb
 e2d7b259d3faee66c101991863ea17ecc85a8f29cd173551601603a093da2078 346370 
sip4_4.8.1-1_i386.deb
 bad003720983676b92a4ca2bfd2bdbcd6180436b5c1481fe364def44141c6d2e 153824 
python-sip4_4.8.1-1_i386.deb
 9b2fc7a253ebec506cd0b037347951875ec401729f1ae3b1d526ba29c89477c5 367596 
python-sip4-dbg_4.8.1-1_i386.deb
Files: 
 4cc647bd64a651fb9285abea9f05e432 1466 devel optional sip4-qt3_4.8.1-1.dsc
 859e5b103ba5a083e4f2021eb6d99b26 614105 devel optional 
sip4-qt3_4.8.1.orig.tar.gz
 3ec4c2b1c3474081eade36370ea7ef84 11460 devel optional sip4-qt3_4.8.1-1.diff.gz
 2fe126caede266fc41cbe707d7e5ae49 74208 python optional 
python-sip4-dev_4.8.1-1_all.deb
 f6a4a021691a7e7790748cbe13562b84 346370 devel optional sip4_4.8.1-1_i386.deb
 03d0543bd29c4c5528b990b6a11f799b 153824 python optional 
python-sip4_4.8.1-1_i386.deb
 6db606bf6bca847f20eefd7525ca4931 367596 debug extra 
python-sip4-dbg_4.8.1-1_i386.deb

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

iEYEARECAAYFAko6kyYACgkQfMVFHqJEyFgzggCgsUXJyLutGqNUSR33e9rznQt6
yEAAoNFX0yZky2+4c2fQA6RNHeokp2uR
=QpyM
-END PGP SIGNATURE-


Accepted:
python-sip4-dbg_4.8.1-1_i386.deb
  to pool/main/s/sip4-qt3/python-sip4-dbg_4.8.1-1_i386.deb
python-sip4-dev_4.8.1-1_all.deb
  to pool/main/s/sip4-qt3/python-sip4-dev_4.8.1-1_all.deb
python-sip4_4.8.1-1_i386.deb
  to pool/main/s/sip4-qt3/python-sip4_4.8.1-1_i386.deb
sip4-qt3_4.8.1-1.diff.gz
  to pool/main/s/sip4-qt3/sip4-qt3_4.8.1-1.diff.gz
sip4-qt3_4.8.1-1.dsc
  to pool/main/s/sip4-qt3/sip4-qt3_4.8.1-1.dsc
sip4-qt3_4.8.1.orig.tar.gz
  to pool/main/s/sip4-qt3/sip4-qt3_4.8.1.orig.tar.gz
sip4_4.8.1-1_i386.deb
  to pool/main/s/sip4-qt3/sip4_4.8.1-1_i386.deb


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



Accepted salinfo 1.2-2 (ia64 source)

2009-06-18 Thread dann frazier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 15:12:43 -0600
Source: salinfo
Binary: salinfo
Architecture: source ia64
Version: 1.2-2
Distribution: unstable
Urgency: low
Maintainer: dann frazier da...@debian.org
Changed-By: dann frazier da...@debian.org
Description: 
 salinfo- Monitor and decode events from Itanium firmware
Changes: 
 salinfo (1.2-2) unstable; urgency=low
 .
   * Update Standards-Version to 3.8.1
   * Update debhelper build-dep to 7
   * Use dh_prep instead of the deprecated dh_clean
   * Capitalize Linux in the description for lintian
   * Don't ignore make clean error
   * Create a machine-readable copyright file
Checksums-Sha1: 
 58a1756a63ee05fb6d93a9da140a09cb01562ff1 915 salinfo_1.2-2.dsc
 a6560c03da60d1cc4ee0cfee0d7095764f139c85 4000 salinfo_1.2-2.diff.gz
 07f5898aa27bcd40867a5a71d68e995f89b55287 43338 salinfo_1.2-2_ia64.deb
Checksums-Sha256: 
 41a27931292a023ab063467fc938a823403af488ad71623a29b75e3190bd999b 915 
salinfo_1.2-2.dsc
 09a3d44f142828b6ae942fa5d96d95f3885fe294f1ceed596eede2c853e2950c 4000 
salinfo_1.2-2.diff.gz
 89ac3290cdca50974f9fe55b0f9158e15e77f34968bdfdb9335734dc943c8dcb 43338 
salinfo_1.2-2_ia64.deb
Files: 
 9ef2b5fa2cae829a8534cd9632365e5f 915 admin optional salinfo_1.2-2.dsc
 db85f465a0f2d66079e2ab6cec609826 4000 admin optional salinfo_1.2-2.diff.gz
 76ea2be204b8524c2a593709851e3bcb 43338 admin optional salinfo_1.2-2_ia64.deb

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

iD8DBQFKOrQ3huANDBmkLRkRAlfnAJwMmmbSoUwOtAjv/RQLnCFJDRp07ACfXrQ/
ll8P4HzymbjMAK2NKEcfW/c=
=ARcN
-END PGP SIGNATURE-


Accepted:
salinfo_1.2-2.diff.gz
  to pool/main/s/salinfo/salinfo_1.2-2.diff.gz
salinfo_1.2-2.dsc
  to pool/main/s/salinfo/salinfo_1.2-2.dsc
salinfo_1.2-2_ia64.deb
  to pool/main/s/salinfo/salinfo_1.2-2_ia64.deb


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



Accepted python-qt3 3.18.1-1 (source i386 all)

2009-06-18 Thread Torsten Marek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 20:50:37 +0200
Source: python-qt3
Binary: python-qt3 python-qt3-dbg python-qt3-gl python-qt3-gl-dbg python-qtext 
python-qtext-dbg pyqt-tools python-qt-dev python-qt3-doc
Architecture: source i386 all
Version: 3.18.1-1
Distribution: unstable
Urgency: low
Maintainer: Ricardo Javier Cardenes Medina rcarde...@debian.org
Changed-By: Torsten Marek shlo...@debian.org
Description: 
 pyqt-tools - pyuic and pylupdate for Qt3
 python-qt-dev - Qt bindings for Python - Development files
 python-qt3 - Qt3 bindings for Python
 python-qt3-dbg - Qt3 bindings for Python (debug extension)
 python-qt3-doc - Qt bindings for Python - Documentation and examples
 python-qt3-gl - Qt3 OpenGL bindings for Python
 python-qt3-gl-dbg - Qt3 OpenGL bindings for Python (debug extension)
 python-qtext - Qt extensions for PyQt
 python-qtext-dbg - Qt debug extensions for PyQt
Changes: 
 python-qt3 (3.18.1-1) unstable; urgency=low
 .
   * New upstream release
   * debian/patches/02_pyobject_typecheck_cast.dpatch,
 debian/patches/03_qdomdocument_setcontent.dpatch
 - Removed, applied upstream
   * debian/patches/04_qpixmap_loadfromdata.dpatch
 - Removed, fixed in sip 4.8.1
   * debian/pycompat
 - Removed, not needed anymore.
   * debian/control
 - Bumped build-dependencies on sip to 4.8.1
Checksums-Sha1: 
 93402e61c8cbe6ffbee843bb5e34bf0f083d0056 1756 python-qt3_3.18.1-1.dsc
 310c17bd3b0f81f8b516c5b755250171fa9c9a04 819441 python-qt3_3.18.1.orig.tar.gz
 e9d954cfa97e7ff3dba5565d3ec5046bdbbf4e5e 12346 python-qt3_3.18.1-1.diff.gz
 1109317440dbde9399d1077b069d6cd977e9cfc1 4702082 python-qt3_3.18.1-1_i386.deb
 75d4bf7c9c36013cbc0159b2a6372c773cf4f789 26259000 
python-qt3-dbg_3.18.1-1_i386.deb
 d594300afedc17e5709170bdd92199dba7e476c2 129724 python-qt3-gl_3.18.1-1_i386.deb
 92bd96d2c85093ebdd5dc6504b94276de428c8cf 1059970 
python-qt3-gl-dbg_3.18.1-1_i386.deb
 71fbd6b5795cdd1c0e18ae94939e5f51dcb3229b 436160 python-qtext_3.18.1-1_i386.deb
 fc62b8ed1af17672fac7369a47abe90196766f66 3202456 
python-qtext-dbg_3.18.1-1_i386.deb
 5d44c21b779c72aebb6669f48deef29ddba72d96 246094 pyqt-tools_3.18.1-1_i386.deb
 3bd34fd3aa4a93676d951520deb89d455e0e31f5 248058 python-qt-dev_3.18.1-1_all.deb
 483d262ec0e671cdf857479c3cf101df726f8475 350650 python-qt3-doc_3.18.1-1_all.deb
Checksums-Sha256: 
 c84efefcc33cd076ebd93d78fb2b1161f28e9e3ec24354cc35a49f2f21f116af 1756 
python-qt3_3.18.1-1.dsc
 7eb635f04f9b1853b6e9f969ddd9392d677083f462a27ec19285e1487c72c061 819441 
python-qt3_3.18.1.orig.tar.gz
 22967fd536d0e8d0a42bb16d76c50e782f150752335e9e35b7b0ea208d17b122 12346 
python-qt3_3.18.1-1.diff.gz
 c08b61b1cbf7fd6558b0274d56ce5be1b0845f4dd549739a33bb7391b505a561 4702082 
python-qt3_3.18.1-1_i386.deb
 5c2aba7255c7c95199d9bd9a28170a09a6881f8d4efd7ae4d201fde11d4e689c 26259000 
python-qt3-dbg_3.18.1-1_i386.deb
 d888bebfa464b9857306702c58c7e51034adfa3755ec19d57d5cae0a0205d659 129724 
python-qt3-gl_3.18.1-1_i386.deb
 c640a0ba9bb2bfd8f95bca4f92a118fb537f1c0680bcdc165168809f6ee0cb77 1059970 
python-qt3-gl-dbg_3.18.1-1_i386.deb
 a3a9a7990e403d6d434958fc74e4637b1cd4d507ffc41baa424681af6962430c 436160 
python-qtext_3.18.1-1_i386.deb
 dec2e42a3fddb8c631b24aee2f11349644c3b00ff3dacf854021d3226760f450 3202456 
python-qtext-dbg_3.18.1-1_i386.deb
 0542c7e70e8833789a61666a676fd9e78dd85aec620f5806711a87d095adf59e 246094 
pyqt-tools_3.18.1-1_i386.deb
 703450f0848a73eb44de913a12464a4c5e565293a9e8b23f72823a3fcda6221c 248058 
python-qt-dev_3.18.1-1_all.deb
 a8cff3ea7347171aae15b014f2858f7a517c7f44152024e7c2fbf06dde9b2ec5 350650 
python-qt3-doc_3.18.1-1_all.deb
Files: 
 5b07fe48b9cc89aca195f43fc12e120c 1756 python optional python-qt3_3.18.1-1.dsc
 f1d120495d1aaf393819e988c0a7bb7e 819441 python optional 
python-qt3_3.18.1.orig.tar.gz
 78ecb62815575271624c0dbdcbec074d 12346 python optional 
python-qt3_3.18.1-1.diff.gz
 37b86b5612d504322e43ee09ceb65c17 4702082 python optional 
python-qt3_3.18.1-1_i386.deb
 35fd065351dc045a9b48052ee0c2bebe 26259000 debug extra 
python-qt3-dbg_3.18.1-1_i386.deb
 b158fe70a6793abcb704ca1b0a2b4d50 129724 python optional 
python-qt3-gl_3.18.1-1_i386.deb
 08744e404b2fa23775eaaac95236704b 1059970 debug extra 
python-qt3-gl-dbg_3.18.1-1_i386.deb
 220b8961cbb7b856b4116088f25922d0 436160 python optional 
python-qtext_3.18.1-1_i386.deb
 62a994d833639b16fc92fdd404f3fe98 3202456 debug extra 
python-qtext-dbg_3.18.1-1_i386.deb
 5a80564ef68bb6353060b73de7d1a07d 246094 python optional 
pyqt-tools_3.18.1-1_i386.deb
 4ba5a68f207675e9fc3163c129d1d96e 248058 python optional 
python-qt-dev_3.18.1-1_all.deb
 54952e15ade7ffb9dcffea896cb7a928 350650 doc optional 
python-qt3-doc_3.18.1-1_all.deb

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

iEYEARECAAYFAko6ky4ACgkQfMVFHqJEyFiEsACgndZZq8PBtGxn4dRNOCgN3AKL
9f8An3DMVonjIzmyPVN9XyGGC+aoa1DF
=U0hy
-END PGP SIGNATURE-


Accepted:
pyqt-tools_3.18.1-1_i386.deb
  to pool/main/p/python-qt3/pyqt-tools_3.18.1-1_i386.deb

Accepted qscintilla2 2.4-2 (source all i386)

2009-06-18 Thread Torsten Marek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 20:46:57 +0200
Source: qscintilla2
Binary: libqscintilla2-5 libqscintilla2-designer libqscintilla2-dev 
libqscintilla2-doc python-qscintilla2
Architecture: source all i386
Version: 2.4-2
Distribution: unstable
Urgency: low
Maintainer: Torsten Marek shlo...@debian.org
Changed-By: Torsten Marek shlo...@debian.org
Description: 
 libqscintilla2-5 - The Qt4 port of the Scintilla source code editing widget
 libqscintilla2-designer - Qt4 Designer plugin for QScintilla 2
 libqscintilla2-dev - The Scintilla source code editing widget for Qt4, 
development fil
 libqscintilla2-doc - API documentation for QScintilla 2
 python-qscintilla2 - Python bindings for QScintilla 2
Changes: 
 qscintilla2 (2.4-2) unstable; urgency=low
 .
   * Upload to unstable
   * debian/control
 - Bump dependencies on sip to 4.8.1
 - Depend on python-qt4 4.5.1
Checksums-Sha1: 
 4e16c2230fd077eb1f231d65c70d1d98f27edc3f 1301 qscintilla2_2.4-2.dsc
 60a909cc5152396c51b7bdc4a97e92f93c256f55 4945 qscintilla2_2.4-2.diff.gz
 82007e60b3de8740331be389dd0de9d63d89eb76 76396 libqscintilla2-dev_2.4-2_all.deb
 b98dda83f6a5a0bf35e8fbb13959fbdddb405bb0 855840 
libqscintilla2-doc_2.4-2_all.deb
 529b8e0b9ffff0833c0852c4ee802b019eee 730298 libqscintilla2-5_2.4-2_i386.deb
 db8fef5f9564f31d9fb9f1b3c72ede01a235c5c3 27622 
libqscintilla2-designer_2.4-2_i386.deb
 84cd888b71103f3f653cd963ee2e1bc6172d8ff7 374246 
python-qscintilla2_2.4-2_i386.deb
Checksums-Sha256: 
 ea70eba789aac38f8b109641f13c4165c6ae73f0bbf67922edbfba1044a25deb 1301 
qscintilla2_2.4-2.dsc
 be04ec88432249b6b50ff3a929dc04a74696749376e7dbb19af74c72a9dad157 4945 
qscintilla2_2.4-2.diff.gz
 b501cbe1fc5120255deb9504ec475ec55d9a48512c361f442d50a6b4b662b758 76396 
libqscintilla2-dev_2.4-2_all.deb
 83d363c7ebade6f7235960c3553efae970c86761db7b75c1a9fbf5352cb7eab7 855840 
libqscintilla2-doc_2.4-2_all.deb
 d8f9a14cc166862ad2b905286633111b42a38e208e6b209c9e2d89d6bdc84d12 730298 
libqscintilla2-5_2.4-2_i386.deb
 c46e9c73672d72dc8f5a8525e474e4c5b734f57c6189ef6e60499f3578f4d143 27622 
libqscintilla2-designer_2.4-2_i386.deb
 a77604b8eef3ec5bac5edf390d1392cbc9cda5fae6805c5888418ff7e4c2d446 374246 
python-qscintilla2_2.4-2_i386.deb
Files: 
 f843b8feda8a68d961bac8ece3c2e134 1301 libs extra qscintilla2_2.4-2.dsc
 49077f8ed11648ef02eae023c197ad95 4945 libs extra qscintilla2_2.4-2.diff.gz
 050f619ee74e98fe5139e91b176a9ec3 76396 libdevel extra 
libqscintilla2-dev_2.4-2_all.deb
 757d3d297daa24311e13d0c41132a4fb 855840 doc extra 
libqscintilla2-doc_2.4-2_all.deb
 6e991512908549e2647d0e69b98095d6 730298 libs extra 
libqscintilla2-5_2.4-2_i386.deb
 6ffd9b3df36833a717132e8e4cfa49b5 27622 misc extra 
libqscintilla2-designer_2.4-2_i386.deb
 439a10b5568d89e09c9bfaeee0fd6cdf 374246 python extra 
python-qscintilla2_2.4-2_i386.deb

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

iEYEARECAAYFAko6oN0ACgkQfMVFHqJEyFjXfACgow7fy0ZmE9X1VoZVQhczTnbL
5toAn0mzG8W7lg1Fyp2bB+ZjSf5HMPEX
=KeWS
-END PGP SIGNATURE-


Accepted:
libqscintilla2-5_2.4-2_i386.deb
  to pool/main/q/qscintilla2/libqscintilla2-5_2.4-2_i386.deb
libqscintilla2-designer_2.4-2_i386.deb
  to pool/main/q/qscintilla2/libqscintilla2-designer_2.4-2_i386.deb
libqscintilla2-dev_2.4-2_all.deb
  to pool/main/q/qscintilla2/libqscintilla2-dev_2.4-2_all.deb
libqscintilla2-doc_2.4-2_all.deb
  to pool/main/q/qscintilla2/libqscintilla2-doc_2.4-2_all.deb
python-qscintilla2_2.4-2_i386.deb
  to pool/main/q/qscintilla2/python-qscintilla2_2.4-2_i386.deb
qscintilla2_2.4-2.diff.gz
  to pool/main/q/qscintilla2/qscintilla2_2.4-2.diff.gz
qscintilla2_2.4-2.dsc
  to pool/main/q/qscintilla2/qscintilla2_2.4-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 tar-doc 1.22-1 (source all)

2009-06-18 Thread Bdale Garbee
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 15:13:54 -0600
Source: tar-doc
Binary: tar-doc
Architecture: source all
Version: 1.22-1
Distribution: unstable
Urgency: low
Maintainer: Bdale Garbee bd...@gag.com
Changed-By: Bdale Garbee bd...@gag.com
Description: 
 tar-doc- documentation for the tar package
Changes: 
 tar-doc (1.22-1) unstable; urgency=low
 .
   * new upstream version
Checksums-Sha1: 
 2d7d39a33f10e03a43fb9acd83369e9ae454bd0d 923 tar-doc_1.22-1.dsc
 48ea0df3f290039a59289d66928a935d6a5a31a1 360701 tar-doc_1.22.orig.tar.gz
 6ed1de307c029e6834f7434cc74474e63795574b 2405 tar-doc_1.22-1.diff.gz
 7e2b0bdbfb0f6a5ca3ce9283a6610b3ba6374b39 171016 tar-doc_1.22-1_all.deb
Checksums-Sha256: 
 699845fcc7c9dd23f896a3afe95146400e32b3bea54ccb2e343c4ef8d61d5104 923 
tar-doc_1.22-1.dsc
 cb20c1c9c307dec0e0d92f809730d82bbb32136285a98efd553250b86df7266c 360701 
tar-doc_1.22.orig.tar.gz
 ac53cb25c46e1a33f76dc3331dbd1c0fb2d75e0cf425cca59e5f1743991bd643 2405 
tar-doc_1.22-1.diff.gz
 40446f6bb1b133b5d96232f4bcbf9bdec02c21caaf0d8851933892a7ec26 171016 
tar-doc_1.22-1_all.deb
Files: 
 2be4cd9f84ae4ebadd328f8a1f0fd1c4 923 non-free/doc optional tar-doc_1.22-1.dsc
 8b3c5bfb5b33c83c11323b61a0c6835e 360701 non-free/doc optional 
tar-doc_1.22.orig.tar.gz
 58acf1cb391aa77f60b6bfbb9bf30b00 2405 non-free/doc optional 
tar-doc_1.22-1.diff.gz
 36c68de529784f12daccc1b3d69e1ddb 171016 non-free/doc optional 
tar-doc_1.22-1_all.deb

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

iD8DBQFKOq95ZKfAp/LPAagRAkz2AJ9jgNZ2uTJFU3XuvJAVH7g0w5K+zQCfTJkw
Hi/CFpxVKr8hcXQeZVbyT4g=
=Z3i/
-END PGP SIGNATURE-


Accepted:
tar-doc_1.22-1.diff.gz
  to pool/non-free/t/tar-doc/tar-doc_1.22-1.diff.gz
tar-doc_1.22-1.dsc
  to pool/non-free/t/tar-doc/tar-doc_1.22-1.dsc
tar-doc_1.22-1_all.deb
  to pool/non-free/t/tar-doc/tar-doc_1.22-1_all.deb
tar-doc_1.22.orig.tar.gz
  to pool/non-free/t/tar-doc/tar-doc_1.22.orig.tar.gz


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



Accepted bzr-rebase 0.5.1-1 (source all)

2009-06-18 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 19 Jun 2009 00:05:36 +0200
Source: bzr-rebase
Binary: bzr-rebase
Architecture: source all
Version: 0.5.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-rebase - Rebase plugin for Bazaar
Changes: 
 bzr-rebase (0.5.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 4fce946e3a11ccc7485061321d38c76936358f9c 1381 bzr-rebase_0.5.1-1.dsc
 53686580e4d9f14434682244dd126ad54f87bb2b 28207 bzr-rebase_0.5.1.orig.tar.gz
 a30763ca3b87232584e85e0ccc5cd014d89c6257 2312 bzr-rebase_0.5.1-1.diff.gz
 eb6b51a2d3ac02f3a1dcb406620a85825438d011 26040 bzr-rebase_0.5.1-1_all.deb
Checksums-Sha256: 
 735086382daf449bb3c9dfec69af0dad2582bc8d21c8fe46efeb2e0c6b88b0ad 1381 
bzr-rebase_0.5.1-1.dsc
 a07f12364e38241fd86941a3fd00910a80b10ee010a9de1de206997717786d76 28207 
bzr-rebase_0.5.1.orig.tar.gz
 2a3246a87def73d7f69a70aa372c612955a52e978b074687be2970a150db5113 2312 
bzr-rebase_0.5.1-1.diff.gz
 16eaa4bd530b3db667a5f0cbf4a3842c4464a3f041d0834dbee035abd02c124e 26040 
bzr-rebase_0.5.1-1_all.deb
Files: 
 c9db6e54370b3e7aec5ee892c1bf3ada 1381 vcs optional bzr-rebase_0.5.1-1.dsc
 e06e9a7ea2cee75e60e72000e802ef92 28207 vcs optional 
bzr-rebase_0.5.1.orig.tar.gz
 738af5aef7a7bf08c75e49ce89a6d47b 2312 vcs optional bzr-rebase_0.5.1-1.diff.gz
 f475448063861b0c70cc8a1b5952e122 26040 vcs optional bzr-rebase_0.5.1-1_all.deb

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

iJwEAQECAAYFAko6utIACgkQDLQl4QYPZuU26wQAk9ZstZA/mZKtd9Cv8fiQyz62
t4mLKhnwDsAwDwctX66Ow/S+b9dXSdUMJA0ojNN4h3bK2OM5K59Bg28RYsqydeDr
uJaGP7I+I4zRoAC8fRnl4zDO3Pe8yJqQiLgxdrcQ4ZCPujIF9frbwNng76TNaIJw
DeX7IwJG963qd9mi3lE=
=15Je
-END PGP SIGNATURE-


Accepted:
bzr-rebase_0.5.1-1.diff.gz
  to pool/main/b/bzr-rebase/bzr-rebase_0.5.1-1.diff.gz
bzr-rebase_0.5.1-1.dsc
  to pool/main/b/bzr-rebase/bzr-rebase_0.5.1-1.dsc
bzr-rebase_0.5.1-1_all.deb
  to pool/main/b/bzr-rebase/bzr-rebase_0.5.1-1_all.deb
bzr-rebase_0.5.1.orig.tar.gz
  to pool/main/b/bzr-rebase/bzr-rebase_0.5.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 gnome-netstatus 2.26.0-1 (source amd64)

2009-06-18 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 19:18:42 +0200
Source: gnome-netstatus
Binary: gnome-netstatus-applet
Architecture: source amd64
Version: 2.26.0-1
Distribution: unstable
Urgency: low
Maintainer: Jerry Haltom was...@larvalstage.net
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gnome-netstatus-applet - Network status applet for GNOME
Closes: 524498
Changes: 
 gnome-netstatus (2.26.0-1) unstable; urgency=low
 .
   * Stop mentioning GNOME 2.
   * 01_use-gksu.patch: dropped, we launch network-admin without gksu
 now. Closes: #524498.
   * New upstream release.
   * Bump GTK+ build-dependency.
Checksums-Sha1: 
 25d45de2ce8a0d627ece0312347010cc6b501ada 1474 gnome-netstatus_2.26.0-1.dsc
 3200d60a3ece52687a2653385927622d99d5beb7 726276 
gnome-netstatus_2.26.0.orig.tar.gz
 31849c79eb7af905325ce14ee46e4be939bfddfa 3911 gnome-netstatus_2.26.0-1.diff.gz
 d0c6ff1d39a7b68dbb597471efb225200b577885 329884 
gnome-netstatus-applet_2.26.0-1_amd64.deb
Checksums-Sha256: 
 1aa00226b827e970659973ff9df8bab8c833f9d20e75b8a071a72f7a61fcd2e8 1474 
gnome-netstatus_2.26.0-1.dsc
 3834ef7cf189860ebe9387dd990d000967ee76fa12a35349080027791e4da092 726276 
gnome-netstatus_2.26.0.orig.tar.gz
 d86331cd067951645f65663d7ea5136b949594eca82f132024d2adc528d20c41 3911 
gnome-netstatus_2.26.0-1.diff.gz
 8d147d35ed093a19a93f14ad853b8195e76c14c996ca15112d4ca90b07d5577a 329884 
gnome-netstatus-applet_2.26.0-1_amd64.deb
Files: 
 5c7d3ce9cd5f7ff5f93101e9e63d10cf 1474 gnome optional 
gnome-netstatus_2.26.0-1.dsc
 600bad2227eef28d43c0eb7d2f10f485 726276 gnome optional 
gnome-netstatus_2.26.0.orig.tar.gz
 7bde7e5fe6c3a71794790666dae53b31 3911 gnome optional 
gnome-netstatus_2.26.0-1.diff.gz
 5594a244dfa3ae3d60760e90e45c9273 329884 gnome optional 
gnome-netstatus-applet_2.26.0-1_amd64.deb

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

iD8DBQFKOsJBrSla4ddfhTMRAspiAKDI922t5XsHqOpJMTucBI15xK4jRACg1Mic
gk33hK9qxjbj8l6dGOpoDFI=
=GFIA
-END PGP SIGNATURE-


Accepted:
gnome-netstatus-applet_2.26.0-1_amd64.deb
  to pool/main/g/gnome-netstatus/gnome-netstatus-applet_2.26.0-1_amd64.deb
gnome-netstatus_2.26.0-1.diff.gz
  to pool/main/g/gnome-netstatus/gnome-netstatus_2.26.0-1.diff.gz
gnome-netstatus_2.26.0-1.dsc
  to pool/main/g/gnome-netstatus/gnome-netstatus_2.26.0-1.dsc
gnome-netstatus_2.26.0.orig.tar.gz
  to pool/main/g/gnome-netstatus/gnome-netstatus_2.26.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 spip 2.0.8-1 (source all)

2009-06-18 Thread Romain Beauxis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 08 Jun 2009 17:40:44 +0200
Source: spip
Binary: spip
Architecture: source all
Version: 2.0.8-1
Distribution: unstable
Urgency: low
Maintainer: SPIP packaging team spip-maintain...@lists.alioth.debian.org
Changed-By: Romain Beauxis to...@rastageeks.org
Description: 
 spip   - website engine for publishing
Changes: 
 spip (2.0.8-1) unstable; urgency=low
 .
   * New upstream release.
   * Bumped standards version to 3.8.2
   * Bumped compat to 7
Checksums-Sha1: 
 645bcf5498ad642d7262805b6e18320df0ccb53f 1389 spip_2.0.8-1.dsc
 b189d6d9260026d7c5a063d9aa57f8e39ca77bf4 3428361 spip_2.0.8.orig.tar.gz
 e1a640bc73cfe88c1a67a2b175758cc5186b368c 10561 spip_2.0.8-1.diff.gz
 f8c2335b217964761c106dd22abfa3b23c72db7f 3359680 spip_2.0.8-1_all.deb
Checksums-Sha256: 
 153134e06e83c785429e523c6a78023a921d11b503ef81e118053dbea70d66a4 1389 
spip_2.0.8-1.dsc
 6e4fa3a45e896aa0c701b6ebfe4fc3ed459d0b239adaa489a882664e52567d0b 3428361 
spip_2.0.8.orig.tar.gz
 397dd7d611d27c81b7e3709f3257cc0cb17d82c15553e4c3269ad7486e1c15aa 10561 
spip_2.0.8-1.diff.gz
 90218915ff3970ec1f82dc29237072fc583b94b732c5e997fd921454a0aad4ce 3359680 
spip_2.0.8-1_all.deb
Files: 
 889d174cc1abe3d300e701191208430d 1389 web extra spip_2.0.8-1.dsc
 2ef6829f401a0122e603d240cff4e2e9 3428361 web extra spip_2.0.8.orig.tar.gz
 59511df34d6c8d4a9e8a24f15fcc6944 10561 web extra spip_2.0.8-1.diff.gz
 572638f7008cbf19c6374ecce90bf9ec 3359680 web extra spip_2.0.8-1_all.deb

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

iQEcBAEBAgAGBQJKOsoZAAoJEAC5aaocqV0ZPuoH/0isz5TfiuzOEKDlu65wm8Ax
KExAm7Ljklqty2fKiVHLZ4PRgJ/x4/3tzaTA/ZqlGaL8n3tnOzYHnBYjA2bifwOn
zJ5IH0bzNWmXpyNyvKXBAOQ9i2d54DZyB+DxK1J9QpnIlRLpUuR2+mVeWaBgjSem
OD8Ey66MlOTAJYZT9Z5H7BlRiD/RYGuy0EG+PpqKhD75VM7iuXhtdT1XPEumVOq6
PSf4yoZAxBdkQ6bgm4FVwiRi2n9u8eIFQ13y8EoXAbNgVvkh4B97ZKKV1Hds/epl
7ikb2KLsYrw/k2Dd1+AX39zSgSu8MamdGwkIV5LVPjm5SZdWTayCKvjhtrQVh4A=
=B/zP
-END PGP SIGNATURE-


Accepted:
spip_2.0.8-1.diff.gz
  to pool/main/s/spip/spip_2.0.8-1.diff.gz
spip_2.0.8-1.dsc
  to pool/main/s/spip/spip_2.0.8-1.dsc
spip_2.0.8-1_all.deb
  to pool/main/s/spip/spip_2.0.8-1_all.deb
spip_2.0.8.orig.tar.gz
  to pool/main/s/spip/spip_2.0.8.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 spip 2.0.8-2 (source all)

2009-06-18 Thread Romain Beauxis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 19 Jun 2009 01:24:03 +0200
Source: spip
Binary: spip
Architecture: source all
Version: 2.0.8-2
Distribution: unstable
Urgency: low
Maintainer: SPIP packaging team spip-maintain...@lists.alioth.debian.org
Changed-By: Romain Beauxis to...@rastageeks.org
Description: 
 spip   - website engine for publishing
Closes: 521682 530193
Changes: 
 spip (2.0.8-2) unstable; urgency=low
 .
   * Fix bashism in spip_add_site
   Closes: #530193
   * Added description of what exactly is SPIP
 in long description.
   Closes: #521682
Checksums-Sha1: 
 2feaea7fd2dd0b4424823a70c1ffaa0b2b8d5b75 1389 spip_2.0.8-2.dsc
 8754d0a4813216c655b0bb35cc338ff154ebbbc3 10739 spip_2.0.8-2.diff.gz
 dc725bdd3e075e34447b9caf0af0c677f9a28b9e 3359846 spip_2.0.8-2_all.deb
Checksums-Sha256: 
 186cccd01b13aa368f7c8733920e21056c2de5536f00179d1260a4d803f5af63 1389 
spip_2.0.8-2.dsc
 dc27faa54a15aa1a2691a2938b901df4eb3e8da8befcf034a79a0e5df31ce1c4 10739 
spip_2.0.8-2.diff.gz
 d350f571caa65788edf3b26c705a62f994a301962f23c02fa43cfb5e92653bd7 3359846 
spip_2.0.8-2_all.deb
Files: 
 6295a175a796a5ef6d04e976656ee7a0 1389 web extra spip_2.0.8-2.dsc
 d66eb77617de02a9587a8e56101f9ad4 10739 web extra spip_2.0.8-2.diff.gz
 f2ffe081245e3d3c21baf7f592d3363f 3359846 web extra spip_2.0.8-2_all.deb

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

iQEcBAEBAgAGBQJKOszsAAoJEAC5aaocqV0ZYNIH/ReDerXP3fBUMCIL4RMmN8DC
aKvIUB9+ZoSrwr/QiDxERXzq/C3cMDVSKqFMFoRwCzn395nJGU83/n26RD70xisL
0KYhH3zZEem7DHHt4VNuV5W2ShU2BVgKFdGjFGvWKfJ940Oumo5+bwgG5Y2PZnYW
nT0bZ1V03pEr/07mk0eaSra+i6ceZJRlypiwze4a/ES8I4bMuxc8ulr8RP5vL/w/
PqDjMRXQB/jHRfWarE6nyNuCHgxXfsXUj58d0BHr7I2BZDBhQqvIqerxgsjt55lN
6XEibr/lLX5a23YtClvYgudM3+jRrLqkot5US45/+lm1ZCECKj71zbRt9NfPF1g=
=Aj9C
-END PGP SIGNATURE-


Accepted:
spip_2.0.8-2.diff.gz
  to pool/main/s/spip/spip_2.0.8-2.diff.gz
spip_2.0.8-2.dsc
  to pool/main/s/spip/spip_2.0.8-2.dsc
spip_2.0.8-2_all.deb
  to pool/main/s/spip/spip_2.0.8-2_all.deb


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



Accepted ldb 1:0.9.6~git20090617-1 (source amd64)

2009-06-18 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 00:32:05 +0200
Source: ldb
Binary: libldb0 ldb-tools libldb-dev python-ldb
Architecture: source amd64
Version: 1:0.9.6~git20090617-1
Distribution: unstable
Urgency: low
Maintainer: Jelmer Vernooij jel...@debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 ldb-tools  - LDAP-like embedded database - tools
 libldb-dev - LDAP-like embedded database - development files
 libldb0- LDAP-like embedded database - shared library
 python-ldb - Python bindings for LDB
Changes: 
 ldb (1:0.9.6~git20090617-1) unstable; urgency=low
 .
   * New upstream snapshot.
   * Bump standards version to 3.8.1.
Checksums-Sha1: 
 ff367450a801395ed72a29d859b82f7a2b48a922 1465 ldb_0.9.6~git20090617-1.dsc
 1b143acaee1446809c1644b3eafc97ea140f4d70 668400 
ldb_0.9.6~git20090617.orig.tar.gz
 e1d56e522693004cb90e96b9e81d272f243d0db4 3176 ldb_0.9.6~git20090617-1.diff.gz
 f3d59ba8a4773a20dce21733389b7c08045d587f 81868 
libldb0_0.9.6~git20090617-1_amd64.deb
 b0f777b1a62f3f5951225d2374b152b44ff3d29e 35890 
ldb-tools_0.9.6~git20090617-1_amd64.deb
 509f2b661e65b4deadcaa4842d23dff642e7aa79 126840 
libldb-dev_0.9.6~git20090617-1_amd64.deb
 18fa87174ccd55319d26cbe2a152a864047cfc8c 21570 
python-ldb_0.9.6~git20090617-1_amd64.deb
Checksums-Sha256: 
 60aff0b058ba8f2f399e69dd016b5574e20860bed067a98736c77bace65911d1 1465 
ldb_0.9.6~git20090617-1.dsc
 77c4ee11e0be0958c1affe77cd0ba55c3c1926a2a0ff0bf59f587910c70d517c 668400 
ldb_0.9.6~git20090617.orig.tar.gz
 412621cdb6700bb1388532deb6937e0be7581935abc21f980a4cbc017c8330e4 3176 
ldb_0.9.6~git20090617-1.diff.gz
 fd75cca010557642d898a5c34d25135bf127a0578637b14b0f0e9337b6a075d8 81868 
libldb0_0.9.6~git20090617-1_amd64.deb
 56ee704e67dd7ee69858d3e9caa48b7a7e36138ddf6e334bbb4554cf6c7a8b74 35890 
ldb-tools_0.9.6~git20090617-1_amd64.deb
 3e0119a51e507a9fe97d4dedf992a58aa262919f918e2f5e78dd85d353daae04 126840 
libldb-dev_0.9.6~git20090617-1_amd64.deb
 e9af1620707eed7561d38ed7b10bdb5350e7bea4818c6dfe1013383f1c80ee50 21570 
python-ldb_0.9.6~git20090617-1_amd64.deb
Files: 
 326734529b10919f2d7538d194d60f30 1465 devel optional 
ldb_0.9.6~git20090617-1.dsc
 458f2571d12b5db9eb83a21e8871b92c 668400 devel optional 
ldb_0.9.6~git20090617.orig.tar.gz
 f76816c451242bcc44795f187ff07866 3176 devel optional 
ldb_0.9.6~git20090617-1.diff.gz
 c213ce985771b82dd8d6c8dc5d8fe798 81868 libs optional 
libldb0_0.9.6~git20090617-1_amd64.deb
 2189bc64c0b43e7af0237c09b6dcb4e1 35890 utils optional 
ldb-tools_0.9.6~git20090617-1_amd64.deb
 27b8b94f57e0c7a0afbc3882681456be 126840 libdevel optional 
libldb-dev_0.9.6~git20090617-1_amd64.deb
 82d4eb74ddb65d53eeff1d1ff58461f6 21570 python optional 
python-ldb_0.9.6~git20090617-1_amd64.deb

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

iJwEAQECAAYFAko6zmsACgkQDLQl4QYPZuUccQP/dZa2SazWCu8CwLa+jmhyiCh5
brpXueRDSQmPt/OWzoRVrJGIZyZ4ej68dqDFBxYDqkgCdasIREZLP9K8NYEllsVJ
iyN/WFX6rprn9z5J3ZakHMfHI6rgETWSlJeK84FIyOEirZsLnuapMQjQeEfSbL2I
kyKHd3yQktgUXKuDm5g=
=2LU0
-END PGP SIGNATURE-


Accepted:
ldb-tools_0.9.6~git20090617-1_amd64.deb
  to pool/main/l/ldb/ldb-tools_0.9.6~git20090617-1_amd64.deb
ldb_0.9.6~git20090617-1.diff.gz
  to pool/main/l/ldb/ldb_0.9.6~git20090617-1.diff.gz
ldb_0.9.6~git20090617-1.dsc
  to pool/main/l/ldb/ldb_0.9.6~git20090617-1.dsc
ldb_0.9.6~git20090617.orig.tar.gz
  to pool/main/l/ldb/ldb_0.9.6~git20090617.orig.tar.gz
libldb-dev_0.9.6~git20090617-1_amd64.deb
  to pool/main/l/ldb/libldb-dev_0.9.6~git20090617-1_amd64.deb
libldb0_0.9.6~git20090617-1_amd64.deb
  to pool/main/l/ldb/libldb0_0.9.6~git20090617-1_amd64.deb
python-ldb_0.9.6~git20090617-1_amd64.deb
  to pool/main/l/ldb/python-ldb_0.9.6~git20090617-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 bzr-gtk 0.95.0+bzr649-1 (source all)

2009-06-18 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 09 Jun 2009 00:33:24 +0200
Source: bzr-gtk
Binary: bzr-gtk
Architecture: source all
Version: 0.95.0+bzr649-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr-gtk- provides graphical interfaces to Bazaar (bzr) version control
Closes: 533575
Changes: 
 bzr-gtk (0.95.0+bzr649-1) unstable; urgency=low
 .
   * New upstream snapshot.
+ Fixes support with Bazaar 1.12. (Closes: #533575)
Checksums-Sha1: 
 5f35e4c4ef4c22b9387550c015ce5996f1c3cdbc 1475 bzr-gtk_0.95.0+bzr649-1.dsc
 ff18eecac6b308ada2f04ec83f5b492c63ea868e 236547 
bzr-gtk_0.95.0+bzr649.orig.tar.gz
 1661f125fba9cb04a23086a2a8648209641b9ede 4859 bzr-gtk_0.95.0+bzr649-1.diff.gz
 bedc72a4327499f86234610fa8fc0c51969b8b77 240338 bzr-gtk_0.95.0+bzr649-1_all.deb
Checksums-Sha256: 
 d53bc9a98ea835c990615c1ff66ff72f6062a8cd6f9d8c7c824eca9d6127bbde 1475 
bzr-gtk_0.95.0+bzr649-1.dsc
 55f4d0454745b71a1200506a32d8478b2fe574a142c6c9cca2fd42259796455f 236547 
bzr-gtk_0.95.0+bzr649.orig.tar.gz
 b726510eb66dcdb0ebd26dfc61dca7f797dc614b1ce9e44dc08c50858e2bfd56 4859 
bzr-gtk_0.95.0+bzr649-1.diff.gz
 1342d4446b466aaee465c035f18b9febb52713c5ea6957a7ab36edcfccb79817 240338 
bzr-gtk_0.95.0+bzr649-1_all.deb
Files: 
 ac8c19669f15ac91f336d3ee881642d7 1475 python optional 
bzr-gtk_0.95.0+bzr649-1.dsc
 772d7f462fb7eef78ad31036ed2b2e66 236547 python optional 
bzr-gtk_0.95.0+bzr649.orig.tar.gz
 cfd9bb57da1c4ca5a83a89900b48120d 4859 python optional 
bzr-gtk_0.95.0+bzr649-1.diff.gz
 10fb56500340963462851be62dd8d9aa 240338 python optional 
bzr-gtk_0.95.0+bzr649-1_all.deb

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

iJwEAQECAAYFAko6010ACgkQDLQl4QYPZuX6EAQAgij6GllEV/Nv60ErsT9o8n96
xVqcPAdEBg6KiW/BVlHspOrJ8/fg45ICd0YwGc+IJB+x3DuklKM3X7oBrzdzSp93
1Qtc8LIrUguJg4E3JAJKhc6r+iQAjHP/Qhdi/YsVn1GKu+5sM8tiqAQXQoRz8EFQ
9CIUaQMPxSlEKaxo+M8=
=BN1W
-END PGP SIGNATURE-


Accepted:
bzr-gtk_0.95.0+bzr649-1.diff.gz
  to pool/main/b/bzr-gtk/bzr-gtk_0.95.0+bzr649-1.diff.gz
bzr-gtk_0.95.0+bzr649-1.dsc
  to pool/main/b/bzr-gtk/bzr-gtk_0.95.0+bzr649-1.dsc
bzr-gtk_0.95.0+bzr649-1_all.deb
  to pool/main/b/bzr-gtk/bzr-gtk_0.95.0+bzr649-1_all.deb
bzr-gtk_0.95.0+bzr649.orig.tar.gz
  to pool/main/b/bzr-gtk/bzr-gtk_0.95.0+bzr649.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 mediawiki 1:1.15.0-1 (source all amd64)

2009-06-18 Thread Romain Beauxis
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 19 Jun 2009 01:38:50 +0200
Source: mediawiki
Binary: mediawiki mediawiki-math
Architecture: source all amd64
Version: 1:1.15.0-1
Distribution: unstable
Urgency: low
Maintainer: Mediawiki Maintenance Team 
pkg-mediawiki-de...@lists.alioth.debian.org
Changed-By: Romain Beauxis to...@rastageeks.org
Description: 
 mediawiki  - website engine for collaborative work
 mediawiki-math - math rendering plugin for MediaWiki
Closes: 501569 520121 530328
Changes: 
 mediawiki (1:1.15.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Upstream added support for OASIS documents.
   Closes: #530328
   * Refreshed quilt patches
   * Bumped standards versions to 3.8.2
   * Bumped compat to 7
   * Pointed to GPL-2 in debian/copyright
   * Added php5-sqlite to possible DB backend dependencies.
   Closes: #501569
   * Proofread README.Debian, upgrade is documented there.
   Closes: #520121
Checksums-Sha1: 
 a40f42d1295c0c4229330e1d22961b72710c08c0 1527 mediawiki_1.15.0-1.dsc
 44ec5acf3f8feab2381dd5e116820b7a8bdf8c23 10828007 mediawiki_1.15.0.orig.tar.gz
 ed19a7b0d5ab915ad59cb0e1de1721a0424d6ca6 29156 mediawiki_1.15.0-1.diff.gz
 ac89a281a6231ba8f829bc893756b687b58c89a7 10809318 mediawiki_1.15.0-1_all.deb
 ed98de3b5863a5657dfaf716c364c07b65c5e79d 178814 
mediawiki-math_1.15.0-1_amd64.deb
Checksums-Sha256: 
 62d8263ee124f23f2ec0f375718ba543cb6c27a21a129879d4cc138d550139c3 1527 
mediawiki_1.15.0-1.dsc
 b23a314f4680c8cf6d57225ed3260e0205d64b7f6d3d4db4672c57967bdfe948 10828007 
mediawiki_1.15.0.orig.tar.gz
 7075d5d07feb96704f163b498c88201d1aa101a006496ec864dfc9a99e702f86 29156 
mediawiki_1.15.0-1.diff.gz
 87780753c9a578cdc3367035f07600e696f785924e881adf5b6a0fe48839b183 10809318 
mediawiki_1.15.0-1_all.deb
 cbbbc71b9ea01a356c2647d1b38c8bbd406e86222a4b287a2db8948abb46725c 178814 
mediawiki-math_1.15.0-1_amd64.deb
Files: 
 337718e6b7179b7b51d61b5977000e86 1527 web optional mediawiki_1.15.0-1.dsc
 fbe377a9df823de5b223818a260b51b1 10828007 web optional 
mediawiki_1.15.0.orig.tar.gz
 7b4c92afa269ecfdd63088d2e2ac5073 29156 web optional mediawiki_1.15.0-1.diff.gz
 c248a2f184bd564b99bb3208b5f1c1c9 10809318 web optional 
mediawiki_1.15.0-1_all.deb
 989d8a05db89f28e58577bfa1d78ce9f 178814 web optional 
mediawiki-math_1.15.0-1_amd64.deb

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

iQEcBAEBAgAGBQJKOtcvAAoJEAC5aaocqV0ZpigH/3TWO5lVhXZ6eYsp2fHHmKGa
q2weApmG6swpcckkwjC2obkR+is3zYO93Odx753dDVI24LYGTwd+ivBuPvFe64mv
XI93QsT0V3jLS0fyCj2knPr1wua+vpVc6LDNalg7WQqtmDcE/b2WcFy1VxubmUdg
cAPbGQ/S9ePpdsWWMluu6f4Drvs+XGSUwhv+jnunVgU7R9oYGNZT7R3meaLr1/xH
vOxOJFRF2Q0c3Pogf798fBwfTp5vIGwrALT2IZuX+8z6QEiGkiuUxHrXGhH4yZdb
Yy7axC7noGiCzjvfEdRMQmHvHCyu49MvKMbtJ31odww/enH14JXmG1oPEuXqIz0=
=UwY+
-END PGP SIGNATURE-


Accepted:
mediawiki-math_1.15.0-1_amd64.deb
  to pool/main/m/mediawiki/mediawiki-math_1.15.0-1_amd64.deb
mediawiki_1.15.0-1.diff.gz
  to pool/main/m/mediawiki/mediawiki_1.15.0-1.diff.gz
mediawiki_1.15.0-1.dsc
  to pool/main/m/mediawiki/mediawiki_1.15.0-1.dsc
mediawiki_1.15.0-1_all.deb
  to pool/main/m/mediawiki/mediawiki_1.15.0-1_all.deb
mediawiki_1.15.0.orig.tar.gz
  to pool/main/m/mediawiki/mediawiki_1.15.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 lintian 2.2.12 (source all)

2009-06-18 Thread Russ Allbery
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 18 Jun 2009 17:19:03 -0700
Source: lintian
Binary: lintian
Architecture: source all
Version: 2.2.12
Distribution: unstable
Urgency: low
Maintainer: Debian Lintian Maintainers lintian-ma...@debian.org
Changed-By: Russ Allbery r...@debian.org
Description: 
 lintian- Debian package checker
Closes: 522384 528003 528377 531164 532394 532892 532984 533202 533571
Changes: 
 lintian (2.2.12) unstable; urgency=low
 .
   The Policy 3.8.2 release.
 .
   * Summary of tag changes:
 + Added:
   - debug-symbols-directly-in-usr-lib-debug
   - dh_desktop-is-deprecated
   - dh_scrollkeeper-is-deprecated
   - file-in-discouraged-x11-font-directory
   - file-in-unknown-x11-font-directory
   - init.d-script-sourcing-without-test
   - init.d-script-uses-usr-interpreter
   - missing-separator-between-items
   - package-contains-multiple-dpi-fonts
   - package-mixes-misc-and-dpi-fonts
 + Removed:
   - missing-comma-between-items
 .
   * checks/binaries{,.desc}:
 + [RA] Diagnose installing detached debugging symbols directly in
   /usr/lib/debug instead of in an appropriate subdirectory.  Patch
   from Raphael Geissert.  (Closes: #532394)
   * checks/control-file{,.desc}:
 + [ADB] Allow both comma and pipe as valid separators between items when
   detecting whether a separator has been omitted.  As a consequence,
   rename the missing-comma-between-items tag to the more descriptive
   missing-separator-between-items.  Based on a patch by Rafael
   Laboissiere.  (Closes: #533202)
 + [RA] Allow a newline immediately after the field name, since this
   does work with fields that can be wrapped (such as Build-Depends).
   Thanks, Stephane Glondu.  (Closes: #528377)
   * checks/debhelper{,.desc}:
 + [RA] Issue package-lacks-versioned-build-depends-on-debhelper always
   if the debhelper dependency isn't properly versioned, not just for
   compat levels newer than 5.  (Closes: #522384)
 + [RA] Warn about dh_desktop calls since the command is now
   deprecated.   Thanks, Nelson A. de Oliveira.  (Closes: #531164)
 + [RA] Include the line number in deprecated and obsolete dh_* command
   tags.
 + [ADB] Warn about dh_scrollkeeper calls since the command is now
   deprecated.
   * checks/fields{,.desc}:
 + [RA] Update source-field-malformed to serious and don't allow
   capital letters in source package names.  Check source package names
   for validity even when checking only source packages to be sure the
   package name is syntactically valid.
 + [RA] Permit quilt in Build-Depends for arch-independent packages if
   dh_quilt_* programs are called in the clean target.  Thanks, Daniel
   Moerner.  (Closes: #528003)
 + [RA] If one of the gnome-pkg-tools makefile fragments is included,
   gnome-pkg-tools is allowed and required in Build-Depends.  Thanks,
   Emilio Pozuelo Monfort.  (Closes: #532892)
   * checks/files{,.desc}:
 + [RA] Diagnose files installed into discouraged or unknown
   subdirectories of /usr/share/fonts/X11 per Policy 11.8.5.
 + [RA] Diagnose packages including both 100dpi and 75dpi fonts or
   mixing misc and Xdpi fonts.
   * checks/init.d{,.desc}:
 + [RA] Also check unregistered init scripts for other syntax problems.
   Patch from Raphael Geissert.
 + [RA] Don't think required init.d options are implemented just
   because they occur in a comment.  Patch from Raphael Geissert.
 + [RA] Diagnose init scripts sourcing /etc/default files without
   checking first whether they're present.  Patch from Raphael
   Geissert.  (Closes: #533571)
 + [RA] Diagnose init scripts that use interpreters in /usr.  Patch
   from Raphael Geissert.
   * checks/menus{,.desc}:
 + [RA] Read menu-methods files from the collected location instead of
   the unpacked binary package and change the unpack level of menus to
   1.  Patch from Raphael Geissert.
   * checks/scripts{,.desc}:
 + [RA] Per Policy 3.8.2, read-in-maintainer-script is now of serious
   severity.
 + [RA] Catch obsolete dpkg checks in more contexts.
 + [RA] Check for invocations of fc-cache in maintainer scripts.
   Thanks, Josselin Mouette.  (Closes: #532984)
 + [RA] Catch more commands with paths in maintainer scripts.  Thanks,
   Raphael Geissert.
 .
   * collection/menu-files{,.desc}:
 + [RA] Collect menu-methods as well as menu files.  Refactor to remove
   code duplication.  Patch from Raphael Geissert.
 .
   * data/standards-version/release-dates:
 + [RA] Add the release date for Policy 3.8.2.
 .
   * debian/control:
 + [RA] Update standards version to 3.8.2 (no changes required).
 .
   * t/runtests:
 + [RA] Update standards version to 3.8.2.
Checksums-Sha1: 
 c9c2116ca0df942e8af584eb8070e8f067d1cb96 1167 

Accepted td2planet 0.1.0-3 (source all)

2009-06-18 Thread Yukiharu YABUKI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 14 Jun 2009 23:24:14 +0900
Source: td2planet
Binary: td2planet
Architecture: source all
Version: 0.1.0-3
Distribution: unstable
Urgency: low
Maintainer: Yukiharu YABUKI yab...@netfort.gr.jp
Changed-By: Yukiharu YABUKI yab...@netfort.gr.jp
Description: 
 td2planet  - Ruby-based server-side blog aggregator
Changes: 
 td2planet (0.1.0-3) unstable; urgency=low
 .
   * Collect some lintian errors.
- W: td2planet: script-with-language-extension usr/bin/td2planet.rb
- W: td2planet: copyright-contains-dh_make-todo-boilerplate
- W: td2planet: description-contains-homepage
- W: td2planet: debhelper-but-no-misc-depends
Checksums-Sha1: 
 f501ee7b5b88892f708da75c15392e83321a0e30 1071 td2planet_0.1.0-3.dsc
 f30c0eeac69cbe23e688c048736e4440962e3748 3206 td2planet_0.1.0-3.diff.gz
 c38696d76436c8c0753f918a36ec20c486d2344f 12154 td2planet_0.1.0-3_all.deb
Checksums-Sha256: 
 973be28bef91ebc8693d7a1bf0e585cb508abf4df5090db632450c5abed04c02 1071 
td2planet_0.1.0-3.dsc
 7139b4c3cfc70254571fb8b72ef561e0aec07640d8caf21eecf5ccdf56602420 3206 
td2planet_0.1.0-3.diff.gz
 e9a8ab9857c80fb987089b9199b55697539eaeafad3a16f78691c6ed2a8d91c2 12154 
td2planet_0.1.0-3_all.deb
Files: 
 ed1543cedd54a1e6cf6c171d30bdd71e 1071 web extra td2planet_0.1.0-3.dsc
 7f087fd21381dd92efc0c77b0abb19f5 3206 web extra td2planet_0.1.0-3.diff.gz
 acab1edf601dd523a5ca6492a3db0838 12154 web extra td2planet_0.1.0-3_all.deb

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

iEYEARECAAYFAko68JIACgkQBB45r3HV9Do6tQCdHbSLM40vphyiFMjWV6lzPBtI
P3YAnA8pIHl1CZsN5+EKlWO4c4RXUcsJ
=zyxx
-END PGP SIGNATURE-


Accepted:
td2planet_0.1.0-3.diff.gz
  to pool/main/t/td2planet/td2planet_0.1.0-3.diff.gz
td2planet_0.1.0-3.dsc
  to pool/main/t/td2planet/td2planet_0.1.0-3.dsc
td2planet_0.1.0-3_all.deb
  to pool/main/t/td2planet/td2planet_0.1.0-3_all.deb


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



Accepted xfireworks 1.3-7 (source i386)

2009-06-18 Thread Yukiharu YABUKI
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 14 Jun 2009 23:16:02 +0900
Source: xfireworks
Binary: xfireworks
Architecture: source i386
Version: 1.3-7
Distribution: unstable
Urgency: low
Maintainer: Yukiharu YABUKI yab...@netfort.gr.jp
Changed-By: Yukiharu YABUKI yab...@netfort.gr.jp
Description: 
 xfireworks - Fireworks in your root window
Changes: 
 xfireworks (1.3-7) unstable; urgency=low
 .
   * Correct lintian errors
- remove prerm
   * Disp.c (Disp_Create): Fix a bug, replacing NULL to 0.
Checksums-Sha1: 
 1cea160d254028bf09efd059a5b2cc7d60bebef4 965 xfireworks_1.3-7.dsc
 fca105e5a5dab73edd6a9a8fd3654161c68fd40c 4168 xfireworks_1.3-7.diff.gz
 537beedbeb9efc03f962470062b1fa0af8bd3132 42672 xfireworks_1.3-7_i386.deb
Checksums-Sha256: 
 d832fdfb8558dbd9d656f1d746e8dc91c566da0a3d65f15f656e1444334c3f2d 965 
xfireworks_1.3-7.dsc
 40464b54e2f148473d373f85d4ca585f410e36e58230bf27efe6eaa37c11639d 4168 
xfireworks_1.3-7.diff.gz
 f99b2fb27f47828b0012b329843bbf9b91c08e250fca2977810298624b69f26c 42672 
xfireworks_1.3-7_i386.deb
Files: 
 fa7f1dfc845d3ba127660e0354f976bb 965 games optional xfireworks_1.3-7.dsc
 729361470e77944d412856e0645a8023 4168 games optional xfireworks_1.3-7.diff.gz
 3246be76a070d5c74956ff59ebb3da84 42672 games optional xfireworks_1.3-7_i386.deb

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

iEYEARECAAYFAko68SMACgkQBB45r3HV9DqnLgCeMmr2YuR1tWb6gUb4pBdPphob
xokAn1lKmePw2zarbyEDe2zJ+OveraBP
=/fDH
-END PGP SIGNATURE-


Accepted:
xfireworks_1.3-7.diff.gz
  to pool/main/x/xfireworks/xfireworks_1.3-7.diff.gz
xfireworks_1.3-7.dsc
  to pool/main/x/xfireworks/xfireworks_1.3-7.dsc
xfireworks_1.3-7_i386.deb
  to pool/main/x/xfireworks/xfireworks_1.3-7_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 itrans 5.3-7 (source all i386)

2009-06-18 Thread Debian-IN Team
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 19 Jun 2009 09:59:41 +0530
Source: itrans
Binary: itrans itrans-fonts
Architecture: source all i386
Version: 5.3-7
Distribution: unstable
Urgency: low
Maintainer: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Changed-By: Debian-IN Team debian-in-work...@lists.alioth.debian.org
Description: 
 itrans - Converts romanized Indic texts to LaTeX, HTML  Postscript
 itrans-fonts - Extra fonts used in the ITRANS Indic text processing system
Closes: 521509
Changes: 
 itrans (5.3-7) unstable; urgency=low
 .
   [Kartik Mistry]
   * debian/control:
 + Removed Baishampayan Ghose b.gh...@gnu.org.in from
   Uploaders list (Closes: #521509)
 + Updated to Standards-Version 3.8.1 (no changes needed)
 + [Lintian] Added ${misc:Depends} for itrans-fonts
 + [Lintian] Added dependency on tex-common
   * debian/watch:
 + Added watch file, Thanks to DEHS
   * debian/rules:
 + Wrap line to make it readable
Checksums-Sha1: 
 1030dbc4286866ae3b5d5b622231c3c68d38dd36 1223 itrans_5.3-7.dsc
 61aba27597cd902f64eaddecaf84f76ee93b1fd9 9122 itrans_5.3-7.diff.gz
 4db276c48f6abaec62d2dad2b98dd5e458ff2163 133822 itrans-fonts_5.3-7_all.deb
 6ab518ff04e9daf6c78984b8d3f15d1b6199747a 149810 itrans_5.3-7_i386.deb
Checksums-Sha256: 
 61bae331f93568b837864b4a522681e7ed8f02621f42a621baefb93439809394 1223 
itrans_5.3-7.dsc
 19f32609c827473ab3255ccdea5742d1148acca4e665ff9110f0bfa417bf20fb 9122 
itrans_5.3-7.diff.gz
 b6b7655eacf2603047c72033d625db6dbbc0bb11383bf57c2945bf11e373ad2c 133822 
itrans-fonts_5.3-7_all.deb
 24ca791eab567b3342087fd69f5702a47b91c1ed0393343e9773bcfe882dafda 149810 
itrans_5.3-7_i386.deb
Files: 
 59c964e3bb6c6e5f9d33993a67d81bec 1223 text optional itrans_5.3-7.dsc
 b844559ceb432811b3e3317734e924dd 9122 text optional itrans_5.3-7.diff.gz
 7a7772087ca0e2f8e5bb2613f0df4032 133822 text optional 
itrans-fonts_5.3-7_all.deb
 1cb00e3c2e6b39343cd8b88a13043a05 149810 text optional itrans_5.3-7_i386.deb

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

iEYEARECAAYFAko7GL4ACgkQoRg/jtECjI0ABQCeIzo88/GpeY2XqqOPn1lNdopN
r8IAmwRk5i8IBRTrAMSfwl0/2kcXJ2vB
=eBji
-END PGP SIGNATURE-


Accepted:
itrans-fonts_5.3-7_all.deb
  to pool/main/i/itrans/itrans-fonts_5.3-7_all.deb
itrans_5.3-7.diff.gz
  to pool/main/i/itrans/itrans_5.3-7.diff.gz
itrans_5.3-7.dsc
  to pool/main/i/itrans/itrans_5.3-7.dsc
itrans_5.3-7_i386.deb
  to pool/main/i/itrans/itrans_5.3-7_i386.deb


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