Re: Bug#519339: ITP: tmux -- an alternative to screen, licensed under 3-BSD

2009-03-14 Thread Russell Coker
On Sat, 14 Mar 2009, Mike Hommey m...@glandium.org wrote:
  [Mike Hommey]
 
   Screen does that too, so that would hardly be less secure than screen.
 
  Well, if by in /tmp you mean in /var/run/screen.

 Well, that's a Debian thing. Upstream default is /tmp/screens, and last
 time I checked on RH, it was there too.

RHEL 5.2 has /var/run/screen.  Debian/Lenny and RHEL 5.2 work in a similar 
way, you have a setgid screen program and the /var/run/screen directory is 
writable by the group.  In Debian there is an init.d script to create that 
directory (presumably to support tmpfs /var/run) while in RHEL it is 
installed as part of the package.

RHEL 4.7 has the directory /tmp/screens for root and /tmp/uscreens for user 
sessions.  /tmp/uscreens is owned by the first non-root user who ran screen 
and group writable.  If that user is hostile (or even clueless) then chmod 
700 /tmp/uscreens will make it unusable for others.  I don't know whether 
they can do anything really bad, screen appears to check the ownership of the 
socket so it should be OK apart from DOS attacks.


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



Re: Breaking /emul/ia32-linux for squeeze

2009-03-14 Thread Steve Langasek
On Fri, Mar 13, 2009 at 05:57:32PM +0100, Simon Richter wrote:
 On Wed, Mar 11, 2009 at 10:10:13PM -0700, Steve Langasek wrote:

  But moving the 32-bit libs to /usr/lib32 does not make us
  standards-conformant on amd64, because the FHS (yuckily) standardized on
  storing the *32-bit* libs in /usr/lib on this architecture, with 64-bit libs
  in /usr/lib64.

 That is actually beneficial if we wanted to merge both architectures into
 one, which would IMO be the sanest thing to do,

IMO that's not a sane thing to do at all.

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


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



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

2009-03-14 Thread Manoj Srivastava
On Fri, Mar 13 2009, Manoj Srivastava wrote:


 There are several things I dislike about the first option. 
  1. I do not like that policy would turn around 15 years of convention
 and suddenly outlaw $(MAKE) -f debian/rules foo. This will break
 many of my packages; and I  do not think that that is
 justified. There are better solutions than the ones proposed.
  2. As a packager, it is easy enough to over ride the setting
 externally, by setting my own variables; but this makes it hard for
 the end user to set the variables. I can certainly see cases where
 one-size-does-not-fit all cases; so making it easy to change the
 flags on a per package, per site, and a per compilation case can be,
 and should be addressed.
  3. dpkg-buildpackage is probably the wrong place to put this solution
 in.

 As a simple, off the cuff design, I can see hewing closer to the
  Gentoo use flags solution, and putting in /etc/debian-build.mk makefile
  snippet, which contains the default setting of the flags.

  A) Project wide flags can be set by making that file part of an
 essential package (perhaps dpkg).
  B) The site admin can make any changes they want, like adding SELinux
 or hardening flags in that file. Regular conffile handlig will allow
 site admins to be aware of any project wide changes. This allows
 each site to set variables for that site.
  C) Each package can include that file (-include, so no errors if file
 does not exist), and then override whatever variables they want in a
 package specific variation.
  D) The user can set the variable on the command line, which will
 override the Makefile versions of the variable, for a one off per
 compilation change.

 The fact that dpkg-buildpackage's setting the variables is not
  easily configurable, and  presents to make as though it was set
  on the commandline, and thus making it hard for the *USER* to set the
  flag variables via env variables, is, in my opinion, a major bug.

 Of course, this requires that every package rules file will need
  the -include /etc/debian-build.mk at top, which makes it less than
  ideal, but I am sure we can come up with a better solution.

 I consider the issue of being able to set these flags on these
  levels fairly important;  if I have missed some use case of where one
  might want to set defaults otherwise (buildd's can set arch specific
  flags just like site admins can), please feel free to point it out.


The external file is nice in the fact that it decouples the
 installation of the essential package and the rules files; this might
 be useful for backported packages as well. In the rules file, one may
 check for the presence of the file to be included, and take different
 action based on whether it is present or not.

Packages may continue to move over to supporting the common
 included file on their own timetable, by just not including the snippet
 until the ya re ready. And the snippet may take care of tsome of the
 DEB_BUILD_OPTIONS stuff.

So. Here is a little snippet that sets some of the flags (this
 is a demo only, I am not setting all the flags here that dpkg sets)

--8---cut here---start-8---
# set CC to $(DEB_HOST_GNU_TYPE)-gcc only if a cross-build is detected
ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
  CC=$(DEB_HOST_GNU_TYPE)-gcc
else
  CC = cc
endif

# Policy 10.1 says to make this the default
CFLAGS = -Wall -g

ifneq (,$(filter noopt,$(DEB_BUILD_OPTIONS)))
CFLAGS += -O0
else
CFLAGS += -O2
endif

## ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
## endif

ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
  STRIP   += -s
  LDFLAGS += -s
  INT_INSTALL_TARGET = install 
else
  INT_INSTALL_TARGET = install
endif

ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
MAKEFLAGS += -j$(NUMJOBS)
endif
--8---cut here---end---8---

manoj

-- 
The computing field is always in need of new cliches. Alan Perlis
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: Environment variables, debian/rules and dpkg-buildpackage

2009-03-14 Thread Mike Hommey
On Sat, Mar 14, 2009 at 02:30:59AM -0500, Manoj Srivastava wrote:
 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
   STRIP   += -s
   LDFLAGS += -s
   INT_INSTALL_TARGET = install 
 else
   INT_INSTALL_TARGET = install
 endif

I doubt dpkg-buildpackage sets LDFLAGS to -s. That would mean all
sources building -dbg binary packages would need to override this, which
is not the case.

Mike


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



Re: Breaking /emul/ia32-linux for squeeze

2009-03-14 Thread Tollef Fog Heen
]] Goswin von Brederlow 

| Is that even true? /lib32 and /usr/lib32 are system library paths
| while the multiarch dirs are custom paths added via
| /etc/ld.so.conf.d/x86_64-linux-gnu.conf. I think they come last.

While I haven't investigated the load order, my
/lib/ld-linux-x86-64.so.2 seems to have {,usr}/lib/x86_64-linux-gnu/ in
it (but after /lib and /usr/lib), so I suspect the file in
/etc/ld.so.conf.d isn't needed?

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


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



Forcing version on dependency, how?

2009-03-14 Thread Jean-Yves Avenard
Hi.

I'm trying to build a package so it depends on a specific version of a library.

I carefully read http://www.debian.org/doc/maint-guide/index.en.html

but didn't get the answer I was looking for.

In my debian/control file I have for a given package:
Depends: ${misc-depends}

Which will install all the dependencies as required ; however it
creates a dependency on a newer library I previously installed which
doesn't ship with the system. I know that my package will work with
the standard library.

Is there a way to force which version of the dependency is going to be
installed?
Like right now, my package automatically add a dependency to version
1.0.19 of the library, I want that dependency to be on version 1.0.17

The only way I've found so far is to remove ${misc-depends} and set
manually all the dependencies..
But obviously this isn't an ideal solution, as I could very easily
forget about a dependency in the future.

What I tried to do is in the debian/rules add:
dh_makeshlibs -a -V 'libname (= 1.0.17)'

but this still generate a dependency as:
shlibs-depends=libartsc0 (= 1.5.9), libname (= 1.0.17), libname ( 1.0.19)

Which I don't know how it will behave...

Is there a way to get the dependency to be automatically generated ;
as well as specifying a given version of a dependency?

Any help or recommendations would be greatly appreciated.

Thank you
Jean-Yves


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



Re: Forcing version on dependency, how?

2009-03-14 Thread Adeodato Simó
Hello, Jean-Yves.

Please mail your questions about packaging to debian-ment...@lists.debian.org.

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai


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



Re: Forcing version on dependency, how?

2009-03-14 Thread Jean-Yves Avenard
2009/3/14 Adeodato Simó d...@net.com.org.es

 Hello, Jean-Yves.

 Please mail your questions about packaging to
 debian-ment...@lists.debian.org.

 --
 - Are you sure we're good?
 - Always.
-- Rory and Lorelai


I'm not sure I like to classify as newbie


Re: BDF Considered Harmful?

2009-03-14 Thread Stefano Zacchiroli
On Fri, Mar 13, 2009 at 05:36:27PM -0700, Paul Hardy wrote:
  A BDF file can contain any number of properties describing the font
  in the header, for example CAP_HEIGHT and X_HEIGHT.  Maybe there's
  no harm in losing this information through format conversion.  I
 
  This is a precise example of what we need to no. That Maybe needs to
  be clarified.
 
 A BDF file contains a section beginning with STARTPROPERTIES and
 ending with ENDPROPERTIES.  There are common properties and
 vendor-specific properties (which are allowable).  You can see the
 list of standard X11R6 properties here:

It looks like my point didn't pass through. I don't care how much
information is lost in the translation _as long as_ the information is
useless for the final user. So it is pointless that you mention all
the info which is lost, *unless* you also explain what are the
practical effects of loosing that info.

Until you do so, the Maybe will still need to be clarified.

 As long as we have the original BDF versions of fonts in source
 packages though, at least we're not discarding any information.

Ditto. So, according to this, not having BDF files into binary
packages does no harm.

  Also, in your initial mail it seems to me that you reach the
  conclusion that plain .bdf.gz does not work in all cases. If this is
  so, we have another reason for this discussion to be pointless.
  Or am I missing something?
 
 A .bdf font file works perfectly on Debian

... but is bloated, so we will not have it in binary packages, so it
is not an option. Agreed?

 but a gzipped .bdf.gz version doesn't work.

Wonderful. So, until this is fixed, we are discussing a non viable
solution. Agreed?

It seems to me that the only remaining option for having .bdf.gz fonts
accepted in binary packages would be to implement the needed changes
to make them work. Also, you will need to address the issues raised by
Steve, either by providing a random access mechanism to individual
glyphs, or by showing that the performance loss is negligible.

Cheers.

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


signature.asc
Description: Digital signature


One-time cron output?

2009-03-14 Thread Adeodato Simó
Hello,

I wanted to gather some opinions on this matter. I’ve recently applied
to the mlocate package a patch I received to skip running the daily
update of the database if the system is running on batteries.

When that happens, the daily cron script emits a warning like “System on
battery power, not running updatedb.” I think it’s going to be bad
emitting that warning each time mlocate skips running updatedb, because
it could be a lot of times.

On the other hand, I don’t like the idea of being completely silent,
because the database could go un-updated for a long time without the
user ever knowing why.

I’d like to make the script check for the existence of a file like
/var/lib/mlocate/on_battery_warning_done.touch, and only emit the
warning if it does not exist (and then touch it). (And possibly prefix
the warning with the words “One-time warning:”.)

Does this sound appropriate, or does it sound like an overkill? If it
doesn’t sound appropriate, do you think always emitting the warning, or
never emitting it, is more appropriate?

Thanks,

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai


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



Re: Forcing version on dependency, how?

2009-03-14 Thread Vincent Danjean
Jean-Yves Avenard wrote:
 2009/3/14 Adeodato Simó d...@net.com.org.es
 
 Hello, Jean-Yves.

 Please mail your questions about packaging to
 debian-ment...@lists.debian.org.

 --
 - Are you sure we're good?
 - Always.
-- Rory and Lorelai


 I'm not sure I like to classify as newbie

I do not think that only newbie are on debian-mentors...

Read the docs about shlibs files and/or symbols files (for the library
package, not yours in your case)
Nevertheless, manually downgrading version in library dependencies must
only be done for private packages, not packages uploaded to debian.

  Regards,
Vincent


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



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

2009-03-14 Thread Stephen Gran
This one time, at band camp, Raphael Hertzog said:
 [ Bcced to -devel and -dpkg, discussion should happen on -policy ]
 
 Hello,
 
 we have an unfortunate situation where the practice in dpkg-buildpackage
 and the policy do not match fully.
 
 I tried to summarize the problem here:
 http://wiki.debian.org/Teams/Dpkg/DebianRules
 
 I want to resolve this problem. I see two solutions:
 
 * either we modify policy to mandate the set of environment variables that
   dpkg-buildpackage sets
 
 * or we roll-back changes to dpkg-buildpackage and design something else
   that provide the same feature in terms of distribution-wide control of
   default build options. (I ignore the DEB_VENDOR feature, it can be easily
   replaced with dpkg-vendor but the build options case is much more tricky
   to get right)
 
 
 In terms of efforts, the first solution is the easiest. But we aim at the
 _right_ solution so feel free to design something that makes the second
 solution viable.

I'm more than slightly uncomfortable with mandating a particular tool as
the only way to build packages (and mandating something that's different
than current policy at that).  I'd be much happier with a Makefile
snippet and a conversion period.  I know it's more work and slower to
migrate to, but it seems to me to have the advantage of being the most
flexible.

Cheers,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :sg...@debian.org |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#519697: ITP: kio-gopher -- gopher KIO slave for KDE4

2009-03-14 Thread Pino Toscano
Package: wnpp
Severity: wishlist
Owner: Pino Toscano p...@kde.org

* Package name: kio-gopher
  Version : 0.1.2
  Upstream Author : Albert Astals Cid aa...@kde.org
* URL : http://www.kde.org/
* License : GPL
  Programming Lang: C++
  Description : gopher KIO slave for KDE4

Provides support for the gopher: protocol in Konqueror and in other KDE
applications.

This allows you to display web contents using the Gopher protocol.

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (850, 'testing'), (800, 'unstable'), (750, 'experimental')
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: One-time cron output?

2009-03-14 Thread Andreas Metzler
Adeodato Simó d...@net.com.org.es wrote:
 I wanted to gather some opinions on this matter. I've recently applied
 to the mlocate package a patch I received to skip running the daily
 update of the database if the system is running on batteries.

 When that happens, the daily cron script emits a warning like System on
 battery power, not running updatedb. I think it's going to be bad
 emitting that warning each time mlocate skips running updatedb, because
 it could be a lot of times.

 On the other hand, I don't like the idea of being completely silent,
 because the database could go un-updated for a long time without the
 user ever knowing why.
[...]

IMHO the right thing to would be for mlocate (in locate mode, not in
updatedb mode) to issue a warning if the DB was too old instead of the
way you suggested.

cu andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'


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



Re: Bug#518752: update-exim4.conf: line 38: $@: unbound variable

2009-03-14 Thread Andreas Metzler
On 2009-03-08 Alban browaeys pra...@yahoo.com wrote:
 From \amethyst on freenode #bash  (Neil Moore) :
 \amethyst it is a bug I think
 \amethyst that you still get the error even with $...@-foo}
 \amethyst but $...@+$@}  probably shouldn't error out
 \amethyst since ${foo+bar}  does not
 \amethyst or ${foo+$foo}

 I believe this should be cloned to bash (kept here too because the
 current $@ is to be fixed either way).
[...]

Hello,

I think I am going to drop set -u since I have got the feeling that
the decreased readability due the workarounds for $@ and $* outweighs
the benefit of set -u.

I still consider this upstream change a bad idea. There is a reason
why $@ expands to nothing instead of an empty string if there are no
commandline args.
cu andreas
-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'


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



Re: HD TV as Monitor

2009-03-14 Thread Josselin Mouette
Le vendredi 13 mars 2009 à 16:04 -0400, Dale Scheetz a écrit :
 I have a Samsung 42 HD TV.

 Does anyone have any idea what the mode line should look like for these 
 devices?

There are a few issues with getting such devices work with X, but it is
possible.

1. You probably need a DVI→HDMI adapter in all cases, since these
devices refuse to display 1080p with a VGA cable (you know, security,
DRM, blahblah, LOL).

2. I guess it depends on the TV, but mine requests 1080i through EDID
and X doesn’t really understands what this means. It generates a
1920×540 modeline in this case, and of course this doesn’t work.

3. X-generated modelines are meant for CRT or LCD monitors, not for TVs
which need much lower synchronization times.

4. X prefers using its own modelines even if you specify others by hand,
so you have to specify another mode name.

The result is the following configuration:

Section Device
Identifier  ATI Radeon trucmuche
Driver  ati
Option  IgnoreEDIDtrue
Option  Monitor-DVI-0 Configured Monitor
EndSection

Section Monitor
Identifier  Configured Monitor
Modeline 1920x1080_p  143.64 1920 1944 2040 2128 1080 1082 1085 1125
Option  PreferredMode 1920x1080_p
EndSection

Section Screen
Identifier  Default Screen
Monitor Configured Monitor
Device  ATI Radeon trucmuche
DefaultDepth24
Subsection Display
Virtual 1920 1080
Depth   24
Modes   1920x1080_p
EndSubsection
EndSection

Cheers,
-- 
 .''`.  Debian 5.0 Lenny has been released!
: :' :
`. `'   Last night, Darth Vader came down from planet Vulcan and told
  `-me that if you don't install Lenny, he'd melt your brain.


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


Re: Breaking /emul/ia32-linux for squeeze

2009-03-14 Thread Steve Langasek
On Fri, Mar 13, 2009 at 12:05:42PM +0100, Goswin von Brederlow wrote:
  - multiarch will supersede all previous biarch implementations
  - multiarch will be before biarch in the search path

 Is that even true? /lib32 and /usr/lib32 are system library paths
 while the multiarch dirs are custom paths added via
 /etc/ld.so.conf.d/x86_64-linux-gnu.conf. I think they come last.

Multiarch is also intended to be a set of *system* library paths,
*superseding* biarch.  There's no reason one should be encoded in the linker
and the other should be tacked on via /etc/ld.so.conf.d.

 Obviously they haven't been strictly true for some time now. But it was
 always just a verry minor proportion of packages with biarch so having
 to add a conflicts or not was never thought of as a problem.

By you, perhaps.  I certainly considered the upgrade path.

  Taken together, this guarantees the newer libs would always be found before
  the older libs, so there's no need to do extra special-casing for those libs
  that were previously available in biarch form.

 Then any old programm might break. And you know how long 3rd party
 packages stay around.

Huh?

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


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



Will Mercene - GLAUBE ODER LIEBE

2009-03-14 Thread kontakt
It’s time for German R’n’B!!! Endlich ist es soweit. Ab jetzt könnt ihr die 
neue Single “GLAUBE ODER LIEBE” von “WILL MERCENE” runterladen unter 
http://mp3.de/musik/genre/band/020600/427820/31_2768054

Mehr über den R’n’B Sänger unter www.willmercene.com und 
www.myspace.com/willmercene





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



Re: Bug#466550: Pristine source from upstream VCS repository

2009-03-14 Thread Raphael Geissert
Ben Finney wrote:

 On 12-Mar-2009, Bernd Zeimetz wrote:
 Hi,
 
  The best way to get the exact sources for the current
  version probably should be a  new watch file
  (watch-current) which has a static version number in the
  regexp
 
 I don't see why this file would be needed, since a watchfile
 specifying ‘debian’ as the version already has this effect (according
 to the ‘uscan(1)’ manpage).

Er, no. 'debian' only indicates to uscan that the version from the latest
changelog entry should be the one compared with the one found from
upstream.  What you want in this case is the --download-version option that
was added some time ago. And if you want to, file a report requesting a
magical value of 'current' to be  supported, which would take the version
from the latest changelog entry, apply dversionmangle to it and check if it
is still available upstream and download.

Cheers,
Raphael Geissert



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



Re: Bug#466550: Pristine source from upstream VCS repository

2009-03-14 Thread Raphael Geissert
Just for the sake of the discussion:
A post-download command can be specified directly in the watch file, which
can be either uupdate, debian/rules get-orig-source, debian/dfsg.sh, or
whatever you want to call.

From uscan(1):
 Finally, if a third parameter (an action) is given in the watchfile line,
 this is taken as the name of a command, and the command 
   command --upstream-version version filename
 is executed, using either the original file or the symlink name.  A common
 such command would be  uupdate(1). (Note  that the calling syntax was
 slightly different when using watchfiles without a ‘version=...’ line;
 there the command executed was ‘command filename version’.)  If the
 command is  uupdate, then the --no-symlink option is given to uupdate as a
 first option, since any requested symlinking will already be done by
 uscan.  

Note that the 'version='less part is irrelevant nowadays, as that kind of
watch files should soon be unsupported.

Cheers,
Raphael Geissert



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



Re: One-time cron output?

2009-03-14 Thread Ben Hutchings
On Sat, 2009-03-14 at 11:28 +0100, Adeodato Simó wrote:
 Hello,
 
 I wanted to gather some opinions on this matter. I’ve recently applied
 to the mlocate package a patch I received to skip running the daily
 update of the database if the system is running on batteries.
[...]

I think such a policy should be implemented by the cron daemon or by a
common script, rather than by each package with a cron job.

Ben.

-- 
Ben Hutchings
Humour is the best antidote to reality.


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


Re: Bug#466550: Pristine source from upstream VCS repository

2009-03-14 Thread Raphael Geissert
Bernd Zeimetz wrote:
 My impression is that people become lazy
 since uscan and similar tools exist and are not enough in contact with
 their upstreams anymore. I may be wrong, though...
 Watch files are nice to have, but nothing more.
 

But there are cases where any attempt of contact with upstream is futile;
which is by the way an irrelevant argument for this discussion, as the
discussion is about the meaning of get-orig-source and not whether a tool
should be trusted or not.

Cheers,
Raphael Geissert


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



Re: Breaking /emul/ia32-linux for squeeze

2009-03-14 Thread Goswin von Brederlow
Steve Langasek vor...@debian.org writes:

 On Fri, Mar 13, 2009 at 12:05:42PM +0100, Goswin von Brederlow wrote:
  Taken together, this guarantees the newer libs would always be found before
  the older libs, so there's no need to do extra special-casing for those 
  libs
  that were previously available in biarch form.

 Then any old programm might break. And you know how long 3rd party
 packages stay around.

 Huh?

Say you have acrobat reader installed which depend on ia32-libs-gtk.
You also have libgtk2.0 (i386) installed with a newer version that
breaks acrobat reader (like it did last year). Then acrobat reader
will use the newer libgtk and break despide the dependencies all being
correct.

MfG
Goswin


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



Accepted yaws 1.81-1 (source i386 all)

2009-03-14 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 08:39:45 +0300
Source: yaws
Binary: yaws yaws-chat yaws-mail yaws-wiki yaws-yapp
Architecture: source i386 all
Version: 1.81-1
Distribution: unstable
Urgency: low
Maintainer: Erlang Packagers erlang-pkg-de...@lists.berlios.de
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 yaws   - High performance HTTP 1.1 webserver written in Erlang
 yaws-chat  - Chat application for Yaws web server
 yaws-mail  - Webmail application for Yaws web server
 yaws-wiki  - Wiki application for Yaws web server
 yaws-yapp  - An easy way to deploy applications for Yaws web server
