Re: Source-Depends? Autoreconf?

2009-05-03 Thread Marc Haber
On Sat, 2 May 2009 13:24:07 +0100, Roger Leigh rle...@codelibre.net
wrote:
I personally dislike the entire concept of Debian-native source packages.
I would like it if all software in Debian had a split .orig/.diff.  Even
for real native sources, it makes things like backporting, reuse by
others, and minor fixes, NMUs etc. rather simpler to do, and you get a
diff of the changes to boot, which makes reintegration of the changes
less time consuming (just review and apply the diff).  Debian-native
packages hinder collaboration and reuse by others.

Applause.

Greetings
Marc

-- 
-- !! No courtesy copies, please !! -
Marc Haber |Questions are the | Mailadresse im Header
Mannheim, Germany  | Beginning of Wisdom  | http://www.zugschlus.de/
Nordisch by Nature | Lt. Worf, TNG Rightful Heir | Fon: *49 621 72739834


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



Bug#526740: ITP: bpython -- fancy curses interface to the Python interactive interpreter

2009-05-03 Thread David Paleino
Package: wnpp
Severity: wishlist
Owner: David Paleino d.pale...@gmail.com

* Package name: bpython
  Version : 0.7.1
  Upstream Author : Name someb...@example.org
* URL : http://www.noiseforfree.com/bpython/
* License : MIT/X
  Programming Lang: Python
  Description : fancy curses interface to the Python interactive interpreter

 bpython is a curses interface to the Python interpreter, and has the
 following features:
 .
   * In-line syntax highlighting.
   * Readline-like autocomplete with suggestions displayed as you type
   * Expected parameter list for any Python function. Uses pydoc to attempt to
 divine params for C functions.
   * Rewind function to pop the last line of code from memory and re-evaluate.
 Note: this is only really useful when laying out classes and functions,
 since a true undo function is impossible, so be careful when using this.
   * Send the code you've entered off to a pastebin and display the pastebin URL
 for copying, etc.
   * Save the code you've entered to a file.
   * Auto-indentation.
   * Anti-Crash Mode.

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Re: Bug#526740: ITP: bpython -- fancy curses interface to the Python interactive interpreter

2009-05-03 Thread David Paleino
On Sun, 3 May 2009 09:54:41 +0200, David Paleino wrote:

 Package: wnpp
 Severity: wishlist
 Owner: David Paleino d.pale...@gmail.com
 
 * Package name: bpython
   Version : 0.7.1
   Upstream Author : Name someb...@example.org

Argh!

Upstream Author : Bob Farrell robertanthonyfarr...@gmail.com

Sorry people.

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Bug#526739: ITP: libbash -- a tool that enables bash dynamic-like shared libraries

2009-05-03 Thread Hai Zaar
Package: wnpp
Severity: wishlist
Owner: Hai Zaar haiz...@haizaar.com


* Package name: libbash
  Version : 0.9.10b
  Upstream Author : Hai Zaar haiz...@haizaar.com
* URL : http://libbash.sf.net
* License : GPL
  Programming Lang: shell script
  Description : a tool that enables bash dynamic-like shared libraries

libbash is a tool for managing bash scripts that contain functions you may
want to use in various scripts. It provides mechanism to define dependencies
between scripts and facility for script loading.

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



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



Re: Source-Depends? Autoreconf?

2009-05-03 Thread Bernhard R. Link
* Henrique de Moraes Holschuh h...@debian.org [090502 18:25]:
 On Sat, 02 May 2009, Bernhard R. Link wrote:
  First of all, you do not discuss the most common type of packages: do
  not change the build-system, but just use it. This means autotools are
  never called, neighter when preparing the package, nor when building the
  package.

 Yeah, it is really common, and it is also close to being the 'worst
 practice' (except for the few packages whose upstream takes very good
 care of their build system and keep it up-to-date themselves).

I disagree here strongly. While many Debian developers are better at
judging and improving build systems than the average upstream,
understanding a build in all its details and important pitfalls just
needs to much experience with that specific package to be error-proof.
Thus the best way is the DD to help upstream to improve the build system
and then is using the upstream build system unmodified as long it can be
used to produce sane results. (Of course often build systems are just
too broken for that. But often the perceived need to change a build
system is just a result of understanding the tools involved. (Like often
giving make an argument makes patching a Makefile uncessary).

  The more important goals are:
   - derivation from upstream:
  + every change means using something not previously tested.

 Well, as a rule, we do much better at testing build systems than any
 upstream, anywhere.  We build for MUCH more platforms, for one.

We build for much more platforms, but all our platforms are quite
uniform w.r.t. things a build system usually has to deal with.
It also depends on the kind of package. Most things are just too seldom
tested in Debian package. Breaking core funcitonality or failing builds
will usually be caught well, but that is not true for anything.

For example in one package I mispatched a Makfile to support DESTDIR.
Upstream did only install a file, if it was not already there. The
install command got the DESTDIR, but the check did not. This introduces
a bug causing the file to be missing if the package is build with it
being installed. I doubt any DD would have caught it until some poor
user wanting to recompile/patch it would have been bitten by it, had
I not by cheer luck and comparing file lists all the time would have
found it.

 And
 likely we're already using a newer toolchain than upstream anyway...
 and that's far more likely to root out bogosity (or to cause bogosity
 for that matter) than autoreconf.

Well, newer for some upstreams. Older for other ones. And often both
older and newer at the same time. This only means this point is one of
many, not that it is unimportant.


 There is one _very_ important reason why it is the best practice, too:
 since the build process is complete, and tested at every upload on
 every arch, it is far less likely to break on the hands of the
 security team, or on the hands of a porter of a new arch, or in the
 hands of someone else in a time of need.

This is what I called robustness. And I fail to see how having a new
build-system every time can be more robust than using the same tested
again and again. (Unless people want to change something in the build
system, which is also an important thing to look at. Having to
change the build system in a security upload or a new arch is quite
rare (especially with autotools, which abstract architectures into
specific files), but it is also an important point, though I'd put it
into maintainability).

Hochachtungsvoll,
Bernhard R. Link


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



make-kpkg and 2.6.29.2 vanilla sources

2009-05-03 Thread Raffaele Morelli
Hi you all,

I am using vanilla sources to build a debian RT custom kernel using
make-kpkg.
Compiling goes very nice and ends up with a deb kernel package but make-kpkg
does't generate initrd using --initrd option! I had to generete it by hand
with update-initrams and the put the corresponding line to menu.lst in order
to boot.

I usually run latest stable vanilla releases and never experienced that
problem with make-kpkg.

Is it a bug or what?

regards
-r


Re: Source-Depends? Autoreconf?

2009-05-03 Thread Bernhard R. Link
* Manoj Srivastava sriva...@debian.org [090503 01:24]:
 I wold like to say that I do not really see the Degbian source
  package as a primary mode of development  communication between Debian
  and the downstreams, as it is strictly a snapshot, and loses too much
  history.  I think that people deriving code based on lines of
  development I have in my packages will be better served by using a
  distributed VCS; and collaboration and feeback would be far easier.

For a close colloboration and joint development having history and
anything that brings the changes nearer to upstreams (having branches
in upstream's centrel VCS, or using the same distributed VCS as upstream)
is of course the way to go, and having additionally something with
history is of course always good.

But whenever I wanted to look around what other distributions did with
one of my packages, I really started to hate the a VCS is everything
that is needed approach. Getting lost in the CVS directories of some
*BSDs, having to deal with all kind of different VCSes like arch, bzr,
subversion, or whatever the particular distribution decided to
standardize on, having things differently everywhere and jump through
hops to just get what I'm intrested in: What is their current state?
What changes have they applied?
Then often having things practically forked, as their VCS has history,
but does not group changes. (Which if from that point of view not really
easier than having just a single monolythic patch, with the only
difference that it took hours to get that patch and with even more time
you could learn how you can see when each line was added).

  Also assessment of external factors plays an important role. Several
  years ago, autotools changed quite rapdily and
  disruptively. Robustness was an important reason to not run autotools
  while building.  Now this has changed, so running autotools at build
  time is often considered the best solution, as it causes clean diffs,
  well-tested build paths and easy maintanability. (Though it still
  depends on the actual case. Very small changes, massively outdated
  uptreams and/or usage of strange corner-cases of autotools can still
  make something else better depending on a wide range of factors).

 The same might be true for any other component in the tool
  chain, no?

Of course it is. Nothing special about autotools here, except perhaps
that you more often have the choice. You cannot add a compiler to your
package (so all you have to choose from is using the default compiler or
forcing a specific version and build-depending on that), while autotools
make it possible to have the build system there. And once you have the
choice, you need to decide what is best.

Hochachtungsvoll,
Bernhard R. Link


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



Bug#526762: ITP: pwauth -- authenticator for mod_authnz_external and the Apache HTTP Daemon

2009-05-03 Thread Hai Zaar
Package: wnpp
Severity: wishlist
Owner: Hai Zaar haiz...@haizaar.com


* Package name: pwauth
  Version : 2.3.8
  Upstream Author : Jan Wolter j...@unixpapa.com
* URL : http://code.google.com/p/pwauth/
* License : BSD
  Programming Lang: C
  Description : authenticator for mod_authnz_external and the Apache HTTP 
Daemon

Pwauth is an authenticator designed to be used with
mod_auth_external or mod_authnz_external and the Apache
HTTP Daemon to support reasonably secure web
authentication out of the system password database on most
versions of Unix. Particulary - secure authentication
against PAM.


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



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



Re: make-kpkg and 2.6.29.2 vanilla sources

2009-05-03 Thread David Paleino
On Sun, 3 May 2009 10:14:57 +0200, Raffaele Morelli wrote:

 Hi you all,
 
 I am using vanilla sources to build a debian RT custom kernel using
 make-kpkg.
 Compiling goes very nice and ends up with a deb kernel package but make-kpkg
 does't generate initrd using --initrd option! I had to generete it by hand
 with update-initrams and the put the corresponding line to menu.lst in order
 to boot.

It's a change happened in 12.001, and sid now has 12.013:

kernel-package (12.001) experimental; urgency=low
[..]
  * Image postinst no longer runs a boot loader

Note that this was already the case for grub, one of the more popular
boot loaders.
  
Now that we have a mechanism for running arbitrary scripts when the
image packages are manipulated, we can stop embedding the boot loader
actions in the package itself. This means that lilo, elilo, etc will
no longer be run directly by the post isnt, and all the code related
to detecting the boot loader, managing the configuration, and adding
bits about bootloader documentation is all removed from the
postinst. This allows the image package to be more flexible, since the
end user is no longer restricted to the actions encoded in the image
package. This is a fairly large change.
[..]
  * The image postinst no longer runs the initramfs creation
commands. Instead, there are example scripts provided that will
perform the task. These scripts will work for official kernel images
as well.

 -- Manoj Srivastava sriva...@debian.org  Wed, 01 Apr 2009 13:05:40 -0500

Kindly,
David

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Re: make-kpkg and 2.6.29.2 vanilla sources

2009-05-03 Thread Bernd Zeimetz
David Paleino wrote:

   * The image postinst no longer runs the initramfs creation
 commands. Instead, there are example scripts provided that will
 perform the task. These scripts will work for official kernel images
 as well.

Don't use the example scripts, they're kinda weird. initramfs-tools installs
proper hooks there, at least since 0.93.2.

Cheers,

Bernd

-- 
 Bernd Zeimetz   Debian GNU/Linux Developer
 GPG Fingerprint: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79


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



Bug#526786: ITP: libapache2-mod-authnz-external -- authenticate Apache against external authentication services

2009-05-03 Thread Hai Zaar
Package: wnpp
Severity: wishlist
Owner: Hai Zaar haiz...@haizaar.com


* Package name: libapache2-mod-authnz-external
  Version : 3.2.3
  Upstream Author : Jan Wolter j...@unixpapa.com
* URL : http://www.unixpapa.com/mod_auth_external/
* License : Apache
  Programming Lang: C
  Description : authenticate Apache against external authentication services

Mod_Auth_External can be used to quickly construct secure, reliable
authentication systems.  It can also be mis-used to quickly open gaping
holes in your security.  Read the documentation, and use with extreme
caution.
Notably, this module can be used to securely authenticate against PAM
(without exposing /etc/shadow file).
This Package includes the mod-athnz-external Module for Apache Version 2.x

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



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



Bug#526790: ITP: libapache2-mod-authz-unixgroup -- access control based on on unix group membership for Apache

2009-05-03 Thread Hai Zaar
Package: wnpp
Severity: wishlist
Owner: Hai Zaar haiz...@haizaar.com


* Package name: libapache2-mod-authz-unixgroup
  Version : 1.0.1
  Upstream Author : Jan Wolter   j...@unixpapa.com
* URL : http://www.unixpapa.com/mod_authz_unixgroup/
* License : Apache
  Programming Lang: C
  Description : access control based on on unix group membership for Apache

Mod_Authz_Unixgroup is a unix group access control module for Apache 2.1 and
later. If you are having users authenticate with real Unix login ID over the
net, using something like my mod_authnz_external / pwauth combination, and
you want to do access control based on unix group membership, then
mod_authz_unixgroup is exactly what you need.

This Package includes the mod-authn-unixgroup Module for Apache Version 2.2

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



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



Re: Source-Depends? Autoreconf?

2009-05-03 Thread Manoj Srivastava
On Sun, May 03 2009, Bernhard R. Link wrote:


 There is one _very_ important reason why it is the best practice, too:
 since the build process is complete, and tested at every upload on
 every arch, it is far less likely to break on the hands of the
 security team, or on the hands of a porter of a new arch, or in the
 hands of someone else in a time of need.

 This is what I called robustness. And I fail to see how having a new
 build-system every time can be more robust than using the same tested
 again and again. (Unless people want to change something in the build
 system, which is also an important thing to look at. Having to
 change the build system in a security upload or a new arch is quite
 rare (especially with autotools, which abstract architectures into
 specific files), but it is also an important point, though I'd put it
 into maintainability).

Having a package that only builds in a hothouse (that is, with a
 single tested toolchain) is actually detrimental to the quality of
 implementation. If we are trying to be a good citizen in the free
 software world, just building a binary package that happens to work on
 our buildds is just one goal. We should also seek to
  + cater to users building our software on their regular machine (not
just in artificially clean build environments)
  + Try to find out bugs in the toolchain -- and that means the
autotools too. Locking down gcc or autotools versions hinders this.

Can using whatever gcc or autotools is around sometimes uncover
 bugs and prevent building? Sure. But once found, these bugs can be
 fixed, and not just for Debian package  builders.

manoj
-- 
An engineer is someone who does list processing in FORTRAN.
Manoj Srivastava sriva...@debian.org http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


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



Re: make-kpkg and 2.6.29.2 vanilla sources

2009-05-03 Thread Manoj Srivastava
On Sun, May 03 2009, Bernd Zeimetz wrote:

 David Paleino wrote:

   * The image postinst no longer runs the initramfs creation
 commands. Instead, there are example scripts provided that will
 perform the task. These scripts will work for official kernel images
 as well.

 Don't use the example scripts, they're kinda weird. initramfs-tools installs
 proper hooks there, at least since 0.93.2.

What horrendous advice. Obviously, there was no attempt to
 actually test the advice, or even to read the hook script. And as such,
 this advice is wrong. Observe:
,
| __ dpkg -x /var/cache/apt/archives/initramfs-tools_0.93.2_all.deb root1
| __ cat root1/etc/kernel/postinst.d/initramfs-tools
| #!/bin/sh
| 
| # passing the kernel version is required
| [ -z $1 ]  exit 0
| 
| # kernel-package passes an extra arg; hack to not run under kernel-package
| [ -z $2 ] || exit 0
| 
| # we're good - create initramfs.  update runs do_bootloader
| update-initramfs -c -t -k $1
`

See where it says that this hook doe snot run under
 kernel-package images? maks has not yet had time to upload the patched
 hook (he does have other things to do, you know). Now observe the
 script below, from kernel-package.

See how it aborts when there is an indication that the
 kernel-image does not need an initrd? So that people who are compiling
 their own kernels and who do not need an initramfs are not saddled with
 one anyway?

See also that it only triggers when the maintainer script is
 called with the configure command? See how it supports, like
 kernel-package does, having your vmlinuz-* being not in .boot, but
 elsewhere? 

Weird my foot.

manoj

,
| __ cat etc/kernel/postinst.d/initramfs 
| #! /bin/sh
| 
| set -e
| 
| if [ -n $INITRD ]  [ $INITRD = 'No' ]; then
| exit 0
| fi
| version=$1
| vmlinuz_location=$2
| 
| 
| if [ -n $DEB_MAINT_PARAMS ]; then
| eval set -- $DEB_MAINT_PARAMS
| if [ -z $1 ] || [ $1 != configure ]; then
| exit 0;
| fi
| fi
| 
| # passing the kernel version is required
| [ -z $version ]  exit 1
| 
| 
| if [  -n $vmlinuz_location ]; then
| # Where is the image located? We'll place the initrd there.
| boot=$(dirname $vmlinuz_location)
| bootarg=-b $boot
| fi
| 
| # 
| if which update-initramfs /dev/null ; then
| update-initramfs -c -t -k $version $bootarg
| fi
`

-- 
Conserve energy, kill yourself. j...@dscatoh0.sac.ca.us
Manoj Srivastava sriva...@debian.org http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


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



Re: Source-Depends? Autoreconf?

2009-05-03 Thread Manoj Srivastava
On Sun, May 03 2009, Bernhard R. Link wrote:

 * Manoj Srivastava sriva...@debian.org [090503 01:24]:
 I wold like to say that I do not really see the Degbian source
  package as a primary mode of development  communication between Debian
  and the downstreams, as it is strictly a snapshot, and loses too much
  history.  I think that people deriving code based on lines of
  development I have in my packages will be better served by using a
  distributed VCS; and collaboration and feeback would be far easier.

 For a close colloboration and joint development having history and
 anything that brings the changes nearer to upstreams (having branches
 in upstream's centrel VCS, or using the same distributed VCS as upstream)
 is of course the way to go, and having additionally something with
 history is of course always good.

 But whenever I wanted to look around what other distributions did with
 one of my packages, I really started to hate the a VCS is everything
 that is needed approach. Getting lost in the CVS directories of some
 *BSDs, having to deal with all kind of different VCSes like arch, bzr,
 subversion, or whatever the particular distribution decided to
 standardize on, having things differently everywhere and jump through
 hops to just get what I'm intrested in: What is their current state?
 What changes have they applied?

In that case, having the sources cluttered with autotools
 changes is pretty bad. I would much rather unpack their sources, and
 run a diff -uBbwr between two source directories. In that case, not
 having the autotools in the packages is nicer.

 Then often having things practically forked, as their VCS has history,
 but does not group changes. (Which if from that point of view not really
 easier than having just a single monolythic patch, with the only
 difference that it took hours to get that patch and with even more time
 you could learn how you can see when each line was added).

You are not really about collaborating with them, you want
 really a quick diff.  For that, I suppose an uncluttered package source
 is good.

  Also assessment of external factors plays an important role. Several
  years ago, autotools changed quite rapdily and
  disruptively. Robustness was an important reason to not run autotools
  while building.  Now this has changed, so running autotools at build
  time is often considered the best solution, as it causes clean diffs,
  well-tested build paths and easy maintanability. (Though it still
  depends on the actual case. Very small changes, massively outdated
  uptreams and/or usage of strange corner-cases of autotools can still
  make something else better depending on a wide range of factors).

 The same might be true for any other component in the tool
  chain, no?

 Of course it is. Nothing special about autotools here, except perhaps
 that you more often have the choice. You cannot add a compiler to your
 package (so all you have to choose from is using the default compiler or
 forcing a specific version and build-depending on that), while autotools
 make it possible to have the build system there. And once you have the
 choice, you need to decide what is best.

I see adding autotools files and cluttering up a user running
 diff a bad thing, similar to (but perhaps different in degree) storing
 away a private gcc install in the binary.

manoj
-- 
Television has proved that people will look at anything rather than each
other. Ann Landers
Manoj Srivastava sriva...@debian.org http://www.debian.org/~srivasta/  
1024D/BF24424C print 4966 F272 D093 B493 410B  924B 21BA DABB BF24 424C


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



Re: make-kpkg and 2.6.29.2 vanilla sources

2009-05-03 Thread Bernd Zeimetz
Manoj Srivastava wrote:
 On Sun, May 03 2009, Bernd Zeimetz wrote:
 
 David Paleino wrote:

   * The image postinst no longer runs the initramfs creation
 commands. Instead, there are example scripts provided that will
 perform the task. These scripts will work for official kernel images
 as well.
 Don't use the example scripts, they're kinda weird. initramfs-tools installs
 proper hooks there, at least since 0.93.2.
 
 What horrendous advice. Obviously, there was no attempt to
  actually test the advice, or even to read the hook script. And as such,
  this advice is wrong. Observe:

[..]
ok, I stand corrected. I'm not sure anymore which script I looked into, but it
scared me away somehow. Next time I'll re-read things again...

Cheers,

Bernd

-- 
 Bernd Zeimetz   Debian GNU/Linux Developer
 GPG Fingerprint: 06C8 C9A2 EAAD E37E 5B2C BE93 067A AD04 C93B FF79


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



Re: make-kpkg and 2.6.29.2 vanilla sources

2009-05-03 Thread Kai Wasserbäch
Hello Raffaele,
Raffaele Morelli schrieb:
 [...]
 
 Is it a bug or what?

No, as documented in the changelog ([0]) and probably elsewhere you need to put
the needed scripts into [1]. In case of initrd generation example scrpts are
shipped with kernel-package in [2].

I hope this helped.

Greetings,
Kai


[0]
http://packages.debian.org/changelogs/pool/main/k/kernel-package/current/changelog#versionversion12.001
(please note, that it is also mentioned in later changelog entries for several
reasons)
[1] file:///etc/kernel/{postinst,prerm}.d
[2] 
file:///usr/share/doc/kernel-package/examples/etc/kernel/{postinst,prerm}.d



-- 

Kai Wasserbäch (Kai Wasserbaech)

E-Mail: deb...@carbon-project.org
Jabber (debianforum.de): Drizzt
URL: http://wiki.debianforum.de/Drizzt_Do%27Urden
GnuPG: 0xE1DE59D2  0600 96CE F3C8 E733 E5B6 1587 A309 D76C E1DE 59D2
(http://pgpkeys.pca.dfn.de/pks/lookup?search=0xE1DE59D2fingerprint=onhash=onop=vindex)



signature.asc
Description: OpenPGP digital signature


Re: Environment variables, debian/rules and dpkg-buildpackage

2009-05-03 Thread Guillem Jover
[ BCCed debian-dpkg for the proposed dpkg changes. ]

Hi!

On Fri, 2009-03-13 at 21:04:30 +0100, Raphael Hertzog wrote:
 we have an unfortunate situation where the practice in dpkg-buildpackage
 and the policy do not match fully.

Ok, had finally the time to read and think about this. I've to say first
of all that I've never quite liked dpkg-buildpackage as a way to set
distro-wide flags, and less so by doing it by default and kind of
deprecating debian/rules in the way. But at the time this got implemented
I didn't have the time to ponder about better alternatives or discuss
about it (although the makefile include crossed my mind at some point,
and we talked about it with Raphaël before he started this thread).
In retrospect I guess I should have chimed in on the initial discussion
or the subsequent complaints, but nothing that cannot be repaired now
anyway.

I'll try to summarize the discussion (althought it might be biased to
my preferred option) and some facts, so that we can get to a conclusion:

* We'd like to have at least this overriding hierarchy (the
  implementation could be a bit more complex, but I think that's
  not important now, as this one already exposes problems in the
  dpkg-buildpackage proposal):

  - Distro defaults.
  - Site overrides over the above (can be partial filters).
  - Package overrides over the above (can be partial filters).
  - User overrides over the above (total overrides).

* dpkg-buildpackage currently sets the build flags through env vars.

* Lots of packages (roughly around 4k) do not honour env vars for build
  flags, as they follow the examples from policy (or dh-make and similar)
  and thus are setting them unconditionally, which env vars do not
  override.

,-- chk-flags --
#!/bin/sh
set -eu
regex=$@
cd /srv/lintian.debian.org/laboratory/source/
ls | xargs -I% grep -H -l $regex %/debfiles/rules | wc -l
`--

  ./chk-flags '^[^#]*\(CXX\|F\|CPP\|LD\|C\)FLAGS[[:space:]]*:\?='

* Thus lots of packages in the archive have to be modified anyway
  regardless of either solution (centralization through dpkg-buildpackage
  or makefile include). If we have to modify them, we can make them
  include a makefile. Adding such include line at the top of debian/rules
  should certainly imply less changes than the proposed changes in
  http://lists.debian.org/debian-devel/2009/03/msg00920.html.

* dpkg-buildpackage has been setting env vars for dpkg-architecture
  output for a long time (2001), but those flags are a bit different
  than the other build flags. First the example code in dh-make uses ?=
  which makes the env vars take preference, and they are (or should be)
  always initialized in the debian/rules file as recommended by
  dpkg-architecture(1). And second the *_BUILD_* ones should alway match
  the current system, and the *_HOST_* ones should be changed by
  changing the toolchain, so there's no reason to override them in the
  distro or packaging (if there's a need then dpkg should be fixed
  instead).

* Externalizing the setup of the build flags means that debian/rules
  stops being a working standalone interface for building packages, as
  mandated by policy, and imposes an additional layer to rely on for
  building packages

* Setting system (distro and site) build vars through command line (or
  forced environment 'make -e') does not allow the pkg to override them,
  nor do partial filtering.

* Using 'make -e' is not really a good idea as it's not fine grained. So
  the correct solution when total override is desired is to set the
  vars via the command line.

* Setting system (distro and site) build vars through command line,
  implies we can only use limited make syntax for those vars.

* We can set the architecture and default flags (from policy) on the
  makefile to be included, and packagers will be able to do the change
  and fix any possible problems (progressive opt-in), but once it's
  included by all packages, then we can do system-wide default changes
  in the same we change toolchains (mass rebuild, bug filing, change
  when bug count goes down). The makefile has the advantage that the
  distro default can be temporarily changed for the mass build w/o
  needing to totally override the build flags.


So I think for next dpkg upload we should make dpkg-buildpackage stop
setting any flags by default, and switch the setting to go through the
command line arguments to override the package options instead of the
environment, so this would become the user override part. The DEB_VENDOR
env var should not be set either, and we should work on getting a
dpkg-vendor instead, before people try to start using the variable.


Then if we get consensus that this is the righ path, agree on the
makefile names (as once decided it will be a pain to change later on in
all packages), we'll need to ship the distro defaults file somewhere and
start fixing packages to include that makefile. The files could look
something like:

,-- /usr/share/dpkg/build-options.mk
# 

Accepted libuninameslist 0.0.20080409-2 (source i386)

2009-05-03 Thread Kęstutis Biliūnas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 02 May 2009 10:16:44 +0300
Source: libuninameslist
Binary: libuninameslist-dev libuninameslist0
Architecture: source i386
Version: 0.0.20080409-2
Distribution: unstable
Urgency: low
Maintainer: Kęstutis Biliūnas ke...@kaunas.init.lt
Changed-By: Kęstutis Biliūnas ke...@kaunas.init.lt
Description: 
 libuninameslist-dev - a library of Unicode annotation data (development files)
 libuninameslist0 - a library of Unicode annotation data
Closes: 526548
Changes: 
 libuninameslist (0.0.20080409-2) unstable; urgency=low
 .
   * debian/control:
 - added the autotools-dev and quilt packages to Build-Depends;
 - bumped Standards-Version to 3.8.1. No changes required.
   * debian/patches:
 - added the patch 001_add_libtool_mode.diff for fixing Makefile intall
   target.
   * debian/rules:
 - added copying files config.sub and config.guess from the autotools-dev
   package (Closes: #526548).
Checksums-Sha1: 
 738212be888061139356637aaa2f34c4e7d71454 1163 
libuninameslist_0.0.20080409-2.dsc
 73f8dc1e98b631b3f6ebc59346e4a09fb145cb4a 3982 
libuninameslist_0.0.20080409-2.diff.gz
 b47442a54691f49785bd2ab02835e2729b13af9d 516334 
libuninameslist-dev_0.0.20080409-2_i386.deb
 abde216ce8295647bf0a69f2eb536060c733f989 506252 
libuninameslist0_0.0.20080409-2_i386.deb
Checksums-Sha256: 
 691648db07bfa735f536d291d8b0d4333a06127d45855479d6ee9cac4a93ac18 1163 
libuninameslist_0.0.20080409-2.dsc
 23e8080003ed98adc731eb7739af6022d222455a47cbbbc3541fc528f620499a 3982 
libuninameslist_0.0.20080409-2.diff.gz
 4189c4ed3aa9857b4126947003e0278b40e7f1b2356391b6d644029add51fb0d 516334 
libuninameslist-dev_0.0.20080409-2_i386.deb
 d49efa8837ba989dd66613df301a16eb4b5fb1bd67ea6672ef2353b5fa52856f 506252 
libuninameslist0_0.0.20080409-2_i386.deb
Files: 
 5dafd96c5b3ae5fd212d6e93f4fccd66 1163 libs optional 
libuninameslist_0.0.20080409-2.dsc
 e54dc55140c2c1e6b57c25a928794a90 3982 libs optional 
libuninameslist_0.0.20080409-2.diff.gz
 207ee3e713838a52a7bcd00d4f91cb59 516334 libdevel optional 
libuninameslist-dev_0.0.20080409-2_i386.deb
 c263094b5d90006707a6755adf2f21a6 506252 libs optional 
libuninameslist0_0.0.20080409-2_i386.deb

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

iEYEARECAAYFAkn9Ob8ACgkQFXHEz/bnpFJ5aACfUPibyQh+VVimJR9+qrFfXUUv
1HYAoIBqBO+qpH+J58oDKI5iyTgkAfSJ
=TyyB
-END PGP SIGNATURE-


Accepted:
libuninameslist-dev_0.0.20080409-2_i386.deb
  to pool/main/libu/libuninameslist/libuninameslist-dev_0.0.20080409-2_i386.deb
libuninameslist0_0.0.20080409-2_i386.deb
  to pool/main/libu/libuninameslist/libuninameslist0_0.0.20080409-2_i386.deb
libuninameslist_0.0.20080409-2.diff.gz
  to pool/main/libu/libuninameslist/libuninameslist_0.0.20080409-2.diff.gz
libuninameslist_0.0.20080409-2.dsc
  to pool/main/libu/libuninameslist/libuninameslist_0.0.20080409-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 r-cran-epi 1.0.12-1 (source all)

2009-05-03 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 17 Feb 2009 17:28:26 +0100
Source: r-cran-epi
Binary: r-cran-epi
Architecture: source all
Version: 1.0.12-1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 r-cran-epi - GNU R epidemiological analysis
Closes: 515641
Changes: 
 r-cran-epi (1.0.12-1) unstable; urgency=low
 .
   * Initial release (closes: #515641).
Checksums-Sha1: 
 07e2d513126f3de315714610ca9569a0e6909374 1316 r-cran-epi_1.0.12-1.dsc
 4bb2920f40e772da83e2a568c30739278a5bdf97 515099 r-cran-epi_1.0.12.orig.tar.gz
 464f6925f270f9fe8deb8c9762a178bab1510ea8 2022 r-cran-epi_1.0.12-1.diff.gz
 db4fc22e53e971e8fb113e67da6ae77c06290640 728146 r-cran-epi_1.0.12-1_all.deb
Checksums-Sha256: 
 5ac208f2a9620b2b31f3a63a6295e25ffe9e81075982cba3a73e4c45c1a6beaf 1316 
r-cran-epi_1.0.12-1.dsc
 eecf7c7ea1897415aaa89a0a3d82b35de80aff1248db083a499a8fbb376552b9 515099 
r-cran-epi_1.0.12.orig.tar.gz
 f76f11f17706bc895f41699eb4abb489e2e4ba2c17bf12575a98751d8c7bbc63 2022 
r-cran-epi_1.0.12-1.diff.gz
 ca83c48463f270549f76c16a0229f9281325f3d81e997ba696aa47475c656e8e 728146 
r-cran-epi_1.0.12-1_all.deb
Files: 
 5ceea9398b57aa9375488ab4d2bb81b0 1316 gnu-r optional r-cran-epi_1.0.12-1.dsc
 4d98f144d75b5fa7ca1f3952fd495042 515099 gnu-r optional 
r-cran-epi_1.0.12.orig.tar.gz
 6cb643833e045f932a6cbfddb73a5f60 2022 gnu-r optional 
r-cran-epi_1.0.12-1.diff.gz
 7d5518793bb627dae901cdf0b65a9fcd 728146 gnu-r optional 
r-cran-epi_1.0.12-1_all.deb

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

iD8DBQFJ9pvCYDBbMcCf01oRAoOjAJ9EuATUtex1KqWjZsCV6YgGQHkT8QCfZ2I+
6D5U+/lMyi8Ne8s0uRRFY+U=
=w6Fq
-END PGP SIGNATURE-


Accepted:
r-cran-epi_1.0.12-1.diff.gz
  to pool/main/r/r-cran-epi/r-cran-epi_1.0.12-1.diff.gz
r-cran-epi_1.0.12-1.dsc
  to pool/main/r/r-cran-epi/r-cran-epi_1.0.12-1.dsc
r-cran-epi_1.0.12-1_all.deb
  to pool/main/r/r-cran-epi/r-cran-epi_1.0.12-1_all.deb
r-cran-epi_1.0.12.orig.tar.gz
  to pool/main/r/r-cran-epi/r-cran-epi_1.0.12.orig.tar.gz


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



Accepted xapian-core 1.0.12-2 (source all amd64)

2009-05-03 Thread Olly Betts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 05:59:02 +0100
Source: xapian-core
Binary: libxapian15 libxapian15-dbg libxapian-dev xapian-tools xapian-doc 
xapian-examples
Architecture: source amd64 all
Version: 1.0.12-2
Distribution: unstable
Urgency: low
Maintainer: Olly Betts o...@survex.com
Changed-By: Olly Betts o...@survex.com
Description: 
 libxapian-dev - Development files for Xapian search engine library
 libxapian15 - Search engine library
 libxapian15-dbg - Search engine library
 xapian-doc - Core Xapian documentation
 xapian-examples - Xapian simple example programs
 xapian-tools - Basic tools for Xapian search engine library
Changes: 
 xapian-core (1.0.12-2) unstable; urgency=low
 .
   * debian/control.in: libxapianSOVERSION-dbg should be section debug not
 libs.
   * debian/copyright: Update for 2009.  /usr/share/common-licenses/GPL -
 /usr/share/licenses/GPL-2 since the former is now a symlink to GPL-3
 and Xapian is GPL v2 or later.
   * debian/patch: Patch from upstream SVN to fix equality test of const char *
 with string literal to use strcmp().
Checksums-Sha1: 
 46a9e52ea23d3679b9e8b9e51226839739d130e9 1140 xapian-core_1.0.12-2.dsc
 a87597ae2a8cfb8116d149590ca2b73937d320e8 12551 xapian-core_1.0.12-2.diff.gz
 d40131c8ff1b0f65476c48d8fb72bfeb646c0bf5 815288 libxapian15_1.0.12-2_amd64.deb
 489440a099befb59c96e4dcb65e3cb95a7620c29 346976 
libxapian15-dbg_1.0.12-2_amd64.deb
 22efc3572fc8ff3d8260d21962c76883ae86adb1 1232040 
libxapian-dev_1.0.12-2_amd64.deb
 4142ce76769a61cabe051ba8cb8f6aa695d21a02 374222 xapian-tools_1.0.12-2_amd64.deb
 770f5099a21b7d17f1ec6ac1770bc348c5b5963c 268764 
xapian-examples_1.0.12-2_amd64.deb
 aa3ffb58062a39de54ff434f78fe98c0dd5d05c7 1415458 xapian-doc_1.0.12-2_all.deb
Checksums-Sha256: 
 09a802dcbab11c9843ace5171212fb91f559143a5bc69fa0aa21d4a55faa8405 1140 
xapian-core_1.0.12-2.dsc
 753c02df35339e04015070b445a2ff3a4923d72374e2d1297831091f2dd3 12551 
xapian-core_1.0.12-2.diff.gz
 3b606e59cc6c0943d31bf6b84ea0f12430e59eb4f319e09b4cbb9b1f9bae6e3b 815288 
libxapian15_1.0.12-2_amd64.deb
 cb7e2c8594bcdd5d7f43c9f93d056cc08fe0dfccb06e64058e764c4989e45020 346976 
libxapian15-dbg_1.0.12-2_amd64.deb
 99d128ba24f00c26e6e5c4599ade07adb9895bfc63f718193f535a46c15afb6b 1232040 
libxapian-dev_1.0.12-2_amd64.deb
 d02f753164a1cd278da63168854e3141b6b77be38bc15d1c2d3d97595b255769 374222 
xapian-tools_1.0.12-2_amd64.deb
 9f6ee4b81905a1ea07bc51acf60440cb759a131cdbfb91d8c46012508733f6a2 268764 
xapian-examples_1.0.12-2_amd64.deb
 b8add33e14d238f864a5aa8eafc31d0bafefc30fcacfe9d767338a73b1573359 1415458 
xapian-doc_1.0.12-2_all.deb
Files: 
 8aac5bacd42c14102994e20409acc75e 1140 libs optional xapian-core_1.0.12-2.dsc
 194055a967430dbd2a06cc4fbca9b68b 12551 libs optional 
xapian-core_1.0.12-2.diff.gz
 d1b9c3f4583e055922a28033fb2c7d69 815288 libs important 
libxapian15_1.0.12-2_amd64.deb
 028ad262ffc7030b79ecc59d90815070 346976 debug extra 
libxapian15-dbg_1.0.12-2_amd64.deb
 b1e3a44f6a77ce475a97722b4e7fa6db 1232040 libdevel optional 
libxapian-dev_1.0.12-2_amd64.deb
 306cba2cfebdad180ed66ca6923c3c64 374222 utils optional 
xapian-tools_1.0.12-2_amd64.deb
 432849067025a91d67c60c7f44bd0e74 268764 doc optional 
xapian-examples_1.0.12-2_amd64.deb
 52b0a56bac55f8e367441b1c30aa8f9a 1415458 doc optional 
xapian-doc_1.0.12-2_all.deb

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

iEYEARECAAYFAkn9UsEACgkQTutBeVcJOPdgHACgkk1PjCO317oZpt0EObvGasf7
Z2gAn3Bk6srCZpqah7Vf0nakZFl+QN+u
=fNy2
-END PGP SIGNATURE-


Accepted:
libxapian-dev_1.0.12-2_amd64.deb
  to pool/main/x/xapian-core/libxapian-dev_1.0.12-2_amd64.deb
libxapian15-dbg_1.0.12-2_amd64.deb
  to pool/main/x/xapian-core/libxapian15-dbg_1.0.12-2_amd64.deb
libxapian15_1.0.12-2_amd64.deb
  to pool/main/x/xapian-core/libxapian15_1.0.12-2_amd64.deb
xapian-core_1.0.12-2.diff.gz
  to pool/main/x/xapian-core/xapian-core_1.0.12-2.diff.gz
xapian-core_1.0.12-2.dsc
  to pool/main/x/xapian-core/xapian-core_1.0.12-2.dsc
xapian-doc_1.0.12-2_all.deb
  to pool/main/x/xapian-core/xapian-doc_1.0.12-2_all.deb
xapian-examples_1.0.12-2_amd64.deb
  to pool/main/x/xapian-core/xapian-examples_1.0.12-2_amd64.deb
xapian-tools_1.0.12-2_amd64.deb
  to pool/main/x/xapian-core/xapian-tools_1.0.12-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 wmii 3.6+debian-5 (source i386)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 10:01:00 +0200
Source: wmii
Binary: wmii
Architecture: source i386
Version: 3.6+debian-5
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 wmii   - lightweight tabbed and tiled X11 window manager, version 3
Closes: 511954
Changes: 
 wmii (3.6+debian-5) unstable; urgency=low
 .
   * Applying patch from James Westby james.wes...@canonical.com to define
 IXP_NEEDAPI to 88, which is the required ixp API (Closes: #511954).
Checksums-Sha1: 
 44de114bf08a036a657063a36844788efc75bdc7 1164 wmii_3.6+debian-5.dsc
 5713ef61f9fcc7e666862a3750ba4e6e29583a0f 201891 wmii_3.6+debian.orig.tar.gz
 60f4ae6ecd15ef449b490987fdb1f276bee5be91 6325 wmii_3.6+debian-5.diff.gz
 a4d9afa0d95afeb597444b9df10d6fecae8a7034 116528 wmii_3.6+debian-5_i386.deb
Checksums-Sha256: 
 34654e171425efa8545990699ec65dc5326decd73d3b4e156ec9929d521fd7ee 1164 
wmii_3.6+debian-5.dsc
 c308f40dbbbe839eb2b8cb7f2c4681abb41a60e211fe6c3e8a97e679a85b0b01 201891 
wmii_3.6+debian.orig.tar.gz
 566b017e4fe1af3bc33e888d7b07821209c7e6c0545a58ca253bfbd962ff69a3 6325 
wmii_3.6+debian-5.diff.gz
 7f85818de2929199aa352ea3564b139d7fbc61b7a4e8c3b8c07be6f49108a337 116528 
wmii_3.6+debian-5_i386.deb
Files: 
 ff3a0a7bbb8aefb6a3962563c77ed3cf 1164 x11 optional wmii_3.6+debian-5.dsc
 c6653e1d420717b5cf7bc558975187be 201891 x11 optional 
wmii_3.6+debian.orig.tar.gz
 e21f22ad85c4cb36707106d220e0d986 6325 x11 optional wmii_3.6+debian-5.diff.gz
 415752cd944c0a3a2b386cf8a7d95580 116528 x11 optional wmii_3.6+debian-5_i386.deb

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

iEYEARECAAYFAkn9UGEACgkQ+C5cwEsrK54l7gCgtG5bJ38NjgSRD6UFg8RBCDeI
G4cAoM+tF0PmZTdGwa+aw3+bH7meql3c
=9psi
-END PGP SIGNATURE-


Accepted:
wmii_3.6+debian-5.diff.gz
  to pool/main/w/wmii/wmii_3.6+debian-5.diff.gz
wmii_3.6+debian-5.dsc
  to pool/main/w/wmii/wmii_3.6+debian-5.dsc
wmii_3.6+debian-5_i386.deb
  to pool/main/w/wmii/wmii_3.6+debian-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 trousers 0.3.1-8 (source i386)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 10:12:00 +0200
Source: trousers
Binary: trousers trousers-dbg libtspi1 libtspi-dev
Architecture: source i386
Version: 0.3.1-8
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 libtspi-dev - open-source TCG Software Stack (development)
 libtspi1   - open-source TCG Software Stack (library)
 trousers   - open-source TCG Software Stack (daemon)
 trousers-dbg - open-source TCG Software Stack (debug)
Closes: 526563
Changes: 
 trousers (0.3.1-8) unstable; urgency=low
 .
   * Updating vcs fields in control file.
   * Using patch-stamp rather than patch in rules file.
   * Replacing obsolete dh_clean -k with dh_prep.
   * Not using system libtool but included one to workaround
 incompatibilities with newer libtool (Closes: #526563).
Checksums-Sha1: 
 5d5fce1bae6654307a5cee5b789f4efd7f94f81d 1192 trousers_0.3.1-8.dsc
 0598efbb2282556a5edf0ce8c074175a33573951 1306672 trousers_0.3.1.orig.tar.gz
 6dca8076c60a5050a006af71a0eae1831d332066 10593 trousers_0.3.1-8.diff.gz
 266f0115392c787b639fad2b47e905eeef3c9e5a 125860 trousers_0.3.1-8_i386.deb
 fe9a4d9a2868bd139bd01c9e37b50c645a27b752 542400 trousers-dbg_0.3.1-8_i386.deb
 810ea27130fd8e1b45b77032b36393bdf9585851 179122 libtspi1_0.3.1-8_i386.deb
 90312468ef7e849bd914e301b7c3b382ad8e0ea3 654136 libtspi-dev_0.3.1-8_i386.deb
Checksums-Sha256: 
 1ff1aad544cca47e1435f648a69ac36b0d004e3bb1ad6920b3192a355aee8a1a 1192 
trousers_0.3.1-8.dsc
 79d190a214584ceedd3900b4bc7484244d6e0d74289de5a38adcc7415cde3500 1306672 
trousers_0.3.1.orig.tar.gz
 bd8526031d1ab835c79d000afaf34463d4bb74df39d4784d4f2ed6532d050c1e 10593 
trousers_0.3.1-8.diff.gz
 bbce79db33b0f55136d182d1d484cabc14ddfc66d8a0391a7e4b2a650f109fa1 125860 
trousers_0.3.1-8_i386.deb
 5d3cee7032badcdf6f6432f71e9bac34d931aa9edc83f72973d6839c227e126f 542400 
trousers-dbg_0.3.1-8_i386.deb
 e97134f01a60d850f359cc4b20ec5039f56960cbc077f91d57daabb6c6cfc0f3 179122 
libtspi1_0.3.1-8_i386.deb
 bc75bcd2cffbfc6c54bba770eec61d61dec64f9d7455a4c27002f7a51b302691 654136 
libtspi-dev_0.3.1-8_i386.deb
Files: 
 2d06faadf65747d84cc467fde0688e6c 1192 admin optional trousers_0.3.1-8.dsc
 9d3a07380a0c5d2f0074a9ef79ea218a 1306672 admin optional 
trousers_0.3.1.orig.tar.gz
 3b91a37d5665e2d35756b0d7c042129d 10593 admin optional trousers_0.3.1-8.diff.gz
 db6c420fbdf9e300f7f3cebfb581cd03 125860 admin optional 
trousers_0.3.1-8_i386.deb
 f3060d09b3884bde747785ffbc060b50 542400 libdevel extra 
trousers-dbg_0.3.1-8_i386.deb
 976be5079e3e92eec6d4addf97f28998 179122 libs optional libtspi1_0.3.1-8_i386.deb
 17fbfd5fd33911e2aa7960709be69ba9 654136 libdevel optional 
libtspi-dev_0.3.1-8_i386.deb

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

iEYEARECAAYFAkn9UmAACgkQ+C5cwEsrK552NgCeK6bzNc6EFJm6ofE6rioDrhyl
x3gAnA1a4ytb2t9cK5zsneQSsrPCUV15
=Azkh
-END PGP SIGNATURE-


Accepted:
libtspi-dev_0.3.1-8_i386.deb
  to pool/main/t/trousers/libtspi-dev_0.3.1-8_i386.deb
libtspi1_0.3.1-8_i386.deb
  to pool/main/t/trousers/libtspi1_0.3.1-8_i386.deb
trousers-dbg_0.3.1-8_i386.deb
  to pool/main/t/trousers/trousers-dbg_0.3.1-8_i386.deb
trousers_0.3.1-8.diff.gz
  to pool/main/t/trousers/trousers_0.3.1-8.diff.gz
trousers_0.3.1-8.dsc
  to pool/main/t/trousers/trousers_0.3.1-8.dsc
trousers_0.3.1-8_i386.deb
  to pool/main/t/trousers/trousers_0.3.1-8_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 kprof 1.4.3-11 (source amd64)

2009-05-03 Thread Jeremy Lainé
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 10:10:40 +0200
Source: kprof
Binary: kprof
Architecture: source amd64
Version: 1.4.3-11
Distribution: unstable
Urgency: low
Maintainer: Jeremy Lainé jeremy.la...@m4x.org
Changed-By: Jeremy Lainé jeremy.la...@m4x.org
Description: 
 kprof  - a KDE3 visual tool to help analyze profiling results
Changes: 
 kprof (1.4.3-11) unstable; urgency=low
 .
   * Update to Standards-Version 3.8.1.
   * Remove Apps from doc-base section.
   * Remove vcg from Suggests, it's no longer available.
   * Add Vcs-Svn and Vcs-Browser fields to debian/control.
Checksums-Sha1: 
 8084392b40c0a2318443c11a52abd397e1609abf 1152 kprof_1.4.3-11.dsc
 707da35eef26726871c8fd14e8a3dc362ec44f2e 8323 kprof_1.4.3-11.diff.gz
 fcb7f80ba063faac87ecd54a30f86b853ed2f7d3 126668 kprof_1.4.3-11_amd64.deb
Checksums-Sha256: 
 c8cab18fa9b73b9b10dcdb8d992b04bd00e1676952d5903cfcfa25a93cc49176 1152 
kprof_1.4.3-11.dsc
 7810562b72f158e9fda688d4c4ea3a28459e9c01a3e5f5da0d8da8fc351d0dd2 8323 
kprof_1.4.3-11.diff.gz
 6f16171219f0fe80e70f9efdd5dd97fa8d61a0da5c5421e29c8f4b70ca4cecd3 126668 
kprof_1.4.3-11_amd64.deb
Files: 
 052bf36893f39f434200ac591314cc9c 1152 devel optional kprof_1.4.3-11.dsc
 b26610dfd5451ffd8a27328e57d645c7 8323 devel optional kprof_1.4.3-11.diff.gz
 f9f6b8a74466e056851d784bf1ecf27e 126668 devel optional kprof_1.4.3-11_amd64.deb

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

iEYEARECAAYFAkn9UcEACgkQ4mJJZqJp2Sc1KACeK1MATtsQSBUdcpF7Pux6hfGt
n60An1McvjJufJPNUEMOcKHniN4Ivzg1
=5VRk
-END PGP SIGNATURE-


Accepted:
kprof_1.4.3-11.diff.gz
  to pool/main/k/kprof/kprof_1.4.3-11.diff.gz
kprof_1.4.3-11.dsc
  to pool/main/k/kprof/kprof_1.4.3-11.dsc
kprof_1.4.3-11_amd64.deb
  to pool/main/k/kprof/kprof_1.4.3-11_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 liblinebreak 1.2-1 (source all amd64)

2009-05-03 Thread Eugene V. Lyubimkin
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 11:00:26 +0300
Source: liblinebreak
Binary: liblinebreak-dev liblinebreak1 liblinebreak-doc
Architecture: source amd64 all
Version: 1.2-1
Distribution: unstable
Urgency: low
Maintainer: Eugene V. Lyubimkin jackyf.de...@gmail.com
Changed-By: Eugene V. Lyubimkin jackyf.de...@gmail.com
Description: 
 liblinebreak-dev - line breaking library for Unicode (development files)
 liblinebreak-doc - line breaking library for Unicode (documentation)
 liblinebreak1 - line breaking library for Unicode (shared library)
Changes: 
 liblinebreak (1.2-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control:
 - Bumped 'Standards-Version' to 3.8.1, no changes needed.
 - Added 'autotools-dev' to Build-Depends for newer config.sub and
   config.guess files.
   * debian/rules:
 - Copy newer config.sub and config.guess files for build stage and revert
   them back in clean target.
   * debian/liblinebreak1.install:
 - Adapted to new upstream release.
   * debian/liblinebreak1.symbols:
 - Updated.
Checksums-Sha1: 
 117684281ee4cbf3c97ad368124e7e167fc2050b 1053 liblinebreak_1.2-1.dsc
 fe7f466fbf5c01bd01d9e549f3f954d985e307e7 370221 liblinebreak_1.2.orig.tar.gz
 6bd40b6ba36bbb9739f7bc9425fe027eb077e260 4428 liblinebreak_1.2-1.diff.gz
 5326ebe5ed005ba22d5afeeec0dbdedc8dd38129 11850 liblinebreak-dev_1.2-1_amd64.deb
 1496186405d9bfe3a4f27679f1e46456fe2acae0 21020 liblinebreak1_1.2-1_amd64.deb
 d3aba6c2569800e628f2fe952fd44ba753fe25fa 46984 liblinebreak-doc_1.2-1_all.deb
Checksums-Sha256: 
 a3215996932498cc0c290895b99d955982b28c31656bb160a87059564418de49 1053 
liblinebreak_1.2-1.dsc
 9efcb0cb1afc75ad1e92d2b2dbf4d9c77b072d6656c5f1a150af8b718d0c7b76 370221 
liblinebreak_1.2.orig.tar.gz
 5623fdad2f9636eec0fe09a9b9b063b6a1da549543f18e471283296c5588cb1e 4428 
liblinebreak_1.2-1.diff.gz
 0a9215d53e9d27e404e3c3e7bf373a66a6de5aab6565438918409d3083242a22 11850 
liblinebreak-dev_1.2-1_amd64.deb
 b5408243929f3a4aee728355d4d94ae37ebe65303a72cef3279a9aa18582c4db 21020 
liblinebreak1_1.2-1_amd64.deb
 eac6cc2e6a3a392c05da0fa6287928d4cf353824cccb237fdb59ece69a4431bb 46984 
liblinebreak-doc_1.2-1_all.deb
Files: 
 03ee5762bdfb46ccaf4c0e6e8d679d69 1053 text optional liblinebreak_1.2-1.dsc
 d18039259001ccb24b5dd4648c49c5ad 370221 text optional 
liblinebreak_1.2.orig.tar.gz
 a701079353a4b9c1a096e6d45b7ff3d1 4428 text optional liblinebreak_1.2-1.diff.gz
 a27d59051a486e74b03e814669d50522 11850 libdevel optional 
liblinebreak-dev_1.2-1_amd64.deb
 a9450e5f167a9d4556d5533db9fafe37 21020 text optional 
liblinebreak1_1.2-1_amd64.deb
 fe86b29cf08409625bb256c1cd43a731 46984 doc optional 
liblinebreak-doc_1.2-1_all.deb

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

iEYEARECAAYFAkn9Vz8ACgkQchorMMFUmYw3mgCeNAfMhQihUsSmBbDPM4laYmEq
dhYAoIXyf1PIIaqcS1iWfFL/mYhXEAcW
=385g
-END PGP SIGNATURE-


Accepted:
liblinebreak-dev_1.2-1_amd64.deb
  to pool/main/libl/liblinebreak/liblinebreak-dev_1.2-1_amd64.deb
liblinebreak-doc_1.2-1_all.deb
  to pool/main/libl/liblinebreak/liblinebreak-doc_1.2-1_all.deb
liblinebreak1_1.2-1_amd64.deb
  to pool/main/libl/liblinebreak/liblinebreak1_1.2-1_amd64.deb
liblinebreak_1.2-1.diff.gz
  to pool/main/libl/liblinebreak/liblinebreak_1.2-1.diff.gz
liblinebreak_1.2-1.dsc
  to pool/main/libl/liblinebreak/liblinebreak_1.2-1.dsc
liblinebreak_1.2.orig.tar.gz
  to pool/main/libl/liblinebreak/liblinebreak_1.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 libbio-graphics-perl 1.94-1 (source all)

2009-05-03 Thread Charles Plessy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 18:24:13 +0900
Source: libbio-graphics-perl
Binary: libbio-graphics-perl
Architecture: source all
Version: 1.94-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: 
 libbio-graphics-perl - Generate GD images of Bio::Seq objects
Changes: 
 libbio-graphics-perl (1.94-1) unstable; urgency=low
 .
   * New upstream release, adding a “fast” and fixing error in xyplot.
Checksums-Sha1: 
 3286823b08976a0067e5eef0e389af2646e51815 1499 libbio-graphics-perl_1.94-1.dsc
 7d4e26b525a48129179be184b57e5a64a34e4a5f 623816 
libbio-graphics-perl_1.94.orig.tar.gz
 0e74cafd3c3c64f08863682cb0528a3e469cf8eb 3533 
libbio-graphics-perl_1.94-1.diff.gz
 1e80bfbb31e5276e005ccba1e5c517c06588ed6c 585156 
libbio-graphics-perl_1.94-1_all.deb
Checksums-Sha256: 
 2d5323dbcc5bb2cb3edf739f1f511a509ad2b8902f817d87861164eddc10e5e4 1499 
libbio-graphics-perl_1.94-1.dsc
 54ccbff39f14c1b5454b9862dcbd269db782c423ea8a2d93bbf4b920dd6793e3 623816 
libbio-graphics-perl_1.94.orig.tar.gz
 1bf9c51a0102e242b055da6020939ab24e3d74424c290043bd7d76ff4db8eb2b 3533 
libbio-graphics-perl_1.94-1.diff.gz
 40224392eac4ff8dc1f98ec3349ea9c8dee2cdd508e0a0f29cca09c2e1e7a5ab 585156 
libbio-graphics-perl_1.94-1_all.deb
Files: 
 d05351d0735667794696d51ac82d199f 1499 perl optional 
libbio-graphics-perl_1.94-1.dsc
 363508cab96fc62d84f2d1f9e158edfd 623816 perl optional 
libbio-graphics-perl_1.94.orig.tar.gz
 c2d7d9d7d34ef79715a85719b1df6cbb 3533 perl optional 
libbio-graphics-perl_1.94-1.diff.gz
 c8992d969266368c9937ef29ed5db129 585156 perl optional 
libbio-graphics-perl_1.94-1_all.deb

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

iEYEARECAAYFAkn9ZAIACgkQdYl1krr+x/JdDgCdHUfhPj8BWaCqFObtbtuyvdn7
BtMAnRbaY/vRpjyz5ZaXTxmt0oKORC+E
=zIZN
-END PGP SIGNATURE-


Accepted:
libbio-graphics-perl_1.94-1.diff.gz
  to pool/main/libb/libbio-graphics-perl/libbio-graphics-perl_1.94-1.diff.gz
libbio-graphics-perl_1.94-1.dsc
  to pool/main/libb/libbio-graphics-perl/libbio-graphics-perl_1.94-1.dsc
libbio-graphics-perl_1.94-1_all.deb
  to pool/main/libb/libbio-graphics-perl/libbio-graphics-perl_1.94-1_all.deb
libbio-graphics-perl_1.94.orig.tar.gz
  to pool/main/libb/libbio-graphics-perl/libbio-graphics-perl_1.94.orig.tar.gz


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



Accepted file 5.01-1 (source i386)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 11:02:00 +0200
Source: file
Binary: file libmagic1 libmagic-dev python-magic python-magic-dbg
Architecture: source i386
Version: 5.01-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 file   - Determines file type using magic numbers
 libmagic-dev - File type determination library using magic numbers 
(developmen
 libmagic1  - File type determination library using magic numbers
 python-magic - File type determination library using magic numbers (Python 
bin
 python-magic-dbg - File type determination library using magic numbers 
(Python bin
Closes: 499748 501589 509942 511764 513526 514056 515019 515761 522433
Changes: 
 file (5.01-1) unstable; urgency=low
 .
   * Adding patch from  Adam Buchbinder adam.buchbin...@gmail.com to
 fix false matches against Z-machine pattern (Closes: #499748).
   * Adding patch from Adam Buchbinder adam.buchbin...@gmail.com to
 improve XWD magic in order to not give false results on mp3 files
 (Closes: #511764).
   * Adding patch from Adam Buchbinder adam.buchbin...@gmail.com to fix
 unescaped spaces in erlang magic (Closes: #514056).
   * Updating UUID patches to cope with leading zeroes, thanks to Bjorn
 Mork bj...@mork.no (Closes: #515019).
   * Updating section for python-magic-dbg.
   * Adding patch from Adam Buchbinder adam.buchbin...@gmail.com to fix
 a spacing error in the manpage (Closes: #515761).
   * Adding patch from Adam Buchbinder adam.buchbin...@gmail.com to
 updated utf-8 big-endian magic (Closes: #513526).
   * Adding patch from Adam Buchbinder adam.buchbin...@gmail.com to add
 new magic for git packs and indexes (Closes: #509942).
   * Adding patch from Adam Buchbinder adam.buchbin...@gmail.com to
 update magic for spectrum tap files (Closes: #501589).
   * Merging upstream version 5.01.
   * Removing magic-update-erlang.patch, went upstream.
   * Rediffing magic-add-qdbm.patch.
   * Rediffing magic-add-tokyocabinet.patch.
   * Manually renaming magic directory in rules to correct name.
   * Updating file-mgc.patch for file 5, produces raw magics again now
 (Closes: #522433).
Checksums-Sha1: 
 45993b88c92ce215a7a1d3261d75f4be9c6e8774 1210 file_5.01-1.dsc
 0f9759beeb94b85d14123a30a801249f74f902e6 614967 file_5.01.orig.tar.gz
 f41aa8e3d32aebfc7ddd2dca932bc78f4bf0592b 46778 file_5.01-1.diff.gz
 9cf9af346adba501313ddcccab8ea94476ad99b8 46164 file_5.01-1_i386.deb
 20ea5b254c8e1d77d6ae9715ae8e175488018584 386060 libmagic1_5.01-1_i386.deb
 0cbd614aa0ff2d1e1252f4b355cecdcf484761b3 96610 libmagic-dev_5.01-1_i386.deb
 810707c8506c04c467a4a0cb364fee7ea98eea93 35322 python-magic_5.01-1_i386.deb
 e0db96ce79fb92f64f28f0eaa33e71dacb9e232b 25592 python-magic-dbg_5.01-1_i386.deb
Checksums-Sha256: 
 66fea9b2487d146965edb6c899a20be229eab179833e9610babbbc758b1dbf28 1210 
file_5.01-1.dsc
 3201431a5fecdf88b8058ba292f11d6b37859a2c956e4da0509ff571c8f4932c 614967 
file_5.01.orig.tar.gz
 42ce77c8fde4e338e4192350fac6b83702afd72ec825c25cef1ae133463b5e2a 46778 
file_5.01-1.diff.gz
 0d88476c6d66cd19915bbad7e094e2cc4daba5eda9716a56d364a77b0d8fbf51 46164 
file_5.01-1_i386.deb
 d24768f80c5730498eadc218d5dcb4cb943455fd717a3f2459790a573c2b336c 386060 
libmagic1_5.01-1_i386.deb
 a5086ba41a41ec21362ed9160e3cc7e04dece678766c946083aa3b72273aab80 96610 
libmagic-dev_5.01-1_i386.deb
 cacfcb5963bdcc3b847871498b238f4923ef5727dac87d6fe0f9b0cc594aba40 35322 
python-magic_5.01-1_i386.deb
 9e1cbdc102d061ced6241ab1a55369e27cb0d90ec06ca723f59cf90f0367abd7 25592 
python-magic-dbg_5.01-1_i386.deb
Files: 
 caaf324626d9ce1318b568dd5f1e6bdb 1210 utils standard file_5.01-1.dsc
 e492d6309728ace56b113de1960e3024 614967 utils standard file_5.01.orig.tar.gz
 6bfd8f97b56fb1f47ceac169ef04d4ed 46778 utils standard file_5.01-1.diff.gz
 bf043aec382389f7194ef08d9676e3f0 46164 utils standard file_5.01-1_i386.deb
 49913a993608734015ec1989cfbdc526 386060 libs standard libmagic1_5.01-1_i386.deb
 48b975a3156414d556eb1b6809cfb2e7 96610 libdevel optional 
libmagic-dev_5.01-1_i386.deb
 7f8f8c666eadd7e77efcc24754d0d2d9 35322 python extra 
python-magic_5.01-1_i386.deb
 da589be314af791dc286f97a8cf034b4 25592 debug extra 
python-magic-dbg_5.01-1_i386.deb

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

iEYEARECAAYFAkn9Xg0ACgkQ+C5cwEsrK572pwCgu++LYNPWylQBZ1F6Jis3ilxm
AWMAn33oLHQIbKkYxf8pxlC6LN5X2R1a
=cgYw
-END PGP SIGNATURE-


Accepted:
file_5.01-1.diff.gz
  to pool/main/f/file/file_5.01-1.diff.gz
file_5.01-1.dsc
  to pool/main/f/file/file_5.01-1.dsc
file_5.01-1_i386.deb
  to pool/main/f/file/file_5.01-1_i386.deb
file_5.01.orig.tar.gz
  to pool/main/f/file/file_5.01.orig.tar.gz
libmagic-dev_5.01-1_i386.deb
  to pool/main/f/file/libmagic-dev_5.01-1_i386.deb
libmagic1_5.01-1_i386.deb
  to pool/main/f/file/libmagic1_5.01-1_i386.deb
python-magic-dbg_5.01-1_i386.deb
  to 

Accepted webissues 0.9.5~beta1-1 (source i386)

2009-05-03 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 11:01:24 +0200
Source: webissues
Binary: webissues webissues-dbg
Architecture: source i386
Version: 0.9.5~beta1-1
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 webissues  - a network system supporting team collaboration
 webissues-dbg - a network system supporting team collaboration (dbg symbols)
Changes: 
 webissues (0.9.5~beta1-1) unstable; urgency=low
 .
   * New upstream beta release.
   * Fix typo in get-orig-source target.
   * Refresh my copyright in debian/copyright.
   * Refer in debian/copyright to the GPL-2 file instead of GPL.
Checksums-Sha1: 
 4236e0ff90116d932ea5df407644c7d0c7d928e3 1081 webissues_0.9.5~beta1-1.dsc
 dfbc459cb93c8a1d11b64e7a721742c103f1781d 1316360 
webissues_0.9.5~beta1.orig.tar.gz
 093633e108712ea76c1619271d4d07e3425aca13 6236 webissues_0.9.5~beta1-1.diff.gz
 ae80f9d97e5e89828bd17c8c186d748e08f49a42 1457102 
webissues_0.9.5~beta1-1_i386.deb
 f4523f3f2a46a5dfa9be2d6cbfb46444ef76657e 6677218 
webissues-dbg_0.9.5~beta1-1_i386.deb
Checksums-Sha256: 
 03c722c03027c6a033ecd8ee95efc50d89cb59cd52423781ef890730d3d8edca 1081 
webissues_0.9.5~beta1-1.dsc
 de4f5bbd5da052304fe165f559bbda3e6f12a5a84343bbcabdabd46f0c19204e 1316360 
webissues_0.9.5~beta1.orig.tar.gz
 0f0a557c6100302195544795d1802286c5fbfbe5b1031b1b91963e8c1716d2d7 6236 
webissues_0.9.5~beta1-1.diff.gz
 fe93f9b86083f83c2bdf563b648f420de528751551b35119c641b8879fa5f83a 1457102 
webissues_0.9.5~beta1-1_i386.deb
 14fc413992e56675bbe761b00d87085c99b00d2a2925f624182926fca4d98332 6677218 
webissues-dbg_0.9.5~beta1-1_i386.deb
Files: 
 3db39b55b2c1be37d309a7e7d6cebb4c 1081 x11 optional webissues_0.9.5~beta1-1.dsc
 70b47dad6c4d38bb0a5190752aea5f4b 1316360 x11 optional 
webissues_0.9.5~beta1.orig.tar.gz
 ad1a9fe7d3b6d6cb33d2a46cdd0f23fa 6236 x11 optional 
webissues_0.9.5~beta1-1.diff.gz
 0cdcc275c51b5318b20e1363bd0c2e52 1457102 x11 optional 
webissues_0.9.5~beta1-1_i386.deb
 202568cbda593b18e069876fe462b223 6677218 debug extra 
webissues-dbg_0.9.5~beta1-1_i386.deb

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

iEYEARECAAYFAkn9YOAACgkQ2XA5inpabMdUkwCffdpcJXj1S2WJM2PoglvqZRCj
+vYAnjbvdyei8SauNbQAFfIPTwa8ttcN
=tQTy
-END PGP SIGNATURE-


Accepted:
webissues-dbg_0.9.5~beta1-1_i386.deb
  to pool/main/w/webissues/webissues-dbg_0.9.5~beta1-1_i386.deb
webissues_0.9.5~beta1-1.diff.gz
  to pool/main/w/webissues/webissues_0.9.5~beta1-1.diff.gz
webissues_0.9.5~beta1-1.dsc
  to pool/main/w/webissues/webissues_0.9.5~beta1-1.dsc
webissues_0.9.5~beta1-1_i386.deb
  to pool/main/w/webissues/webissues_0.9.5~beta1-1_i386.deb
webissues_0.9.5~beta1.orig.tar.gz
  to pool/main/w/webissues/webissues_0.9.5~beta1.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 libexplain 0.11.D001-1 (source i386)

2009-05-03 Thread Peter Miller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 29 Mar 2009 14:24:23 +1100
Source: libexplain
Binary: explain libexplain9 libexplain9-dbg libexplain-dev
Architecture: source i386
Version: 0.11.D001-1
Distribution: unstable
Urgency: low
Maintainer: Peter Miller pmil...@opensource.org.au
Changed-By: Peter Miller pmil...@opensource.org.au
Description: 
 explain- utility to explain system call errors
 libexplain-dev - Explain errno values returned by libc functions - development 
fil
 libexplain9 - Explain errno values returned by libc functions
 libexplain9-dbg - Explain errno values returned by libc functions - debugging 
symbo
Changes: 
 libexplain (0.11.D001-1) unstable; urgency=low
 .
   * Prepare libexplain for the next public release.
Checksums-Sha1: 
 81d312cd9148b6a5bccd1e783c9d065bcc877e79 1126 libexplain_0.11.D001-1.dsc
 1afe194af54e36758b914fc243b1e260009bc797 2786993 
libexplain_0.11.D001.orig.tar.gz
 c62a626dbeb43b190f2352f0a8c4fe51abb1a89d 20 libexplain_0.11.D001-1.diff.gz
 212ddf502393de8785d01dd78582d1ee01a74352 42834 explain_0.11.D001-1_i386.deb
 c9f06bba887e9153f5449c2d60a75cb874690eab 141270 
libexplain9_0.11.D001-1_i386.deb
 40e92cdf00ad2a9477ba00251d69b8b267396c1e 303160 
libexplain9-dbg_0.11.D001-1_i386.deb
 e9a628927807b64bd4a53d41319087fcd0a7b7ee 466256 
libexplain-dev_0.11.D001-1_i386.deb
Checksums-Sha256: 
 d9336d3534c077d4969c263cb0749b7e0fb423529a775296ef8407b644db09fd 1126 
libexplain_0.11.D001-1.dsc
 5b3e2aeb6f79f974156d0881b9f9dc099ff2a24f3864d687e1c26688f93de6ed 2786993 
libexplain_0.11.D001.orig.tar.gz
 b502456c49a2bedc290c7e645017e7a7d50a7cdc246522e2b7b38df5381e7bdc 20 
libexplain_0.11.D001-1.diff.gz
 4f8fa2d37525c9f311c29b4a11628389413ed60bce7d0008c1e484d52f8d7c53 42834 
explain_0.11.D001-1_i386.deb
 ec026a837d094e0bda57617ecfa4f2ef04cf143e657298c4f541252e5d8da918 141270 
libexplain9_0.11.D001-1_i386.deb
 c5127cc0eb6f1019a66e4fe34facc4b9d27e97015588252493c6b224b836af7b 303160 
libexplain9-dbg_0.11.D001-1_i386.deb
 a13f3c0553d2e5313e53d8947c86e7ccae8c5d5f0159d0e029ff84f64835e913 466256 
libexplain-dev_0.11.D001-1_i386.deb
Files: 
 5472f82e46d0285b485c0270e30bd1d1 1126 devel optional libexplain_0.11.D001-1.dsc
 efc12b899c5c188f67f38a7fce0a3e39 2786993 devel optional 
libexplain_0.11.D001.orig.tar.gz
 97baf110710e2eb2da0bd7565a7051da 20 devel optional 
libexplain_0.11.D001-1.diff.gz
 a803211fa79c6fc32e3bec65dac77da0 42834 devel optional 
explain_0.11.D001-1_i386.deb
 1b0dccc63841af269ab429e73c4b4380 141270 devel optional 
libexplain9_0.11.D001-1_i386.deb
 6e9fc87a725a08be3f5f46797712e3ba 303160 libdevel extra 
libexplain9-dbg_0.11.D001-1_i386.deb
 a8bbb2a8d4be282b6d0e287647659f8c 466256 libdevel optional 
libexplain-dev_0.11.D001-1_i386.deb

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

iEYEARECAAYFAknP8zIACgkQA8ACPgVBDpdLFQCdHR7FkpRNvIrJ67SRxiyfi/r4
6z4Ani86KLa99zI6AkeoFNpaT9ccB+K2
=wZC8
-END PGP SIGNATURE-


Accepted:
explain_0.11.D001-1_i386.deb
  to pool/main/libe/libexplain/explain_0.11.D001-1_i386.deb
libexplain-dev_0.11.D001-1_i386.deb
  to pool/main/libe/libexplain/libexplain-dev_0.11.D001-1_i386.deb
libexplain9-dbg_0.11.D001-1_i386.deb
  to pool/main/libe/libexplain/libexplain9-dbg_0.11.D001-1_i386.deb
libexplain9_0.11.D001-1_i386.deb
  to pool/main/libe/libexplain/libexplain9_0.11.D001-1_i386.deb
libexplain_0.11.D001-1.diff.gz
  to pool/main/libe/libexplain/libexplain_0.11.D001-1.diff.gz
libexplain_0.11.D001-1.dsc
  to pool/main/libe/libexplain/libexplain_0.11.D001-1.dsc
libexplain_0.11.D001.orig.tar.gz
  to pool/main/libe/libexplain/libexplain_0.11.D001.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 bluez 4.34-0exp1 (source all amd64)

2009-05-03 Thread Filippo Giunchedi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 01 Apr 2009 12:20:01 +0200
Source: bluez
Binary: libbluetooth3 libbluetooth-dev bluetooth bluez bluez-alsa bluez-cups 
bluez-gstreamer bluez-pcmcia-support bluez-compat bluez-utils
Architecture: source all amd64
Version: 4.34-0exp1
Distribution: experimental
Urgency: low
Maintainer: Debian Bluetooth Maintainers 
pkg-bluetooth-maintain...@lists.alioth.debian.org
Changed-By: Filippo Giunchedi fili...@debian.org
Description: 
 bluetooth  - Bluetooth support
 bluez  - Bluetooth tools and daemons
 bluez-alsa - Bluetooth audio support
 bluez-compat - BlueZ 3.x compatibility binaries
 bluez-cups - Bluetooth printer driver for CUPS
 bluez-gstreamer - Bluetooth GStreamer support
 bluez-pcmcia-support - PCMCIA support files for BlueZ 2.0 Bluetooth tools
 bluez-utils - Transitional package
 libbluetooth-dev - Development files for using the BlueZ Linux Bluetooth 
library
 libbluetooth3 - Library to use the BlueZ Linux Bluetooth stack
Closes: 499529 504675
Changes: 
 bluez (4.34-0exp1) experimental; urgency=low
 .
   * First upload of bluez 4.x (Closes: #499529)
 - include parts of the packaging from ubuntu, thanks!
 - bluez-utils and bluez-libs are now a single source package
 - libbluetooth2 - libbluetooth3 bump
 - conflict bluez with bluez-utils (= 3.36-3)
 - update debian/copyright, thanks to Nobuhiro Iwamatsu
   * Remove hid2hci patches/script
   * Remove broken link to documentation (Closes: #504675)
   * Install a sample commandline agent from test/ into bluetooth-agent
 - add 001_test_agent_default_adapter.patch to get the default adapter
   * Install test/simple-agent and test/list-devices as examples
   * Remove old commented code from maintainer scripts (pcmcia-support postinst
 and bluez preinst)
   * Update watch file to match bluez only
   * Add #DEBHELPER# to debian/bluez-utils.postrm
   * Update to S-V 3.8.1: no changes needed
   * Fix lintian warnings:
 - add -e to remaining maintainer scripts
 - remove full path to update-rc.d in debian/bluez.postinst
 - override bluez-utils: maintainer-script-empty postrm for transitional
   bluez-utils postrm
   * Use 7 in debian/compat
   * Fix debian/bluez.preinst to use dpkg-query, thus removing the lintian
 override
Checksums-Sha1: 
 af96758faac2d2a833eb03422bd50e17e0579ff1 1546 bluez_4.34-0exp1.dsc
 d3abcf3cbae9bbced9f255f89f72435b920e09d6 980050 bluez_4.34.orig.tar.gz
 0129f066a8ad05a3ce7ed85ebf020d26f2081b6c 15583 bluez_4.34-0exp1.diff.gz
 318411e62a854f563f3afbc1d5466935e25e97ff 22792 bluetooth_4.34-0exp1_all.deb
 e079db34496a159209e7cae22457d47938f3ce09 22828 bluez-utils_4.34-0exp1_all.deb
 3020e132f2be1edb7ef4d4864016c576ed44c25b 66278 
libbluetooth3_4.34-0exp1_amd64.deb
 ce8b904262b4a00a29da5aa0ed7c339cb9a24b42 48708 
libbluetooth-dev_4.34-0exp1_amd64.deb
 2121b0dea4bee41dceea4fd83320c51cc064e144 456434 bluez_4.34-0exp1_amd64.deb
 e1332a6a0c5df5aa4db11630d9ad9a6fd09e4074 55962 bluez-alsa_4.34-0exp1_amd64.deb
 4bb25fd3a92145cba1c33d030b3c858835809f28 35112 bluez-cups_4.34-0exp1_amd64.deb
 4b31a83736f05404bfb6e9efa1a44d739faf35e3 69892 
bluez-gstreamer_4.34-0exp1_amd64.deb
 671b6829694310c7b75efa4fe6948c3e65a2131a 24264 
bluez-pcmcia-support_4.34-0exp1_amd64.deb
 e1d41526e9dbef791bbaae1f11808ab889f81a74 77384 
bluez-compat_4.34-0exp1_amd64.deb
Checksums-Sha256: 
 7cf3f630597df1dc693d753b505449440381a29092dd07c548e42a17df947edc 1546 
bluez_4.34-0exp1.dsc
 1c46b6e219aec9bbd3286e9366de7e6dd05f68ed33b7487fbd211397c890fc40 980050 
bluez_4.34.orig.tar.gz
 6d31c071fb9c7a4e0ccb711ee4374e010fd1a3a0c3e63bbce35f8f623c871bce 15583 
bluez_4.34-0exp1.diff.gz
 b5ee115050316bd9fdc8a00811b24f959bd6c236b9701209c25681ffac69e6f2 22792 
bluetooth_4.34-0exp1_all.deb
 fea17880b169d9d9680c599c8a53850ff9307179efd60e1fc80ba4401415fffd 22828 
bluez-utils_4.34-0exp1_all.deb
 0d4edb43f749c4457460eb50ee4333601e9398a7447d1405b663f8a6cc95ec04 66278 
libbluetooth3_4.34-0exp1_amd64.deb
 703127a6992867383bdbf9d431b24f38a074ea777c9ec4b78df5ff41ecf0ba4d 48708 
libbluetooth-dev_4.34-0exp1_amd64.deb
 def74b9b104b757da1a35662396cd119db6de823bc53a0fca030b5d546ce8d0d 456434 
bluez_4.34-0exp1_amd64.deb
 1202acf0102938c6c99f153d8e46f70fa8cc104cbde9a0741a30d74d3111ee59 55962 
bluez-alsa_4.34-0exp1_amd64.deb
 12c8268e4ac1c4820dc18f99189220cb928b50d1fc9bdfc99d0e1dcad09a58cd 35112 
bluez-cups_4.34-0exp1_amd64.deb
 def912044f0c07529ffcf90ad31f176aa2a1c8df1db51a838c7bb92b6106 69892 
bluez-gstreamer_4.34-0exp1_amd64.deb
 197b4cb47810c6bcf39d65e1f6f7c847ceb04e0e1c199eab217eddbff0a526b2 24264 
bluez-pcmcia-support_4.34-0exp1_amd64.deb
 bc4e992a8090dcd2b67ccc13a537a4221ccfb9970d0aea9c6ccf1335665da8f5 77384 
bluez-compat_4.34-0exp1_amd64.deb
Files: 
 e3b246b3c40193bc7f09fa066e756dc0 1546 admin optional bluez_4.34-0exp1.dsc
 2435f7a932cdeecce01211e06142795f 980050 admin optional bluez_4.34.orig.tar.gz
 f478159390103c2864469a0b4ff6cb54 15583 admin optional bluez_4.34-0exp1.diff.gz
 

Accepted xf86-video-omapfb 0.1.1-1 (source armel)

2009-05-03 Thread Riku Voipio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 05 Sep 2008 01:41:02 +0200
Source: xf86-video-omapfb
Binary: xserver-xorg-video-omapfb xserver-xorg-video-omap3
Architecture: source armel
Version: 0.1.1-1
Distribution: experimental
Urgency: low
Maintainer: Riku Voipio riku.voi...@iki.fi
Changed-By: Riku Voipio riku.voi...@iki.fi
Description: 
 xserver-xorg-video-omap3 - X.Org X server --Omapfb display driver
 xserver-xorg-video-omapfb - X.Org X server --Omapfb display driver
Changes: 
 xf86-video-omapfb (0.1.1-1) experimental; urgency=low
 .
   * Initial upload to debian
Checksums-Sha1: 
 5b87b0070cde38b65438fcfb819a6ba822ce54bb 1474 xf86-video-omapfb_0.1.1-1.dsc
 5be77d5b09a5be51b15548fe3e7208ffacd13423 20406 
xf86-video-omapfb_0.1.1.orig.tar.gz
 24c4c2963b28b47128bc4fd7e0b4a83fceb30474 14219 
xf86-video-omapfb_0.1.1-1.diff.gz
 3a76c88e16b1ce42131e2bef79e4e0cd89e5b94a 16132 
xserver-xorg-video-omapfb_0.1.1-1_armel.deb
 653b86ff262005d31382464201d29036f5a4814a 14578 
xserver-xorg-video-omap3_0.1.1-1_armel.deb
Checksums-Sha256: 
 15d879f84045fb8dadd9826ccdb095d24fda6fabac2229e05e13a8eda4de5ab2 1474 
xf86-video-omapfb_0.1.1-1.dsc
 1730f1195a0dc63b22f145498f15604c582de53e3112a417300dae73ca99 20406 
xf86-video-omapfb_0.1.1.orig.tar.gz
 1852b5bd303f7c7550976afa745802b257a4dde5ad0e05f3e96a141171bf3e56 14219 
xf86-video-omapfb_0.1.1-1.diff.gz
 10d07200ba7d44763af2e7359d4b9fe379360e1893395a0b5a6cc7ea865816f3 16132 
xserver-xorg-video-omapfb_0.1.1-1_armel.deb
 1c0b80dfe37dde477d8f6b1a0cb6627eb55d796350a2f8a108b8a1130ba05ab8 14578 
xserver-xorg-video-omap3_0.1.1-1_armel.deb
Files: 
 7e4f4a95c248e0c5e75ecc65f35d0604 1474 x11 optional 
xf86-video-omapfb_0.1.1-1.dsc
 d688d3dc259029e1de44d982fcc8afa7 20406 x11 optional 
xf86-video-omapfb_0.1.1.orig.tar.gz
 f5b1bdf403b0ea6a1996dbbd4db229db 14219 x11 optional 
xf86-video-omapfb_0.1.1-1.diff.gz
 b55c7930fa2f9fa775037a881b025f27 16132 x11 optional 
xserver-xorg-video-omapfb_0.1.1-1_armel.deb
 ad900a89e96bd67086ffe98d40b4e07e 14578 x11 optional 
xserver-xorg-video-omap3_0.1.1-1_armel.deb

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

iD8DBQFJ08fYibPvMsrqrwMRArbSAKCLlRkcvk7o453Y4QVqIVcsRoolYACg02Km
zsnmDlm1Ms/pytFBHXifd9I=
=0mpf
-END PGP SIGNATURE-


Accepted:
xf86-video-omapfb_0.1.1-1.diff.gz
  to pool/main/x/xf86-video-omapfb/xf86-video-omapfb_0.1.1-1.diff.gz
xf86-video-omapfb_0.1.1-1.dsc
  to pool/main/x/xf86-video-omapfb/xf86-video-omapfb_0.1.1-1.dsc
xf86-video-omapfb_0.1.1.orig.tar.gz
  to pool/main/x/xf86-video-omapfb/xf86-video-omapfb_0.1.1.orig.tar.gz
xserver-xorg-video-omap3_0.1.1-1_armel.deb
  to pool/main/x/xf86-video-omapfb/xserver-xorg-video-omap3_0.1.1-1_armel.deb
xserver-xorg-video-omapfb_0.1.1-1_armel.deb
  to pool/main/x/xf86-video-omapfb/xserver-xorg-video-omapfb_0.1.1-1_armel.deb


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



Accepted logback 0.9.15-1 (source all)

2009-05-03 Thread Damien Raude-Morvan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 20:43:52 +0100
Source: logback
Binary: liblogback-java liblogback-java-doc
Architecture: source all
Version: 0.9.15-1
Distribution: unstable
Urgency: low
Maintainer: Damien Raude-Morvan draz...@drazzib.com
Changed-By: Damien Raude-Morvan draz...@drazzib.com
Description: 
 liblogback-java - flexible logging library for Java
 liblogback-java-doc - flexible logging library for Java - documentation
Closes: 506569
Changes: 
 logback (0.9.15-1) unstable; urgency=low
 .
   * Initial release. (Closes: #506569)
Checksums-Sha1: 
 abb8b6be8ee12f5c99bda5776f86c785ed8418fe 1235 logback_0.9.15-1.dsc
 3c2341512e18d98b0c0f0b27e519fbe617aaf792 4644802 logback_0.9.15.orig.tar.gz
 cb858b5614f056b26d8390f38f484c81caaab9cc 3706 logback_0.9.15-1.diff.gz
 1abce42f030f8ebe9f71d60935f5c266347333ef 353482 
liblogback-java_0.9.15-1_all.deb
 5b43a4f6a3241f44e8c4ebdba21b3b454b0da1af 1486970 
liblogback-java-doc_0.9.15-1_all.deb
Checksums-Sha256: 
 e5a45a45cbb44f9f721b7cfa7475bf7db2f109270ecf3a65fccb0889f984c54d 1235 
logback_0.9.15-1.dsc
 dbf521639fde64563120598dbcedf72d2da0dfb6b0a9ddf144dac3c3a41cb21d 4644802 
logback_0.9.15.orig.tar.gz
 0bb816c5833d5afc2af5c33dc11b48fd30366d31a796fb049da3e7ddaff059b8 3706 
logback_0.9.15-1.diff.gz
 5cca92ecffd2d39ee7fa70109ae5b6c189d72efdefb6acb7fdb91c8362abf5bc 353482 
liblogback-java_0.9.15-1_all.deb
 2cb120ac66e12dd0df1605dd6ede6c6415c67b5a3ebdd94e64eedf3b73e942e8 1486970 
liblogback-java-doc_0.9.15-1_all.deb
Files: 
 b7fe818de5e1bad9c3b1d4fa198a3658 1235 java optional logback_0.9.15-1.dsc
 620fffa922170bb8fbc22595386d83bf 4644802 java optional 
logback_0.9.15.orig.tar.gz
 4a001a8082ea346fdbb20638d110ca6b 3706 java optional logback_0.9.15-1.diff.gz
 a8e479ad7dd395109394c8e41a1fb2a3 353482 java optional 
liblogback-java_0.9.15-1_all.deb
 d77a2224a03dc1f4155456dc3ace6717 1486970 doc optional 
liblogback-java-doc_0.9.15-1_all.deb

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

iEYEARECAAYFAknFcpAACgkQpldmHVvob7lEHQCguMCArcbV0b3aoPcE7S3f2tcN
R98AoP3/EnT+pzSotF+/VtTMAD1ctskM
=W/p6
-END PGP SIGNATURE-


Accepted:
liblogback-java-doc_0.9.15-1_all.deb
  to pool/main/l/logback/liblogback-java-doc_0.9.15-1_all.deb
liblogback-java_0.9.15-1_all.deb
  to pool/main/l/logback/liblogback-java_0.9.15-1_all.deb
logback_0.9.15-1.diff.gz
  to pool/main/l/logback/logback_0.9.15-1.diff.gz
logback_0.9.15-1.dsc
  to pool/main/l/logback/logback_0.9.15-1.dsc
logback_0.9.15.orig.tar.gz
  to pool/main/l/logback/logback_0.9.15.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 otf-stix 0.9~2007.10.31-3 (source all)

2009-05-03 Thread Atsuhito KOHDA
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 18:46:27 +0900
Source: otf-stix
Binary: otf-stix
Architecture: source all
Version: 0.9~2007.10.31-3
Distribution: unstable
Urgency: low
Maintainer: Atsuhito KOHDA ko...@debian.org
Changed-By: Atsuhito KOHDA ko...@debian.org
Description: 
 otf-stix   - the Scientific and Technical Information eXchange fonts
Closes: 526539
Changes: 
 otf-stix (0.9~2007.10.31-3) unstable; urgency=low
 .
   * Fixed Build-Depends (added unzip).  (Closes: #526539)
Checksums-Sha1: 
 8765424a5c4e405fc92adb6699289252651ce563 1062 otf-stix_0.9~2007.10.31-3.dsc
 5562bdd13f18c3d84eb30da8b0f8edc882d585d0 5584 otf-stix_0.9~2007.10.31-3.diff.gz
 7aa6b176c7b22a1d82ff49c088a50441b02132c6 702358 
otf-stix_0.9~2007.10.31-3_all.deb
Checksums-Sha256: 
 9f9fe4096de3524d27ed7f3903998df87c7cfcfc1579ebefa4df2d7d468a777a 1062 
otf-stix_0.9~2007.10.31-3.dsc
 f7401bed4e7ad443f3c2d61c160fb835782bb0b37d5d4fe437060e419be7be18 5584 
otf-stix_0.9~2007.10.31-3.diff.gz
 1c3b63a938dd757b1247cbbb113283f02fe9d0fbbca8f286102a2734eef2a2b5 702358 
otf-stix_0.9~2007.10.31-3_all.deb
Files: 
 514e6de29047e13d3e0e3af08c08935c 1062 fonts extra otf-stix_0.9~2007.10.31-3.dsc
 d9e198c0159cb86ddc5e57a2d743d0b0 5584 fonts extra 
otf-stix_0.9~2007.10.31-3.diff.gz
 1b13fbb615ed2d9a2da035889b4ac066 702358 fonts extra 
otf-stix_0.9~2007.10.31-3_all.deb

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

iEYEARECAAYFAkn9a9oACgkQ1IXdL1v6kOygxACfefLo948AbxH9x4EY3kcrgs0J
Dj0AoJCHINCJjRb2shZmK51blAoiYcDr
=dPv/
-END PGP SIGNATURE-


Accepted:
otf-stix_0.9~2007.10.31-3.diff.gz
  to pool/main/o/otf-stix/otf-stix_0.9~2007.10.31-3.diff.gz
otf-stix_0.9~2007.10.31-3.dsc
  to pool/main/o/otf-stix/otf-stix_0.9~2007.10.31-3.dsc
otf-stix_0.9~2007.10.31-3_all.deb
  to pool/main/o/otf-stix/otf-stix_0.9~2007.10.31-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 libhtmlentities-ruby 4.0.0-2 (source all)

2009-05-03 Thread Jeremy Lainé
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 12:23:39 +0200
Source: libhtmlentities-ruby
Binary: libhtmlentities-ruby libhtmlentities-ruby1.8
Architecture: source all
Version: 4.0.0-2
Distribution: unstable
Urgency: low
Maintainer: Jeremy Lainé jeremy.la...@m4x.org
Changed-By: Jeremy Lainé jeremy.la...@m4x.org
Description: 
 libhtmlentities-ruby - Ruby library for handling HTML entities
 libhtmlentities-ruby1.8 - Ruby library for handling HTML entities
Changes: 
 libhtmlentities-ruby (4.0.0-2) unstable; urgency=low
 .
   * Changed section to Ruby as per ftp-masters' request.
   * Update Standards-Version to 3.8.1 (no changes).
Checksums-Sha1: 
 27724c05384174e8dd417073b6a78674ab4c6d8d 1406 libhtmlentities-ruby_4.0.0-2.dsc
 dfec025157e2bc1a2278f9ad47bee2d60c6418fd 1722 
libhtmlentities-ruby_4.0.0-2.diff.gz
 9b741afaa069b8ed6780f02f208ba5c7cad092ca 2280 
libhtmlentities-ruby_4.0.0-2_all.deb
 99c44ec699b4540b8c18a932c58f2613ffa7d19b 6362 
libhtmlentities-ruby1.8_4.0.0-2_all.deb
Checksums-Sha256: 
 d2816af279eac752c569647c6f4cfb47d417569d5879b1198b8f5a7c4523d588 1406 
libhtmlentities-ruby_4.0.0-2.dsc
 969688233bd131d15bd62bf99198a5d4a3d03e2135820a3eb12bffcefdf6 1722 
libhtmlentities-ruby_4.0.0-2.diff.gz
 47fa344f36694cc04abda271da36574a93f19aa6c28ffbc62a309d139c2d6fb8 2280 
libhtmlentities-ruby_4.0.0-2_all.deb
 7ea29a7517169cb3c2fc3f1ab15ab79235ddac5710a8502aa8e0f5ef158acde5 6362 
libhtmlentities-ruby1.8_4.0.0-2_all.deb
Files: 
 83d1168fc66a498b32bb6476a58fde6d 1406 ruby optional 
libhtmlentities-ruby_4.0.0-2.dsc
 71e35084af4734c0fb12c89391cfe75e 1722 ruby optional 
libhtmlentities-ruby_4.0.0-2.diff.gz
 b0a9e48c235a87cfb9f6c1cf5d0491f8 2280 ruby optional 
libhtmlentities-ruby_4.0.0-2_all.deb
 e018da55ed06cdd11ccf6ec47a62004b 6362 ruby optional 
libhtmlentities-ruby1.8_4.0.0-2_all.deb

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

iEYEARECAAYFAkn9cM4ACgkQ4mJJZqJp2SfaowCgot0t2l6056NqhYXKP729Zr9T
9ooAoLqnvAOyWjvbgsGGDOQIuF0jVeFW
=qd0I
-END PGP SIGNATURE-


Accepted:
libhtmlentities-ruby1.8_4.0.0-2_all.deb
  to pool/main/libh/libhtmlentities-ruby/libhtmlentities-ruby1.8_4.0.0-2_all.deb
libhtmlentities-ruby_4.0.0-2.diff.gz
  to pool/main/libh/libhtmlentities-ruby/libhtmlentities-ruby_4.0.0-2.diff.gz
libhtmlentities-ruby_4.0.0-2.dsc
  to pool/main/libh/libhtmlentities-ruby/libhtmlentities-ruby_4.0.0-2.dsc
libhtmlentities-ruby_4.0.0-2_all.deb
  to pool/main/libh/libhtmlentities-ruby/libhtmlentities-ruby_4.0.0-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 ecryptfs-utils 75-1 (source i386)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 12:16:00 +0200
Source: ecryptfs-utils
Binary: ecryptfs-utils libecryptfs0 libecryptfs-dev
Architecture: source i386
Version: 75-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 ecryptfs-utils - ecryptfs cryptographic filesystem (utilities)
 libecryptfs-dev - ecryptfs cryptographic filesystem (development)
 libecryptfs0 - ecryptfs cryptographic filesystem (library)
Closes: 506172
Changes: 
 ecryptfs-utils (75-1) unstable; urgency=low
 .
   * Dropping own desktop file, it's included upstream again.
   * Updating year in copyright file.
   * Releasing debian version 74-1.
   * Merging upstream version 75.
   * Adding support for pam-auth (Closes: #506172).
   * Dropping desktop file releated workaround in rules, got fixed upstream.
   * Adding manual depends to libnss.
   * Updating author and copyright holder information in copyright file.
Checksums-Sha1: 
 9b43e86920a2b0aa897e018a7783cfa75327a6c4 1526 ecryptfs-utils_75-1.dsc
 c2d6baa36cb26bc3d96790331ddf75385ece06a0 510771 ecryptfs-utils_75.orig.tar.gz
 656e89eecc9e1a665dd84d7dc12fadcacc4af11e 5723 ecryptfs-utils_75-1.diff.gz
 29d7a51fa68098278b8a9df0e1291a10a0ed4421 94342 ecryptfs-utils_75-1_i386.deb
 684bd0e08dcfe6605df59ca110de84ac52a28dcb 60854 libecryptfs0_75-1_i386.deb
 e3dbb0eccb16904f5ecc14dcf1488f880c99a5cf 52572 libecryptfs-dev_75-1_i386.deb
Checksums-Sha256: 
 bd38f003d361ac38e9737a0b1ad3f894cea30112858f3aa1e68274cfdec40693 1526 
ecryptfs-utils_75-1.dsc
 2e6806048eaae91bb8abd412445431f6cf24903b974599de8c879c4b92bb7d7e 510771 
ecryptfs-utils_75.orig.tar.gz
 4f3d0e6fabab4d0bf39bf22ff53de5ee5ef102f9e909c4e9f07a303ac06c6d62 5723 
ecryptfs-utils_75-1.diff.gz
 feaa507077e0172701421a84962c15b26bb1efb85986995447e1b1d538c3d31b 94342 
ecryptfs-utils_75-1_i386.deb
 1e8eba76692335778e80af1946530f899fcb7830be6f7fa90ab389653d62cbe1 60854 
libecryptfs0_75-1_i386.deb
 9e621459ec511dc95899238873a420f87b2c8913cce9a23d4537d99e19fbca26 52572 
libecryptfs-dev_75-1_i386.deb
Files: 
 841d60e6f247c295af7a8f509899c72a 1526 misc optional ecryptfs-utils_75-1.dsc
 2c4e8be38d1ea8cadd9f870f15430f07 510771 misc optional 
ecryptfs-utils_75.orig.tar.gz
 796788753fa85e530e1587041c94e1af 5723 misc optional ecryptfs-utils_75-1.diff.gz
 8691d4b8a8ffa5035b1385db3d6983b8 94342 misc optional 
ecryptfs-utils_75-1_i386.deb
 aa73f03dd8a6473cf7e63e08bba8b196 60854 libs optional libecryptfs0_75-1_i386.deb
 02d2924290158b0002590e3e945e2190 52572 libdevel optional 
libecryptfs-dev_75-1_i386.deb

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

iEYEARECAAYFAkn9b+oACgkQ+C5cwEsrK57JXACgn07bo4iccgI/xPPt06kdvkwB
wX0AnA7oLaFUo2XCdbY8Sm9CmnXkEy6w
=PgLL
-END PGP SIGNATURE-


Accepted:
ecryptfs-utils_75-1.diff.gz
  to pool/main/e/ecryptfs-utils/ecryptfs-utils_75-1.diff.gz
ecryptfs-utils_75-1.dsc
  to pool/main/e/ecryptfs-utils/ecryptfs-utils_75-1.dsc
ecryptfs-utils_75-1_i386.deb
  to pool/main/e/ecryptfs-utils/ecryptfs-utils_75-1_i386.deb
ecryptfs-utils_75.orig.tar.gz
  to pool/main/e/ecryptfs-utils/ecryptfs-utils_75.orig.tar.gz
libecryptfs-dev_75-1_i386.deb
  to pool/main/e/ecryptfs-utils/libecryptfs-dev_75-1_i386.deb
libecryptfs0_75-1_i386.deb
  to pool/main/e/ecryptfs-utils/libecryptfs0_75-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 navit 0.1.1.~svn2246-1 (source all amd64)

2009-05-03 Thread Gilles Filippini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 10:30:39 +0200
Source: navit
Binary: navit navit-gui-gtk navit-gui-internal navit-graphics-gtk-drawing-area 
navit-graphics-qt-qpainter navit-data osm2navit
Architecture: source all amd64
Version: 0.1.1.~svn2246-1
Distribution: experimental
Urgency: low
Maintainer: Gilles Filippini gilles.filipp...@free.fr
Changed-By: Gilles Filippini gilles.filipp...@free.fr
Description: 
 navit  - Car navigation system with routing engine
 navit-data - Car navigation system with routing engine - data files
 navit-graphics-gtk-drawing-area - Car navigation system with routing engine - 
GTK+ graphic plugin
 navit-graphics-qt-qpainter - Car navigation system with routing engine - QT 
graphic plugin
 navit-gui-gtk - Car navigation system with routing engine - GTK+ GUI
 navit-gui-internal - Car navigation system with routing engine - internal GUI
 osm2navit  - Converts OpenStreetMap maps to Navit
Closes: 521809 521812 521815
Changes: 
 navit (0.1.1.~svn2246-1) experimental; urgency=low
 .
   [ Gilles Filippini ]
   * New upstream snapshot:
 + Add horse and pedestrian vehicle profiles
 + Enhance routing
 + Remove deprecated graphics: cogl
 + Fix typo in configure.in (Closes: #521815)
 + Fix many compilation warnings
   * debian/rules:
 + Enable python binding
 + --enable-avoid-float [armel] (Closes: #521809)
 + Replace deprecated --disable-gypsy with --disable-vehicle-gypsy
   (Closes: #521812)
 + Force using rsvg-convert for svg2png conversions
 + Remove unneeded ltmain.sh copy statement
 + Remove no more needed navit/graphics/cogl cleansing
   * debian/control:
 + Build-Depends:
   - python-dev
   - remove inkscape | kdebase-runtime | kdelibs4-dev to leave
 librsvg2-bin only
   * Refresh patches: mg-alignment, remove-*
   * Remove patches (applied upstream):
 + clean_pngs
 + mg-alignment
   * New patches:
 + endianness: to support big-endian architectures.
 + moc_location: force qt4 moc use when qt3 moc is in the way (thanks bzed).
 + distclean_graphics_qt_qpainter: handle graphics_qt_qpainter.moc removal
   during distclean.
 + gui_internal_no_gtk2: remove gtk2 dependency to gui_internal.
 .
   [ Bernd Zeimetz ]
   * debian/copyright:
  -Adding missing copyright informations for files in navit/map/shapefile.
Checksums-Sha1: 
 5c70c39a6ee836a27e1916b6d05918a5dd7c8f17 1701 navit_0.1.1.~svn2246-1.dsc
 aa4af1f25a1ed0fe9a66db0fa8dfd5c7ba078833 2507043 
navit_0.1.1.~svn2246.orig.tar.gz
 dbc3cad773e720a173f0f981bbfe6df9bae303b1 13465 navit_0.1.1.~svn2246-1.diff.gz
 316f89b744baffba6d8baefba5f22c429f63783a 3482912 
navit-data_0.1.1.~svn2246-1_all.deb
 847658047bd79239d4433797de6eeb87fc6912b3 283176 
navit_0.1.1.~svn2246-1_amd64.deb
 9b820c6ae52ae14d09e5e484e99c3d7a2716be50 32280 
navit-gui-gtk_0.1.1.~svn2246-1_amd64.deb
 89b0c0bb20da9817e50d6c6809febb9bfc1f40f2 40744 
navit-gui-internal_0.1.1.~svn2246-1_amd64.deb
 d72eb229ef48987edefae9e69949f11429e0a4bf 19488 
navit-graphics-gtk-drawing-area_0.1.1.~svn2246-1_amd64.deb
 cfe335c26101f9e44a76aa82a02bc8299ab89998 21296 
navit-graphics-qt-qpainter_0.1.1.~svn2246-1_amd64.deb
 b07217074542b6417369a4ef5ac22b50b320f53c 84072 
osm2navit_0.1.1.~svn2246-1_amd64.deb
Checksums-Sha256: 
 a60b615843a27c84e140e96dbea9f63baabef898cd866527d265128715f5e493 1701 
navit_0.1.1.~svn2246-1.dsc
 f1fd8319e3dce1d20e64d18ccf2039c236391d80dae68696d750e6a3ce2ecc18 2507043 
navit_0.1.1.~svn2246.orig.tar.gz
 fa29b495ab17bbf3c524d7537b1e0d672c801090fbb636c341581b7c0d8fb520 13465 
navit_0.1.1.~svn2246-1.diff.gz
 8be4fb8a191822dd6650dd4e69b96d8156851087a1ab59a8388fd3cd1217af3f 3482912 
navit-data_0.1.1.~svn2246-1_all.deb
 9f50e43e84b50b0bb02b800df901f4742aec935f67359d40b1e17d781738e5d8 283176 
navit_0.1.1.~svn2246-1_amd64.deb
 057572442eb434556e3fa2aadf72248d4db1ae708b124983383730b2f50b67f7 32280 
navit-gui-gtk_0.1.1.~svn2246-1_amd64.deb
 ffa70d3b2d1f53ffa46fd2958c8e6c55601694d47f817fed18f14d39112ea656 40744 
navit-gui-internal_0.1.1.~svn2246-1_amd64.deb
 5d034beb164f25d2a06d9a8e187b262bd49322d8ca80ef38ab5329317b7ea692 19488 
navit-graphics-gtk-drawing-area_0.1.1.~svn2246-1_amd64.deb
 79254d62eb6a06b57abf710d266351049f7d600c6ef5ff42bf80714ee7123249 21296 
navit-graphics-qt-qpainter_0.1.1.~svn2246-1_amd64.deb
 ea71d5047499f0b714debbc14aed9542fc3bb67644b1cc59efd65c1003572172 84072 
osm2navit_0.1.1.~svn2246-1_amd64.deb
Files: 
 a716b3bf97daa2dd4826cd19b8b22aec 1701 misc extra navit_0.1.1.~svn2246-1.dsc
 b35c98cf981942747da0fcaa84d8e7f4 2507043 misc extra 
navit_0.1.1.~svn2246.orig.tar.gz
 73f9c9b56ce2dce284dfea24331ec369 13465 misc extra 
navit_0.1.1.~svn2246-1.diff.gz
 3b27599a7f744745cff1832a6f42b73f 3482912 misc extra 
navit-data_0.1.1.~svn2246-1_all.deb
 daab5d43c26e2f90e74e5e8079cbb531 283176 misc extra 
navit_0.1.1.~svn2246-1_amd64.deb
 5dbc010b1a7a865d8ea30e31b806fc6b 32280 misc extra 
navit-gui-gtk_0.1.1.~svn2246-1_amd64.deb
 

Accepted pyrad 1.1-5 (source all)

2009-05-03 Thread Jeremy Lainé
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 12:34:05 +0200
Source: pyrad
Binary: python-pyrad
Architecture: source all
Version: 1.1-5
Distribution: unstable
Urgency: low
Maintainer: Jeremy Lainé jeremy.la...@m4x.org
Changed-By: Jeremy Lainé jeremy.la...@m4x.org
Description: 
 python-pyrad - Python module for creating and decoding RADIUS packets
Changes: 
 pyrad (1.1-5) unstable; urgency=low
 .
   * Update Standards-Version to 3.8.1 (no changes).
   * Add ${misc:Depends} to dependencies.
Checksums-Sha1: 
 9e04a14210a97f086b92d04dbef28d989f4dca68 1330 pyrad_1.1-5.dsc
 f3f07f2aea55793344524a4371104b11660d80b7 2509 pyrad_1.1-5.diff.gz
 95c37327ddb16474aa577aecedc656fcd3d712d2 26402 python-pyrad_1.1-5_all.deb
Checksums-Sha256: 
 add31965d1dbc26494d4830bc19211105c1ab113177eed4128a25d6258b1ce83 1330 
pyrad_1.1-5.dsc
 39ca747b0b43172121792b8f8d6088f9110527c140bc504439bf789bbf3fb929 2509 
pyrad_1.1-5.diff.gz
 3362731e067233cdb27f3dc7f8f000fa48cbf6a49ebe15c6f005b5e167bbfc13 26402 
python-pyrad_1.1-5_all.deb
Files: 
 d30a2875dcba789eaf4b8d3c8b580768 1330 python optional pyrad_1.1-5.dsc
 fe7324959d0db583671de8843a69179e 2509 python optional pyrad_1.1-5.diff.gz
 8b390564eae04b17a9fd88f765abda19 26402 python optional 
python-pyrad_1.1-5_all.deb

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

iEYEARECAAYFAkn9c6YACgkQ4mJJZqJp2SfBAQCeI5AWZ5F6Okdq1u6M2rg+qc37
WQwAoI6+zCLmeloJKFja9Pszw6lKbf94
=R8ad
-END PGP SIGNATURE-


Accepted:
pyrad_1.1-5.diff.gz
  to pool/main/p/pyrad/pyrad_1.1-5.diff.gz
pyrad_1.1-5.dsc
  to pool/main/p/pyrad/pyrad_1.1-5.dsc
python-pyrad_1.1-5_all.deb
  to pool/main/p/pyrad/python-pyrad_1.1-5_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 linuxtv-dvb-apps 1.1.1+rev1273-1 (source i386)

2009-05-03 Thread Mark Purcell
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 20:16:46 +1000
Source: linuxtv-dvb-apps
Binary: dvb-apps
Architecture: source i386
Version: 1.1.1+rev1273-1
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team pkg-vdr-dvb-de...@lists.alioth.debian.org
Changed-By: Mark Purcell m...@debian.org
Description: 
 dvb-apps   - Digitial Video Broadcasting (DVB) applications
Closes: 526708
Changes: 
 linuxtv-dvb-apps (1.1.1+rev1273-1) unstable; urgency=low
 .
   * New upstream release
 - (Closes: #526708): de-Nuernberg out of date
   * Drop obsolete dvb-utils (etch dummy package only)
   * Update debian/watch - with pointer to Hg version
Checksums-Sha1: 
 76f16d79d5a18f8d40d67858f8e493aa710dccf4 1457 
linuxtv-dvb-apps_1.1.1+rev1273-1.dsc
 fd51486908ad7fab9d8a8e6e49674dc1852efe40 413221 
linuxtv-dvb-apps_1.1.1+rev1273.orig.tar.gz
 54c162c8e1fda79c77d72995cd81f41afc8744e8 9765 
linuxtv-dvb-apps_1.1.1+rev1273-1.diff.gz
 abf877806d6c17214fa7ad7ad310541b5d21d2a4 712962 
dvb-apps_1.1.1+rev1273-1_i386.deb
Checksums-Sha256: 
 914dbb46e64d81de9ac5ab51bf8da82c120b6c7625d28fa1829d20688e28d076 1457 
linuxtv-dvb-apps_1.1.1+rev1273-1.dsc
 660d20bc2ffa4cb876d4e5f62b54d62a93e3d9ea894f66711780271fb5e68833 413221 
linuxtv-dvb-apps_1.1.1+rev1273.orig.tar.gz
 9d8fb332a7fe0c928dee6c6384bb489239e8372159ba17cda87b070c514ac439 9765 
linuxtv-dvb-apps_1.1.1+rev1273-1.diff.gz
 827dd52a1343fe48bae8bdccbb93747634b3e2deaddff29d780aaf474e7b8875 712962 
dvb-apps_1.1.1+rev1273-1_i386.deb
Files: 
 d218000962b0ca54e2660b5a948dc57c 1457 video extra 
linuxtv-dvb-apps_1.1.1+rev1273-1.dsc
 f3d4f3a579049a48eaee33c8391b0b19 413221 video extra 
linuxtv-dvb-apps_1.1.1+rev1273.orig.tar.gz
 d6a1cc3dad20e372fb15fad90e2c37ab 9765 video extra 
linuxtv-dvb-apps_1.1.1+rev1273-1.diff.gz
 1591b007cab2d3384f0d2246b1ddd749 712962 video extra 
dvb-apps_1.1.1+rev1273-1_i386.deb

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

iEYEARECAAYFAkn9b3QACgkQoCzanz0IthJR4ACfcfENiBtIiv7SK1S1CvH8/oSo
/NYAoJskY3G9b549x+bN0C4YIm6pbtIG
=0V9O
-END PGP SIGNATURE-


Accepted:
dvb-apps_1.1.1+rev1273-1_i386.deb
  to pool/main/l/linuxtv-dvb-apps/dvb-apps_1.1.1+rev1273-1_i386.deb
linuxtv-dvb-apps_1.1.1+rev1273-1.diff.gz
  to pool/main/l/linuxtv-dvb-apps/linuxtv-dvb-apps_1.1.1+rev1273-1.diff.gz
linuxtv-dvb-apps_1.1.1+rev1273-1.dsc
  to pool/main/l/linuxtv-dvb-apps/linuxtv-dvb-apps_1.1.1+rev1273-1.dsc
linuxtv-dvb-apps_1.1.1+rev1273.orig.tar.gz
  to pool/main/l/linuxtv-dvb-apps/linuxtv-dvb-apps_1.1.1+rev1273.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 sbnc 1.2-15 (source all i386)

2009-05-03 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 10:48:24 +0200
Source: sbnc
Binary: sbnc sbnc-tcl sbnc-mysql sbnc-dbg sbnc-php-dev
Architecture: source all i386
Version: 1.2-15
Distribution: unstable
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 sbnc   - an IRC proxy for multiple users
 sbnc-dbg   - an IRC proxy for multiple users (debugging symbols)
 sbnc-mysql - an IRC proxy for multiple users (MySQL extension)
 sbnc-php-dev - an IRC proxy for multiple users (PHP classes)
 sbnc-tcl   - an IRC proxy for multiple users (Tcl extension)
Closes: 516468
Changes: 
 sbnc (1.2-15) unstable; urgency=low
 .
   * Fix typo in get-orig-source target.
   * Add some additional quotes in sbnc.{config,postinst}.
   * Just empty the password template in sbnc.config, if it is not the
 initial configuration. Much thanks to Kilian Krause for his help in
 debugging this issue.
 Closes: #516468
   * Refer in debian/copyright to the {l}GPL-2 file instead of {L}GPL.
   * Add my own copyright for the Debian packaging.
Checksums-Sha1: 
 1b61345e7d5b7d63cd7c551bec0e027ac7540846 1160 sbnc_1.2-15.dsc
 c8f2505510613735ce420d7db7046b128c1566db 27242 sbnc_1.2-15.diff.gz
 b193219d26d1c478ad92e94a03e7ce63868f5cc0 13150 sbnc-php-dev_1.2-15_all.deb
 9966c62510ed067f3bc768d9a6266bde3467f133 243412 sbnc_1.2-15_i386.deb
 601955fc7cf70d8ffedf51a5e97785f033c06cd6 125880 sbnc-tcl_1.2-15_i386.deb
 ed2fa5b0184e27c6eede17611aa4e292ea51bb98 42668 sbnc-mysql_1.2-15_i386.deb
 3553a1f8df36120230f4df3eed5d69c19c2ea459 1695516 sbnc-dbg_1.2-15_i386.deb
Checksums-Sha256: 
 0d52333814eb2548850f386e6f08720c613a635328871831da4ee6248518c578 1160 
sbnc_1.2-15.dsc
 b894677c189223f1da8bdb2e09da5f733df56e70263d677f14e8bef606c01f0e 27242 
sbnc_1.2-15.diff.gz
 ba538b5f2152c58f0cb11022033de7a5197d4dcbe63d299eafa87f242342df75 13150 
sbnc-php-dev_1.2-15_all.deb
 80e7af144e52e885063eaa078f0cdbda3bd470577fdc0e0ab2c998d45f432a2d 243412 
sbnc_1.2-15_i386.deb
 600de56677d0cbfff3702c7a98ba961e429eed72f1f8b1263e2d5bc8d19d7bf1 125880 
sbnc-tcl_1.2-15_i386.deb
 914de50226cff080f41b4732a2ecc0d74befe0d30075679e9d2dd6f879eee77e 42668 
sbnc-mysql_1.2-15_i386.deb
 03ba688231470e4fbe082abfb87d7ab2443a2800697d3a0bbecff5e0c00af2eb 1695516 
sbnc-dbg_1.2-15_i386.deb
Files: 
 5aec8b57006c1c3b9938062150c259cd 1160 net optional sbnc_1.2-15.dsc
 4156b42669e1911ca72769ea18388f89 27242 net optional sbnc_1.2-15.diff.gz
 4237beec6f5ee30f1d3710518aef52df 13150 net optional sbnc-php-dev_1.2-15_all.deb
 6aec2418a39c1ba1cbc14203a61e9b73 243412 net optional sbnc_1.2-15_i386.deb
 b337cfa03a05a3bbaad85958d9744958 125880 net optional sbnc-tcl_1.2-15_i386.deb
 e7fc2764590537b9577938511de98e6d 42668 net optional sbnc-mysql_1.2-15_i386.deb
 0817a670a731b9c85dad448235f5b697 1695516 debug extra sbnc-dbg_1.2-15_i386.deb

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

iEYEARECAAYFAkn9YOAACgkQ2XA5inpabMc3JQCfXDIVpMLuplgC2AvaKfgEJhgw
KGsAniIFvV2Zzz+SKKv1vhhIvX8Z+eMM
=SwBZ
-END PGP SIGNATURE-


Accepted:
sbnc-dbg_1.2-15_i386.deb
  to pool/main/s/sbnc/sbnc-dbg_1.2-15_i386.deb
sbnc-mysql_1.2-15_i386.deb
  to pool/main/s/sbnc/sbnc-mysql_1.2-15_i386.deb
sbnc-php-dev_1.2-15_all.deb
  to pool/main/s/sbnc/sbnc-php-dev_1.2-15_all.deb
sbnc-tcl_1.2-15_i386.deb
  to pool/main/s/sbnc/sbnc-tcl_1.2-15_i386.deb
sbnc_1.2-15.diff.gz
  to pool/main/s/sbnc/sbnc_1.2-15.diff.gz
sbnc_1.2-15.dsc
  to pool/main/s/sbnc/sbnc_1.2-15.dsc
sbnc_1.2-15_i386.deb
  to pool/main/s/sbnc/sbnc_1.2-15_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 exactimage 0.7.3-1 (source i386)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 12:25:00 +0200
Source: exactimage
Binary: exactimage exactimage-dbg exactimage-perl php5-exactimage 
python-exactimage
Architecture: source i386
Version: 0.7.3-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 exactimage - fast image manipulation programs
 exactimage-dbg - fast image manipulation programs (utilities)
 exactimage-perl - fast image manipulation programs (Perl bindings)
 php5-exactimage - fast image manipulation programs (PHP bindings)
 python-exactimage - fast image manipulation programs (Python bindings)
Changes: 
 exactimage (0.7.3-1) unstable; urgency=low
 .
   * Merging upstream version 0.7.3.
Checksums-Sha1: 
 aa770a33638daa57dc9a49a02c7ec39f769a58d1 1439 exactimage_0.7.3-1.dsc
 c830d6cc984ebdb09d6959c8611f55ff0bb51ce6 668806 exactimage_0.7.3.orig.tar.gz
 073d526d1feabec4db6229ebc9f2967758ee745b 12546 exactimage_0.7.3-1.diff.gz
 0e8f24b55fd7aa24fda7006432270084dd2b7b68 3501638 exactimage_0.7.3-1_i386.deb
 d666011cf1e90134026f8a15f479796e8e0dd01b 378478 exactimage-dbg_0.7.3-1_i386.deb
 640184565efcd89703f24a2a3c4a09829793ced2 633186 
exactimage-perl_0.7.3-1_i386.deb
 5e281fdeb7312042f1b643d65579a317e0f12d9b 605042 
php5-exactimage_0.7.3-1_i386.deb
 6672bb6b5f4524c23f41d9ba3767fb25d5c1bdd3 605158 
python-exactimage_0.7.3-1_i386.deb
Checksums-Sha256: 
 4c69c1879473ccaae98c894143856a9987e6b232ba4c0351df738ed9f63c858b 1439 
exactimage_0.7.3-1.dsc
 6f767acb5ecd312141ff0d2fe01cea22af04a034d0e7bb2b5ec60b8d4b7aa217 668806 
exactimage_0.7.3.orig.tar.gz
 a67374761c8fbb8bc3a31cf7a2e189fec88779885c4e4f5806a9744de9481157 12546 
exactimage_0.7.3-1.diff.gz
 1bdb713a1eac1d6561bd8be272a188525b61414807f385eccf28b1395527a862 3501638 
exactimage_0.7.3-1_i386.deb
 c26883a9c7c51c3857780bebf2f4855ad837d1682e8a29f6cc8630c47a023c42 378478 
exactimage-dbg_0.7.3-1_i386.deb
 f122566f7223025525d29773f0da85f77c9b40b4e4b281f93c2204636ec6523a 633186 
exactimage-perl_0.7.3-1_i386.deb
 9707d6fcfdfc2361cd71af9924dfa56de1a8176ad1d9c00c50524188a2b7b720 605042 
php5-exactimage_0.7.3-1_i386.deb
 9cc5820a9046882489eff03ffbc0f927c92cacaa995e3c8139b9d54a5b14a4e7 605158 
python-exactimage_0.7.3-1_i386.deb
Files: 
 c143d1bae28e00280bcf975894e03dff 1439 graphics optional exactimage_0.7.3-1.dsc
 f1d54755ac9a5e1f2fc3838f887146e4 668806 graphics optional 
exactimage_0.7.3.orig.tar.gz
 25316cdc25fe5c9476afb196aa2620db 12546 graphics optional 
exactimage_0.7.3-1.diff.gz
 3cb46bb746e107e24671fb74d4773b41 3501638 graphics optional 
exactimage_0.7.3-1_i386.deb
 e437643880e33ee679cd8501b510f130 378478 debug extra 
exactimage-dbg_0.7.3-1_i386.deb
 d9d9dbb707dde895e75c3eeb1d45a4fb 633186 perl optional 
exactimage-perl_0.7.3-1_i386.deb
 e2d2bf5a30c68753d5d2355a05b312ac 605042 web optional 
php5-exactimage_0.7.3-1_i386.deb
 c724370068ec90fdd2348432b904c885 605158 python optional 
python-exactimage_0.7.3-1_i386.deb

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

iEYEARECAAYFAkn9cykACgkQ+C5cwEsrK55ccQCgxAHzJuJ4VUmenbSFgOUh1l6T
RMIAn1Oi2XUL7XfGP1LynFwKrShHrAMD
=t6Jl
-END PGP SIGNATURE-


Accepted:
exactimage-dbg_0.7.3-1_i386.deb
  to pool/main/e/exactimage/exactimage-dbg_0.7.3-1_i386.deb
exactimage-perl_0.7.3-1_i386.deb
  to pool/main/e/exactimage/exactimage-perl_0.7.3-1_i386.deb
exactimage_0.7.3-1.diff.gz
  to pool/main/e/exactimage/exactimage_0.7.3-1.diff.gz
exactimage_0.7.3-1.dsc
  to pool/main/e/exactimage/exactimage_0.7.3-1.dsc
exactimage_0.7.3-1_i386.deb
  to pool/main/e/exactimage/exactimage_0.7.3-1_i386.deb
exactimage_0.7.3.orig.tar.gz
  to pool/main/e/exactimage/exactimage_0.7.3.orig.tar.gz
php5-exactimage_0.7.3-1_i386.deb
  to pool/main/e/exactimage/php5-exactimage_0.7.3-1_i386.deb
python-exactimage_0.7.3-1_i386.deb
  to pool/main/e/exactimage/python-exactimage_0.7.3-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 linux-2.6 2.6.29-4 (source all powerpc)

2009-05-03 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 09:38:42 +0200
Source: linux-2.6
Binary: linux-source-2.6.29 linux-doc-2.6.29 linux-manual-2.6.29 
linux-patch-debian-2.6.29 linux-tree-2.6.29 linux-support-2.6.29-2 
linux-libc-dev linux-headers-2.6.29-2-all linux-headers-2.6.29-2-all-alpha 
linux-headers-2.6.29-2-common linux-image-2.6.29-2-alpha-generic 
linux-headers-2.6.29-2-alpha-generic linux-image-2.6.29-2-alpha-smp 
linux-headers-2.6.29-2-alpha-smp linux-image-2.6.29-2-alpha-legacy 
linux-headers-2.6.29-2-alpha-legacy linux-headers-2.6.29-2-all-amd64 
linux-image-2.6.29-2-amd64 linux-headers-2.6.29-2-amd64 
linux-headers-2.6.29-2-all-arm linux-image-2.6.29-2-footbridge 
linux-headers-2.6.29-2-footbridge linux-image-2.6.29-2-iop32x 
linux-headers-2.6.29-2-iop32x linux-image-2.6.29-2-ixp4xx 
linux-headers-2.6.29-2-ixp4xx linux-image-2.6.29-2-orion5x 
linux-headers-2.6.29-2-orion5x linux-headers-2.6.29-2-all-armel 
linux-image-2.6.29-2-kirkwood linux-headers-2.6.29-2-kirkwood 
linux-image-2.6.29-2-versatile linux-headers-2.6.29-2-versatile 
linux-headers-2.6.29-2-all-hppa linux-image-2.6.29-2-parisc 
linux-headers-2.6.29-2-parisc linux-image-2.6.29-2-parisc-smp 
linux-headers-2.6.29-2-parisc-smp linux-image-2.6.29-2-parisc64 
linux-headers-2.6.29-2-parisc64 linux-image-2.6.29-2-parisc64-smp 
linux-headers-2.6.29-2-parisc64-smp linux-headers-2.6.29-2-all-i386 
linux-image-2.6.29-2-486 linux-headers-2.6.29-2-486 linux-image-2.6.29-2-686 
linux-headers-2.6.29-2-686 linux-image-2.6.29-2-686-bigmem 
linux-headers-2.6.29-2-686-bigmem linux-headers-2.6.29-2-all-ia64 
linux-image-2.6.29-2-itanium linux-headers-2.6.29-2-itanium 
linux-image-2.6.29-2-mckinley linux-headers-2.6.29-2-mckinley 
linux-headers-2.6.29-2-all-m68k linux-image-2.6.29-2-amiga 
linux-headers-2.6.29-2-amiga linux-image-2.6.29-2-atari 
linux-headers-2.6.29-2-atari linux-image-2.6.29-2-bvme6000 
linux-headers-2.6.29-2-bvme6000 linux-image-2.6.29-2-mac 
linux-headers-2.6.29-2-mac linux-image-2.6.29-2-mvme147 
linux-headers-2.6.29-2-mvme147 linux-image-2.6.29-2-mvme16x 
linux-headers-2.6.29-2-mvme16x linux-headers-2.6.29-2-all-mips 
linux-image-2.6.29-2-r4k-ip22 linux-headers-2.6.29-2-r4k-ip22 
linux-image-2.6.29-2-r5k-ip32 linux-headers-2.6.29-2-r5k-ip32 
linux-image-2.6.29-2-sb1-bcm91250a linux-headers-2.6.29-2-sb1-bcm91250a 
linux-image-2.6.29-2-sb1a-bcm91480b linux-headers-2.6.29-2-sb1a-bcm91480b 
linux-image-2.6.29-2-4kc-malta linux-headers-2.6.29-2-4kc-malta 
linux-image-2.6.29-2-5kc-malta linux-headers-2.6.29-2-5kc-malta 
linux-headers-2.6.29-2-all-mipsel linux-image-2.6.29-2-r5k-cobalt 
linux-headers-2.6.29-2-r5k-cobalt linux-headers-2.6.29-2-all-powerpc 
linux-image-2.6.29-2-powerpc linux-headers-2.6.29-2-powerpc 
linux-image-2.6.29-2-powerpc-smp linux-headers-2.6.29-2-powerpc-smp 
linux-image-2.6.29-2-powerpc64 linux-headers-2.6.29-2-powerpc64 
linux-headers-2.6.29-2-all-s390 linux-image-2.6.29-2-s390 
linux-headers-2.6.29-2-s390 linux-image-2.6.29-2-s390-tape 
linux-image-2.6.29-2-s390x linux-headers-2.6.29-2-s390x 
linux-headers-2.6.29-2-all-sparc linux-image-2.6.29-2-sparc64 
linux-headers-2.6.29-2-sparc64 linux-image-2.6.29-2-sparc64-smp 
linux-headers-2.6.29-2-sparc64-smp
Architecture: source all powerpc
Version: 2.6.29-4
Distribution: unstable
Urgency: low
Maintainer: Debian Kernel Team debian-ker...@lists.debian.org
Changed-By: Bastian Blank wa...@debian.org
Description: 
 linux-doc-2.6.29 - Linux kernel specific documentation for version 2.6.29
 linux-headers-2.6.29-2-486 - Header files for Linux 2.6.29-2-486
 linux-headers-2.6.29-2-4kc-malta - Header files for Linux 2.6.29-2-4kc-malta
 linux-headers-2.6.29-2-5kc-malta - Header files for Linux 2.6.29-2-5kc-malta
 linux-headers-2.6.29-2-686 - Header files for Linux 2.6.29-2-686
 linux-headers-2.6.29-2-686-bigmem - Header files for Linux 2.6.29-2-686-bigmem
 linux-headers-2.6.29-2-all - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-alpha - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-amd64 - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-arm - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-armel - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-hppa - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-i386 - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-ia64 - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-m68k - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-mips - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-mipsel - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-powerpc - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-s390 - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-all-sparc - All header files for Linux 2.6.29
 linux-headers-2.6.29-2-alpha-generic - Header files for Linux 
2.6.29-2-alpha-generic
 linux-headers-2.6.29-2-alpha-legacy - Header files 

Accepted ncurses 5.7+20090419-1 (source i386 all)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 13:07:00 +0200
Source: ncurses
Binary: libncurses5 libncurses5-dev libncurses5-dbg libncursesw5 
libncursesw5-dev libncursesw5-dbg lib64ncurses5 lib64ncurses5-dev lib32ncurses5 
lib32ncurses5-dev lib32ncursesw5 lib32ncursesw5-dev ncurses-bin ncurses-base 
ncurses-term
Architecture: source i386 all
Version: 5.7+20090419-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 lib32ncurses5 - shared libraries for terminal handling (32-bit)
 lib32ncurses5-dev - developer's libraries for ncurses (32-bit)
 lib32ncursesw5 - shared libraries for terminal handling (wide character 
support) (
 lib32ncursesw5-dev - developer's libraries for ncursesw (32-bit)
 lib64ncurses5 - shared libraries for terminal handling (64-bit)
 lib64ncurses5-dev - developer's libraries for ncurses (64-bit)
 libncurses5 - shared libraries for terminal handling
 libncurses5-dbg - debugging/profiling libraries for ncurses
 libncurses5-dev - developer's libraries and docs for ncurses
 libncursesw5 - shared libraries for terminal handling (wide character support)
 libncursesw5-dbg - debugging/profiling libraries for ncurses
 libncursesw5-dev - developer's libraries for ncursesw
 ncurses-base - basic terminal type definitions
 ncurses-bin - terminal-related programs and man pages
 ncurses-term - additional terminal type definitions
Changes: 
 ncurses (5.7+20090419-1) unstable; urgency=low
 .
   * Merging upstream version 5.7+20090419.
Checksums-Sha1: 
 a8ba7ffbbf1e1d3ca53d9007ed141c9b1674e2d2 1517 ncurses_5.7+20090419-1.dsc
 4b97fed3219cd6e8caeedcc71aba3020e6d9834f 2533586 
ncurses_5.7+20090419.orig.tar.gz
 0c865ad9ced2be43b970befc079d4d2eee81354c 39972 ncurses_5.7+20090419-1.diff.gz
 fe2b7e813c976e3f8edd2c2e62b6afc395d07746 339964 
libncurses5_5.7+20090419-1_i386.deb
 21c5fa3af9e3e238276dbb6c68207ace0b1233ac 1559266 
libncurses5-dev_5.7+20090419-1_i386.deb
 1a2a4a3bd8445bc4d072cc3e74fdfbd804058a1b 1878004 
libncurses5-dbg_5.7+20090419-1_i386.deb
 2e17ed9e87d20ea68155d273a49b4add696b19c1 363066 
libncursesw5_5.7+20090419-1_i386.deb
 93d2d879fd87cb7b05c2cbb582e2702bad0b999f 481148 
libncursesw5-dev_5.7+20090419-1_i386.deb
 1e4371ce193c37be8a39ac6875b6db556e7a06a2 2094408 
libncursesw5-dbg_5.7+20090419-1_i386.deb
 529f353d763db66d5f31b5a08e699e998c44ca37 353728 
lib64ncurses5_5.7+20090419-1_i386.deb
 4f67ee71e49bf1f94f73cd4a75e32f807eb98bf3 420140 
lib64ncurses5-dev_5.7+20090419-1_i386.deb
 f621a01b4d88bb130531cd4b9c757601b5c86aef 306004 
ncurses-bin_5.7+20090419-1_i386.deb
 418a0ec048cae195a68a4d675c5ca16296592fc2 180302 
ncurses-base_5.7+20090419-1_all.deb
 6b18d78f846dad3ab25f629a7d368a4b5798c619 561856 
ncurses-term_5.7+20090419-1_all.deb
Checksums-Sha256: 
 ab197bf2dca84cb5432eccf217b639ffa977e852b22ca759cf95201733c188a8 1517 
ncurses_5.7+20090419-1.dsc
 2c1fd37394954208bb6bf4df12a30105da8143ff648deea7eeeba718dcc50fbd 2533586 
ncurses_5.7+20090419.orig.tar.gz
 49950018510e97fc864bea07bc1a4bba7b1dcfb44aad94000121e56f5afc25a7 39972 
ncurses_5.7+20090419-1.diff.gz
 c63c13ac6ddf16c33476bcf8b392e33ef8cc67214894ce9ef813c3d94c6bf869 339964 
libncurses5_5.7+20090419-1_i386.deb
 af8cf299d19be6756a4b934255966a22690ba49699e8cbf9d4b7e8a1d032a31c 1559266 
libncurses5-dev_5.7+20090419-1_i386.deb
 b4dd18fd5c59737681c236c5e3c6220240f5392b374b2502a36479d6bc4f840d 1878004 
libncurses5-dbg_5.7+20090419-1_i386.deb
 93667eee160ab17cbc9305e8dbb328001c36442eb837375bf20ebe88d8f32cbf 363066 
libncursesw5_5.7+20090419-1_i386.deb
 8ff67265d72593261f911a032adaa950132accc2df0f4575d709e2f6adf0563f 481148 
libncursesw5-dev_5.7+20090419-1_i386.deb
 bbe202ca108f1c145682aec1587d7808fcf0d69948c985490412f494fc646fe2 2094408 
libncursesw5-dbg_5.7+20090419-1_i386.deb
 9adf171756ef08426b2baf4ee8b2dab36661d94c09e63f75963ca971d47ae00f 353728 
lib64ncurses5_5.7+20090419-1_i386.deb
 bc7b3019fdf888d5b43ce1d0bc67ccbc69d86fe54fc6b14cc6c72bc9650b60ce 420140 
lib64ncurses5-dev_5.7+20090419-1_i386.deb
 9473eb6552ab6fcb4ed796be8d1fd5aa35805f7ea566c02202d0322ff0647762 306004 
ncurses-bin_5.7+20090419-1_i386.deb
 fe771d17bb43b84d9dd056d50045cb21683cfa711bfb89ea88f6f1c10b175ac3 180302 
ncurses-base_5.7+20090419-1_all.deb
 8807d894bf10642f3cc90c1b1fb609e1e325438c200326899375cafd29b20b1f 561856 
ncurses-term_5.7+20090419-1_all.deb
Files: 
 5895e0fafd2ef9eba1a611549daca7e0 1517 libs standard ncurses_5.7+20090419-1.dsc
 107a9557e92a1dd4fb1772bbf11ff050 2533586 libs standard 
ncurses_5.7+20090419.orig.tar.gz
 b745b6acdaab648028601911676b3f75 39972 libs standard 
ncurses_5.7+20090419-1.diff.gz
 ef34151bdba6be761027deeb0117952e 339964 libs required 
libncurses5_5.7+20090419-1_i386.deb
 5d21c66055a442612fdd603265db223d 1559266 libdevel optional 
libncurses5-dev_5.7+20090419-1_i386.deb
 11c35cdf20653c9e6b0653fd87503607 1878004 debug extra 
libncurses5-dbg_5.7+20090419-1_i386.deb
 f742b1536efbee0dc55b4857d2aed07a 363066 libs important 

Accepted doc-iana 20090401-1 (source all)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu,  2 Apr 2009 11:13:00 +0200
Source: doc-iana
Binary: doc-iana
Architecture: source all
Version: 20090401-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 doc-iana   - Internet protocol parameter registry
Changes: 
 doc-iana (20090401-1) unstable; urgency=low
 .
   * Merging upstream version 20090401.
Checksums-Sha1: 
 26e2dc043a5695285fa285cfff5096a241a0345d 1120 doc-iana_20090401-1.dsc
 eb946c83cccd4fcc0c98b83b405b496770991c75 99164303 doc-iana_20090401.orig.tar.gz
 ce551556c2bd5cbf5544f002065cf94293b0fa2f 4322 doc-iana_20090401-1.diff.gz
 84766827b70c5009bfebec989cab0fb21efae5a8 95952928 doc-iana_20090401-1_all.deb
Checksums-Sha256: 
 ba48be9e9e1b971542fe1a896e900e44b2e12d51beb6f924a1c1cf5d0cb25031 1120 
doc-iana_20090401-1.dsc
 7f7154fd995caee22f7c864877ba3b9c374795a92a5c73406b589ce81273ee95 99164303 
doc-iana_20090401.orig.tar.gz
 ee0518164e2ed541bd523e5e7b3b89d0440f8de458f936fe737dd32f509eb50f 4322 
doc-iana_20090401-1.diff.gz
 c3dbaa6e050371f0867d9000cb5b4f07de3115e828247c5c3aa365cede045ff6 95952928 
doc-iana_20090401-1_all.deb
Files: 
 6067ef33c9c751a27cdad2a57ea0a482 1120 non-free/doc optional 
doc-iana_20090401-1.dsc
 b8eea9a90b07a08f0ae120030425c83d 99164303 non-free/doc optional 
doc-iana_20090401.orig.tar.gz
 28aef9da14ca0f7177b612343cd0b8f0 4322 non-free/doc optional 
doc-iana_20090401-1.diff.gz
 e21f13e5b70f0899301c83c8606721e6 95952928 non-free/doc optional 
doc-iana_20090401-1_all.deb

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

iEYEARECAAYFAkn9YbwACgkQ+C5cwEsrK54ADQCfbY1K6K9hl+LWa0pSgU4JnBki
g8YAn2pMV/yjCivPrA7pNVXEVtchqLHj
=9h+R
-END PGP SIGNATURE-


Accepted:
doc-iana_20090401-1.diff.gz
  to pool/non-free/d/doc-iana/doc-iana_20090401-1.diff.gz
doc-iana_20090401-1.dsc
  to pool/non-free/d/doc-iana/doc-iana_20090401-1.dsc
doc-iana_20090401-1_all.deb
  to pool/non-free/d/doc-iana/doc-iana_20090401-1_all.deb
doc-iana_20090401.orig.tar.gz
  to pool/non-free/d/doc-iana/doc-iana_20090401.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 gitmagic 20090501-1 (source all)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 14:32:00 +0200
Source: gitmagic
Binary: gitmagic
Architecture: source all
Version: 20090501-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 gitmagic   - Guide about Git version control system
Changes: 
 gitmagic (20090501-1) unstable; urgency=low
 .
   * Merging upstream version 20090501.
Checksums-Sha1: 
 42ac229365f3e26dd9ca7b67a1c94d52ded13ac3 1214 gitmagic_20090501-1.dsc
 a2c95a4c1c158c3e62ff91f0c806f218def112dc 40142 gitmagic_20090501.orig.tar.gz
 dc2c98686576fcba432fc976593b3d44ebdb65dc 2194 gitmagic_20090501-1.diff.gz
 a9683f8081c8b59f8d4f020a3acf224a3ae8fcf3 220488 gitmagic_20090501-1_all.deb
Checksums-Sha256: 
 e353cb21b310d40331436712686af5934248255a577db59e0563317b8bc346fc 1214 
gitmagic_20090501-1.dsc
 2443a55f9aba9497ff332acb52534da0be5eed739948932ac0bcd3f55e1dc290 40142 
gitmagic_20090501.orig.tar.gz
 1aff8e9eec2610c936d18ed86d80e0029b5e97a203de677137308dceba024e52 2194 
gitmagic_20090501-1.diff.gz
 aedfc7dcdcadd883c3912b1780773b9d1025380e4eb2a52beb8828a1d7ae0b5b 220488 
gitmagic_20090501-1_all.deb
Files: 
 1a8d93a19befbe39d0e854efe15f4ea1 1214 doc optional gitmagic_20090501-1.dsc
 32a5fdc6a1490f8d399587b2ca4b3cf9 40142 doc optional 
gitmagic_20090501.orig.tar.gz
 9fcd4b71d5b8d9f700c15eb4614c5d1b 2194 doc optional gitmagic_20090501-1.diff.gz
 86ec324f61d551e77939140a9ce440ac 220488 doc optional 
gitmagic_20090501-1_all.deb

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

iEYEARECAAYFAkn9mCUACgkQ+C5cwEsrK57syACfTG8v70HZZL8TUt8xuUQ4DrSR
fgAAnjB4JOgoVyeGdDR5bmWcda9AnaH/
=oVTR
-END PGP SIGNATURE-


Accepted:
gitmagic_20090501-1.diff.gz
  to pool/main/g/gitmagic/gitmagic_20090501-1.diff.gz
gitmagic_20090501-1.dsc
  to pool/main/g/gitmagic/gitmagic_20090501-1.dsc
gitmagic_20090501-1_all.deb
  to pool/main/g/gitmagic/gitmagic_20090501-1_all.deb
gitmagic_20090501.orig.tar.gz
  to pool/main/g/gitmagic/gitmagic_20090501.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 qtscriptgenerator 0.1.0-2exp1 (source all amd64)

2009-05-03 Thread Modestas Vainius
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 14:33:30 +0300
Source: qtscriptgenerator
Binary: libqtscript4-qtbindings libqtscript4-core libqtscript4-gui 
libqtscript4-network libqtscript4-opengl libqtscript4-phonon libqtscript4-sql 
libqtscript4-svg libqtscript4-xml libqtscript4-webkit libqtscript4-xmlpatterns 
libqtscript4-uitools qtscript-tools libqtscript4-doc
Architecture: source all amd64
Version: 0.1.0-2exp1
Distribution: experimental
Urgency: low
Maintainer: Modestas Vainius modes...@vainius.eu
Changed-By: Modestas Vainius modes...@vainius.eu
Description: 
 libqtscript4-core - Qt Script bindings for the Qt 4 Core library
 libqtscript4-doc - Qt 4 Qt Script bindings API documentation and examples
 libqtscript4-gui - Qt Script bindings for the Qt 4 Gui library
 libqtscript4-network - Qt Script bindings for the Qt 4 Network library
 libqtscript4-opengl - Qt Script bindings for the Qt 4 OpenGL library
 libqtscript4-phonon - Qt Script bindings for the Qt 4 Phonon library
 libqtscript4-qtbindings - Qt Script bindings for Qt 4 - metapackage
 libqtscript4-sql - Qt Script bindings for the Qt 4 SQL library
 libqtscript4-svg - Qt Script bindings for the Qt 4 SVG library
 libqtscript4-uitools - Qt Script bindings for the Qt 4 UiTools library
 libqtscript4-webkit - Qt Script bindings for the Qt 4 WebKit library
 libqtscript4-xml - Qt Script bindings for the Qt 4 XML library
 libqtscript4-xmlpatterns - Qt Script bindings for the Qt 4 XML patterns library
 qtscript-tools - tools for Qt Script developers
Changes: 
 qtscriptgenerator (0.1.0-2exp1) experimental; urgency=low
 .
   * Trigger gdb backtrace on generator to debug unreproducable crashes on
 some arches (sparc, armel).
Checksums-Sha1: 
 acb68bcb58ca4366ea46af35376ec44feedde2a4 1655 qtscriptgenerator_0.1.0-2exp1.dsc
 2f1e87ff8a236d5cbdece9525d9fc79aa045020d 6510 
qtscriptgenerator_0.1.0-2exp1.diff.gz
 68373acf7e1091ad73c6799573b0f4a336e5fa2d 2840 
libqtscript4-qtbindings_0.1.0-2exp1_all.deb
 77fe947d9862e8d6a0b9aa0f521eb045dd9b952d 675442 
libqtscript4-core_0.1.0-2exp1_amd64.deb
 223bc0736945af88e0ed70201f4a37d260c2 3289236 
libqtscript4-gui_0.1.0-2exp1_amd64.deb
 9ebb04b79adcdcf87384a521953287548674f749 327774 
libqtscript4-network_0.1.0-2exp1_amd64.deb
 6c7e07841f66e5621d84c9d9a79a98647b8ec8df 67456 
libqtscript4-opengl_0.1.0-2exp1_amd64.deb
 8aea6f51b3a1f70fe9c08a0a0c6ad3587826dfc4 235778 
libqtscript4-phonon_0.1.0-2exp1_amd64.deb
 028a9e22b6230f9e568da82e5e30ce9fe5f253d2 163536 
libqtscript4-sql_0.1.0-2exp1_amd64.deb
 3c4cdf43b2985b38f9860f0d8be98ddd65b12574 42650 
libqtscript4-svg_0.1.0-2exp1_amd64.deb
 9313e8b0166a54e133b51e747c8fa323209f5c4d 173078 
libqtscript4-xml_0.1.0-2exp1_amd64.deb
 1a8a83480a68492b1e09ea30da3a60a3bc7c9f8f 101164 
libqtscript4-webkit_0.1.0-2exp1_amd64.deb
 14f9b7e63ca0530c30f168a77c1e25a80d712b91 101680 
libqtscript4-xmlpatterns_0.1.0-2exp1_amd64.deb
 37c9283d67d025fcfae88e41e9d5a2942ebfbfad 280714 
libqtscript4-uitools_0.1.0-2exp1_amd64.deb
 831ae0348cd2487feb5f5e84655204460b0eb650 481930 
qtscript-tools_0.1.0-2exp1_amd64.deb
 3816e3f0d039ec61c442b656631f71cb47e631ed 266038 
libqtscript4-doc_0.1.0-2exp1_all.deb
Checksums-Sha256: 
 2655239e0ef743ad2f3e5ead92fd241df4d85ddd4c236c9100c33c1b91ac6826 1655 
qtscriptgenerator_0.1.0-2exp1.dsc
 7ff824a7bb4bf0668e976babd8b4193b48b246f442029c48c5fd628aecfd6f77 6510 
qtscriptgenerator_0.1.0-2exp1.diff.gz
 9fd566b1de8d5e7325348bc2c60740eb9e34b3a480b081123591cf29eaa21450 2840 
libqtscript4-qtbindings_0.1.0-2exp1_all.deb
 80eda1e5d5560bb9cf8470d6762207c4658e183b5283a67bd4dbf727b94a0c8e 675442 
libqtscript4-core_0.1.0-2exp1_amd64.deb
 7c5dcb2eb0c7694d3dd9776393f281a0c3d387609167b76c2b8914a643dd1076 3289236 
libqtscript4-gui_0.1.0-2exp1_amd64.deb
 642c822edaf285fb14b992718ea3709427fe18506d716698cd09af709b7b24e0 327774 
libqtscript4-network_0.1.0-2exp1_amd64.deb
 221c7d22d4168b892b029bac0b68b443f8b100dcd3afb38d90d0a65178671257 67456 
libqtscript4-opengl_0.1.0-2exp1_amd64.deb
 ecd1dccc5d146783d8ffa05182c3446035ee67913a409876f79e6da880ca04b1 235778 
libqtscript4-phonon_0.1.0-2exp1_amd64.deb
 b6a57ad3c9a5b3efa280d19ec907d67f048af0615fb7afb63fae7c02955e311e 163536 
libqtscript4-sql_0.1.0-2exp1_amd64.deb
 c296bf8843966aad452eddae69e616aa293fbb73fab37ec51640e47a7095da4f 42650 
libqtscript4-svg_0.1.0-2exp1_amd64.deb
 14db849fba0016f3529c5d9c8140efca0a410f21a48691b57fe2061fc5e4 173078 
libqtscript4-xml_0.1.0-2exp1_amd64.deb
 642cef87764e2ffb9f5ab729cf50a891eb241c58d998e7db05407bf98e344a74 101164 
libqtscript4-webkit_0.1.0-2exp1_amd64.deb
 317f8804dca799ac18552e4711ddc6675208f763cef33dc7cf52482fe1d9e067 101680 
libqtscript4-xmlpatterns_0.1.0-2exp1_amd64.deb
 e7dfddb69bdfcdd77d346519e239655a678b854a291d7458213819ccb0471b93 280714 
libqtscript4-uitools_0.1.0-2exp1_amd64.deb
 027808f323607391010d5d7fb75a99b1924bc4cb2ee7f3733c38db9569b652bd 481930 
qtscript-tools_0.1.0-2exp1_amd64.deb
 59da630930da81ea609e321d7527e311899cacbe3aa39acb9666d808c230e8ed 266038 

Accepted gnulib 20090501-1 (source all)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 15:21:00 +0200
Source: gnulib
Binary: gnulib
Architecture: source all
Version: 20090501-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 gnulib - GNU Portability Library
Changes: 
 gnulib (20090501-1) unstable; urgency=low
 .
   * Merging upstream version 20090501.
Checksums-Sha1: 
 5f181c5e15e23db8d4ebfd4750d1113c44df5813 1128 gnulib_20090501-1.dsc
 85d2f722231e0f54e7b6ecd5ca8dde1b712b5239 4040473 gnulib_20090501.orig.tar.gz
 2335880c8cd52484e233312942e390d76591ec9b 5703 gnulib_20090501-1.diff.gz
 5580b9db539d1da9cc5eb88da5adfc030d32e934 4959740 gnulib_20090501-1_all.deb
Checksums-Sha256: 
 005c12b8179371d72580022f219ff2ff4cbd690880be5b1c6706a68ac57df137 1128 
gnulib_20090501-1.dsc
 79441739ed7bd0c9f04c60d1f9b7c043abb8f8572455fd58d77347cf48f6d7be 4040473 
gnulib_20090501.orig.tar.gz
 b5b05edd097d1ac5b43ed59c76ee4e6794c52247caae3633e6ad732b37df9a16 5703 
gnulib_20090501-1.diff.gz
 605a39226cff83392022fb4ced8e1562698b5201419b98408b3db14c91cd7738 4959740 
gnulib_20090501-1_all.deb
Files: 
 be374364025c41f09d7ecda716d4e994 1128 devel optional gnulib_20090501-1.dsc
 c09eb1db7a0d54a504d56e2ddb5e8702 4040473 devel optional 
gnulib_20090501.orig.tar.gz
 9731d556d0967b02aa2c666c97611811 5703 devel optional gnulib_20090501-1.diff.gz
 99c7966cda5dbfd45c9318dd5a4c871c 4959740 devel optional 
gnulib_20090501-1_all.deb

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

iEYEARECAAYFAkn9mzoACgkQ+C5cwEsrK55vdQCfdkQSkgqo7jn2VHQJGGKSK05s
z8gAmgP1H7HRNP5a8rQ4TOHVKywl+636
=3kct
-END PGP SIGNATURE-


Accepted:
gnulib_20090501-1.diff.gz
  to pool/main/g/gnulib/gnulib_20090501-1.diff.gz
gnulib_20090501-1.dsc
  to pool/main/g/gnulib/gnulib_20090501-1.dsc
gnulib_20090501-1_all.deb
  to pool/main/g/gnulib/gnulib_20090501-1_all.deb
gnulib_20090501.orig.tar.gz
  to pool/main/g/gnulib/gnulib_20090501.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 editmoin 1.10.1-3 (source all)

2009-05-03 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 15:17:11 +0200
Source: editmoin
Binary: editmoin
Architecture: source all
Version: 1.10.1-3
Distribution: unstable
Urgency: low
Maintainer: Martin Pitt mp...@debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 editmoin   - edit MoinMoin wiki pages with your favourite editor
Changes: 
 editmoin (1.10.1-3) unstable; urgency=low
 .
   * editmoin: Fix md5 deprecation warning with Python 2.6, thanks to Max
 Bowsher. (LP: #357221)
   * debian/control: Add missing misc:Depends, thanks lintian.
   * debian/control: Bump Standards-Version (no changes necessary).
Checksums-Sha1: 
 199919ac7d02a229745698c6154e7c09f8553621 1171 editmoin_1.10.1-3.dsc
 2c800693a669ac44381c27edaaf4cb2dd2a26643 1954 editmoin_1.10.1-3.diff.gz
 8dfcce0eb6bdbdc3e7e47e205225b5a28e721fd8 12940 editmoin_1.10.1-3_all.deb
Checksums-Sha256: 
 7eee5d26668be0746d6552d86ca6159f000a78026c08c891fafb80de5dbbc115 1171 
editmoin_1.10.1-3.dsc
 b9357f1fcf7c896176c34b2ec4bdfdd787e9ecf91fb655533246a03c48b02b39 1954 
editmoin_1.10.1-3.diff.gz
 c5dcc036098b4407d6bf135115aed9558aab4b7a68356aad205175513ba5597b 12940 
editmoin_1.10.1-3_all.deb
Files: 
 d722180c7349b488f71fe88a8c454265 1171 text optional editmoin_1.10.1-3.dsc
 3920c4c8e203fd5914ddbb614533f642 1954 text optional editmoin_1.10.1-3.diff.gz
 54919eb571cedb77b21ba4b2244d8c48 12940 text optional editmoin_1.10.1-3_all.deb

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

iEYEARECAAYFAkn9mj4ACgkQDecnbV4Fd/JnlQCgo3TO5FArlhGfLJMLJKjp1ENa
BqQAmwbpaPqmycrpHnWFXsPqdYf/LqeJ
=yrvR
-END PGP SIGNATURE-


Accepted:
editmoin_1.10.1-3.diff.gz
  to pool/main/e/editmoin/editmoin_1.10.1-3.diff.gz
editmoin_1.10.1-3.dsc
  to pool/main/e/editmoin/editmoin_1.10.1-3.dsc
editmoin_1.10.1-3_all.deb
  to pool/main/e/editmoin/editmoin_1.10.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 doc-iana 20090501-1 (source all)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 13:02:00 +0200
Source: doc-iana
Binary: doc-iana
Architecture: source all
Version: 20090501-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 doc-iana   - Internet protocol parameter registry
Changes: 
 doc-iana (20090501-1) unstable; urgency=low
 .
   * Merging upstream version 20090501.
Checksums-Sha1: 
 a527167525263cde9581ca4c93098b5fd576d2b2 1123 doc-iana_20090501-1.dsc
 356a8444df4e0f57f3ee1372c70880f08e424734 101354726 
doc-iana_20090501.orig.tar.gz
 672bea5a74d11b4b11f76544311a88bd74f0fd6d 4340 doc-iana_20090501-1.diff.gz
 82c3ba28c5455bf2c1497334011ecc96c2fecb96 98145330 doc-iana_20090501-1_all.deb
Checksums-Sha256: 
 b89496ca071ba62f70425c28781d0cb1a8ddbac4155448bc280966ef681da014 1123 
doc-iana_20090501-1.dsc
 9855430291609b9c561e200c92f7358a3c926fc4dc27e635dbf98a22416fef1b 101354726 
doc-iana_20090501.orig.tar.gz
 5f975c2ee4501b30a68bfff2d746ce225157af069898b8136f5ec27a063ea55b 4340 
doc-iana_20090501-1.diff.gz
 7cb3e4bd0ce0b2e1a97c8aa471f18a85fca04bc444c3cfb51037a16e6726650e 98145330 
doc-iana_20090501-1_all.deb
Files: 
 9b2c9abcb01b32ce9ad3c3c81cca44c6 1123 non-free/doc optional 
doc-iana_20090501-1.dsc
 22923888333657995cc5245d10d17d2a 101354726 non-free/doc optional 
doc-iana_20090501.orig.tar.gz
 f6a97e4a52db891556e1a470ad873c4d 4340 non-free/doc optional 
doc-iana_20090501-1.diff.gz
 c68a0b6cddb24ee8a6be9ce1e6c84059 98145330 non-free/doc optional 
doc-iana_20090501-1_all.deb

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

iEYEARECAAYFAkn9elUACgkQ+C5cwEsrK56hTgCg2xVuQd8nEQ9lYq2AcirssyhD
C3gAoOPBULyqOEE1BaMr1TbbioimrwNI
=s/66
-END PGP SIGNATURE-


Accepted:
doc-iana_20090501-1.diff.gz
  to pool/non-free/d/doc-iana/doc-iana_20090501-1.diff.gz
doc-iana_20090501-1.dsc
  to pool/non-free/d/doc-iana/doc-iana_20090501-1.dsc
doc-iana_20090501-1_all.deb
  to pool/non-free/d/doc-iana/doc-iana_20090501-1_all.deb
doc-iana_20090501.orig.tar.gz
  to pool/non-free/d/doc-iana/doc-iana_20090501.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 apt-watch 0.3.2-12 (source all amd64)

2009-05-03 Thread John Lightsey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 07:45:00 -0600
Source: apt-watch
Binary: apt-watch-backend apt-watch-gnome apt-watch
Architecture: source amd64 all
Version: 0.3.2-12
Distribution: unstable
Urgency: low
Maintainer: John Lightsey light...@debian.org
Changed-By: John Lightsey light...@debian.org
Description: 
 apt-watch  - Applet that monitors apt sources for upgrades (transitional packa
 apt-watch-backend - Applet that monitors apt sources for upgrades (backend 
slave)
 apt-watch-gnome - Applet that monitors apt sources for upgrades (GNOME applet)
Closes: 526168
Changes: 
 apt-watch (0.3.2-12) unstable; urgency=low
 .
   * Apply patch from Martin Michlmayr to fix GCC 4.4 build errors
 Closes: #526168
   * Add misc:Depends for apt-watch and apt-watch-backend packages
   * Add lintian override for setuid apt-watch-auth-helper binary
   * Raise debhelper compat version to 7
   * Update copyright information
   * Bump standards version to 3.8.1.0
Checksums-Sha1: 
 1982cdfbc54bb9e1fddbb2fda1aa5917fb533a05 1099 apt-watch_0.3.2-12.dsc
 b6c7b9a5e1107ecec1415a8c83414bea7ada5ad9 133297 apt-watch_0.3.2-12.diff.gz
 ce407ddb0b2f962ad1c9bf07e9280f8f00a6ad19 43436 
apt-watch-backend_0.3.2-12_amd64.deb
 e65cb865b5ca55f1bb0a8c18dbe414f452a393a9 38324 
apt-watch-gnome_0.3.2-12_amd64.deb
 4bca4786ab44b246358970ed763ba85512a4c19c 3880 apt-watch_0.3.2-12_all.deb
Checksums-Sha256: 
 947b7c239f388d26de3a36c6c901f0b67c1bfe49ddb209b6de447d6eb5c349cb 1099 
apt-watch_0.3.2-12.dsc
 6802f5dcb997bb0458df4c30992ce032a914bae8251662fb9df089b7d4dcfc46 133297 
apt-watch_0.3.2-12.diff.gz
 d16063843bde71e9400ad779c85d35deaa3457cfbfee0cc9869e4ed04a0855b4 43436 
apt-watch-backend_0.3.2-12_amd64.deb
 b236eeae0d147391d809c008e844e2b6ec959cdf854cf2a8143b7f97571a67a4 38324 
apt-watch-gnome_0.3.2-12_amd64.deb
 562a026926f5cabaab6ae9497efb2268421498353c1e0204d3613ac889ddb484 3880 
apt-watch_0.3.2-12_all.deb
Files: 
 7759d3bbbdc0ccdafe48ae4b368148dd 1099 admin optional apt-watch_0.3.2-12.dsc
 bf8f99164e4125b5a64f3bb106d0b59c 133297 admin optional 
apt-watch_0.3.2-12.diff.gz
 f914726e016f109d3d543be86cc74c0b 43436 admin optional 
apt-watch-backend_0.3.2-12_amd64.deb
 898780a8c6ad0a4c04560e0cbeb509f8 38324 admin optional 
apt-watch-gnome_0.3.2-12_amd64.deb
 d7d7c4dc9d0749b47646b9d854e9a2d5 3880 admin optional apt-watch_0.3.2-12_all.deb

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

iEYEARECAAYFAkn9oQsACgkQBYeybkXz+/knRQCgk+W2K7NsAf1goIPS60yT0FXT
HhAAn1/cOI8pbeD45OUY/stUBBkZNZXl
=b2FH
-END PGP SIGNATURE-


Accepted:
apt-watch-backend_0.3.2-12_amd64.deb
  to pool/main/a/apt-watch/apt-watch-backend_0.3.2-12_amd64.deb
apt-watch-gnome_0.3.2-12_amd64.deb
  to pool/main/a/apt-watch/apt-watch-gnome_0.3.2-12_amd64.deb
apt-watch_0.3.2-12.diff.gz
  to pool/main/a/apt-watch/apt-watch_0.3.2-12.diff.gz
apt-watch_0.3.2-12.dsc
  to pool/main/a/apt-watch/apt-watch_0.3.2-12.dsc
apt-watch_0.3.2-12_all.deb
  to pool/main/a/apt-watch/apt-watch_0.3.2-12_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 imdbpy 4.1-1 (source amd64)

2009-05-03 Thread Ana Beatriz Guerrero Lopez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 16:20:59 +0200
Source: imdbpy
Binary: python-imdbpy
Architecture: source amd64
Version: 4.1-1
Distribution: unstable
Urgency: low
Maintainer: Ana Beatriz Guerrero Lopez a...@debian.org
Changed-By: Ana Beatriz Guerrero Lopez a...@debian.org
Description: 
 python-imdbpy - Python package to access the IMDb's movie database
Changes: 
 imdbpy (4.1-1) unstable; urgency=low
 .
   * New upstream release.
   * Update patch no_install_doc_or_stuff_in_etc.
   * Update to standards-Version 3.8.1, no changes required.
Checksums-Sha1: 
 b10ae2c14f31b478e7156caac8c3c19f0b827eec 1096 imdbpy_4.1-1.dsc
 a940c79e68f71c2a4aecc21a1f1a8d7e8cce689e 292981 imdbpy_4.1.orig.tar.gz
 a645c5581d480e1e4b8462f4248b28590cc9a705 4169 imdbpy_4.1-1.diff.gz
 d38e340fa1375c7b0c95e290366fbf603398a5a3 282942 python-imdbpy_4.1-1_amd64.deb
Checksums-Sha256: 
 16eb048dc7c8919fc9593d1e9d8a2d4055ddbbb1d54249b36b026a3cec4f4577 1096 
imdbpy_4.1-1.dsc
 489543f92bf4e33f4be06fb665492dbc49a4d583a47e29e5c2784c5a2be3b48f 292981 
imdbpy_4.1.orig.tar.gz
 f5e5083d316ffdf4d4091fa84086c152e76ad473082a29f8012527e95f167278 4169 
imdbpy_4.1-1.diff.gz
 e009a7ae51f28fe1fc4584bf45f71f733028e91f94972732f0f3569f33e54adc 282942 
python-imdbpy_4.1-1_amd64.deb
Files: 
 43fc88232e53fe4a4d0e396d29ae1c14 1096 python optional imdbpy_4.1-1.dsc
 33ec10b7000af42c105dc099118db7ab 292981 python optional imdbpy_4.1.orig.tar.gz
 b05a3361557f55763d9520a5b78305ed 4169 python optional imdbpy_4.1-1.diff.gz
 bdba0421cadb3a8d00daed473a0b7726 282942 python optional 
python-imdbpy_4.1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Signed by Ana Guerrero

iEYEARECAAYFAkn9qREACgkQn3j4POjENGGBkQCfeayCg+BlFk+juJibN7PnbnTV
MEsAn0TJi747UZBnGNWuBmIQEib+/Qbn
=MWYy
-END PGP SIGNATURE-


Accepted:
imdbpy_4.1-1.diff.gz
  to pool/main/i/imdbpy/imdbpy_4.1-1.diff.gz
imdbpy_4.1-1.dsc
  to pool/main/i/imdbpy/imdbpy_4.1-1.dsc
imdbpy_4.1.orig.tar.gz
  to pool/main/i/imdbpy/imdbpy_4.1.orig.tar.gz
python-imdbpy_4.1-1_amd64.deb
  to pool/main/i/imdbpy/python-imdbpy_4.1-1_amd64.deb


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



Accepted aria2 1.3.2-1 (source i386)

2009-05-03 Thread Patrick Ruckstuhl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 15:01:36 +0200
Source: aria2
Binary: aria2
Architecture: source i386
Version: 1.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Patrick Ruckstuhl patr...@tario.org
Changed-By: Patrick Ruckstuhl patr...@tario.org
Description: 
 aria2  - High speed download utility
Changes: 
 aria2 (1.3.2-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 58ec22c51dda52747f94bcbede6e25913c3bfb8a 1102 aria2_1.3.2-1.dsc
 40a940b58e92da6ba2ee6d7979685b4b09026409 1898066 aria2_1.3.2.orig.tar.gz
 d9bf4fafe047fb92103bb8038080b9923707e33e 2874 aria2_1.3.2-1.diff.gz
 adc628896498b1f9dd528a3c9595b2057cb6cf81 1383896 aria2_1.3.2-1_i386.deb
Checksums-Sha256: 
 a8856185096074d726c1c3391cadd05d8abdbf2f050241a574f0d60102439e38 1102 
aria2_1.3.2-1.dsc
 1fd854f8f6f5d27d01d9f67ac94f34f764f074470e3bf6df4436eb7d9222dd7d 1898066 
aria2_1.3.2.orig.tar.gz
 07920a74a90a0559ef4f8635bc969f42f33dbe3c8bf9ec7d311b2007a5560e32 2874 
aria2_1.3.2-1.diff.gz
 8214eecfe17537561d022ba4a630e7d721441d048a5938d7759a2c45df34aa9f 1383896 
aria2_1.3.2-1_i386.deb
Files: 
 9436e67233a9aa4394ad17f64d8b4c26 1102 net optional aria2_1.3.2-1.dsc
 353ad68399929a206a6be463195dc4d2 1898066 net optional aria2_1.3.2.orig.tar.gz
 4175c322f6618766135fe8a1721f08fc 2874 net optional aria2_1.3.2-1.diff.gz
 794f603214e9ae3b7aebd90e9abd4910 1383896 net optional aria2_1.3.2-1_i386.deb

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

iEYEARECAAYFAkn9p/4ACgkQ+C5cwEsrK54YtwCfftwrwWCxQSMz85ijd0Oz8y+f
qeYAoIoMXQF70IAVlHW1MSr02ZAEQNME
=zKlw
-END PGP SIGNATURE-


Accepted:
aria2_1.3.2-1.diff.gz
  to pool/main/a/aria2/aria2_1.3.2-1.diff.gz
aria2_1.3.2-1.dsc
  to pool/main/a/aria2/aria2_1.3.2-1.dsc
aria2_1.3.2-1_i386.deb
  to pool/main/a/aria2/aria2_1.3.2-1_i386.deb
aria2_1.3.2.orig.tar.gz
  to pool/main/a/aria2/aria2_1.3.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 tintin++ 1.99.4-1 (source amd64)

2009-05-03 Thread Ana Beatriz Guerrero Lopez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 16:35:07 +0200
Source: tintin++
Binary: tintin++
Architecture: source amd64
Version: 1.99.4-1
Distribution: unstable
Urgency: low
Maintainer: Ana Beatriz Guerrero Lopez a...@debian.org
Changed-By: Ana Beatriz Guerrero Lopez a...@debian.org
Description: 
 tintin++   - classic text-based MUD client
Changes: 
 tintin++ (1.99.4-1) unstable; urgency=low
 .
   * New upstream release.
   * Update Standards-Version to 3.8.1, no changes required.
Checksums-Sha1: 
 029f1b76002984b8cbd97b3b0242d66812ffb6e6 1065 tintin++_1.99.4-1.dsc
 af672b2856d73a4be207902560d8b498b67049a7 226374 tintin++_1.99.4.orig.tar.gz
 ab5f333a90056f74b944b37cd14558ec4013df75 5111 tintin++_1.99.4-1.diff.gz
 3159741c057a726df56cde6016ec6b636280b1b8 142554 tintin++_1.99.4-1_amd64.deb
Checksums-Sha256: 
 4e436e6610ca96c1342ad0a363285f3e4212461428529172b65aa350a34c2354 1065 
tintin++_1.99.4-1.dsc
 baed9b2b8517636cdf49bcedfcab9d0debb9075ffab424903dc0e0fde8217ef4 226374 
tintin++_1.99.4.orig.tar.gz
 119b5e579da4777433a01e78daf7607618b8882e984ef127d3b12571bc2fd5e2 5111 
tintin++_1.99.4-1.diff.gz
 6c888159fbb3daef44a8307232eba8332bc7c3579a6a6cb16ceaead569997af1 142554 
tintin++_1.99.4-1_amd64.deb
Files: 
 776b5a89e1ac9aa95c5cb7a86c8891e8 1065 games optional tintin++_1.99.4-1.dsc
 68ed5944e629d8c239ff9088d45b96c4 226374 games optional 
tintin++_1.99.4.orig.tar.gz
 fcbdc2af1a286fe1e50d94e626af875b 5111 games optional tintin++_1.99.4-1.diff.gz
 ebd415a247289a7a24c8c13883e7a058 142554 games optional 
tintin++_1.99.4-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Signed by Ana Guerrero

iEYEARECAAYFAkn9rZwACgkQn3j4POjENGEigwCfV20Mfve9ywei31VVF2gaUtLC
CScAnAlRZ+r02x6yFdxCZXNEFtFHL90q
=t+Of
-END PGP SIGNATURE-


Accepted:
tintin++_1.99.4-1.diff.gz
  to pool/main/t/tintin++/tintin++_1.99.4-1.diff.gz
tintin++_1.99.4-1.dsc
  to pool/main/t/tintin++/tintin++_1.99.4-1.dsc
tintin++_1.99.4-1_amd64.deb
  to pool/main/t/tintin++/tintin++_1.99.4-1_amd64.deb
tintin++_1.99.4.orig.tar.gz
  to pool/main/t/tintin++/tintin++_1.99.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 dir2ogg 0.11.7-1 (source all)

2009-05-03 Thread Julian Andres Klode
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 16:17:14 +0200
Source: dir2ogg
Binary: dir2ogg
Architecture: source all
Version: 0.11.7-1
Distribution: unstable
Urgency: low
Maintainer: Julian Andres Klode j...@debian.org
Changed-By: Julian Andres Klode j...@debian.org
Description: 
 dir2ogg- audio file converter into ogg-vorbis format
Closes: 513566
Changes: 
 dir2ogg (0.11.7-1) unstable; urgency=low
 .
   * New bugfix release:
 - Fix problems with mpg123 and files not using 44100Hz (LP: #272341)
 - Make --preserve-wav work when using mplayer (Closes: #513566)
 - Fix problem where tags from one file appear in other files (LP: #276037)
   * Some packaging changes:
 - Move all CD-related dependencies from Recommends to Suggests
 - Update e-mail address
 - Update to Standards-Version 3.8.1
Checksums-Sha1: 
 90e9c0d01157f6bbfda64b040a41bd2af3b92ec6 1131 dir2ogg_0.11.7-1.dsc
 20b6b807e98fbfde7ce43f66cba322d94389b397 19945 dir2ogg_0.11.7.orig.tar.gz
 655016a242b7f3bc76e799406bc40e122e1ef27a 2952 dir2ogg_0.11.7-1.diff.gz
 19174094425f1b07e169014fba0ee8edf8ff3ac0 18328 dir2ogg_0.11.7-1_all.deb
Checksums-Sha256: 
 2063278cdc7961310e8d2a7efcbb912ad109df954f6a0dbf073debf73d84a545 1131 
dir2ogg_0.11.7-1.dsc
 1874ab160a0019a34adeaba7580e680b0f67f55a7debfa05fea52e7358d4e5a4 19945 
dir2ogg_0.11.7.orig.tar.gz
 5fcf84a3c5c0240f85df261eb26690b0b1f84331c7a11fa0c89fd17742d8ddc5 2952 
dir2ogg_0.11.7-1.diff.gz
 0a55dce4b10863b01acf18260f46d34132f3416341af5ed6e9e2c2603d62e8b7 18328 
dir2ogg_0.11.7-1_all.deb
Files: 
 ac746a8a615f4e31e642cdd610a3f202 1131 sound optional dir2ogg_0.11.7-1.dsc
 1df8b4110c2109b7db0fe5ce40dae7db 19945 sound optional 
dir2ogg_0.11.7.orig.tar.gz
 2c6b874157ccd79a48eb6f379ede5139 2952 sound optional dir2ogg_0.11.7-1.diff.gz
 0bab96ac0180739f5474c9e3c7296466 18328 sound optional dir2ogg_0.11.7-1_all.deb

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

iEYEARECAAYFAkn9qlQACgkQrCpf/gCCPsJJvwCgqwLO3OntSHQ2K5cA3IDfgVT0
PD4AnjHHYQL4Oy9oqqzujM24CtjbElJT
=KKMx
-END PGP SIGNATURE-


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


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



Accepted libgnupdf 0.1~20090501-1 (source i386)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 15:34:00 +0200
Source: libgnupdf
Binary: libgnupdf0 libgnupdf-dbg libgnupdf-dev
Architecture: source i386
Version: 0.1~20090501-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 libgnupdf-dbg - PDF support library (debug)
 libgnupdf-dev - PDF support library (development)
 libgnupdf0 - PDF support library
Changes: 
 libgnupdf (0.1~20090501-1) unstable; urgency=low
 .
   * Merging upstream version 0.1~20090501.
Checksums-Sha1: 
 e8436529a44c274d4dc952cbc58ab5de625b5452 1241 libgnupdf_0.1~20090501-1.dsc
 bc40af7104f6f0e345d5e5d15681f7b246f43b3f 1308330 
libgnupdf_0.1~20090501.orig.tar.gz
 7b07aca4accdd4a1e719a868c55d4a7b6aacabd6 3006 libgnupdf_0.1~20090501-1.diff.gz
 9b7029d6cb6b75b240a0fbd2dfc9f96c5f9436ab 230444 
libgnupdf0_0.1~20090501-1_i386.deb
 dd4592cd5c401df176e7b8fa4421a49dd71669ba 214390 
libgnupdf-dbg_0.1~20090501-1_i386.deb
 4cc106c498277821a462e69760e50dd4c370bb8e 173104 
libgnupdf-dev_0.1~20090501-1_i386.deb
Checksums-Sha256: 
 9aa77dd6ba737e7e61234351429d887a3edd8409c9d53e378a023c85dc9efb49 1241 
libgnupdf_0.1~20090501-1.dsc
 f0c7710a5de7458309892216e0f8296bb21000880e07bde6ce58784cc91af7b1 1308330 
libgnupdf_0.1~20090501.orig.tar.gz
 02b9a89fe2a56fdd3d977be981c7f2a1063bb6ce465a0686dffb2f9b123e55e6 3006 
libgnupdf_0.1~20090501-1.diff.gz
 852f23a486bbeaae20429fb4c287363879f7c9ea4310c86cf24317db87a04a09 230444 
libgnupdf0_0.1~20090501-1_i386.deb
 894fd5ac4ab5909ce56b478d63e5e4766d1bda3662a1b938b1ade2e452f753e2 214390 
libgnupdf-dbg_0.1~20090501-1_i386.deb
 f7414de8de23d0aaf69cf81ba7f2a39dd394345a870df65c52634b8fb8e9a3f2 173104 
libgnupdf-dev_0.1~20090501-1_i386.deb
Files: 
 4022126bd80afcf87ad8dbf1b00ae902 1241 libs optional 
libgnupdf_0.1~20090501-1.dsc
 a44de8da5cdca8b62f0ee5fdc45ae7bc 1308330 libs optional 
libgnupdf_0.1~20090501.orig.tar.gz
 1ca170d041f5449afd84fd3112cb4e5d 3006 libs optional 
libgnupdf_0.1~20090501-1.diff.gz
 bb221c2d3e6fb6d6894b876342f47199 230444 libs optional 
libgnupdf0_0.1~20090501-1_i386.deb
 f1ecda6f70ade93fc94f5de5a263e40a 214390 debug extra 
libgnupdf-dbg_0.1~20090501-1_i386.deb
 3512c528d2f97d82431494f22f505114 173104 libdevel optional 
libgnupdf-dev_0.1~20090501-1_i386.deb

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

iEYEARECAAYFAkn9ncoACgkQ+C5cwEsrK57gqQCeMdwEOxIYXNqgqR0NSj/4n1Tm
2bgAn3XF3/WHeHDdGMaC6sF66unaojeW
=Ckj3
-END PGP SIGNATURE-


Accepted:
libgnupdf-dbg_0.1~20090501-1_i386.deb
  to pool/main/libg/libgnupdf/libgnupdf-dbg_0.1~20090501-1_i386.deb
libgnupdf-dev_0.1~20090501-1_i386.deb
  to pool/main/libg/libgnupdf/libgnupdf-dev_0.1~20090501-1_i386.deb
libgnupdf0_0.1~20090501-1_i386.deb
  to pool/main/libg/libgnupdf/libgnupdf0_0.1~20090501-1_i386.deb
libgnupdf_0.1~20090501-1.diff.gz
  to pool/main/libg/libgnupdf/libgnupdf_0.1~20090501-1.diff.gz
libgnupdf_0.1~20090501-1.dsc
  to pool/main/libg/libgnupdf/libgnupdf_0.1~20090501-1.dsc
libgnupdf_0.1~20090501.orig.tar.gz
  to pool/main/libg/libgnupdf/libgnupdf_0.1~20090501.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 mesa 7.4.1-1 (source i386)

2009-05-03 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 16:05:09 +0200
Source: mesa
Binary: libgl1-mesa-swx11 libgl1-mesa-swx11-dbg libgl1-mesa-swx11-i686 
libgl1-mesa-swx11-dev libgl1-mesa-glx libgl1-mesa-glx-dbg libgl1-mesa-dri 
libgl1-mesa-dri-dbg libgl1-mesa-dev mesa-common-dev libosmesa6 libosmesa6-dev 
libglu1-mesa libglu1-mesa-dev libglw1-mesa libglw1-mesa-dev mesa-utils
Architecture: source i386
Version: 7.4.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libgl1-mesa-dev - A free implementation of the OpenGL API -- GLX development 
files
 libgl1-mesa-dri - A free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-dri-dbg - Debugging symbols for the Mesa DRI modules
 libgl1-mesa-glx - A free implementation of the OpenGL API -- GLX runtime
 libgl1-mesa-glx-dbg - Debugging symbols for the Mesa GLX runtime
 libgl1-mesa-swx11 - A free implementation of the OpenGL API -- runtime
 libgl1-mesa-swx11-dbg - A free implementation of the OpenGL API -- debugging 
symbols
 libgl1-mesa-swx11-dev - A free implementation of the OpenGL API -- development 
files
 libgl1-mesa-swx11-i686 - Mesa OpenGL runtime [i686 optimized]
 libglu1-mesa - The OpenGL utility library (GLU)
 libglu1-mesa-dev - The OpenGL utility library -- development files
 libglw1-mesa - A free implementation of the OpenGL API -- runtime
 libglw1-mesa-dev - A free implementation of the OpenGL API -- development files
 libosmesa6 - Mesa Off-screen rendering extension
 libosmesa6-dev - Mesa Off-screen rendering extension -- development files
 mesa-common-dev - Developer documentation for Mesa
 mesa-utils - Miscellaneous Mesa GL utilities
Closes: 524690
Changes: 
 mesa (7.4.1-1) unstable; urgency=low
 .
   [ Julien Cristau ]
   * Make libgl1-mesa-dev and mesa-common-dev 'Architecture: any'.  This gets
 rid of uninstallability when a new upstream version isn't built on all
 architectures, and allows us to ship potentially arch-specific .pc files.
   * Install pkgconfig files for libGLU, libOSMesa and libGLw.
   * Make libgl1-mesa-dri{,-dbg} 'Architecture: any', as swrast_dri.so should
 get built everywhere.
   * Drop the dependency on libgl1-mesa-glx from -dri, and make -glx recommend
 -dri instead.  The dri drivers are also loaded by the X server, which
 doesn't need libGL.  On the other hand, libGL needs one of the dri drivers
 for direct rendering (either software or hardware).  Mark libgl1-mesa-dri
 as breaking old xserver-xorg-core and libgl1-mesa-glx, to avoid
 incompatibilities.
   * Add patch by Samuel Thibault to fix FTBFS on hurd-i386.
   * Pull from mesa_7_4_branch as of May 3rd (commit 63375254).
   * Move -dbg packages to new 'debug' section.
 .
   [ Brice Goglin ]
   * Add patch by Aurelien Jarno to fix FTBFS on kfreebsd-i386, closes: #524690.
Checksums-Sha1: 
 f411cb2451ee796d787a1d0655bfcc305274a9c9 1899 mesa_7.4.1-1.dsc
 0cebca47c53aadbe2f6eacf4181eda950baa207d 6511141 mesa_7.4.1.orig.tar.gz
 6bf21e0613c8da35a6e08eef1b6ad7e23f862c23 235273 mesa_7.4.1-1.diff.gz
 52add2219d6d155aa69dfab4cde1ef2494332152 929692 
libgl1-mesa-swx11_7.4.1-1_i386.deb
 7c194e3c648ed40d58e3212e64d27fb38db8870a 3845202 
libgl1-mesa-swx11-dbg_7.4.1-1_i386.deb
 30947b1df9d26d9b6e80cf7d5372b00fc7a89707 927626 
libgl1-mesa-swx11-i686_7.4.1-1_i386.deb
 e366c3ead73624b6b9d7c31c965aed27d52cbe88 1057406 
libgl1-mesa-swx11-dev_7.4.1-1_i386.deb
 150c9eabf86c53400d9680c9a373383b0f344051 146904 
libgl1-mesa-glx_7.4.1-1_i386.deb
 b7b1734a2fa25c9eca774b01951c266270993150 585900 
libgl1-mesa-glx-dbg_7.4.1-1_i386.deb
 2c341ca6c5956d27168f3e3b9a020d52c98f148a 13666074 
libgl1-mesa-dri_7.4.1-1_i386.deb
 6a79a22933243051cba108a5dab14cec42333c56 63289280 
libgl1-mesa-dri-dbg_7.4.1-1_i386.deb
 82756042b22f2384fb9017fdd432702bd104acd9 22432 libgl1-mesa-dev_7.4.1-1_i386.deb
 d76f2c3bc2932d1b69c19ce00131916d47ab810f 199108 
mesa-common-dev_7.4.1-1_i386.deb
 fce1069af568c4215755e8a033c28d84f68cae4b 2450416 libosmesa6_7.4.1-1_i386.deb
 68c67830bbb43870a626fa8e521c9d017b135559 2818636 
libosmesa6-dev_7.4.1-1_i386.deb
 5e1fd1f422000db92dd5409bb8386d198b14b5b0 209798 libglu1-mesa_7.4.1-1_i386.deb
 303ca58619977be4a0f253f853cb0f0b0123bc72 258640 
libglu1-mesa-dev_7.4.1-1_i386.deb
 62455545edfe2d7ac5351f5f655e0c84989e62ed 27194 libglw1-mesa_7.4.1-1_i386.deb
 8fb60622ef89b4defdb843860b09d524258371ea 28054 
libglw1-mesa-dev_7.4.1-1_i386.deb
 4bfd93fbcc99405979d36bf908afc8241ee1d7b1 44926 mesa-utils_7.4.1-1_i386.deb
Checksums-Sha256: 
 4eeba5d1e077937799f39f90ca99b28eb0384f5161f2f0ac030167651eff6469 1899 
mesa_7.4.1-1.dsc
 cca5593407b1c8452a4310633f59aeeb7d3b1a350c202b1cfe930d5c78d2b01b 6511141 
mesa_7.4.1.orig.tar.gz
 11e2a0018d2952f52db70d27251f5515b5ca7347851f428f3da6e0d7180d1553 235273 
mesa_7.4.1-1.diff.gz
 f717ddd3694d5010481294c592283c96cf19ad128a29f377d25e6bb54f69185f 929692 
libgl1-mesa-swx11_7.4.1-1_i386.deb

Accepted dhelp 0.6.17 (source all)

2009-05-03 Thread Esteban Manchado Velázquez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 17:15:05 +0200
Source: dhelp
Binary: dhelp
Architecture: source all
Version: 0.6.17
Distribution: unstable
Urgency: low
Maintainer: Esteban Manchado Velázquez z...@debian.org
Changed-By: Esteban Manchado Velázquez z...@debian.org
Description: 
 dhelp  - online help system
Closes: 526010
Changes: 
 dhelp (0.6.17) unstable; urgency=low
 .
   * Take into account index files when registering directories.
   * Added Indonesian translation (thanks Atoz Chevara).
   * Match 'localhost' instead of IPs in Apache config files (Closes: #526010).
 Thanks Stefano Zacchiroli.
Checksums-Sha1: 
 23f803a37cbc822f8c09e892c9f782bcd3cd206f 788 dhelp_0.6.17.dsc
 7e18428a54788149195b6c5527645e1a66fedf3c 52208 dhelp_0.6.17.tar.gz
 868db25264e7370df1ebdea2f89ec5f00fe37be7 42118 dhelp_0.6.17_all.deb
Checksums-Sha256: 
 fcfc0dded5aa1356d845c0881f4c451056b8a52a214790b3429c228e0a0c559a 788 
dhelp_0.6.17.dsc
 d3f8759efe1ff5c7b2cd23193ef01b69dcc6c5917c2a64d5beed92e70c30013d 52208 
dhelp_0.6.17.tar.gz
 26d82a05e0a957f57cb8851f7d8788809454da6721408d08daaea6475052ff94 42118 
dhelp_0.6.17_all.deb
Files: 
 9a5c353d19333bfb01fc18cbac5418d4 788 doc optional dhelp_0.6.17.dsc
 966e431418b7439cc4f08b65824b62f1 52208 doc optional dhelp_0.6.17.tar.gz
 86e45ebe02a2177c6dabf7e9fd3e03bc 42118 doc optional dhelp_0.6.17_all.deb

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

iD8DBQFJ/bWRhYgK5b1UDsERAkdxAJ9zJ+icHanIDFA4wAD8KaV3VCmK/QCeLSGu
m5yZJE3vg6A17g1Dp71dGEg=
=aNfL
-END PGP SIGNATURE-


Accepted:
dhelp_0.6.17.dsc
  to pool/main/d/dhelp/dhelp_0.6.17.dsc
dhelp_0.6.17.tar.gz
  to pool/main/d/dhelp/dhelp_0.6.17.tar.gz
dhelp_0.6.17_all.deb
  to pool/main/d/dhelp/dhelp_0.6.17_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 vsftpd 2.1.1~pre1-2 (source i386)

2009-05-03 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  3 May 2009 17:49:00 +0200
Source: vsftpd
Binary: vsftpd
Architecture: source i386
Version: 2.1.1~pre1-2
Distribution: unstable
Urgency: medium
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 vsftpd - lightweight, efficient FTP server written for security
Closes: 524251 526792
Changes: 
 vsftpd (2.1.1~pre1-2) unstable; urgency=medium
 .
   * Correcting wrong charset definition in Galizian debconf translations
 (Closes: #524251).
   * Adding patch to not hardcode libcap soname (Closes: #526792).
Checksums-Sha1: 
 a225b371de1acaf861d10f760254de023281ba57 1232 vsftpd_2.1.1~pre1-2.dsc
 6a12ba4ba719a4d418db214ccd797b7cdc7eb02d 16809 vsftpd_2.1.1~pre1-2.diff.gz
 c8ff6fba36801e003a3d1afad21d095eddd2373e 132680 vsftpd_2.1.1~pre1-2_i386.deb
Checksums-Sha256: 
 d13e5eb065d13a876f3bcf1c49f98ff3f70f35fd3e3663bf0b46f99a32380da6 1232 
vsftpd_2.1.1~pre1-2.dsc
 2c39f9c0eae6573d5facfb0734f175cde06d0b1ea3e800a3310efdedbd198f3a 16809 
vsftpd_2.1.1~pre1-2.diff.gz
 d221e31a5d7c8f1ca8c7726b66cb281e1fe99b3f10d61ad70cd0e36c865830ee 132680 
vsftpd_2.1.1~pre1-2_i386.deb
Files: 
 d1fe16d7cb8341ed70ea0c934abf5a92 1232 net extra vsftpd_2.1.1~pre1-2.dsc
 29ec0b9497ba240d8f2a6d08e259cc59 16809 net extra vsftpd_2.1.1~pre1-2.diff.gz
 26922467ba7190fe4bd53595defd7d37 132680 net extra vsftpd_2.1.1~pre1-2_i386.deb

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

iEYEARECAAYFAkn9vWIACgkQ+C5cwEsrK56JrACcD51T483yueGLJu6wckbERLyS
i90AoJmTvo9o9of3NQypA4nhv6ClDYo6
=YY73
-END PGP SIGNATURE-


Accepted:
vsftpd_2.1.1~pre1-2.diff.gz
  to pool/main/v/vsftpd/vsftpd_2.1.1~pre1-2.diff.gz
vsftpd_2.1.1~pre1-2.dsc
  to pool/main/v/vsftpd/vsftpd_2.1.1~pre1-2.dsc
vsftpd_2.1.1~pre1-2_i386.deb
  to pool/main/v/vsftpd/vsftpd_2.1.1~pre1-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 git-buildpackage 0.4.53 (source all)

2009-05-03 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 18:35:52 +0200
Source: git-buildpackage
Binary: git-buildpackage
Architecture: source all
Version: 0.4.53
Distribution: unstable
Urgency: low
Maintainer: Guido Günther a...@sigxcpu.org
Changed-By: Guido Günther a...@sigxcpu.org
Description: 
 git-buildpackage - Suite to help with Debian packages in Git repositories
Closes: 449075 525969
Changes: 
 git-buildpackage (0.4.53) unstable; urgency=low
 .
   * [b772300] pass --pretty=medium to git show (Closes: #525969)
   * [5ed3078] add commit argument to GitTag
   * [129b3c4] add get_author_email that parses git config and
   environment
   * [9ed19e7] add --fast-import. This uses git-fast-import to import the
   upstream tarball, speeds up imports of upstream tarballs by a
   factor of two. This options is experimental and will become the
   default once it got more testing. (Closes: #449075)
Checksums-Sha1: 
 a46b557944e09f3811b5e9d19440faf5f8505ab4 1040 git-buildpackage_0.4.53.dsc
 5ffb50d48e47fef9d51be71f1f6e16a702b97c37 53379 git-buildpackage_0.4.53.tar.gz
 75d358f4a73eacc497c72780139f13e4cc1f14ad 69670 git-buildpackage_0.4.53_all.deb
Checksums-Sha256: 
 d300633cd9f7e94323ba493216c32880a8bc85e5e9a2260fb050d449aec459f1 1040 
git-buildpackage_0.4.53.dsc
 2793222f0f4e6a471a01e31442a52fd6cfb38f328d665bc91ebc9998dd51f0be 53379 
git-buildpackage_0.4.53.tar.gz
 64895fa1d228646be247924237d5b2cd88773be0d461c1198a3b40a6d737194a 69670 
git-buildpackage_0.4.53_all.deb
Files: 
 3eb4b60167ca76d03211f3992d401bc1 1040 vcs optional git-buildpackage_0.4.53.dsc
 a8868a02da3b2fc380251d297113e39e 53379 vcs optional 
git-buildpackage_0.4.53.tar.gz
 60e202ec225c8c7eae25c1293c7dd4ed 69670 vcs optional 
git-buildpackage_0.4.53_all.deb

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

iD8DBQFJ/cqHn88szT8+ZCYRAvHpAJ9mn9IxKVnIRrFAdyrVjB5NFEfCgwCfTRiX
eiC+dqsj2kUWrMgaNizKWGc=
=nC/6
-END PGP SIGNATURE-


Accepted:
git-buildpackage_0.4.53.dsc
  to pool/main/g/git-buildpackage/git-buildpackage_0.4.53.dsc
git-buildpackage_0.4.53.tar.gz
  to pool/main/g/git-buildpackage/git-buildpackage_0.4.53.tar.gz
git-buildpackage_0.4.53_all.deb
  to pool/main/g/git-buildpackage/git-buildpackage_0.4.53_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 xsok 1.02-17 (source amd64)

2009-05-03 Thread Peter Samuelson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 11:48:58 -0500
Source: xsok
Binary: xsok
Architecture: source amd64
Version: 1.02-17
Distribution: unstable
Urgency: low
Maintainer: Peter Samuelson pe...@p12n.org
Changed-By: Peter Samuelson pe...@p12n.org
Description: 
 xsok   - generic Sokoban game for X11
Closes: 485726
Changes: 
 xsok (1.02-17) unstable; urgency=low
 .
   * Policy 3.8.0: move /usr/X11R6/lib to /usr/lib.
   * Build-Depends: xutils-dev.  (Closes: #485726)
   * Fix 'debian/rules clean' lintian warning.
   * Update 'debian/copyright' a bit, thanks again to lintian.
Checksums-Sha1: 
 2d18449ac509073d87688d6b1a6a96314c2f3b74 969 xsok_1.02-17.dsc
 ac650c206b1cbebdc5d95d3791e04b2f3097ab7a 13783 xsok_1.02-17.diff.gz
 69452dd423a40ae2d464278fab59452521d27694 61072 xsok_1.02-17_amd64.deb
Checksums-Sha256: 
 c85ac1062f1e69fd2d5ebe80e0a126bc03045d96a5c0850d6cc439d9ccdf8477 969 
xsok_1.02-17.dsc
 34a28079716718519a5b0dc42a9fb7e0ddf4227e875c5abb86ca963590167a52 13783 
xsok_1.02-17.diff.gz
 00a0d00ec990dc4020410ab139cd7adba873ce9ce0046a418810e84389b2cd44 61072 
xsok_1.02-17_amd64.deb
Files: 
 b23c687ce1e0a9c4706ca21dcc6f23dc 969 games optional xsok_1.02-17.dsc
 3015513843b5fd8f0b937339dcb5b6d5 13783 games optional xsok_1.02-17.diff.gz
 a8df14a5ec5fb2f06338767a3d746099 61072 games optional xsok_1.02-17_amd64.deb

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

iD8DBQFJ/cyLXk7sIRPQRh0RArRXAJ9EOSje9BSKQnISMloOO5qClgdbMwCfR2Ag
GCk10239slQUaJWmYE/eHjM=
=Y7jC
-END PGP SIGNATURE-


Accepted:
xsok_1.02-17.diff.gz
  to pool/main/x/xsok/xsok_1.02-17.diff.gz
xsok_1.02-17.dsc
  to pool/main/x/xsok/xsok_1.02-17.dsc
xsok_1.02-17_amd64.deb
  to pool/main/x/xsok/xsok_1.02-17_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 libdrm 2.4.9-2 (source i386)

2009-05-03 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 18:55:42 +0200
Source: libdrm
Binary: libdrm-dev libdrm2 libdrm2-dbg libdrm-intel1 libdrm-intel1-dbg
Architecture: source i386
Version: 2.4.9-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 libdrm-dev - Userspace interface to kernel DRM services -- development files
 libdrm-intel1 - Userspace interface to intel-specific kernel DRM services -- 
runt
 libdrm-intel1-dbg - Userspace interface to intel-specific kernel DRM services 
-- debu
 libdrm2- Userspace interface to kernel DRM services -- runtime
 libdrm2-dbg - Userspace interface to kernel DRM services -- debugging symbols
Changes: 
 libdrm (2.4.9-2) unstable; urgency=low
 .
   * Ship all drm headers on kfreebsd, again.
   * Move -dbg packages to new debug section.
Checksums-Sha1: 
 d7b9a567dd32bf9a782bb6b0cd25b79eafa04fda 1396 libdrm_2.4.9-2.dsc
 4c05a97e5a569b80f5a2eabc99c0ae7ff362cc8a 377364 libdrm_2.4.9-2.diff.gz
 f4646760767fa6b1008235492650b80e2a6d7192 438724 libdrm-dev_2.4.9-2_i386.deb
 31296f5cbd12601cdde7f2f956a5f74ef32f206b 381018 libdrm2_2.4.9-2_i386.deb
 dc5b61ea0ebc530b630f750fc5a7c72d933c4843 396110 libdrm2-dbg_2.4.9-2_i386.deb
 1012f9c8738be51aed59963ad4a37d6539572108 379210 libdrm-intel1_2.4.9-2_i386.deb
 fd511b7a0fe3693f2a716845ef865ce6727e6ec2 389740 
libdrm-intel1-dbg_2.4.9-2_i386.deb
Checksums-Sha256: 
 9eec1ae66f8d78f05220fa7235844f23481376e4a2a9f5efbe57a861cd9bf94f 1396 
libdrm_2.4.9-2.dsc
 87299729bbf2029ab6959ae35db1dd58920d55c832aa48b2d903229599986225 377364 
libdrm_2.4.9-2.diff.gz
 8b5fad723fd2db57313894e6ff9b9365d495f8b21f5130076ca573f9b0523617 438724 
libdrm-dev_2.4.9-2_i386.deb
 d161667434b4040266470650c664905c4af2fdc2411e2db4e7aea3071ffd4451 381018 
libdrm2_2.4.9-2_i386.deb
 cd446df227cde4794df0b2eab83e3b94caf0aa152da95b03feb169f38ecaf04b 396110 
libdrm2-dbg_2.4.9-2_i386.deb
 843ec120c5499a6e8635f53fc768812c4e0de157c858053eaad1e82c9f52ef02 379210 
libdrm-intel1_2.4.9-2_i386.deb
 b9216d7320dd89d047a0b9185a88b80de4cacd68ac18b9df824bfa166628e087 389740 
libdrm-intel1-dbg_2.4.9-2_i386.deb
Files: 
 4de6e6257a66a16b85e0bed723b5fff3 1396 libs optional libdrm_2.4.9-2.dsc
 7085a64cf5c8562c6a5be63db2360e14 377364 libs optional libdrm_2.4.9-2.diff.gz
 95af75b23040f9f66a52cde5a659e8bc 438724 libdevel optional 
libdrm-dev_2.4.9-2_i386.deb
 b1b0d6d78dc623d5baed3c3f92618be2 381018 libs optional libdrm2_2.4.9-2_i386.deb
 7370059f92bc7da3b3b625e1551bd2cb 396110 debug extra 
libdrm2-dbg_2.4.9-2_i386.deb
 b5ba824588de23d7ee4ba349711368dc 379210 libs optional 
libdrm-intel1_2.4.9-2_i386.deb
 61b6e7682294b622a43216411d3605c9 389740 debug extra 
libdrm-intel1-dbg_2.4.9-2_i386.deb

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

iEYEARECAAYFAkn9zccACgkQmEvTgKxfcAzbsgCcDYkS7k0LMj5Gz7LsgmnRBJ3x
nYoAn10bNiXWX/4iUWBouZ/K/g0/xapl
=utIb
-END PGP SIGNATURE-


Accepted:
libdrm-dev_2.4.9-2_i386.deb
  to pool/main/libd/libdrm/libdrm-dev_2.4.9-2_i386.deb
libdrm-intel1-dbg_2.4.9-2_i386.deb
  to pool/main/libd/libdrm/libdrm-intel1-dbg_2.4.9-2_i386.deb
libdrm-intel1_2.4.9-2_i386.deb
  to pool/main/libd/libdrm/libdrm-intel1_2.4.9-2_i386.deb
libdrm2-dbg_2.4.9-2_i386.deb
  to pool/main/libd/libdrm/libdrm2-dbg_2.4.9-2_i386.deb
libdrm2_2.4.9-2_i386.deb
  to pool/main/libd/libdrm/libdrm2_2.4.9-2_i386.deb
libdrm_2.4.9-2.diff.gz
  to pool/main/libd/libdrm/libdrm_2.4.9-2.diff.gz
libdrm_2.4.9-2.dsc
  to pool/main/libd/libdrm/libdrm_2.4.9-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 grcm 0.1.6-1 (source i386)

2009-05-03 Thread Luca Niccoli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 04 Apr 2009 00:23:55 +0200
Source: grcm
Binary: grcm
Architecture: source i386
Version: 0.1.6-1
Distribution: unstable
Urgency: low
Maintainer: Luca Niccoli lultimou...@gmail.com
Changed-By: Luca Niccoli lultimou...@gmail.com
Description: 
 grcm   - GNOME application to initiate connections to remote machines
Changes: 
 grcm (0.1.6-1) unstable; urgency=low
 .
   * Adopt package.
   * New upstream release.
   * Repackage from scratch using quilt.
   * Use debhelper 7
   * Set Standards Version to 3.8.1
   * Move build system to latest automake in Debian.
Checksums-Sha1: 
 0be94d430d1a0a755267241cbcc35439b6f2164c 981 grcm_0.1.6-1.dsc
 c9ecd64285d0affab565c23fb4601fc998e20c83 366261 grcm_0.1.6.orig.tar.gz
 88e73e37ad251b81456ce2f484225d7efea17082 8347 grcm_0.1.6-1.diff.gz
 8201032ce9681471554f55ad5ce8ffaa55c8dfd7 112274 grcm_0.1.6-1_i386.deb
Checksums-Sha256: 
 8d08ae9e3425cc15a076c3ed77fb5bad21caeecb1ffe74c6137e3212af41e697 981 
grcm_0.1.6-1.dsc
 5deafae6fe52fb60ab53928361621f0b3e985188756b263c02ee31949a435f2e 366261 
grcm_0.1.6.orig.tar.gz
 bc035e798d33a8a518ed72473b4b58359ea49ba20f945cf696b44ebe383f6a9e 8347 
grcm_0.1.6-1.diff.gz
 dc36169827a2cfe6a69d242a49b7da19f72b59457af58706a3e141a6fa1e5a68 112274 
grcm_0.1.6-1_i386.deb
Files: 
 246a34c4c489a3878623a89d7debb796 981 interpreters optional grcm_0.1.6-1.dsc
 a002071664068712dd8d81098056b94a 366261 interpreters optional 
grcm_0.1.6.orig.tar.gz
 14892fcfd4d6daa2fed90bea014dd75a 8347 interpreters optional 
grcm_0.1.6-1.diff.gz
 580339cc1cb5351920b325d6575e277d 112274 interpreters optional 
grcm_0.1.6-1_i386.deb

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

iEYEARECAAYFAkn9zfUACgkQ5ItltUs5T35vowCgrxhQbXmw8Gf/paTmW5ikle3o
NeEAnRGWf4M8enUCR6vPTJPX7TRgsA48
=dL6d
-END PGP SIGNATURE-


Accepted:
grcm_0.1.6-1.diff.gz
  to pool/main/g/grcm/grcm_0.1.6-1.diff.gz
grcm_0.1.6-1.dsc
  to pool/main/g/grcm/grcm_0.1.6-1.dsc
grcm_0.1.6-1_i386.deb
  to pool/main/g/grcm/grcm_0.1.6-1_i386.deb
grcm_0.1.6.orig.tar.gz
  to pool/main/g/grcm/grcm_0.1.6.orig.tar.gz


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



Accepted perl 5.10.0-21 (source all)

2009-05-03 Thread Niko Tyni
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 15:08:58 +0300
Source: perl
Binary: perl-base libcgi-fast-perl perl-doc perl-modules perl-debug perl-suid 
libperl5.10 libperl-dev perl
Architecture: all source 
Version: 5.10.0-21
Distribution: unstable
Urgency: low
Maintainer: Brendan O'Dea b...@debian.org
Changed-By: Niko Tyni nt...@debian.org
Closes: 293908 379757 482139 516472 519785 521613 523940 525180
Description:
 libcgi-fast-perl - CGI::Fast Perl module
 libperl5.10 - Shared Perl library
 libperl-dev - Perl library: development files
 perl-base  - minimal Perl system
 perl-debug - Debug-enabled Perl interpreter
 perl-doc   - Perl documentation
 perl   - Larry Wall's Practical Extraction and Report Language
 perl-modules - Core Perl modules
 perl-suid  - Runs setuid Perl scripts
Changes:
 perl (5.10.0-21) unstable; urgency=low
 .
   * Make the perl package recommend make because /usr/bin/cpan uses it.
 (Closes: #293908)
   * Add a .NOTPARALLEL debian/rules target to explicitly disable parallel
 builds. (Closes: #523940)
   * Squelch 'Constant subroutine ... undefined' warnings from .ph files.
 (Closes: #379757)
   * Elaborate PERL_SYS_* documentation a bit.
   * Fix a segmentation fault with array ties. (Closes: #525180)
   * Improve Archive::Tar error reporting on short corrupted archives.
 (Closes: #521613)
   * Fix use of -section in Pod::Usage and =over, =back. (Closes: #519785)
   * Archive::Tar now validates archives created by SunOS and HP-UX tar.
 (Closes: #516472)
   * XS_VERSION_BOOTCHECK may break if $VERSION is a long floating point number,
 so recommend using a string instead. (Closes: #482139)
Checksums-Sha1: 
 4f8eb06325c919c4d2eca688a1c72a8473f93b63 8218878 perl-doc_5.10.0-21_all.deb
 5295b4fafdb2f71c3a6a69e5a24151be28ae3c94 1340 perl_5.10.0-21.dsc
 80ed0de44ffb97b4649809f15a0c99da8525062d 166086 perl_5.10.0-21.diff.gz
 841cadc9df306e7539178c7248e80d0fc6ce 3197900 perl-modules_5.10.0-21_all.deb
 c38ea70af9ec438eb84caabc47e5cdfb6d9374a4 48368 
libcgi-fast-perl_5.10.0-21_all.deb
Checksums-Sha256: 
 2e63218d6093603b23a573b385b5f234722f825a27b6d06a78814d397069f4b3 166086 
perl_5.10.0-21.diff.gz
 44f1d54bc4efe8df4f835b0f71ac8735c72c4b29a762d0306c01dc0333a0521e 48368 
libcgi-fast-perl_5.10.0-21_all.deb
 698c1721287182fa95e6f65a86ba10af2f1902fb8f8feffb38f85ef45600f3dc 1340 
perl_5.10.0-21.dsc
 d896cd1910eeecd1cea26ff2a13035b3bb8f95d1aece27e5d03a5d5ee8d8e2be 8218878 
perl-doc_5.10.0-21_all.deb
 e21374bad8ed1bd4325b36e3bcf53e28d99861c33b764b95f3b05a2b4a59fc56 3197900 
perl-modules_5.10.0-21_all.deb
Files: 
 57e561647d8327eb3267b231cfaa9d1a 8218878 doc optional 
perl-doc_5.10.0-21_all.deb
 69b807251fc16d55807c40e5d3ec41d1 1340 perl standard perl_5.10.0-21.dsc
 72994d38c2903ede0168c23856749507 48368 perl optional 
libcgi-fast-perl_5.10.0-21_all.deb
 d3676429ecae7874e17f96ca8f702098 166086 perl standard perl_5.10.0-21.diff.gz
 ddfae57a8c269cda9d818e127a666ee3 3197900 perl standard 
perl-modules_5.10.0-21_all.deb

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

iEYEARECAAYFAkn9xvcACgkQiyizGWoHLTkVeQCgmlWKs9kVCDcTYDlOeTvms+2n
J+4AnRbUbJegjnxiYXSuMsdgnJW8YOqV
=ExbN
-END PGP SIGNATURE-


Accepted:
libcgi-fast-perl_5.10.0-21_all.deb
  to pool/main/p/perl/libcgi-fast-perl_5.10.0-21_all.deb
perl-doc_5.10.0-21_all.deb
  to pool/main/p/perl/perl-doc_5.10.0-21_all.deb
perl-modules_5.10.0-21_all.deb
  to pool/main/p/perl/perl-modules_5.10.0-21_all.deb
perl_5.10.0-21.diff.gz
  to pool/main/p/perl/perl_5.10.0-21.diff.gz
perl_5.10.0-21.dsc
  to pool/main/p/perl/perl_5.10.0-21.dsc


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



Accepted ladr 0.0.200902a-2 (source amd64)

2009-05-03 Thread Peter Collingbourne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 18:07:07 +0100
Source: ladr
Binary: libladr-dev libladr4 prover9 ladr4-apps
Architecture: source amd64
Version: 0.0.200902a-2
Distribution: unstable
Urgency: low
Maintainer: Peter Collingbourne pe...@pcc.me.uk
Changed-By: Peter Collingbourne pe...@pcc.me.uk
Description: 
 ladr4-apps - the LADR deduction library, miscellaneous applications
 libladr-dev - the LADR deduction library, development files
 libladr4   - the LADR deduction library
 prover9- theorem prover and countermodel generator
Closes: 526541
Changes: 
 ladr (0.0.200902a-2) unstable; urgency=low
 .
   * Merged from Ubuntu, fixes FTBFS (closes: #526541)
 - Drop -shared from the libtool command to make libladr.la in
   debian/patches/01-libtoolise.dpatch so that both the shared and
   static libraries are built. The .install file tries to install both,
   and if -shared is passed the .a isn't built and the package fails
   to build. This appears to be a change in libtool behaviour.
Checksums-Sha1: 
 cc6c298404cae53e2f38fea74890bd14d1d7a9b9 1161 ladr_0.0.200902a-2.dsc
 01e970c80e5fb96763a0150901701cb6f4effa7b 17239 ladr_0.0.200902a-2.diff.gz
 3ddacab511c802b9911ea8cf9100893525b61475 400942 
libladr-dev_0.0.200902a-2_amd64.deb
 4a35a41f7a14996d29af99ba6a0c6dc01d20bee8 238708 
libladr4_0.0.200902a-2_amd64.deb
 ac76600af1e433d74c7c5f0c2b65343384b10928 127580 prover9_0.0.200902a-2_amd64.deb
 1af5cc9739c3697682294c0f6f1862429ee0c14f 369898 
ladr4-apps_0.0.200902a-2_amd64.deb
Checksums-Sha256: 
 07dc2d22ad6db40c2b9288377419853575e62cb47eba5fd0cf04d95a2faf6034 1161 
ladr_0.0.200902a-2.dsc
 db7426412cb21e718e8f46fe46d47c2ded747dac4a6da51183a4477a212ebc0a 17239 
ladr_0.0.200902a-2.diff.gz
 61c0c98716a90074aca7b1b76bdfaef131e2a9062a71cd9af1433aab88e2cf19 400942 
libladr-dev_0.0.200902a-2_amd64.deb
 1a27b3dbb36e8614e6ba8a0baa84c08e19bb5641f4eb184e0ca62f659e38cd0a 238708 
libladr4_0.0.200902a-2_amd64.deb
 ebccca6c947dd7f8e0b8f4a661b8e3394c1fc690c823dc089416174711a730e4 127580 
prover9_0.0.200902a-2_amd64.deb
 e4edda87abafc8c69793e36bcdeb4dd7a33f1fffa0f928811ffaeb7687cb1364 369898 
ladr4-apps_0.0.200902a-2_amd64.deb
Files: 
 2df00e8e081c7d55e692a1cf1780aa64 1161 math optional ladr_0.0.200902a-2.dsc
 5a780276344a55e8396a799a56b8fe93 17239 math optional ladr_0.0.200902a-2.diff.gz
 a48a9369ee79f6927f52ffa5742a5026 400942 libdevel optional 
libladr-dev_0.0.200902a-2_amd64.deb
 bec5eea774ea42de40e38b89fc47b256 238708 libs optional 
libladr4_0.0.200902a-2_amd64.deb
 f826f2d4a956f406c95fc22d04756fcd 127580 math optional 
prover9_0.0.200902a-2_amd64.deb
 f73d87432e9e7977d673cffbc18b36e8 369898 math optional 
ladr4-apps_0.0.200902a-2_amd64.deb

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

iEYEARECAAYFAkn91BYACgkQXDqn6DSH7HGaLQCgiCsJ0nfFN8C2u4m/W4aGrpGW
FYkAnjhztY3YY9uYXzSTpzrWWODXY+1R
=Npk1
-END PGP SIGNATURE-


Accepted:
ladr4-apps_0.0.200902a-2_amd64.deb
  to pool/main/l/ladr/ladr4-apps_0.0.200902a-2_amd64.deb
ladr_0.0.200902a-2.diff.gz
  to pool/main/l/ladr/ladr_0.0.200902a-2.diff.gz
ladr_0.0.200902a-2.dsc
  to pool/main/l/ladr/ladr_0.0.200902a-2.dsc
libladr-dev_0.0.200902a-2_amd64.deb
  to pool/main/l/ladr/libladr-dev_0.0.200902a-2_amd64.deb
libladr4_0.0.200902a-2_amd64.deb
  to pool/main/l/ladr/libladr4_0.0.200902a-2_amd64.deb
prover9_0.0.200902a-2_amd64.deb
  to pool/main/l/ladr/prover9_0.0.200902a-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 p9m4 0.5.dfsg-2 (source all)

2009-05-03 Thread Peter Collingbourne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 16:00:55 +0100
Source: p9m4
Binary: prover9-mace4
Architecture: source all
Version: 0.5.dfsg-2
Distribution: unstable
Urgency: low
Maintainer: Peter Collingbourne pe...@pcc.me.uk
Changed-By: Peter Collingbourne pe...@pcc.me.uk
Description: 
 prover9-mace4 - GUI for Prover9 and Mace4
Closes: 526685
Changes: 
 p9m4 (0.5.dfsg-2) unstable; urgency=low
 .
   [ Sandro Tosi ]
   * debian/control
 - switch Vcs-Browser field to viewsvn
 .
   [ Marco Rodrigues ]
   * debian/control:
 + Add ${misc:Depends} to Depends to remove
   lintian warning.
 .
   [ Peter Collingbourne ]
   * debian/install: removed shell brace expansion
   * debian/prover9-mace4.1, debian/control, debian/copyright: changed
 maintainer email address
   * debian/copyright: updated year, use correct declaration of
 copyright, refer to version of GPL
   * debian/control: updated Standards-Version
   * debian/patches/04-64bit.patch: added; Prover9-Mace4 can now start on
 64-bit platforms (closes: #526685)
   * debian/control: added DM-Upload-Allowed: yes
Checksums-Sha1: 
 8fca258921c209d8ec21d6dfb457cb2203e1d011 1326 p9m4_0.5.dfsg-2.dsc
 cb6674f0cc3524f1c5a84f787f76f889553e4096 8675 p9m4_0.5.dfsg-2.diff.gz
 5cf3bbc36d0b7707b303069140e90c70b822df00 67444 prover9-mace4_0.5.dfsg-2_all.deb
Checksums-Sha256: 
 418be0dd7d63995db6f49ecc5e14ffa9001e7ba747d8f4f86d88961a7063c99c 1326 
p9m4_0.5.dfsg-2.dsc
 a0bfa3bb7de3a5e17c34379cd3ba1987b14218eec2fa0fc45c9f4be68b6467e9 8675 
p9m4_0.5.dfsg-2.diff.gz
 6e928d55e8d3621dc5104a48da64174d16d3d4ed4bf4876bec5c3a2ee49ecdb2 67444 
prover9-mace4_0.5.dfsg-2_all.deb
Files: 
 ada7aaaf3871ca5572ffe45f19107a4d 1326 math optional p9m4_0.5.dfsg-2.dsc
 d118d27a7bad4866399cea99e7a4c494 8675 math optional p9m4_0.5.dfsg-2.diff.gz
 f26a12f1f4266b1a56ab769b4c46778c 67444 math optional 
prover9-mace4_0.5.dfsg-2_all.deb

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

iEYEARECAAYFAkn96h4ACgkQBnqtBMk7/3kLSwCgj8CUT+g9OuMittdkX3UoOkeO
8BMAn2//3AKYIwkFl68vWpKSf060UQJ0
=a5c0
-END PGP SIGNATURE-


Accepted:
p9m4_0.5.dfsg-2.diff.gz
  to pool/main/p/p9m4/p9m4_0.5.dfsg-2.diff.gz
p9m4_0.5.dfsg-2.dsc
  to pool/main/p/p9m4/p9m4_0.5.dfsg-2.dsc
prover9-mace4_0.5.dfsg-2_all.deb
  to pool/main/p/p9m4/prover9-mace4_0.5.dfsg-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 boost1.38 1.38.0-6 (source all amd64)

2009-05-03 Thread Steve M. Robbins
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 00:53:13 -0500
Source: boost1.38
Binary: libboost1.38-dbg libboost1.38-dev libboost1.38-doc 
libboost-date-time1.38.0 libboost-date-time1.38-dev libboost-filesystem1.38.0 
libboost-filesystem1.38-dev libboost-graph1.38.0 libboost-graph1.38-dev 
libboost-iostreams1.38.0 libboost-iostreams1.38-dev libboost-math1.38.0 
libboost-math1.38-dev libboost-mpi1.38.0 libboost-mpi1.38-dev 
libboost-program-options1.38.0 libboost-program-options1.38-dev 
libboost-python1.38.0 libboost-python1.38-dev libboost-regex1.38.0 
libboost-regex1.38-dev libboost-serialization1.38.0 
libboost-serialization1.38-dev libboost-signals1.38.0 libboost-signals1.38-dev 
libboost-system1.38.0 libboost-system1.38-dev libboost-test1.38.0 
libboost-test1.38-dev libboost-thread1.38.0 libboost-thread1.38-dev 
libboost-wave1.38.0 libboost-wave1.38-dev
Architecture: source all amd64
Version: 1.38.0-6
Distribution: unstable
Urgency: low
Maintainer: Debian Boost Team pkg-boost-de...@lists.alioth.debian.org
Changed-By: Steve M. Robbins s...@debian.org
Description: 
 libboost-date-time1.38-dev - set of date-time libraries based on generic 
programming concepts
 libboost-date-time1.38.0 - set of date-time libraries based on generic 
programming concepts
 libboost-filesystem1.38-dev - filesystem operations (portable paths, iteration 
over directories
 libboost-filesystem1.38.0 - filesystem operations (portable paths, iteration 
over directories
 libboost-graph1.38-dev - generic graph components and algorithms in C++
 libboost-graph1.38.0 - generic graph components and algorithms in C++
 libboost-iostreams1.38-dev - Boost.Iostreams Library development files
 libboost-iostreams1.38.0 - Boost.Iostreams Library
 libboost-math1.38-dev - Boost.Math Library development files
 libboost-math1.38.0 - Boost.Math Library
 libboost-mpi1.38-dev - C++ interface to the Message Passing Interface (MPI)
 libboost-mpi1.38.0 - C++ interface to the Message Passing Interface (MPI)
 libboost-program-options1.38-dev - program options library for C++
 libboost-program-options1.38.0 - program options library for C++
 libboost-python1.38-dev - Boost.Python Library development files
 libboost-python1.38.0 - Boost.Python Library
 libboost-regex1.38-dev - regular expression library for C++
 libboost-regex1.38.0 - regular expression library for C++
 libboost-serialization1.38-dev - serialization library for C++
 libboost-serialization1.38.0 - serialization library for C++
 libboost-signals1.38-dev - managed signals and slots library for C++
 libboost-signals1.38.0 - managed signals and slots library for C++
 libboost-system1.38-dev - Operating system (e.g. diagnostics support) library
 libboost-system1.38.0 - Operating system (e.g. diagnostics support) library
 libboost-test1.38-dev - components for writing and executing test suites
 libboost-test1.38.0 - components for writing and executing test suites
 libboost-thread1.38-dev - portable C++ multi-threading
 libboost-thread1.38.0 - portable C++ multi-threading
 libboost-wave1.38-dev - C99/C++ preprocessor library
 libboost-wave1.38.0 - C99/C++ preprocessor library
 libboost1.38-dbg - Boost C++ Libraries with debug symbols
 libboost1.38-dev - Boost C++ Libraries development files
 libboost1.38-doc - Boost.org libraries documentation
Changes: 
 boost1.38 (1.38.0-6) unstable; urgency=low
 .
   * control: Add version ( 1.35.0) to conflicts for -doc and -dbg
 packages.
Checksums-Sha1: 
 2e416ec6047f3fb974be807381f55ce3cb278faa 2239 boost1.38_1.38.0-6.dsc
 037a0fc6251607d982b2679a4d59663b2029744e 84441 boost1.38_1.38.0-6.diff.gz
 1e9b46ffada94fa4c00274851b3874e368ac9256 36800094 
libboost1.38-doc_1.38.0-6_all.deb
 899df11495b478f8d1f7b0254bb3c3801001e64f 48490082 
libboost1.38-dbg_1.38.0-6_amd64.deb
 6624e86de6337c3437ca8983af91b23902c88153 3800648 
libboost1.38-dev_1.38.0-6_amd64.deb
 7c9e59e9246ddf99d0453b01b87df63c8dd1486d 41520 
libboost-date-time1.38.0_1.38.0-6_amd64.deb
 eb2173360058245db5db6ef554b1eb107281d9e9 170034 
libboost-date-time1.38-dev_1.38.0-6_amd64.deb
 0d2026b49d8ee598e840b1fdc07a03dcfcc36943 45886 
libboost-filesystem1.38.0_1.38.0-6_amd64.deb
 084628334236addef1507faccd450cc282de7e79 77046 
libboost-filesystem1.38-dev_1.38.0-6_amd64.deb
 5636d45db25abe060500b66336920ca84ba069e3 122096 
libboost-graph1.38.0_1.38.0-6_amd64.deb
 41e7863064c9873edbf7e682db4d615f3e32099f 415586 
libboost-graph1.38-dev_1.38.0-6_amd64.deb
 70452813e03bca14be10bd61e51abaeee93a79ec 34858 
libboost-iostreams1.38.0_1.38.0-6_amd64.deb
 f3f54ee2b9fb7358cd22d9dc838cf0259573f09d 133318 
libboost-iostreams1.38-dev_1.38.0-6_amd64.deb
 459281970eda3ec8dfc9fd85ebfbd0269c8283d1 426782 
libboost-math1.38.0_1.38.0-6_amd64.deb
 543df40499195e6c15560cc1c14a8a0e26aabe01 2103204 
libboost-math1.38-dev_1.38.0-6_amd64.deb
 b86b4ccd17260d13c0fd1d5b9d432b4bd5736d4f 105002 
libboost-mpi1.38.0_1.38.0-6_amd64.deb
 242eb2ad53debe0cd934ed45cae4bb00bbe04961 634498 

Accepted nosql 4.0.14-2 (source amd64)

2009-05-03 Thread David Frey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 17:51:25 +0200
Source: nosql
Binary: nosql
Architecture: source amd64
Version: 4.0.14-2
Distribution: unstable
Urgency: low
Maintainer: David Frey df...@debian.org
Changed-By: David Frey da...@eos.eos.lugs.ch
Description: 
 nosql  - a Relational Database Management System for Unix
Changes: 
 nosql (4.0.14-2) unstable; urgency=low
 .
   * update to standard version 3.8.1.0
   * change permissions of debian/substvars
   * remove preinst, postrm (warning from lintian)
   * add dependency to libc (warning from lintian)
   * add .CW instead of .C in manpage (warning from lintian)
   * updated manual page
   * Add version to GPL license
   * orphaned package
   * increased ALLOCSIZ from 32 to 64 in order to make nosql runnable on amd64.
 This is an ugly hack. The proper solution is to revise the memory handling.
Checksums-Sha1: 
 7ebb699329e49ec3c4962d080cd2c9c83ca2d65a 934 nosql_4.0.14-2.dsc
 6566ec4140ee2a18d60062dd6e4bef2fee32cc40 7926 nosql_4.0.14-2.diff.gz
 e0775bb9820bedae53aa3698f9c3070317eb2f22 213694 nosql_4.0.14-2_amd64.deb
Checksums-Sha256: 
 d0ba6f9c3ef6a0f1edb5f8b53b8278418444ce50c06f15aee69b5b8829b5e32d 934 
nosql_4.0.14-2.dsc
 d142a1e53c2c98998dc1d7ae6ae288c359c8fa04414956067cab09c9ebe9b22e 7926 
nosql_4.0.14-2.diff.gz
 7f9e0022f52715db5970f36ef5c862fc0b2b8235123dbaa32ce2b786df6b9a6e 213694 
nosql_4.0.14-2_amd64.deb
Files: 
 c1e35879d69b34a2aca6786260af681c 934 utils optional nosql_4.0.14-2.dsc
 4eb0265594b1bba0e40a472e48473d0e 7926 utils optional nosql_4.0.14-2.diff.gz
 fc22ac9f9c3dcaf00d8f8863f2b5a1db 213694 utils optional nosql_4.0.14-2_amd64.deb

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

iEYEARECAAYFAkn95o0ACgkQKVyqlGzl+1RAoQCePBUs1u6xfW45GE9j4UtMXYcD
5l4An0eIZaSMzOQ157DmWuJ4fYfF2E1o
=ymRL
-END PGP SIGNATURE-


Accepted:
nosql_4.0.14-2.diff.gz
  to pool/main/n/nosql/nosql_4.0.14-2.diff.gz
nosql_4.0.14-2.dsc
  to pool/main/n/nosql/nosql_4.0.14-2.dsc
nosql_4.0.14-2_amd64.deb
  to pool/main/n/nosql/nosql_4.0.14-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 libopenraw 0.0.7-1 (source i386)

2009-05-03 Thread David Paleino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 20:03:57 +0200
Source: libopenraw
Binary: libopenraw-dev libopenraw1 libopenraw1-dbg libopenrawgnome1 
libopenrawgnome-dev libopenrawgnome1-dbg
Architecture: source i386
Version: 0.0.7-1
Distribution: unstable
Urgency: low
Maintainer: d.pale...@gmail.com
Changed-By: David Paleino d.pale...@gmail.com
Description: 
 libopenraw-dev - free implementation for RAW decoding - development files
 libopenraw1 - free implementation for RAW decoding
 libopenraw1-dbg - debugging symbols for libopenraw
 libopenrawgnome-dev - GNOME integration for libopenraw - development files
 libopenrawgnome1 - free implementation for RAW decoding (GNOME integration)
 libopenrawgnome1-dbg - debugging symbols for libopenrawgnome
Changes: 
 libopenraw (0.0.7-1) unstable; urgency=low
 .
   * New Upstream Version
   * debian/copyright updated
   * debian/control: moved *-dbg packages to Section: debug
   * debian/patches/01-fix_typos.patch added, fixes a typo detected by
 lintian
Checksums-Sha1: 
 01d78befa94ba5f62f0d38078fe7fb29d1886085 1403 libopenraw_0.0.7-1.dsc
 0a6a9c2ff54681b7cdbaf19c218f2b5158e131e1 557042 libopenraw_0.0.7.orig.tar.gz
 abb46d10889f8ebfb0c9468f9bab1c18fc96623b 4200 libopenraw_0.0.7-1.diff.gz
 ed4bbc5f658887934d2fffea3f892bdae066443b 213852 libopenraw-dev_0.0.7-1_i386.deb
 c0443a4292464509c7ec054709a0ca0046000e43 137002 libopenraw1_0.0.7-1_i386.deb
 4b948eeb5c1e009bf6f5ccb2deb68e2b0348c124 758080 
libopenraw1-dbg_0.0.7-1_i386.deb
 e557445c33ca2d53274be369871f865d4afc13c1 13782 
libopenrawgnome1_0.0.7-1_i386.deb
 3cec925be904ea9d65f6f33baf178722e30b911e 14116 
libopenrawgnome-dev_0.0.7-1_i386.deb
 95066bab27e85ec92780554b1eb492e683e2e777 16432 
libopenrawgnome1-dbg_0.0.7-1_i386.deb
Checksums-Sha256: 
 0c418d3711971508f5d352b2f1dbb91bc96bf284ae9c12a7093396c5a989a21d 1403 
libopenraw_0.0.7-1.dsc
 abb074146d8d8be0b191f2cbeb7caef8ec4433d591f8b8576e52af09a6173f52 557042 
libopenraw_0.0.7.orig.tar.gz
 2fb78c7866a85efa926d109434e05ee68fc30236cee146756f61a82f9c18e3e6 4200 
libopenraw_0.0.7-1.diff.gz
 8984a6aca32ec16555846e25d6e4d92982b57bf1961cc94bdd9d96b628f314e7 213852 
libopenraw-dev_0.0.7-1_i386.deb
 aec05404eea1b731a98b23ae3890a67a1e07b21ae38894dd87503aa118470ad5 137002 
libopenraw1_0.0.7-1_i386.deb
 81419a7086bcf0277a0fe88ca91c108e1f6f7e23e597b2ed7c541adc3ffb37c5 758080 
libopenraw1-dbg_0.0.7-1_i386.deb
 f1c2946fcc6deb47e36e98e67080e6e8fca46d394f6bcc86fc05ea8849c4d80b 13782 
libopenrawgnome1_0.0.7-1_i386.deb
 71920fcda8ea71d75716e1836e006b11c1ecf8c6c93a66ab95dba6cfaedad763 14116 
libopenrawgnome-dev_0.0.7-1_i386.deb
 abc8f5c7641d1634cede82a67ddac5c3c0d7b69a28781797b164ea77b102872f 16432 
libopenrawgnome1-dbg_0.0.7-1_i386.deb
Files: 
 4198911d5c240ca61508abe33b278c34 1403 libs optional libopenraw_0.0.7-1.dsc
 fe3a27b120df07b1184132624cf4bcd1 557042 libs optional 
libopenraw_0.0.7.orig.tar.gz
 a9eba836b77da4a2f0531a119098137b 4200 libs optional libopenraw_0.0.7-1.diff.gz
 d0cf8d45a5143f9db645179743e0ceae 213852 libdevel optional 
libopenraw-dev_0.0.7-1_i386.deb
 861bf87b3939e90e31067185fe519864 137002 libs optional 
libopenraw1_0.0.7-1_i386.deb
 934f256bc74fa4c58b2f1437597deb2f 758080 debug extra 
libopenraw1-dbg_0.0.7-1_i386.deb
 57250df1d9250a2fd62477972995eaac 13782 libs optional 
libopenrawgnome1_0.0.7-1_i386.deb
 0f616001cdbd2a18ec6077df833350fe 14116 libdevel optional 
libopenrawgnome-dev_0.0.7-1_i386.deb
 6c568c949411dda93afeec140c9b7f19 16432 debug extra 
libopenrawgnome1-dbg_0.0.7-1_i386.deb

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

iEYEARECAAYFAkn93sEACgkQ5qqQFxOSsXRwQQCaA8CzqSUOn92D3HAfXBxWHv4w
wKkAnRgiW1BH1+l5MsNM3OKXg7YkKWXR
=JbOb
-END PGP SIGNATURE-


Accepted:
libopenraw-dev_0.0.7-1_i386.deb
  to pool/main/libo/libopenraw/libopenraw-dev_0.0.7-1_i386.deb
libopenraw1-dbg_0.0.7-1_i386.deb
  to pool/main/libo/libopenraw/libopenraw1-dbg_0.0.7-1_i386.deb
libopenraw1_0.0.7-1_i386.deb
  to pool/main/libo/libopenraw/libopenraw1_0.0.7-1_i386.deb
libopenraw_0.0.7-1.diff.gz
  to pool/main/libo/libopenraw/libopenraw_0.0.7-1.diff.gz
libopenraw_0.0.7-1.dsc
  to pool/main/libo/libopenraw/libopenraw_0.0.7-1.dsc
libopenraw_0.0.7.orig.tar.gz
  to pool/main/libo/libopenraw/libopenraw_0.0.7.orig.tar.gz
libopenrawgnome-dev_0.0.7-1_i386.deb
  to pool/main/libo/libopenraw/libopenrawgnome-dev_0.0.7-1_i386.deb
libopenrawgnome1-dbg_0.0.7-1_i386.deb
  to pool/main/libo/libopenraw/libopenrawgnome1-dbg_0.0.7-1_i386.deb
libopenrawgnome1_0.0.7-1_i386.deb
  to pool/main/libo/libopenraw/libopenrawgnome1_0.0.7-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 ffmpeg-debian 4:0.5+svn20090420-1 (source i386 all)

2009-05-03 Thread Reinhard Tartler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 02 May 2009 09:09:54 +0200
Source: ffmpeg-debian
Binary: ffmpeg ffmpeg-dbg ffmpeg-doc libavutil49 libavcodec52 libavdevice52 
libavformat52 libavfilter0 libpostproc51 libswscale0 libavutil-dev 
libavcodec-dev libavdevice-dev libavformat-dev libavfilter-dev libpostproc-dev 
libswscale-dev
Architecture: source i386 all
Version: 4:0.5+svn20090420-1
Distribution: unstable
Urgency: low
Maintainer: Debian multimedia packages maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Reinhard Tartler siret...@tauware.de
Description: 
 ffmpeg - multimedia player, server and encoder
 ffmpeg-dbg - Debug symbols for ffmpeg related packages
 ffmpeg-doc - documentation of the ffmpeg API
 libavcodec-dev - development files for libavcodec
 libavcodec52 - ffmpeg codec library
 libavdevice-dev - development files for libavdevice
 libavdevice52 - ffmpeg device handling library
 libavfilter-dev - development files for libavfilter
 libavfilter0 - ffmpeg video filtering library
 libavformat-dev - development files for libavformat
 libavformat52 - ffmpeg file format library
 libavutil-dev - development files for libavutil
 libavutil49 - ffmpeg utility library
 libpostproc-dev - development files for libpostproc
 libpostproc51 - ffmpeg video postprocessing library
 libswscale-dev - development files for libswscale
 libswscale0 - ffmpeg video scaling library
Closes: 519025 525348 526007
Changes: 
 ffmpeg-debian (4:0.5+svn20090420-1) unstable; urgency=low
 .
   [ Fabian Greffrath ]
   * Merge the contents of patents.txt into README.Debian and change some
 paragraphs to (hopefully) add some more clarity on the removed encoders
 and the package naming scheme. Based on suggestions by Xavier Douville
 deb...@douville.org, thank you very much for the review. (Closes: 
#519025)
   * Reorder some confflags to account for GPL licensed libraries.
   * Remove patents.txt
   * Explicitely mention that no decoders are disabled in our packages.
 .
   [ Loïc Minier ]
   * Disable more autodetecter ARM arch features
   * Add neon and vfp flavors to armel disabled for now
   * vfp CFLAGS: add -mfpu=vfp -mfloat-abi=softfp
 .
   [ Reinhard Tartler ]
   * New Upstream Version (svn revision 18630)
   * bump epoch as 0.5 was released. Future version will use '+' to indicate
 that the package is based on a release branch and '~' to indicate that
 the package is based on the 'trunk' branch.
   * update from the upstream release branch to generate a new upstream
 tarball.
   * add a git-buildpackage config file at debian/gbp.conf
   * beautify identification string
   * debian/rules: bump epoch to '4'
   * update section names in control file
   * update upstream svn server url
   * fixup get-orig-source rules in debian/rules
   * create right filenames for the orig.tar.gz files
   * update README.upstream-upgrate for new versioning scheme
   * remove debian/005_release_branch_changes.diff
   * remove reference to 020_visibility_patch
   * install the upstream license file and release notes
   * allow -dev packages be installed with the unstripped variants
 Closes: #526007, LP: #312898
   * be more careful with svn:externals in debian/get-orig-source.sh.
 (Closes: #525348)
Checksums-Sha1: 
 3e04cc422a84b3481510d81e7c056fccf5bfbdff 2338 
ffmpeg-debian_0.5+svn20090420-1.dsc
 13f141fa0954207a2284a951345100c740ca4bb6 3265268 
ffmpeg-debian_0.5+svn20090420.orig.tar.gz
 7fcf9462d963d41a99cf8755d4da3e44c7a4679c 29282 
ffmpeg-debian_0.5+svn20090420-1.diff.gz
 a4d7abde9da228860bb8f143418e59eef4fb53ac 231602 
ffmpeg_0.5+svn20090420-1_i386.deb
 e68fb2c033296d16a775273d083160fa159deaa6 9878828 
ffmpeg-dbg_0.5+svn20090420-1_i386.deb
 f93c1aec1d72758b124f0f67fc58143406200146 13943938 
ffmpeg-doc_0.5+svn20090420-1_all.deb
 cca12d3459668d1335f6b32de57e8ecce4d49b24 88876 
libavutil49_0.5+svn20090420-1_i386.deb
 82f2d3c60080a23d255b1cf53ba729319fa23d93 3855452 
libavcodec52_0.5+svn20090420-1_i386.deb
 2cdff7c99ec7c944e37aaa217eab5dfffe82bbd0 68486 
libavdevice52_0.5+svn20090420-1_i386.deb
 a742cd1b6c39b2306de3f70f7525afefac0ceca1 699876 
libavformat52_0.5+svn20090420-1_i386.deb
 1cf2310684cdaa1cdc240e231a02e1cf7ca368aa 43804 
libavfilter0_0.5+svn20090420-1_i386.deb
 04cf6952e49bfa5c1b5d445029a8e498b0b01636 66902 
libpostproc51_0.5+svn20090420-1_i386.deb
 c6934e754985688fb8dde4487c001322d281359d 170440 
libswscale0_0.5+svn20090420-1_i386.deb
 dfd5210064feb2922f3cc72c7457e8926dfffe5c 76262 
libavutil-dev_0.5+svn20090420-1_i386.deb
 b7fa849f07e819a8566775db65b307c8a02b858a 2163864 
libavcodec-dev_0.5+svn20090420-1_i386.deb
 67267a29f69887fd47418cd20a8a24a065ee7983 52882 
libavdevice-dev_0.5+svn20090420-1_i386.deb
 118471abe213951680a39d3510fe598231ad805d 442962 
libavformat-dev_0.5+svn20090420-1_i386.deb
 16801e316897e976ae631f38d1ee22d53fcd794e 49534 
libavfilter-dev_0.5+svn20090420-1_i386.deb
 da004f6a70aa9effcd5307d9db6430c21ca07a1b 52054 

Accepted ht 2.0.17-1 (source i386)

2009-05-03 Thread Alexander Reichle-Schmehl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 19:19:53 +0200
Source: ht
Binary: ht
Architecture: source i386
Version: 2.0.17-1
Distribution: unstable
Urgency: low
Maintainer: Alexander Reichle-Schmehl toli...@debian.org
Changed-By: Alexander Reichle-Schmehl toli...@debian.org
Description: 
 ht - Viewer/editor/analyser (mostly) for executables
Changes: 
 ht (2.0.17-1) unstable; urgency=low
 .
   * New upstream release
   * Fixing typo in package description reported by Bernd Zeimetz.  Thanks!
   * Pumping standards version to 3.8.1
 - no changes needed
Checksums-Sha1: 
 a2432594c265db6cf1fc7c658b91fcc7283b2036 1159 ht_2.0.17-1.dsc
 a0756ffd50dd620beec426c91960f2f1a79a758e 1066000 ht_2.0.17.orig.tar.gz
 d527b33136a6fe0aa1109ef506934daa8885b292 6405 ht_2.0.17-1.diff.gz
 d4953d16ffc682b7308ea3cd9ca89307f7d090e6 599524 ht_2.0.17-1_i386.deb
Checksums-Sha256: 
 619d39a7f2fd83e4a95495be11bd296ff1441dd1bb0192b63e9313f0eda0a357 1159 
ht_2.0.17-1.dsc
 6c7e774229a17c51b895ce9d5934add0c6a34fbd16acba40879d0bbfb4088216 1066000 
ht_2.0.17.orig.tar.gz
 e164061e5d41c3f4e7bf0ecd246781b828fa78a8baedfa94f0b7927f06740326 6405 
ht_2.0.17-1.diff.gz
 518a7cef4eb5f22c632227215a26b76a25f617541911c49967c1b77b0158d86b 599524 
ht_2.0.17-1_i386.deb
Files: 
 727159586148c9d05209272c229c9199 1159 devel optional ht_2.0.17-1.dsc
 43ccd2d6ac881593e5fecf8ba461a78e 1066000 devel optional ht_2.0.17.orig.tar.gz
 e567f72dbcddba5012f9b6854150d396 6405 devel optional ht_2.0.17-1.diff.gz
 4fff3b88414334765e56b8ef12cec0ab 599524 devel optional ht_2.0.17-1_i386.deb

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

iEYEARECAAYFAkn97dQACgkQBxd04ADYzRbp6gCeMSHw3JKJruxsAfxsl28r9TLR
K0sAoI+J5qXPV0SB1F6HXsvwWX4ccmcV
=OQSi
-END PGP SIGNATURE-


Accepted:
ht_2.0.17-1.diff.gz
  to pool/main/h/ht/ht_2.0.17-1.diff.gz
ht_2.0.17-1.dsc
  to pool/main/h/ht/ht_2.0.17-1.dsc
ht_2.0.17-1_i386.deb
  to pool/main/h/ht/ht_2.0.17-1_i386.deb
ht_2.0.17.orig.tar.gz
  to pool/main/h/ht/ht_2.0.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 gnumed-server 0v10.4-1 (source all)

2009-05-03 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 21:15:41 +0200
Source: gnumed-server
Binary: gnumed-server
Architecture: source all
Version: 0v10.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian-Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description: 
 gnumed-server - medical practice management - server
Closes: 526817
Changes: 
 gnumed-server (0v10.4-1) unstable; urgency=low
 .
   * New upstream version
   * Make sure that a file __init__.py is installed into
 /var/lib/gnumed/server/
 Closes: #526817
   * NEWS.Debian explains how to proceed in case of problems
 with the previous minor version.
Checksums-Sha1: 
 bd207aad1691396f1a94f35259b9073404d2fbcc 1333 gnumed-server_0v10.4-1.dsc
 7c507fbb41e01c8cd7c41bb232558152b32b5142 590616 
gnumed-server_0v10.4.orig.tar.gz
 39c839def264f8dbff60f28309bc0dee6a520d6d 7902 gnumed-server_0v10.4-1.diff.gz
 455d60b2b4ed69f21ae18f32ba507320e7239c4d 589070 gnumed-server_0v10.4-1_all.deb
Checksums-Sha256: 
 9be355976989e5ba07523eda8c32da8767fdadb6ae40ae077b18b96e355c47a8 1333 
gnumed-server_0v10.4-1.dsc
 fe76c34e1803359c3fa504ff98992a3aece6061dbce28f94eba11b0c1112dd90 590616 
gnumed-server_0v10.4.orig.tar.gz
 796c6d7a02e79ab6589963679e32bcb4aef22ef5b1b53b63f873a462bf3ae53c 7902 
gnumed-server_0v10.4-1.diff.gz
 26be20cd57a5d7c9afd73e62ca5683be2197b7ca2285715d62d62a30d70c5d69 589070 
gnumed-server_0v10.4-1_all.deb
Files: 
 77a2f5478c1e5ec5abb28266a67d6740 1333 misc optional gnumed-server_0v10.4-1.dsc
 8d9103d41da2eaa36009bb385367c855 590616 misc optional 
gnumed-server_0v10.4.orig.tar.gz
 bc0e3432c8cc2d16fa4d7b7c41c1958d 7902 misc optional 
gnumed-server_0v10.4-1.diff.gz
 8564cc02864e75d8ee4504e2600cda88 589070 misc optional 
gnumed-server_0v10.4-1_all.deb

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

iD8DBQFJ/fTLYDBbMcCf01oRAqWGAJ9Em76iQhSmhLN4WX3Twg2Fh7RRHgCdGqef
h6MOCiTP6GQjlLP0ws+y3wQ=
=RB+u
-END PGP SIGNATURE-


Accepted:
gnumed-server_0v10.4-1.diff.gz
  to pool/main/g/gnumed-server/gnumed-server_0v10.4-1.diff.gz
gnumed-server_0v10.4-1.dsc
  to pool/main/g/gnumed-server/gnumed-server_0v10.4-1.dsc
gnumed-server_0v10.4-1_all.deb
  to pool/main/g/gnumed-server/gnumed-server_0v10.4-1_all.deb
gnumed-server_0v10.4.orig.tar.gz
  to pool/main/g/gnumed-server/gnumed-server_0v10.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 apticron 1.1.31 (source all)

2009-05-03 Thread Tiago Bortoletto Vaz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 17:14:49 -0300
Source: apticron
Binary: apticron
Architecture: source all
Version: 1.1.31
Distribution: unstable
Urgency: low
Maintainer: Tiago Bortoletto Vaz ti...@debian-ba.org
Changed-By: Tiago Bortoletto Vaz ti...@debian-ba.org
Description: 
 apticron   - simple tool to mail about pending package updates
Closes: 522961 526773
Changes: 
 apticron (1.1.31) unstable; urgency=low
 .
   * debian/control:
 + heirloom-mailx placed into Conflicts section due to its incompatibility
   with some standard mailx parameters.
   * Using mailx command back in apticron instead of bsd-mailx in order to
 support mailutils. Thanks to Alexander Galanin. (Closes: #526773)
   * Return 'true' when calling date command to avoid to break apticron when it
 touches an invalid date (ex. during transitions to daylight saving). Thanks
 to Simon Waters. (Closes: #522961)
Checksums-Sha1: 
 015e17f6e0b9c10d918ab879d3d540b8a2dde3b6 973 apticron_1.1.31.dsc
 404ea682d58835f40dbaff91f0ca13041952f450 16151 apticron_1.1.31.tar.gz
 31a329a5bf1a547a944402ea414e10a91eaec867 15404 apticron_1.1.31_all.deb
Checksums-Sha256: 
 7946d6f5c68d01a2b6cc79427bb22be200866a7c45aa48aadfb1166b4f285a47 973 
apticron_1.1.31.dsc
 d1670e79751639f3222783939bdd01e989bf4d7d4daa451b2c270dff471eaf71 16151 
apticron_1.1.31.tar.gz
 d1339c648e25fc8c5fc17bd35b315625a9b4874412465b417c90758565e5683a 15404 
apticron_1.1.31_all.deb
Files: 
 a930b3189273018bd6b392f02a951da6 973 admin extra apticron_1.1.31.dsc
 c33ead318194e5df7031e92f7fbdb279 16151 admin extra apticron_1.1.31.tar.gz
 9fdc97c9298f6c8f31f5b6c88aa32559 15404 admin extra apticron_1.1.31_all.deb

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

iEYEARECAAYFAkn+CQwACgkQaQ1iFKUE/sqZZwCdFfGYehflLcbR1fT0vuJugiI5
6YMAn0x9Wt1roLd5/eNv9ik4wJqseX3t
=JMKy
-END PGP SIGNATURE-


Accepted:
apticron_1.1.31.dsc
  to pool/main/a/apticron/apticron_1.1.31.dsc
apticron_1.1.31.tar.gz
  to pool/main/a/apticron/apticron_1.1.31.tar.gz
apticron_1.1.31_all.deb
  to pool/main/a/apticron/apticron_1.1.31_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 apt-xapian-index 0.20 (source all)

2009-05-03 Thread Enrico Zini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 21:07:16 +0100
Source: apt-xapian-index
Binary: apt-xapian-index
Architecture: source all
Version: 0.20
Distribution: unstable
Urgency: low
Maintainer: Enrico Zini enr...@debian.org
Changed-By: Enrico Zini enr...@debian.org
Description: 
 apt-xapian-index - maintenance tools for a Xapian index of Debian packages
Closes: 526587
Changes: 
 apt-xapian-index (0.20) unstable; urgency=low
 .
   * Ported to use the new method names from python-debian. It seems to have
 become trendy to rename methods in libraries. I dread to think what will
 happen when it will become trendy to migrate to python 3. Closes: #526587.
   * Bumped Standards-Version, no changes needed
   * Depends on ${misc:Depends}
Checksums-Sha1: 
 bba303fcacb6610c46ebd3b3112aaa4ef8bcfff2 1559 apt-xapian-index_0.20.dsc
 0e457d4f86a4ab5ae9473c3c947dd06474fea8d3 24008 apt-xapian-index_0.20.tar.gz
 59f29a2c7cb367dd8c3c9f0464f8fac886239994 33888 apt-xapian-index_0.20_all.deb
Checksums-Sha256: 
 fb94addc5f9ea1572b7dc3da42323c5d5d430f7745ad151116b06bbb53620fef 1559 
apt-xapian-index_0.20.dsc
 1a59f1822124a1a14cb374cabde73c14b7d8526235cf59ef7c32ee1e352b7a3e 24008 
apt-xapian-index_0.20.tar.gz
 c8aa3725f8694aedd8c9d3353b13ec59fb8c125f0d1a41bec5da87a98ebae9cf 33888 
apt-xapian-index_0.20_all.deb
Files: 
 5622e476b05d5c8f3f76951ed49df660 1559 admin optional apt-xapian-index_0.20.dsc
 cf883404a30baaca24ce3bd719131cfe 24008 admin optional 
apt-xapian-index_0.20.tar.gz
 e2dea31d2424b2d63c5070827e93d357 33888 admin optional 
apt-xapian-index_0.20_all.deb

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

iQIcBAEBAgAGBQJJ/fn6AAoJEB5qw/OH8O2sbQ0P/1uyLkvajz/BKoo9gIW87sUN
/ycwk5JuxIUeAeYiInfVX6aXYnrq6ZTPtewnAaPgsUu7Nordp6oSzVJPgtUX3fNw
W4jnfvUy12B4Y5BoKNqsa4373Pdga8rS3Evu2x5SbeqKsQpV6g8WL5bWgz3YglS5
bz3SysQVKhq/vsqpghF9qNWZ/iRxfDjOq3RgValB/v85L6ydC/+dN+r6Yx0pZYNz
w9a/iTqpPuRq8AaDumV0nX+HPMHTa3xHENh3IvN+EC/g7zsulFbetFTIzJ8au/Wt
4Yk7xTIFQu+HtO9ZnFJk/0/QB1+wf6aS4VYLMwzSfzp5wc3SsWeSPkBre1oFxJMG
mNaRmFXw7CceY1dISAE7shDyeO5jycwhF2/I2fddZkV/pkRyC4DlhIprCgQo++1O
M8/aay8Zf633F2inYN5nUnXSN4bKxa7FmCaTyuQFAGF6SpvvqGjhVa6XEVNLC5a1
Yrr+ZNHuQc5CZ7a6SiT2dyuMMzXCW9gPuP/9kLdj5iQGY2NQWV/iPVqMPer8TOS1
7ws/Gcmw+lcAOFUFs58QM/xCfwR1PWggtFQpsP29Wv1H67yU84T95o25lNfLxT5M
HRfJmaFrDOxBvYn08SN7lK1eWQ9Lyw1viuShazjCl4reZlhNlvVOf1RdStgD4ppj
RDueJgtDI7LGxSBhur/F
=dCUP
-END PGP SIGNATURE-


Accepted:
apt-xapian-index_0.20.dsc
  to pool/main/a/apt-xapian-index/apt-xapian-index_0.20.dsc
apt-xapian-index_0.20.tar.gz
  to pool/main/a/apt-xapian-index/apt-xapian-index_0.20.tar.gz
apt-xapian-index_0.20_all.deb
  to pool/main/a/apt-xapian-index/apt-xapian-index_0.20_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 disk-manager 1.0.1-3 (source all)

2009-05-03 Thread David Paleino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 20:05:20 +0200
Source: disk-manager
Binary: disk-manager
Architecture: source all
Version: 1.0.1-3
Distribution: unstable
Urgency: low
Maintainer: David Paleino d.pale...@gmail.com
Changed-By: David Paleino d.pale...@gmail.com
Description: 
 disk-manager - simple graphical filesystem configurator
Closes: 519439
Changes: 
 disk-manager (1.0.1-3) unstable; urgency=low
 .
   * debian/control:
 - packaging moved to Git, fixing Vcs-* fields
 - debhelper dependency bumped to = 7
 - Standards-Version bumped to 3.8.1
 - added ${misc:Depends} to disk-manager
   * debian/rules switched to dh7
   * debian/compat bumped to 7
   * debian/dirs added
   * debian/install added
   * debian/patches/:
 - 01-fix_paths.patch, 02-fix_desktop_files.patch,
   03-fix_translation.patch: description added
 - 04-fix_POTFILES.skip.patch added
 - 05-fix_entries_sorting.patch added (Closes: #519439)
Checksums-Sha1: 
 3df19c3e1ef450d2be5b7c0c01bd17f4cfb9520e 1924 disk-manager_1.0.1-3.dsc
 1676c20bb3f87e7df06b6ed11f02e7f355c5d57e 4174 disk-manager_1.0.1-3.diff.gz
 ae9c9b64e6f766a8af315ab2911aa684fbc74d01 126058 disk-manager_1.0.1-3_all.deb
Checksums-Sha256: 
 f413ad726404de5357a165a8f90c0b796ede0c6aaa1a9be4cfad42175d3855e9 1924 
disk-manager_1.0.1-3.dsc
 c180eb566719060bacb139d80ccf3d20e268876cf0e9d6f11c1c67f0867ea341 4174 
disk-manager_1.0.1-3.diff.gz
 b3b0cfcb9a4720a3a84b6c5244ce3193470380b40fb9eb0def6b2bc79df48e1a 126058 
disk-manager_1.0.1-3_all.deb
Files: 
 46c3bb6d7b019bdeba5ce5efea7bb5a1 1924 admin optional disk-manager_1.0.1-3.dsc
 f26776c344163c4c207957f483f40b28 4174 admin optional 
disk-manager_1.0.1-3.diff.gz
 e96931a94bbd28c66f83d18695df7219 126058 admin optional 
disk-manager_1.0.1-3_all.deb

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

iQIcBAEBAgAGBQJJ/gKNAAoJEB5qw/OH8O2s+zIP/i2twSHhoAJ+00QgjPKXSqTR
wEyGzC1RlyNmjkd19MC2oEv+Um+puvAna6YdJ0H3JAydp8OLL5ZVFL0skWwZRs+q
CtJrekVODc4wUyapZSJbTph3w+jJujV7ITFxhE08A6wi+XPKQiegrAIi6W7SePLv
TEnCAxvrYSx66Ja07AGx4w+IPUCU9XLvdLl9NnmQEcHZmpMjWhEm4PUiOKlNVYDV
Su/1t2IuGZIcFTttXzuqpL/U7N5yoRu8f9txGmCdGDB8rfEg1WoKTJqRN4urnSUv
cD5uhKf4x8+vE95ZIs5Zshcqyg33uXYUUZw6L0jvkd+G+PQNI7yzVhxhMIdPVVky
jQ2vVAd4irgvMmEVMrHUxsa0zTsB7Y7kWUSsjcJGv2DqDu0dUUdzcdmDJ/p6a4S+
OjT/8bUXwdM3Xc/nqFLMtcZOu/6LJJoyQ4nJH7iU0/CwsLiA8cX7fPp1wVWURv9N
4wKwgj1fnLp9JqmJDS0FUklCvgdssoTwlovJE5EHL6zu4XxjUql8QwKkORCmQJL0
k8QwQnbCpk2qNsUlmuIGCPrccEOG6RsIlZHT+IbDwPbdvqUMilPF39OBidP3XzWG
xmovrNRdrQJ+M7H3Rqazg4bL0RogUX/OTvEukC6vsx4AAua+DiI8BQjzKTdP9PSu
p1LYAQHkWBrrwBxnBPwp
=zV0y
-END PGP SIGNATURE-


Accepted:
disk-manager_1.0.1-3.diff.gz
  to pool/main/d/disk-manager/disk-manager_1.0.1-3.diff.gz
disk-manager_1.0.1-3.dsc
  to pool/main/d/disk-manager/disk-manager_1.0.1-3.dsc
disk-manager_1.0.1-3_all.deb
  to pool/main/d/disk-manager/disk-manager_1.0.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 gvidm 0.8-9 (source i386)

2009-05-03 Thread Barry deFreese
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 14:58:21 -0400
Source: gvidm
Binary: gvidm
Architecture: source i386
Version: 0.8-9
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Barry deFreese bdefre...@debian.org
Description: 
 gvidm  - quickly and easily change video resolutions in X
Closes: 437140
Changes: 
 gvidm (0.8-9) unstable; urgency=low
 .
   * QA upload.
   * Update homepage and watch file to new URL.
   * Remove build-dep on obsolete xlibs-dev.
   * 02_nostrip.diff - Don't strip. (Closes: #437140).
 + Remove -s from install in Makefile.in.
   * Bump debhelper build-dep and compat to 5.
   * Bump Standards Version to 3.8.1.
 + Menu policy transition.
Checksums-Sha1: 
 6cde8feb71c6eaf951a2c020e92d6d498ef0ac7b 1232 gvidm_0.8-9.dsc
 503f469405b02a3f68ddf154191e9fdd0bb89e03 3301 gvidm_0.8-9.diff.gz
 e38cd7bc8c123d7331103aae902372c3772d 24756 gvidm_0.8-9_i386.deb
Checksums-Sha256: 
 d962a8001d98f87758c4bde2db5b4799c7279f16583ceb4e197f7ec2079ef52a 1232 
gvidm_0.8-9.dsc
 c907073e33fd746cd0f3cf73a7bdd95b3ad7f440909db06c45f3335a1a1fc96f 3301 
gvidm_0.8-9.diff.gz
 76dae1912701b6a2a79480f9fbb509dc1c72c377ac3617746b0ac5eb32fcd1f1 24756 
gvidm_0.8-9_i386.deb
Files: 
 27d66c7ae257b1f91745a92aac140881 1232 x11 optional gvidm_0.8-9.dsc
 895937a0a8c264eac2db6f1ca8c55cd7 3301 x11 optional gvidm_0.8-9.diff.gz
 7fb9f36bdd054a629bde3f99787d17e3 24756 x11 optional gvidm_0.8-9_i386.deb

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

iEYEARECAAYFAkn9+jkACgkQ5ItltUs5T35HkQCgwpsM3RT0g3cx6pAWjaYzwo1D
sCoAoLL1QMk4FkHG02GQ9yVWqKpmZy1j
=1mqq
-END PGP SIGNATURE-


Accepted:
gvidm_0.8-9.diff.gz
  to pool/main/g/gvidm/gvidm_0.8-9.diff.gz
gvidm_0.8-9.dsc
  to pool/main/g/gvidm/gvidm_0.8-9.dsc
gvidm_0.8-9_i386.deb
  to pool/main/g/gvidm/gvidm_0.8-9_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 xf86-video-omapfb 0.1.1-2 (source armel)

2009-05-03 Thread Riku Voipio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 04 Apr 2009 22:45:09 +0300
Source: xf86-video-omapfb
Binary: xserver-xorg-video-omapfb xserver-xorg-video-omap3
Architecture: source armel
Version: 0.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Riku Voipio riku.voi...@iki.fi
Changed-By: Riku Voipio riku.voi...@iki.fi
Description: 
 xserver-xorg-video-omap3 - X.Org X server -- Omapfb display driver (NEON 
optimized)
 xserver-xorg-video-omapfb - X.Org X server -- Omapfb display driver
Changes: 
 xf86-video-omapfb (0.1.1-2) unstable; urgency=low
 .
   * remove quilt and xsfbs.mk
   * improve descriptions
   * fix provides for omap3
   * upload to unstable
Checksums-Sha1: 
 d4290c572618bfb458e71f035a8a66463827ee5e 1174 xf86-video-omapfb_0.1.1-2.dsc
 2d748d22d22db9233803d58b416d5049ac1bfa4c 24908 xf86-video-omapfb_0.1.1-2.tar.gz
 61f7318967602981ef300b20ba303c44e4562baa 16318 
xserver-xorg-video-omapfb_0.1.1-2_armel.deb
 ae576969dd93a3f8580120d417dcc1a8029ab7b7 14738 
xserver-xorg-video-omap3_0.1.1-2_armel.deb
Checksums-Sha256: 
 0f950f095e0cf8d1e96b34b601f287425c8b1804e6a6f9a15694241e4413d67f 1174 
xf86-video-omapfb_0.1.1-2.dsc
 0323965a740c895a58e850b2c91ce0ac6ffeea33578a4ceb0d2b8b54d64d5a2e 24908 
xf86-video-omapfb_0.1.1-2.tar.gz
 80666c4e3a9545441971c2c1490fee4bd19e358fa85471003bc7f039c1707339 16318 
xserver-xorg-video-omapfb_0.1.1-2_armel.deb
 c156ac5f2c49ca6b24e18a2132d193b0267c512ceae95441c542a89b79517d85 14738 
xserver-xorg-video-omap3_0.1.1-2_armel.deb
Files: 
 8a42741ff8c27d94dfd569f21e32c0b8 1174 x11 optional 
xf86-video-omapfb_0.1.1-2.dsc
 0c5abc710db50ec67912bb64a760ae07 24908 x11 optional 
xf86-video-omapfb_0.1.1-2.tar.gz
 3cd6684f4d7ae1e41b42962c65a1a343 16318 x11 optional 
xserver-xorg-video-omapfb_0.1.1-2_armel.deb
 5476fdab26b3bcea110199c3c45053a5 14738 x11 optional 
xserver-xorg-video-omap3_0.1.1-2_armel.deb

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

iD8DBQFJ/f94ibPvMsrqrwMRAlcRAJ9JA5+5sHiFLa6lMlk6lmy/ujbQsACg2MuA
lr/yHyjFTwVFpNQkw6wSEU4=
=+hgh
-END PGP SIGNATURE-


Accepted:
xf86-video-omapfb_0.1.1-2.dsc
  to pool/main/x/xf86-video-omapfb/xf86-video-omapfb_0.1.1-2.dsc
xf86-video-omapfb_0.1.1-2.tar.gz
  to pool/main/x/xf86-video-omapfb/xf86-video-omapfb_0.1.1-2.tar.gz
xserver-xorg-video-omap3_0.1.1-2_armel.deb
  to pool/main/x/xf86-video-omapfb/xserver-xorg-video-omap3_0.1.1-2_armel.deb
xserver-xorg-video-omapfb_0.1.1-2_armel.deb
  to pool/main/x/xf86-video-omapfb/xserver-xorg-video-omapfb_0.1.1-2_armel.deb


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



Accepted vdr-plugin-skinenigmang 0.1.0-1 (source amd64)

2009-05-03 Thread Tobias Grimm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 22:37:14 +0200
Source: vdr-plugin-skinenigmang
Binary: vdr-plugin-skinenigmang
Architecture: source amd64
Version: 0.1.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian VDR Team pkg-vdr-dvb-de...@lists.alioth.debian.org
Changed-By: Tobias Grimm et...@debian.org
Description: 
 vdr-plugin-skinenigmang - Skin plugin for VDR
Closes: 524592
Changes: 
 vdr-plugin-skinenigmang (0.1.0-1) unstable; urgency=low
 .
   * New upstream release
   * Updated debian/copyright
   * Build-depend on libmagick++-dev instead of libmagick++9-dev (Closes: 
524592)
 .
 vdr-plugin-skinenigmang (0.0.6-5) unstable; urgency=low
 .
   * Release for vdrdevel 1.7.6
   * Added ${misc:Depends}
   * Bumped standards version to 3.8.1
   * Updated debian/copyright to our new format
   * Changed section to video
Checksums-Sha1: 
 90c8b7cb31bfc634065747ecb58ef1b9b3fbaf43 1470 
vdr-plugin-skinenigmang_0.1.0-1.dsc
 5f19bb7467d42e96811ab8edeb5ac48ba84bbf08 86403 
vdr-plugin-skinenigmang_0.1.0.orig.tar.gz
 34f7768b35724475a57c0d0e6645c6ec94e54bd7 2529 
vdr-plugin-skinenigmang_0.1.0-1.diff.gz
 fbed16ddb0e4c399b27c8db81200794d88603d54 135698 
vdr-plugin-skinenigmang_0.1.0-1_amd64.deb
Checksums-Sha256: 
 0e92cf268e780168d03a7155df828ad56d2e24581177ac30191f567449605727 1470 
vdr-plugin-skinenigmang_0.1.0-1.dsc
 b60ea0330476dc0ce27e22a63e333278e368e1040e4f618517191909d4875d6d 86403 
vdr-plugin-skinenigmang_0.1.0.orig.tar.gz
 0ab571b31f920637104f9d55363b4f42a4364a10c288f3eb7ba31b5cfd0db16a 2529 
vdr-plugin-skinenigmang_0.1.0-1.diff.gz
 2696348f8e25866ea253a50eaef7c5e234f9b468b77abdf89dfb96f9aa161eb0 135698 
vdr-plugin-skinenigmang_0.1.0-1_amd64.deb
Files: 
 bb21f9fe0e92f8fe897a4763ac156aef 1470 video extra 
vdr-plugin-skinenigmang_0.1.0-1.dsc
 05bd4f7c45e049dd43121f7b1387ab5c 86403 video extra 
vdr-plugin-skinenigmang_0.1.0.orig.tar.gz
 414176e857bdf4ce0a2959bcb9d5e623 2529 video extra 
vdr-plugin-skinenigmang_0.1.0-1.diff.gz
 c0f40873c1eabd6a48333489b4c35b59 135698 video extra 
vdr-plugin-skinenigmang_0.1.0-1_amd64.deb

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

iEYEARECAAYFAkn+AwIACgkQ9xgNJq7apkJXcACfWE8VRxUYJqhBvqS9KvnI6yNi
glYAn3ES1QXXZILyExSmD/k4TjbTJtM2
=ijXw
-END PGP SIGNATURE-


Accepted:
vdr-plugin-skinenigmang_0.1.0-1.diff.gz
  to pool/main/v/vdr-plugin-skinenigmang/vdr-plugin-skinenigmang_0.1.0-1.diff.gz
vdr-plugin-skinenigmang_0.1.0-1.dsc
  to pool/main/v/vdr-plugin-skinenigmang/vdr-plugin-skinenigmang_0.1.0-1.dsc
vdr-plugin-skinenigmang_0.1.0-1_amd64.deb
  to 
pool/main/v/vdr-plugin-skinenigmang/vdr-plugin-skinenigmang_0.1.0-1_amd64.deb
vdr-plugin-skinenigmang_0.1.0.orig.tar.gz
  to 
pool/main/v/vdr-plugin-skinenigmang/vdr-plugin-skinenigmang_0.1.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 perl 5.10.0-22 (source all)

2009-05-03 Thread Niko Tyni
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 22:09:50 +0300
Source: perl
Binary: perl-base libcgi-fast-perl perl-doc perl-modules perl-debug perl-suid 
libperl5.10 libperl-dev perl
Architecture: all source 
Version: 5.10.0-22
Distribution: unstable
Urgency: low
Maintainer: Brendan O'Dea b...@debian.org
Changed-By: Niko Tyni nt...@debian.org
Closes: 526822
Description:
 libcgi-fast-perl - CGI::Fast Perl module
 libperl5.10 - Shared Perl library
 libperl-dev - Perl library: development files
 perl-base  - minimal Perl system
 perl-debug - Debug-enabled Perl interpreter
 perl-doc   - Perl documentation
 perl   - Larry Wall's Practical Extraction and Report Language
 perl-modules - Core Perl modules
 perl-suid  - Runs setuid Perl scripts
Changes:
 perl (5.10.0-22) unstable; urgency=low
 .
   * Make Archive::Extract work with recent versions of GNU tar.
 (Closes: #526822)
Checksums-Sha1: 
 2d4ea5bb82b89f087f729899e89de99d6833b058 167499 perl_5.10.0-22.diff.gz
 6b74c0f7dd3161f16c8e222d298e9ec90daa8b0a 8218988 perl-doc_5.10.0-22_all.deb
 753e372e123529c8adac8080307b9e1056b7cf18 3198184 perl-modules_5.10.0-22_all.deb
 a554d74d967e234c86da9b9fafbe73148c1bf0b0 48420 
libcgi-fast-perl_5.10.0-22_all.deb
 eb2d66409d6841bb9665f7b6ce0bc3e5de7ca50e 1340 perl_5.10.0-22.dsc
Checksums-Sha256: 
 5a03415329c4b3b9761b6e433d0bcf8d566d69dbad39dcdd66623a594291fea7 8218988 
perl-doc_5.10.0-22_all.deb
 5f1f6c4ab4c419852ab8ba74ffa961450f9ee2f34a0b2502cd53b6b79197fea4 1340 
perl_5.10.0-22.dsc
 baa81712fbe4f704aa015839618d90abaf74658b68a21010168f8bc373a5438c 167499 
perl_5.10.0-22.diff.gz
 dd560fe31c2dcbb7235ba33d1d30123ec3a59eb5c3d8d93a5bbba4be2721134e 48420 
libcgi-fast-perl_5.10.0-22_all.deb
 e86a08da9976f755c6db735a27775ad01605ebd43094a89e33d3d641c6c279ab 3198184 
perl-modules_5.10.0-22_all.deb
Files: 
 03d39384372c28036f5bf4c6b52d0f5a 8218988 doc optional 
perl-doc_5.10.0-22_all.deb
 4d0a9617d6be34a9e02fd9b08fea8792 48420 perl optional 
libcgi-fast-perl_5.10.0-22_all.deb
 9a9b026cdf40b0f708e1be19bd3e6a0a 167499 perl standard perl_5.10.0-22.diff.gz
 ac32cfb5f50bc3a636bc57f2a7193eac 1340 perl standard perl_5.10.0-22.dsc
 fbf5b2a213f0600f75382a047ce1fce4 3198184 perl standard 
perl-modules_5.10.0-22_all.deb

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

iEYEARECAAYFAkn9/eMACgkQiyizGWoHLTnATgCgoZ++zpo9AywPfE18y8skGHq/
ProAoMaH2HD3jOyPw8CfQtvWzAU1MfPi
=0fqH
-END PGP SIGNATURE-


Accepted:
libcgi-fast-perl_5.10.0-22_all.deb
  to pool/main/p/perl/libcgi-fast-perl_5.10.0-22_all.deb
perl-doc_5.10.0-22_all.deb
  to pool/main/p/perl/perl-doc_5.10.0-22_all.deb
perl-modules_5.10.0-22_all.deb
  to pool/main/p/perl/perl-modules_5.10.0-22_all.deb
perl_5.10.0-22.diff.gz
  to pool/main/p/perl/perl_5.10.0-22.diff.gz
perl_5.10.0-22.dsc
  to pool/main/p/perl/perl_5.10.0-22.dsc


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



Accepted nosql 4.0.14-3 (source amd64)

2009-05-03 Thread David Frey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 22:31:31 +0200
Source: nosql
Binary: nosql
Architecture: source amd64
Version: 4.0.14-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: David Frey da...@eos.eos.lugs.ch
Description: 
 nosql  - a Relational Database Management System for Unix
Changes: 
 nosql (4.0.14-3) unstable; urgency=low
 .
   * orphaned package
Checksums-Sha1: 
 a5d6e55d18de6783aef42a7b926efa1e9677e7d9 945 nosql_4.0.14-3.dsc
 d29d7eb28313a111b18312dd341a5417472f7020 7952 nosql_4.0.14-3.diff.gz
 041d71b42f21d9cd60d9f3559d12c77109741378 213724 nosql_4.0.14-3_amd64.deb
Checksums-Sha256: 
 61ac96287c69ca6add251842192c51527eda89040177b5dd86e84febf20d20ed 945 
nosql_4.0.14-3.dsc
 ab561e7ad2127504e83c2f8316ce9bdc4d0e44fb609c2c8992d2cf81812f2c8d 7952 
nosql_4.0.14-3.diff.gz
 9ebf11b963dfa8b4776b39ad8f4d4c4386e8b8cb2b31f317400d59c8b113d4ef 213724 
nosql_4.0.14-3_amd64.deb
Files: 
 48e60c19922134198f89931801beecfe 945 utils optional nosql_4.0.14-3.dsc
 654a88abed2083bb762937bebd504f85 7952 utils optional nosql_4.0.14-3.diff.gz
 e60d939af3fdf519cf328dd07663f241 213724 utils optional nosql_4.0.14-3_amd64.deb

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

iEYEARECAAYFAkn9/4IACgkQKVyqlGzl+1QHeACgmSEHc5snPfZe58SKYvFMgzkf
YssAnR/jOf+o7+oCtDsbBwrMkHmqe32E
=41tZ
-END PGP SIGNATURE-


Accepted:
nosql_4.0.14-3.diff.gz
  to pool/main/n/nosql/nosql_4.0.14-3.diff.gz
nosql_4.0.14-3.dsc
  to pool/main/n/nosql/nosql_4.0.14-3.dsc
nosql_4.0.14-3_amd64.deb
  to pool/main/n/nosql/nosql_4.0.14-3_amd64.deb


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



Accepted elfutils 0.141-2 (source amd64)

2009-05-03 Thread Kurt Roeckx
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 22:07:59 +0200
Source: elfutils
Binary: elfutils libelf1 libelf-dev libdw-dev libdw1 libasm1 libasm-dev
Architecture: source amd64
Version: 0.141-2
Distribution: unstable
Urgency: low
Maintainer: Kurt Roeckx k...@roeckx.be
Changed-By: Kurt Roeckx k...@roeckx.be
Description: 
 elfutils   - collection of utilities to handle ELF objects
 libasm-dev - libasm development libraries and header files
 libasm1- library with a programmable assembler interface
 libdw-dev  - libdw1 development libraries and header files
 libdw1 - library that provides access to the DWARF debug information
 libelf-dev - libelf1 development libraries and header files
 libelf1- library to read and write ELF files
Closes: 526824
Changes: 
 elfutils (0.141-2) unstable; urgency=low
 .
   * Make libdw-dev Depend on libdw1 (Closes: #526824)
Checksums-Sha1: 
 a4998d15827bdc246b805036998c7754c9625a83 1204 elfutils_0.141-2.dsc
 94c3d3698244210e99577318d5d7054bd3df5331 154099 elfutils_0.141-2.diff.gz
 01d43f1a0d22305a3003fc0cfef38dad3704390d 307700 elfutils_0.141-2_amd64.deb
 b79963529870278159797d1c5a48f9c3c9551305 46916 libelf1_0.141-2_amd64.deb
 3d1cc5be93a55f864ede39a1b1b8ae096883f1bf 64312 libelf-dev_0.141-2_amd64.deb
 8e462c897b4c1483d859904844a1312a1f595120 26426 libdw-dev_0.141-2_amd64.deb
 a256c91a614433f2f40a2e4e2d56bb8450eab23e 178818 libdw1_0.141-2_amd64.deb
 62500c6d70c9c9b09125632e10f5e87f8e00700b 23114 libasm1_0.141-2_amd64.deb
 7a68da816d0cbbc0026f01d66c6b753dc69c1a1f 26400 libasm-dev_0.141-2_amd64.deb
Checksums-Sha256: 
 0d087a41f96da226fe3677f0fd4580522b7229a4128d039cea469c21334de48b 1204 
elfutils_0.141-2.dsc
 a6e84f8cf736335992fa645c07252030cf3532b77f6178b0adce6d0b421babcb 154099 
elfutils_0.141-2.diff.gz
 64f72c4d3aa899e0d6f237cb562c0ca54833dc05c28f8bf81cf3d32ad0b70cc3 307700 
elfutils_0.141-2_amd64.deb
 3b27a1d3bdaf9bd6f5f6fadb99d5092acc2cf4cb4c40ee13b1380f2e6e5b7410 46916 
libelf1_0.141-2_amd64.deb
 db9875f6ee065d06dfb6c62ed28b048e3982b7847c86e59e8fb132a5c651757e 64312 
libelf-dev_0.141-2_amd64.deb
 1ac9151626b88297c1c198035a51ed07f8526113dab19fd3124ba5dbe881a07f 26426 
libdw-dev_0.141-2_amd64.deb
 eea15bb701eb36c3a1ecda2ed9e0dff63812c10f732a2b7b9977990840936ea0 178818 
libdw1_0.141-2_amd64.deb
 258967504fc8af45a66cad9adbfbf5d02a824923c6414e2c4eee5829b172e308 23114 
libasm1_0.141-2_amd64.deb
 a474219a59066c7fa31ea2dccac64f26a6a9dfb07daa31b1ff803a6144cf77d2 26400 
libasm-dev_0.141-2_amd64.deb
Files: 
 ddfabdf2c62c3d5f8df7034a7c7ee222 1204 libs optional elfutils_0.141-2.dsc
 75b901c7e9a16b16c2b82231412595c6 154099 libs optional elfutils_0.141-2.diff.gz
 41b7bf8e061f55ede82872a18510730f 307700 utils optional 
elfutils_0.141-2_amd64.deb
 c73ae3edb5916cd491e598d700b631a4 46916 libs optional libelf1_0.141-2_amd64.deb
 59903e74ae11ea955839a30a65dd220d 64312 libdevel optional 
libelf-dev_0.141-2_amd64.deb
 a8d4354dc3b9acd93d201a1ab3115893 26426 libdevel optional 
libdw-dev_0.141-2_amd64.deb
 f1221850e0175e59ef33987d0aa28a86 178818 libs optional libdw1_0.141-2_amd64.deb
 039b045766c5d9025c556084a0447277 23114 libs optional libasm1_0.141-2_amd64.deb
 acea4fffdcfcc543cb4982bb125de337 26400 libdevel optional 
libasm-dev_0.141-2_amd64.deb

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

iEYEARECAAYFAkn9+xgACgkQQdwckHJElwvlRgCggqFhZqHoBNuvhKSw1cmrv8WV
81YAn2oBS1QblCDOQ2IYshrMItyWTnAg
=XYyY
-END PGP SIGNATURE-


Accepted:
elfutils_0.141-2.diff.gz
  to pool/main/e/elfutils/elfutils_0.141-2.diff.gz
elfutils_0.141-2.dsc
  to pool/main/e/elfutils/elfutils_0.141-2.dsc
elfutils_0.141-2_amd64.deb
  to pool/main/e/elfutils/elfutils_0.141-2_amd64.deb
libasm-dev_0.141-2_amd64.deb
  to pool/main/e/elfutils/libasm-dev_0.141-2_amd64.deb
libasm1_0.141-2_amd64.deb
  to pool/main/e/elfutils/libasm1_0.141-2_amd64.deb
libdw-dev_0.141-2_amd64.deb
  to pool/main/e/elfutils/libdw-dev_0.141-2_amd64.deb
libdw1_0.141-2_amd64.deb
  to pool/main/e/elfutils/libdw1_0.141-2_amd64.deb
libelf-dev_0.141-2_amd64.deb
  to pool/main/e/elfutils/libelf-dev_0.141-2_amd64.deb
libelf1_0.141-2_amd64.deb
  to pool/main/e/elfutils/libelf1_0.141-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 pyenchant 1.5.3-1 (source all)

2009-05-03 Thread Piotr Ożarowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:21:02 +0200
Source: pyenchant
Binary: python-enchant
Architecture: source all
Version: 1.5.3-1
Distribution: unstable
Urgency: low
Maintainer: Piotr Ożarowski pi...@debian.org
Changed-By: Piotr Ożarowski pi...@debian.org
Description: 
 python-enchant - spellchecking library for Python
Changes: 
 pyenchant (1.5.3-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 a784a575fb10d6d1fe8c2cbf8cc998e926dc2820 1422 pyenchant_1.5.3-1.dsc
 77902775d33de49b4c1b56b6726b0321de732256 52551 pyenchant_1.5.3.orig.tar.gz
 c2e9b0748465f5cf20e8b6b1c735b41f24980869 3830 pyenchant_1.5.3-1.diff.gz
 6a0edf36e29df521afe9e8df02886694c63fbbaf 38290 python-enchant_1.5.3-1_all.deb
Checksums-Sha256: 
 8bd7efc841f35c71dfd2a2a24d43de7a031b7e4191dd0585fce6468624c8902d 1422 
pyenchant_1.5.3-1.dsc
 6211319279849f0191c937c8aa897796cb66ee503ef7abd27d293227496143f8 52551 
pyenchant_1.5.3.orig.tar.gz
 fdd3e41ee8f064e0857fceff770017c3e9130ccb68e4c3f0f3c11570ac06f595 3830 
pyenchant_1.5.3-1.diff.gz
 257665e7ac68b678e08f34148f1d53e44f61069d1eb21fe0faa8a30dab996fb0 38290 
python-enchant_1.5.3-1_all.deb
Files: 
 91571a77729d29b00585d70c74fdc10a 1422 python optional pyenchant_1.5.3-1.dsc
 d327fb9c8620ecc261a424083dc9aa95 52551 python optional 
pyenchant_1.5.3.orig.tar.gz
 fee38c729be9117002eaf264967a20d1 3830 python optional pyenchant_1.5.3-1.diff.gz
 382437a0866583790a010282a9e9a882 38290 python optional 
python-enchant_1.5.3-1_all.deb

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

iEYEARECAAYFAkn+DPYACgkQB01zfu119ZlKigCcDmrrz4N6rSr2EeFZr+tudB2p
QLwAni8KFXoFpVk6omA5uaMACDpG21yF
=uvH/
-END PGP SIGNATURE-


Accepted:
pyenchant_1.5.3-1.diff.gz
  to pool/main/p/pyenchant/pyenchant_1.5.3-1.diff.gz
pyenchant_1.5.3-1.dsc
  to pool/main/p/pyenchant/pyenchant_1.5.3-1.dsc
pyenchant_1.5.3.orig.tar.gz
  to pool/main/p/pyenchant/pyenchant_1.5.3.orig.tar.gz
python-enchant_1.5.3-1_all.deb
  to pool/main/p/pyenchant/python-enchant_1.5.3-1_all.deb


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



Accepted qpdf 2.0.6-1 (source i386)

2009-05-03 Thread Jay Berkenbilt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 16:30:11 -0400
Source: qpdf
Binary: libqpdf1 libqpdf-dev qpdf
Architecture: source i386
Version: 2.0.6-1
Distribution: unstable
Urgency: low
Maintainer: Jay Berkenbilt q...@debian.org
Changed-By: Jay Berkenbilt q...@debian.org
Description: 
 libqpdf-dev - development files for PDF transformation/inspection library
 libqpdf1   - runtime library for PDF transformation/inspection software
 qpdf   - tools for and transforming and inspecting PDF files
Changes: 
 qpdf (2.0.6-1) unstable; urgency=low
 .
   * New upstream release
   * New release includes a fix for streams with decode parameters that
 qpdf doesn't understand.  (It ignores them and leaves the streams
 unfiltered instead of giving an error message.)
   * Updated standards version to 3.8.1.  No changes required.
Checksums-Sha1: 
 7dab967fdbb6ea5b9138cc69d2cda2dde84c911f 1016 qpdf_2.0.6-1.dsc
 d263429363add306ac4b30ee829a2468101a2276 3662885 qpdf_2.0.6.orig.tar.gz
 ab90be1465cf88aa5744183f9f0c3d1a135c7a32 6869 qpdf_2.0.6-1.diff.gz
 eefb99aa03bafb8a79626d7491be33bb86e36d0f 247080 libqpdf1_2.0.6-1_i386.deb
 60fef82f5da8161b000d2e03e52b662b53cadb54 334830 libqpdf-dev_2.0.6-1_i386.deb
 e7b0e881a2b82a9f69f9eb2f22e90bbaa4bfcdab 130010 qpdf_2.0.6-1_i386.deb
Checksums-Sha256: 
 06f114d9ca5f947f4bc3fb3eb66fd1011b72925fcb45c73edb1ca3d4ac58a3dc 1016 
qpdf_2.0.6-1.dsc
 0f31dc805e8da0d242f86eee64b59fe08f011fd34f0fb86065cf9e1516866485 3662885 
qpdf_2.0.6.orig.tar.gz
 2c9cd771a07fd926e0408781229563f5451988f96aa98a7327c0c07ff8b8fbf0 6869 
qpdf_2.0.6-1.diff.gz
 43bf0dddcd71c1de0c7fd97bd09657a73a2c6378d6aba46ddb89acfba35214d6 247080 
libqpdf1_2.0.6-1_i386.deb
 7d58fc6d727ef32f4c705f64e05ac0fba8cd7a28bb9a9142c1f221607c3df599 334830 
libqpdf-dev_2.0.6-1_i386.deb
 84f31b764ca0b1935d60e7772018939c4dfbcdc22ff00559a4a854076bc72ffc 130010 
qpdf_2.0.6-1_i386.deb
Files: 
 50253363bc976ea7981439a062fb1510 1016 libs optional qpdf_2.0.6-1.dsc
 58b7300e6d966f0bcf4a5ea810a84878 3662885 libs optional qpdf_2.0.6.orig.tar.gz
 ce24a520f89b2173bc224f7163af7977 6869 libs optional qpdf_2.0.6-1.diff.gz
 4e7b151540e9d746efb51d6c1332d8bd 247080 libs optional libqpdf1_2.0.6-1_i386.deb
 2cd17fb0f2da33ecd7719b3a42653c85 334830 libdevel optional 
libqpdf-dev_2.0.6-1_i386.deb
 fac954825cf5ff8dac1f0285814e9091 130010 text optional qpdf_2.0.6-1_i386.deb

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

iEYEARECAAYFAkn9/6EACgkQEBVk6taI4KdZgwCfd16Jcj5ZRTxiXp0jtdBp/qU1
37oAoJOoaqfRI/xjB16EAgNANtL/wu2M
=4Xhz
-END PGP SIGNATURE-


Accepted:
libqpdf-dev_2.0.6-1_i386.deb
  to pool/main/q/qpdf/libqpdf-dev_2.0.6-1_i386.deb
libqpdf1_2.0.6-1_i386.deb
  to pool/main/q/qpdf/libqpdf1_2.0.6-1_i386.deb
qpdf_2.0.6-1.diff.gz
  to pool/main/q/qpdf/qpdf_2.0.6-1.diff.gz
qpdf_2.0.6-1.dsc
  to pool/main/q/qpdf/qpdf_2.0.6-1.dsc
qpdf_2.0.6-1_i386.deb
  to pool/main/q/qpdf/qpdf_2.0.6-1_i386.deb
qpdf_2.0.6.orig.tar.gz
  to pool/main/q/qpdf/qpdf_2.0.6.orig.tar.gz


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



Accepted uutraf 1.1-15 (source amd64)

2009-05-03 Thread David Frey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:35:49 +0200
Source: uutraf
Binary: uutraf
Architecture: source amd64
Version: 1.1-15
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: David Frey df...@debian.org
Description: 
 uutraf - an UUCP traffic analyzer and cost estimator
Changes: 
 uutraf (1.1-15) unstable; urgency=low
 .
   * Upload with correct e-Mail address.
Checksums-Sha1: 
 5b35cc36bef8798759ed7a60c3680632fa81d8ca 668 uutraf_1.1-15.dsc
 e784d786cd3d977e020e79c81ec6460843535539 16797 uutraf_1.1-15.tar.gz
 1c9d9b64737611288da4ca538300a5836a91ded1 14796 uutraf_1.1-15_amd64.deb
Checksums-Sha256: 
 7819baefb842d8e9178ed40e5cc3f02c4ded89807037d2b104d6ae9c9a03414d 668 
uutraf_1.1-15.dsc
 b38520921a0ae444dba82790f0facc1cd6e7967b555ae2929dbc83675ee35ebc 16797 
uutraf_1.1-15.tar.gz
 63ceb33b9aa25b244feb01d80a3589f570bbd652d3ee060846024fd07687d984 14796 
uutraf_1.1-15_amd64.deb
Files: 
 48ab3697240310c4a6d615c9f9a83b8e 668 admin extra uutraf_1.1-15.dsc
 28e800f7a3df2468b6b9c9f214d7cd3a 16797 admin extra uutraf_1.1-15.tar.gz
 a3c029b7e1dd2bce4e1c0ff853aba642 14796 admin extra uutraf_1.1-15_amd64.deb

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

iEYEARECAAYFAkn+DlgACgkQKVyqlGzl+1RWjACfaSJJiILive6PiXIQqvXEGPsN
JpcAnR82PYx0j760ZyS+8npfPzAAwh/g
=6uxf
-END PGP SIGNATURE-


Accepted:
uutraf_1.1-15.dsc
  to pool/main/u/uutraf/uutraf_1.1-15.dsc
uutraf_1.1-15.tar.gz
  to pool/main/u/uutraf/uutraf_1.1-15.tar.gz
uutraf_1.1-15_amd64.deb
  to pool/main/u/uutraf/uutraf_1.1-15_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 nosql 4.0.14-4 (source amd64)

2009-05-03 Thread David Frey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:31:22 +0200
Source: nosql
Binary: nosql
Architecture: source amd64
Version: 4.0.14-4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: David Frey df...@debian.org
Description: 
 nosql  - a Relational Database Management System for Unix
Changes: 
 nosql (4.0.14-4) unstable; urgency=low
 .
   * Upload with correct e-Mail address.
Checksums-Sha1: 
 357a0e11c4528b9c93cd2de55f0a5de7e0138571 945 nosql_4.0.14-4.dsc
 4b05a4d8a37e2f43fab39be8e4d2630142a74355 7989 nosql_4.0.14-4.diff.gz
 ee3c9f4f740011749fd5a83ea3e4a9ad9eee2914 213742 nosql_4.0.14-4_amd64.deb
Checksums-Sha256: 
 568e1f0685c3f495ca44552e833c680ec286e0a5bc001d06cf40437ed7f34dca 945 
nosql_4.0.14-4.dsc
 db4b27f4393e213e1447bb24896e981703d94285e376c3c0f7d49a7381105432 7989 
nosql_4.0.14-4.diff.gz
 dff2896bdfe8db4694fb307e55e188eb60f84ad0ff29e5f5f5f185e798939a67 213742 
nosql_4.0.14-4_amd64.deb
Files: 
 c3d10cfebd410a0c35d3d2a44e80458a 945 utils optional nosql_4.0.14-4.dsc
 557051453df1c1537f30a49c0c03d32f 7989 utils optional nosql_4.0.14-4.diff.gz
 498e4ac768dc0b8fbf94e88c6173d10c 213742 utils optional nosql_4.0.14-4_amd64.deb

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

iEYEARECAAYFAkn+DVIACgkQKVyqlGzl+1T6fgCfdz8N0PirUwO3Dxf9VApddoP4
i2IAn1cSi5jcV39Du8RxXN4FZJU7UORk
=is+/
-END PGP SIGNATURE-


Accepted:
nosql_4.0.14-4.diff.gz
  to pool/main/n/nosql/nosql_4.0.14-4.diff.gz
nosql_4.0.14-4.dsc
  to pool/main/n/nosql/nosql_4.0.14-4.dsc
nosql_4.0.14-4_amd64.deb
  to pool/main/n/nosql/nosql_4.0.14-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 sysvbanner 1.0-14 (source amd64)

2009-05-03 Thread David Frey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:34:03 +0200
Source: sysvbanner
Binary: sysvbanner
Architecture: source amd64
Version: 1.0-14
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: David Frey df...@debian.org
Description: 
 sysvbanner - System-V banner clone
Changes: 
 sysvbanner (1.0-14) unstable; urgency=low
 .
   * Upload with correct e-Mail address.
Checksums-Sha1: 
 fb69c4610816537776e1ef79bb0e68171a0d28cf 685 sysvbanner_1.0-14.dsc
 8054e26e737c5f748c7c70072ddc6f0506de7038 5966 sysvbanner_1.0-14.tar.gz
 cdb6d43be69fd9dd82d9dc02451d0d1c06fff18f 6004 sysvbanner_1.0-14_amd64.deb
Checksums-Sha256: 
 20c43241c0c253c0d980639053603720ecea395da42f5b1569dc0c391186e61c 685 
sysvbanner_1.0-14.dsc
 60b949a8acc8008a3aa41648cc371f4a7d952d40d2f586461b16cc47a0fe7fe9 5966 
sysvbanner_1.0-14.tar.gz
 913050438529c831b77b1d8476443aa14c0052a7590afe886d7edbc44a517480 6004 
sysvbanner_1.0-14_amd64.deb
Files: 
 dd0938936381d5bac431f98f9ce3f090 685 misc optional sysvbanner_1.0-14.dsc
 69b6d65ea82f7e0e45397eb73e24b79c 5966 misc optional sysvbanner_1.0-14.tar.gz
 411306d4274c2bdf828b0e889c5052fd 6004 misc optional sysvbanner_1.0-14_amd64.deb

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

iEYEARECAAYFAkn+DewACgkQKVyqlGzl+1TnIwCdE2N9LZh8P0ikKDpa3O+ihHrB
GuEAniF0aLLvVtkDcG2GkGyQj3l5xSga
=sDI1
-END PGP SIGNATURE-


Accepted:
sysvbanner_1.0-14.dsc
  to pool/main/s/sysvbanner/sysvbanner_1.0-14.dsc
sysvbanner_1.0-14.tar.gz
  to pool/main/s/sysvbanner/sysvbanner_1.0-14.tar.gz
sysvbanner_1.0-14_amd64.deb
  to pool/main/s/sysvbanner/sysvbanner_1.0-14_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 rpncalc 1.36.8 (source amd64)

2009-05-03 Thread David Frey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:29:02 +0200
Source: rpncalc
Binary: rpncalc
Architecture: source amd64
Version: 1.36.8
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: David Frey df...@debian.org
Description: 
 rpncalc- RPN calculator trying to emulate an HP28S
Changes: 
 rpncalc (1.36.8) unstable; urgency=low
 .
   * Upload with correct e-Mail address.
Checksums-Sha1: 
 7c8b2b5b1c415e51d0436a1a8fa3c4e90d33f5e0 760 rpncalc_1.36.8.dsc
 85e150b53cc6340d137fcbf95002c9c3b2343fe1 99138 rpncalc_1.36.8.tar.gz
 17a341113ed996f61b81685c4e9f7ad6d0fa5817 30390 rpncalc_1.36.8_amd64.deb
Checksums-Sha256: 
 9bab4753eea308bdf6d9c6b176ea6a27606a5ed5b0d924e44f7fe303d2debd38 760 
rpncalc_1.36.8.dsc
 344d5e6a4667fe0354a40ee9e32493d5fd45f99573763f15553d358977212bef 99138 
rpncalc_1.36.8.tar.gz
 4801dcb961cf04683806b5d342b893f86f772a2b2e541eae2d5a3331fcc25229 30390 
rpncalc_1.36.8_amd64.deb
Files: 
 f92fd732884293f3ea5ea5e4f401c89a 760 math optional rpncalc_1.36.8.dsc
 53c56b3cc539f214c2c26d5af62d878d 99138 math optional rpncalc_1.36.8.tar.gz
 a16abfc9c97eac92c55018ac9324c5e0 30390 math optional rpncalc_1.36.8_amd64.deb

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

iEYEARECAAYFAkn+DMgACgkQKVyqlGzl+1RdFACfSuJRzl1rcrx9ubwimc4iB3nR
iFUAn0DxlZ25iFa2IeHGLvpjXMZRLr6q
=li9Y
-END PGP SIGNATURE-


Accepted:
rpncalc_1.36.8.dsc
  to pool/main/r/rpncalc/rpncalc_1.36.8.dsc
rpncalc_1.36.8.tar.gz
  to pool/main/r/rpncalc/rpncalc_1.36.8.tar.gz
rpncalc_1.36.8_amd64.deb
  to pool/main/r/rpncalc/rpncalc_1.36.8_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 spline 1.1-13 (source amd64)

2009-05-03 Thread David Frey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:23:37 +0200
Source: spline
Binary: spline
Architecture: source amd64
Version: 1.1-13
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: David Frey df...@debian.org
Description: 
 spline - Akima spline interpolation
Changes: 
 spline (1.1-13) unstable; urgency=low
 .
   * Upload with correct e-Mail address.
Checksums-Sha1: 
 16511721b2a20241141bb22475a599355ae8d50f 668 spline_1.1-13.dsc
 0f3f07219c766329e82f083902ed7b45f7f1fba6 11498 spline_1.1-13.tar.gz
 2fabd5b621ca7df45cba536cc225975c1a0f9c2a 10842 spline_1.1-13_amd64.deb
Checksums-Sha256: 
 c0c0d600c6f26820cf03a21d12f0f4d438ce667e4ed8810a04b4090a6dabe79d 668 
spline_1.1-13.dsc
 87e1f97ba5f56ecf2aebf39a4e672b64119e7efb6f9afc4fd9007c165a83b0f6 11498 
spline_1.1-13.tar.gz
 d469aeb0db5bbd729d95f0ded42c0518d4097dc4367120aa3ab56ce538da0489 10842 
spline_1.1-13_amd64.deb
Files: 
 88713f96acc0d238c20700346bb3972d 668 math optional spline_1.1-13.dsc
 9c2f96761d5eedb6747de3e13495a70e 11498 math optional spline_1.1-13.tar.gz
 065ddc1a58d3f4da64bb6e26327960cc 10842 math optional spline_1.1-13_amd64.deb

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

iEYEARECAAYFAkn+DDEACgkQKVyqlGzl+1R5/ACgmkpJcwbC6bhE9+vZLcTSa/+G
LjoAn1NXfTNgSI0Ydg2VlZwu/HeHNlRF
=ENLZ
-END PGP SIGNATURE-


Accepted:
spline_1.1-13.dsc
  to pool/main/s/spline/spline_1.1-13.dsc
spline_1.1-13.tar.gz
  to pool/main/s/spline/spline_1.1-13.tar.gz
spline_1.1-13_amd64.deb
  to pool/main/s/spline/spline_1.1-13_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 libgpewidget 0.117-1 (source all amd64)

2009-05-03 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 22:10:39 +0100
Source: libgpewidget
Binary: libgpewidget1 libgpewidget-dev libgpewidget1-dbg libgpewidget-doc
Architecture: source amd64 all
Version: 0.117-1
Distribution: unstable
Urgency: low
Maintainer: Neil Williams codeh...@debian.org
Changed-By: Neil Williams codeh...@debian.org
Description: 
 libgpewidget-dev - Development files for libgpewidget
 libgpewidget-doc - GPE Palmtop Environment widget library Reference Manual
 libgpewidget1 - GPE Palmtop Environment widget library
 libgpewidget1-dbg - debug symbols for libgpewidget
Changes: 
 libgpewidget (0.117-1) unstable; urgency=low
 .
   * New upstream release
   * Drop Debian patches and dpatch dependency as new upstream version
 contains the effect of the previous patches.
   * Tweak rules and control for lintian warnings (doc-base upgrades).
   * Update standards version. (No changes)
   * Drop old Build-Depends no longer used: recode, libxml-perl and old
 dpkg-dev
Checksums-Sha1: 
 01cb1b2be6e3e9b0c06ffe987e1508a338c04e94 1413 libgpewidget_0.117-1.dsc
 45ba1203e2dde3a895593d2aa3286a70903da040 530310 libgpewidget_0.117.orig.tar.gz
 a8fbc6c58f5268b12e5096cdd03778ff324b77fe 14499 libgpewidget_0.117-1.diff.gz
 5c299888b300fa4637ec9f1632f50f2de858ad40 131368 libgpewidget1_0.117-1_amd64.deb
 1b74ec5cd8c9f81812cd3f2ba3cc403429d5f465 100218 
libgpewidget-dev_0.117-1_amd64.deb
 e76866d4a172595366ba0c1ff29e0c49378bf16d 229954 
libgpewidget1-dbg_0.117-1_amd64.deb
 77efdd73f2e5323c38b90cd5d59f81742491e207 64606 libgpewidget-doc_0.117-1_all.deb
Checksums-Sha256: 
 06eb5427c64ea4b093b60dd2df74c9817e86d68819114618046417f1acf92db2 1413 
libgpewidget_0.117-1.dsc
 2a1388184872dbb2a23880840aee03d5b86efdacf37d18830112eb01220f2162 530310 
libgpewidget_0.117.orig.tar.gz
 1a6a7449433a98e1dfac73592e1dce187fcdd4a48d4f496a7bdf5f757e5f44a6 14499 
libgpewidget_0.117-1.diff.gz
 939e6d65b037c8fe242fd6827efbc2e8926df27311a29eb488cab04f07b7914f 131368 
libgpewidget1_0.117-1_amd64.deb
 fce113ac4cc2bb8731d89eb2b71c5d298f51edc29843c24877ced915110e831d 100218 
libgpewidget-dev_0.117-1_amd64.deb
 1846409080fc821f9853e332f040b68ecac4a2679dc36c9267442ed94afbb193 229954 
libgpewidget1-dbg_0.117-1_amd64.deb
 d5adee0469c9aee5a508532728f8bd58e835548f32efdddac66709a946abca1c 64606 
libgpewidget-doc_0.117-1_all.deb
Files: 
 745cbfa8d307d8a92ee527b323fdf3e8 1413 libs optional libgpewidget_0.117-1.dsc
 9d8c14a87f85cd7384eecd47541dc658 530310 libs optional 
libgpewidget_0.117.orig.tar.gz
 7b49e63ff0439a08625d3071dc29dbc5 14499 libs optional 
libgpewidget_0.117-1.diff.gz
 4ba27ed582523bc59aaad9fcb9ab45c3 131368 libs optional 
libgpewidget1_0.117-1_amd64.deb
 8997a93350e825d7a63996b354143f22 100218 libdevel optional 
libgpewidget-dev_0.117-1_amd64.deb
 897cffe006213103a2278efebf01cf54 229954 debug extra 
libgpewidget1-dbg_0.117-1_amd64.deb
 f73257cc0d5e1b1b9a9e2c5bd7988704 64606 doc optional 
libgpewidget-doc_0.117-1_all.deb

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

iEYEARECAAYFAkn+CjwACgkQiAEJSii8s+MtXACg2Mw0kHmdGNiR2hsoGMmqqPRM
S60AnRlyOpS9ArKO8irU87XK25PzL/sG
=bTGi
-END PGP SIGNATURE-


Accepted:
libgpewidget-dev_0.117-1_amd64.deb
  to pool/main/libg/libgpewidget/libgpewidget-dev_0.117-1_amd64.deb
libgpewidget-doc_0.117-1_all.deb
  to pool/main/libg/libgpewidget/libgpewidget-doc_0.117-1_all.deb
libgpewidget1-dbg_0.117-1_amd64.deb
  to pool/main/libg/libgpewidget/libgpewidget1-dbg_0.117-1_amd64.deb
libgpewidget1_0.117-1_amd64.deb
  to pool/main/libg/libgpewidget/libgpewidget1_0.117-1_amd64.deb
libgpewidget_0.117-1.diff.gz
  to pool/main/libg/libgpewidget/libgpewidget_0.117-1.diff.gz
libgpewidget_0.117-1.dsc
  to pool/main/libg/libgpewidget/libgpewidget_0.117-1.dsc
libgpewidget_0.117.orig.tar.gz
  to pool/main/libg/libgpewidget/libgpewidget_0.117.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 libvirt 0.6.3-1 (source all powerpc)

2009-05-03 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 23:33:28 +0200
Source: libvirt
Binary: libvirt-bin libvirt0 libvirt0-dbg libvirt-doc libvirt-dev python-libvirt
Architecture: source all powerpc
Version: 0.6.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Libvirt Maintainers 
pkg-libvirt-maintain...@lists.alioth.debian.org
Changed-By: Guido Günther a...@sigxcpu.org
Description: 
 libvirt-bin - the programs for the libvirt library
 libvirt-dev - development files for the libvirt library
 libvirt-doc - documentation for the libvirt library
 libvirt0   - library for interfacing with different virtualization systems
 libvirt0-dbg - library for interfacing with different virtualization systems
 python-libvirt - libvirt Python bindings
Changes: 
 libvirt (0.6.3-1) unstable; urgency=low
 .
   * [0cb2f83] Imported Upstream version 0.6.3
 * virtual box support
   * [06fe518] 0001-remove-RHism.diff.patch: use invoke-rc.d
   * [ec2fd52] drop patches merged upstream:
 * 0003-allow-libvirt-group-to-access-the-socket.patch  series
 * 0004-fix-Debian-specific-path-to-hvm-loader.patch
   * [6977bde] enable vbox support
   * [93c4423] add symbols file
Checksums-Sha1: 
 e8b18d12572f119d96b832c433858d11e1b03f08 1652 libvirt_0.6.3-1.dsc
 652bee198d47ce779a08c7e4aefc1905f217 6999742 libvirt_0.6.3.orig.tar.gz
 8af99134616841a62917293296144502f43f5302 14880 libvirt_0.6.3-1.diff.gz
 85175825e0ee9b4a39cb28846e053debc9139596 706782 libvirt-doc_0.6.3-1_all.deb
 5679fd8075972ae48428c0ca93de3ea8921abf49 422594 libvirt-bin_0.6.3-1_powerpc.deb
 d99f381d4cf048e8b8115327974bb3244432b54d 411054 libvirt0_0.6.3-1_powerpc.deb
 b74fac62771493ce4d8fc5068bf8c22e3ca4efbc 644004 
libvirt0-dbg_0.6.3-1_powerpc.deb
 97a8aacaa5389b15276e96e7248d8091adf8ebfd 468052 libvirt-dev_0.6.3-1_powerpc.deb
 900abd7a42c8aa16beac7fd7c86d4fdd78eafca9 237200 
python-libvirt_0.6.3-1_powerpc.deb
Checksums-Sha256: 
 945c9b475344d2dae571d66880ea9647efe31e21f1abab66195f02ea12f041e5 1652 
libvirt_0.6.3-1.dsc
 fd990f312900e6f371d889044e77f6c13ba76b5af07f0e9567a742e76240f721 6999742 
libvirt_0.6.3.orig.tar.gz
 5f5a4783e37dec7cb5b7156a1bf760e3d0f515852865a51e13f4de302cad0e4b 14880 
libvirt_0.6.3-1.diff.gz
 f823e829604c040c11a0724df3094c2912610a9b2adf9c4231932c918690eff4 706782 
libvirt-doc_0.6.3-1_all.deb
 d3e65dd26020cda221bc965579d4d86dc601029b2607aedf8fbe033ee5519ab6 422594 
libvirt-bin_0.6.3-1_powerpc.deb
 04e8b6fe44877d81a81826668feecbdac897d60b32c699a86569f2d8aac60701 411054 
libvirt0_0.6.3-1_powerpc.deb
 2bede021426b995f14e0b4efc52dbd69e0803378f63b1b87be6d4d25788e0315 644004 
libvirt0-dbg_0.6.3-1_powerpc.deb
 637fc4c2adf51fa86b09b7f960e54ab6c46204d8b7de83122a6db465f6ca1c73 468052 
libvirt-dev_0.6.3-1_powerpc.deb
 be370c612819f972a4e832000207a4e126ef2527a10b9f2d55d7cc7a89a5f9a1 237200 
python-libvirt_0.6.3-1_powerpc.deb
Files: 
 0d6b39975fe4a4251d9e3bdc21aff6d3 1652 libs optional libvirt_0.6.3-1.dsc
 dd618bf0943a0be853ccc08308c7f427 6999742 libs optional 
libvirt_0.6.3.orig.tar.gz
 9c0569dcf92e66871eaa8657d638362a 14880 libs optional libvirt_0.6.3-1.diff.gz
 620ba5f0cb40e9e85be1a810ad8a08dc 706782 doc optional 
libvirt-doc_0.6.3-1_all.deb
 b568ce40d1549fe55d6fdce55bbd0a33 422594 admin optional 
libvirt-bin_0.6.3-1_powerpc.deb
 56a99d6f14adced1fb98e7a46483e886 411054 libs optional 
libvirt0_0.6.3-1_powerpc.deb
 46af2fe6d1f6321f8f6567194a29aec7 644004 debug extra 
libvirt0-dbg_0.6.3-1_powerpc.deb
 98c38d02b5f1697165692a64272d7a5a 468052 libdevel optional 
libvirt-dev_0.6.3-1_powerpc.deb
 a1ef7097ffc9a81a148a79369077009a 237200 python optional 
python-libvirt_0.6.3-1_powerpc.deb

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

iD8DBQFJ/iRDn88szT8+ZCYRAhbHAJsE6KjuzalIGriQI2O/HACiBjaAegCfQ1Bm
62KfXq18qvG3j/2vJWn9Nss=
=sIf0
-END PGP SIGNATURE-


Accepted:
libvirt-bin_0.6.3-1_powerpc.deb
  to pool/main/libv/libvirt/libvirt-bin_0.6.3-1_powerpc.deb
libvirt-dev_0.6.3-1_powerpc.deb
  to pool/main/libv/libvirt/libvirt-dev_0.6.3-1_powerpc.deb
libvirt-doc_0.6.3-1_all.deb
  to pool/main/libv/libvirt/libvirt-doc_0.6.3-1_all.deb
libvirt0-dbg_0.6.3-1_powerpc.deb
  to pool/main/libv/libvirt/libvirt0-dbg_0.6.3-1_powerpc.deb
libvirt0_0.6.3-1_powerpc.deb
  to pool/main/libv/libvirt/libvirt0_0.6.3-1_powerpc.deb
libvirt_0.6.3-1.diff.gz
  to pool/main/libv/libvirt/libvirt_0.6.3-1.diff.gz
libvirt_0.6.3-1.dsc
  to pool/main/libv/libvirt/libvirt_0.6.3-1.dsc
libvirt_0.6.3.orig.tar.gz
  to pool/main/libv/libvirt/libvirt_0.6.3.orig.tar.gz
python-libvirt_0.6.3-1_powerpc.deb
  to pool/main/libv/libvirt/python-libvirt_0.6.3-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 snort 2.7.0-25 (source i386 all)

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

Format: 1.8
Date: Sun, 03 May 2009 23:40:26 +0200
Source: snort
Binary: snort snort-common snort-doc snort-mysql snort-pgsql 
snort-rules-default snort-common-libraries
Architecture: source i386 all
Version: 2.7.0-25
Distribution: unstable
Urgency: low
Maintainer: Javier Fernandez-Sanguino Pen~a j...@debian.org
Changed-By: Javier Fernandez-Sanguino Pen~a j...@debian.org
Description: 
 snort  - flexible Network Intrusion Detection System
 snort-common - flexible Network Intrusion Detection System [common files]
 snort-common-libraries - flexible Network Intrusion Detection System ruleset
 snort-doc  - Documentation for the Snort IDS [documentation]
 snort-mysql - flexible Network Intrusion Detection System [MySQL]
 snort-pgsql - flexible Network Intrusion Detection System [PostgreSQL]
 snort-rules-default - flexible Network Intrusion Detection System ruleset
Closes: 449568 502084 510704
Changes: 
 snort (2.7.0-25) unstable; urgency=low
 .
   * Use src/output-plugins/spo_database.c from the 2.8.4.1 release. This 
version includes
 the necessary code to configure the mysql connection so that it reconnects 
to the database
 in case the connection gets lost. This might happen if too few events are 
logged in
 Snort and the database connection timeouts. (Closes: #449568)
   * Copy over src/ipv6_port.h from 2.8.4.1 and include it in 
src/output-plugins/spo_database.c
   * Update Japanese translation for the templates, thanks to Hideki Yamane 
(Closes: 510704)
   * Move the code that detects if interfaces are down over to snort-pgsql and 
snort-mysql.
 This way, if the interface defined is not available it will prompt again, 
raising the
 debconf priority (Closes: #502084)
   * Change all the config_parameters debconf input from 'medium' to 'error'
   * Change all the needs_db_config debconf questions from 'medium' to 'high' 
since users
 that do not see this note will end up with a non-functioning package.
Checksums-Sha1: 
 3a64e738507abf3f02d76b153a45439bc61d8942 1392 snort_2.7.0-25.dsc
 cc17603b8af6bdb592ce8a6ce2da71d8e5628ff3 1662526 snort_2.7.0-25.diff.gz
 9e071e9680bdd29e9d3a987a9feefd1252745305 466920 snort_2.7.0-25_i386.deb
 ec2ca86d79c0c777e6fcf3c5f77045d1aaa99128 479276 snort-mysql_2.7.0-25_i386.deb
 57605482625daa5f1686db65950abe73c9d193d9 479064 snort-pgsql_2.7.0-25_i386.deb
 bf03015accbc6f01fedb0b653cdd1f7d5e2ea057 245238 
snort-common-libraries_2.7.0-25_i386.deb
 a998cc442a6c38af8e2ae376bf58a68d58a4fcec 148486 snort-common_2.7.0-25_all.deb
 ba8ff536ff39fc894b6373119d613f56e3b9b055 2304268 snort-doc_2.7.0-25_all.deb
 86d6573df303eaa2d0eda38ff9862e9d43ab255d 402918 
snort-rules-default_2.7.0-25_all.deb
Checksums-Sha256: 
 f9eb5d8d38cfd60622bfc2c0741369a59ffe2c610c56fceeae34530c89ddac61 1392 
snort_2.7.0-25.dsc
 183ceb889752d7bf0dab39bc8f2c73b96cc8ab22fdb2ffed8ed995a025e1a659 1662526 
snort_2.7.0-25.diff.gz
 23dfe65d959d922f3ae2e06b74e1713c63390a5f2ef2d0eb67d6a6805d21d581 466920 
snort_2.7.0-25_i386.deb
 7862d0cc53eef7cee74b959548006da9447a9c1b89c1612a7b4ac66b90159cda 479276 
snort-mysql_2.7.0-25_i386.deb
 3d5163aa93830538fcbda79a674ec8097bd87a31cf6d85971ba11ba41cec2af8 479064 
snort-pgsql_2.7.0-25_i386.deb
 1fde0f228aa678ca310beb8df2d0595aa24e18179d7ae8050c3b8dfcd74fd42a 245238 
snort-common-libraries_2.7.0-25_i386.deb
 20c83cfd7e12444934b38f5ad2126e3caf5b1dc639e1a2052b31fe2c4699117d 148486 
snort-common_2.7.0-25_all.deb
 05cdd7a0c875d835feca1f2a9544788ead6271c8013b51ecdd1b1c6e7d0d927c 2304268 
snort-doc_2.7.0-25_all.deb
 f37114567cf3d94e7c4194df11605318811927480c233c0f8bf405c89bb1ee3f 402918 
snort-rules-default_2.7.0-25_all.deb
Files: 
 a3b5960ab18ed2f3be7f94b80083b1a5 1392 net optional snort_2.7.0-25.dsc
 7f86a736720236f56cced43d157bdac5 1662526 net optional snort_2.7.0-25.diff.gz
 d9afe8e4057ba3c931b3f2631b568777 466920 net optional snort_2.7.0-25_i386.deb
 7be63f4752478e1a140d6ba374bed422 479276 net extra snort-mysql_2.7.0-25_i386.deb
 7fae7c10a366864df7b909faaa536080 479064 net optional 
snort-pgsql_2.7.0-25_i386.deb
 dacc40eb2567b515ac1133af4a5ff5df 245238 net optional 
snort-common-libraries_2.7.0-25_i386.deb
 372daa5a03c92f0d45c1187c084b13ea 148486 net optional 
snort-common_2.7.0-25_all.deb
 0efdd22ed00475cecbbb4663e12a97f1 2304268 doc optional 
snort-doc_2.7.0-25_all.deb
 8e3bc44c1a13b73571d2d2a1adf1e9d1 402918 net optional 
snort-rules-default_2.7.0-25_all.deb

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

iD8DBQFJ/iCnsandgtyBSwkRAjGTAKCAyMV+YfpENanDGZnfbQiEVNr9gwCfRoq1
CFyy+X77Ga84IneUXXQ3Q7o=
=iEJi
-END PGP SIGNATURE-


Accepted:
snort-common-libraries_2.7.0-25_i386.deb
  to pool/main/s/snort/snort-common-libraries_2.7.0-25_i386.deb
snort-common_2.7.0-25_all.deb
  to pool/main/s/snort/snort-common_2.7.0-25_all.deb
snort-doc_2.7.0-25_all.deb
  to pool/main/s/snort/snort-doc_2.7.0-25_all.deb
snort-mysql_2.7.0-25_i386.deb
  to pool/main/s/snort/snort-mysql_2.7.0-25_i386.deb

Accepted zomg 0.5.9-1 (source amd64)

2009-05-03 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 21:47:18 -0400
Source: zomg
Binary: zomg
Architecture: source amd64
Version: 0.5.9-1
Distribution: unstable
Urgency: low
Maintainer: Clint Adams sch...@debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 zomg   - console-based last.fm submission and radio client
Changes: 
 zomg (0.5.9-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 bd74cc79af1272a42a6e8e22fcc4fafec6505119 935 zomg_0.5.9-1.dsc
 0bf10c5b7174e9cf5e997f1196111dbaeec87ab9 81192 zomg_0.5.9.orig.tar.gz
 d2903cbee111c20154d6cd4e8fe6ddb4e9077ac6 3012 zomg_0.5.9-1.diff.gz
 23e45e3080c7428c2bc18346eb5d833f7c44c7df 20514 zomg_0.5.9-1_amd64.deb
Checksums-Sha256: 
 ebe507c87b71a9e2ef209c0e70101d57c46221be415704e7fc6a55a426a973fc 935 
zomg_0.5.9-1.dsc
 584c4e99f1b6ce1bb6b0c2bfea08e7739e9ac130d2e713cd0fbf3a939b796e45 81192 
zomg_0.5.9.orig.tar.gz
 aada44ee923c6b6475c8395fe1fa4cd02d76bf2a63e77e999a8eb8345fe689b3 3012 
zomg_0.5.9-1.diff.gz
 8da9b149a0787cc32a97817637fda85c32db8bdff868e88b11129c61501823d5 20514 
zomg_0.5.9-1_amd64.deb
Files: 
 bc7d67051b661c8f28ad4c0469702afd 935 sound optional zomg_0.5.9-1.dsc
 c810a592175ba631d009eaa3c799fddd 81192 sound optional zomg_0.5.9.orig.tar.gz
 6d8aac43816e5640358b3fc53bb0da35 3012 sound optional zomg_0.5.9-1.diff.gz
 f1c9e229bd0b2382b397d4a7686360c6 20514 sound optional zomg_0.5.9-1_amd64.deb

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

iD8DBQFJ/kmz5m0u66uWM3ARApZEAJ9s5MNWBfwkxo4u0yEnQECGmkzzMQCfdfkI
Ze/VFxmokB4KVfk25DeSe+s=
=xAxU
-END PGP SIGNATURE-


Accepted:
zomg_0.5.9-1.diff.gz
  to pool/main/z/zomg/zomg_0.5.9-1.diff.gz
zomg_0.5.9-1.dsc
  to pool/main/z/zomg/zomg_0.5.9-1.dsc
zomg_0.5.9-1_amd64.deb
  to pool/main/z/zomg/zomg_0.5.9-1_amd64.deb
zomg_0.5.9.orig.tar.gz
  to pool/main/z/zomg/zomg_0.5.9.orig.tar.gz


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



Accepted gerris 0.9.2+darcs081022-dfsg.1-5 (source amd64)

2009-05-03 Thread Drew Parsons
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 11:44:12 +1000
Source: gerris
Binary: gerris libgfs-dev libgfs-dbg libgfs-1.3-1
Architecture: source amd64
Version: 0.9.2+darcs081022-dfsg.1-5
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Drew Parsons dpars...@debian.org
Description: 
 gerris - Gerris Flow Solver
 libgfs-1.3-1 - Gerris Flow Solver -- shared libraries
 libgfs-dbg - Gerris Flow Solver -- libraries with debuggin symbols
 libgfs-dev - Gerris Flow Solver -- development libraries and headers
Closes: 526424
Changes: 
 gerris (0.9.2+darcs081022-dfsg.1-5) unstable; urgency=low
 .
   * debian/control: Place libgfs-dbg in Section: debug.
   * debian/gerris.install:
   - install usr/share contents (MIME data, gerris icons).
   - install m4 and python scripts from usr/lib/gerris into
 usr/share/gerris/lib (arch-independent files, hence install in
 usr/share).  gerris.links creates symlink from
 usr/share/gerris/lib back to usr/lib/gerris.
 gerris Depends: m4
 Closes: #526424.
Checksums-Sha1: 
 637da9a8af8c661434aa5b738f6850bfad7823bc 1503 
gerris_0.9.2+darcs081022-dfsg.1-5.dsc
 83b0cc201969e61030d55ad5b9b52d578d6fbe19 8964 
gerris_0.9.2+darcs081022-dfsg.1-5.diff.gz
 26a09e93da86d67483e2e4106461ac73fce4f3cd 165256 
gerris_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 cd80066a17d0b2326d455a1ce7b88d8a53f0500a 1042846 
libgfs-dev_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 9b18567847b9b8332b1208abbb7a167485c73133 1587388 
libgfs-dbg_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 a30dfe8d350d9dedd9ac8e533d438b03226ea6c2 801512 
libgfs-1.3-1_0.9.2+darcs081022-dfsg.1-5_amd64.deb
Checksums-Sha256: 
 448d46defa7c64d9774fec4926fb47f5fb64bc5fc37e01b38033ce45b04145c6 1503 
gerris_0.9.2+darcs081022-dfsg.1-5.dsc
 b8792fff33989b8c587e575d2e96c57df75be240bc8b3d6a8b29146dec8d0617 8964 
gerris_0.9.2+darcs081022-dfsg.1-5.diff.gz
 ae5057de5d296ca2e47d529bf683c0982ce40229edd08e04e3da13b86b52b71f 165256 
gerris_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 5ea6581c9351f2b093c44ff663b35859f76c8ec8f09ee1d1923190df175a3bac 1042846 
libgfs-dev_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 972699963e9a3706deb740111bf358868e39059de920401c007b401bf3e8962a 1587388 
libgfs-dbg_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 019e0bbe3cf00dab5a7e9dce4fbf6186fee30467887333ba680f6c897368a443 801512 
libgfs-1.3-1_0.9.2+darcs081022-dfsg.1-5_amd64.deb
Files: 
 a82d6a324f75291f56302a8cea2dd412 1503 science optional 
gerris_0.9.2+darcs081022-dfsg.1-5.dsc
 3345bdb83e8a70a6ecf4484b90929c2e 8964 science optional 
gerris_0.9.2+darcs081022-dfsg.1-5.diff.gz
 1ddb45ffe2bc277e4ec0837c0e948500 165256 science optional 
gerris_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 37e72d66bb49cf391084cc76ba5684c4 1042846 libdevel optional 
libgfs-dev_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 ee89478720c5223aca22ce419eb59a14 1587388 debug extra 
libgfs-dbg_0.9.2+darcs081022-dfsg.1-5_amd64.deb
 9448438def1195b1ca0a1cb810c4c05f 801512 devel optional 
libgfs-1.3-1_0.9.2+darcs081022-dfsg.1-5_amd64.deb

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

iEYEARECAAYFAkn+WTcACgkQts5wQWQSTkqZwACfeVULo7TOxwtmwnrtNs3s0l8a
EtQAn2ioqha11qhPQdWdQF7h1DXoF7ty
=F5dv
-END PGP SIGNATURE-


Accepted:
gerris_0.9.2+darcs081022-dfsg.1-5.diff.gz
  to pool/main/g/gerris/gerris_0.9.2+darcs081022-dfsg.1-5.diff.gz
gerris_0.9.2+darcs081022-dfsg.1-5.dsc
  to pool/main/g/gerris/gerris_0.9.2+darcs081022-dfsg.1-5.dsc
gerris_0.9.2+darcs081022-dfsg.1-5_amd64.deb
  to pool/main/g/gerris/gerris_0.9.2+darcs081022-dfsg.1-5_amd64.deb
libgfs-1.3-1_0.9.2+darcs081022-dfsg.1-5_amd64.deb
  to pool/main/g/gerris/libgfs-1.3-1_0.9.2+darcs081022-dfsg.1-5_amd64.deb
libgfs-dbg_0.9.2+darcs081022-dfsg.1-5_amd64.deb
  to pool/main/g/gerris/libgfs-dbg_0.9.2+darcs081022-dfsg.1-5_amd64.deb
libgfs-dev_0.9.2+darcs081022-dfsg.1-5_amd64.deb
  to pool/main/g/gerris/libgfs-dev_0.9.2+darcs081022-dfsg.1-5_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 autotools-dev 20090427.1 (source all)

2009-05-03 Thread Henrique de Moraes Holschuh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 20:23:53 -0300
Source: autotools-dev
Binary: autotools-dev
Architecture: source all
Version: 20090427.1
Distribution: unstable
Urgency: low
Maintainer: Henrique de Moraes Holschuh h...@debian.org
Changed-By: Henrique de Moraes Holschuh h...@debian.org
Description: 
 autotools-dev - Update infrastructure for config.{guess,sub} files
Closes: 482716
Changes: 
 autotools-dev (20090427.1) unstable; urgency=low
 .
   * Sync to upstream git 2009-04-27 [93b5037172b15ad2]
   * debian/control:
 + Update the package description to not mention CVS
 + Add homepage field
 + Update to standards version 3.8.0
   * debian/copyright: add upstream's copyright line, and update for the
 git repository location
   * README.Debian: switch to the current best practice, which is to
 rebuild the build system completely on every build. Also, make it
 clear that config.sub and config.guess are to be refreshed on the
 build target prerequisites, and not on the clean target.
 (Closes: #482716)
   * debian/*: move some files to match a newer style of debhelper file
 naming.
Checksums-Sha1: 
 ceb45593ced4092e27347b510e91884094bbb519 1096 autotools-dev_20090427.1.dsc
 d6bd57071edf9a27f2b7ad335298da62c9e4739a 64140 autotools-dev_20090427.1.tar.gz
 c23b1801888da84f6276088a22402c15b19014b5 64620 autotools-dev_20090427.1_all.deb
Checksums-Sha256: 
 33990f4d8ac0b249104ffecfbd2f85b029b3bbf6319af9362bfbdc9c81fb84ad 1096 
autotools-dev_20090427.1.dsc
 2d092d62f6269d6ae02b2774c16e03137ea1bc5834e13bea75e4c14fe1eabee2 64140 
autotools-dev_20090427.1.tar.gz
 a4f23ef2df6ca78d2b8356807efdd51af7a3633388bf6d58282a8341ae967a1c 64620 
autotools-dev_20090427.1_all.deb
Files: 
 9ac1226bcb1693cab35f153e9bbce3b7 1096 devel optional 
autotools-dev_20090427.1.dsc
 a61e34a9c8bcee3cea3a080094d649fa 64140 devel optional 
autotools-dev_20090427.1.tar.gz
 f1be7027cd67923a73c532d1e52f2f3c 64620 devel optional 
autotools-dev_20090427.1_all.deb

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

iQEcBAEBAgAGBQJJ/i8TAAoJEG99OTV/EEh0BR0H/RT314fKxxdB9gpO9rualAo1
82Z3zT4rU79yOvJjsA55MyzUvdUtug5ULt2kDoEp+imnT5heXxHm178Uup8Iy97W
K4MX9oxsCDEK4YxghRe9Q1ktpESdR4j4XGpdMnTONtVWgPFC8Vu6+I++5OhJb0pA
HB5iOMUa9bHpcdavh7BubKBDPAH9c3kG/5TLx2D1tVRR1KFRpvhjDMdbUPF4wfdg
Lo3HXeEt0I/R0b11UyAUpwWA7ZvWmlad14pL2O253la1qcVTmO7jOb3+PI9ZNS3d
09GCiGXreu+uFp4UJ/eqAvYwzfjPjGgp+QnnfLFzC1aAt1mrUwBgMuSrqG1v2ls=
=u+0q
-END PGP SIGNATURE-


Accepted:
autotools-dev_20090427.1.dsc
  to pool/main/a/autotools-dev/autotools-dev_20090427.1.dsc
autotools-dev_20090427.1.tar.gz
  to pool/main/a/autotools-dev/autotools-dev_20090427.1.tar.gz
autotools-dev_20090427.1_all.deb
  to pool/main/a/autotools-dev/autotools-dev_20090427.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 yui 2.7.0b-1 (source all)

2009-05-03 Thread Jaldhar H. Vyas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 22:47:20 -0400
Source: yui
Binary: libjs-yui libjs-yui-doc
Architecture: source all
Version: 2.7.0b-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Jaldhar H. Vyas jald...@debian.org
Description: 
 libjs-yui  - Yahoo User Interface Library
 libjs-yui-doc - Documentation and examples for the Yahoo User Interface Library
Closes: 516259
Changes: 
 yui (2.7.0b-1) unstable; urgency=low
 .
   * New upstream version packaged at last. (Closes: #516259)
   * Moved from experimental to unstable.
   * Thanks Thomas Koch. tho...@koch.ro for the following changes:
 + delete *.orig files from upstream source
 + Added release notes dir to debian/libjs-yui.install
 + top-level README doesn't exist anymore.  Removed it.
   * Don't need lintian overrides anymore.
   * Standards version bumped up to 3.8.1
   * Updated description in debian/control
Checksums-Sha1: 
 4b955c9b3a89a1bafc671e4dd90a10b63ae0d3dc 1183 yui_2.7.0b-1.dsc
 86c403aa4f25fecdf1160918d6bfa07755b5c7e9 9547662 yui_2.7.0b.orig.tar.gz
 7ff895f457f5d1bf85c37814d2329dd15f170ba9 4171 yui_2.7.0b-1.diff.gz
 9680c20504592df6991229bfe8dcdc69856adfbb 2356590 libjs-yui_2.7.0b-1_all.deb
 2c70db2f42a21d31a724e85420600686303e4900 6995674 libjs-yui-doc_2.7.0b-1_all.deb
Checksums-Sha256: 
 e2093437b64b3ea7c95f9c79f1f79720911fb2c5e21c5067890fc4cd0745bbc4 1183 
yui_2.7.0b-1.dsc
 953ccc33fd7ffbef1cd3653fbc2ca4346f3c6abe07e13cca3300dd5a2925ebed 9547662 
yui_2.7.0b.orig.tar.gz
 124d20e8f396ee9c0f0f98434a8d43323c3e58d5e062e2e9fc38b55dc163f22c 4171 
yui_2.7.0b-1.diff.gz
 a6c964376801cdae6a468f684eb2831974bdb1e364aada2f412c0b4215c6b9d0 2356590 
libjs-yui_2.7.0b-1_all.deb
 dcd56a8d02b936fe8ae4117bdac53a9bd7fc02d24a128817204536e736f8cd05 6995674 
libjs-yui-doc_2.7.0b-1_all.deb
Files: 
 e83a758fa8eb14e9951a81a7e39b8932 1183 web optional yui_2.7.0b-1.dsc
 2650e344f7553b742fccc2162a0a878e 9547662 web optional yui_2.7.0b.orig.tar.gz
 20a88b3cfa0bf357c44e4548ab544ea5 4171 web optional yui_2.7.0b-1.diff.gz
 b3bb3d354edc5d2114db8296d3d65679 2356590 web optional 
libjs-yui_2.7.0b-1_all.deb
 195ac23e7f097be9e22f6940cede95fc 6995674 doc optional 
libjs-yui-doc_2.7.0b-1_all.deb

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

iD8DBQFJ/mAw2kYOR+5txmoRAhowAJ9kr8THVvaU58ntflpwNBpr5hLK3ACeKzPs
yPK/IlMusCIMeYsw1eb0h30=
=zYJW
-END PGP SIGNATURE-


Accepted:
libjs-yui-doc_2.7.0b-1_all.deb
  to pool/main/y/yui/libjs-yui-doc_2.7.0b-1_all.deb
libjs-yui_2.7.0b-1_all.deb
  to pool/main/y/yui/libjs-yui_2.7.0b-1_all.deb
yui_2.7.0b-1.diff.gz
  to pool/main/y/yui/yui_2.7.0b-1.diff.gz
yui_2.7.0b-1.dsc
  to pool/main/y/yui/yui_2.7.0b-1.dsc
yui_2.7.0b.orig.tar.gz
  to pool/main/y/yui/yui_2.7.0b.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 xplanet 1.2.1-1 (source all amd64)

2009-05-03 Thread Ruben Molina
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 27 Apr 2009 10:06:47 -0500
Source: xplanet
Binary: xplanet xplanet-images
Architecture: source amd64 all
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Ruben Molina rmol...@udea.edu.co
Changed-By: Ruben Molina rmol...@udea.edu.co
Description: 
 xplanet- planetary body renderer
 xplanet-images - imagery for xplanet
Changes: 
 xplanet (1.2.1-1) unstable; urgency=low
 .
   * New upstream release
   * New debian/rules from experiemntal migrated to unstable
   * Standards bumped to 3.8.1 (no changes)
Checksums-Sha1: 
 81e14606a2fe3147885de2f9236fb7d3e06567e0 1197 xplanet_1.2.1-1.dsc
 c3810c303af8f0cb40520112d9cd1f24fa8b42b5 1211663 xplanet_1.2.1.orig.tar.gz
 c6b590c352ce8a7292cc7ba0d24da4d9a3d28ef4 19503 xplanet_1.2.1-1.diff.gz
 c26715e80775a5589edd8413ab19cf0935dffef4 591588 xplanet_1.2.1-1_amd64.deb
 f5df2c9e046bfee6633cbb965d7f847f5f3aed4c 436836 xplanet-images_1.2.1-1_all.deb
Checksums-Sha256: 
 98655f8e640863182127178d3588a44351446d93724356a2bd512b5c30598fc4 1197 
xplanet_1.2.1-1.dsc
 f52d57e27747bc6faa5f3fb4a7f0b80c5fe810a1c303c078666eca97832ae5de 1211663 
xplanet_1.2.1.orig.tar.gz
 ec5a5fc9f3561e5095a7332ea0d1ff4c8406884dfd58e2ed36e25964674893f1 19503 
xplanet_1.2.1-1.diff.gz
 eb1d18294368cf54ce269cab435abdfa97fa2ada14c60bcf16d394597a7a236c 591588 
xplanet_1.2.1-1_amd64.deb
 a9aa6ed6ed24b6815de0855ee8d81d50cbfabe6fee15080d89a7bc45b5005a83 436836 
xplanet-images_1.2.1-1_all.deb
Files: 
 4cff8490678c5baa9cd273145ba632bb 1197 graphics optional xplanet_1.2.1-1.dsc
 5dca0369ca64fa3c006b616b72b5e1cf 1211663 graphics optional 
xplanet_1.2.1.orig.tar.gz
 18f1c04d59911d49b9d48e42535140da 19503 graphics optional 
xplanet_1.2.1-1.diff.gz
 a1306dc36e14be0541d6ac8a62a873ed 591588 graphics optional 
xplanet_1.2.1-1_amd64.deb
 f98ee305ac7a0a4aec0415a9fb7e94c6 436836 graphics optional 
xplanet-images_1.2.1-1_all.deb

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

iEYEARECAAYFAkn+cAEACgkQgY5NIXPNpFW+QgCg0PJm3NFYla4wI/mBfD7PgCfv
ci8AnRH+WoELxp9offlT7uICpuZseQxo
=v4G8
-END PGP SIGNATURE-


Accepted:
xplanet-images_1.2.1-1_all.deb
  to pool/main/x/xplanet/xplanet-images_1.2.1-1_all.deb
xplanet_1.2.1-1.diff.gz
  to pool/main/x/xplanet/xplanet_1.2.1-1.diff.gz
xplanet_1.2.1-1.dsc
  to pool/main/x/xplanet/xplanet_1.2.1-1.dsc
xplanet_1.2.1-1_amd64.deb
  to pool/main/x/xplanet/xplanet_1.2.1-1_amd64.deb
xplanet_1.2.1.orig.tar.gz
  to pool/main/x/xplanet/xplanet_1.2.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 xbattbar 1.4.3-1 (source i386)

2009-05-03 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 04 May 2009 09:04:05 +0400
Source: xbattbar
Binary: xbattbar
Architecture: source i386
Version: 1.4.3-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 xbattbar   - Display battery status in X11
Closes: 517682 524997 526834
Changes: 
 xbattbar (1.4.3-1) unstable; urgency=low
 .
   * New maintainer, closes: #524997, #526834;
   * Upstream version has been incremented.
   * Upstream make system was rewritten.
   * Added ACPI support for xbattbar.
   * Fixed description, closes: #517682.
   * Unnecessary dependencies have been dropped.
   * Manpage has been updated.
   * Standards-Version has been bumped to 3.8.1.
   * GIT-repo has been created on git.debian.org.
Checksums-Sha1: 
 4dca271de6f64dd595df258cce7c634d6b6e2bfe 1096 xbattbar_1.4.3-1.dsc
 6d76fc571b574ef7948429b180f5161ee8668727 15722 xbattbar_1.4.3.orig.tar.gz
 06feb59872d12010f5cf99789a50adf39751126f 2688 xbattbar_1.4.3-1.diff.gz
 cd764543c94a017cc8e8f045df4bdda21a3f23db 14050 xbattbar_1.4.3-1_i386.deb
Checksums-Sha256: 
 d8fc7bc4e887430d6c11aaa6212c856476f2e02b25f7439a0259de48d4e30a9e 1096 
xbattbar_1.4.3-1.dsc
 8f4963bac20836538530a738b7b921543e1381ea01f457c26937efba981292d9 15722 
xbattbar_1.4.3.orig.tar.gz
 70daa85fe88717cd788868217c1fab65574ee642f38b7966f914bbfa990589c1 2688 
xbattbar_1.4.3-1.diff.gz
 edfbca4d113fc3c6c549cad3f6c441925ade78af91c93dce15a7a01ae619e19c 14050 
xbattbar_1.4.3-1_i386.deb
Files: 
 f8f46486951e131f7c67240d69c571bc 1096 x11 optional xbattbar_1.4.3-1.dsc
 4d96b9541fe5128dcb051b4549e2e65e 15722 x11 optional xbattbar_1.4.3.orig.tar.gz
 5d70b98dda0a5439362bd26c15e2f2c0 2688 x11 optional xbattbar_1.4.3-1.diff.gz
 ef4560b740f60785cc4eb30683842c98 14050 x11 optional xbattbar_1.4.3-1_i386.deb

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

iEYEARECAAYFAkn+epMACgkQq4wAz/jiZTc/JgCdFdfOPt78F4A9d+252lKfqGOG
T2cAnj5uEzMVTN4N5lBRv+2oSPb7P/XC
=4k2j
-END PGP SIGNATURE-


Accepted:
xbattbar_1.4.3-1.diff.gz
  to pool/main/x/xbattbar/xbattbar_1.4.3-1.diff.gz
xbattbar_1.4.3-1.dsc
  to pool/main/x/xbattbar/xbattbar_1.4.3-1.dsc
xbattbar_1.4.3-1_i386.deb
  to pool/main/x/xbattbar/xbattbar_1.4.3-1_i386.deb
xbattbar_1.4.3.orig.tar.gz
  to pool/main/x/xbattbar/xbattbar_1.4.3.orig.tar.gz


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



Accepted avogadro 0.9.4-1 (source i386)

2009-05-03 Thread Jordan Mantha
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 03 May 2009 19:52:02 -0700
Source: avogadro
Binary: avogadro libavogadro0 libavogadro-dev
Architecture: source i386
Version: 0.9.4-1
Distribution: unstable
Urgency: low
Maintainer: Debichem Team debichem-de...@lists.alioth.debian.org
Changed-By: Jordan Mantha laserj...@ubuntu.com
Description: 
 avogadro   - Molecular Graphics and Modelling System
 libavogadro-dev - Molecular Graphics and Modelling System (development files)
 libavogadro0 - Molecular Graphics and Modelling System (library)
Changes: 
 avogadro (0.9.4-1) unstable; urgency=low
 .
   * New upstream release.
 .
   [ Daniel Leidert ]
   * debian/control (Build-Depends): Use Boost 1.38.
 (Standards-Version): Bumped to 3.8.1 (no other changes).
 (Vcs-Svn): Fixed vcs-field-uses-not-recommended-uri-format.
   * debain/rules (DEB_CMAKE_EXTRA_FLAGS): Disable rpath support.
 .
   [ Michael Banck ]
   * debian/patches/molpro_orbitals.patch: Updated.
   * debian/patches/ignore_f_orbitals.patch: New patch, tries to properly
 ignore f-type orbitals when calculating molecular orbitals.
Checksums-Sha1: 
 efcd3a4af2c70b4322ce69f2a372f49a0ae52192 1571 avogadro_0.9.4-1.dsc
 864a4e833baa156c6759964c961adc4d257f4b86 4734300 avogadro_0.9.4.orig.tar.gz
 c9e2f17ea80a46a1feda39c602ff6e958f684808 11807 avogadro_0.9.4-1.diff.gz
 a28c66ebaa1d7574bbdf3f609ce8fb1ad8ee4bb4 2236584 avogadro_0.9.4-1_i386.deb
 4d492c3b0b42bb6a1eaa13aaa88db191386f44db 776736 libavogadro0_0.9.4-1_i386.deb
 658637abf45b3ede4d0b0ec13e700e3b8a884591 204806 
libavogadro-dev_0.9.4-1_i386.deb
Checksums-Sha256: 
 0764d51f81c086526cdaf9d3d69e4bb6dd6904032052daa8f610d8aded70a0c7 1571 
avogadro_0.9.4-1.dsc
 7c94ad8d3f6942be60b40ce73748f698401fcf1d6093b04307257dc200f2 4734300 
avogadro_0.9.4.orig.tar.gz
 ec085810df0fafdc02b7c0dc8041fbe5262b9a06e26ee73f6cdfbe5055d3ecee 11807 
avogadro_0.9.4-1.diff.gz
 0f66032b665e422c35d9d73dcbffb85764f1d0162b5b91a470c26293e0f16cb3 2236584 
avogadro_0.9.4-1_i386.deb
 9caa7b0d610e07b0aaa1651f878e33fe69bd9fb825f5003dc91d8b421b295438 776736 
libavogadro0_0.9.4-1_i386.deb
 1d1f0f218bef13c8ad05149fe1759dcf9b299d753611e89d1dc2c4dfd28b1083 204806 
libavogadro-dev_0.9.4-1_i386.deb
Files: 
 e59b818ce7b8d9dc1b685faec0ce01d0 1571 science optional avogadro_0.9.4-1.dsc
 2e4e76a390ef6e9d373430ce7cc16eea 4734300 science optional 
avogadro_0.9.4.orig.tar.gz
 2482e78fd2ff06fc7fa0b16ec8de4ed7 11807 science optional 
avogadro_0.9.4-1.diff.gz
 387734c56e1a057056221d0efcd18881 2236584 science optional 
avogadro_0.9.4-1_i386.deb
 4fbb6b2a0a1b3e51c8692f96888625fa 776736 libs optional 
libavogadro0_0.9.4-1_i386.deb
 1fa8d27a351027403bd7136f6f99c407 204806 libdevel extra 
libavogadro-dev_0.9.4-1_i386.deb

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

iEYEARECAAYFAkn+e6YACgkQ3mtKw5J0KzOFdwCcC0/TOaQ3aNEOx0qO5KnQ0qu2
lDAAn2pAqzJ+TA383uizHmycznD5cMiL
=Izn1
-END PGP SIGNATURE-


Accepted:
avogadro_0.9.4-1.diff.gz
  to pool/main/a/avogadro/avogadro_0.9.4-1.diff.gz
avogadro_0.9.4-1.dsc
  to pool/main/a/avogadro/avogadro_0.9.4-1.dsc
avogadro_0.9.4-1_i386.deb
  to pool/main/a/avogadro/avogadro_0.9.4-1_i386.deb
avogadro_0.9.4.orig.tar.gz
  to pool/main/a/avogadro/avogadro_0.9.4.orig.tar.gz
libavogadro-dev_0.9.4-1_i386.deb
  to pool/main/a/avogadro/libavogadro-dev_0.9.4-1_i386.deb
libavogadro0_0.9.4-1_i386.deb
  to pool/main/a/avogadro/libavogadro0_0.9.4-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



Re: hola

2009-05-03 Thread Mauro Lizaur
On Sun, 03 May 2009, Walter Alejandro Rodriguez Manes wrote:

Hola gente de devel-spanish mi nombre es walter y estoy buscando un
paquete .deb que me sirva para subir ficheros  y archivos a cuentas de
almacenamiento tipo 4shared.
Les agradezco si me pueden ayudar.
Walter
 

normalmente con un navegador podes subir.

-- 
JID: lavaram...@jabber.org | http://lusers.com.ar/
2B82 A38D 1BA5 847A A74D 6C34 6AB7 9ED6 C8FD F9C1


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