Closes: 512814 519655
Changes: 
 yaws (1.81-1) unstable; urgency=low
 .
   * New upstrteam release which in particular fixes cleanup in man directory
 (closes: #519655).
   * Added zip and bzip2 to suggested dependencies as this would allow YAWS
 to deliver zipped or bzipped contents in addition to gzipped one (tar and
 gzip are required packages, so they always present). (closes: #512814).
   * Added several TeXLive packages to build-dependencies to build Postscript
 and PDF documentation which isn't prebuilt now.
Checksums-Sha1: 
 31ac9e3d4d437382ed8d7cf467f70cfafef4745a 1286 yaws_1.81-1.dsc
 76cffc02daa324840700f1de34260059e567bbd1 778868 yaws_1.81.orig.tar.gz
 5ff941558bcf3164ed8ce5b27d84cf4691923480 19004 yaws_1.81-1.diff.gz
 3298f43e0f5ce3accdb544c76461844e7e6b35c8 971638 yaws_1.81-1_i386.deb
 7bee52a9c005dd62c55d8695739e0986b0ded246 65342 yaws-chat_1.81-1_all.deb
 44d9b713a8bbfc154f83cccd0515a26ff13cc888 160626 yaws-mail_1.81-1_all.deb
 3ffe49f378a0a3f5af3130d3369488a013cfba07 201112 yaws-wiki_1.81-1_all.deb
 856ad4b924eec3a69f2bc824b965bf4399016f80 67202 yaws-yapp_1.81-1_all.deb
Checksums-Sha256: 
 c9ba3759b0ab9f0ab36ca5a8be24ae6117d60da3c673f42e8f82d87018d8ccac 1286 
yaws_1.81-1.dsc
 299734a5941838bfc7f13c6e3f2a078fe07015925bcf8c478f2ed44208e217c8 778868 
yaws_1.81.orig.tar.gz
 8f969c1478a0d6f6d6606739b726b615886d1f639aae6b642515f094899df26d 19004 
yaws_1.81-1.diff.gz
 bee956164f846bcc25c6c25fbc6ef9ae5b6cd18e9a3feeaf3d6b420909a72799 971638 
yaws_1.81-1_i386.deb
 1c7f0185645e5eb07d2e604220470298f26ea6d9e58826e989094c344b5d7631 65342 
yaws-chat_1.81-1_all.deb
 6e9ff570b72b8c361a52e418ba0a59b7b96a3e7b34541c61baea7f92ca74ae48 160626 
yaws-mail_1.81-1_all.deb
 e1b2d9f6ec1eaf2f27c77d1df9b3c126eec107507c8bed4675e2fd849082 201112 
yaws-wiki_1.81-1_all.deb
 1e165cdbc76fc6d98b54e1a61f533b95f96b43b843acbaef599a11f45fd2abfe 67202 
yaws-yapp_1.81-1_all.deb
Files: 
 23cf1cca1101524f8ba6a80a9a6e95ac 1286 web optional yaws_1.81-1.dsc
 fcf342ac4ba5c1f9a8ce751e1ec4d9f1 778868 web optional yaws_1.81.orig.tar.gz
 415e2beb0ffdaa50035bdeb919ec183e 19004 web optional yaws_1.81-1.diff.gz
 cfe30618a5fd613cc6dee24c72efda9d 971638 web optional yaws_1.81-1_i386.deb
 0f3bb054e06ceabbb407f2befd5fdcaa 65342 web optional yaws-chat_1.81-1_all.deb
 0ca58d1e709c66e9ec125cfaaa16c559 160626 web optional yaws-mail_1.81-1_all.deb
 4ddd5eed3c6dd28f8e298534170e0906 201112 web optional yaws-wiki_1.81-1_all.deb
 1db9bd53b7620b5eaeec9bb9fe3e0ee1 67202 web optional yaws-yapp_1.81-1_all.deb

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

iD8DBQFJu0hQIcdH02pGEFIRAiPqAJ9B6PHMsPPEMLGIDPgXma2Y3vERZwCeNY/S
dILm47Y6nuoh7FrsBFM30cQ=
=tePF
-END PGP SIGNATURE-


Accepted:
yaws-chat_1.81-1_all.deb
  to pool/main/y/yaws/yaws-chat_1.81-1_all.deb
yaws-mail_1.81-1_all.deb
  to pool/main/y/yaws/yaws-mail_1.81-1_all.deb
yaws-wiki_1.81-1_all.deb
  to pool/main/y/yaws/yaws-wiki_1.81-1_all.deb
yaws-yapp_1.81-1_all.deb
  to pool/main/y/yaws/yaws-yapp_1.81-1_all.deb
yaws_1.81-1.diff.gz
  to pool/main/y/yaws/yaws_1.81-1.diff.gz
yaws_1.81-1.dsc
  to pool/main/y/yaws/yaws_1.81-1.dsc
yaws_1.81-1_i386.deb
  to pool/main/y/yaws/yaws_1.81-1_i386.deb
yaws_1.81.orig.tar.gz
  to pool/main/y/yaws/yaws_1.81.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 freetype 2.3.9-3 (source amd64)

2009-03-14 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Mar 2009 23:09:50 -0700
Source: freetype
Binary: libfreetype6 libfreetype6-dev freetype2-demos libfreetype6-udeb
Architecture: source amd64
Version: 2.3.9-3
Distribution: unstable
Urgency: low
Maintainer: Steve Langasek vor...@debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 freetype2-demos - FreeType 2 demonstration programs
 libfreetype6 - FreeType 2 font engine, shared library files
 libfreetype6-dev - FreeType 2 font engine, development files
 libfreetype6-udeb - FreeType 2 font engine for the debian-installer (udeb)
Closes: 363937 381228 459802
Changes: 
 freetype (2.3.9-3) unstable; urgency=low
 .
   * Drop spurious Suggests: on libfreetype6-dev.  Closes: #363937.
   * debian/patches-freetype/enable-subpixel-rendering.patch: enable subpixel
 rendering features, used by libcairo and xft to provide LCD colour
 filtering.  This is considered no more or less evil than the bytecode
 interpreter which we also enable.
   * Move debian/libfreetype6.copyright to debian/copyright, and selectively
 install it to the single binary package in debian/rules; the same
 copyright file is used for all the binaries anyway via symlinks, so
 there's no reason it shouldn't ship as debian/copyright.
 Closes: #381228.
   * Clip redundant LICENSE.TXT and GPL.TXT files from the
 libfreetype6-dev package.  Closes: #459802.
Checksums-Sha1: 
 84dba2c3af571f1ca7c836a0f41e949d5ae53404 1182 freetype_2.3.9-3.dsc
 da18f3d40624ea6099aca2bf345b2044668a88ee 34034 freetype_2.3.9-3.diff.gz
 6f60a422e7aa4f7c295f58d125a8e7c613e97019 407512 libfreetype6_2.3.9-3_amd64.deb
 6d7ca663f43afed4c7b74e98daa53c049f4ff37b 730250 
libfreetype6-dev_2.3.9-3_amd64.deb
 24db5d552e8aac8db2eea984fbbcaee16cdefa6e 222876 
freetype2-demos_2.3.9-3_amd64.deb
 0db3b675bca81275162c132c4945ef7187a5435b 274726 
libfreetype6-udeb_2.3.9-3_amd64.udeb
Checksums-Sha256: 
 b2b3f530f34055e46fdbc438db619b8d73739d9479850bf199307daf13db5245 1182 
freetype_2.3.9-3.dsc
 9c399afb27936079f0db0cd0ea9f0e7f59c853c8edfec58ad3fec101a433b532 34034 
freetype_2.3.9-3.diff.gz
 6a9d7b89063488e082d5e030938afb8a9e336c1b83b578af13894e2121fa 407512 
libfreetype6_2.3.9-3_amd64.deb
 62c3b581fefdddaec8abbf63263f96fd75b47300d52f15908abc153b9b55b356 730250 
libfreetype6-dev_2.3.9-3_amd64.deb
 2688e91735f8e2238f880f6462457ff687ca30d59c9ef50e5e59179e589d12fe 222876 
freetype2-demos_2.3.9-3_amd64.deb
 6ce88e8341a2a2e63bf07c4168207b07f1e4decbd303baea127949d1bca4f24b 274726 
libfreetype6-udeb_2.3.9-3_amd64.udeb
Files: 
 efe3419910123420af06005a582e3276 1182 libs optional freetype_2.3.9-3.dsc
 ed1c4a6565c34c3d82071f0420ddc915 34034 libs optional freetype_2.3.9-3.diff.gz
 b7619822e372ba6f465ecab17d397552 407512 libs optional 
libfreetype6_2.3.9-3_amd64.deb
 ece6363a35245f4e0942e7e6743daca5 730250 libdevel optional 
libfreetype6-dev_2.3.9-3_amd64.deb
 47cbd5643d94f0c932951bcba6ac49c0 222876 utils optional 
freetype2-demos_2.3.9-3_amd64.deb
 ab23c5de7c873d5e62f321c7c3751409 274726 debian-installer extra 
libfreetype6-udeb_2.3.9-3_amd64.udeb
Package-Type: udeb

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

iD8DBQFJu0zLKN6ufymYLloRAuq+AJ9JBlV6jrdFfCXPZN0OhBj0cbMYAgCfTyQ3
LVh4ChQchldBmSgD/2pGbYY=
=iP6L
-END PGP SIGNATURE-


Accepted:
freetype2-demos_2.3.9-3_amd64.deb
  to pool/main/f/freetype/freetype2-demos_2.3.9-3_amd64.deb
freetype_2.3.9-3.diff.gz
  to pool/main/f/freetype/freetype_2.3.9-3.diff.gz
freetype_2.3.9-3.dsc
  to pool/main/f/freetype/freetype_2.3.9-3.dsc
libfreetype6-dev_2.3.9-3_amd64.deb
  to pool/main/f/freetype/libfreetype6-dev_2.3.9-3_amd64.deb
libfreetype6-udeb_2.3.9-3_amd64.udeb
  to pool/main/f/freetype/libfreetype6-udeb_2.3.9-3_amd64.udeb
libfreetype6_2.3.9-3_amd64.deb
  to pool/main/f/freetype/libfreetype6_2.3.9-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 libtk-img 1:1.3-release-8 (source all i386)

2009-03-14 Thread Sergei Golovan
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 08:42:09 +0300
Source: libtk-img
Binary: libtk-img libtk-img-dev libtk-img-doc
Architecture: source all i386
Version: 1:1.3-release-8
Distribution: unstable
Urgency: high
Maintainer: Sergei Golovan sgolo...@debian.org
Changed-By: Sergei Golovan sgolo...@debian.org
Description: 
 libtk-img  - Extended image format support for Tcl/Tk (runtime)
 libtk-img-dev - Extended image format support for Tcl/Tk (development files)
 libtk-img-doc - Extended image format support for Tcl/Tk (manual pages)
Closes: 519072
Changes: 
 libtk-img (1:1.3-release-8) unstable; urgency=high
 .
   * Applied patch by Nico Golde (previously created for Tk 8.4) which fixes
 security vulnerability CVE-2007-5137 arbitrary code execution via
 multi-frame interlaced GIF.
   * Applied patch by Nico Golde (previously created for Tk 8.4) which fixes
 security vulnerability CVE-2007-5378 overflow triggered by crafted
 GIF file (closes: #519072).
   * Set urgency to high as this upload fixes security vulnerabilities.
   * Mangled Debian version and use SF redirector in debian/watch uscan control
 file.
   * Overridden lintian warning on an ancient libtool version in libjpeg
 subdirectory because it isn't used when building the binary package.
Checksums-Sha1: 
 76b56b028685873301bf70dd9d39a74a6be30b8d 1179 libtk-img_1.3-release-8.dsc
 06dd1d56dbb1915c571a4c67d41840ed4de5b350 31770 libtk-img_1.3-release-8.diff.gz
 2cbc8656a3e5b18a19d2a5b00e5565a67e878d0f 89110 
libtk-img-doc_1.3-release-8_all.deb
 b9d585c6c1bf7b30c307b983dfa83404bb5beafe 119012 
libtk-img_1.3-release-8_i386.deb
 dcd60029e6aa5b0ed414e7bd3a3bc546271bff7c 59860 
libtk-img-dev_1.3-release-8_i386.deb
Checksums-Sha256: 
 1e29bb9d56b1d5cce4ce3ed6e3d000d11f870dca0f8e8fcebf4c02f7d6bf0723 1179 
libtk-img_1.3-release-8.dsc
 07a8bd02039d6d5000185e2ddc5c751196d60a42b7dec6476200f5ab28c8d1c3 31770 
libtk-img_1.3-release-8.diff.gz
 7f116049af6c36a98c39137f76462ed5583d937e16e58a78d3bcea88e72b9262 89110 
libtk-img-doc_1.3-release-8_all.deb
 1b2d7733860b3a31e07b76bba4cb20ead6b0f5a3aa070bf2f4b08b30df0c5f2e 119012 
libtk-img_1.3-release-8_i386.deb
 a622411f7f6c33488eb5ee166c4efea543d9720a142de9f06eb8776a2449417a 59860 
libtk-img-dev_1.3-release-8_i386.deb
Files: 
 3d1c7d3b7481f817f70c1fb7c9e66137 1179 libs optional libtk-img_1.3-release-8.dsc
 02e08a84795d20a9d660a19a0aedfa5a 31770 libs optional 
libtk-img_1.3-release-8.diff.gz
 6b3a3deb05f8707b5da0cb7dd41b151a 89110 doc optional 
libtk-img-doc_1.3-release-8_all.deb
 32d3fb0240b619b2a425f894fd6ca843 119012 libs optional 
libtk-img_1.3-release-8_i386.deb
 f3e42089a3256d8fce21d3361788a9fa 59860 libdevel optional 
libtk-img-dev_1.3-release-8_i386.deb

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

iD8DBQFJu0kQIcdH02pGEFIRAlR2AJ9OQLoZ0NnJc/E8DM2ioxvfxbrr9QCeKEO5
fpG6HsOkGCBLIlFQP+iokSA=
=eBIR
-END PGP SIGNATURE-


Accepted:
libtk-img-dev_1.3-release-8_i386.deb
  to pool/main/libt/libtk-img/libtk-img-dev_1.3-release-8_i386.deb
libtk-img-doc_1.3-release-8_all.deb
  to pool/main/libt/libtk-img/libtk-img-doc_1.3-release-8_all.deb
libtk-img_1.3-release-8.diff.gz
  to pool/main/libt/libtk-img/libtk-img_1.3-release-8.diff.gz
libtk-img_1.3-release-8.dsc
  to pool/main/libt/libtk-img/libtk-img_1.3-release-8.dsc
libtk-img_1.3-release-8_i386.deb
  to pool/main/libt/libtk-img/libtk-img_1.3-release-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 ttf-kiloji 1:2.1.0-6 (source all)

2009-03-14 Thread Debian-JP
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 15:45:56 +0900
Source: ttf-kiloji
Binary: ttf-kiloji
Architecture: source all
Version: 1:2.1.0-6
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Hideki Yamane (Debian-JP) henr...@debian.or.jp
Description: 
 ttf-kiloji - Japanese Truetype font like longhand made by kilo
Changes: 
 ttf-kiloji (1:2.1.0-6) unstable; urgency=low
 .
   * debian/watch: really fix it ;)
Checksums-Sha1: 
 4236ff725c3235aa1b3be150d7918d4372f311fa 1310 ttf-kiloji_2.1.0-6.dsc
 01714ebe8caa95ade445db9a9f7f3ea8fc42a641 4470 ttf-kiloji_2.1.0-6.diff.gz
 aa28ed2c94fb2f86f9dc733c408259b3081bca3d 13184410 ttf-kiloji_2.1.0-6_all.deb
Checksums-Sha256: 
 2666da1226c49f14df7f77f099d797c104ac2c889476ba417360db6ef0eeba74 1310 
ttf-kiloji_2.1.0-6.dsc
 6e004f5fa15d6c94ab167bd4a1229afa2d562dfb16dd71c3cacfdbe4374ef315 4470 
ttf-kiloji_2.1.0-6.diff.gz
 287fc399d1ce1f4058dd8d2deb6f778311e5c0ff030f04260f323cdff0616ef2 13184410 
ttf-kiloji_2.1.0-6_all.deb
Files: 
 9d2dfbf0d615d779486fb100f9f96f91 1310 x11 optional ttf-kiloji_2.1.0-6.dsc
 18d7357a1deec16c293116afc5553c1a 4470 x11 optional ttf-kiloji_2.1.0-6.diff.gz
 03a7cb4c532ee9c12956b2fca2ad851a 13184410 x11 optional 
ttf-kiloji_2.1.0-6_all.deb

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

iEYEARECAAYFAkm7UvYACgkQIu0hy8THJku9QwCeO0a8cfH+0DG4d/mYMT/9hIwk
KnoAn2Ofm/U+gEGD789VU1F/HaLEEWlw
=DJq2
-END PGP SIGNATURE-


Accepted:
ttf-kiloji_2.1.0-6.diff.gz
  to pool/main/t/ttf-kiloji/ttf-kiloji_2.1.0-6.diff.gz
ttf-kiloji_2.1.0-6.dsc
  to pool/main/t/ttf-kiloji/ttf-kiloji_2.1.0-6.dsc
ttf-kiloji_2.1.0-6_all.deb
  to pool/main/t/ttf-kiloji/ttf-kiloji_2.1.0-6_all.deb


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



Accepted ttf-kochi-naga10 20030809-2 (source all)

2009-03-14 Thread Debian-JP
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 16:11:10 +0900
Source: ttf-kochi-naga10
Binary: ttf-kochi-mincho-naga10 ttf-kochi-gothic-naga10
Architecture: source all
Version: 20030809-2
Distribution: unstable
Urgency: low
Maintainer: GOTO Masanori go...@debian.org
Changed-By: Hideki Yamane (Debian-JP) henr...@debian.or.jp
Description: 
 ttf-kochi-gothic-naga10 - Kochi Subst Gothic Japanese TrueType font with 
naga10 (non-free)
 ttf-kochi-mincho-naga10 - Kochi Subst Mincho Japanese TrueType font with 
naga10 (non-free)
Changes: 
 ttf-kochi-naga10 (20030809-2) unstable; urgency=low
 .
   * debian/control:
 - Suggests: xfs (= 4.0.2-1), fontconfig (= 2.4.1.3) to fix
   Half Broken Relationships, thanks to debcheck!
 - Bump up Standards-Version: 3.8.1
Checksums-Sha1: 
 94dca542d1fc8da662bb34a476f03e82cd55b5e0 1234 ttf-kochi-naga10_20030809-2.dsc
 f7a8b11df498441f086c38ec2d7f2a184cc05681 8387 
ttf-kochi-naga10_20030809-2.diff.gz
 5335769c4ecbda7db53244d00687cf3f5cc5dd18 5580712 
ttf-kochi-mincho-naga10_20030809-2_all.deb
 37b943e2ea08d7fa347717c855cf972b46b19a09 4773824 
ttf-kochi-gothic-naga10_20030809-2_all.deb
Checksums-Sha256: 
 6e978a437539241848055e651655d6ce2c525b024f4da4a765e83d7f5d9a25b5 1234 
ttf-kochi-naga10_20030809-2.dsc
 c9fdda4d7d436362cec94afbdd65c73484c901d6e3cd425f0fe9c6c4b72030e0 8387 
ttf-kochi-naga10_20030809-2.diff.gz
 8c5b0cd26ff1c83a6af933c5288bef7bc58d1ebf6ed934425edd4d63ca435647 5580712 
ttf-kochi-mincho-naga10_20030809-2_all.deb
 47c6281a32f878677e736822c169f4c409a129cc47d6141bed626a1942b96187 4773824 
ttf-kochi-gothic-naga10_20030809-2_all.deb
Files: 
 08aff267473d59068ace5f18ef04ba27 1234 non-free/x11 optional 
ttf-kochi-naga10_20030809-2.dsc
 d26a25aab077cc8a792c8e2fdaed3061 8387 non-free/x11 optional 
ttf-kochi-naga10_20030809-2.diff.gz
 3aaab358d47bdea97d33463ff8d781a2 5580712 non-free/x11 optional 
ttf-kochi-mincho-naga10_20030809-2_all.deb
 a2f81799ceca6c31edc549048233d20a 4773824 non-free/x11 optional 
ttf-kochi-gothic-naga10_20030809-2_all.deb

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

iEYEARECAAYFAkm7WN4ACgkQIu0hy8THJkvwCQCdEMKfVJ/vLwVhwlOGSKtt95eg
Mt0An1EWhbymzO0tXyV61zXkb6kaCvMC
=UMmf
-END PGP SIGNATURE-


Accepted:
ttf-kochi-gothic-naga10_20030809-2_all.deb
  to pool/non-free/t/ttf-kochi-naga10/ttf-kochi-gothic-naga10_20030809-2_all.deb
ttf-kochi-mincho-naga10_20030809-2_all.deb
  to pool/non-free/t/ttf-kochi-naga10/ttf-kochi-mincho-naga10_20030809-2_all.deb
ttf-kochi-naga10_20030809-2.diff.gz
  to pool/non-free/t/ttf-kochi-naga10/ttf-kochi-naga10_20030809-2.diff.gz
ttf-kochi-naga10_20030809-2.dsc
  to pool/non-free/t/ttf-kochi-naga10/ttf-kochi-naga10_20030809-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 debian-maintainers 1.54 (source all)

2009-03-14 Thread Anibal Monsalve Salazar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 17:48:42 +1100
Source: debian-maintainers
Binary: debian-maintainers
Architecture: source all
Version: 1.54
Distribution: unstable
Urgency: low
Maintainer: Debian Maintainer Keyring Team d-m-t...@lists.alioth.debian.org
Changed-By: Anibal Monsalve Salazar ani...@debian.org
Description: 
 debian-maintainers - GPG keys of Debian maintainers
Closes: 516206
Changes: 
 debian-maintainers (1.54) unstable; urgency=low
 .
   * Standards version is 3.8.1
   * Add Debian maintainer Kęstutis Biliūnas. Closes: #516206
Checksums-Sha1: 
 d2ea615b18309f00d27e609799c10ae212fbf17c 1356 debian-maintainers_1.54.dsc
 5bfb233f097cf921ff553b7688deb578e8f8bbd8 1113403 debian-maintainers_1.54.tar.gz
 60c0b2a58b5b96d5197b0936097ec53d81fd0e64 490644 debian-maintainers_1.54_all.deb
 4dc227beb55d16a8cc063db453ab0565cb4e956d 593153 debian-maintainers_1.54_all.gpg
Checksums-Sha256: 
 73f5ad1766800f1e40b9fef93ad412e9700de2e0705b68ca844db70146735e9b 1356 
debian-maintainers_1.54.dsc
 71f537a2c0a30160b6b28c7c61c36c55ae952a5950a85f82893c6c5d7022a18c 1113403 
debian-maintainers_1.54.tar.gz
 6f0c78f398c9e371aa45c3a1302eb9d5d9b41ee91383182ea286fc74b1944ab9 490644 
debian-maintainers_1.54_all.deb
 4345cf1aa26eb6de484ea876fcda51bf331861c40b3665ed7518250497710d82 593153 
debian-maintainers_1.54_all.gpg
Files: 
 d9fadd900b461fbaaeb5b86eb0b1d70f 1356 misc extra debian-maintainers_1.54.dsc
 269b696d4313efa94bf49d01ecdf775f 1113403 misc extra 
debian-maintainers_1.54.tar.gz
 ed53207dcd160a78c22e493381a84bd9 490644 misc extra 
debian-maintainers_1.54_all.deb
 52aad23258442cfd46c3387cc8567399 593153 raw-keyring - 
debian-maintainers_1.54_all.gpg

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

iEYEARECAAYFAkm7WhQACgkQgY5NIXPNpFUf9ACfXI1L+HQujASOa0rtxutGowoE
WREAoMEKMISQhFGj3NVdZhEI6w5HUDXr
=sLvH
-END PGP SIGNATURE-


Accepted:
debian-maintainers_1.54.dsc
  to pool/main/d/debian-maintainers/debian-maintainers_1.54.dsc
debian-maintainers_1.54.tar.gz
  to pool/main/d/debian-maintainers/debian-maintainers_1.54.tar.gz
debian-maintainers_1.54_all.deb
  to pool/main/d/debian-maintainers/debian-maintainers_1.54_all.deb
debian-maintainers_1.54_all.gpg byhand


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



Accepted ttf-sazanami 20040629-3 (source all)

2009-03-14 Thread Debian-JP
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 16:03:32 +0900
Source: ttf-sazanami
Binary: ttf-sazanami-mincho ttf-sazanami-gothic
Architecture: source all
Version: 20040629-3
Distribution: unstable
Urgency: low
Maintainer: GOTO Masanori go...@debian.org
Changed-By: Hideki Yamane (Debian-JP) henr...@debian.or.jp
Description: 
 ttf-sazanami-gothic - Sazanami Gothic Japanese TrueType font
 ttf-sazanami-mincho - Sazanami Mincho Japanese TrueType font
Changes: 
 ttf-sazanami (20040629-3) unstable; urgency=low
 .
   * debian/control:
 - Suggests: xfs (= 4.0.2-1), fontconfig (= 2.4.1.3) to fix
   Half Broken Relationships, thanks to debcheck!
 - Bump up Standards-Version: 3.8.1
Checksums-Sha1: 
 c63f78f3b8b09c96c283f537fb90209ca6657e28 1204 ttf-sazanami_20040629-3.dsc
 9027b00e5d884866093ff6c8cb78724f966dd21d 11189 ttf-sazanami_20040629-3.diff.gz
 80f233fb67a658c4e3c346b4caea5bc846da4320 5842946 
ttf-sazanami-mincho_20040629-3_all.deb
 12f2b886d3ca3007e0a7b0e1a7d8c5470720e4d0 4583986 
ttf-sazanami-gothic_20040629-3_all.deb
Checksums-Sha256: 
 b4a800187d049ca104c01101080963b9bc5c9aaf3346e622d75eeba4a48db002 1204 
ttf-sazanami_20040629-3.dsc
 bf32cb6111bad90f2d10bf6f36e387c32630116a961b83f2993bd3b95b7fb2ee 11189 
ttf-sazanami_20040629-3.diff.gz
 e4c82953df59d30817a83c34d97815d17d29ed90041fa6aa2b6680124d0067e1 5842946 
ttf-sazanami-mincho_20040629-3_all.deb
 bfdf0f3fafcb9e58de6c0d3860c8fb0c747c6376c72fc4bec2d05c09714773bf 4583986 
ttf-sazanami-gothic_20040629-3_all.deb
Files: 
 fb01fd52fb89ee924de55894b27821dc 1204 x11 optional ttf-sazanami_20040629-3.dsc
 f8fc170175679aeab6b82094c42b4ada 11189 x11 optional 
ttf-sazanami_20040629-3.diff.gz
 7b7e913d887cc60f0ed6a62bef684ead 5842946 x11 optional 
ttf-sazanami-mincho_20040629-3_all.deb
 dff02374b9008c4436e8ca0e3fa03b24 4583986 x11 optional 
ttf-sazanami-gothic_20040629-3_all.deb

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

iEYEARECAAYFAkm7V10ACgkQIu0hy8THJks9zACfep1GYGOVunkYBtt8n7TvkQDr
mokAoKXMp3/UYc7o6BaKeqmBUWfOXdAi
=nYmn
-END PGP SIGNATURE-


Accepted:
ttf-sazanami-gothic_20040629-3_all.deb
  to pool/main/t/ttf-sazanami/ttf-sazanami-gothic_20040629-3_all.deb
ttf-sazanami-mincho_20040629-3_all.deb
  to pool/main/t/ttf-sazanami/ttf-sazanami-mincho_20040629-3_all.deb
ttf-sazanami_20040629-3.diff.gz
  to pool/main/t/ttf-sazanami/ttf-sazanami_20040629-3.diff.gz
ttf-sazanami_20040629-3.dsc
  to pool/main/t/ttf-sazanami/ttf-sazanami_20040629-3.dsc


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



Accepted slingshot 0.8.1p-2 (source all)

2009-03-14 Thread Ryan Kavanagh
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 07:35:08 -0400
Source: slingshot
Binary: slingshot
Architecture: source all
Version: 0.8.1p-2
Distribution: unstable
Urgency: low
Maintainer: Ryan Kavanagh ryana...@kubuntu.org
Changed-By: Ryan Kavanagh ryana...@kubuntu.org
Description: 
 slingshot  - simple 2D shooting strategy game set in space, with gravity
Closes: 511647
Changes: 
 slingshot (0.8.1p-2) unstable; urgency=low
 .
   [ Sandro Tosi]
   * debian/control
 - switch Vcs-Browser field to viewsvn
 - bump Standards-Version to 3.8.1 (no changes needed)
 .
   [ Ryan Kavanagh ]
   * Applied patch from Gabriel Ruiz for missing menu entry, (Closes: #511647)
 - Installs XPM icon
 - Installs desktop file to /usr/share/applications instead of
   /usr/share/games/applications (update dirs and rules)
   * Updated slingshot.desktop to have slingshot.xpm as icon
   * Prefixed ``Copyright '' to the occurences of '(C)' where lacking in the
 copyright file.
   * Updated the path to the GPL (GPL-2 instead of symlink) in copyright file.
   * Specified the version of the GPL for the packaging in the copyright file.
   * Install a link to FreeSansBold.ttf from ttf-freefont instead of installing
 it ourselves. Also updated the Depends to include ttf-freefont.
   * Renamed debian/menu to debian/slingshot.menu so that the debhelper.mk
 magic can do its thing and install / update the menu.
   * Dropped debian/pycompat (No longer required) and debian/pyversions
 (made redundant by XS-Python-Version in debian/control)
   * Updated slingshot-launcher with comments explaining the logic behind it.
Checksums-Sha1: 
 d98a3385a5c506d6989e6a7dcaf93b8c593487d5 1336 slingshot_0.8.1p-2.dsc
 a3edf6ad10039f0115286f2d75ecce087a799782 6294 slingshot_0.8.1p-2.diff.gz
 20ede0eadb25b3dbd98cd8474e6972c8013a80d1 1975698 slingshot_0.8.1p-2_all.deb
Checksums-Sha256: 
 1453856f1e8b749208dd0f821172c906271260408597ae42f5cdce508d1738b4 1336 
slingshot_0.8.1p-2.dsc
 b9fbd1c0248c9acba0cbc8419772ce8d70a270027ca2ed54b2e1a8d75d169b43 6294 
slingshot_0.8.1p-2.diff.gz
 6c3cbb018ff680d021805c3e90ee4acd749c4031e083ddb0922421182e0edea0 1975698 
slingshot_0.8.1p-2_all.deb
Files: 
 67ac12fa28f281d625de842fb34a6c73 1336 games extra slingshot_0.8.1p-2.dsc
 d4682db8f61a3e4e29f384c879b54fe6 6294 games extra slingshot_0.8.1p-2.diff.gz
 6c42b82e93ad06d7a35d371221083806 1975698 games extra slingshot_0.8.1p-2_all.deb

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

iEYEARECAAYFAkm7VLcACgkQAukwV0RN2VBWtACghNz+7II/oUBn8bSq+MNtlBz7
qXkAn1hV7Kli2W45GW5sUmM1F7Wdgrd9
=kf16
-END PGP SIGNATURE-


Accepted:
slingshot_0.8.1p-2.diff.gz
  to pool/main/s/slingshot/slingshot_0.8.1p-2.diff.gz
slingshot_0.8.1p-2.dsc
  to pool/main/s/slingshot/slingshot_0.8.1p-2.dsc
slingshot_0.8.1p-2_all.deb
  to pool/main/s/slingshot/slingshot_0.8.1p-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 ocamlwc 0.3-6 (source all)

2009-03-14 Thread Ralf Treinen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 09:08:48 +0100
Source: ocamlwc
Binary: ocamlwc
Architecture: source all
Version: 0.3-6
Distribution: unstable
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Ralf Treinen trei...@debian.org
Description: 
 ocamlwc- count the lines of code and comments in OCaml sources
Changes: 
 ocamlwc (0.3-6) unstable; urgency=low
 .
   [ Stephane Glondu ]
   * Add DM-Upload-Allowed
   * Use debhelper 7 and ocamlvars.mk
   * Switch copyright to machine-parsable format
   * Add Homepage field
   * Add README.source
Checksums-Sha1: 
 2c8b1c51e1b42296df6cd37bb8c2fa5d2ebea6ed 1333 ocamlwc_0.3-6.dsc
 04cf77c6b8e396d9c2e04649bdb6995eded2efc6 2850 ocamlwc_0.3-6.diff.gz
 8d830f4571f1f3e6c402875c7056a66c94ba7c1e 24790 ocamlwc_0.3-6_all.deb
Checksums-Sha256: 
 6f315b998c7e22119b1e8a107c3b13300a6ab83e4b0b27bec4396e88b5becb0e 1333 
ocamlwc_0.3-6.dsc
 c02c0592e6eef8f34856baa829a1422a7c1ea03edf4cda24df89ad824fb343a4 2850 
ocamlwc_0.3-6.diff.gz
 3b87f1bc7afe13cc6ffabae2dab51906a8a56a52ae505586ddbefac5c95690d0 24790 
ocamlwc_0.3-6_all.deb
Files: 
 f638d709f02144f3ddf836476050bdef 1333 devel optional ocamlwc_0.3-6.dsc
 f8dc34113860773cc1266159e6a63370 2850 devel optional ocamlwc_0.3-6.diff.gz
 e5e08b92f4378f8285bbc3cc4fb99004 24790 devel optional ocamlwc_0.3-6_all.deb

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

iD8DBQFJu2fgtzWmSeC6BMERAputAJ9dxKjkxQZ62V0iHIKcbxEcvuWA7QCfbaDw
m1Ng1neuHnxitxvfm5b3bKo=
=zAvP
-END PGP SIGNATURE-


Accepted:
ocamlwc_0.3-6.diff.gz
  to pool/main/o/ocamlwc/ocamlwc_0.3-6.diff.gz
ocamlwc_0.3-6.dsc
  to pool/main/o/ocamlwc/ocamlwc_0.3-6.dsc
ocamlwc_0.3-6_all.deb
  to pool/main/o/ocamlwc/ocamlwc_0.3-6_all.deb


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



Accepted urwid 0.9.8.4-1 (source i386)

2009-03-14 Thread Ian Ward
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 00:30:33 +
Source: urwid
Binary: python-urwid
Architecture: source i386
Version: 0.9.8.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Ian Ward i...@excess.org
Description: 
 python-urwid - curses-based UI/widget library for Python
Changes: 
 urwid (0.9.8.4-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 544b57c1b62b9a87a020190d36026896cc5fa28e 1378 urwid_0.9.8.4-1.dsc
 a4307aa08895a647feec1099658e87ab1595f5c0 184002 urwid_0.9.8.4.orig.tar.gz
 c73d03ca1e02432ac6cd81a940c3631f465a7417 3488 urwid_0.9.8.4-1.diff.gz
 d8111a1b7305b8aaa8ff76153a7135f35bf83064 167400 python-urwid_0.9.8.4-1_i386.deb
Checksums-Sha256: 
 771663721df28b242b7f79b20fe899d7d69aa7fc52f0e68ae57890ae84f58c9d 1378 
urwid_0.9.8.4-1.dsc
 143c6183ba221ade64958a62272306e1a78e4dbd9cbb651c8302f2463fdeb979 184002 
urwid_0.9.8.4.orig.tar.gz
 6901e61b48d798d998ac96fe2df3ed935fdf97cd346e99197eab5833f4b93029 3488 
urwid_0.9.8.4-1.diff.gz
 fbb4abb4465e7f42ff1d307c0fe5414e473223bf38d0725a7035fb639f32aaf2 167400 
python-urwid_0.9.8.4-1_i386.deb
Files: 
 23c407e16c2943c064baee6274fcae78 1378 python optional urwid_0.9.8.4-1.dsc
 28f918c66887d4e470ae0c3535579ad7 184002 python optional 
urwid_0.9.8.4.orig.tar.gz
 5fda6552b0c760937f647bcbfc9468ab 3488 python optional urwid_0.9.8.4-1.diff.gz
 dbf01bddfe8fce287144acab5776cc91 167400 python optional 
python-urwid_0.9.8.4-1_i386.deb

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

iEYEARECAAYFAkm7b5IACgkQB01zfu119ZlPDACgihlN/zZ97bVRfdmAr9CgLdGh
rUoAoMYZBwp2lcHLm5iywghJ0fzGz+dU
=NeO3
-END PGP SIGNATURE-


Accepted:
python-urwid_0.9.8.4-1_i386.deb
  to pool/main/u/urwid/python-urwid_0.9.8.4-1_i386.deb
urwid_0.9.8.4-1.diff.gz
  to pool/main/u/urwid/urwid_0.9.8.4-1.diff.gz
urwid_0.9.8.4-1.dsc
  to pool/main/u/urwid/urwid_0.9.8.4-1.dsc
urwid_0.9.8.4.orig.tar.gz
  to pool/main/u/urwid/urwid_0.9.8.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 templayer 1.5.1-1 (source all)

2009-03-14 Thread Ian Ward
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 00:13:23 +
Source: templayer
Binary: python-templayer
Architecture: source all
Version: 1.5.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Ian Ward i...@excess.org
Description: 
 python-templayer - layered template library for Python
Changes: 
 templayer (1.5.1-1) unstable; urgency=low
 .
   [ Ian Ward ]
   * New upstream release
 .
   [ Piotr Ożarowski ]
   * Vcs-Browser and Homepage fields added
   * XS-Vcs-Svn field renamed to Vcs-Svn
 .
   [ Paul Wise ]
   * Remove myself from uploaders
Checksums-Sha1: 
 dc032403c6ad6e2b9ada3af83e90ca40ae69af87 1289 templayer_1.5.1-1.dsc
 ffdf9df4b9fb61da388bf9f1762ddeeb4f370952 35788 templayer_1.5.1.orig.tar.gz
 6cd4eb8325af1efc762cdf1a04f9fbad8d6c4088 2210 templayer_1.5.1-1.diff.gz
 4742372afc26c59ab632d3baf224840b14ce4813 26502 python-templayer_1.5.1-1_all.deb
Checksums-Sha256: 
 357b7a5fe8c8bcd1f01ccce74f465d7ec7118206f9e5826637768534eafb9a24 1289 
templayer_1.5.1-1.dsc
 70c2c24ace97a84fb11031a92cdfc62e00d2f803c73840e47c65e0c039106cac 35788 
templayer_1.5.1.orig.tar.gz
 6ba15cf7ff648d0b258f0f567ec277a3c9966b50933637c90df77cc044a83a32 2210 
templayer_1.5.1-1.diff.gz
 6d5bea294d26b903416256587875389d2bfffd6f97df5c30fa97028eedb7b88b 26502 
python-templayer_1.5.1-1_all.deb
Files: 
 45c3a2c35f3aca023198f332fc863afd 1289 python optional templayer_1.5.1-1.dsc
 9d1a3aa0cece34a2492792278aad406d 35788 python optional 
templayer_1.5.1.orig.tar.gz
 2fdf42fd976dc351e7f8682ec12514c0 2210 python optional templayer_1.5.1-1.diff.gz
 81d5712dbb4bf46e31abbce2e26e2d8d 26502 python optional 
python-templayer_1.5.1-1_all.deb

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

iEYEARECAAYFAkm7dD8ACgkQB01zfu119ZmN7gCgqDmYLd92pZ6r/OK7XTiXdYmc
2isAoLuz02eL9yMe8QsV8cgsRB2bshhO
=AAeb
-END PGP SIGNATURE-


Accepted:
python-templayer_1.5.1-1_all.deb
  to pool/main/t/templayer/python-templayer_1.5.1-1_all.deb
templayer_1.5.1-1.diff.gz
  to pool/main/t/templayer/templayer_1.5.1-1.diff.gz
templayer_1.5.1-1.dsc
  to pool/main/t/templayer/templayer_1.5.1-1.dsc
templayer_1.5.1.orig.tar.gz
  to pool/main/t/templayer/templayer_1.5.1.orig.tar.gz


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



Accepted clamav-data 20090314.052500.9107 (source all)

2009-03-14 Thread Marc Haber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 14 Mar 2009 05:47:32 +
Source: clamav-data
Binary: clamav-data
Architecture: source all
Version: 20090314.052500.9107
Distribution: unstable
Urgency: low
Maintainer: Marc Haber mh+debian-packa...@zugschlus.de
Changed-By: Marc Haber mh+debian-packa...@zugschlus.de
Description: 
 clamav-data - clamav data files
Changes: 
 clamav-data (20090314.052500.9107) unstable; urgency=low
 .
   * Automatically generated by clamav-getfiles.
   * See clamav-getfiles changelog for the real change log.
 URL: 
http://packages.debian.org/changelogs/pool/main/c/clamav-getfiles/current/changelog.html
Files: 
 3dda8791c30e5cf1516dd75979f3a051 562 utils extra 
clamav-data_20090314.052500.9107.dsc
 b14bdb3811109a674d0dab0eb93f5c31 20660847 utils extra 
clamav-data_20090314.052500.9107.tar.gz
 1655582ecd2384169e9411f585b9eef6 20660480 utils extra 
clamav-data_20090314.052500.9107_all.deb

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

iEYEARECAAYFAkm7frgACgkQgZalRGu6PIRZ9gCeKfGNb7YRTLejM1aI/fEnu/fX
tOwAn1a+E8RD7ybJkCiuw4G8whlzDwfo
=EWyw
-END PGP SIGNATURE-


Accepted:
clamav-data_20090314.052500.9107.dsc
  to pool/main/c/clamav-data/clamav-data_20090314.052500.9107.dsc
clamav-data_20090314.052500.9107.tar.gz
  to pool/main/c/clamav-data/clamav-data_20090314.052500.9107.tar.gz
clamav-data_20090314.052500.9107_all.deb
  to pool/main/c/clamav-data/clamav-data_20090314.052500.9107_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 ksplice 0.9.7-1 (source i386)

2009-03-14 Thread Luca Bruno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 11:06:42 +0100
Source: ksplice
Binary: ksplice
Architecture: source i386
Version: 0.9.7-1
Distribution: unstable
Urgency: low
Maintainer: Luca Bruno lu...@debian.org
Changed-By: Luca Bruno lu...@debian.org
Description: 
 ksplice- Patching live kernel without having to reboot
Changes: 
 ksplice (0.9.7-1) unstable; urgency=low
 .
   * New upstream version
 + Fixed a wrong-addressed relocations issue
 + Avoid double core compilation
   * Bumped Standards-Version to 3.8.1 (no changes needed)
Checksums-Sha1: 
 ca0f62b4522a21534fd28ee381c15acfe730c096 1135 ksplice_0.9.7-1.dsc
 2d1483c29e4b3cdb5578cc8e7590b295b44531e3 182910 ksplice_0.9.7.orig.tar.gz
 2eeb91f8d4afbbfff81bf641825e97321f112ce2 2694 ksplice_0.9.7-1.diff.gz
 ac51cdd1795cc387276e88c13b4c08e5aa33c567 150774 ksplice_0.9.7-1_i386.deb
Checksums-Sha256: 
 513b56bc5d002f4d03faf96109efc177d5170c5e462814de3544bed33e0748ec 1135 
ksplice_0.9.7-1.dsc
 efcee59eb467289e86ccf490a1471c9e7ccdb6d6b0c1e788abed12d698702ac9 182910 
ksplice_0.9.7.orig.tar.gz
 6badc0f1861777c00886c559bff10e2281e22cd814becabf066eb88c5e5dae3d 2694 
ksplice_0.9.7-1.diff.gz
 49e3452e36529f0212f9c83e7f5d84bca14eaa06b6b8e89e2ff826c53a42acc7 150774 
ksplice_0.9.7-1_i386.deb
Files: 
 af34cdcc806a013889641022489001d2 1135 admin optional ksplice_0.9.7-1.dsc
 79bc8aa5275c026e3bd4092da93cb996 182910 admin optional 
ksplice_0.9.7.orig.tar.gz
 8fd0ceaad601a37e45ded711474941d2 2694 admin optional ksplice_0.9.7-1.diff.gz
 50119c8ced5ffced708b53a6b1ac7bf0 150774 admin optional ksplice_0.9.7-1_i386.deb

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

iEYEARECAAYFAkm7hPgACgkQRqobajv7n7NFzwCdEpU1as4RzTwnB0VRZGsveKF0
pwQAoJYRz+qt1q/W21MKqrRGtUshCcSs
=eZMs
-END PGP SIGNATURE-


Accepted:
ksplice_0.9.7-1.diff.gz
  to pool/main/k/ksplice/ksplice_0.9.7-1.diff.gz
ksplice_0.9.7-1.dsc
  to pool/main/k/ksplice/ksplice_0.9.7-1.dsc
ksplice_0.9.7-1_i386.deb
  to pool/main/k/ksplice/ksplice_0.9.7-1_i386.deb
ksplice_0.9.7.orig.tar.gz
  to pool/main/k/ksplice/ksplice_0.9.7.orig.tar.gz


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



Accepted nemiver 0.6.5-1 (source i386)

2009-03-14 Thread Luca Bruno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Mar 2009 22:16:20 +0100
Source: nemiver
Binary: nemiver
Architecture: source i386
Version: 0.6.5-1
Distribution: unstable
Urgency: low
Maintainer: Luca Bruno lu...@debian.org
Changed-By: Luca Bruno lu...@debian.org
Description: 
 nemiver- Standalone graphical debugger for GNOME
Changes: 
 nemiver (0.6.5-1) unstable; urgency=low
 .
   * New upstream release (LP: #327128)
   * Use $(QUILT_STAMPFN) as patch target
   * Added new intltool build-dep
   * Bumped Standards-Version to 3.8.1 (no changes needed)
Checksums-Sha1: 
 df4455d13ed3e2dd24d6f3d71011e41c9013a1ad 1588 nemiver_0.6.5-1.dsc
 a1192f369b03d417bba60da38dcff4d02fa02fa1 1679783 nemiver_0.6.5.orig.tar.gz
 f47439e3ad4d6c5dfdecfc13b4182a768ceae05f 6140 nemiver_0.6.5-1.diff.gz
 29776871d1eb6d2c63f863427973ab1973ca9c00 7271680 nemiver_0.6.5-1_i386.deb
Checksums-Sha256: 
 2102cfc3ab135f51582634b6fcf6422f9ec700ddd344b3419dec53725fb3f186 1588 
nemiver_0.6.5-1.dsc
 832df2647222eeb23ede49032a2bf3a204ff98df954d29f677df4f67b3d53d66 1679783 
nemiver_0.6.5.orig.tar.gz
 65c58e4fe6098085c58966195af91077d80d286446851de4bb7ba0892e6a9577 6140 
nemiver_0.6.5-1.diff.gz
 c672d29bce014ab849f114323fb4c1a7e9ed2405d071dc6c5394f922ee1e76ed 7271680 
nemiver_0.6.5-1_i386.deb
Files: 
 8cc5a63cd747638803b228114301cf86 1588 gnome optional nemiver_0.6.5-1.dsc
 609ce141143b01124d0040ab560e8584 1679783 gnome optional 
nemiver_0.6.5.orig.tar.gz
 b95b2bfee488f5d92a6e1e76b0c50c66 6140 gnome optional nemiver_0.6.5-1.diff.gz
 896d2568486a8e03ea76ccfd52943dba 7271680 gnome optional 
nemiver_0.6.5-1_i386.deb

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

iEYEARECAAYFAkm7hZIACgkQRqobajv7n7PP4QCggn06MdtCJjBVTDXJltLeBfLE
XgwAoIU0uig4MYC2mkfDF2H59Bqpk/11
=Iwqf
-END PGP SIGNATURE-


Accepted:
nemiver_0.6.5-1.diff.gz
  to pool/main/n/nemiver/nemiver_0.6.5-1.diff.gz
nemiver_0.6.5-1.dsc
  to pool/main/n/nemiver/nemiver_0.6.5-1.dsc
nemiver_0.6.5-1_i386.deb
  to pool/main/n/nemiver/nemiver_0.6.5-1_i386.deb
nemiver_0.6.5.orig.tar.gz
  to pool/main/n/nemiver/nemiver_0.6.5.orig.tar.gz


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



Accepted evolution-exchange 2.24.5-1 (source amd64)

2009-03-14 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 10:45:11 +0100
Source: evolution-exchange
Binary: evolution-exchange evolution-exchange-dbg
Architecture: source amd64
Version: 2.24.5-1
Distribution: unstable
Urgency: low
Maintainer: Debian Evolution Maintainers 
pkg-evolution-maintain...@lists.alioth.debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 evolution-exchange - Exchange plugin for the Evolution groupware suite
 evolution-exchange-dbg - Exchange plugin for Evolution with debugging symbols
Changes: 
 evolution-exchange (2.24.5-1) unstable; urgency=low
 .
   * New upstream release.
   * No need to repackage it, upstream finally ditched the RFCs.
 + Update copyright accordingly.
   * Add myself to uploaders.
   * Update build-dependencies for the new version.
 + Add libdb4.7-dev for GAL caching.
 + Add gtk-doc-tools.
 + Remove libgnomeprint.
Checksums-Sha1: 
 cccaa13eb484083131e85f74f908e6d0ff85020d 2287 evolution-exchange_2.24.5-1.dsc
 72cad20effb387052b2a2a80af1a00bff3767b75 1426349 
evolution-exchange_2.24.5.orig.tar.gz
 1aa9533ffbe19e3acc770ae4181af68eb8226411 6307 
evolution-exchange_2.24.5-1.diff.gz
 0efab78570d333ab6a0f93a8d0b4d9021a0091d6 742194 
evolution-exchange_2.24.5-1_amd64.deb
 c9278faeabbded64b3d89a8f0f340149d242bf6f 467146 
evolution-exchange-dbg_2.24.5-1_amd64.deb
Checksums-Sha256: 
 d88e4e0e44759dc9e73a57301e5827805d7a41a2012c2628a65ff121866b521a 2287 
evolution-exchange_2.24.5-1.dsc
 77ea6aec2f40c2392d237cc80f5e333648e1099d38ade2a783ea52f71bc05aa7 1426349 
evolution-exchange_2.24.5.orig.tar.gz
 937ecd21b798bfeaf2bd46a475d7d6121a031604acea318ca13fb432a6e81559 6307 
evolution-exchange_2.24.5-1.diff.gz
 b21455bf1b74496b9d33aaea8da467271ee8b3f56e9bdb3e22e10eff4a5d1340 742194 
evolution-exchange_2.24.5-1_amd64.deb
 151bd49d5e957eca643ebb100753d16c6d2a5a20d4065e26981c9d58b9ff315b 467146 
evolution-exchange-dbg_2.24.5-1_amd64.deb
Files: 
 3b2bf4a19d5127ebbabdb9d69bc397e5 2287 gnome optional 
evolution-exchange_2.24.5-1.dsc
 9f1bb73737bfa47d609c523d2cc02aef 1426349 gnome optional 
evolution-exchange_2.24.5.orig.tar.gz
 ce5aa36412d333f0ee831c9e8d0da8d0 6307 gnome optional 
evolution-exchange_2.24.5-1.diff.gz
 cb4781e5edccd4fb34763369a2e9c6ad 742194 gnome optional 
evolution-exchange_2.24.5-1_amd64.deb
 e85cd4ad40c700e5d09ab2f48b478f8e 467146 gnome extra 
evolution-exchange-dbg_2.24.5-1_amd64.deb

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

iD8DBQFJu4a3rSla4ddfhTMRArpCAJ4jGEoT9jMZliUnWwa6J+PmsUEuIACghkYB
R5QtZNimyiHzQtYtnDA1S3E=
=ZfJy
-END PGP SIGNATURE-


Accepted:
evolution-exchange-dbg_2.24.5-1_amd64.deb
  to pool/main/e/evolution-exchange/evolution-exchange-dbg_2.24.5-1_amd64.deb
evolution-exchange_2.24.5-1.diff.gz
  to pool/main/e/evolution-exchange/evolution-exchange_2.24.5-1.diff.gz
evolution-exchange_2.24.5-1.dsc
  to pool/main/e/evolution-exchange/evolution-exchange_2.24.5-1.dsc
evolution-exchange_2.24.5-1_amd64.deb
  to pool/main/e/evolution-exchange/evolution-exchange_2.24.5-1_amd64.deb
evolution-exchange_2.24.5.orig.tar.gz
  to pool/main/e/evolution-exchange/evolution-exchange_2.24.5.orig.tar.gz


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



Accepted imdb-tools 0.8-1 (source all)

2009-03-14 Thread Matthew Johnson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Sat, 14 Mar 2009 10:44:52 +
Source: imdb-tools
Binary: imdb-tools
Architecture: source all
Version: 0.8-1
Distribution: unstable
Urgency: low
Maintainer: Matthew Johnson mj...@debian.org
Changed-By: Matthew Johnson mj...@debian.org
Description: 
 imdb-tools - Lookup film details on IMDB
Closes: 519603
Changes: 
 imdb-tools (0.8-1) unstable; urgency=low
 .
   * New upstream release (Closes: #519603, LP: #313260)
Files: 
 44e908928ab80d920394608f9fa472ff 583 utils optional imdb-tools_0.8-1.dsc
 2428dcedec679117f73c88b1603503c8 17533 utils optional 
imdb-tools_0.8.orig.tar.gz
 6bdcaaed7b882a3be13cdfd933a32ccf 1816 utils optional imdb-tools_0.8-1.diff.gz
 f44b48604cff3359429430b2a2986798 14726 utils optional imdb-tools_0.8-1_all.deb

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

iD8DBQFJu4uxpldmHVvob7kRAsWfAJwLOH7Obv79cNGPsNqceJCz4WcYtwCgsBqT
dVhgxMMpM3YHmGiTjh1Dksg=
=+61i
-END PGP SIGNATURE-


Accepted:
imdb-tools_0.8-1.diff.gz
  to pool/main/i/imdb-tools/imdb-tools_0.8-1.diff.gz
imdb-tools_0.8-1.dsc
  to pool/main/i/imdb-tools/imdb-tools_0.8-1.dsc
imdb-tools_0.8-1_all.deb
  to pool/main/i/imdb-tools/imdb-tools_0.8-1_all.deb
imdb-tools_0.8.orig.tar.gz
  to pool/main/i/imdb-tools/imdb-tools_0.8.orig.tar.gz


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



Accepted brltty 3.10~r3724-1.1 (source all amd64)

2009-03-14 Thread Adeodato Simó
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 11:09:53 +0100
Source: brltty
Binary: brltty libbrlapi0.5 libbrlapi-dev libbrlapi-jni libbrlapi-java 
brltty-flite brltty-udeb brltty-x11 cl-brlapi python-brlapi
Architecture: source amd64 all
Version: 3.10~r3724-1.1
Distribution: unstable
Urgency: medium
Maintainer: Mario Lang ml...@debian.org
Changed-By: Adeodato Simó d...@net.com.org.es
Description: 
 brltty - Access software for a blind person using a braille display
 brltty-flite - Access software for a blind person using a braille display
 brltty-udeb - Access software for a blind person using a braille display (udeb)
 brltty-x11 - Access software for a blind person using a braille display
 cl-brlapi  - Common Lisp bindings for BrlAPI
 libbrlapi-dev - Library for communication with BRLTTY - static libs and headers
 libbrlapi-java - Java bindings for BrlAPI
 libbrlapi-jni - Java bindings for BrlAPI (native library)
 libbrlapi0.5 - braille display access via BRLTTY - shared library
 python-brlapi - Python bindings for BrlAPI
Closes: 516240
Changes: 
 brltty (3.10~r3724-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Apply patch from Samuel Thibault to fix FTBFS in unstable.
 (Closes: #516240)
Checksums-Sha1: 
 14dd4d8acb46c3de4a326311e64fdd2516b82059 1572 brltty_3.10~r3724-1.1.dsc
 1871c777b3bc386781dbd4234d5db7158b33036b 19523 brltty_3.10~r3724-1.1.diff.gz
 125ea76252c93ce3723814b074de75596888e4ae 203704 
brltty-udeb_3.10~r3724-1.1_amd64.udeb
 127c6bb7c39d3cb6b64205a4e92dfe0b0b8f4a5e 1261466 
brltty_3.10~r3724-1.1_amd64.deb
 277dee82b87429e20da0ee582034f15647876a88 64928 
libbrlapi0.5_3.10~r3724-1.1_amd64.deb
 e2ecb7e061e038927359463ec565774d32b2acaa 168152 
libbrlapi-dev_3.10~r3724-1.1_amd64.deb
 8b87a0f9bafd902d5edbba91ede99fea99f4d7a1 56086 
libbrlapi-jni_3.10~r3724-1.1_amd64.deb
 a93be4ecac0ebec15d602bf1dc5a673b8cf54551 50030 
brltty-flite_3.10~r3724-1.1_amd64.deb
 bc76a41683cd2939c1d764039ace24620a27b352 99812 
brltty-x11_3.10~r3724-1.1_amd64.deb
 ed4d50a0ae8b1cb3faf6eda73b98b71d25a71090 84538 
python-brlapi_3.10~r3724-1.1_amd64.deb
 909a1b25875d06572d692d5a1d738c6fdd1f89f7 55994 
libbrlapi-java_3.10~r3724-1.1_all.deb
 18745d2455b8b4d213b1bf169d2cd36d4e28d5fb 50340 cl-brlapi_3.10~r3724-1.1_all.deb
Checksums-Sha256: 
 b1492a07772c5ea916e65190f865a1c954fdbe8ac6f71c11bfb4696ec370c262 1572 
brltty_3.10~r3724-1.1.dsc
 9a7d5b854b3f03ec6e4cd1ebdeeeba84d63fcc0801756c7bbb458e58f8836041 19523 
brltty_3.10~r3724-1.1.diff.gz
 5d3f61ea4a620f899f6fdc46735f2e90a169f4471824d00df05c8f1543dc2cf2 203704 
brltty-udeb_3.10~r3724-1.1_amd64.udeb
 ec8a0efe34e557a012eafe3854cc99643de0e950f41255e179c0255993d9ce4d 1261466 
brltty_3.10~r3724-1.1_amd64.deb
 dd44b615a95edd56bf0b80126bddbb3596b8318a3262502203a5b6de4d0c6ec6 64928 
libbrlapi0.5_3.10~r3724-1.1_amd64.deb
 6ae5d537f6587f13ba2cde72287250c2eb1749e42ba1a76eac7a71850a9b9ec7 168152 
libbrlapi-dev_3.10~r3724-1.1_amd64.deb
 8e17f612eccaf48fef18ef4678a75b0806c478ed777133cacc4c7c74d45df83d 56086 
libbrlapi-jni_3.10~r3724-1.1_amd64.deb
 16db20d85d3bc4d3d8ab5b9c51d76509f63b8838c2154bbd7b48bba4f74a8f68 50030 
brltty-flite_3.10~r3724-1.1_amd64.deb
 4facf6aa0499f94305bdcac80f2870ad49a8f14a95c75f33d6beb7b2435598d5 99812 
brltty-x11_3.10~r3724-1.1_amd64.deb
 fde07354dcc4c8df0e7b0e707bd0f9b5b91c77808dbe57753fa2e196af88d5ea 84538 
python-brlapi_3.10~r3724-1.1_amd64.deb
 fa4c220a5b2ba9b5b6b244ee8f0ca57a12b09333aad0f07f4e120499f394a4c5 55994 
libbrlapi-java_3.10~r3724-1.1_all.deb
 b3a6ae9c29b42bd1706f9a281e5c0dc0cd201bca3127393bbf4bf5f3f32f664e 50340 
cl-brlapi_3.10~r3724-1.1_all.deb
Files: 
 4a34bd1c6267c90ab648f1825c8de977 1572 admin extra brltty_3.10~r3724-1.1.dsc
 7a708794a0f54c2df3da6a19e071ba7a 19523 admin extra 
brltty_3.10~r3724-1.1.diff.gz
 3977b8a2a4968034b71d9707cf5e55e1 203704 debian-installer extra 
brltty-udeb_3.10~r3724-1.1_amd64.udeb
 968436260652070420ddf7aa33b2bce5 1261466 admin extra 
brltty_3.10~r3724-1.1_amd64.deb
 69d66e08dd511585cfe4ab5fdd94aa27 64928 libs extra 
libbrlapi0.5_3.10~r3724-1.1_amd64.deb
 0629789ee0483ce9214ff00ca187891b 168152 libdevel extra 
libbrlapi-dev_3.10~r3724-1.1_amd64.deb
 b49a6ca91492a5159a87e73560d9bbba 56086 libs extra 
libbrlapi-jni_3.10~r3724-1.1_amd64.deb
 6e9bfe5c159d13001e5d0de04f1db805 50030 admin extra 
brltty-flite_3.10~r3724-1.1_amd64.deb
 021f72429b44f3ced81351d2d6145e8b 99812 admin extra 
brltty-x11_3.10~r3724-1.1_amd64.deb
 49fe44821628184496260620897dd586 84538 python extra 
python-brlapi_3.10~r3724-1.1_amd64.deb
 16a84337ea556ab3ad324e5c7878c51e 55994 libs extra 
libbrlapi-java_3.10~r3724-1.1_all.deb
 a644082974582b15da9737243d893c24 50340 admin extra 
cl-brlapi_3.10~r3724-1.1_all.deb
Package-Type: udeb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Signed by Adeodato Simó d...@net.com.org.es

iEYEARECAAYFAkm7hEkACgkQOzsxEBcMRN0YIQCeNS0ckEVEjjBwWYT14WTc+qk2
jHMAoLciEoNAvSmnrNrvNmbg/YojurQg
=LcKU
-END PGP SIGNATURE-


Accepted:

Accepted dmraid 1.0.0.rc15-3 (source i386)

2009-03-14 Thread Giuseppe Iuculano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 13:13:02 +0100
Source: dmraid
Binary: dmraid dmraid-udeb libdmraid1.0.0.rc15-udeb libdmraid1.0.0.rc15 
libdmraid-dev
Architecture: source i386
Version: 1.0.0.rc15-3
Distribution: unstable
Urgency: low
Maintainer: Giuseppe Iuculano giuse...@iuculano.it
Changed-By: Giuseppe Iuculano giuse...@iuculano.it
Description: 
 dmraid - Device-Mapper Software RAID support tool
 dmraid-udeb - Device-Mapper Software RAID support tool (udeb) (udeb)
 libdmraid-dev - Device-Mapper Software RAID support tool - header files
 libdmraid1.0.0.rc15 - Device-Mapper Software RAID support tool - shared library
 libdmraid1.0.0.rc15-udeb - Device-Mapper Software RAID support tool - shared 
library (udeb) (udeb)
Changes: 
 dmraid (1.0.0.rc15-3) unstable; urgency=low
 .
   * [748a001] debian/patches/14_isw-serial-fix.patch: Change the serial
 number scan to only look at the LAST 16 bytes rather than the first.
 Thanks Sam Bingner (LP: #267953)
   * [9f577ac] debian/patches/09_promise-add-offsets.patch: Added 591
 disk offset locations for Promise RAID metadata. (ASUS M3A equipped
 with the SB600 south bridge)
   * [7aef2ee] debian/control: Added ${misc:Depends} in Depends
   * [7cac457] Updated to standards version 3.8.1 (No changes needed)
Checksums-Sha1: 
 6f2a1056658b49b886738cf6becd55a5c4cf9323 1391 dmraid_1.0.0.rc15-3.dsc
 a926167af8d197b91179d76a03b3245a503f85ce 21892 dmraid_1.0.0.rc15-3.diff.gz
 eaba1a2896df48334ce299d4b989a8cf7bcbff5d 32690 dmraid_1.0.0.rc15-3_i386.deb
 51867edc753fb90347f92dfdae28ff54864a0c0b 9322 
dmraid-udeb_1.0.0.rc15-3_i386.udeb
 c33a41f4acbf1b0c923580c1355f6f8622b63243 84310 
libdmraid1.0.0.rc15-udeb_1.0.0.rc15-3_i386.udeb
 c74c1eaaff1834b2254a2387c64baf3b6a8d5f37 100040 
libdmraid1.0.0.rc15_1.0.0.rc15-3_i386.deb
 b9110ff515b91aaa2f645fc8684127dbf756123b 138036 
libdmraid-dev_1.0.0.rc15-3_i386.deb
Checksums-Sha256: 
 7d0fba67bf342014dcd122feb2c7088d4d62bd677980a552ec50a218da8a016d 1391 
dmraid_1.0.0.rc15-3.dsc
 67950c2e9bc7e8be709716ad74290771dbb9da071c83b24ac0f69610793fefa7 21892 
dmraid_1.0.0.rc15-3.diff.gz
 ef3f707384c095cb68ae8f9389f4bf38556345f8c6ab7e9b91195bf7c88e4601 32690 
dmraid_1.0.0.rc15-3_i386.deb
 09c07fec798f2ca1dc22a2703e037d0954250dc27a3adc713f30822531d56a68 9322 
dmraid-udeb_1.0.0.rc15-3_i386.udeb
 08adef671eaf9bf97ce7df4a666c7428e6ccb38731a02acfe5c4c44795cd05ff 84310 
libdmraid1.0.0.rc15-udeb_1.0.0.rc15-3_i386.udeb
 29f44e7e1f6d479725761f8bb7ab4f9576491fe7b445f7f0efb34307c8a1dcba 100040 
libdmraid1.0.0.rc15_1.0.0.rc15-3_i386.deb
 c03716fae71244c2e62c4b65ec0196f778e47e1e5591bdbb66cd24c86d421af5 138036 
libdmraid-dev_1.0.0.rc15-3_i386.deb
Files: 
 b96f22b68a4ccf9f62f83d1459abc609 1391 admin optional dmraid_1.0.0.rc15-3.dsc
 200ac84358b6fb20527707e1ec212d4b 21892 admin optional 
dmraid_1.0.0.rc15-3.diff.gz
 42f4535463fe401b3312e92397e8674b 32690 admin optional 
dmraid_1.0.0.rc15-3_i386.deb
 c1f08e275bb37e4d0870ab64e1a6cac9 9322 debian-installer optional 
dmraid-udeb_1.0.0.rc15-3_i386.udeb
 197a5660f8a5f132a164d0d29c9fbc5c 84310 debian-installer optional 
libdmraid1.0.0.rc15-udeb_1.0.0.rc15-3_i386.udeb
 d4c971abfae1170c5ce6dd55714c4d6a 100040 libs optional 
libdmraid1.0.0.rc15_1.0.0.rc15-3_i386.deb
 65ebe8a7c34282135d64327a7f1f1ec4 138036 libdevel optional 
libdmraid-dev_1.0.0.rc15-3_i386.deb
Package-Type: udeb

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

iEYEARECAAYFAkm7omUACgkQNxpp46476apTcgCgkr7otnWX2WWX458ZEPfE/CmV
JiIAn2p1ngOjXBPCv+0i+gh2l2cJaEtX
=nQND
-END PGP SIGNATURE-


Accepted:
dmraid-udeb_1.0.0.rc15-3_i386.udeb
  to pool/main/d/dmraid/dmraid-udeb_1.0.0.rc15-3_i386.udeb
dmraid_1.0.0.rc15-3.diff.gz
  to pool/main/d/dmraid/dmraid_1.0.0.rc15-3.diff.gz
dmraid_1.0.0.rc15-3.dsc
  to pool/main/d/dmraid/dmraid_1.0.0.rc15-3.dsc
dmraid_1.0.0.rc15-3_i386.deb
  to pool/main/d/dmraid/dmraid_1.0.0.rc15-3_i386.deb
libdmraid-dev_1.0.0.rc15-3_i386.deb
  to pool/main/d/dmraid/libdmraid-dev_1.0.0.rc15-3_i386.deb
libdmraid1.0.0.rc15-udeb_1.0.0.rc15-3_i386.udeb
  to pool/main/d/dmraid/libdmraid1.0.0.rc15-udeb_1.0.0.rc15-3_i386.udeb
libdmraid1.0.0.rc15_1.0.0.rc15-3_i386.deb
  to pool/main/d/dmraid/libdmraid1.0.0.rc15_1.0.0.rc15-3_i386.deb


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



Accepted simutrans-pak64 102.0-1 (source all)

2009-03-14 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 06 Mar 2009 20:24:29 +0100
Source: simutrans-pak64
Binary: simutrans-pak64
Architecture: source all
Version: 102.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@43-1.org
Description: 
 simutrans-pak64 - transportation simulator (data files)
Changes: 
 simutrans-pak64 (102.0-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 a609685eea25a601ddeb0814dfc9b5ccf7922e9f 1338 simutrans-pak64_102.0-1.dsc
 aa9d37fef0b09adfbb14f3b2d81174cd91e10571 7262707 
simutrans-pak64_102.0.orig.tar.gz
 88cebe5111f00d1946275f11b71989567709e047 4302 simutrans-pak64_102.0-1.diff.gz
 5839a894d7df4ec6b7196b8c8763052bfd46e1d2 3271664 
simutrans-pak64_102.0-1_all.deb
Checksums-Sha256: 
 d53b6479f9dbe29418439a5855a4587c0d39faa5191c74a6547cc306f1defb4c 1338 
simutrans-pak64_102.0-1.dsc
 070c1e5e6a55fc8d0661dda7108f725f8262c20d5252d0a694f3beebedc08955 7262707 
simutrans-pak64_102.0.orig.tar.gz
 624cc7c615e5014693890652780a39b51ed9f83fd4dc2f4dc663021b16fe125a 4302 
simutrans-pak64_102.0-1.diff.gz
 32576d9cb32377367b5cb44bf22d262a4186ff7b23231abf15461e9f495631b3 3271664 
simutrans-pak64_102.0-1_all.deb
Files: 
 50b4189020393819c6652eaed7efbc69 1338 games extra simutrans-pak64_102.0-1.dsc
 20bd460d13c8de14ba6d04fe55ece20d 7262707 games extra 
simutrans-pak64_102.0.orig.tar.gz
 9a2e50b8cd2c8e0eeb15825e1dff3e1c 4302 games extra 
simutrans-pak64_102.0-1.diff.gz
 8083c91ac0282a3f218838c6f54f0a54 3271664 games extra 
simutrans-pak64_102.0-1_all.deb

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

iEYEARECAAYFAkm7lb8ACgkQsKTFpDfZQSwU4ACePfC8r7TP68HlVXbCuT+3Mobl
/9kAni2pRzLixRPs0tLR/iPGcvq5qp9w
=UKU0
-END PGP SIGNATURE-


Accepted:
simutrans-pak64_102.0-1.diff.gz
  to pool/main/s/simutrans-pak64/simutrans-pak64_102.0-1.diff.gz
simutrans-pak64_102.0-1.dsc
  to pool/main/s/simutrans-pak64/simutrans-pak64_102.0-1.dsc
simutrans-pak64_102.0-1_all.deb
  to pool/main/s/simutrans-pak64/simutrans-pak64_102.0-1_all.deb
simutrans-pak64_102.0.orig.tar.gz
  to pool/main/s/simutrans-pak64/simutrans-pak64_102.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 krank 0.7+dfsg1-12 (source all)

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

Format: 1.8
Date: Sat, 14 Mar 2009 15:43:41 +0300
Source: krank
Binary: krank
Architecture: source all
Version: 0.7+dfsg1-12
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 krank  - is a game of dexterity where you match stones together
Closes: 519499 519658 519659
Changes: 
 krank (0.7+dfsg1-12) unstable; urgency=low
 .
   * Added krank.desktop, closes: #519499.
   * Begining this revision krank saves difficulty level between starts.
   * Replaced default pygame titile to 'Krank', closes: #519658.
   * Updated manpage, use Space for game pause, closes: #519659.
Checksums-Sha1: 
 4dc171e4852ecd0ea28585536300d0380819ffe0 1175 krank_0.7+dfsg1-12.dsc
 f31e6feefc3716f272565f6ced8c163e8daadf2a 10514 krank_0.7+dfsg1-12.diff.gz
 0a9a056726952a1ff7e7e77a20f0e0730f31a793 60001662 krank_0.7+dfsg1-12_all.deb
Checksums-Sha256: 
 f9865e2d3613ea5efd3336ad89047f0fabbc2e5f3cf174912e1303cc1d42a3e5 1175 
krank_0.7+dfsg1-12.dsc
 616e7c3df17b2f276d17fe5ddc377c9d692c29987493c35c5f1e24e45ba546bd 10514 
krank_0.7+dfsg1-12.diff.gz
 d146f4b39683c82fa93ea86ba7ec1c0e49a3be14238c280c1bf91fc5b39b7099 60001662 
krank_0.7+dfsg1-12_all.deb
Files: 
 14611579760e86b00ce444a65b3a2f6d 1175 games extra krank_0.7+dfsg1-12.dsc
 824050b064a3571723faae63a3988496 10514 games extra krank_0.7+dfsg1-12.diff.gz
 05d3b448a7eafce60d344f14418f7401 60001662 games extra 
krank_0.7+dfsg1-12_all.deb

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

iEYEARECAAYFAkm7pywACgkQq4wAz/jiZTeNfwCeInhGuXeooTblYCz+AOZPgK9w
1I8AoOe7aOejO3kfJOeqJAfcUj2FvL98
=MjOy
-END PGP SIGNATURE-


Accepted:
krank_0.7+dfsg1-12.diff.gz
  to pool/main/k/krank/krank_0.7+dfsg1-12.diff.gz
krank_0.7+dfsg1-12.dsc
  to pool/main/k/krank/krank_0.7+dfsg1-12.dsc
krank_0.7+dfsg1-12_all.deb
  to pool/main/k/krank/krank_0.7+dfsg1-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 rcconf 2.1 (source all)

2009-03-14 Thread Atsushi KAMOSHIDA
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 22:14:45 +0900
Source: rcconf
Binary: rcconf
Architecture: source all
Version: 2.1
Distribution: unstable
Urgency: low
Maintainer: Atsushi KAMOSHIDA ka...@debian.org
Changed-By: Atsushi KAMOSHIDA ka...@debian.org
Description: 
 rcconf - Debian Runlevel configuration tool
Changes: 
 rcconf (2.1) unstable; urgency=low
 .
   * Incorrect installed path. Rcconf was installed to /usr/bin.
Checksums-Sha1: 
 2116b114c3dbfc697620494d17e41768d52984bf 700 rcconf_2.1.dsc
 48fd19cd109bd2fccf7be476b2c004b7e056be2a 14805 rcconf_2.1.tar.gz
 7538c2e3bd7d70b6318b1bf4019b9489a7c4858a 22948 rcconf_2.1_all.deb
Checksums-Sha256: 
 7e667afbbdb0a902a7aaa37fc65160046276b7f766549ae690b54692612eec37 700 
rcconf_2.1.dsc
 a8108579b47cf281484f28632e5a528d33c019ad3c2258049a61c19bf12f562d 14805 
rcconf_2.1.tar.gz
 77a61bd7e90517283cc4468f96c616f9c54bfe4f85d746374b1d12243c6bc2be 22948 
rcconf_2.1_all.deb
Files: 
 213a2910c3c3854f4485946e6cc1ab9b 700 admin optional rcconf_2.1.dsc
 696b2e017a515c5786cff5b7fa45f3e0 14805 admin optional rcconf_2.1.tar.gz
 afd1062460d7490ead542324a68276e2 22948 admin optional rcconf_2.1_all.deb

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

iD8DBQFJu65eYxU8kEKVVoIRAv+TAJ42MPQUVw36ldoijkEK3l8prmHlmQCgmLw7
wjV9fp/PdYRjUdgWw+muYAs=
=rG87
-END PGP SIGNATURE-


Accepted:
rcconf_2.1.dsc
  to pool/main/r/rcconf/rcconf_2.1.dsc
rcconf_2.1.tar.gz
  to pool/main/r/rcconf/rcconf_2.1.tar.gz
rcconf_2.1_all.deb
  to pool/main/r/rcconf/rcconf_2.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 chmsee 1.0.4-1 (source amd64)

2009-03-14 Thread LI Daobing
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 21:06:44 +0800
Source: chmsee
Binary: chmsee
Architecture: source amd64
Version: 1.0.4-1
Distribution: unstable
Urgency: low
Maintainer: LI Daobing lidaob...@gmail.com
Changed-By: LI Daobing lidaob...@gmail.com
Description: 
 chmsee - A chm file viewer written in GTK+
Changes: 
 chmsee (1.0.4-1) unstable; urgency=low
 .
   * new upstream release.
   * cs2w removed by upstream:
 - debian/control: update depends and description.
 - debian/chmsee.manpages: remove cs2w.1.
 - debian/rules: remove cs2w install code.
   * all patches merged by upstream:
 - debian/control: no longer build depends on dpatch.
 - debian/patches/: removed.
 - debian/rules: remove dpatch.mk.
   * debian/chmsee.docs: remove README.zh and NEWS.zh.
Checksums-Sha1: 
 14f3c81c1f7d34e1877b5f442420946faa554bc3 1282 chmsee_1.0.4-1.dsc
 a22c2d68185f31019bab97e28a3bd79ad97a879c 260449 chmsee_1.0.4.orig.tar.gz
 79a1a31a42726a6f08de0c9811a8f3750a817270 7978 chmsee_1.0.4-1.diff.gz
 c9f491b8e25db144d701d2f9b737828455ea8cab 129932 chmsee_1.0.4-1_amd64.deb
Checksums-Sha256: 
 840b24f16120c20a980c3641468808b00b6d93b4813a96101e2a3b65922e0c1a 1282 
chmsee_1.0.4-1.dsc
 ab21979fb3f503e9d00db5037dd4fbea8cacad3f455df253ea5fe77c7d3243ed 260449 
chmsee_1.0.4.orig.tar.gz
 66e18661c47e76c8879362ae65de51a3399bda148786b388bfcab626be903fd6 7978 
chmsee_1.0.4-1.diff.gz
 b0d2d7a7ed69e2a857929e66d2ff0a0594351cb25453771de813da9fd3888efa 129932 
chmsee_1.0.4-1_amd64.deb
Files: 
 d2c65ca232e5b0956e561dd0d21a8f2e 1282 text optional chmsee_1.0.4-1.dsc
 43d40e0db8ed447ace76ca58c7cdb51e 260449 text optional chmsee_1.0.4.orig.tar.gz
 9b9d518f9322300065f88186e9d8b61a 7978 text optional chmsee_1.0.4-1.diff.gz
 35f1234f1a7626187e6f2c9a2ff96c40 129932 text optional chmsee_1.0.4-1_amd64.deb

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

iEYEARECAAYFAkm7rxMACgkQ5TUK4GCH0vhB1ACfTaNyj3X4CSoWOJmS81nUXwC7
S4sAnjES9U0PqnfCSkZHDchKpHMAJJIQ
=lbzW
-END PGP SIGNATURE-


Accepted:
chmsee_1.0.4-1.diff.gz
  to pool/main/c/chmsee/chmsee_1.0.4-1.diff.gz
chmsee_1.0.4-1.dsc
  to pool/main/c/chmsee/chmsee_1.0.4-1.dsc
chmsee_1.0.4-1_amd64.deb
  to pool/main/c/chmsee/chmsee_1.0.4-1_amd64.deb
chmsee_1.0.4.orig.tar.gz
  to pool/main/c/chmsee/chmsee_1.0.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 mergelog 4.5.1-8 (source i386)

2009-03-14 Thread Ryan Niebur
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 02:40:01 -0700
Source: mergelog
Binary: mergelog
Architecture: source i386
Version: 4.5.1-8
Distribution: unstable
Urgency: low
Maintainer: Ryan Niebur ryanrya...@gmail.com
Changed-By: Ryan Niebur ryanrya...@gmail.com
Description: 
 mergelog   - utility that merges httpd log files by date
Closes: 395715 500354
Changes: 
 mergelog (4.5.1-8) unstable; urgency=low
 .
   * adopt package (Closes: #500354)
   * redo debian/rules with dh7 (Closes: #395715)
   * remove debian/dirs
   * add homepage field
   * bump dh compat to 7
   * add build dep on autotools-dev for copying config.{sub,guess}
   * standards version 3.8.1
   * add debian/watch
   * remove changes outside of the debian dir, as they are automatically
 generated
   * add copyright information to debian/copyright, and add
 copyright/license information about the debian packaging
   * add Vcs-{Browser,Git} fields in control file
   * correct FSF address in copyright file
   * add misc:Depends to depends
   * fix build by manually adding a depcomp symlink and running
 autoreconf
   * clean files added/changed during the build process
   * fix short description
Checksums-Sha1: 
 7a1c95cd5da2e72a66726982e7b9260382852608 1139 mergelog_4.5.1-8.dsc
 949ef92d55ee341df6f34bba02d1d1640f777a68 2527 mergelog_4.5.1-8.diff.gz
 2476b98369930304fe815c80cb4aa78d6afb7b31 10486 mergelog_4.5.1-8_i386.deb
Checksums-Sha256: 
 58c1eeb373bd9534b0e21fe343ce0102bf4ec19581472e1d6fec699e673fdd32 1139 
mergelog_4.5.1-8.dsc
 f78810369de93de7e12ddefba0c8d5cb68915795dc34fc8c5598ca278aa05fb5 2527 
mergelog_4.5.1-8.diff.gz
 793f857555647cdfd34664b40d7c783fda0d0353bae652d1522d250966011671 10486 
mergelog_4.5.1-8_i386.deb
Files: 
 d8c441872cb071f893cc9ebae2194788 1139 utils optional mergelog_4.5.1-8.dsc
 15b5bccc7c71ffbb48b9ab8c2ad75ab7 2527 utils optional mergelog_4.5.1-8.diff.gz
 c4b38028628e6c104b56d3a39d3fabbb 10486 utils optional mergelog_4.5.1-8_i386.deb

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

iEYEARECAAYFAkm7rKQACgkQOzKYnQDzz+R0fwCeNve4tc+WATx3zBkmCAhaMS2i
VR0AoJEQ2/ar4mcg2MyAvEyH2TdQbzKt
=doe+
-END PGP SIGNATURE-


Accepted:
mergelog_4.5.1-8.diff.gz
  to pool/main/m/mergelog/mergelog_4.5.1-8.diff.gz
mergelog_4.5.1-8.dsc
  to pool/main/m/mergelog/mergelog_4.5.1-8.dsc
mergelog_4.5.1-8_i386.deb
  to pool/main/m/mergelog/mergelog_4.5.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 pommed 1.26~dfsg-1 (source amd64)

2009-03-14 Thread Julien BLACHE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 14:21:23 +0100
Source: pommed
Binary: pommed gpomme wmpomme
Architecture: source amd64
Version: 1.26~dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Julien BLACHE jbla...@debian.org
Changed-By: Julien BLACHE jbla...@debian.org
Description: 
 gpomme - graphical client for pommed
 pommed - Apple laptops hotkeys event handler
 wmpomme- WindowMaker dockapp client for pommed
Changes: 
 pommed (1.26~dfsg-1) unstable; urgency=low
 .
   * New upstream release.
 .
   * debian/control:
 + Bump Standards-Version to 3.8.1 (no changes).
 + Update pommed's description regarding ambient light sensors and
   keyboard backlight.
Checksums-Sha1: 
 e9b0f67c4f25b749f0c9e8d6b1fa926fb00f2b75 1211 pommed_1.26~dfsg-1.dsc
 aec19b06660b7e9b312e4ed9db058bbf3267a7b5 443467 pommed_1.26~dfsg.orig.tar.gz
 dcc098a7263e741c33dc2c924aa02ef82418dcfe 7107 pommed_1.26~dfsg-1.diff.gz
 c2a98b7869f45839f1a4f031876d5df88d715955 57800 pommed_1.26~dfsg-1_amd64.deb
 e04a353452bcc80e72b92a3160d002fa8f2ebbcb 343986 gpomme_1.26~dfsg-1_amd64.deb
 13ca93e23c54159fdba51529fdd3c7945a0b4446 29918 wmpomme_1.26~dfsg-1_amd64.deb
Checksums-Sha256: 
 5111954749c68d1db2717ee12342e572e409153df591a5c56d34a7e3b6658d6c 1211 
pommed_1.26~dfsg-1.dsc
 cf5077c44f6e39430db6141ea8128f2e5ee6e6ee67bd821c8092fcee0912041b 443467 
pommed_1.26~dfsg.orig.tar.gz
 0fc6024e8b3e6433245048e0e474c0424f1e717e1110f4c774df83b20a1e86aa 7107 
pommed_1.26~dfsg-1.diff.gz
 93f805e5e6d4541270b2ff51e376a90cbc682e8a1c2793d0e7cc7b473173222c 57800 
pommed_1.26~dfsg-1_amd64.deb
 00c8ddac85514822458e5965d92d3db65dd8ebc29d2800045eadd48fbc17 343986 
gpomme_1.26~dfsg-1_amd64.deb
 1879a6ff4e57a297cd9c3bcf5de93146c316f8485a4a1537edc6ee29a6aa46d8 29918 
wmpomme_1.26~dfsg-1_amd64.deb
Files: 
 bf4f694a4d1209aff4a3cfba88716347 1211 utils optional pommed_1.26~dfsg-1.dsc
 9151d33e63d33f8f6f5eddbd22570a27 443467 utils optional 
pommed_1.26~dfsg.orig.tar.gz
 d950b48077a007466ccff4f6cdb861fc 7107 utils optional pommed_1.26~dfsg-1.diff.gz
 f53700083011c8f1a621951c7b73ba57 57800 utils optional 
pommed_1.26~dfsg-1_amd64.deb
 3a090e156c2e145567d88e5cd05c9ca6 343986 utils optional 
gpomme_1.26~dfsg-1_amd64.deb
 99f0d2a67ba190513cf84135578a9dc4 29918 utils optional 
wmpomme_1.26~dfsg-1_amd64.deb

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

iD8DBQFJu6+SzWFP1/XWUWkRAm1dAJ4k2WJv5Cvd0Zx/x+z+t+w+6v0PiQCdFB8/
Gl/KVaOlxmsMZCeMnWgnGCU=
=jUQY
-END PGP SIGNATURE-


Accepted:
gpomme_1.26~dfsg-1_amd64.deb
  to pool/main/p/pommed/gpomme_1.26~dfsg-1_amd64.deb
pommed_1.26~dfsg-1.diff.gz
  to pool/main/p/pommed/pommed_1.26~dfsg-1.diff.gz
pommed_1.26~dfsg-1.dsc
  to pool/main/p/pommed/pommed_1.26~dfsg-1.dsc
pommed_1.26~dfsg-1_amd64.deb
  to pool/main/p/pommed/pommed_1.26~dfsg-1_amd64.deb
pommed_1.26~dfsg.orig.tar.gz
  to pool/main/p/pommed/pommed_1.26~dfsg.orig.tar.gz
wmpomme_1.26~dfsg-1_amd64.deb
  to pool/main/p/pommed/wmpomme_1.26~dfsg-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 creoleparser 0.6-1 (source all)

2009-03-14 Thread Bernd Zeimetz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 14:58:20 +0100
Source: creoleparser
Binary: python-creoleparser
Architecture: source all
Version: 0.6-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Bernd Zeimetz b...@debian.org
Description: 
 python-creoleparser - Parser for the Creole common wiki markup language
Changes: 
 creoleparser (0.6-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control:
 - Bumping Standards-Version to 3.8.1, no changes needed.
Checksums-Sha1: 
 3db008d0d51dfb92c2e36901684e360f5af3e972 1334 creoleparser_0.6-1.dsc
 48b51b65049dfdb195a229ae195ea55f574b54ce 18180 creoleparser_0.6.orig.tar.gz
 8bc319602873561fe3d45eda2e94aa6b6fed5b6b 2836 creoleparser_0.6-1.diff.gz
 00b6750dc7bc680f61353c0b35cee6a9fac12362 19702 
python-creoleparser_0.6-1_all.deb
Checksums-Sha256: 
 c8cf456c3c5c31472735346cedf7dfe6cc99a5a11fcbd5db3785aceae5a67bad 1334 
creoleparser_0.6-1.dsc
 8cd5888b76502b9b79f6ca1feef5aa0d2876fe2acfdfaf0ee4118035398c7e93 18180 
creoleparser_0.6.orig.tar.gz
 f04819efd7a6193211baeb0998b6275fba075fe818409bccf921822abfb450ad 2836 
creoleparser_0.6-1.diff.gz
 08272d0ae1a3eb3feee01661df2f1134b87a7b907e21260efc6d57fec520acba 19702 
python-creoleparser_0.6-1_all.deb
Files: 
 1dccd9dd2b6ee4bf82bdc79d2dc250e1 1334 python optional creoleparser_0.6-1.dsc
 02d8d17ee5a063e07de5ff889d0d3e16 18180 python optional 
creoleparser_0.6.orig.tar.gz
 184968f89f99b37493b723126efd8e3c 2836 python optional 
creoleparser_0.6-1.diff.gz
 969571ef4ff71a14a845e5c0b7cf832c 19702 python optional 
python-creoleparser_0.6-1_all.deb

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

iEYEARECAAYFAkm7uJYACgkQBnqtBMk7/3nJEQCfVGv5/CywT4HeSFeEvbuei5u/
ybEAnj5bI2A7DFyCqhzFEwcGYoxIOEpc
=in+b
-END PGP SIGNATURE-


Accepted:
creoleparser_0.6-1.diff.gz
  to pool/main/c/creoleparser/creoleparser_0.6-1.diff.gz
creoleparser_0.6-1.dsc
  to pool/main/c/creoleparser/creoleparser_0.6-1.dsc
creoleparser_0.6.orig.tar.gz
  to pool/main/c/creoleparser/creoleparser_0.6.orig.tar.gz
python-creoleparser_0.6-1_all.deb
  to pool/main/c/creoleparser/python-creoleparser_0.6-1_all.deb


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



Accepted libpar-packer-perl 0.982-3 (source i386)

2009-03-14 Thread Ryan Niebur
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Mar 2009 22:03:36 -0700
Source: libpar-packer-perl
Binary: libpar-packer-perl
Architecture: source i386
Version: 0.982-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ryan Niebur ryanrya...@gmail.com
Description: 
 libpar-packer-perl - utility for creating PAR archives and stand-alone 
executables
Closes: 517340
Changes: 
 libpar-packer-perl (0.982-3) unstable; urgency=low
 .
   * add myself to uploaders
   * fix with the rename of par.pl (Closes: #517340)
   * standards version 3.8.1
Checksums-Sha1: 
 aeaf3ae21cfdf26da5058458528433817cbfba15 1537 libpar-packer-perl_0.982-3.dsc
 64b1cc5437c9ec46250fd6ee81cafbbe5a082633 5741 
libpar-packer-perl_0.982-3.diff.gz
 e28d4a0d42e8b57e4a149e3f95c6a6b18e86be92 1756548 
libpar-packer-perl_0.982-3_i386.deb
Checksums-Sha256: 
 290ff30547e28a22603b1ce5cee8ff3c0ab7c5807fbf90aa0382c9cd671d6991 1537 
libpar-packer-perl_0.982-3.dsc
 f05210485e860124f7b169e46376ac0b12dc42d23a964368f6d61e1e6ed422dc 5741 
libpar-packer-perl_0.982-3.diff.gz
 e2feb31d35c8fe51a5697d4f911e4bfdc843c6290ff723c23f54662b5355f156 1756548 
libpar-packer-perl_0.982-3_i386.deb
Files: 
 6dceadce7ce7d80aa332c16d25918550 1537 perl optional 
libpar-packer-perl_0.982-3.dsc
 753f416f2b8b78a1e8a2580e55ce9aa4 5741 perl optional 
libpar-packer-perl_0.982-3.diff.gz
 737ebeb16d4623a78925365233dfb827 1756548 perl optional 
libpar-packer-perl_0.982-3_i386.deb

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

iEYEARECAAYFAkm7v6wACgkQOzKYnQDzz+QPAwCeNdqtSH+hNGXF0fGFOq20pezg
A6gAnRgovVC7F6TzTc99wiE5tVsslIZg
=o0fe
-END PGP SIGNATURE-


Accepted:
libpar-packer-perl_0.982-3.diff.gz
  to pool/main/libp/libpar-packer-perl/libpar-packer-perl_0.982-3.diff.gz
libpar-packer-perl_0.982-3.dsc
  to pool/main/libp/libpar-packer-perl/libpar-packer-perl_0.982-3.dsc
libpar-packer-perl_0.982-3_i386.deb
  to pool/main/libp/libpar-packer-perl/libpar-packer-perl_0.982-3_i386.deb


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



Accepted libauthen-simple-pam-perl 0.2-3 (source all)

2009-03-14 Thread Ryan Niebur
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Mar 2009 21:03:46 -0700
Source: libauthen-simple-pam-perl
Binary: libauthen-simple-pam-perl
Architecture: source all
Version: 0.2-3
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ryan Niebur ryanrya...@gmail.com
Description: 
 libauthen-simple-pam-perl - simple PAM authentication module
Closes: 519654
Changes: 
 libauthen-simple-pam-perl (0.2-3) unstable; urgency=low
 .
   [ gregor herrmann ]
   * debian/control: Changed: Switched Vcs-Browser field to ViewSVN
 (source stanza).
   * debian/control: Added: ${misc:Depends} to Depends: field.
 .
   [ Ryan Niebur ]
   * add dependency on libauthen-simple-perl (Closes: #519654)
   * add myself to uploaders
   * policy 3.8.1
   * debhelper 7
   * machine readable copyright format
 .
   [ gregor herrmann ]
   * debian/control: improve short/long description.
Checksums-Sha1: 
 8f6c354e1130e45cb4b3884366911877303aa7e7 1601 
libauthen-simple-pam-perl_0.2-3.dsc
 a21585bef8447b6edd77e90e41943231aaf21197 1835 
libauthen-simple-pam-perl_0.2-3.diff.gz
 b34456540edfc07f34d4ef0a1deecbcb9e1cb7a3 6586 
libauthen-simple-pam-perl_0.2-3_all.deb
Checksums-Sha256: 
 8e992e738d8f55f52c9c5642ce70d6f3638c89a45a9abc019f048c3dbdbc7d28 1601 
libauthen-simple-pam-perl_0.2-3.dsc
 810b591fa1f421e13de12da9069c15d5a0bf80deea430c1880db12ceb08257ab 1835 
libauthen-simple-pam-perl_0.2-3.diff.gz
 d8d0add2cf3837b07c51c9d2eddacbe6e3d25de9a12eccde20264f266abe39ab 6586 
libauthen-simple-pam-perl_0.2-3_all.deb
Files: 
 322d41aa975c5e9f139c8bd80f33 1601 perl optional 
libauthen-simple-pam-perl_0.2-3.dsc
 f11204c852895b1a36b68d9a7ac2c9ec 1835 perl optional 
libauthen-simple-pam-perl_0.2-3.diff.gz
 5c75eae7423fc25eea417a5513bc1dd8 6586 perl optional 
libauthen-simple-pam-perl_0.2-3_all.deb

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

iEYEARECAAYFAkm7uqEACgkQOzKYnQDzz+Q4+wCg6IFmRgLu3B5/hAzjubeKWUH0
MVMAn1j29Bit9B658jpmJlUgdTp4N36N
=Kj80
-END PGP SIGNATURE-


Accepted:
libauthen-simple-pam-perl_0.2-3.diff.gz
  to 
pool/main/liba/libauthen-simple-pam-perl/libauthen-simple-pam-perl_0.2-3.diff.gz
libauthen-simple-pam-perl_0.2-3.dsc
  to 
pool/main/liba/libauthen-simple-pam-perl/libauthen-simple-pam-perl_0.2-3.dsc
libauthen-simple-pam-perl_0.2-3_all.deb
  to 
pool/main/liba/libauthen-simple-pam-perl/libauthen-simple-pam-perl_0.2-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 avant-window-navigator 0.3.2-1 (source all i386)

2009-03-14 Thread Julien Lavergne
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 19 Jan 2009 19:35:52 +0100
Source: avant-window-navigator
Binary: avant-window-navigator avant-window-navigator-data libawn0 libawn-doc 
libawn-dev awn-manager python-awn vala-awn libawn0-dbg
Architecture: source all i386
Version: 0.3.2-1
Distribution: unstable
Urgency: low
Maintainer: Luca Bruno lu...@debian.org
Changed-By: Julien Lavergne julien.laver...@gmail.com
Description: 
 avant-window-navigator - A MacOS X like panel for GNOME
 avant-window-navigator-data - Common files for avant-window-navigator
 awn-manager - A preferences manager for avant-window-navigator
 libawn-dev - library for avant-window-navigator - development files
 libawn-doc - library for avant-window-navigator - documentation files
 libawn0- library for avant-window-navigator
 libawn0-dbg - library for avant-window-navigator - debug package
 python-awn - Python bindings for avant-window-navigator library
 vala-awn   - Vala bindings for avant-window-navigator library
Closes: 493640
Changes: 
 avant-window-navigator (0.3.2-1) unstable; urgency=low
 .
   * New upstream release (Closes : #514681) (LP: #327443)
- Add a script to delay the start of awn when using the autostart.
  (Closes: #493640)
- Fix awn-manager permission when trying to edit some desktop file
 (LP: #260987)
- Update position on screen resolution changes (LP: #276734)
   * debian/awn.wrapper
- A script to update applets path using awn-applets-migration script.
   * debian/*.install:
- Add the themes directory to avant-window-navigator-data.install.
- Add awn-autostart to avant-window-navigator.install.
- Add awn-applets-migration to awn-manager.install.
- Remove usr/bin/avant-window-navigator, handle by debian/rules.
- Install python bindings in *-packages instead of site-packages only,
  needed for the python migration in squeeze (LP: #335785).
   * debian/control:
- Add missing ${misc:Depends}.
- Bump Build-Depends and Depends for vala to (= 0.5.4).
- Set awn-manager as Depends rather than Recommends, needed by the
  awn-applets-migration script.
- Remove unnecessary Section: gnome
- Note that the libawn0-dbg contains debuggins symbols.
- Set Build-Depends on python (= 2.5) instead of hardcoding the python
  version.
   * debian/awn-autostart.1  debian/awn-applets-migrations:
- Add new man pages.
   * debian/avant-window-navigator.links
- Symlink awn.1 with avant-window-navigator.1
   * debian/rules:
- Move avant-window-navigator to awn, and copy awn.wrapper to
  avant-window-navigator
- Add new man pages.
   * debian/patches/
- 00-wm-behavior.patch : Don't bring the windows to the current workspace
  when the icon of the bar is clicked. Keep the same behavior that the
  gnome-panel applet.
- 01-tasks-have-arrow.patch: Set the option Tasks have arrow by default.
- 03-python-import.path : Update.
   * debian/copyright
- Replace (C) by ©.
Checksums-Sha1: 
 88a5a8b05fb53cf0442e74ca97498b6de9649a97 1569 
avant-window-navigator_0.3.2-1.dsc
 2a34a9548f16486e660a9be39c7799d89b3f24fe 999231 
avant-window-navigator_0.3.2.orig.tar.gz
 d4b69eb031e0b3db8a277de912e13764e53c7f04 16220 
avant-window-navigator_0.3.2-1.diff.gz
 71e9f56ffbbeb49244ab511e427b8bf452c53a74 280242 
avant-window-navigator-data_0.3.2-1_all.deb
 6129f2f490400d08d54deceb36f1a1bb35ad16b2 79254 libawn-doc_0.3.2-1_all.deb
 7db0a07fcd8d577ebcc5320e1e553239a1d7656a 93002 awn-manager_0.3.2-1_all.deb
 8c5f74cae416a21e6a704ddfd9c13c683ed14e80 54710 vala-awn_0.3.2-1_all.deb
 108d3bb41e7f38707d6eef7a71011e79c7c3df1d 107324 
avant-window-navigator_0.3.2-1_i386.deb
 4e5aba42bd1c02d860201d4cdfdcb94a0faa1454 112930 libawn0_0.3.2-1_i386.deb
 8338cde3228f465019c72a5b370b847a2274195b 61696 libawn-dev_0.3.2-1_i386.deb
 b0811ca22536010d2b85ff3cc50eb4807104613e 71964 python-awn_0.3.2-1_i386.deb
 893f01798acba11562d622593ccdb03c0b37e4ce 394838 libawn0-dbg_0.3.2-1_i386.deb
Checksums-Sha256: 
 57a0d6b9fd6d0253c398d76d81d5f012f006d4b994273241417f6a930c23ad6b 1569 
avant-window-navigator_0.3.2-1.dsc
 62a0d05deb88dd633e4532690b565e2dbade097861fc8a39cf798a0b066275fc 999231 
avant-window-navigator_0.3.2.orig.tar.gz
 ac44187fdee3fd08697bb615304814498578ee308e8d44f1a0b50d4d1ce7cc02 16220 
avant-window-navigator_0.3.2-1.diff.gz
 42d8c1ade83af8213eebb9de24462df42f494a820075d97d340ec2cf66f23f00 280242 
avant-window-navigator-data_0.3.2-1_all.deb
 ab8bf7f643f693edf247fb3e8849816385c787b65a7c56edff72adccc84208d9 79254 
libawn-doc_0.3.2-1_all.deb
 31a5711f1b16d0fef1655ca3e4fffa8340263670fba1c65d3f36768200715210 93002 
awn-manager_0.3.2-1_all.deb
 c4ab2412df59b7fc8cb2abb9c66377190cc81c464e5bfdc7b54d8c03f6905527 54710 
vala-awn_0.3.2-1_all.deb
 9a2c12568d1b662bbb6d8595b11159d06b4f8ecbec1655975d6ea8b849b410ef 107324 
avant-window-navigator_0.3.2-1_i386.deb
 0bb4e8e3bc3a0edbe6f674b67f00559e633a29cc9013eb6e36e55ce729ae8611 112930 
libawn0_0.3.2-1_i386.deb

Accepted libglib-perl 1:1.214-2 (source i386)

2009-03-14 Thread Ryan Niebur
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 12 Mar 2009 23:08:55 -0700
Source: libglib-perl
Binary: libglib-perl
Architecture: source i386
Version: 1:1.214-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Ryan Niebur ryanrya...@gmail.com
Description: 
 libglib-perl - Perl interface to the GLib and GObject libraries
Changes: 
 libglib-perl (1:1.214-2) unstable; urgency=low
 .
   * add a patch to try to smartly figure out a suitable whatis for
 Gnome2 and Gtk2
   * policy 3.8.1
Checksums-Sha1: 
 4165f525821bb202e6e79e4b86659ac773481018 1363 libglib-perl_1.214-2.dsc
 080927f8df2b8950c3a6a299bc66b281e84b3044 6676 libglib-perl_1.214-2.diff.gz
 4b31f1c23befc1a16ddca4de93688393289ec462 452224 libglib-perl_1.214-2_i386.deb
Checksums-Sha256: 
 b1deb4639ad38733b865d30fd8f93906cb64e8d12e5db5c546255e08dac628cd 1363 
libglib-perl_1.214-2.dsc
 ff410ba4408a20f6daf80c53903e07afe68a569c6fc9d27a303f604485282e1e 6676 
libglib-perl_1.214-2.diff.gz
 bddcdf032f59d27f8cc80904f721128c9649b0bd4f5899d01d8cf49577d357c6 452224 
libglib-perl_1.214-2_i386.deb
Files: 
 03c5acaf1b5266520a60250c01f73998 1363 perl optional libglib-perl_1.214-2.dsc
 6d5836daea10f1dc90dbdbef8ede0f28 6676 perl optional 
libglib-perl_1.214-2.diff.gz
 f205811af39698e0cb09aa16d5bcff7e 452224 perl optional 
libglib-perl_1.214-2_i386.deb

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

iEYEARECAAYFAkm7x4UACgkQOzKYnQDzz+QkuwCgqh1Fjmumk/wLEw8YzgDokMUu
j9kAn0CX8FNCM2kQW1ofB2ykFc2/KZ5s
=q5B8
-END PGP SIGNATURE-


Accepted:
libglib-perl_1.214-2.diff.gz
  to pool/main/libg/libglib-perl/libglib-perl_1.214-2.diff.gz
libglib-perl_1.214-2.dsc
  to pool/main/libg/libglib-perl/libglib-perl_1.214-2.dsc
libglib-perl_1.214-2_i386.deb
  to pool/main/libg/libglib-perl/libglib-perl_1.214-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 qwo 0.4+git20090303+b448a2-1 (source i386)

2009-03-14 Thread Yaroslav Halchenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 10:42:18 -0400
Source: qwo
Binary: qwo
Architecture: source i386
Version: 0.4+git20090303+b448a2-1
Distribution: unstable
Urgency: low
Maintainer: Yaroslav Halchenko deb...@onerussian.com
Changed-By: Yaroslav Halchenko deb...@onerussian.com
Description: 
 qwo- An efficient input method for touch screens
Changes: 
 qwo (0.4+git20090303+b448a2-1) unstable; urgency=low
 .
   * Merged up-to-date upstream with following changes:
 - Remove header files included twice
 - Fix bug when releasing a shift gesture
   * Base don git master b448a2090f7e358a34cc2cefdff3bc172f18b5e7.
Checksums-Sha1: 
 643e482f1e7ca46c48b2149e45595428b6bfb8b5 1296 qwo_0.4+git20090303+b448a2-1.dsc
 51b6627557a1f7a1b3a73cb2af228d5cb61a7f29 54197 
qwo_0.4+git20090303+b448a2.orig.tar.gz
 b5e610b2287791cbdaacb0171dbb185e36d4c05a 3852 
qwo_0.4+git20090303+b448a2-1.diff.gz
 1fa2ffb80b675682ab3e0eb243f7e15b2a91be6a 47288 
qwo_0.4+git20090303+b448a2-1_i386.deb
Checksums-Sha256: 
 5a99be2b296d932599d59202c8d48461f35b7bf6738e3659496e5ec90901c41b 1296 
qwo_0.4+git20090303+b448a2-1.dsc
 4300296d615e0e22455a52702cbc57ff554c72b1bf134b95ac999d131a80c9e4 54197 
qwo_0.4+git20090303+b448a2.orig.tar.gz
 3af640bbf6d285e78b34632fd173ae6d908d9e1204ab7ce65758f0fc971bc989 3852 
qwo_0.4+git20090303+b448a2-1.diff.gz
 7d67ba9a1c0399a46f061af30981e9ea89032262fbbc34ffd9835219554cc8c2 47288 
qwo_0.4+git20090303+b448a2-1_i386.deb
Files: 
 f7fd78dc5a61a1fc3ea1fbcf0f8c17cd 1296 x11 optional 
qwo_0.4+git20090303+b448a2-1.dsc
 1fb1e315436986ae7e3996ecf381da1f 54197 x11 optional 
qwo_0.4+git20090303+b448a2.orig.tar.gz
 57169eacb78a22e779445136e5339eac 3852 x11 optional 
qwo_0.4+git20090303+b448a2-1.diff.gz
 86e799831e599d262edc58c30a126faa 47288 x11 optional 
qwo_0.4+git20090303+b448a2-1_i386.deb

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

iEYEARECAAYFAkm7xn0ACgkQjRFFY3XAJMh6ygCdE71MQsT6td9NMgL3+OWm3NLU
vtIAoKgYLNlL32Ia4AyKxe140e5I1UM0
=nJ3f
-END PGP SIGNATURE-


Accepted:
qwo_0.4+git20090303+b448a2-1.diff.gz
  to pool/main/q/qwo/qwo_0.4+git20090303+b448a2-1.diff.gz
qwo_0.4+git20090303+b448a2-1.dsc
  to pool/main/q/qwo/qwo_0.4+git20090303+b448a2-1.dsc
qwo_0.4+git20090303+b448a2-1_i386.deb
  to pool/main/q/qwo/qwo_0.4+git20090303+b448a2-1_i386.deb
qwo_0.4+git20090303+b448a2.orig.tar.gz
  to pool/main/q/qwo/qwo_0.4+git20090303+b448a2.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 pycha 0.4.2-1 (source all)

2009-03-14 Thread Vincent Bernat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 15:51:31 +0100
Source: pycha
Binary: python-pycha
Architecture: source all
Version: 0.4.2-1
Distribution: unstable
Urgency: low
Maintainer: Vincent Bernat ber...@debian.org
Changed-By: Vincent Bernat ber...@debian.org
Description: 
 python-pycha - chart-drawing library using Cairo
Closes: 506290 516901
Changes: 
 pycha (0.4.2-1) unstable; urgency=low
 .
   * New upstream release. Closes: #506290
   * Upload to unstable.
   * Don't run unittests at all. Closes: #516901
Checksums-Sha1: 
 8b0b024fc161314953e13516a789c70defc27a96 1370 pycha_0.4.2-1.dsc
 8e701dd330b3f9a6033811eef1660731640a45c4 188604 pycha_0.4.2.orig.tar.gz
 464feb0f7066075621b89deb93bc56384e00c42c 2518 pycha_0.4.2-1.diff.gz
 c3363c44235bcc1698802deac170bc4ddb012b9e 94680 python-pycha_0.4.2-1_all.deb
Checksums-Sha256: 
 873e551ebf871f753bf41207484ab7c2db2f82931ab6bb174f20dad0ea270837 1370 
pycha_0.4.2-1.dsc
 1b49531facd7bf04ef08110b797048bce98aa169667c671809b3ff1a75c107f6 188604 
pycha_0.4.2.orig.tar.gz
 1f68c2da3f9d12d938d976e332d6aef7f18f06f50a3c6e2daba1bc423b08fe71 2518 
pycha_0.4.2-1.diff.gz
 c4d7dfc1e32ba412977454ca57cb7814605a706022f71d36329a78802f973475 94680 
python-pycha_0.4.2-1_all.deb
Files: 
 9a641788da03321e2bd39b8b76f3f5e3 1370 python optional pycha_0.4.2-1.dsc
 37977cb8802fdf0ffd24f9d05b11df38 188604 python optional pycha_0.4.2.orig.tar.gz
 d5fc0dbfd64e9be2c74f35377250be69 2518 python optional pycha_0.4.2-1.diff.gz
 d709391a1c857d22928c331ba088d215 94680 python optional 
python-pycha_0.4.2-1_all.deb

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

iEYEARECAAYFAkm7xqEACgkQKFvXofIqeU6LCQCdGRTmnrBPY0oX0IABIW9mossE
O24AnjenUnDgFXBXiYYiyKCWCGCd72iG
=uf28
-END PGP SIGNATURE-


Accepted:
pycha_0.4.2-1.diff.gz
  to pool/main/p/pycha/pycha_0.4.2-1.diff.gz
pycha_0.4.2-1.dsc
  to pool/main/p/pycha/pycha_0.4.2-1.dsc
pycha_0.4.2.orig.tar.gz
  to pool/main/p/pycha/pycha_0.4.2.orig.tar.gz
python-pycha_0.4.2-1_all.deb
  to pool/main/p/pycha/python-pycha_0.4.2-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 mpi-defaults 0.3 (source amd64)

2009-03-14 Thread Manuel Prinz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 15:15:10 +0100
Source: mpi-defaults
Binary: mpi-default-dev mpi-default-bin
Architecture: source amd64
Version: 0.3
Distribution: unstable
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Manuel Prinz man...@debian.org
Description: 
 mpi-default-bin - Standard MPI runtime programs
 mpi-default-dev - Standard MPI development files
Closes: 509782 513219 518653
Changes: 
 mpi-defaults (0.3) unstable; urgency=low
 .
   [ Manuel Prinz ]
   * Added myself to Uploaders.
   * Changed section of mpi-default-bin to net (Closes: #509782)
   * Mode LAM default on alpha, since Open MPI still has build issues.
   * Made Open MPI default on GNU/kFreeBSD. Thanks to Petr Salinger for
 the patch! (Closes: #513219)
   * Provide /usr/share/mpi-defaults-dev/debian_defaults with architecture-
 dependent information about the default MPI implementation, so build
 scripts can use it. Thanks to Daniel Leidert for the suggestion!
 (Closes: #518653)
Checksums-Sha1: 
 fe531a47610f7fce5fe86aae2b8f84fc0289c719 1368 mpi-defaults_0.3.dsc
 7c053a7087f934fc08ad41daaf3fe3d9b0e28ea2 2668 mpi-defaults_0.3.tar.gz
 126e7d042dc3ebff8cc2efaecdef5050cb75 2908 mpi-default-dev_0.3_amd64.deb
 cc1c29f545143000c5898c63ec0586fbec8e87c4 2302 mpi-default-bin_0.3_amd64.deb
Checksums-Sha256: 
 a121d395dbd7c64b3897c2fbfc4ff6ff5c47bb0bf7d9ef48af2fe9be39ca5977 1368 
mpi-defaults_0.3.dsc
 0ec4d7814b4a2e2f2d47f579f04fdf617be60849238d21f4b6373ea3986fd949 2668 
mpi-defaults_0.3.tar.gz
 65bdc36158802cafeef4cd83ae5e0bbbafc1c5e4075e4eafefb3a27d9f756464 2908 
mpi-default-dev_0.3_amd64.deb
 9f098cae725511e7f47e439430316cc183fcbd74381eafbf7005d7cd28c5c62d 2302 
mpi-default-bin_0.3_amd64.deb
Files: 
 1f857bf6ba30169ac4cfa757c02ccf19 1368 devel extra mpi-defaults_0.3.dsc
 9593e9a03082603657ccd3bbe6622576 2668 devel extra mpi-defaults_0.3.tar.gz
 d16dd4394a2fe9b2fda03595c4450920 2908 libdevel extra 
mpi-default-dev_0.3_amd64.deb
 1ae3addb3a96647d6f8c2a2e6c1fa42d 2302 net extra mpi-default-bin_0.3_amd64.deb

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

iEYEARECAAYFAkm7y8gACgkQ8WlhyMyNeVd+WQCeKy6pSMOd/8zMuOakFFkfG4om
2qkAniKXaMsaLlcFUNU9BqAKVa+fmw2j
=2r8u
-END PGP SIGNATURE-


Accepted:
mpi-default-bin_0.3_amd64.deb
  to pool/main/m/mpi-defaults/mpi-default-bin_0.3_amd64.deb
mpi-default-dev_0.3_amd64.deb
  to pool/main/m/mpi-defaults/mpi-default-dev_0.3_amd64.deb
mpi-defaults_0.3.dsc
  to pool/main/m/mpi-defaults/mpi-defaults_0.3.dsc
mpi-defaults_0.3.tar.gz
  to pool/main/m/mpi-defaults/mpi-defaults_0.3.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 xmlroff 0.6.2-1 (source i386)

2009-03-14 Thread dale
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 16:15:21 +0100
Source: xmlroff
Binary: xmlroff
Architecture: source i386
Version: 0.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian XML/SGML Group debian-xml-sgml-p...@lists.alioth.debian.org
Changed-By: Daniel Leidert (dale) daniel.leid...@wgdd.de
Description: 
 xmlroff- XSL formatter mainly for DocBook
Changes: 
 xmlroff (0.6.2-1) unstable; urgency=low
 .
   * New upstream release 0.6.2.
 .
   * debian/control (Standards-Version): Bumped to 3.8.1 (no other changes).
 (Vcs-Browser): Fixed.
   * debian/copyright: Minor update.
Checksums-Sha1: 
 cb7dadfddaecc8b30da1cc90c3a7eae1e29baad2 1429 xmlroff_0.6.2-1.dsc
 4a540b067881e069d389cce40bc79578cffc7c9b 2827261 xmlroff_0.6.2.orig.tar.gz
 0b28ba6936f3eec717c6e2bd805b9b24ed7928d6 4418 xmlroff_0.6.2-1.diff.gz
 f0a58f5086dc52e7915f22c4dd8bd4b1cd495173 613472 xmlroff_0.6.2-1_i386.deb
Checksums-Sha256: 
 7404933d4563d576765ad878e47a5362f1bbf6afd325abd02dbf2ee6387e5814 1429 
xmlroff_0.6.2-1.dsc
 305be62e51406baaa74870cb95f813f436a756170d2cd14eb48ffd13c7b20f74 2827261 
xmlroff_0.6.2.orig.tar.gz
 6b14714429cc94ca9036390c86a161fca9c2b5a7e9115812b331125bd645c5c4 4418 
xmlroff_0.6.2-1.diff.gz
 92678806c69ed076576bacd19ac23b8f5ec04725ac340988d16e7ccb76930b12 613472 
xmlroff_0.6.2-1_i386.deb
Files: 
 5748450d3475a84bd31aa72d55dc3569 1429 text optional xmlroff_0.6.2-1.dsc
 658052e56f92ec9ef2a16f08cc4c6fe2 2827261 text optional 
xmlroff_0.6.2.orig.tar.gz
 8651b6de214144a8ce38eb889b3615af 4418 text optional xmlroff_0.6.2-1.diff.gz
 431b7dee6c9297d2773cf863d66d12e4 613472 text optional xmlroff_0.6.2-1_i386.deb

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

iEYEARECAAYFAkm70o4ACgkQm0bx+wiPa4xxDwCgqcHCcPxrhuj34NlU+hO5UO0h
dhEAniUiWNZOalSl8aB+Lggn5HQLVWfD
=vPtV
-END PGP SIGNATURE-


Accepted:
xmlroff_0.6.2-1.diff.gz
  to pool/main/x/xmlroff/xmlroff_0.6.2-1.diff.gz
xmlroff_0.6.2-1.dsc
  to pool/main/x/xmlroff/xmlroff_0.6.2-1.dsc
xmlroff_0.6.2-1_i386.deb
  to pool/main/x/xmlroff/xmlroff_0.6.2-1_i386.deb
xmlroff_0.6.2.orig.tar.gz
  to pool/main/x/xmlroff/xmlroff_0.6.2.orig.tar.gz


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



Accepted mailman 1:2.1.12-1 (source i386)

2009-03-14 Thread Thijs Kinkhorst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 14:18:16 +0100
Source: mailman
Binary: mailman
Architecture: source i386
Version: 1:2.1.12-1
Distribution: unstable
Urgency: low
Maintainer: Mailman for Debian pkg-mailman-hack...@lists.alioth.debian.org
Changed-By: Thijs Kinkhorst th...@debian.org
Description: 
 mailman- Powerful, web-based mailing list manager
Closes: 517997
Changes: 
 mailman (1:2.1.12-1) unstable; urgency=low
 .
   * New upstream release.
 + Minimum Python version is now 2.4.
 + Patches obsoleted (incorporated or not useful anymore):
   00_stolen_from_HEAD,
   11_handle_propfind.patch,
   32_MIME_fixup,
   62_new_list_bad_pending_requests,
   67_update_handle_old_versions,
   68_update_catalan,
   78_DeprecationWarning,
   80_fix_string_search.
   Refresh all others. Many thanks to Mark Sapiro and
   Paul Wise for the help in cleaning this up.
 + Fixes bounce handling NotAMemberError (closes: #517997).
   * Various packaging cleanups, upgrade debhelper to level 7.
   * Removes embedded copy of pythonlib/email module.
   * Checked for policy 3.8.1, remove shipped var/{run,lock}
 dirs, they are already created correctly by the init script.
Checksums-Sha1: 
 cf1bc0e362dee2e5c75bdb8e9ccd1e5b9f38da20 1614 mailman_2.1.12-1.dsc
 6d6281f7ce322e271f0259321f4d8931ff46e6ae 8010027 mailman_2.1.12.orig.tar.gz
 043310cde33e45dbe4065c562b1e2f66e619c0a2 127088 mailman_2.1.12-1.diff.gz
 1c90a781f04cb066d32003785f346dd6e8e8daab 9400040 mailman_2.1.12-1_i386.deb
Checksums-Sha256: 
 fdc2baf0f266bfca5c1468c430dac328898e09f36e3489ea4ae6ebaa3cab9426 1614 
mailman_2.1.12-1.dsc
 5e9313252cc2eea774c453131e7f3fe3a5873ebce26628c5504cdc318d563ddd 8010027 
mailman_2.1.12.orig.tar.gz
 deb73adbcb46781f83884942f15a650ea0f554d60d4a36d1206df96be3f25f74 127088 
mailman_2.1.12-1.diff.gz
 937ce2868a06f881634932fa92350768c073bf8bb2c3bbb325c3ce11bcaae6a4 9400040 
mailman_2.1.12-1_i386.deb
Files: 
 b6c9e5ec13033f287f18a1f2123ff637 1614 mail optional mailman_2.1.12-1.dsc
 d565a6d2d0ec6d2dd6936a81e1c1ca86 8010027 mail optional 
mailman_2.1.12.orig.tar.gz
 f15b318ba5e36c9db69fd022f91a78ba 127088 mail optional mailman_2.1.12-1.diff.gz
 a49ddbca2302374fb7cd5d662d68088b 9400040 mail optional 
mailman_2.1.12-1_i386.deb

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

iQEcBAEBAgAGBQJJu9rPAAoJECIIoQCMVaAcG+YIAIBZPF3aWlBTRBr2XC7SnFU7
X5EReyEudk/BXcDUbiR4eEt+5IsIKe8mfkUthf9v8Te6+ttS5qjSeIyv4rGRZH8u
Akm7sgXrnXucJ8THiv4r70KaHKDJL8yMRl3LzG63d+ZmtI9I9S/zvF2SnhbFdOP0
sw71yeVBe3Gr/V+gvl0ckP2+mzsAkOKjjRgCPuFkQfa2BgeOGmGgTY3m0/wQtCWz
gaUTXxx/JnzzqGcsJR4pGTefXYPNv47TF2SgFEDd5RPlhRKPArqVxlPKyMNldalk
NWCBVK4Q4QWKEqR9L2JOKa5ocKBFmJaFILBlva1Q4oqPeu/bZw3NGdj96Fm0sP4=
=2xbE
-END PGP SIGNATURE-


Accepted:
mailman_2.1.12-1.diff.gz
  to pool/main/m/mailman/mailman_2.1.12-1.diff.gz
mailman_2.1.12-1.dsc
  to pool/main/m/mailman/mailman_2.1.12-1.dsc
mailman_2.1.12-1_i386.deb
  to pool/main/m/mailman/mailman_2.1.12-1_i386.deb
mailman_2.1.12.orig.tar.gz
  to pool/main/m/mailman/mailman_2.1.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 tex-common 1.16 (source all)

2009-03-14 Thread Norbert Preining
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 16:57:24 +0100
Source: tex-common
Binary: tex-common
Architecture: source all
Version: 1.16
Distribution: unstable
Urgency: low
Maintainer: Debian TeX maintainers debian-tex-ma...@lists.debian.org
Changed-By: Norbert Preining prein...@debian.org
Description: 
 tex-common - common infrastructure for building and installing TeX
Closes: 519701
Changes: 
 tex-common (1.16) unstable; urgency=low
 .
   * add mktexlsr calling code from postinst-tex to the trigger action in
 case it has never been run before. That allows fresh installations
 to succeed. (Closes: #519701) [np]
Checksums-Sha1: 
 8ab1e9c85280c6eba0d2be0829c0aa5a395c34a6 1129 tex-common_1.16.dsc
 83557d9ed32d09aa5a9c7ac2e98493f35588f076 804582 tex-common_1.16.tar.gz
 5e101e8f760783f98d90becb33295dad708adf87 719844 tex-common_1.16_all.deb
Checksums-Sha256: 
 5ae1158ec9e0f8ca624c7ec65f7faa860b16c1af7bd69e98dbd0e226ba86eed0 1129 
tex-common_1.16.dsc
 588c54fa6a615d1a69b216bd985db134c245ea1968a8f49b80853807cee73665 804582 
tex-common_1.16.tar.gz
 c9c69b98ae210df4fa573504557415873a6057f5a3019662ab3bd895e7fafc2f 719844 
tex-common_1.16_all.deb
Files: 
 096a247f4a65894b264789656a24a5a4 1129 tex optional tex-common_1.16.dsc
 8e25cd7c720ced82199c3d07d490d6bc 804582 tex optional tex-common_1.16.tar.gz
 134050c21e68cb49bb10629eaad79fab 719844 tex optional tex-common_1.16_all.deb

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

iD8DBQFJu9ce0r9KownFsJQRAlGfAJ9MrZIFpiFzNcVBmqqUEhb4QWfQLQCaAljd
LKbNGwNEn0P5/Ev4XXmK5Lg=
=s2fb
-END PGP SIGNATURE-


Accepted:
tex-common_1.16.dsc
  to pool/main/t/tex-common/tex-common_1.16.dsc
tex-common_1.16.tar.gz
  to pool/main/t/tex-common/tex-common_1.16.tar.gz
tex-common_1.16_all.deb
  to pool/main/t/tex-common/tex-common_1.16_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 roundcube 0.2.1-1 (source all)

2009-03-14 Thread Vincent Bernat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 17:42:07 +0100
Source: roundcube
Binary: roundcube-core roundcube roundcube-mysql roundcube-pgsql 
roundcube-sqlite
Architecture: source all
Version: 0.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Roundcube Maintainers 
pkg-roundcube-maintain...@lists.alioth.debian.org
Changed-By: Vincent Bernat ber...@debian.org
Description: 
 roundcube  - skinnable AJAX based webmail solution for IMAP servers - metapack
 roundcube-core - skinnable AJAX based webmail solution for IMAP servers
 roundcube-mysql - metapackage providing MySQL dependencies for RoundCube
 roundcube-pgsql - metapackage providing PostgreSQL dependencies for RoundCube
 roundcube-sqlite - metapackage providing sqlite dependencies for RoundCube
Changes: 
 roundcube (0.2.1-1) unstable; urgency=low
 .
   * New upstream release:
   + Fix use_packaged_tinymce.patch to apply to this new version
   + Remove cve-2009-0413.patch which has been applied upstream
Checksums-Sha1: 
 66f4ac6a07670c83f979e612ec19f960fe0d0f65 1382 roundcube_0.2.1-1.dsc
 d1b898783d413923f9be239f01508a8185145a58 1178682 roundcube_0.2.1.orig.tar.gz
 2a86351cceb500e419c088e42eaf6c7e20a80935 26355 roundcube_0.2.1-1.diff.gz
 a9fc014e33ddca348009391d7428a27c935433e1 688170 roundcube-core_0.2.1-1_all.deb
 ac3a2efc43529fc666f9c525fccb87179fa8d789 11128 roundcube_0.2.1-1_all.deb
 2f12cd4dad52cf70d27091342768e4c7145ba29d 10388 roundcube-mysql_0.2.1-1_all.deb
 dff518e2dd26a4a9bccc93970a4a90386bc0f43a 10384 roundcube-pgsql_0.2.1-1_all.deb
 9395e33e133dcc4c3bcf3562ae07f74426f7a3cc 10356 roundcube-sqlite_0.2.1-1_all.deb
Checksums-Sha256: 
 870fe29b1a66631f399f0cf81384e150ccd45dd4517482bcbee5da737701e24f 1382 
roundcube_0.2.1-1.dsc
 76e5aba34068f2f43b5ff164040c7c8adfe96573c0ecb3f5956265d954021f08 1178682 
roundcube_0.2.1.orig.tar.gz
 668464d7463466c788e9be0e5e5e6f0b00661f5fd17edc1d3c270fd340a71a05 26355 
roundcube_0.2.1-1.diff.gz
 d8b2802fa6a71f6a0584ce5323daf5cf97b98ca5f41ef25b442b0d6c5e2ce31e 688170 
roundcube-core_0.2.1-1_all.deb
 ab7f5db58db80473e982a387ba779dea000fa2f14453a79f9b36a8fab099730e 11128 
roundcube_0.2.1-1_all.deb
 2ba8e5102535c57e12f89b4d5d4a4ad13638ce1c4cb8188dcc9048175e90f90b 10388 
roundcube-mysql_0.2.1-1_all.deb
 0b67fa5a3daf2418c7975ee6cb2a8e9c42c20419ef03e82d986e67b1cefc983e 10384 
roundcube-pgsql_0.2.1-1_all.deb
 411fa9b86d3503763169b79e5c0ec06f8ce22a23e0c32d5b7ba10a77db6cf45a 10356 
roundcube-sqlite_0.2.1-1_all.deb
Files: 
 d241dc6a81be1407ff7691dd60d9b09e 1382 web extra roundcube_0.2.1-1.dsc
 86e9238b31a917eeabb23ba1d226c1dc 1178682 web extra roundcube_0.2.1.orig.tar.gz
 7f2066b99b2cb71146ed27620f04ea0b 26355 web extra roundcube_0.2.1-1.diff.gz
 97ebbcd454bd412287b3964ce07cf5db 688170 web extra 
roundcube-core_0.2.1-1_all.deb
 f3c9fd5d2f6823e03a6642f6224c6026 11128 web extra roundcube_0.2.1-1_all.deb
 a4ade984a7a691a9bab9a451ba1c7a7c 10388 web extra 
roundcube-mysql_0.2.1-1_all.deb
 51aa2245781612a2954dc78293a0748f 10384 web extra 
roundcube-pgsql_0.2.1-1_all.deb
 918d1f1fddcd3f61d37f1a48200e09a8 10356 web extra 
roundcube-sqlite_0.2.1-1_all.deb

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

iEYEARECAAYFAkm74qwACgkQKFvXofIqeU5KLQCffCr8z6NomkyqdcjlysFOXWLA
AwQAoJXVFHAO7hqssjds711LKhD43IlS
=org1
-END PGP SIGNATURE-


Accepted:
roundcube-core_0.2.1-1_all.deb
  to pool/main/r/roundcube/roundcube-core_0.2.1-1_all.deb
roundcube-mysql_0.2.1-1_all.deb
  to pool/main/r/roundcube/roundcube-mysql_0.2.1-1_all.deb
roundcube-pgsql_0.2.1-1_all.deb
  to pool/main/r/roundcube/roundcube-pgsql_0.2.1-1_all.deb
roundcube-sqlite_0.2.1-1_all.deb
  to pool/main/r/roundcube/roundcube-sqlite_0.2.1-1_all.deb
roundcube_0.2.1-1.diff.gz
  to pool/main/r/roundcube/roundcube_0.2.1-1.diff.gz
roundcube_0.2.1-1.dsc
  to pool/main/r/roundcube/roundcube_0.2.1-1.dsc
roundcube_0.2.1-1_all.deb
  to pool/main/r/roundcube/roundcube_0.2.1-1_all.deb
roundcube_0.2.1.orig.tar.gz
  to pool/main/r/roundcube/roundcube_0.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 zope-common 0.5.47 (source all)

2009-03-14 Thread Jonas Meurer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 18:29:08 +0100
Source: zope-common
Binary: zope-common
Architecture: source all
Version: 0.5.47
Distribution: unstable
Urgency: low
Maintainer: Jonas Meurer m...@debian.org
Changed-By: Jonas Meurer m...@debian.org
Description: 
 zope-common - common settings and scripts for Zope installations
Changes: 
 zope-common (0.5.47) unstable; urgency=low
 .
   [ Bernd Zeimetz ]
   * debian/control:
 - Updating my email address.
 .
   [ Jonas Meurer ]
   * dzhandle: add support for zope2.11.
   * debian/copyright: add (c) symbol, link to GPL-2
   * bump standards-version to 3.8.1, no changes needed
   * move XS- prefix from svn fields in debian/control
Checksums-Sha1: 
 3607d16e708765ee0fa16a5dd2df22f70bdf69b1 1172 zope-common_0.5.47.dsc
 cde80755eaaf9edc9bcc6ae8ac16c77ec4aa9fb1 62313 zope-common_0.5.47.tar.gz
 fc492fb9236ba569115aee73626167f98f31086c 45916 zope-common_0.5.47_all.deb
Checksums-Sha256: 
 78f799d3e49316655a9c1939a4d89810b0e653e306b32398cc7159eff4adf730 1172 
zope-common_0.5.47.dsc
 2ca6cb60e1a97aa29e08a9358e822b40a9d8c425bce8b3195632e58ca7484b30 62313 
zope-common_0.5.47.tar.gz
 abec18d75b6359804166b9b056e0b2e581641726fc1ffd176d49454c46157b7d 45916 
zope-common_0.5.47_all.deb
Files: 
 3206bbcddecaa9513e55c3f9b2258cf6 1172 web optional zope-common_0.5.47.dsc
 cca6a272cf9f1d56bd3ff01ebe8c66c7 62313 web optional zope-common_0.5.47.tar.gz
 3aad1e2aca54bd33398c6040c61de20c 45916 web optional zope-common_0.5.47_all.deb

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

iEYEARECAAYFAkm7638ACgkQd6lUs+JfIQLzvgCgi7JgvL6lFnGwJdQRq5keYbOd
0LMAnRpEqoHkGBiT/TXfI/7oLrDvvRrj
=Aayl
-END PGP SIGNATURE-


Accepted:
zope-common_0.5.47.dsc
  to pool/main/z/zope-common/zope-common_0.5.47.dsc
zope-common_0.5.47.tar.gz
  to pool/main/z/zope-common/zope-common_0.5.47.tar.gz
zope-common_0.5.47_all.deb
  to pool/main/z/zope-common/zope-common_0.5.47_all.deb


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



Accepted olsrd 0.5.6-r3-1 (source i386)

2009-03-14 Thread Holger Levsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 18:31:55 +0100
Source: olsrd
Binary: olsrd olsrd-plugins
Architecture: source i386
Version: 0.5.6-r3-1
Distribution: unstable
Urgency: low
Maintainer: Holger Levsen hol...@debian.org
Changed-By: Holger Levsen hol...@debian.org
Description: 
 olsrd  - optimized link-state routing daemon (unik-olsrd)
 olsrd-plugins - various plugins to enhance olsrd
Changes: 
 olsrd (0.5.6-r3-1) unstable; urgency=low
 .
   * New upstream release, the third maintenance release of 0.5.6.
   * Adopt debian/patches/200-etc-olsrd.patch to cope with the whitespace
 changes in the new release.
Checksums-Sha1: 
 88435d294a6025c5ec046dbe6501822a9bec0bbe 1137 olsrd_0.5.6-r3-1.dsc
 5227cc5ea0744a5b4ed62234e488ec09243bc5e4 646241 olsrd_0.5.6-r3.orig.tar.gz
 17c449d5ace1e36b87f6062b9762443a368c8021 12953 olsrd_0.5.6-r3-1.diff.gz
 25543b27e1d944318068295855d33f8cea1e8988 158266 olsrd_0.5.6-r3-1_i386.deb
 be92fb04628131b0bc134a58c71dc5491cd5185d 122730 
olsrd-plugins_0.5.6-r3-1_i386.deb
Checksums-Sha256: 
 ada863d6af4700e8e50e2ed5b01aeefee4d31e306bcf584056823c0ff88f52c3 1137 
olsrd_0.5.6-r3-1.dsc
 4716e481b4f62e5f5231757eb840a8aaf0a43853e4fe3385103beef1f4999c00 646241 
olsrd_0.5.6-r3.orig.tar.gz
 c8e0ad5830cca891f5d60c0d77c155a30e38d4191a4133f0ce631c5e47a409cf 12953 
olsrd_0.5.6-r3-1.diff.gz
 c15e3aabcf6ee6c12ca63907a327a191bc9f806e01e6cb65ed895455db310135 158266 
olsrd_0.5.6-r3-1_i386.deb
 27ed5e342a283492281b12fb944301fc037172e138c5150bbe4d7c8e00ca73b9 122730 
olsrd-plugins_0.5.6-r3-1_i386.deb
Files: 
 b1078b4fc465f28c4c7821d5ad3d36ef 1137 net extra olsrd_0.5.6-r3-1.dsc
 3bf92e748ca14f27c7de2669fe8ac2a5 646241 net extra olsrd_0.5.6-r3.orig.tar.gz
 ed181759b770c176f46ad3fd7ea0f7f3 12953 net extra olsrd_0.5.6-r3-1.diff.gz
 ef865cc910f3cde4e9a7ca3743d9ff22 158266 net extra olsrd_0.5.6-r3-1_i386.deb
 0191bc9db6144bf798b6e332e25373ad 122730 net extra 
olsrd-plugins_0.5.6-r3-1_i386.deb

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

iD8DBQFJu+1CUHLQNqxYNSARAkF6AKDKEYVd8ABM3/VoGoehJcIF7oR/RwCeNT9w
z8NhuYBdUPnzAnDoDxnf00I=
=swPc
-END PGP SIGNATURE-


Accepted:
olsrd-plugins_0.5.6-r3-1_i386.deb
  to pool/main/o/olsrd/olsrd-plugins_0.5.6-r3-1_i386.deb
olsrd_0.5.6-r3-1.diff.gz
  to pool/main/o/olsrd/olsrd_0.5.6-r3-1.diff.gz
olsrd_0.5.6-r3-1.dsc
  to pool/main/o/olsrd/olsrd_0.5.6-r3-1.dsc
olsrd_0.5.6-r3-1_i386.deb
  to pool/main/o/olsrd/olsrd_0.5.6-r3-1_i386.deb
olsrd_0.5.6-r3.orig.tar.gz
  to pool/main/o/olsrd/olsrd_0.5.6-r3.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 gvfs 1.0.3-3 (source amd64)

2009-03-14 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 18:50:49 +0100
Source: gvfs
Binary: libgvfscommon0 libgvfscommon-dev gvfs gvfs-fuse gvfs-backends gvfs-bin
Architecture: source amd64
Version: 1.0.3-3
Distribution: unstable
Urgency: low
Maintainer: Sebastien Bacher seb...@debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gvfs   - userspace virtual filesystem - server
 gvfs-backends - userspace virtual filesystem - backends
 gvfs-bin   - userspace virtual filesystem - binaries
 gvfs-fuse  - userspace virtual filesystem - fuse server
 libgvfscommon-dev - userspace virtual filesystem - development files
 libgvfscommon0 - userspace virtual filesystem - library
Closes: 519722
Changes: 
 gvfs (1.0.3-3) unstable; urgency=low
 .
   * 02_http_unescape.patch: new patch, stolen upstream. Fix escaping of
 HTTP uris that leads to a crash. Closes: #519722.
Checksums-Sha1: 
 f3cc4ef1098663103c9c47bde4b158e39e65d545 1641 gvfs_1.0.3-3.dsc
 5e9592a364710873ddfea1ca373a9a89a129b9c2 177472 gvfs_1.0.3-3.diff.gz
 2b64162a9bd19f4554db02190a4349c90af02d46 76892 libgvfscommon0_1.0.3-3_amd64.deb
 6a3748f96e6529d3a717e5562bf258e23761787d 50172 
libgvfscommon-dev_1.0.3-3_amd64.deb
 9a697f7a7c9f2b3873b0cc02764d85f698f75dda 731494 gvfs_1.0.3-3_amd64.deb
 a5e93369e89cf918da2341b11ea44b2ade0a8c63 60782 gvfs-fuse_1.0.3-3_amd64.deb
 279bcb99af41857c385cccd4b05f156b97e6bc54 720436 gvfs-backends_1.0.3-3_amd64.deb
 6e5b03e969f301fbefb9330fc7576737ff9d298f 83474 gvfs-bin_1.0.3-3_amd64.deb
Checksums-Sha256: 
 16911a90689335fb0d76d5ff73143369ff29572f5d9a43d0f1e5ade2a3807a5f 1641 
gvfs_1.0.3-3.dsc
 71474a8731fbb11ee9a3b8f82f0de44f4e516b722346f6b8b879df00a180dcfc 177472 
gvfs_1.0.3-3.diff.gz
 bde844f1e939f954d1cbd5d44b341fd0e1c82fb18b26522a06e088b48b13572c 76892 
libgvfscommon0_1.0.3-3_amd64.deb
 7227f2518c8713f146935039e0edbaaf98efc55d55fe555a9290109a818b7953 50172 
libgvfscommon-dev_1.0.3-3_amd64.deb
 84a5d59267d825c7f0ba526963a1b2ac7c35e53ed7aeec5a6384601f59be85fa 731494 
gvfs_1.0.3-3_amd64.deb
 df07ffce5c56cbaa52135e990dacc2d5f255a84e9ed99f91331e98b434260765 60782 
gvfs-fuse_1.0.3-3_amd64.deb
 53d5d7c86ee64d3c0bbec7d035919c4081ef5cddb5f8e05c655fa624d829efbe 720436 
gvfs-backends_1.0.3-3_amd64.deb
 d5d1c8103daec235f63083b1f0b84b925420abc6560f86a5cb303ef149649c9e 83474 
gvfs-bin_1.0.3-3_amd64.deb
Files: 
 e23480193bffc3c8f1878ed345b1b03c 1641 libs optional gvfs_1.0.3-3.dsc
 028c6616aff5022c2e8e82ba15b1192e 177472 libs optional gvfs_1.0.3-3.diff.gz
 4088e9447f4697f659424fe1a8e341ea 76892 libs optional 
libgvfscommon0_1.0.3-3_amd64.deb
 a24b13e2c4463556fff06570660c017e 50172 libdevel optional 
libgvfscommon-dev_1.0.3-3_amd64.deb
 a38b3077e29dd91dc321ef9165d158b6 731494 libs optional gvfs_1.0.3-3_amd64.deb
 3b887b9b481700bb22fd868729559f83 60782 libs optional 
gvfs-fuse_1.0.3-3_amd64.deb
 f724025e7db36d811be431c8eac5f846 720436 libs optional 
gvfs-backends_1.0.3-3_amd64.deb
 a81a2f28c575a1aad726a97506a64c5d 83474 libs optional gvfs-bin_1.0.3-3_amd64.deb

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

iD8DBQFJu/HfrSla4ddfhTMRAkgyAKDXXiULacTQ1scgrQ6FhplQFY8nXwCglOsU
QKy81OwUAfm+RV8Fbz0BpWQ=
=C5mM
-END PGP SIGNATURE-


Accepted:
gvfs-backends_1.0.3-3_amd64.deb
  to pool/main/g/gvfs/gvfs-backends_1.0.3-3_amd64.deb
gvfs-bin_1.0.3-3_amd64.deb
  to pool/main/g/gvfs/gvfs-bin_1.0.3-3_amd64.deb
gvfs-fuse_1.0.3-3_amd64.deb
  to pool/main/g/gvfs/gvfs-fuse_1.0.3-3_amd64.deb
gvfs_1.0.3-3.diff.gz
  to pool/main/g/gvfs/gvfs_1.0.3-3.diff.gz
gvfs_1.0.3-3.dsc
  to pool/main/g/gvfs/gvfs_1.0.3-3.dsc
gvfs_1.0.3-3_amd64.deb
  to pool/main/g/gvfs/gvfs_1.0.3-3_amd64.deb
libgvfscommon-dev_1.0.3-3_amd64.deb
  to pool/main/g/gvfs/libgvfscommon-dev_1.0.3-3_amd64.deb
libgvfscommon0_1.0.3-3_amd64.deb
  to pool/main/g/gvfs/libgvfscommon0_1.0.3-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 talloc 1.2.1-1 (source amd64)

2009-03-14 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 18:48:57 +0100
Source: talloc
Binary: libtalloc1 libtalloc-dev
Architecture: source amd64
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Jelmer Vernooij jel...@debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 libtalloc-dev - hierarchical pool based memory allocator - development files
 libtalloc1 - hierarchical pool based memory allocator
Changes: 
 talloc (1.2.1-1) unstable; urgency=low
 .
   [ Steve Langasek ]
   * Bump the shlibs in libtalloc1, since previous versions of this package
 have been in the wild (including in an Ubuntu release) with a smaller
 set of exported symbols than the current version - including talloc_pool
 which is used by samba.
 .
   [ Jelmer Vernooij ]
   * Add dummy watch file explaining how to obtain an upstream tarball.
   * New upstream release.
Checksums-Sha1: 
 cc019723c9536c01ec164f8057c8dd66d9288e1b 1262 talloc_1.2.1-1.dsc
 53624e9b23bc63c42743a91cca8e02beb78f56c0 267005 talloc_1.2.1.orig.tar.gz
 4f920bf31eac4b7a1ec020d420d6934afc435109 3192 talloc_1.2.1-1.diff.gz
 1a5d1ad07aa7329e6006c095558dc197fa80f9ba 15794 libtalloc1_1.2.1-1_amd64.deb
 068a14bb2dff3fcea5643a3b6285edd4fd0917a5 24826 libtalloc-dev_1.2.1-1_amd64.deb
Checksums-Sha256: 
 43077cdfbb3c30ec3847d20be4b3b3adfca56c73b1741ebd279e737bc5433bd4 1262 
talloc_1.2.1-1.dsc
 e14c524d3dc364819366cbdc26f72a6ae744d6e496b727fcccf6118bb133bb94 267005 
talloc_1.2.1.orig.tar.gz
 8c769e0cb2d4c1cfecca563a49e534338f5fbf80d9607a96562fff5d0e16ff84 3192 
talloc_1.2.1-1.diff.gz
 9d8ecc31b5841a2024700b23daa6c5cdaca69ea445db09182d70a27f62e49f6d 15794 
libtalloc1_1.2.1-1_amd64.deb
 26fed0c28ced006f58fd83a62422adb05b5631f918d49ba4e044ec3678339de2 24826 
libtalloc-dev_1.2.1-1_amd64.deb
Files: 
 af7d608d3ef889972f6846727ba1b969 1262 devel optional talloc_1.2.1-1.dsc
 0913db077d462c951d635c94b6304b39 267005 devel optional talloc_1.2.1.orig.tar.gz
 4f219a3f3b29161d3001197c6c8927af 3192 devel optional talloc_1.2.1-1.diff.gz
 f2de2a9f70d91d0ac6a0ad221c9adaa3 15794 libs optional 
libtalloc1_1.2.1-1_amd64.deb
 3efb040692d1a4cabe45d4a8e28452d1 24826 libdevel optional 
libtalloc-dev_1.2.1-1_amd64.deb

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

iJwEAQECAAYFAkm78OIACgkQDLQl4QYPZuUUqAP/RUIcA4RIvcvcrRYjWuuksy7D
Ka6Acx6z4O6H3Gwr/Py/nr967g0ufP3vzFUimZT4jd0pStYbM+Gcnup1Iu+3tMZY
OFu+vP51ssCkjcppA7NLQVvePgTfCC2+QjW+i6mSu/BL+SQqPSjPzchqBnFMozM1
znvX9Qak0+vUS9hEOyo=
=afbs
-END PGP SIGNATURE-


Accepted:
libtalloc-dev_1.2.1-1_amd64.deb
  to pool/main/t/talloc/libtalloc-dev_1.2.1-1_amd64.deb
libtalloc1_1.2.1-1_amd64.deb
  to pool/main/t/talloc/libtalloc1_1.2.1-1_amd64.deb
talloc_1.2.1-1.diff.gz
  to pool/main/t/talloc/talloc_1.2.1-1.diff.gz
talloc_1.2.1-1.dsc
  to pool/main/t/talloc/talloc_1.2.1-1.dsc
talloc_1.2.1.orig.tar.gz
  to pool/main/t/talloc/talloc_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 mongrel-cluster 1.0.5-2 (source all)

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

Format: 1.8
Date: Sat, 14 Mar 2009 19:55:39 +0100
Source: mongrel-cluster
Binary: mongrel-cluster
Architecture: source all
Version: 1.0.5-2
Distribution: unstable
Urgency: low
Maintainer: Jeremy Lainé jeremy.la...@m4x.org
Changed-By: Jeremy Lainé jeremy.la...@m4x.org
Description: 
 mongrel-cluster - Mongrel plugin to manage a cluster of Mongrel servers
Closes: 500424
Changes: 
 mongrel-cluster (1.0.5-2) unstable; urgency=low
 .
   * Make it possible to specify user/group to run mongrels (Closes: #500424).
   * Add some usage notes in README.Debian.
   * Ship a default /etc/default/mongrel-cluster.
Checksums-Sha1: 
 4f570d01a8937edcf719e6e774bd84fb0321a6a6 1301 mongrel-cluster_1.0.5-2.dsc
 93a180c1ea919dc949bf287d653d9808d1b3d16a 5437 mongrel-cluster_1.0.5-2.diff.gz
 ac153a945fd6cc1064e5d9c7df14426d70a6cb76 13438 mongrel-cluster_1.0.5-2_all.deb
Checksums-Sha256: 
 ac46cb78c6d6587202b29d37b22ac383b83d596ba6b291ba45070d67e5cb32c2 1301 
mongrel-cluster_1.0.5-2.dsc
 4ba8eac41b7c8c784852acb244808cb51692f6b485763a6eca8ab7dbfe6b21b0 5437 
mongrel-cluster_1.0.5-2.diff.gz
 609e28c5974b7adf408510c5b352b730e6b8a8889d18f02c3e6c0aa31a985b4c 13438 
mongrel-cluster_1.0.5-2_all.deb
Files: 
 c32977d09e1c5794ce5d0f9772845b4c 1301 web optional mongrel-cluster_1.0.5-2.dsc
 7ed040b8270910d5d3f9be0eb3ba61ea 5437 web optional 
mongrel-cluster_1.0.5-2.diff.gz
 981e9cc30712f6653505747e65a329b9 13438 web optional 
mongrel-cluster_1.0.5-2_all.deb

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

iEYEARECAAYFAkm7/dIACgkQ4mJJZqJp2SccBQCfee3raI0LGn80Ys89cG6lJAli
pfMAoM0uoUow82kUPvJ911cCsxugFi6l
=L/8r
-END PGP SIGNATURE-


Accepted:
mongrel-cluster_1.0.5-2.diff.gz
  to pool/main/m/mongrel-cluster/mongrel-cluster_1.0.5-2.diff.gz
mongrel-cluster_1.0.5-2.dsc
  to pool/main/m/mongrel-cluster/mongrel-cluster_1.0.5-2.dsc
mongrel-cluster_1.0.5-2_all.deb
  to pool/main/m/mongrel-cluster/mongrel-cluster_1.0.5-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 imagemagick 7:6.3.7.9.dfsg2-1 (source i386)

2009-03-14 Thread Nelson A. de Oliveira
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 15:32:48 -0300
Source: imagemagick
Binary: imagemagick libmagick10 libmagick9-dev libmagick++10 libmagick++9-dev 
perlmagick
Architecture: source i386
Version: 7:6.3.7.9.dfsg2-1
Distribution: unstable
Urgency: medium
Maintainer: Luciano Bello luci...@debian.org
Changed-By: Nelson A. de Oliveira nao...@debian.org
Description: 
 imagemagick - image manipulation programs
 libmagick++10 - C++ API to the ImageMagick library
 libmagick++9-dev - C++ API to the ImageMagick library - development files
 libmagick10 - image manipulation library
 libmagick9-dev - image manipulation library - development files
 perlmagick - Perl interface to the libMagick graphics routines
Closes: 510751
Changes: 
 imagemagick (7:6.3.7.9.dfsg2-1) unstable; urgency=medium
 .
   * Repackage upstream tarball to replace non-free fonts (Closes: #510751).
Checksums-Sha1: 
 31c8522f71a17ab81ca34a4e14135f4238a5532b 1686 imagemagick_6.3.7.9.dfsg2-1.dsc
 1acad213a7ec314dddf017e2c459fea8d4a6076b 8227844 
imagemagick_6.3.7.9.dfsg2.orig.tar.gz
 7ce61107911db6a56e298f5e94cc2433078393ba 87886 
imagemagick_6.3.7.9.dfsg2-1.diff.gz
 be057ad7db7e5e42155b8692550871f4a5772ba7 1430154 
imagemagick_6.3.7.9.dfsg2-1_i386.deb
 01ab5311e10a8a8c020a824daa826dba19f01194 3991788 
libmagick10_6.3.7.9.dfsg2-1_i386.deb
 2bcc11824f388fc28a97ac2277e07fc97bebe673 1194760 
libmagick9-dev_6.3.7.9.dfsg2-1_i386.deb
 20a4d50b471bd5ddb811b079b3d07238aa4cc92d 173386 
libmagick++10_6.3.7.9.dfsg2-1_i386.deb
 1353502a5302b44827e75e3bb24d18b789357c4d 201504 
libmagick++9-dev_6.3.7.9.dfsg2-1_i386.deb
 9154415e9bd66ebe9fdf5514feb47455142a8507 168660 
perlmagick_6.3.7.9.dfsg2-1_i386.deb
Checksums-Sha256: 
 25faf35b54b7c9bfd91a1915c19cd4c031fce73434df39d9f2bc5849b7afd060 1686 
imagemagick_6.3.7.9.dfsg2-1.dsc
 681fe3dc1ff9671e38c4409396baaa03dc5331df2c6fc16648c139db24fcd813 8227844 
imagemagick_6.3.7.9.dfsg2.orig.tar.gz
 103c30e50e82b8feb9cb4b505a614f49c7306661c170a269357dc6786eccff87 87886 
imagemagick_6.3.7.9.dfsg2-1.diff.gz
 466b617df90660ea359580b2c6c94f026d557b1feb96243a35fc818279381a4e 1430154 
imagemagick_6.3.7.9.dfsg2-1_i386.deb
 a6d3beeb34f33bb6c67e4373b16c455b15e3d9bb5413d6f3ba44f85a9afdcea5 3991788 
libmagick10_6.3.7.9.dfsg2-1_i386.deb
 e0b7069f339af035fedd658bf14f599cd2904a8f1ab658263d693b51f296813b 1194760 
libmagick9-dev_6.3.7.9.dfsg2-1_i386.deb
 b36740ebb7e90d5edecb7e620f8794c677f6fe82df652014818fba6e78394fdb 173386 
libmagick++10_6.3.7.9.dfsg2-1_i386.deb
 897bcd04b8c74194b728f0071b97716cfc5b324531be2ff05aa604e7e4ba8cb6 201504 
libmagick++9-dev_6.3.7.9.dfsg2-1_i386.deb
 e94d4bd25337f505f4ff867497ed03b5b30a47bf5f701aeaa67c25246c6c330b 168660 
perlmagick_6.3.7.9.dfsg2-1_i386.deb
Files: 
 a0c1bc41a791f88381c15e046ecfc654 1686 graphics optional 
imagemagick_6.3.7.9.dfsg2-1.dsc
 14425de4d5d78b7726973af967e1f9e6 8227844 graphics optional 
imagemagick_6.3.7.9.dfsg2.orig.tar.gz
 585a283264a5db93a7eb8f6e96284919 87886 graphics optional 
imagemagick_6.3.7.9.dfsg2-1.diff.gz
 7bb3faa7b971119b97144b7f425ff7b4 1430154 graphics optional 
imagemagick_6.3.7.9.dfsg2-1_i386.deb
 51fad81062488f52b3cd63e32197a348 3991788 libs optional 
libmagick10_6.3.7.9.dfsg2-1_i386.deb
 c46020fa97e2749fb61b7cebe6061a27 1194760 libdevel optional 
libmagick9-dev_6.3.7.9.dfsg2-1_i386.deb
 69c6a5048dd459edad08ed904cddd5c3 173386 libs optional 
libmagick++10_6.3.7.9.dfsg2-1_i386.deb
 5717ff2cbba79143035e92123c523434 201504 libdevel optional 
libmagick++9-dev_6.3.7.9.dfsg2-1_i386.deb
 7aa62a7a3e6e631d19bb862a8cfe617c 168660 perl optional 
perlmagick_6.3.7.9.dfsg2-1_i386.deb

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

iEYEARECAAYFAkm7/kQACgkQAQwuptkwlkRfHgCfWhSCL8EK1JHIDvbgInRIjGvt
iCQAn3vtLDqm/oXNR4uoFaXSl7crVK31
=1EZf
-END PGP SIGNATURE-


Accepted:
imagemagick_6.3.7.9.dfsg2-1.diff.gz
  to pool/main/i/imagemagick/imagemagick_6.3.7.9.dfsg2-1.diff.gz
imagemagick_6.3.7.9.dfsg2-1.dsc
  to pool/main/i/imagemagick/imagemagick_6.3.7.9.dfsg2-1.dsc
imagemagick_6.3.7.9.dfsg2-1_i386.deb
  to pool/main/i/imagemagick/imagemagick_6.3.7.9.dfsg2-1_i386.deb
imagemagick_6.3.7.9.dfsg2.orig.tar.gz
  to pool/main/i/imagemagick/imagemagick_6.3.7.9.dfsg2.orig.tar.gz
libmagick++10_6.3.7.9.dfsg2-1_i386.deb
  to pool/main/i/imagemagick/libmagick++10_6.3.7.9.dfsg2-1_i386.deb
libmagick++9-dev_6.3.7.9.dfsg2-1_i386.deb
  to pool/main/i/imagemagick/libmagick++9-dev_6.3.7.9.dfsg2-1_i386.deb
libmagick10_6.3.7.9.dfsg2-1_i386.deb
  to pool/main/i/imagemagick/libmagick10_6.3.7.9.dfsg2-1_i386.deb
libmagick9-dev_6.3.7.9.dfsg2-1_i386.deb
  to pool/main/i/imagemagick/libmagick9-dev_6.3.7.9.dfsg2-1_i386.deb
perlmagick_6.3.7.9.dfsg2-1_i386.deb
  to pool/main/i/imagemagick/perlmagick_6.3.7.9.dfsg2-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 gst-plugins-bad0.10 0.10.10.3-1 (source all amd64)

2009-03-14 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 19:49:34 +0100
Source: gst-plugins-bad0.10
Binary: gstreamer0.10-plugins-bad-doc gstreamer0.10-plugins-bad 
gstreamer0.10-sdl gstreamer0.10-plugins-bad-dbg
Architecture: source all amd64
Version: 0.10.10.3-1
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 gstreamer0.10-plugins-bad - GStreamer plugins from the bad set
 gstreamer0.10-plugins-bad-dbg - GStreamer plugins from the bad set
 gstreamer0.10-plugins-bad-doc - GStreamer documentation for plugins from the 
bad set
 gstreamer0.10-sdl - GStreamer plugin for SDL output
Changes: 
 gst-plugins-bad0.10 (0.10.10.3-1) unstable; urgency=low
 .
   * New upstream pre-release.
Checksums-Sha1: 
 0153a24ffeb4086bcbe75705012da817bac3ae78 2648 
gst-plugins-bad0.10_0.10.10.3-1.dsc
 a44e3f8039641f7d77de2eb444ddc0cc4a71a1e2 3764879 
gst-plugins-bad0.10_0.10.10.3.orig.tar.gz
 c8706da1cb9e401394c430ff919f468e6113fe76 13912 
gst-plugins-bad0.10_0.10.10.3-1.diff.gz
 33df09ba215d6cf7eda67937c3668a36dfed6772 180438 
gstreamer0.10-plugins-bad-doc_0.10.10.3-1_all.deb
 a1266135d94e68c95862b7d33d11fdca495d652a 1324450 
gstreamer0.10-plugins-bad_0.10.10.3-1_amd64.deb
 7dced0da198a429448db34dc2e25a55c269e1e4a 40480 
gstreamer0.10-sdl_0.10.10.3-1_amd64.deb
 c2a1f197e805792254f7f7a98d09ea4a1b8d1015 3232596 
gstreamer0.10-plugins-bad-dbg_0.10.10.3-1_amd64.deb
Checksums-Sha256: 
 57a09685ea2eaa25d407cbfd5305bb7e2302e3167beaa413ae14fe4e08a2a608 2648 
gst-plugins-bad0.10_0.10.10.3-1.dsc
 6302d84e77164e4f42bc411c3aa13104d621430b66cc7188a1baa8974917c1b3 3764879 
gst-plugins-bad0.10_0.10.10.3.orig.tar.gz
 cfef3ee1043618ea8ca7542c1e1d77ede8ce5b57921734040155425301080a68 13912 
gst-plugins-bad0.10_0.10.10.3-1.diff.gz
 2b55c53266890aef459ac9319074f9986eb748c698c8756b0611d35cbea82d30 180438 
gstreamer0.10-plugins-bad-doc_0.10.10.3-1_all.deb
 1ce15fe868d77d5d139fb75ac4fb3148a6adf9f0692ae8052f9edc1bf63cfb19 1324450 
gstreamer0.10-plugins-bad_0.10.10.3-1_amd64.deb
 379c044469fdb6df6ca1ee3363a9e12318961dc66fcfc619ab07c3b0045ceee6 40480 
gstreamer0.10-sdl_0.10.10.3-1_amd64.deb
 db4680f4d6708ebc1a36a794b6cc50072197cacaffe04c90e97b26bfd63d0cfa 3232596 
gstreamer0.10-plugins-bad-dbg_0.10.10.3-1_amd64.deb
Files: 
 1c2f9c735e4ebf39dd45e4cdfad13844 2648 libs extra 
gst-plugins-bad0.10_0.10.10.3-1.dsc
 5d9a2737baf31fb44794838d2eb918e2 3764879 libs extra 
gst-plugins-bad0.10_0.10.10.3.orig.tar.gz
 acbf7ac0cb1c21f81c0e5889c4fbdbb0 13912 libs extra 
gst-plugins-bad0.10_0.10.10.3-1.diff.gz
 f61914f69e966f4439fea73292b25eff 180438 doc extra 
gstreamer0.10-plugins-bad-doc_0.10.10.3-1_all.deb
 bb6fb72b922d70f9b5ec045fbb6b9477 1324450 libs extra 
gstreamer0.10-plugins-bad_0.10.10.3-1_amd64.deb
 04f93c059934c00c3e3f42ecdbe61535 40480 libs extra 
gstreamer0.10-sdl_0.10.10.3-1_amd64.deb
 3fbb3099d142d91c88b6561af25cc3e3 3232596 libdevel extra 
gstreamer0.10-plugins-bad-dbg_0.10.10.3-1_amd64.deb

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

iEYEARECAAYFAkm8ABgACgkQBsBdh1vkHyGceACffPS91sFA7SEmcZBt1FjVOxaB
jaMAnRYQ7WJoT/DIMVpC8Idd8piYeKsM
=jc6m
-END PGP SIGNATURE-


Accepted:
gst-plugins-bad0.10_0.10.10.3-1.diff.gz
  to pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.10.3-1.diff.gz
gst-plugins-bad0.10_0.10.10.3-1.dsc
  to pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.10.3-1.dsc
gst-plugins-bad0.10_0.10.10.3.orig.tar.gz
  to pool/main/g/gst-plugins-bad0.10/gst-plugins-bad0.10_0.10.10.3.orig.tar.gz
gstreamer0.10-plugins-bad-dbg_0.10.10.3-1_amd64.deb
  to 
pool/main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad-dbg_0.10.10.3-1_amd64.deb
gstreamer0.10-plugins-bad-doc_0.10.10.3-1_all.deb
  to 
pool/main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad-doc_0.10.10.3-1_all.deb
gstreamer0.10-plugins-bad_0.10.10.3-1_amd64.deb
  to 
pool/main/g/gst-plugins-bad0.10/gstreamer0.10-plugins-bad_0.10.10.3-1_amd64.deb
gstreamer0.10-sdl_0.10.10.3-1_amd64.deb
  to pool/main/g/gst-plugins-bad0.10/gstreamer0.10-sdl_0.10.10.3-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 glib2.0 2.20.0-1 (source all amd64)

2009-03-14 Thread Sebastian Dröge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 10:53:26 +0100
Source: glib2.0
Binary: libglib2.0-0 libglib2.0-udeb libglib2.0-dev libglib2.0-0-dbg 
libglib2.0-data libglib2.0-doc libgio-fam
Architecture: source all amd64
Version: 2.20.0-1
Distribution: unstable
Urgency: low
Maintainer: Loic Minier l...@dooz.org
Changed-By: Sebastian Dröge sl...@debian.org
Description: 
 libgio-fam - GLib Input, Output and Streaming Library (fam module)
 libglib2.0-0 - The GLib library of C routines
 libglib2.0-0-dbg - The GLib libraries and debugging symbols
 libglib2.0-data - Common files for GLib library
 libglib2.0-dev - Development files for the GLib library
 libglib2.0-doc - Documentation files for the GLib library
 libglib2.0-udeb - The GLib library of C routines - minimal runtime (udeb)
Changes: 
 glib2.0 (2.20.0-1) unstable; urgency=low
 .
   * New upstream stable release.
   * Upload to unstable, remove check-dist include.
 This won't block any transitions because of symbol files.
   * debian/libglib2.0-0.symbols,
 debian/rules:
 + Update for the API changes.
Checksums-Sha1: 
 d0b71cd974a43542fbcc3cd607e791d65955b26b 1629 glib2.0_2.20.0-1.dsc
 ab03f1d4c96dc06a0d74fbd1e0154b476dd02b81 7053569 glib2.0_2.20.0.orig.tar.gz
 a9b6ef3286e662ba7d1d0a6f64ae1e076849f67a 34590 glib2.0_2.20.0-1.diff.gz
 15da52609641729265efafd7e91de8ca932af075 813222 
libglib2.0-data_2.20.0-1_all.deb
 d84d1beeb12b25485e245169c8e3d39138f6ed87 1200394 
libglib2.0-doc_2.20.0-1_all.deb
 dad71d2d847f5b7089365daadc9394eaf3977c73 844986 libglib2.0-0_2.20.0-1_amd64.deb
 a05402fcef0b62f5f8890fd0a1eaff143ebae7f9 130 
libglib2.0-udeb_2.20.0-1_amd64.udeb
 b8bd9af11b5b90a4009c9d4727e90610dec7ef62 1046736 
libglib2.0-dev_2.20.0-1_amd64.deb
 4d5111dbf4bec705f4d05db79a9aa9186bf14457 1252116 
libglib2.0-0-dbg_2.20.0-1_amd64.deb
 2b6621d91db98e50eec813901910007485e12ebc 34188 libgio-fam_2.20.0-1_amd64.deb
Checksums-Sha256: 
 85fed252a9bf6b80b5d923e0286f8b2fd7f04be0131056fd7ab24e957486d906 1629 
glib2.0_2.20.0-1.dsc
 8e0d542cb7abc68ca2d55fd500a6db832f2b56715180fe600e780d154bc8660b 7053569 
glib2.0_2.20.0.orig.tar.gz
 759d9115232a235dede56fdf0c6ae2c899097ec7f794ae054d6d92c89a1f50e2 34590 
glib2.0_2.20.0-1.diff.gz
 d25b43d08ae8d9897b38095383b34e8b6d14ebe7eee4808bc741528431056b5e 813222 
libglib2.0-data_2.20.0-1_all.deb
 7edbe1d83ebc3a00d02bac3f35aad1bbc80ae069e07d65531d545c9490febaaa 1200394 
libglib2.0-doc_2.20.0-1_all.deb
 72bcedff82176ae29468a109bc23e10360499c473e5af2e9c9f03f6d2a2f6982 844986 
libglib2.0-0_2.20.0-1_amd64.deb
 08415526e2ecbfb8cdce3787e560861770c140e591361fb6c3c3a89b0eae1ea5 130 
libglib2.0-udeb_2.20.0-1_amd64.udeb
 529903b4ad79f60a7734824a387b65877089b752aa4e09d8c58c8f5471748f1f 1046736 
libglib2.0-dev_2.20.0-1_amd64.deb
 7dd25e6afcb9c6a984fede9037e1e437a2b2dc2d3d5e4cb0690ae9a64b1df515 1252116 
libglib2.0-0-dbg_2.20.0-1_amd64.deb
 ef52bc33dce972a3b9918e1b2e1f9e15f3fb7d564e6c912d49955d4fd1bfe9ea 34188 
libgio-fam_2.20.0-1_amd64.deb
Files: 
 14f302058eb1581b9a8946da5ea06abc 1629 libs optional glib2.0_2.20.0-1.dsc
 81a6151c9591378af31d78e7eb304e71 7053569 libs optional 
glib2.0_2.20.0.orig.tar.gz
 a6acfcce5950fdb80345ce8dd3b1fd2f 34590 libs optional glib2.0_2.20.0-1.diff.gz
 43ee06acdf8f59bedde3e62d11c3d9fa 813222 misc optional 
libglib2.0-data_2.20.0-1_all.deb
 43c2cb5bae15eeca26ddbe50b0ab8e33 1200394 doc optional 
libglib2.0-doc_2.20.0-1_all.deb
 d18f507dde4349ba36623245bc40d8eb 844986 libs optional 
libglib2.0-0_2.20.0-1_amd64.deb
 632be7d0e99fae8213fe006baa046c62 130 debian-installer optional 
libglib2.0-udeb_2.20.0-1_amd64.udeb
 fb0ab2dfb2c41ffcba70e05ba7502fd2 1046736 libdevel optional 
libglib2.0-dev_2.20.0-1_amd64.deb
 d0f47ca8f53ad1c29418bb1a87c34929 1252116 libdevel extra 
libglib2.0-0-dbg_2.20.0-1_amd64.deb
 eb1900c0ce023c04dbb745b14ddb0e76 34188 libs optional 
libgio-fam_2.20.0-1_amd64.deb
Package-Type: udeb

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

iEYEARECAAYFAkm7+78ACgkQBsBdh1vkHyFYDwCeN3IdSqTYY99I5v6Yr05EMVyw
UM0An0Yb7ihhTAwUxMhJmAXKRE0Mm5p9
=Z9Zp
-END PGP SIGNATURE-


Accepted:
glib2.0_2.20.0-1.diff.gz
  to pool/main/g/glib2.0/glib2.0_2.20.0-1.diff.gz
glib2.0_2.20.0-1.dsc
  to pool/main/g/glib2.0/glib2.0_2.20.0-1.dsc
glib2.0_2.20.0.orig.tar.gz
  to pool/main/g/glib2.0/glib2.0_2.20.0.orig.tar.gz
libgio-fam_2.20.0-1_amd64.deb
  to pool/main/g/glib2.0/libgio-fam_2.20.0-1_amd64.deb
libglib2.0-0-dbg_2.20.0-1_amd64.deb
  to pool/main/g/glib2.0/libglib2.0-0-dbg_2.20.0-1_amd64.deb
libglib2.0-0_2.20.0-1_amd64.deb
  to pool/main/g/glib2.0/libglib2.0-0_2.20.0-1_amd64.deb
libglib2.0-data_2.20.0-1_all.deb
  to pool/main/g/glib2.0/libglib2.0-data_2.20.0-1_all.deb
libglib2.0-dev_2.20.0-1_amd64.deb
  to pool/main/g/glib2.0/libglib2.0-dev_2.20.0-1_amd64.deb
libglib2.0-doc_2.20.0-1_all.deb
  to pool/main/g/glib2.0/libglib2.0-doc_2.20.0-1_all.deb
libglib2.0-udeb_2.20.0-1_amd64.udeb
  to pool/main/g/glib2.0/libglib2.0-udeb_2.20.0-1_amd64.udeb


-- 
To 

Accepted lapack 3.2.0-2 (source all amd64)

2009-03-14 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 12:37:59 +0100
Source: lapack
Binary: liblapack3gf liblapack-dev liblapack-pic liblapack-test liblapack-doc
Architecture: source all amd64
Version: 3.2.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian Scientific Computing Team 
pkg-scicomp-de...@lists.alioth.debian.org
Changed-By: Rafael Laboissiere raf...@debian.org
Description: 
 liblapack-dev - library of linear algebra routines 3 - static version
 liblapack-doc - library of linear algebra routines 3 - documentation
 liblapack-pic - library of linear algebra routines 3 - static PIC version
 liblapack-test - library of linear algebra routines 3 - testing programs
 liblapack3gf - library of linear algebra routines 3 - shared version
Changes: 
 lapack (3.2.0-2) unstable; urgency=low
 .
   [ Rafael Laboissiere ]
   * Upload to unstable
   * debian/control: Bump Standards-Version to 3.8.1 (no changes needed)
 .
   * debian/control, debian/compat:  Bump build-dependency and compatibility
 level to debhelper = 7 (version 4 is now deprecated)
 .
   * debian/patches/pic.patch: Drop this patch, since it interferes with
 the way the OPTS variable must be set, on a per-architecture basis
   * debian/control: As a consequence of the above, drop the
 build-dependency on cdbs
   * debian/rules: Fix the building/cleaning of make.inc and
 testing/Makefile files, which were being left behind after running
 debian/rules clean
 .
   [ Sylvestre Ledru ]
   * typo fixed in debian/rules
Checksums-Sha1: 
 43e2626ba50386c14636cadcd30f4259463e28e8 1406 lapack_3.2.0-2.dsc
 eb8610c45ad18fbd7f3c766edc023b7ef99abf32 71227 lapack_3.2.0-2.diff.gz
 0bfcb88ecce3d89b0fee2efb6ba4d28ae44a08cd 3845198 liblapack-doc_3.2.0-2_all.deb
 48da35e5b8f8fad565249246f9d00358bc2bc959 4370556 liblapack3gf_3.2.0-2_amd64.deb
 325ef41a51488ed07c943c56f9784135be7e21ac 4743148 
liblapack-dev_3.2.0-2_amd64.deb
 45622529ab780e5b63087134915873a9b388fbb0 4819554 
liblapack-pic_3.2.0-2_amd64.deb
 1345cf7449da652679c6b5273a9c4783a60538af 8309762 
liblapack-test_3.2.0-2_amd64.deb
Checksums-Sha256: 
 78db36359fbcd60f943c883b615893a8dacfe26069d90fe6217abd91927c5ad9 1406 
lapack_3.2.0-2.dsc
 ab0769a2a228f5be776814cb8e2e3081226154d4687a13388f8a4eb9e0d4af02 71227 
lapack_3.2.0-2.diff.gz
 6a942715baaeb7da686adb2c04151be40bbee660b3acb0ef0d2930b0a8c76b4e 3845198 
liblapack-doc_3.2.0-2_all.deb
 8b81fa636f536697667bd6d78146b0028ba367cbb8c3326e61d561ff789b3a5b 4370556 
liblapack3gf_3.2.0-2_amd64.deb
 8e775129c77f2e250c0023d9c407cc435967e31da25531f5d7c4e59844b1e82e 4743148 
liblapack-dev_3.2.0-2_amd64.deb
 0af39c57b0cae5746b0fcad5629c0f68bc77454771c22a8f171e923912aef58e 4819554 
liblapack-pic_3.2.0-2_amd64.deb
 bf628ae506198bb7059dbf2e8adc1009bf510a31f077245dbca7aa17c05c80eb 8309762 
liblapack-test_3.2.0-2_amd64.deb
Files: 
 1fb3892be17ec2d24dcdcd585bcab9ca 1406 libs optional lapack_3.2.0-2.dsc
 781a17993a106ce47243bc88f3945774 71227 libs optional lapack_3.2.0-2.diff.gz
 f8956d6e22b984a60d7b83a80f3393cb 3845198 doc optional 
liblapack-doc_3.2.0-2_all.deb
 9d92f0acd72fc396a400561a96a6e8ba 4370556 libs optional 
liblapack3gf_3.2.0-2_amd64.deb
 11d5dd1e64096aa842c4e3136b1aecf3 4743148 libdevel optional 
liblapack-dev_3.2.0-2_amd64.deb
 643db4d193517ebdaf590bdf51a2c13b 4819554 libdevel optional 
liblapack-pic_3.2.0-2_amd64.deb
 93fdf9af305e0d4125e3f56938d6e13f 8309762 libdevel optional 
liblapack-test_3.2.0-2_amd64.deb

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

iD8DBQFJvAfAk3oga0pdcv4RAgmhAJ9E7aQopZFULTCOO9/ZZVCIAp/yOQCgjhxp
YgPWAvIs3t9SPGPHH74n/LM=
=17dF
-END PGP SIGNATURE-


Accepted:
lapack_3.2.0-2.diff.gz
  to pool/main/l/lapack/lapack_3.2.0-2.diff.gz
lapack_3.2.0-2.dsc
  to pool/main/l/lapack/lapack_3.2.0-2.dsc
liblapack-dev_3.2.0-2_amd64.deb
  to pool/main/l/lapack/liblapack-dev_3.2.0-2_amd64.deb
liblapack-doc_3.2.0-2_all.deb
  to pool/main/l/lapack/liblapack-doc_3.2.0-2_all.deb
liblapack-pic_3.2.0-2_amd64.deb
  to pool/main/l/lapack/liblapack-pic_3.2.0-2_amd64.deb
liblapack-test_3.2.0-2_amd64.deb
  to pool/main/l/lapack/liblapack-test_3.2.0-2_amd64.deb
liblapack3gf_3.2.0-2_amd64.deb
  to pool/main/l/lapack/liblapack3gf_3.2.0-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 imdbpy 4.0-1 (source amd64)

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

Format: 1.8
Date: Sat, 14 Mar 2009 20:02:34 +0100
Source: imdbpy
Binary: python-imdbpy
Architecture: source amd64
Version: 4.0-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.0-1) unstable; urgency=low
 .
   * New upstream release. New build system using setuptools:
 - Add build depend on  python-setuptools.
 - Add patch no_install_doc_or_stuff_in_etc to no install some stuff where
   do not need to be installed.
   * Update copyright holders.
   * Update installed documentation.
Checksums-Sha1: 
 fead3f85376911ee5d908161aec96506d28f7de8 1096 imdbpy_4.0-1.dsc
 981d23e32b39865afb4ca76b86a76cc10eceedc1 271410 imdbpy_4.0.orig.tar.gz
 1962813bd2d93540a19ed1b883068e40481602c3 4370 imdbpy_4.0-1.diff.gz
 d5c6ed9a811d969f64b87f5e19c893dc825d5b5e 277116 python-imdbpy_4.0-1_amd64.deb
Checksums-Sha256: 
 8036d03fea75cfce94167216528f1f953fc75d8ec409e9d110fefea4ed927784 1096 
imdbpy_4.0-1.dsc
 6e0097f188bbfc8a9157460c7ab6751386b96d1d34f89d0fbea9a5d88823e2cd 271410 
imdbpy_4.0.orig.tar.gz
 4df98c5879f30eaed9cdbe11a3110dd987260b989b216ae0a144290ec498f6b2 4370 
imdbpy_4.0-1.diff.gz
 faa042eada29615dc944fc4bb305a54150a2f2cee8636b7092ba14a50d9b3360 277116 
python-imdbpy_4.0-1_amd64.deb
Files: 
 f5927737f38127b6de76a0b0ef1d154c 1096 python optional imdbpy_4.0-1.dsc
 8360fd687c9b1c562475b08d65b027a5 271410 python optional imdbpy_4.0.orig.tar.gz
 6370382392b27257500700e593fd377c 4370 python optional imdbpy_4.0-1.diff.gz
 6b8a7968848728d5887193f7b466c31e 277116 python optional 
python-imdbpy_4.0-1_amd64.deb

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

iEYEARECAAYFAkm8EMoACgkQn3j4POjENGECTwCeOLU31SyxZrUuIq4CeivgTL4w
XzIAn1+MZVjOeWwTluY/bPOPooe3y40i
=l905
-END PGP SIGNATURE-


Accepted:
imdbpy_4.0-1.diff.gz
  to pool/main/i/imdbpy/imdbpy_4.0-1.diff.gz
imdbpy_4.0-1.dsc
  to pool/main/i/imdbpy/imdbpy_4.0-1.dsc
imdbpy_4.0.orig.tar.gz
  to pool/main/i/imdbpy/imdbpy_4.0.orig.tar.gz
python-imdbpy_4.0-1_amd64.deb
  to pool/main/i/imdbpy/python-imdbpy_4.0-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 medusa 1.5-1 (source i386)

2009-03-14 Thread Luciano Bello
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 18:00:44 -0200
Source: medusa
Binary: medusa
Architecture: source i386
Version: 1.5-1
Distribution: unstable
Urgency: low
Maintainer: Luciano Bello luci...@debian.org
Changed-By: Luciano Bello luci...@debian.org
Description: 
 medusa - fast, parallel, modular, login brute-forcer for network services
Changes: 
 medusa (1.5-1) unstable; urgency=low
 .
   * New upstream version 1.5.
   * Watch file added.
Checksums-Sha1: 
 9d80dedb1a90c05582037ed8338534074df8f126 992 medusa_1.5-1.dsc
 8c9251e929303bc462f41b8a4ecded3bf19868d4 346795 medusa_1.5.orig.tar.gz
 5812ebf0827b9b9a784ab0e58afb8815281f1ef5 17547 medusa_1.5-1.diff.gz
 07478bd9d55c836a27f20092426f6506190ad523 190266 medusa_1.5-1_i386.deb
Checksums-Sha256: 
 eeba645eb875f1be64a6e5a59615fbe6b87758454d880c677ad3d299fcae7e9e 992 
medusa_1.5-1.dsc
 61ae6b45b3405522e4bf0e3aeb7be51f6bcf3f1452015b890bc4a305e144a259 346795 
medusa_1.5.orig.tar.gz
 3e86e50e0869a680ec4aa6331339e0f56d5924a38c991869ee144d7ef83ffaa5 17547 
medusa_1.5-1.diff.gz
 60824fdf1e2885f15c6c02e12fedb27b7e96e39b5d698b784b06a3832ff178f8 190266 
medusa_1.5-1_i386.deb
Files: 
 1f2eb85d74177730970017abd7ef690a 992 admin optional medusa_1.5-1.dsc
 82f884666161af80f8cee7a7d5c7554d 346795 admin optional medusa_1.5.orig.tar.gz
 7c9a68bccd68ba640ce7adcc8f7d8b5d 17547 admin optional medusa_1.5-1.diff.gz
 c29c6aea2d00ac6b87192a9d935ee193 190266 admin optional medusa_1.5-1_i386.deb

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

iD8DBQFJvBm1QWTRs4lLtHkRAi3CAJ9AuUe+gD28zuEJ9J4zMQaQBtCMpwCfWQr+
tlsHK+phDnHAQXRdGENnAw8=
=jrQg
-END PGP SIGNATURE-


Accepted:
medusa_1.5-1.diff.gz
  to pool/main/m/medusa/medusa_1.5-1.diff.gz
medusa_1.5-1.dsc
  to pool/main/m/medusa/medusa_1.5-1.dsc
medusa_1.5-1_i386.deb
  to pool/main/m/medusa/medusa_1.5-1_i386.deb
medusa_1.5.orig.tar.gz
  to pool/main/m/medusa/medusa_1.5.orig.tar.gz


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



Accepted krank 0.7+dfsg1-13 (source all)

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

Format: 1.8
Date: Sat, 14 Mar 2009 22:47:59 +0300
Source: krank
Binary: krank
Architecture: source all
Version: 0.7+dfsg1-13
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 krank  - is a game of dexterity where you match stones together
Closes: 519659
Changes: 
 krank (0.7+dfsg1-13) unstable; urgency=low
 .
   * Game pause:
 * 'p' key, uppercase or lower case;
 * Pause key;
 * Lose focus (switching keyboard or mouse focus to another window);
 Pause when moving the mouse outside the krank window is a wrong way:
 If we game in windowed mode, we often move the mouse outside the
 krank window.
 closes: #519659.
Checksums-Sha1: 
 2b1e82fb0b485cb5af89ba40f98f36225008cc0a 1175 krank_0.7+dfsg1-13.dsc
 5703873de310abee76725525d9ebf371f2511e41 11183 krank_0.7+dfsg1-13.diff.gz
 68b329665383e4ea64fd3555288f9ff46c5d4a4e 60001880 krank_0.7+dfsg1-13_all.deb
Checksums-Sha256: 
 0a6d075b6034238aa1c3e43c1bc9b4eae7903ad8c2102f072c8fd216c1f5cf10 1175 
krank_0.7+dfsg1-13.dsc
 3bb95eba7bd6f6f4b806a54dbea91ed02218f92e54dfc0e897db67aaaee0e179 11183 
krank_0.7+dfsg1-13.diff.gz
 2916c48f23a8e03022be5c0c9af203ff6dead00272fcc8a6568177d819d2be2f 60001880 
krank_0.7+dfsg1-13_all.deb
Files: 
 927ac586324bdcbde00f99475fb17022 1175 games extra krank_0.7+dfsg1-13.dsc
 375e3653a1f4754093384fc74294e02e 11183 games extra krank_0.7+dfsg1-13.diff.gz
 8adfdacb7a604ff1d12df74e19e1d8b5 60001880 games extra 
krank_0.7+dfsg1-13_all.deb

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

iEYEARECAAYFAkm8Dk8ACgkQq4wAz/jiZTfAiACfZAA1Bie6K09CGbEwNvePPoOG
nxsAmwfiFXB9xw/2SgPLKWEtZcWkeemM
=hgus
-END PGP SIGNATURE-


Accepted:
krank_0.7+dfsg1-13.diff.gz
  to pool/main/k/krank/krank_0.7+dfsg1-13.diff.gz
krank_0.7+dfsg1-13.dsc
  to pool/main/k/krank/krank_0.7+dfsg1-13.dsc
krank_0.7+dfsg1-13_all.deb
  to pool/main/k/krank/krank_0.7+dfsg1-13_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 nevow 0.9.32-2 (source all)

2009-03-14 Thread Vincent Bernat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 22:24:59 +0100
Source: nevow
Binary: python-nevow
Architecture: source all
Version: 0.9.32-2
Distribution: unstable
Urgency: low
Maintainer: Vincent Bernat ber...@debian.org
Changed-By: Vincent Bernat ber...@debian.org
Description: 
 python-nevow - Web application templating system for Python and Twisted
Closes: 519750
Changes: 
 nevow (0.9.32-2) unstable; urgency=low
 .
   * Don't try to byte-compile modules with python  2.4. Closes: #519750.
   * Bump Standard Version To 3.8.1. No changes.
Checksums-Sha1: 
 e337e40bba15de8e96fbbdc92a094ce482bf6cd1 1432 nevow_0.9.32-2.dsc
 feed6c8f9a55c7486b5b3b0185892569e18296fb 5735 nevow_0.9.32-2.diff.gz
 982a8de6ae281e88564007d633dc3a399d9214f7 880958 python-nevow_0.9.32-2_all.deb
Checksums-Sha256: 
 75a5aeec9a06439d8005e782d479313636a2bf5b755944df85d60ff031515072 1432 
nevow_0.9.32-2.dsc
 9e5255ed91fd1095ce5287c58264c89c8685d5bfc194f6008f1e213e7e49dac9 5735 
nevow_0.9.32-2.diff.gz
 476973dea89947b1f3f1aeff1da49f60f7261176412e0bc4d81aacd360dc6abc 880958 
python-nevow_0.9.32-2_all.deb
Files: 
 bf12cfae3318991ec75b0243f5fb687d 1432 python optional nevow_0.9.32-2.dsc
 5ecb17586e85e9f3ec29904d8bae017d 5735 python optional nevow_0.9.32-2.diff.gz
 67af8e90a7b3485ac6ef472cc79a4e02 880958 python optional 
python-nevow_0.9.32-2_all.deb

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

iEYEARECAAYFAkm8IPoACgkQKFvXofIqeU6suwCdENh+C8j3MAF6I4zQtaEFC349
JGIAoIfw/mX6XKJ/WIgTzcvZe0xkCH1T
=uwb5
-END PGP SIGNATURE-


Accepted:
nevow_0.9.32-2.diff.gz
  to pool/main/n/nevow/nevow_0.9.32-2.diff.gz
nevow_0.9.32-2.dsc
  to pool/main/n/nevow/nevow_0.9.32-2.dsc
python-nevow_0.9.32-2_all.deb
  to pool/main/n/nevow/python-nevow_0.9.32-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 pyvnc2swf 0.9.5-2 (source all)

2009-03-14 Thread Vincent Bernat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 16:02:08 +0100
Source: pyvnc2swf
Binary: pyvnc2swf
Architecture: source all
Version: 0.9.5-2
Distribution: unstable
Urgency: low
Maintainer: Vincent Bernat ber...@debian.org
Changed-By: Vincent Bernat ber...@debian.org
Description: 
 pyvnc2swf  - screen recording tool with Flash (SWF) output
Changes: 
 pyvnc2swf (0.9.5-2) unstable; urgency=low
 .
   * Upload to unstable.
Checksums-Sha1: 
 4287d0ab57db43dad82e35d42a24c22ad323f9b1 1190 pyvnc2swf_0.9.5-2.dsc
 aa755330ee096aff466d49108c8ed7e70d171478 3194 pyvnc2swf_0.9.5-2.diff.gz
 e4b97a4b2527a0e8a088a44413640c2a1e6d359a 70706 pyvnc2swf_0.9.5-2_all.deb
Checksums-Sha256: 
 b52b5c92f21d5c67edc5eadecffe7369415da6495f966939e411571c66b8c183 1190 
pyvnc2swf_0.9.5-2.dsc
 59a153b0e7fcaaf828a3bbc1790c42283d1cfdc09c8edccea5bb59a02d6d0559 3194 
pyvnc2swf_0.9.5-2.diff.gz
 a9cbd8cb520a026026db1e64309e1e834042cb3529eb226035368e63ea57d1e7 70706 
pyvnc2swf_0.9.5-2_all.deb
Files: 
 d7bd5cd855bc144e054a20a9582748ce 1190 graphics optional pyvnc2swf_0.9.5-2.dsc
 e374226ca393aba56e21e6e62eb141b5 3194 graphics optional 
pyvnc2swf_0.9.5-2.diff.gz
 511f50d2a4f5cbd5fb20fe362850ca2a 70706 graphics optional 
pyvnc2swf_0.9.5-2_all.deb

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

iEYEARECAAYFAkm8GSUACgkQKFvXofIqeU7o1ACcCZ3BX83eubswOTW01PAFDDJL
XokAnjXcSCzybiXV/0TdyHEiSm3AneY3
=ACjE
-END PGP SIGNATURE-


Accepted:
pyvnc2swf_0.9.5-2.diff.gz
  to pool/main/p/pyvnc2swf/pyvnc2swf_0.9.5-2.diff.gz
pyvnc2swf_0.9.5-2.dsc
  to pool/main/p/pyvnc2swf/pyvnc2swf_0.9.5-2.dsc
pyvnc2swf_0.9.5-2_all.deb
  to pool/main/p/pyvnc2swf/pyvnc2swf_0.9.5-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 lldpd 0.3.3-1 (source amd64)

2009-03-14 Thread Vincent Bernat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 21:57:35 +0100
Source: lldpd
Binary: lldpd
Architecture: source amd64
Version: 0.3.3-1
Distribution: unstable
Urgency: low
Maintainer: Vincent Bernat ber...@debian.org
Changed-By: Vincent Bernat ber...@debian.org
Description: 
 lldpd  - implementation of IEEE 802.1ab (LLDP)
Changes: 
 lldpd (0.3.3-1) unstable; urgency=low
 .
   * New upstream version
Checksums-Sha1: 
 2c85b569fc71ff2e44236755e8bd39818326df44 1117 lldpd_0.3.3-1.dsc
 ba680b8cee05c32db8a4d820e3e4278a094504a5 149476 lldpd_0.3.3.orig.tar.gz
 35f0d4eff6e379e16acb39f7a539a95769481df9 3434 lldpd_0.3.3-1.diff.gz
 45ba84101a9308b5aafec9c07fea1a2c16f4b78b 74164 lldpd_0.3.3-1_amd64.deb
Checksums-Sha256: 
 24a3e99dd51427bc7aa928067cccfa84a5ce67e02c8274bc68c289a5b72c3527 1117 
lldpd_0.3.3-1.dsc
 314f219b0de85b302e558322178cdfc5c6c480fb58095a78712ac5b1c821d024 149476 
lldpd_0.3.3.orig.tar.gz
 83c65585ef7db124e1e4c747bc6f6d8e19e32dcf58d587f2781311bd31bdca89 3434 
lldpd_0.3.3-1.diff.gz
 a66aec5bbee891fc120699f54f5c5be5a18fa6d89106349d67b9c94066312b1a 74164 
lldpd_0.3.3-1_amd64.deb
Files: 
 d1d93b0f387599b79c62c8ff16f30696 1117 net optional lldpd_0.3.3-1.dsc
 9390b6c6bf0f4c249352e70582154657 149476 net optional lldpd_0.3.3.orig.tar.gz
 f870ac51ad1eace9bcb0f19368782cc6 3434 net optional lldpd_0.3.3-1.diff.gz
 fb2b39905b838fc54ca84d5e9f654e1d 74164 net optional lldpd_0.3.3-1_amd64.deb

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

iEYEARECAAYFAkm8G5kACgkQKFvXofIqeU7+WgCgqX2dhAnwUtoyXr8rtDjGdfYl
WesAnipJzgkqsYfnj8TviRwYskWRCt+1
=/FnB
-END PGP SIGNATURE-


Accepted:
lldpd_0.3.3-1.diff.gz
  to pool/main/l/lldpd/lldpd_0.3.3-1.diff.gz
lldpd_0.3.3-1.dsc
  to pool/main/l/lldpd/lldpd_0.3.3-1.dsc
lldpd_0.3.3-1_amd64.deb
  to pool/main/l/lldpd/lldpd_0.3.3-1_amd64.deb
lldpd_0.3.3.orig.tar.gz
  to pool/main/l/lldpd/lldpd_0.3.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 gok 2.24.0-2 (source all amd64)

2009-03-14 Thread Josselin Mouette
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 20:57:50 +0100
Source: gok
Binary: gok gok-doc
Architecture: source all amd64
Version: 2.24.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Josselin Mouette j...@debian.org
Description: 
 gok- GNOME Onscreen Keyboard
 gok-doc- documentation files for the GNOME Onscreen Keyboard
Closes: 519736
Changes: 
 gok (2.24.0-2) unstable; urgency=low
 .
   * Move gtk-doc-tools and docbook-xml to Build-Depends since configure
 requires them anyway. Closes: #519736.
   * Standards version is 3.8.1.
Checksums-Sha1: 
 b19bf03ebc31d7cf112de16ad0c873fda99f0171 1640 gok_2.24.0-2.dsc
 e243ab56e200b49afa29a0800dd3479146c7bc40 5544 gok_2.24.0-2.diff.gz
 906373948d64766f7bcb9e8ea7b3002ccb144dc0 210770 gok-doc_2.24.0-2_all.deb
 137aba9536728bf83e90789f56ff83513dcd5b24 1755984 gok_2.24.0-2_amd64.deb
Checksums-Sha256: 
 108795f528704665068582a0b3f77d1133474cf0100431debfeb9b2e0106f713 1640 
gok_2.24.0-2.dsc
 35aac519246b378c8b1d5d9849a3b41700bf0f2cfd4b3832736faf618e845e3f 5544 
gok_2.24.0-2.diff.gz
 7d59d0fa5c59c1938ecb47daeecfb47b1568865452f344c271741e1a39fe74e2 210770 
gok-doc_2.24.0-2_all.deb
 d5aa3764f411ce02c3f7768dc7b23be8f736d0248d0a47b54900b4fd609a9bc8 1755984 
gok_2.24.0-2_amd64.deb
Files: 
 31c6491173098b221ad5f9c3efd8dc70 1640 gnome optional gok_2.24.0-2.dsc
 0f2980ad5f6f2edcb7fb4dd264673b8e 5544 gnome optional gok_2.24.0-2.diff.gz
 69bce04543d791ddf6d9fd2c0301b579 210770 doc optional gok-doc_2.24.0-2_all.deb
 cac480f350487114f266a87c8df2d6a7 1755984 gnome optional gok_2.24.0-2_amd64.deb

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

iD8DBQFJvBWkrSla4ddfhTMRAv1gAJ93dLCduarjiYOSUaI4C9kjh6Jr4QCglfS4
MlPQJUVb4XM0CyvCri7XdF4=
=/uf2
-END PGP SIGNATURE-


Accepted:
gok-doc_2.24.0-2_all.deb
  to pool/main/g/gok/gok-doc_2.24.0-2_all.deb
gok_2.24.0-2.diff.gz
  to pool/main/g/gok/gok_2.24.0-2.diff.gz
gok_2.24.0-2.dsc
  to pool/main/g/gok/gok_2.24.0-2.dsc
gok_2.24.0-2_amd64.deb
  to pool/main/g/gok/gok_2.24.0-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 freetype 2.3.9-4 (source amd64)

2009-03-14 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 14:35:23 -0700
Source: freetype
Binary: libfreetype6 libfreetype6-dev freetype2-demos libfreetype6-udeb
Architecture: source amd64
Version: 2.3.9-4
Distribution: unstable
Urgency: low
Maintainer: Steve Langasek vor...@debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 freetype2-demos - FreeType 2 demonstration programs
 libfreetype6 - FreeType 2 font engine, shared library files
 libfreetype6-dev - FreeType 2 font engine, development files
 libfreetype6-udeb - FreeType 2 font engine for the debian-installer (udeb)
Changes: 
 freetype (2.3.9-4) unstable; urgency=low
 .
   * debian/patches-ft2demos/compiler-hardening-fixes.patch: always check the
 return value of fread(), to appease hardened compilers such as what's
 used in Ubuntu by default.  Set a good example, even if these demos
 shouldn't be security-sensitive!  Also, along the way catch and fix a
 small memory leak on error. :)
   * debian/patches-freetype/proper-armel-asm-declaration.patch: use __asm__
 for declaring assembly instead of asm, fixing a build failure on armel.
Checksums-Sha1: 
 7014a6e2716f086aa1a0d1ce6bf31c2fdd6c22bf 1182 freetype_2.3.9-4.dsc
 24fd943024d63315f38e5e714f36c27d0903b15f 34884 freetype_2.3.9-4.diff.gz
 4ff3340025fd176f2677fa39df1ea79b41d85819 407740 libfreetype6_2.3.9-4_amd64.deb
 6125fb7b60ceb23be4d2f42120c0d8e4ff02ddb0 730228 
libfreetype6-dev_2.3.9-4_amd64.deb
 4a4616cff36ae8a83b360f9ea90e71db3244db36 223022 
freetype2-demos_2.3.9-4_amd64.deb
 4c8d357086f8fe29ee5d4106fa51f01ed8eededb 274728 
libfreetype6-udeb_2.3.9-4_amd64.udeb
Checksums-Sha256: 
 ec3541c8fdabd73d26636f10f430f6ed219defd56763355f57f2189a6b84a9d4 1182 
freetype_2.3.9-4.dsc
 4f383008be0aa02e485e129ea8c194888cdfe5406128fbe677bb2eda86959317 34884 
freetype_2.3.9-4.diff.gz
 3dc3a30d03d06976212aac2225c9c140287311c1246e947bdc51882382c9bd9d 407740 
libfreetype6_2.3.9-4_amd64.deb
 da4f02ded1b563bca76d2a88ed24180f5ea273a2616422623401c8b8f65b66d2 730228 
libfreetype6-dev_2.3.9-4_amd64.deb
 81a75484c6f98992984d1f594e70f98dc51b66cb6bb3e2d1aa9519528abe317a 223022 
freetype2-demos_2.3.9-4_amd64.deb
 5737697307854d0c99548c2aef6a5cbb61b3af35139f4e2c092a9ba367920ef8 274728 
libfreetype6-udeb_2.3.9-4_amd64.udeb
Files: 
 7820b883931ddaaf4565e1431adceae3 1182 libs optional freetype_2.3.9-4.dsc
 c25cabf0e0a7ea28fee3d36e99b41483 34884 libs optional freetype_2.3.9-4.diff.gz
 1891b5cab8c91c55804b58f27c2bd5ae 407740 libs optional 
libfreetype6_2.3.9-4_amd64.deb
 a17da30cfebb78578924df71f259e08a 730228 libdevel optional 
libfreetype6-dev_2.3.9-4_amd64.deb
 97a6a92396a16e8ded6a437f2013057f 223022 utils optional 
freetype2-demos_2.3.9-4_amd64.deb
 713843f4cb2f81b6737254af40925b35 274728 debian-installer extra 
libfreetype6-udeb_2.3.9-4_amd64.udeb
Package-Type: udeb

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

iD8DBQFJvCP4KN6ufymYLloRAgzcAJ9y6Qd4TyDE+sGomO70au9WgHGniACeMRxm
4LU7TsRITxQ/aPVcxRuILMI=
=S/Qy
-END PGP SIGNATURE-


Accepted:
freetype2-demos_2.3.9-4_amd64.deb
  to pool/main/f/freetype/freetype2-demos_2.3.9-4_amd64.deb
freetype_2.3.9-4.diff.gz
  to pool/main/f/freetype/freetype_2.3.9-4.diff.gz
freetype_2.3.9-4.dsc
  to pool/main/f/freetype/freetype_2.3.9-4.dsc
libfreetype6-dev_2.3.9-4_amd64.deb
  to pool/main/f/freetype/libfreetype6-dev_2.3.9-4_amd64.deb
libfreetype6-udeb_2.3.9-4_amd64.udeb
  to pool/main/f/freetype/libfreetype6-udeb_2.3.9-4_amd64.udeb
libfreetype6_2.3.9-4_amd64.deb
  to pool/main/f/freetype/libfreetype6_2.3.9-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 tidy-proxy 0.97-2 (source all)

2009-03-14 Thread Jonas Meurer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 23:14:26 +0100
Source: tidy-proxy
Binary: tidy-proxy
Architecture: source all
Version: 0.97-2
Distribution: unstable
Urgency: low
Maintainer: Jonas Meurer m...@debian.org
Changed-By: Jonas Meurer m...@debian.org
Description: 
 tidy-proxy - A small http proxy which tidies html
Changes: 
 tidy-proxy (0.97-2) unstable; urgency=low
 .
   * update debian/watch to use tidy-proxy.freesources.org
   * bump standards-version to 3.8.1, no changes needed
   * fix xsltproc invocation in debian/rules
   * update debian/copyright to use the proposed machine-readable
 format from http://wiki.debian.org/Proposals/CopyrightFormat
Checksums-Sha1: 
 a1cbb6c834f5e8e276e02f04b561e21729ab8143 1054 tidy-proxy_0.97-2.dsc
 fc58ce409846e0a1b7993bab59f51f9291995551 6149 tidy-proxy_0.97-2.diff.gz
 0e6cdf4042511335ac2720d8e4d6fb765ad13f4a 10584 tidy-proxy_0.97-2_all.deb
Checksums-Sha256: 
 43850306164dfff06be81628cb6d6eea571a7a674e8a900797c3ce0eed2d6de1 1054 
tidy-proxy_0.97-2.dsc
 5b967f2c6d2104c3ba7c9b6431c57597d923dd6446a2f2db6f5687b525e40fbb 6149 
tidy-proxy_0.97-2.diff.gz
 4dcc18049b370dfee7d982d76c52a4099bc13045772e36ecc78cb6227f09d8f1 10584 
tidy-proxy_0.97-2_all.deb
Files: 
 406897c86a6cb018b269e6e940913d7f 1054 net optional tidy-proxy_0.97-2.dsc
 e1ffb1990f03453f1724ef39d9144a28 6149 net optional tidy-proxy_0.97-2.diff.gz
 4848da6a7da5a6be431dff1e0749bb8b 10584 net optional tidy-proxy_0.97-2_all.deb

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

iEYEARECAAYFAkm8LOMACgkQd6lUs+JfIQIZaQCeMOOaU8EG8xp1lUtC+WsOs8bh
fI8AoKLJmAZcIW7VJzSbWaIzWhtEer8g
=EtGq
-END PGP SIGNATURE-


Accepted:
tidy-proxy_0.97-2.diff.gz
  to pool/main/t/tidy-proxy/tidy-proxy_0.97-2.diff.gz
tidy-proxy_0.97-2.dsc
  to pool/main/t/tidy-proxy/tidy-proxy_0.97-2.dsc
tidy-proxy_0.97-2_all.deb
  to pool/main/t/tidy-proxy/tidy-proxy_0.97-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 gnurobbo 0.61-1 (source i386)

2009-03-14 Thread Ansgar Burchardt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 23:10:50 +0100
Source: gnurobbo
Binary: gnurobbo
Architecture: source i386
Version: 0.61-1
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Ansgar Burchardt ans...@43-1.org
Description: 
 gnurobbo   - logic game ported from ATARI XE/XL
Changes: 
 gnurobbo (0.61-1) unstable; urgency=low
 .
   [ Ansgar Burchardt ]
   * New Upstream Version (LP: #337089)
   * Do not dump vm usage information
 + New patch: do-not-dump-vmusage.diff
   * Update packaging for debhelper 7
   * Update copyright information
   * Update Vcs-* fields for the Git repository
   * Bump Standards Version to 3.8.0
 + add debian/README.source
   * Add watch file
 .
   [ Gonéri Le Bouder ]
   * Do not install the LICENSE-font files
Checksums-Sha1: 
 5912ae90ca303e26783bcae2655e3df4ccfef423 1242 gnurobbo_0.61-1.dsc
 d6d58b2b745172c3a29016615c9e6a2ecef7d450 746351 gnurobbo_0.61.orig.tar.gz
 336c91385f1478800e33976f4b1750e0d35e78c0 5216 gnurobbo_0.61-1.diff.gz
 7af678cfcccadf462073ff833c26f8302e2e5fae 132126 gnurobbo_0.61-1_i386.deb
Checksums-Sha256: 
 29406afd8b551dba3610ef57dd3d896b3f9c16a693f2ef0f262dc87ee8575791 1242 
gnurobbo_0.61-1.dsc
 0c8b2052e572551991906b70e9c3e72afa29e2591e750975384278f27e453733 746351 
gnurobbo_0.61.orig.tar.gz
 e01ce12ab68168faa8c7f6b127a9a516d2ed46b4cc11a00a1b80a86e09397cb4 5216 
gnurobbo_0.61-1.diff.gz
 05b8c995aacb73e59d0b4dba436eef0d69aea905d35585f1d921ec9f5a441f81 132126 
gnurobbo_0.61-1_i386.deb
Files: 
 0996489c5250e038083a7e41c932458e 1242 games optional gnurobbo_0.61-1.dsc
 587534e6d67ed37bac698aabcf8944ff 746351 games optional 
gnurobbo_0.61.orig.tar.gz
 f3e82d43803537b9b71cf7803386c519 5216 games optional gnurobbo_0.61-1.diff.gz
 7328efd304b592009f0d2c20eb5d48d4 132126 games optional gnurobbo_0.61-1_i386.deb

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

iEYEARECAAYFAkm8LToACgkQsKTFpDfZQSzddACgjS829VVgMVQ2aGRNwp8eTcwq
zDwAnjTCBBhn2LlCIEVCgj4c0bFNg2rp
=GGqY
-END PGP SIGNATURE-


Accepted:
gnurobbo_0.61-1.diff.gz
  to pool/main/g/gnurobbo/gnurobbo_0.61-1.diff.gz
gnurobbo_0.61-1.dsc
  to pool/main/g/gnurobbo/gnurobbo_0.61-1.dsc
gnurobbo_0.61-1_i386.deb
  to pool/main/g/gnurobbo/gnurobbo_0.61-1_i386.deb
gnurobbo_0.61.orig.tar.gz
  to pool/main/g/gnurobbo/gnurobbo_0.61.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 dh-make 0.48 (source all)

2009-03-14 Thread Craig Small
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 09:35:09 +1100
Source: dh-make
Binary: dh-make
Architecture: source all
Version: 0.48
Distribution: unstable
Urgency: low
Maintainer: Craig Small csm...@debian.org
Changed-By: Craig Small csm...@debian.org
Description: 
 dh-make- tool that converts source archives into Debian package source
Closes: 209231 226025 507060 513989 516624 518162
Changes: 
 dh-make (0.48) unstable; urgency=low
 .
   * Standards version now 3.8.1
   * License will be version 3 of GPL/LGPL but has options to change it
   * Closes: #513989
   * All other GPLed files, including dh_make itself now GPL v3
   * Fixed gpl template file Closes: #507060, #518162
   * Added apache license template Closes: #516624
   * Adjusted -p option so you can set version too Closes: #226025
   * Templates for arch-indep added Closes: #209231
Checksums-Sha1: 
 c3411ced65377cd075bacefe9e95b7c72348dee0 807 dh-make_0.48.dsc
 46817f8061aaf8be8f0bcb795f18ac330b0dfed0 40705 dh-make_0.48.tar.gz
 23376fc6e74e26b3812dd71d4144ee0f598f6407 43852 dh-make_0.48_all.deb
Checksums-Sha256: 
 1fde26d97667e6f7e0b67eb903c4835dd193d3a4d9d6edbf01ce2a298494d199 807 
dh-make_0.48.dsc
 8942748d60097d4a7cd9a7676f5760d69fd8ab4af29265c491ffe83aebb34378 40705 
dh-make_0.48.tar.gz
 210dd8db405fca4c23508202be35bbb2b551db850884b3697c04905960063bd3 43852 
dh-make_0.48_all.deb
Files: 
 141711cf60dc55ece7f03122754a5fbd 807 devel optional dh-make_0.48.dsc
 bc523680367922c83863cf3929eb8ad2 40705 devel optional dh-make_0.48.tar.gz
 3cabeca6dc98173d2cd04658762a4a79 43852 devel optional dh-make_0.48_all.deb

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

iD8DBQFJvDFkx2zlrBLK36URAt9XAJ0XRu+8/CXs0xtG0cflsCUwSSVVCACeMEjo
zb3LHIzHK6bH/RFXdXNZsiQ=
=mrbP
-END PGP SIGNATURE-


Accepted:
dh-make_0.48.dsc
  to pool/main/d/dh-make/dh-make_0.48.dsc
dh-make_0.48.tar.gz
  to pool/main/d/dh-make/dh-make_0.48.tar.gz
dh-make_0.48_all.deb
  to pool/main/d/dh-make/dh-make_0.48_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 email-reminder 0.7.5-2 (source all)

2009-03-14 Thread Francois Marier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 11:46:29 +1300
Source: email-reminder
Binary: email-reminder
Architecture: source all
Version: 0.7.5-2
Distribution: unstable
Urgency: high
Maintainer: Francois Marier franc...@debian.org
Changed-By: Francois Marier franc...@debian.org
Description: 
 email-reminder - Send event reminders by email
Changes: 
 email-reminder (0.7.5-2) unstable; urgency=high
 .
   * Fix config parsing to match the output of debconf. This fixes a
 problem introduced in 0.7.5-1 where SSL would be turned on if the
 smtp_ssl config variable was set to false.
   * Urgency high because it breaks most emails sent out.
Checksums-Sha1: 
 439a269642b70940d950f2bb7f141e3dc443c46d 1242 email-reminder_0.7.5-2.dsc
 3e1df24c858fad97b1dff26b4593ae36d4cfd28c 17101 email-reminder_0.7.5-2.diff.gz
 9f7deb4346e742172bde3ae01fe912c652fa0d0d 45968 email-reminder_0.7.5-2_all.deb
Checksums-Sha256: 
 61a9b56e1232f04dc223dde0187a8ed009d20c60e00cb8d41ae3d58130a6c8af 1242 
email-reminder_0.7.5-2.dsc
 7dd949ee4e71474586aa3e8e56f8334d45dbccd4d6744669ef684561b39221a5 17101 
email-reminder_0.7.5-2.diff.gz
 b6d4a4cf04e9a2b9a889315cb963292c9701078d9e81697d5844e9be5f5f9612 45968 
email-reminder_0.7.5-2_all.deb
Files: 
 17be16ca696745ae1c3b1bfae161e64d 1242 mail optional email-reminder_0.7.5-2.dsc
 eb36936309a0ed68498350570bcf3b47 17101 mail optional 
email-reminder_0.7.5-2.diff.gz
 aef9d7dda727fb5e09e27bf28ce6c7ec 45968 mail optional 
email-reminder_0.7.5-2_all.deb

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

iEYEARECAAYFAkm8NLoACgkQScUZKBnQNIa8OQCfYIVaCauOlTGhoOjcRVBpjPPF
cx4AnRuzCYIdE3XsNLnO6xCS0WRhwUBE
=1xvT
-END PGP SIGNATURE-


Accepted:
email-reminder_0.7.5-2.diff.gz
  to pool/main/e/email-reminder/email-reminder_0.7.5-2.diff.gz
email-reminder_0.7.5-2.dsc
  to pool/main/e/email-reminder/email-reminder_0.7.5-2.dsc
email-reminder_0.7.5-2_all.deb
  to pool/main/e/email-reminder/email-reminder_0.7.5-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 praat 5.1.2-1 (source amd64)

2009-03-14 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 13 Mar 2009 14:46:11 +0100
Source: praat
Binary: praat
Architecture: source amd64
Version: 5.1.2-1
Distribution: unstable
Urgency: low
Maintainer: Rafael Laboissiere raf...@debian.org
Changed-By: Rafael Laboissiere raf...@debian.org
Description: 
 praat  - program for speech analysis and synthesis
Changes: 
 praat (5.1.2-1) unstable; urgency=low
 .
   * New upstream release
   * debian/control, debian/compat: Bump debhelper build-dependency and
 compatibility level to = 7
   * debian/control: Bump Standards-Version to 3.8.1 (no changes needed)
Checksums-Sha1: 
 d52bb670a6b661322364d63f673b030d804b47fc 1230 praat_5.1.2-1.dsc
 f2e9b4a0930abe4020b16585a887b070d4237d5f 5507116 praat_5.1.2.orig.tar.gz
 d1e80d2f821d3ec89f2da8da4b91e12687f0e3c0 33216 praat_5.1.2-1.diff.gz
 031e85cb9f93a10e3b6fbe03bd3b91bb92944d78 2497400 praat_5.1.2-1_amd64.deb
Checksums-Sha256: 
 9b3850a8403865a7d2ab2269d327a03dcc455d5103522d8fda02de77eb30508e 1230 
praat_5.1.2-1.dsc
 d409f35306db26a39fb514b650435acaf16d34e74a6c3a97ac3a108a353cc9da 5507116 
praat_5.1.2.orig.tar.gz
 ffb24faefe68b6053bbde3759cd6dc7dd91b7abf812c2fd8490e998383a6dd9d 33216 
praat_5.1.2-1.diff.gz
 130abf491776c422491603e7bd961eb8a11b407a3406394ea552b0c5ff9ffb13 2497400 
praat_5.1.2-1_amd64.deb
Files: 
 6f36e27d3ab87fcee97177fa2fbb964d 1230 science optional praat_5.1.2-1.dsc
 40c29d0f1b199387a71ba3f0db268a66 5507116 science optional 
praat_5.1.2.orig.tar.gz
 5ed95408196d18605dc19887861f6d29 33216 science optional praat_5.1.2-1.diff.gz
 8cf617e73307cffeb712d34178eeacd4 2497400 science optional 
praat_5.1.2-1_amd64.deb

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

iD8DBQFJvDcOk3oga0pdcv4RAtTWAJ9uIyDtQDY18RlF/m1uFh4jO7JrCgCcDo1+
0xCqNuBfcjWG6Ne0RGd4lX4=
=wGN/
-END PGP SIGNATURE-


Accepted:
praat_5.1.2-1.diff.gz
  to pool/main/p/praat/praat_5.1.2-1.diff.gz
praat_5.1.2-1.dsc
  to pool/main/p/praat/praat_5.1.2-1.dsc
praat_5.1.2-1_amd64.deb
  to pool/main/p/praat/praat_5.1.2-1_amd64.deb
praat_5.1.2.orig.tar.gz
  to pool/main/p/praat/praat_5.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 zope-mysqlda 3.1-1 (source all)

2009-03-14 Thread Jonas Meurer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 23:32:47 +0100
Source: zope-mysqlda
Binary: zope-mysqlda
Architecture: source all
Version: 3.1-1
Distribution: unstable
Urgency: low
Maintainer: Jonas Meurer m...@debian.org
Changed-By: Jonas Meurer m...@debian.org
Description: 
 zope-mysqlda - A Database Adapter for connecting Zope and MySQL
Changes: 
 zope-mysqlda (3.1-1) unstable; urgency=low
 .
   * new upstream release
 - repack tarball with svn diretories/files removed
   * debian/copyright: minor format updates
   * debian/control: add fields Homepage, Vcs-Browser and Vcs-Svn
   * bump standards-version to 3.8.1, no changes needed
   * add zope2.11 to list of supported zope versions
Checksums-Sha1: 
 013896809c3f0eb2e8d0edf1ce5049dfcc011cf8 1260 zope-mysqlda_3.1-1.dsc
 2070e696bac8072b6244d4d7d16725195c1a6871 19381 zope-mysqlda_3.1.orig.tar.gz
 274f558f0aadae2bb58496ab6265ed471df62d4b 4160 zope-mysqlda_3.1-1.diff.gz
 60fbe8065ef606dd74965394d2dfd105707082a6 30390 zope-mysqlda_3.1-1_all.deb
Checksums-Sha256: 
 d25786bf55eb00f14491cf1f8e2a45284045f7f4d3d04aa2a22600578c597ccd 1260 
zope-mysqlda_3.1-1.dsc
 2653c03f6478324307a6fdeb24ab0cc44627550da502dd9ed204c321d2ddf87c 19381 
zope-mysqlda_3.1.orig.tar.gz
 9f3bc15f93d92265f9d654fd20839ce1237065aa7ee1d82fa3e7ee62c0e2ba36 4160 
zope-mysqlda_3.1-1.diff.gz
 0b1d11c96fe98fdbeac1832558e6f127f44a1f584661b73ace05049a1edf01da 30390 
zope-mysqlda_3.1-1_all.deb
Files: 
 13f12cc64332931070297f487b47de10 1260 web extra zope-mysqlda_3.1-1.dsc
 6367ed1d1eabcc6f89aadcdfa9951756 19381 web extra zope-mysqlda_3.1.orig.tar.gz
 8c8599663e689c7d07efa4f90aca5fde 4160 web extra zope-mysqlda_3.1-1.diff.gz
 23a6793737a6be95c49deb0c38725899 30390 web extra zope-mysqlda_3.1-1_all.deb

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

iEYEARECAAYFAkm8NpIACgkQd6lUs+JfIQIXjwCfZTJONetWNaKNPkxA6/gFxNL9
C64Aniqms3q4NwhgwMfPAPgg2B+fU5kS
=UStC
-END PGP SIGNATURE-


Accepted:
zope-mysqlda_3.1-1.diff.gz
  to pool/main/z/zope-mysqlda/zope-mysqlda_3.1-1.diff.gz
zope-mysqlda_3.1-1.dsc
  to pool/main/z/zope-mysqlda/zope-mysqlda_3.1-1.dsc
zope-mysqlda_3.1-1_all.deb
  to pool/main/z/zope-mysqlda/zope-mysqlda_3.1-1_all.deb
zope-mysqlda_3.1.orig.tar.gz
  to pool/main/z/zope-mysqlda/zope-mysqlda_3.1.orig.tar.gz


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



Accepted texmacs 1:1.0.7-2 (source all i386)

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

Format: 1.8
Date: Thu, 12 Mar 2009 09:54:21 +0900
Source: texmacs
Binary: texmacs texmacs-common
Architecture: source all i386
Version: 1:1.0.7-2
Distribution: unstable
Urgency: low
Maintainer: Atsuhito KOHDA ko...@debian.org
Changed-By: Atsuhito KOHDA ko...@debian.org
Description: 
 texmacs- WYSIWYG mathematical text editor using TeX fonts
 texmacs-common - WYSIWYG mathematical text editor using TeX fonts
Changes: 
 texmacs (1:1.0.7-2) unstable; urgency=low
 .
   * Re-packaged for migrating to unstable.
Checksums-Sha1: 
 d4c0ab5ef64849902a7aaf1e185d301900b5cef5 1329 texmacs_1.0.7-2.dsc
 cb7316a7be4c77b6ac16f9402cfb9e9e22a64be5 27677 texmacs_1.0.7-2.diff.gz
 8f018b8a9512a66592b468a686df0a4b61a2e9e4 3717018 texmacs-common_1.0.7-2_all.deb
 0507d3f87b2285fcc3e9a27b483f342bac6e91b4 1608526 texmacs_1.0.7-2_i386.deb
Checksums-Sha256: 
 4dd1d7da5976c58fab1732748902bccf5082fe39cdc9696c5030c028316a410c 1329 
texmacs_1.0.7-2.dsc
 614ed85f36837003ca62906fdcd37b44857bfc7742a77ce66643a71a520c6ee4 27677 
texmacs_1.0.7-2.diff.gz
 37c05fa2e80b3b3de58237b3fc058101749dc406b7451d7c66a71112df66b597 3717018 
texmacs-common_1.0.7-2_all.deb
 dc85ff48b7694ebf8fd5a66f45757d2a449eed35ddf2f97d84a0e7d9f29a4777 1608526 
texmacs_1.0.7-2_i386.deb
Files: 
 687a5cbc8dfdc0e33115ee2cb08c82c1 1329 editors optional texmacs_1.0.7-2.dsc
 abdfc32a44c4cae691efe4f75591eef7 27677 editors optional texmacs_1.0.7-2.diff.gz
 ef4d7d83863896d58cf09e5067d9da7f 3717018 editors optional 
texmacs-common_1.0.7-2_all.deb
 df35a8ae62ba1d37baeb48572c826451 1608526 editors optional 
texmacs_1.0.7-2_i386.deb

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

iEYEARECAAYFAkm8N5UACgkQ1IXdL1v6kOzWdwCfa6vLfEZIB6JEJL2nn1g2DMcE
8PYAn05bmWU6O+0sMTiiB9IxS+rKXno1
=eWFa
-END PGP SIGNATURE-


Accepted:
texmacs-common_1.0.7-2_all.deb
  to pool/main/t/texmacs/texmacs-common_1.0.7-2_all.deb
texmacs_1.0.7-2.diff.gz
  to pool/main/t/texmacs/texmacs_1.0.7-2.diff.gz
texmacs_1.0.7-2.dsc
  to pool/main/t/texmacs/texmacs_1.0.7-2.dsc
texmacs_1.0.7-2_i386.deb
  to pool/main/t/texmacs/texmacs_1.0.7-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 zope-tinytableplus 0.9-19 (source all)

2009-03-14 Thread Jonas Meurer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 00:30:19 +0100
Source: zope-tinytableplus
Binary: zope-tinytableplus
Architecture: source all
Version: 0.9-19
Distribution: unstable
Urgency: low
Maintainer: Jonas Meurer m...@debian.org
Changed-By: Jonas Meurer m...@debian.org
Description: 
 zope-tinytableplus - Present tabular data in Zope
Changes: 
 zope-tinytableplus (0.9-19) unstable; urgency=low
 .
   * add zope2.11 to the list of supported zope versions
   * bump standards-version to 3.8.1:
 - add Homepage and Vcs-* fields to debian/control
 - add README.source
   * add ${misc:Depends} to depends
   * add Homepage field to debian/control
   * update debian/changelog to use proposed format from
 http://wiki.debian.org/Proposals/CopyrightFormat
Checksums-Sha1: 
 8259076d6f4f45c18878b0434471a52f673e31a3 1370 zope-tinytableplus_0.9-19.dsc
 dcf464ad1fc3a78aaa0dc427c7b6df016dfc9fcf 4143 zope-tinytableplus_0.9-19.diff.gz
 e9a1a56c68d67180d405e0a32550280444bcc55f 23652 
zope-tinytableplus_0.9-19_all.deb
Checksums-Sha256: 
 28cfaa19dd0203713a61ddc8117d28d44c4f4fdaa67445951c19cb137aa605de 1370 
zope-tinytableplus_0.9-19.dsc
 1a666e42531f7d7eb765359d53a5f0239696384ec9c1ddf4c2bff9bef77e8d53 4143 
zope-tinytableplus_0.9-19.diff.gz
 0294231716a31272e26ab3dca68c875d288441c2399c63e8135ef7425b043a75 23652 
zope-tinytableplus_0.9-19_all.deb
Files: 
 b5d20a0dba2ae6b1388072a777334e62 1370 web extra zope-tinytableplus_0.9-19.dsc
 8c12be9844f987d90bad2b78642ec631 4143 web extra 
zope-tinytableplus_0.9-19.diff.gz
 87eed61b180af2826e2630d7f09bc41b 23652 web extra 
zope-tinytableplus_0.9-19_all.deb

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

iEYEARECAAYFAkm8P6oACgkQd6lUs+JfIQL6zACfSuG5HvMN8gEWnUGqRqTB4B6Y
sA0An255lEVPfS7T0OqtR8HUBN+pOiB2
=7aQU
-END PGP SIGNATURE-


Accepted:
zope-tinytableplus_0.9-19.diff.gz
  to pool/main/z/zope-tinytableplus/zope-tinytableplus_0.9-19.diff.gz
zope-tinytableplus_0.9-19.dsc
  to pool/main/z/zope-tinytableplus/zope-tinytableplus_0.9-19.dsc
zope-tinytableplus_0.9-19_all.deb
  to pool/main/z/zope-tinytableplus/zope-tinytableplus_0.9-19_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 mmpong 0.9-2 (source all i386)

2009-03-14 Thread André Gaul
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 00:26:31 +0100
Source: mmpong
Binary: libmmpong0.9 libmmpong0.9-dev mmpongd mmpong-caca mmpong-gl 
mmpong-gl-data
Architecture: source all i386
Version: 0.9-2
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: André Gaul g...@web-yard.de
Description: 
 libmmpong0.9 - massively multiplayer pong game library (shared libraries)
 libmmpong0.9-dev - massively multiplayer pong game library (development 
headers)
 mmpong-caca - massively multiplayer pong game client (caca version)
 mmpong-gl  - massively multiplayer pong game client (OpenGL version)
 mmpong-gl-data - massively multiplayer pong game client data (OpenGL version)
 mmpongd- massively multiplayer pong game server
Closes: 519359
Changes: 
 mmpong (0.9-2) unstable; urgency=low
 .
   [ André Gaul ]
   * Depend on libcegui-mk2-dev to work around #425983 (Closes: #519359)
   * Vcs-*: move the package to Debian Games svn repository
 .
   [ Gonéri Le Bouder ]
   * Add a comment in debian/control about #425983
Checksums-Sha1: 
 8a63a05cdb6b6bf00c7f5f6011a9af818ef2804e 1379 mmpong_0.9-2.dsc
 c064ee45fa6ba51e664e30fcaf1e1a68272ec57e 10040 mmpong_0.9-2.diff.gz
 7e56b47473d12f1f897c7e91be27fb7400a04cc3 190364 mmpong-gl-data_0.9-2_all.deb
 c792c5e9d04a543f8476b2daafa5d3705aa3239d 16786 libmmpong0.9_0.9-2_i386.deb
 0be72d23d3ae3bb609736d82476986f3118a9bbd 19858 libmmpong0.9-dev_0.9-2_i386.deb
 ad146f6224a1a181dd3aedc29c62f5dc1197b701 27044 mmpongd_0.9-2_i386.deb
 ad2988583771baf1c3b27f9d24ae6017eaa1 17270 mmpong-caca_0.9-2_i386.deb
 ce14137e3eaeb29947012b55fa2cea5ee4fe0df7 59266 mmpong-gl_0.9-2_i386.deb
Checksums-Sha256: 
 5028f672e3d84780e04f39bcae66d3d0a8d1ae3f010574f800a6c45e25987631 1379 
mmpong_0.9-2.dsc
 11a3677b21c9dc88604f173be69eadf8a5a740c78bd50d58df38e40d52f44ae3 10040 
mmpong_0.9-2.diff.gz
 0701808c0454be5730ea9499536fa606d050b827dcbff8da4e35fec356ea6801 190364 
mmpong-gl-data_0.9-2_all.deb
 e981f8ed1e3dbabe802224a2ee7e6d6b65be2ddc1253580aca222fe6e9d4c70d 16786 
libmmpong0.9_0.9-2_i386.deb
 94553f8da552d24ac5cf5ae9f8f519b6a72bad3a6e31658c3e2468296069e37c 19858 
libmmpong0.9-dev_0.9-2_i386.deb
 ed46c1ad3e7913a515a5c73f52469ad30e38714912f52d414bab766209c9128e 27044 
mmpongd_0.9-2_i386.deb
 6f52217c37b17e89c9c73f43c78d6bf7f88f0fc5af016e8beda183d37b449ba6 17270 
mmpong-caca_0.9-2_i386.deb
 3265fbd3f9ff4b9e4abdcaacc220fd8d165792daf7c9c3eb73d7256a670b80fb 59266 
mmpong-gl_0.9-2_i386.deb
Files: 
 34f27287d2735fb15c77623b6ed10dc8 1379 games extra mmpong_0.9-2.dsc
 c2a08223f4fc29b557b7f299c8017e0a 10040 games extra mmpong_0.9-2.diff.gz
 fa42e6cddb0bebe33a8bbcf13b1c6ad1 190364 games extra 
mmpong-gl-data_0.9-2_all.deb
 9ca76d25ee5a221a59a7f77706f7cc3a 16786 libs extra libmmpong0.9_0.9-2_i386.deb
 1a577dea2bf182a29f98f6b59f2382eb 19858 libdevel extra 
libmmpong0.9-dev_0.9-2_i386.deb
 ff746ec11653cc3348b95f0a347f96e0 27044 games extra mmpongd_0.9-2_i386.deb
 533db6bfcc4ed6422b9ba8368a3e5551 17270 games extra mmpong-caca_0.9-2_i386.deb
 423ecbd4ef25fbf2e72e84cf24625b6e 59266 games extra mmpong-gl_0.9-2_i386.deb

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

iEYEARECAAYFAkm8QYYACgkQsKTFpDfZQSy1DwCdFb5fT2mQ5dHqgYmADGzIsxpn
eYEAoI2DXqjUQ7JncGacyxG74aHxq/TW
=A/fI
-END PGP SIGNATURE-


Accepted:
libmmpong0.9-dev_0.9-2_i386.deb
  to pool/main/m/mmpong/libmmpong0.9-dev_0.9-2_i386.deb
libmmpong0.9_0.9-2_i386.deb
  to pool/main/m/mmpong/libmmpong0.9_0.9-2_i386.deb
mmpong-caca_0.9-2_i386.deb
  to pool/main/m/mmpong/mmpong-caca_0.9-2_i386.deb
mmpong-gl-data_0.9-2_all.deb
  to pool/main/m/mmpong/mmpong-gl-data_0.9-2_all.deb
mmpong-gl_0.9-2_i386.deb
  to pool/main/m/mmpong/mmpong-gl_0.9-2_i386.deb
mmpong_0.9-2.diff.gz
  to pool/main/m/mmpong/mmpong_0.9-2.diff.gz
mmpong_0.9-2.dsc
  to pool/main/m/mmpong/mmpong_0.9-2.dsc
mmpongd_0.9-2_i386.deb
  to pool/main/m/mmpong/mmpongd_0.9-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 bird 1.0.13-1 (source amd64)

2009-03-14 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 00:27:28 +0100
Source: bird
Binary: bird
Architecture: source amd64
Version: 1.0.13-1
Distribution: unstable
Urgency: low
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description: 
 bird   - Internet Routing Daemon
Changes: 
 bird (1.0.13-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 9e6869aee22054dac5518a080a14bd533418bdfa 989 bird_1.0.13-1.dsc
 99eb606a085c401b6e03e6abc34a6d8a6d5d0b56 611766 bird_1.0.13.orig.tar.gz
 cf3788ab00a8ef7b37e4a133b5e28e8f74d88c72 5205 bird_1.0.13-1.diff.gz
 8425c645090e04edca49c16b700b3a7b8378fe49 286906 bird_1.0.13-1_amd64.deb
Checksums-Sha256: 
 3fe31fdfa273023a17233a073e28cd3351964b67668aa3b8e39008b806a72a90 989 
bird_1.0.13-1.dsc
 6e6be98df3d878615357c8b2e03cd7c8d55ed4ffe9756661abd8beade94a33a1 611766 
bird_1.0.13.orig.tar.gz
 40a75047edf27cb8d45efd2527f5acf323f58492731521e9ce2f8d88a77b6a87 5205 
bird_1.0.13-1.diff.gz
 254f853b4849d15d6aad3360b0c697c844f8db0cad68a170f31763bf631bb3e8 286906 
bird_1.0.13-1_amd64.deb
Files: 
 c33fb318a38f1995b54cc21ecfada695 989 net extra bird_1.0.13-1.dsc
 bf529b10a07f5ad49674040d6b9614ce 611766 net extra bird_1.0.13.orig.tar.gz
 3a2613a4b078f450538a5b89227f0751 5205 net extra bird_1.0.13-1.diff.gz
 dd31c0614e8b5adc4602c00b9cbeacdc 286906 net extra bird_1.0.13-1_amd64.deb

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

iEYEARECAAYFAkm8PzgACgkQ9OZqfMIN8nMsAgCgoELn1N0EJ0b6pkjEizi2mKZC
CTgAnjHYHuuGrgGS7f8NgLso2iarIrbQ
=zlwV
-END PGP SIGNATURE-


Accepted:
bird_1.0.13-1.diff.gz
  to pool/main/b/bird/bird_1.0.13-1.diff.gz
bird_1.0.13-1.dsc
  to pool/main/b/bird/bird_1.0.13-1.dsc
bird_1.0.13-1_amd64.deb
  to pool/main/b/bird/bird_1.0.13-1_amd64.deb
bird_1.0.13.orig.tar.gz
  to pool/main/b/bird/bird_1.0.13.orig.tar.gz


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



Accepted ccspatch 1.6.6-20090314-1 (source all)

2009-03-14 Thread Debian-JP
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 08:25:12 +0900
Source: ccspatch
Binary: linux-patch-tomoyo
Architecture: source all
Version: 1.6.6-20090314-1
Distribution: unstable
Urgency: low
Maintainer: Hideki Yamane (Debian-JP) henr...@debian.or.jp
Changed-By: Hideki Yamane (Debian-JP) henr...@debian.or.jp
Description: 
 linux-patch-tomoyo - Lightweight and easy-use Mandatory Access Control for 
Linux
Changes: 
 ccspatch (1.6.6-20090314-1) unstable; urgency=low
 .
   * New upstream release (with just refresh, no bug fix and features)
   * debian/contro: Standards-Version: 3.8.1
Checksums-Sha1: 
 437170e9589bb38f9774758e487a0d110f00ef5f 1140 ccspatch_1.6.6-20090314-1.dsc
 4c12844629e5dde3561d31bb364a64855bf4f94f 868323 
ccspatch_1.6.6-20090314.orig.tar.gz
 8153d3f35f85594033d1f2a492775d786dac6cd4 4907 ccspatch_1.6.6-20090314-1.diff.gz
 bb10439e0eecd175b157be6298de298ea96ae545 1067010 
linux-patch-tomoyo_1.6.6-20090314-1_all.deb
Checksums-Sha256: 
 535e8a15f5bcb65808bd8b2f931decbd631cd06cdd8421b84bd166694aa1ea6c 1140 
ccspatch_1.6.6-20090314-1.dsc
 af1019d6bcc663503240bffaa8070b1eb1a7d20d78a508164a7eeef1282850a4 868323 
ccspatch_1.6.6-20090314.orig.tar.gz
 18515e294424cbce0682baf773d4ee3ba31d2c41b3428f1d12176f5415e813c8 4907 
ccspatch_1.6.6-20090314-1.diff.gz
 b32dc12af1b2c4ed8e21517f27c40a6af0efe7d864993346a161753f77fb9674 1067010 
linux-patch-tomoyo_1.6.6-20090314-1_all.deb
Files: 
 21cef6f1610f81996f8b71297d8151e6 1140 admin extra ccspatch_1.6.6-20090314-1.dsc
 44b01dc45e1ee08a2d1390e1c28899b4 868323 admin extra 
ccspatch_1.6.6-20090314.orig.tar.gz
 0cc71c6c48420364b0353d35c78f2026 4907 admin extra 
ccspatch_1.6.6-20090314-1.diff.gz
 a31281fd1387a76d68a574536a2ba69d 1067010 admin extra 
linux-patch-tomoyo_1.6.6-20090314-1_all.deb

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

iEYEARECAAYFAkm8PYQACgkQIu0hy8THJktnbwCgiC2EnGKevzZnJxE8bTSMab87
dIkAn1UXzW2sJR6DPUpHufwqOSt9IbvA
=k4J+
-END PGP SIGNATURE-


Accepted:
ccspatch_1.6.6-20090314-1.diff.gz
  to pool/main/c/ccspatch/ccspatch_1.6.6-20090314-1.diff.gz
ccspatch_1.6.6-20090314-1.dsc
  to pool/main/c/ccspatch/ccspatch_1.6.6-20090314-1.dsc
ccspatch_1.6.6-20090314.orig.tar.gz
  to pool/main/c/ccspatch/ccspatch_1.6.6-20090314.orig.tar.gz
linux-patch-tomoyo_1.6.6-20090314-1_all.deb
  to pool/main/c/ccspatch/linux-patch-tomoyo_1.6.6-20090314-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 man-db 2.5.5-1 (source i386)

2009-03-14 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 23:32:45 +
Source: man-db
Binary: man-db
Architecture: source i386
Version: 2.5.5-1
Distribution: unstable
Urgency: low
Maintainer: Colin Watson cjwat...@debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 man-db - on-line manual pager
Closes: 519162 519647
Changes: 
 man-db (2.5.5-1) unstable; urgency=low
 .
   * New upstream release:
 - Fix an uninitialised variable when sorting manual page candidates that
   could lead to excessive memory allocation and possible crashes
   (thanks, Dustin Marquess; closes: #519647).
 - man(1): Fix missing backslash in -r default (thanks, Will Day; closes:
   #519162).
Checksums-Sha1: 
 a4eb3c86a63744f0e30499a9fbdfbedbdc0eae99 1084 man-db_2.5.5-1.dsc
 029c6f19084c329be7fdae69143a87a6d3a8dce6 1948612 man-db_2.5.5.orig.tar.gz
 bdd4ad227b4b283b211e8bc8d8e0a058d0690dcf 63970 man-db_2.5.5-1.diff.gz
 5d44f6e4c599878fc68edf48b8a006c9db7dd970 1194262 man-db_2.5.5-1_i386.deb
Checksums-Sha256: 
 5b39c066a3be8de8c90e5051d4c3988f1c8c0976be4dbf5c94af100697ae9993 1084 
man-db_2.5.5-1.dsc
 ab2b1d1f2597c80784c19ece54e66c3bcff223e8e6bef6335e50066331f12c26 1948612 
man-db_2.5.5.orig.tar.gz
 ecb22517df92ebf78c96e164d4c86e8053ac80e926fb51eb1f93118f053c905d 63970 
man-db_2.5.5-1.diff.gz
 19645b912ed789cbcd091c217d936afd68acc2fc02b76cee86b751464115c1dc 1194262 
man-db_2.5.5-1_i386.deb
Files: 
 4a07a65a775aed7ec1ca630fb13c8227 1084 doc important man-db_2.5.5-1.dsc
 ca382dd934fc8b9e9a64d13354be48cf 1948612 doc important man-db_2.5.5.orig.tar.gz
 42fa0e60bcf9cc71ae5dfcbb43a5aceb 63970 doc important man-db_2.5.5-1.diff.gz
 9a07a02f16140c77defdee66acaf35ad 1194262 doc important man-db_2.5.5-1_i386.deb

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

iD8DBQFJvD9C9t0zAhD6TNERAmJeAJ9jxkDl5N4Au7SV8MsJeUDvUx8+4gCfS4iH
Z+fjvJ3K6oHBXpYjdTrgcQU=
=XbNi
-END PGP SIGNATURE-


Accepted:
man-db_2.5.5-1.diff.gz
  to pool/main/m/man-db/man-db_2.5.5-1.diff.gz
man-db_2.5.5-1.dsc
  to pool/main/m/man-db/man-db_2.5.5-1.dsc
man-db_2.5.5-1_i386.deb
  to pool/main/m/man-db/man-db_2.5.5-1_i386.deb
man-db_2.5.5.orig.tar.gz
  to pool/main/m/man-db/man-db_2.5.5.orig.tar.gz


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



Accepted debsums 2.0.42 (source all)

2009-03-14 Thread Francois Marier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 13:17:17 +1300
Source: debsums
Binary: debsums
Architecture: source all
Version: 2.0.42
Distribution: unstable
Urgency: low
Maintainer: Francois Marier franc...@debian.org
Changed-By: Francois Marier franc...@debian.org
Description: 
 debsums- verification of installed package files against MD5 checksums
Closes: 518608
Changes: 
 debsums (2.0.42) unstable; urgency=low
 .
   * Open files with O_NOATIME to reduce disk activity (closes: #518608)
   * Bump Standards-Version up to 3.8.1
Checksums-Sha1: 
 cfb049f852bf11157ca9ab35535b91af78de5735 895 debsums_2.0.42.dsc
 6c99a7cb3b21049060bad9cdede82005ea5b3553 46635 debsums_2.0.42.tar.gz
 f754c57359bd98c8ec5b851b68782571ad983b73 43682 debsums_2.0.42_all.deb
Checksums-Sha256: 
 16527558c0e6c14372fd64ae827b1287d69e98d4cda0a3ad023f5ea1d959cb4e 895 
debsums_2.0.42.dsc
 3feada896c70a07e6c487e734e4b5578f55cd1ee5fba9debea7b29e25078d3bf 46635 
debsums_2.0.42.tar.gz
 697df341fc6edc70747e345444716d6a623ecf570fc0e91afd6674ffe1559c56 43682 
debsums_2.0.42_all.deb
Files: 
 aad3c8a6b93462001b21306842f5da5f 895 admin optional debsums_2.0.42.dsc
 42df6f37a64224a20f7f73177a8b7ed9 46635 admin optional debsums_2.0.42.tar.gz
 8a99dea2e5264b285da763e62a29d096 43682 admin optional debsums_2.0.42_all.deb

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

iEYEARECAAYFAkm8ST8ACgkQScUZKBnQNIaDGACgsD7w0RfL/DGioRU6oTBGntVI
M0kAoK22MY0mm2iYrIJ/xSVDuf+8U5oT
=oZnJ
-END PGP SIGNATURE-


Accepted:
debsums_2.0.42.dsc
  to pool/main/d/debsums/debsums_2.0.42.dsc
debsums_2.0.42.tar.gz
  to pool/main/d/debsums/debsums_2.0.42.tar.gz
debsums_2.0.42_all.deb
  to pool/main/d/debsums/debsums_2.0.42_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 openjdk-6 6b14-1.5~pre1-4 (source i386 all)

2009-03-14 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Mar 2009 18:29:49 +0100
Source: openjdk-6
Binary: openjdk-6-jdk openjdk-6-jre-headless openjdk-6-jre openjdk-6-jre-lib 
openjdk-6-demo openjdk-6-source openjdk-6-doc openjdk-6-dbg icedtea6-plugin 
openjdk-6-source-files icedtea-6-jre-cacao openjdk-6-jre-zero
Architecture: source i386 all
Version: 6b14-1.5~pre1-4
Distribution: unstable
Urgency: low
Maintainer: OpenJDK Team open...@lists.launchpad.net
Changed-By: Matthias Klose d...@ubuntu.com
Description: 
 icedtea-6-jre-cacao - Alternatve JVM for OpenJDK, using Cacao
 icedtea6-plugin - web browser plugin based on OpenJDK and IcedTea to execute 
Java a
 openjdk-6-dbg - Java runtime based on OpenJDK (debugging symbols)
 openjdk-6-demo - Java runtime based on OpenJDK (demos and examples)
 openjdk-6-doc - OpenJDK Development Kit (JDK) documentation
 openjdk-6-jdk - OpenJDK Development Kit (JDK)
 openjdk-6-jre - OpenJDK Java runtime, using ${vm:Name}
 openjdk-6-jre-headless - OpenJDK Java runtime, using ${vm:Name} (headless)
 openjdk-6-jre-lib - OpenJDK Java runtime (architecture independent libraries)
 openjdk-6-jre-zero - Alternatve JVM for OpenJDK, using Zero/Shark
 openjdk-6-source - OpenJDK Development Kit (JDK) source files
 openjdk-6-source-files - OpenJDK 6 source files (used as a build dependency)
Closes: 518823
Changes: 
 openjdk-6 (6b14-1.5~pre1-4) unstable; urgency=low
 .
   * Disable the additional zero JVM on sparc.
   * Fix casts in hotspot on s390. Closes: #518823.
   * Add special flags for javac on s390 to work around a VM problem with bad
 code generation during inlining.
   * Run the testsuites for the default VM on all architectures.
   * Update IcedTea (20090314).
Checksums-Sha1: 
 d1b5711ee42cf9b6a7491c04041bd667ec2cadff 2381 openjdk-6_6b14-1.5~pre1-4.dsc
 6ecef1c4e5f6669fdba59645cf7ba13f3efede7e 172827 
openjdk-6_6b14-1.5~pre1-4.diff.gz
 1169cf0cb092250487392ec45817cc45a95f5678 10970068 
openjdk-6-jdk_6b14-1.5~pre1-4_i386.deb
 bc745215e8f701de0deb0ad2e4e92cf37b398cca 25662474 
openjdk-6-jre-headless_6b14-1.5~pre1-4_i386.deb
 9912ec0a1dce4089ad5fbdaae34b0571007a2ef6 251784 
openjdk-6-jre_6b14-1.5~pre1-4_i386.deb
 afb84bbdff88114e6c6ff565f9f864845727ec9b 2339072 
openjdk-6-demo_6b14-1.5~pre1-4_i386.deb
 24f66bb3cec40ded08a3b48419aec7e410c51816 149752900 
openjdk-6-dbg_6b14-1.5~pre1-4_i386.deb
 9e1282d4a48fccf4afd074755402612f720fe4ae 73380 
icedtea6-plugin_6b14-1.5~pre1-4_i386.deb
 7f75a65e91bd04069ffc00d5c2de48beac42855e 290534 
icedtea-6-jre-cacao_6b14-1.5~pre1-4_i386.deb
 691d4da154707c46670143f4e4704327e382d4eb 1353296 
openjdk-6-jre-zero_6b14-1.5~pre1-4_i386.deb
 9b87cf43715238e19eb6ef00f281679e8954de71 5244236 
openjdk-6-jre-lib_6b14-1.5~pre1-4_all.deb
 6d0df1036329b63a178fa79d39303da2229d3f99 26613508 
openjdk-6-source_6b14-1.5~pre1-4_all.deb
 a8d93eb7b3d60c6b0e72dd6a838ffb0c8afb2758 11939918 
openjdk-6-doc_6b14-1.5~pre1-4_all.deb
 1c05791957cf645e812b89959e9eff3bae4931fb 57181776 
openjdk-6-source-files_6b14-1.5~pre1-4_all.deb
Checksums-Sha256: 
 2c24b20352d56f335d946f7d40faf91928946546066aad05c1772676c3fc39eb 2381 
openjdk-6_6b14-1.5~pre1-4.dsc
 a82bf101d010df6b3457e99661dc1f48feb743bfdfc913bacdb15e34df88f542 172827 
openjdk-6_6b14-1.5~pre1-4.diff.gz
 340f35457296f95562ab108276fde6b9caf8859550b255d83b663829b98fac9a 10970068 
openjdk-6-jdk_6b14-1.5~pre1-4_i386.deb
 0ce18029c1f218632221d9bf3d4558431c330a3b57910be1617038dc1f73786c 25662474 
openjdk-6-jre-headless_6b14-1.5~pre1-4_i386.deb
 958e7703d862f0129860f1be1507a26dab2f57ae79e9f518081a13b4cc617bcb 251784 
openjdk-6-jre_6b14-1.5~pre1-4_i386.deb
 247091552ab0de8315652ec9147f46db56020fad5fd09253ec8c4f0dc0764547 2339072 
openjdk-6-demo_6b14-1.5~pre1-4_i386.deb
 ace8702e83889469b46651301797a270781a80d461c3883a18651ce12c8c7758 149752900 
openjdk-6-dbg_6b14-1.5~pre1-4_i386.deb
 a9289ed96ac762eb25ce1f29c8bdd537d24d321ac30c7ad28a983b1ca3158b45 73380 
icedtea6-plugin_6b14-1.5~pre1-4_i386.deb
 a751fbbddbfc5382eeb95ff0767a309031ddfe0e525814b9bc9e4f848eb9d52d 290534 
icedtea-6-jre-cacao_6b14-1.5~pre1-4_i386.deb
 26fe0a6d09ef28d705d62d0fe7671d6872372e2b5d97ac5396cfcbee6b3b837e 1353296 
openjdk-6-jre-zero_6b14-1.5~pre1-4_i386.deb
 933262c42ed05051a67a8099340b84b2b75f8e788792272c442d63971ed46fbd 5244236 
openjdk-6-jre-lib_6b14-1.5~pre1-4_all.deb
 9a80f5d7eb8083ebfae81b7e25731fa82ed29a8b43dd3b9c290e38f1ef044e8d 26613508 
openjdk-6-source_6b14-1.5~pre1-4_all.deb
 8e0d6e0969349a8385e59edb84cc42d985a299a0e8bb08d135473c241e162330 11939918 
openjdk-6-doc_6b14-1.5~pre1-4_all.deb
 3c414afcc08bf2e1c5cf5682b74adacabab33f951d3f154b550f3a854e185b4c 57181776 
openjdk-6-source-files_6b14-1.5~pre1-4_all.deb
Files: 
 cdf260f2f7d6de611c01b993831117df 2381 devel extra openjdk-6_6b14-1.5~pre1-4.dsc
 953605619d557939b7c650202ce73dbd 172827 devel extra 
openjdk-6_6b14-1.5~pre1-4.diff.gz
 a7ad665cdd9f3366f6acbf0b8861ce31 10970068 devel extra 
openjdk-6-jdk_6b14-1.5~pre1-4_i386.deb
 4645a2ceddc0168daef7670a86ca4c83 25662474 interpreters

Accepted ckermit 211-13 (source i386)

2009-03-14 Thread Ian Beckwith
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 00:26:29 +
Source: ckermit
Binary: ckermit
Architecture: source i386
Version: 211-13
Distribution: unstable
Urgency: low
Maintainer: Ian Beckwith i...@erislabs.net
Changed-By: Ian Beckwith i...@erislabs.net
Description: 
 ckermit- a serial and network communications package
Closes: 511564 517357 517516 517648 517855 518197 518327 518576 518702 518914 
519004
Changes: 
 ckermit (211-13) unstable; urgency=low
 .
   * Weaken inetd Depends: to Recommends (Closes: #511564).
   * postinst: if IKSD requested, complain if no inetd installed.
   * templates: new template ckermit/iksd-no-inetd.
   * Translations:
 + New:
   * Finnish, thanks to Esko Arajärvi (Closes: #518197).
   * Spanish, thanks to Francisco Javier Cuadrado (Closes: #518914).
 + Updated:
   * Czech, thanks to Martin Šín (Closes: #517357).
   * German, thanks to Matthias Julius  Andre Gorgus (Closes: #517855).
   * Galician, thanks to Marce Villarino (Closes: #517516).
   * Japanese, thanks to Hideki Yamane (Closes: #517648).
   * Swedish, thanks to Martin Bagge (Closes: #518327).
   * French, thanks to Florentin Duneau (Closes: #518576).
   * Russian, thanks to Yuri Kozlov (Closes: #518702).
   * Portuguese, thanks to Américo Monteiro (Closes: #519004).
   * Danish, thanks to Jacob Sparre Andersen.
   * Fix typos, unfuzzy translations. Thanks to Esko Arajärvi.
   * Mark 'dpkg-reconfigure ckermit' non-translatable. Thanks to Jacob
 Sparre Andersen.
   * Standards-Version: 3.8.1 (no changes).
Checksums-Sha1: 
 f19f9fd822ba710f99866ed911937b52d0acc6e8 1063 ckermit_211-13.dsc
 507364b058e3309830fbb5c8a76a37f3ab4c8681 41553 ckermit_211-13.diff.gz
 cfba8e6166555903f788677a8c1aa2a1d95c2088 1633396 ckermit_211-13_i386.deb
Checksums-Sha256: 
 ed90e01f35e7ad6991dc702f7867c3f9ff321a3392ed0e5249702eec77534754 1063 
ckermit_211-13.dsc
 74a8cfbf82edceef0f5a8fd71617728c908dfdf23f47d8d874e112b745a9b3ba 41553 
ckermit_211-13.diff.gz
 82f00d670f3b83c18b117c8b5f4983f3c767b25cb107778053b045f58736afa5 1633396 
ckermit_211-13_i386.deb
Files: 
 069c20a788e1af1ca89431fe93f3584e 1063 non-free/comm extra ckermit_211-13.dsc
 c24615c7ccd808b3f7bc74e085f45f7c 41553 non-free/comm extra 
ckermit_211-13.diff.gz
 ec6202c3d3a1eee23c77b0c1424e54c4 1633396 non-free/comm extra 
ckermit_211-13_i386.deb

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

iEYEARECAAYFAkm8TZkACgkQQOzBVKi6weqPbwCgiq7IK1VhWwPnYuCzFDUB8Pz+
CggAnjc3sSc5p6Ar/5y465QQBY9LCKh6
=HB26
-END PGP SIGNATURE-


Accepted:
ckermit_211-13.diff.gz
  to pool/non-free/c/ckermit/ckermit_211-13.diff.gz
ckermit_211-13.dsc
  to pool/non-free/c/ckermit/ckermit_211-13.dsc
ckermit_211-13_i386.deb
  to pool/non-free/c/ckermit/ckermit_211-13_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 ssmping 0.9.1-2 (source i386)

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

Format: 1.8
Date: Sun, 15 Mar 2009 02:17:59 +0100
Source: ssmping
Binary: ssmping
Architecture: source i386
Version: 0.9.1-2
Distribution: unstable
Urgency: low
Maintainer: Javier Fernandez-Sanguino Pen~a j...@debian.org
Changed-By: Javier Fernandez-Sanguino Pen~a j...@debian.org
Description: 
 ssmping- check your multicast connectivity
Closes: 518868
Changes: 
 ssmping (0.9.1-2) unstable; urgency=low
 .
   * Change debian/rules 'build' target to use the CFLAGS defined in
 debian/rules
   * Close a FTBFS bug by defining -D_GNU_SOURCE in CFLAGS in debian/rules.
 This is needed in order to include the proper definition of
 in6_pktinfo. This seems to be a bug in libc6-dev (2.9-4) since we
 previously (libc6-dev 2.7-18) did not need this to get that definition from
 /usr/include/netinet/in.h  (Closes: #518868)
Checksums-Sha1: 
 592606f69022236d617cdc010d53e617b31030b0 1012 ssmping_0.9.1-2.dsc
 10467d55c8ba762c36f70a183ca5792f5a2906f1 3005 ssmping_0.9.1-2.diff.gz
 fe1fd8eda5d6f05a9aa3e8adb4d14cc766960c1f 26904 ssmping_0.9.1-2_i386.deb
Checksums-Sha256: 
 064d87b3cdb2dede83e7e82ce2cdd9c684a4387a1de1a36f3a7c578832cde5c0 1012 
ssmping_0.9.1-2.dsc
 9872bb2fa7b51041f95a7d84aea4ea53a39dad0c2520719243cf6cf1bfaadc2d 3005 
ssmping_0.9.1-2.diff.gz
 bcb4f923c68a25e59e396b87aef1345d20976de5b55331d2641dc191ac440baa 26904 
ssmping_0.9.1-2_i386.deb
Files: 
 9279ecc60e80b35c3b9bc045f7c31e7b 1012 net extra ssmping_0.9.1-2.dsc
 3afaf32b9cee2f8a0177c9ba20d9f4a8 3005 net extra ssmping_0.9.1-2.diff.gz
 f80c2fc3e6afe99ff20b49d1a2e7e368 26904 net extra ssmping_0.9.1-2_i386.deb

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

iD8DBQFJvFhmsandgtyBSwkRAla3AJ4iDPG4C3jRsYoaKoFwHOIxUlyaAwCfdZbb
GkbApTC4Zx00rjxxGOPGRsk=
=D6e1
-END PGP SIGNATURE-


Accepted:
ssmping_0.9.1-2.diff.gz
  to pool/main/s/ssmping/ssmping_0.9.1-2.diff.gz
ssmping_0.9.1-2.dsc
  to pool/main/s/ssmping/ssmping_0.9.1-2.dsc
ssmping_0.9.1-2_i386.deb
  to pool/main/s/ssmping/ssmping_0.9.1-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 prover9-manual 0.0.200902a-1 (source all)

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

Format: 1.8
Date: Sun, 15 Mar 2009 00:53:52 +
Source: prover9-manual
Binary: prover9-doc
Architecture: source all
Version: 0.0.200902a-1
Distribution: unstable
Urgency: low
Maintainer: Peter Collingbourne pe...@pcc.me.uk
Changed-By: Peter Collingbourne pe...@pcc.me.uk
Description: 
 prover9-doc - documentation for Prover9 and associated programs
Changes: 
 prover9-manual (0.0.200902a-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/examples: updated
   * debian/control: new Standards-Version
Checksums-Sha1: 
 0c8e6f3886238cae7d9559ecb87aee3c886a7234 1227 prover9-manual_0.0.200902a-1.dsc
 de9bd94d3f631ad7781640ac17886082eb22af93 103 
prover9-manual_0.0.200902a.orig.tar.gz
 8c7702cf7e1a905a601d6251140eb465fd47e68c 4185 
prover9-manual_0.0.200902a-1.diff.gz
 daafb900765f0c1f6ed5604403d817d3b7a8a40e 968774 
prover9-doc_0.0.200902a-1_all.deb
Checksums-Sha256: 
 c4412b363581d9511d28036729ee8acde0f2e3fb30d3b834da56fe64788f505c 1227 
prover9-manual_0.0.200902a-1.dsc
 8d049695b3927743e90bf5ed6db3282e7a8a05de6e95dcc1d5792ce763e793a5 103 
prover9-manual_0.0.200902a.orig.tar.gz
 0d14cb86876ecb20bdcbe1fad98f288a9dd7d46629ff24a7340ef4fa2deeefcf 4185 
prover9-manual_0.0.200902a-1.diff.gz
 381a20ff5de1faa666d2ec3fce403764edb10f530fb48c64d1e0002e8cdc 968774 
prover9-doc_0.0.200902a-1_all.deb
Files: 
 f273dd2392eca57ac87b0c4376d98e1b 1227 doc optional 
prover9-manual_0.0.200902a-1.dsc
 00b6779d2d3edbd4434a24eebb79b2a8 103 doc optional 
prover9-manual_0.0.200902a.orig.tar.gz
 7427129d02078411724c50738beb2dca 4185 doc optional 
prover9-manual_0.0.200902a-1.diff.gz
 c6f1afd44d2140da5d80526f5e0f692b 968774 doc optional 
prover9-doc_0.0.200902a-1_all.deb

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

iEYEARECAAYFAkm8V5YACgkQXDqn6DSH7HFqYQCgh0tNc4pjKUz9Sp80NaSH3UFx
iOYAoJW6bBmDTf6I5HnBQrLzL7o7cKbU
=zwHg
-END PGP SIGNATURE-


Accepted:
prover9-doc_0.0.200902a-1_all.deb
  to pool/main/p/prover9-manual/prover9-doc_0.0.200902a-1_all.deb
prover9-manual_0.0.200902a-1.diff.gz
  to pool/main/p/prover9-manual/prover9-manual_0.0.200902a-1.diff.gz
prover9-manual_0.0.200902a-1.dsc
  to pool/main/p/prover9-manual/prover9-manual_0.0.200902a-1.dsc
prover9-manual_0.0.200902a.orig.tar.gz
  to pool/main/p/prover9-manual/prover9-manual_0.0.200902a.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 ladr 0.0.200902a-1 (source amd64)

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

Format: 1.8
Date: Sat, 14 Mar 2009 23:55:22 +
Source: ladr
Binary: libladr-dev libladr4 prover9 ladr4-apps
Architecture: source amd64
Version: 0.0.200902a-1
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
Changes: 
 ladr (0.0.200902a-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control: updated for new prover9-doc
   * debian/ladr4-apps.install, debian/ladr4-apps.links: new application
 complex, removed application rewriter2
   * debian/libladr4.symbols: updated
   * debian/control: new Standards-Version
Checksums-Sha1: 
 787dc7db66cc9aeaff21f14bbee62bdafc5ea46e 1161 ladr_0.0.200902a-1.dsc
 2ce0122f363ff3355bd9a359ec3d183923c2fd41 1970966 ladr_0.0.200902a.orig.tar.gz
 48cf904a27a2ae0d80e5c542b933ad0d7f9e 17042 ladr_0.0.200902a-1.diff.gz
 38af1ce111840848b6c8a3005feb707e6620371a 400736 
libladr-dev_0.0.200902a-1_amd64.deb
 802e59f13bbfe9f6feeabaa33a99311dba919565 238522 
libladr4_0.0.200902a-1_amd64.deb
 3019fed71cdfe49c277c31207d14a063238ed4f8 127390 prover9_0.0.200902a-1_amd64.deb
 1f6c19321831704da9e645c862e997d0b96e5187 369696 
ladr4-apps_0.0.200902a-1_amd64.deb
Checksums-Sha256: 
 3db15dce68217a738167402348574983a919b1b6e68cfcb41d7bb315f26129f6 1161 
ladr_0.0.200902a-1.dsc
 3043a93f8339928bf4d839b92c7dc204011cc3d9e7adc719a23da8262c2bb95a 1970966 
ladr_0.0.200902a.orig.tar.gz
 84f4663cd3daa14570c7075256a6a0e5b09cdbfa5af68de52a27e67751ca5f7c 17042 
ladr_0.0.200902a-1.diff.gz
 9fcb5f013418036f937001f4e82afbe5348ae780935d0b1e2b176c2ffca7c146 400736 
libladr-dev_0.0.200902a-1_amd64.deb
 df05420da0496e64d0dea47fb35fc5fb2c86b9ede82c284a0c25bbc00c5e080f 238522 
libladr4_0.0.200902a-1_amd64.deb
 b923598729a4fe4cbb59052fdaa740ed1b49cff8c2232e70edf529c8b558ab4d 127390 
prover9_0.0.200902a-1_amd64.deb
 1584325e5ec5ec1a2fcfe86a3c9a629a96502d1e12790dce8bc0637a1922f787 369696 
ladr4-apps_0.0.200902a-1_amd64.deb
Files: 
 d2f07f2f04a17ae4947134539d5b6018 1161 math optional ladr_0.0.200902a-1.dsc
 f37a5304737ea2b14caf90d0a784964e 1970966 math optional 
ladr_0.0.200902a.orig.tar.gz
 1350532c9f27022765e58b0e82ff362f 17042 math optional ladr_0.0.200902a-1.diff.gz
 11835fc6648ca8d4a55dbee5dab4a08a 400736 libdevel optional 
libladr-dev_0.0.200902a-1_amd64.deb
 f34530b787a5cba7421c451fa8ed28a6 238522 libs optional 
libladr4_0.0.200902a-1_amd64.deb
 dffdbf442c65a03ed71201f870bd2707 127390 math optional 
prover9_0.0.200902a-1_amd64.deb
 26a60528f971f3dbc6a942c5516c5d8b 369696 math optional 
ladr4-apps_0.0.200902a-1_amd64.deb

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

iEYEARECAAYFAkm8V5AACgkQXDqn6DSH7HHPVQCgnCih3AKQUSYIQ/nlQOls/osN
08wAnRmpeu1y2G60CCTvnral1ri3u8jA
=vrGo
-END PGP SIGNATURE-


Accepted:
ladr4-apps_0.0.200902a-1_amd64.deb
  to pool/main/l/ladr/ladr4-apps_0.0.200902a-1_amd64.deb
ladr_0.0.200902a-1.diff.gz
  to pool/main/l/ladr/ladr_0.0.200902a-1.diff.gz
ladr_0.0.200902a-1.dsc
  to pool/main/l/ladr/ladr_0.0.200902a-1.dsc
ladr_0.0.200902a.orig.tar.gz
  to pool/main/l/ladr/ladr_0.0.200902a.orig.tar.gz
libladr-dev_0.0.200902a-1_amd64.deb
  to pool/main/l/ladr/libladr-dev_0.0.200902a-1_amd64.deb
libladr4_0.0.200902a-1_amd64.deb
  to pool/main/l/ladr/libladr4_0.0.200902a-1_amd64.deb
prover9_0.0.200902a-1_amd64.deb
  to pool/main/l/ladr/prover9_0.0.200902a-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 cipux-storage 3.4.0.0-1 (source all)

2009-03-14 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 02:09:11 +0100
Source: cipux-storage
Binary: libcipux-storage-perl cipux-storage-tools
Architecture: source all
Version: 3.4.0.0-1
Distribution: unstable
Urgency: low
Maintainer: CipUX team cipux-de...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 cipux-storage-tools - Commandline storage-related tools for CipUX
 libcipux-storage-perl - storage abstraction layer for CipUX
Changes: 
 cipux-storage (3.4.0.0-1) unstable; urgency=low
 .
   * New upstream release.
   * Use local CDBS snippet upstream-tarball.
   * Build-depend on liblog-log4perl-perl and libreadonly-perl. Tighten
 build-dependencies on libcipux-perl and libmodule-build-cipux-perl.
 Drop build-dependency on libdate-manip-perl and (for cipux-storage-
 tools) libcipux-perl.
   * Add proper licensing header to debian/rules, and bump years.
   * Update debian/copyright:
 + Bump licensing years of both upstream source and debian packaging
 + Add upstream tarball download URL.
 + Update syntax to new proposal v442 (no changes needed)
 + Merge entries with same authors and copyrights
 + Add licensing header to GPL license section.
   * Update copyright-hints (no new authors or licenses).
   * Add git-buildpackage configfile, enabling pristine-tar and tag-
 signing.
Checksums-Sha1: 
 81a58149569adf4a2a4ddd5ac5299f173e4327d8 1864 cipux-storage_3.4.0.0-1.dsc
 6b8a511a87d613819013fe376bcccb7ad17c84d7 25535 
cipux-storage_3.4.0.0.orig.tar.gz
 70179308872de688d8f523a8f078fbaac8b915bf 20294 cipux-storage_3.4.0.0-1.diff.gz
 5876ab958cfcaa9e9da4826a259714fe257233c3 49828 
libcipux-storage-perl_3.4.0.0-1_all.deb
 8f29639fe0051dd53ff692dd6afc60fc7368ba8c 18642 
cipux-storage-tools_3.4.0.0-1_all.deb
Checksums-Sha256: 
 f33d00b5a37fd493253185f4978b5a44356b52fa22be3f91002699a9d7a1adc3 1864 
cipux-storage_3.4.0.0-1.dsc
 1e127f50afbfdabf69eb08d83efe6b0b25fc65020292bd3409c21a5f6da4af7f 25535 
cipux-storage_3.4.0.0.orig.tar.gz
 38d84ba4c9caebe54d472b4cd797ebb27b82d712e1b0ee1d057e45337747fe50 20294 
cipux-storage_3.4.0.0-1.diff.gz
 861352aa3e5c105da2a1d0db6d4e6824f2f78d69131baf2101d0b7d0d8a55106 49828 
libcipux-storage-perl_3.4.0.0-1_all.deb
 9a562f7acdac695bd4a80a38b0353b749da0ca27a92c3da613a3bd16a9ec93f9 18642 
cipux-storage-tools_3.4.0.0-1_all.deb
Files: 
 dbe24e2d4d18dd5a3b37abf25cf82aea 1864 perl optional cipux-storage_3.4.0.0-1.dsc
 ddbeebb3127849c70ab3f6597fa8bc95 25535 perl optional 
cipux-storage_3.4.0.0.orig.tar.gz
 42f97a189f45ad5a652cdbebd9365c45 20294 perl optional 
cipux-storage_3.4.0.0-1.diff.gz
 5dd103c2926305fb87257b5880224500 49828 perl optional 
libcipux-storage-perl_3.4.0.0-1_all.deb
 8aa82d7c62a3172544377daba25035ee 18642 perl optional 
cipux-storage-tools_3.4.0.0-1_all.deb

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

iEYEARECAAYFAkm8WyoACgkQn7DbMsAkQLgRlQCeIRIsJCkI421cZa6k0DGLjgw1
JDQAn2t22FMGr9Pgnbyq9MKm/NqMQ+En
=VHyX
-END PGP SIGNATURE-


Accepted:
cipux-storage-tools_3.4.0.0-1_all.deb
  to pool/main/c/cipux-storage/cipux-storage-tools_3.4.0.0-1_all.deb
cipux-storage_3.4.0.0-1.diff.gz
  to pool/main/c/cipux-storage/cipux-storage_3.4.0.0-1.diff.gz
cipux-storage_3.4.0.0-1.dsc
  to pool/main/c/cipux-storage/cipux-storage_3.4.0.0-1.dsc
cipux-storage_3.4.0.0.orig.tar.gz
  to pool/main/c/cipux-storage/cipux-storage_3.4.0.0.orig.tar.gz
libcipux-storage-perl_3.4.0.0-1_all.deb
  to pool/main/c/cipux-storage/libcipux-storage-perl_3.4.0.0-1_all.deb


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



Accepted geki2 2.0.3-8 (source i386)

2009-03-14 Thread Gonéri Le Bouder
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 15 Mar 2009 02:00:47 +0100
Source: geki2
Binary: geki2
Architecture: source i386
Version: 2.0.3-8
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Gonéri Le Bouder gon...@rulezlan.org
Description: 
 geki2  - Xenon-like vertical shoot'em-up
Closes: 495396
Changes: 
 geki2 (2.0.3-8) unstable; urgency=low
 .
   [ Barry deFreese ]
   * Fix make distclean lintian warning
   * Bump debhelper build-dep and compat to 5
   * Add VCS tags
   * Add Homepage field in control
   * Add watch file
 .
   [ Eddy Petrișor ]
   * fix Vcs-Svn URL to point to svn, not the incomplete ssh location
 .
   [ Gonéri Le Bouder ]
   * Apply William Steve Applegate patch to avoid garbled music (Closes: 
#495396)
   * Standard Version 3.8.1
   * Add 'set -e' in post{inst,rm}
   * Add the copyright notice
   * Clean Quilt's .pc directory
   * Add myself in uploader
 .
   [ Jon Dowland ]
   * update menu section to Games/Action for menu transition
 (thanks Linas Žvirblis)
Checksums-Sha1: 
 d8bdc24b2aaa2e275d717ee98ea27043da224b77 1263 geki2_2.0.3-8.dsc
 c6da2c26d2934b0772fab9d0d024f25cb1570178 99494 geki2_2.0.3-8.diff.gz
 8a0c4bdb1568d693ef54c6a9f2240f2bc86a81d4 671212 geki2_2.0.3-8_i386.deb
Checksums-Sha256: 
 b8f18cfb280d41224528744e2288bfc72d1ba6a7f62a5a09778db3ac206cb9dc 1263 
geki2_2.0.3-8.dsc
 3b52c8dbb28d776641107be6f969c96f644df9f36abb39df2ab3259b9a78a830 99494 
geki2_2.0.3-8.diff.gz
 9cc7ec4273c37e0e80e68497f86ea4b982acc9fa42c41ef5de305f32982b75eb 671212 
geki2_2.0.3-8_i386.deb
Files: 
 137d5230ed283174482ee7b6d2ebeafb 1263 games optional geki2_2.0.3-8.dsc
 1a27e34d819b85a6f37a794ddfc991fd 99494 games optional geki2_2.0.3-8.diff.gz
 dadea10ee2b07340500abdc26c88270c 671212 games optional geki2_2.0.3-8_i386.deb

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

iEYEARECAAYFAkm8XV4ACgkQsKTFpDfZQSzA/wCbBmAR/Jy3ihbQog3k+ClHekJB
AOQAnRPfw2pLdjXxphq10PnlXaP87I0c
=O+Vw
-END PGP SIGNATURE-


Accepted:
geki2_2.0.3-8.diff.gz
  to pool/main/g/geki2/geki2_2.0.3-8.diff.gz
geki2_2.0.3-8.dsc
  to pool/main/g/geki2/geki2_2.0.3-8.dsc
geki2_2.0.3-8_i386.deb
  to pool/main/g/geki2/geki2_2.0.3-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 ipe 6.0pre32-2 (source amd64)

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

Format: 1.8
Date: Sun, 15 Mar 2009 00:09:40 -0500
Source: ipe
Binary: ipe libipe1c2a libipe1-dev
Architecture: source amd64
Version: 6.0pre32-2
Distribution: unstable
Urgency: low
Maintainer: Steve M. Robbins s...@debian.org
Changed-By: Steve M. Robbins s...@debian.org
Description: 
 ipe- drawing editor for creating figures in PDF or PS formats
 libipe1-dev - Ipe library used by ipelets (developer files)
 libipe1c2a - Ipe library used by ipelets
Changes: 
 ipe (6.0pre32-2) unstable; urgency=low
 .
   * debian/control: Update to build with freetype 2.3.9.  Update
 Standards-Version to 3.8.1.0; no changes required.
Checksums-Sha1: 
 6ca7665ac115079d2d79c71632e2daf967cbf7ea 1134 ipe_6.0pre32-2.dsc
 2e776b2a8f373bf9f249348b7f280f2b91a6f5b0 8352 ipe_6.0pre32-2.diff.gz
 3988196912a4aed0111f0cf726882b653b2db697 876930 ipe_6.0pre32-2_amd64.deb
 a1c2d77c83b83c9ee08a1a1fdadf3c9dab281191 428596 libipe1c2a_6.0pre32-2_amd64.deb
 d762000371d83e338c12cf52e51435bd37de34c5 32738 libipe1-dev_6.0pre32-2_amd64.deb
Checksums-Sha256: 
 d13bb9a8e49a3da42b7b9ef10ea9326d6b77e2bc9dac6ada3da11dceebe941e1 1134 
ipe_6.0pre32-2.dsc
 d0e26f6b4fb70c92346ae28c5bed2f767350fd50de96af8d9650ea19f504e29d 8352 
ipe_6.0pre32-2.diff.gz
 0b28368385c96dbd8a79a554056174c7e897495d2cc432983a04854113c99513 876930 
ipe_6.0pre32-2_amd64.deb
 b1f98fcd11b201d154875f0cdb52ae0e859d5757fc44070614a93c9c2989c408 428596 
libipe1c2a_6.0pre32-2_amd64.deb
 dc945ea446d5025e310b6c748706485140124c8083cfa5e2ce721f7f135a58d3 32738 
libipe1-dev_6.0pre32-2_amd64.deb
Files: 
 4587bba038c1b679dd595bf66557d09b 1134 graphics optional ipe_6.0pre32-2.dsc
 c0377d6f3288a2913f1253bbf4eae9a3 8352 graphics optional ipe_6.0pre32-2.diff.gz
 c273435205ee6cd029f2e56556aa9e27 876930 graphics optional 
ipe_6.0pre32-2_amd64.deb
 ffe44cc255b6ebcfe0aab926ef826121 428596 libs optional 
libipe1c2a_6.0pre32-2_amd64.deb
 97b63969cf1175ed8f8ad2ee37ae85ba 32738 libdevel optional 
libipe1-dev_6.0pre32-2_amd64.deb

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

iD8DBQFJvI5s0i2bPSHbMcURAlmOAJ0YS5QON1pyk50MX4Z8kG46YSND8gCeI3Vq
VIhop3JytudiNEEo3DF8BbM=
=dEw0
-END PGP SIGNATURE-


Accepted:
ipe_6.0pre32-2.diff.gz
  to pool/main/i/ipe/ipe_6.0pre32-2.diff.gz
ipe_6.0pre32-2.dsc
  to pool/main/i/ipe/ipe_6.0pre32-2.dsc
ipe_6.0pre32-2_amd64.deb
  to pool/main/i/ipe/ipe_6.0pre32-2_amd64.deb
libipe1-dev_6.0pre32-2_amd64.deb
  to pool/main/i/ipe/libipe1-dev_6.0pre32-2_amd64.deb
libipe1c2a_6.0pre32-2_amd64.deb
  to pool/main/i/ipe/libipe1c2a_6.0pre32-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



BidDirectory.org.uk: Link Submitted for http://www.shabbona.org/documents/_images/joe-the-deer-911-call-download/pumpkin-log-recipe.html

2009-03-14 Thread andy
Greetings,

Thank you for submitting your link to BidDirectory.org.uk. Your link will be 
activated as soon as you place a bid.

Please use this URL to place a bid and keep track of future bids:

http://www.biddirectory.org.uk/link/87158.html

Sincerely,
BidDirectory.org.uk
http://www.biddirectory.org.uk/


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