Re: Data packages.

2009-02-09 Thread Lionel Elie Mamane
On Mon, Feb 09, 2009 at 08:39:58AM +0900, Charles Plessy wrote:
 Le Sun, Feb 08, 2009 at 10:03:09PM +0100, Joey Schulze a écrit :

 The data archive will contain huge packages that cannot be distributed
 through the regular archive due to their sheer size. (...)

 that sounds very, very interesting! Is there a place where we can
 know better about this data archive?

Also, I'd suggest (if we get it), we also use it for things like
videos of talks about Debian, that kind of things.

-- 
Lionel


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



JBoss5 on Debian: call for testers

2009-02-09 Thread Philipp Huebner
Hello,

I'm writing on behalf of the Debian pkg-jboss group.

JBoss 5 is being packaged by us with the overall goal to get it into
Debian. There is still much work to do, especially in the build process,
packaging more components of JBoss separately, and getting those already
packaged separately working with JBoss 5.
But our first priority is to get it working in a usable way, and I
believe we have reached a usable status now.

The profiles default, minimal, web and standard seem to be
working (all isn't yet), but we would like to find people who want to
use JBoss on Debian and are able to test it.

So far we've been developing on Debian unstable, would be interesting if
someone tests it on Debian testing and reports back to us.


Packages are available from [1].
The ones I am talking about are jbossas5, libjbossas5-java and
jbossas5-doc, all in version 5.0.0~GA-0.5.
At the moment, you also need the temporary package jbossas5-libs (0.4-1)
for the others to work.

Further information can be found on [2].



Please let any discussion concerning this take place on the
pkg-jboss-maintainer list [3], hosted on alioth [4].

Feedback, testing and help is welcome and much appreciated.


[1] deb http://pkg-jboss.alioth.debian.org unstable/all/
[2] https://wiki.debian.org/JBossPackaging
[3] https://alioth.debian.org/mail/?group_id=30355
[4] https://alioth.debian.org/projects/pkg-jboss


Regards,
Philipp Hübner





signature.asc
Description: OpenPGP digital signature


Proposal of two new control fields: Build-Recommends and Build-Suggests [long reading]

2009-02-09 Thread Fabian Greffrath

Dear -devel,

I'd like to suggest the introduction of two new control fields to the
source stanza of debian/control, namely Build-Recommends and
Build-Suggests.


Introduction of the new fields
==

- Build-Recommends would list packages that are basically available in
the Debian archive, but are not available on all architectures or for
all kernels. If a package listed in this field is available, it will
get installed by apt-get build-dep as if it was in Build-Depends --
but if it is not available, the build will not fail. This means that
only packages that add *optional functionality* and are *not required*
for the build may be considered as Build-Recommends.

A famous example for this would be libasound2-dev, which is only
available for Linux kernels. Currently a build-depends on this package
has to look like this

libasound2-dev [!hurd-i386 !kfreebsd-amd64 !kfreebsd-i386]

to prevent apt from trying to install it on the non-Linux
architectures where it is not available and thus would cause the build
to fail. The new approach is as simple as moving libasound2-dev from
Build-Depends to Build-Recommends.

- Build-Suggests would list packages that add extra functionality to
the source package, but are not considered to get installed at
build-time by default. This will most probably cover unofficial
packages from external repositories, e.g. libmp3lame-dev or libfaac-dev.


Example
===

A use case for this approach is given by the ffmpeg-debian package.
Currently its Build-Depends read like this (adjusted indentation for
better legibility):

Build-Depends: debhelper (= 5.0.0),
 libasound2-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386],
 libdc1394-22-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386],
 libfaad-dev | libfaad2-dev,
 libfreetype6-dev,
 libgsm1-dev,
 libimlib2-dev,
 libraw1394-dev [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386],
 libsdl1.2-dev,
 libschroedinger-dev,
 libspeex-dev,
 libtheora-dev ( 0.0.0.alpha4),
 libvorbis-dev,
 libx11-dev,
 libxext-dev,
 libxvmc-dev,
 quilt,
 texi2html,
 zlib1g-dev

We find conditional Build-Depends on three packages: libasound2-dev,
libdc1394-22-dev and libraw1394-dev. With the suggested approach the
list of Build-Depends, Build-Recommends and Build-Suggests would read
like this:

Build-Depends: debhelper (= 5.0.0),
 libfreetype6-dev,
 libgsm1-dev,
 libimlib2-dev,
 libsdl1.2-dev,
 libschroedinger-dev,
 libspeex-dev,
 libtheora-dev ( 0.0.0.alpha4),
 libvorbis-dev,
 libx11-dev,
 libxext-dev,
 libxvmc-dev,
 quilt,
 texi2html,
 zlib1g-dev
Build-Recommends: libasound2-dev,
 libdc1394-22-dev,
 libfaad-dev | libfaad2-dev,
 libraw1394-dev
Build-Suggests: libfaac-dev,
 libmp3lame-dev,
 libx264-dev,
 libxvidcore-dev,
 vdpau-dev

Please note that the Build-Depends that were architecture-conditional
before were moved to the Build-Recommends so they will
get installed like Build-Depends on archs where they are available
(i.e. all Linux archs) but will not cause the build to fail on other
archs.

Why have I added libfaad-dev to the Build-Recommends? Because in
Ubuntu ffmpeg-debian is in the main section, while faad2 is not. So in
order to merge ffmpeg-debian to Ubuntu, the maintainer has to manually
remove this Build-Depends each and every time. As soon as Ubuntu
would support the suggested approach, this would be obsolete.

The Build-Suggests field lists packages that can be used by ffmpeg to
support additional codecs. They are not part of Debian for different
(mostly patent-related) reasons, so they should not even be considered
for installation at build-time. But if they are *already installed*,
they will result in additional features for the ffmpeg packages. So
the Build-Suggests field is more or less a hint for users who aim to
rebuild the package.

It should however not be a random list of this could help packages.
In ffmpeg for example we have introduced some header autodetection and
explicitely enable the additional codecs as soon as the corresponding
header file has been found on the system.


Further examples


Besides ffmpeg there are quite a lot packages in Debian which could
benefit from this approach. This includes generally all packages that
Build-Depend on the alsa or firewire headers. Furthermore all packages
that need their Build-Depends asjusted for includion in Ubuntu could
benefit from this.

There are already some packages which include support for additional
external libraries but need it manually activated, e.g. libquicktime
and gstreamer0.10-plugins-{bad,ugly}. These packages could list the
supported external libs in their Build-Suggests and thus give users a
hint which packages to install before recompilation in order to enable
additional codec support.


Comparison with binary package dependencies
===

My proposal is very similar to the supported and well-established
relationships between binary packages [parts relevant to the new
approach are in squared 

Re: Proposal of two new control fields: Build-Recommends and Build-Suggests [long reading]

2009-02-09 Thread Don Armstrong
On Mon, 09 Feb 2009, Fabian Greffrath wrote:
 - Build-Recommends would list packages that are basically available
 in the Debian archive, but are not available on all architectures or
 for all kernels.

Unfortunatly, making missing build-dependencies a non-fatal error
causes builds to be non-deterministic.

For example, consider a case where libasound2-dev was a no longer
provided due to an API change to libasound3-dev, and for whatever
reason, libasound3-dev wasn't installable on some arch subsets
(perhaps because libasound3 hadn't yet been built.)

 Why have I added libfaad-dev to the Build-Recommends? Because in
 Ubuntu ffmpeg-debian is in the main section, while faad2 is not. So
 in order to merge ffmpeg-debian to Ubuntu, the maintainer has to
 manually remove this Build-Depends each and every time. As soon as
 Ubuntu would support the suggested approach, this would be obsolete.

I wouldn't be averse to some method of describing additional types of
conditional dependencies, such as differentiating builds of packages
on Debian and Ubuntu. [A hideous method of doing this[1]:
Build-Depends: libfaad-dev | some-only-in-ubuntu-package.]


Don Armstrong

1: In fact, forget that I even mentioned this method; it's all kinds
of ugly.
-- 
Let us chat together a moment, my friend. There are still several
hours until dawn, and I have the whole day to sleep.
 -- Count Orlock in _Nosferatu (1922)_

http://www.donarmstrong.com  http://rzlab.ucr.edu


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



Re: Proposal of two new control fields: Build-Recommends and Build-Suggests [long reading]

2009-02-09 Thread Steve Langasek
On Mon, Feb 09, 2009 at 09:30:48AM +0100, Fabian Greffrath wrote:
 Dear -devel,

 I'd like to suggest the introduction of two new control fields to the
 source stanza of debian/control, namely Build-Recommends and
 Build-Suggests.

This is a very bad idea.  It interferes with reproducibility of binary
builds, which is a very important property of Debian packages.  Packages
must *not* build differently based on opportunistic discovery of
build-dependencies on the system - it's a bug for any package to do so, let
alone to be specifically encouraging this behavior with debian/control
fields!

 A famous example for this would be libasound2-dev, which is only
 available for Linux kernels. Currently a build-depends on this package
 has to look like this

   libasound2-dev [!hurd-i386 !kfreebsd-amd64 !kfreebsd-i386]

That is the correct relationship to express.  Ensure libasound2-dev is used
on all architectures except for these others is *not* the same thing as
install libasound2-dev if you can find it.

 Why have I added libfaad-dev to the Build-Recommends? Because in
 Ubuntu ffmpeg-debian is in the main section, while faad2 is not. So in
 order to merge ffmpeg-debian to Ubuntu, the maintainer has to manually
 remove this Build-Depends each and every time. As soon as Ubuntu
 would support the suggested approach, this would be obsolete.

That doesn't sound like a merge to me.  A real merge, using tools such as
Merge-o-Matic (http://merges.ubuntu.com) or a a VCS of choice, shouldn't
require that any work be redone for this build-dependency difference.

Trying to avoid deltas between Debian and Ubuntu by changing the semantics
of build dependencies is a false optimization.  It's not a win to save time
on merges if it means unreliable build semantics in return.

-- 
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: Proposal of two new control fields: Build-Recommends and Build-Suggests [long reading]

2009-02-09 Thread Steve Langasek
On Mon, Feb 09, 2009 at 01:13:24AM -0800, Don Armstrong wrote:
  Why have I added libfaad-dev to the Build-Recommends? Because in
  Ubuntu ffmpeg-debian is in the main section, while faad2 is not. So
  in order to merge ffmpeg-debian to Ubuntu, the maintainer has to
  manually remove this Build-Depends each and every time. As soon as
  Ubuntu would support the suggested approach, this would be obsolete.

 I wouldn't be averse to some method of describing additional types of
 conditional dependencies, such as differentiating builds of packages
 on Debian and Ubuntu. [A hideous method of doing this[1]:
 Build-Depends: libfaad-dev | some-only-in-ubuntu-package.]

I was going to suggest 'libfaad-dev | ubuntu-minimal' :)

 1: In fact, forget that I even mentioned this method; it's all kinds
 of ugly.

Aww :(

-- 
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: Proposal of two new control fields: Build-Recommends and Build-Suggests [long reading]

2009-02-09 Thread Lucas Nussbaum
On 09/02/09 at 01:13 -0800, Don Armstrong wrote:
 On Mon, 09 Feb 2009, Fabian Greffrath wrote:
  - Build-Recommends would list packages that are basically available
  in the Debian archive, but are not available on all architectures or
  for all kernels.
 
 Unfortunatly, making missing build-dependencies a non-fatal error
 causes builds to be non-deterministic.
 
 For example, consider a case where libasound2-dev was a no longer
 provided due to an API change to libasound3-dev, and for whatever
 reason, libasound3-dev wasn't installable on some arch subsets
 (perhaps because libasound3 hadn't yet been built.)
 
  Why have I added libfaad-dev to the Build-Recommends? Because in
  Ubuntu ffmpeg-debian is in the main section, while faad2 is not. So
  in order to merge ffmpeg-debian to Ubuntu, the maintainer has to
  manually remove this Build-Depends each and every time. As soon as
  Ubuntu would support the suggested approach, this would be obsolete.
 
 I wouldn't be averse to some method of describing additional types of
 conditional dependencies, such as differentiating builds of packages
 on Debian and Ubuntu. [A hideous method of doing this[1]:
 Build-Depends: libfaad-dev | some-only-in-ubuntu-package.]

Couldn't we introduce a pseudo-arch/port named ubuntu, and use:
Build-Depends: libfaad-dev [!ubuntu]?

Of course, that leaves the question of whether Debian maintainers will
agree to add Ubuntu-specific information in their source stanzas. But
this doesn't have to be mandatory anyway.
-- 
| Lucas Nussbaum
| lu...@lucas-nussbaum.net   http://www.lucas-nussbaum.net/ |
| jabber: lu...@nussbaum.fr GPG: 1024D/023B3F4F |


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



Re: Forthcoming changes in kernel-package

2009-02-09 Thread Michael Tautschnig
[...]
c. his means there will be no need for /etc/kernel-img.conf file any
   more.

[...]

Isn't this file also read in the postinst of the official kernels? In FAI we
had several issues when kernel-img.conf was missing or hadn't had the proper
values in there.

Best,
Michael



pgpuCuaKQ5MHq.pgp
Description: PGP signature


Re: Forthcoming changes in kernel-package

2009-02-09 Thread Stefan Lippers-Hollmann
Hi

On Montag, 9. Februar 2009, Michael Tautschnig wrote:
 [...]
 c. his means there will be no need for /etc/kernel-img.conf file any
more.
 
 [...]
 
 Isn't this file also read in the postinst of the official kernels? In FAI we
 had several issues when kernel-img.conf was missing or hadn't had the proper
 values in there.
[...]

As of yet kernel-package is still used in the official kernel builds[1], 
by using make-kpkg to build and create the linux-image packages 
(linux-headers is assembled manually).

linux-2.6/debian/rules.real
[...]
kpkg_image := $(setup_env)
ifdef DEBIAN_KERNEL_JOBS
  kpkg_image += CONCURRENCY_LEVEL=$(DEBIAN_KERNEL_JOBS)
endif
kpkg_image += make-kpkg --arch '$(firstword $(KPKG_ARCH) $(ARCH))' 
--cross-compile=- --stem linux --config silentoldconfig
ifneq ($(INITRAMFS),False)
  kpkg_image += --initrd
endif
ifdef KPKG_SUBARCH
  kpkg_image += --subarch '$(KPKG_SUBARCH)'
endif
[...]

Which is called from the following targets:
$(STAMPS_DIR)/setup_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_kernel-package:
[...]$(kpkg_image) configure
[...]

$(STAMPS_DIR)/build_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_kernel-package:
[...]$(kpkg_image) build
[...]

install-image_$(ARCH)_$(FEATURESET)_$(FLAVOUR)_kernel-package:
[...]$(kpkg_image) kernel-image
[...]

Due to this, the bootloader setup relies on postinst_hook/ postrm_hook and 
do_initrd in /etc/kernel-img.conf and honours the rest of the settings.

Regards
Stefan Lippers-Hollmann

[1] 
http://svn.debian.org/viewsvn/kernel/dists/trunk/linux-2.6/debian/rules.real?view=markup


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


Re: Proposal of two new control fields: Build-Recommends and Build-Suggests [long reading]

2009-02-09 Thread Charles Plessy
Le Mon, Feb 09, 2009 at 09:30:48AM +0100, Fabian Greffrath a écrit :
 Dear -devel,

 I'd like to suggest the introduction of two new control fields to the
 source stanza of debian/control, namely Build-Recommends and
 Build-Suggests.

Dear Fabian,

this is a very intersting proposal that would address perfectly the issues I
had with running regression tests with Perl modules. Let's imagine possible
consequences (in the case of Perl modules) of unavailability of a package in
one of the three Build- fields:

 - Binary packages would be impossible to prepare if Build-Depends are not
   completely satisfied.

 - Regression tests would miss some information if Build-Recommends are
   missing, but building would not fail and the binary package would be
   identical, i.e., the only diffrerence would be the logs. Advantage: a package
   does not become instantaneously unbuildable if one of its Build-Recommends is
   unavailable for whatever reason.

 - Regression tests would get additional information if Build-Suggests are
   present. Typically, Build-Suggests could be used with contrib or non-free
   packages. Here is a real life example: the bioperl-run package provides
   wrappers for many programs and regression tests for all the wrappers; most
   programs are packaged, and would go to to Build-Recommends, but some 
(clustalw,
   phylip) are non-free, and would go in Build-Suggests. Bioperl-run's 
regression
   tests do not fail if the wrapped programs are not found.

This said, there are insightful comments in this thread that underline what
should not be done with Build-Recommends in the context of packages that need
compilation, so the need for the two new fields, althoug appalling, is probably
not pressing. I guess that if you manage to convince the dpkg and sbuild
maintainers to implement them, you will have more chances to get the fields
accepted ;)

Have a nice day,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


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



incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread kc.ubuntu.cz
I would like to ask you a little bit controversal question. As a user I miss a 
package manager based on powerfull dependency solver. Using APT in DEB-based 
distributions, I can easilly create some kind of problem, APT is unable to 
solve. This is because the APT is the worst dependency solver almost ever 
invented. Proof can be found here: 
 
 http://www.mancoosi.org/edos/manager.html 
 
As a SUSE user, I'm used to work with Zypper/Libzypp package managementm using 
SAT solver. Since Opensuse 11.0, Libzypp is the best, fastest and te most 
powerfool tool to solve dependenies ever used in Linux distribution. 
 
 If you look at the comparison i posted above, you can se that APT is worse 
than Urpmi and SMART - which was the best dependency solver in that comparison. 
Zypper mentioned above, is a ittle bit better than smart: 
 
 http://duncan.mac-vicar.com/blog/archives/309 
 
I made some personal test, to compare the solver capabilities myself. I add KDE 
4.2 repository to SUSE and Ubuntu, and made an upgrade from 4.1.3 to 4.2. After 
that i disabled KDE 4.2 repositories and delete one of the KDE 4.2 packages. 
This lead to inconsistent state, because KDE 4.2 repository was unavailable to 
repaire the dependency. The solution is obvious. Donwgrade somepackages back to 
KDE 4.1.3, to make dependencies OK because all 4.1.3 packages are available. 
 
For APT (ubuntu), it was totaly imposible to find that existing solution. It 
gave it up because of broken dependencies. No parameters like -f worked. 
After that, I tried SMART, which solved the problem immediatelly. As I posted 
above, Smart has far better dependency solver. 
 
After that, I made the same situation using Zypper/Opensuse. It immediately 
found that existing solution as the fastest and with minimum changes, but 
offered me some other possibilities. 
 
So. APT is totally incapable to solve dependency problems and from mathematical 
point of view find only only obvious predictable solution. If it does not 
available, or package dependencies are written badly, it ends without solution. 
 
Smart is far more better and Zypper is the best. In addition, both SMART and 
Zypper has ability to manage repositories and keys, which APT is unable. (you 
have to dit souces.list manualy) 
 
Is there any chance to implement better solvers to APT/Aptitude, chagne them to 
multiplatform and far better SMART or porting the best Zypper tool from 
Opensuse? 
 
 Just an Idea




Re: Data packages.

2009-02-09 Thread Cyril Brulebois
Lionel Elie Mamane lio...@mamane.lu (09/02/2009):
 Also, I'd suggest (if we get it), we also use it for things like
 videos of talks about Debian, that kind of things.

FWIW, there's that already:
http://meetings-archive.debian.net/pub/debian-meetings/

Mraw,
KiBi.


signature.asc
Description: Digital signature


Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Ron Johnson

On 02/09/2009 05:59 AM, kc.ubuntu...@centrum.cz wrote:
I would like to ask you a little bit controversal question. As a user I 
miss a package manager based on powerfull dependency solver. Using APT 
in DEB-based distributions, I can easilly create some kind of problem, 
APT is unable to solve. This is because the APT is the worst dependency 
solver almost ever invented. Proof can be found here:


If that's not incendiary...


http://www.mancoosi.org/edos/manager.html

As a SUSE user, I'm used to work with Zypper/Libzypp package managementm 
using SAT solver. Since Opensuse 11.0, Libzypp is the best, fastest and 
te most powerfool tool to solve dependenies ever used in Linux 
distribution.


[snip obvious flamage]


Smart is far more better and Zypper is the best. In addition, both SMART 
and Zypper has ability to manage repositories and keys, which APT is 
unable. (you have to dit souces.list manualy)


Then use SUSE, and be happy that you aren't using that P.O.S. Debian

Is there any chance to implement better solvers to APT/Aptitude, chagne 
them to multiplatform and far better SMART or porting the best Zypper 
tool from Opensuse?


Just an Idea


Hogwash.  Your purpose is to start a flame war.

--
Ron Johnson, Jr.
Jefferson LA  USA

Supporting World Peace Through Nuclear Pacification


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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Eugene V. Lyubimkin
Hello, please wrap your mails properly in future.

APT development list CC'ed.

kc.ubuntu...@centrum.cz wrote:
 I would like to ask you a little bit controversal question. As a user I miss 
 a package manager based on powerfull dependency solver. Using APT in 
 DEB-based distributions, I can easilly create some kind of problem, APT is 
 unable to solve. This is because the APT is the worst dependency solver 
 almost ever invented. Proof can be found here: 
  
  http://www.mancoosi.org/edos/manager.html 
Most tests from this page are just not practical. And they are didn't tested
the aptitude's resolver, which is default for Debian now and has been proved
to be more intelligent and coverable in the the most cases.

 As a SUSE user, I'm used to work with Zypper/Libzypp package managementm 
 using SAT solver. Since Opensuse 11.0, Libzypp is the best, fastest and te 
 most powerfool tool to solve dependenies ever used in Linux distribution. 
Please, no much advertises here. SUSE goes its own way, and Debian has large
own specific needs and particularities.

  If you look at the comparison i posted above, you can se that APT is worse 
 than Urpmi and SMART - which was the best dependency solver in that 
 comparison. Zypper mentioned above, is a ittle bit better than smart: 
  
If you look at users' feelings, situation will rotate significantly, due to my
experience.

  
 I made some personal test, to compare the solver capabilities myself. I add 
 KDE 4.2 repository to SUSE and Ubuntu, and made an upgrade from 4.1.3 to 4.2. 
 After that i disabled KDE 4.2 repositories and delete one of the KDE 4.2 
 packages. This lead to inconsistent state, because KDE 4.2 repository was 
 unavailable to repaire the dependency. The solution is obvious. Donwgrade 
 somepackages back to KDE 4.1.3, to make dependencies OK because all 4.1.3 
 packages are available. 
  
You might forgot that in the Debian way downgrade is unsupported at all, so
APT treats the downgrade as one of worst possible solutions.

 For APT (ubuntu), it was totaly imposible to find that existing solution. It 
 gave it up because of broken dependencies. No parameters like -f worked. 
 After that, I tried SMART, which solved the problem immediatelly. As I posted 
 above, Smart has far better dependency solver. 
  
 After that, I made the same situation using Zypper/Opensuse. It immediately 
 found that existing solution as the fastest and with minimum changes, but 
 offered me some other possibilities. 
  
 So. APT is totally incapable to solve dependency problems and from 
 mathematical point of view find only only obvious predictable solution. If it 
 does not available, or package dependencies are written badly, it ends 
 without solution. 
Mathematical point of view is something that does not value high in package
management (at least, for me and some people). The package manager should have
to deal with real problems on real distro in the first place, and APT is
playing this role quite well (though can do it better, of course).

  
 Smart is far more better and Zypper is the best. In addition, both SMART and 
 Zypper has ability to manage repositories and keys, which APT is unable. (you 
 have to dit souces.list manualy) 
  
 Is there any chance to implement better solvers to APT/Aptitude, chagne them 
 to multiplatform and far better SMART or porting the best Zypper tool from 
 Opensuse? 
APT team has a number of tasks to work. As usually, patches are usually welcome.

I obviously think that incapable and obsolete (from subject of the letter)
aren't the words which can characterize APT.

With 'APT contributor' hat on,
-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Maintainer



signature.asc
Description: OpenPGP digital signature


Re: Should 32-bit apps work with a 64-bit kernel?

2009-02-09 Thread Ron Johnson

On 02/09/2009 12:28 AM, Martin Langhoff wrote:

On Mon, Feb 9, 2009 at 2:19 PM, Ben Hutchings b...@decadent.org.uk wrote:

If jed can deal with files that large, sure.  But if it expects to be
able to load the entire file into memory - as most text editors do -
stat() will be only the first of its problems.


Old vi was able to work with files larger than available RAM. I wonder
if any modern text editor today can still handle that.


I've got a 23GB text file that vim 7.2.079-1 just won't see.

more(1) processes it, file(1) processes it, but vim displays an 
empty screen with [New File] at the bottom.


--
Ron Johnson, Jr.
Jefferson LA  USA

Supporting World Peace Through Nuclear Pacification


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



Bug#514615: ITP: p910nd -- Small printer daemon intended for diskless workstations

2009-02-09 Thread Mario Izquierdo (mariodebian)
Package: wnpp
Severity: wishlist
Owner: Mario Izquierdo (mariodebian) mariodeb...@gmail.com


  Package name: p910nd
  Version : 0.93
  Upstream Author : Ken Yap greenpos...@users.sourceforge.net
  URL : http://p910nd.sourceforge.net/
  License : GPL
  Programming Lang: C, Perl
  Description : Small printer daemon intended for diskless workstations

From upstream webpage:

p910nd is a small printer daemon intended for diskless workstations 
that does not spool to disk but passes the job directly to the printer.

p910nd is particularly useful for diskless Linux workstations such as 
those set up with LTSP and embedded devices that have a printer hanging off 
them.

I have packaged (using GIT):
  http://tcosproject.org/cgit/cgit.cgi/p910nd.git/
  git clone http://tcosproject.org/git/p910nd.git

Debian package (unstable):
  dget http://www.tcosproject.org/pool/main/p/p910nd/p910nd_0.93-1.dsc

Package is lintian clean.

I need a sponsor to upload it.


I'm packaging some software used by my thin client framework (TCOS [1]), 
I will upload TCOS packages when all depends are done.


Previously packaged:
  * python-netifaces

[1] http://www.tcosproject.org


Thanks.

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)



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



Re: Should 32-bit apps work with a 64-bit kernel?

2009-02-09 Thread Ron Johnson

On 02/09/2009 08:04 AM, Ron Johnson wrote:

On 02/09/2009 12:28 AM, Martin Langhoff wrote:
On Mon, Feb 9, 2009 at 2:19 PM, Ben Hutchings b...@decadent.org.uk 
wrote:

If jed can deal with files that large, sure.  But if it expects to be
able to load the entire file into memory - as most text editors do -
stat() will be only the first of its problems.


Old vi was able to work with files larger than available RAM. I wonder
if any modern text editor today can still handle that.


I've got a 23GB text file that vim 7.2.079-1 just won't see.

more(1) processes it, file(1) processes it, but vim displays an empty 
screen with [New File] at the bottom.


Bug #514617.

stat64(ACCOUNT_TOLL_V20_200408.UNL, {st_mode=S_IFREG|0640, 
st_size=23726916643, ...}) = 0
stat64(ACCOUNT_TOLL_V20_200408.UNL, {st_mode=S_IFREG|0640, 
st_size=23726916643, ...}) = 0

access(ACCOUNT_TOLL_V20_200408.UNL, W_OK) = 0
open(ACCOUNT_TOLL_V20_200408.UNL, O_RDONLY) = -1 EOVERFLOW (Value 
too large for defined data type)
readlink(ACCOUNT_TOLL_V20_200408.UNL, 0xfff19c4c, 4095) = -1 
EINVAL (Invalid argument)


--
Ron Johnson, Jr.
Jefferson LA  USA

Supporting World Peace Through Nuclear Pacification


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



Re: Data packages.

2009-02-09 Thread Joerg Jaspert

 Also, I'd suggest (if we get it), we also use it for things like
 videos of talks about Debian, that kind of things.

No.

-- 
bye, Joerg
lenny schneidet nie chilis und wascht euch dann _nicht_ die hände und reibt 
euch dann an der nase.
lenny uargs, wie das brennt
lenny hammer. das ist ja schlimmer als die dinger zu essen...


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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread kc.ubuntu.cz
 

 

 


 
 __
  Od: jackyf.de...@gmail.com
  Komu: kc.ubuntu...@centrum.cz
  CC: debian-devel@lists.debian.org,  APT Development Team 
  Datum: 09.02.2009 14:20
  Předmět: Re: incapable and obsolete APT / Aptitude replacement
 
 # As a SUSE user, I'm used to work with Zypper/Libzypp package managementm 
using SAT solver. Since Opensuse 11.0, Libzypp is the best, fastest and te most 
powerfool tool to solve dependenies ever used in #Linux distribution. 
 #Please, no much advertises here. SUSE goes its own way, and Debian has large
 #own specific needs and particularities.

It was not meant as an advertisement. I would be pleasedto have some of theese 
tools in Debian.


 #  If you look at the comparison i posted above, you can se that APT is worse 
than Urpmi and SMART - which was the best dependency solver in that comparison. 
Zypper mentioned above, is a ittle bit better than #smart: 
 #  
 #If you look at users' feelings, situation will rotate significantly, due to my
 #experience.

That's completely nonsense. Possitive rating targets the APT-DEB-debian 
repository complete system. It does not mean, APT it-self is good. It can be 
worst all-over the world, but usage among single repository with dependencies 
tested for years before release can't challenge hard solver work.

#  
 # I made some personal test, to compare the solver capabilities myself. I add 
KDE 4.2 repository to SUSE and Ubuntu, and made an upgrade from 4.1.3 to 4.2. 
After that i disabled KDE 4.2 repositories and delete #one of the KDE 4.2 
packages. This lead to inconsistent state, because KDE 4.2 repository was 
unavailable to repaire the dependency. The solution is obvious. Donwgrade 
somepackages back to KDE 4.1.3, to make dependencies OK because all 4.1.3 
packages are available. 
#  
 #You might forgot that in the Debian way downgrade is unsupported at all, so
 #APT treats the downgrade as one of worst possible solutions.

Oh. I really did not know that. I have to keep it in mind for the future 
instalations.


 # For APT (ubuntu), it was totaly imposible to find that existing solution. 
It gave it up because of broken dependencies. No parameters like -f worked. 
After that, I tried SMART, which solved the problem #immediatelly. As I posted 
above, Smart has far better dependency solver. 
 #  
 # After that, I made the same situation using Zypper/Opensuse. It immediately 
found that existing solution as the fastest and with minimum changes, but 
offered me some other possibilities. 
 #  
 # So. APT is totally incapable to solve dependency problems and from 
mathematical point of view find only only obvious predictable solution. If it 
does not available, or package dependencies are written badly, it #ends without 
solution. 
 #Mathematical point of view is something that does not value high in package
 #management (at least, for me and some people). The package manager should have
 #to deal with real problems on real distro in the first place, and APT is
 #playing this role quite well (though can do it better, of course).


As you pointed above, and as I understand it, APT is de-facto simple 
package-updater. Mixing many repositories or downgrading is treated as a stupid 
way. Am I right?

#  
 # Smart is far more better and Zypper is the best. In addition, both SMART 
and Zypper has ability to manage repositories and keys, which APT is unable. 
(you have to dit souces.list manualy) 
 #  
 ## Is there any chance to implement better solvers to APT/Aptitude, chagne 
them to multiplatform and far better SMART or porting the best Zypper tool from 
Opensuse?

#APT team has a number of tasks to work. As usually, patches are usually 
welcome.
 #
 #I obviously think that incapable and obsolete (from subject of the letter)
 #aren't the words which can characterize APT.
 
OK. Maybe i just supposed APT to do various things I'm used to expect from 
other package managements. Now i undrstand, reading the point of view of APT 
?cotributor?, this piece of software is not for me.

Thank you a lot for your response.




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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Eugene V. Lyubimkin
kc.ubuntu...@centrum.cz wrote:
  #  If you look at the comparison i posted above, you can se that APT is 
 worse than Urpmi and SMART - which was the best dependency solver in that 
 comparison. Zypper mentioned above, is a ittle bit better than #smart: 
  #  
  #If you look at users' feelings, situation will rotate significantly, due to 
 my
  #experience.
 
 That's completely nonsense. Possitive rating targets the APT-DEB-debian 
 repository complete system. It does not mean, APT it-self is good. It can be 
 worst all-over the world, but usage among single repository with dependencies 
 tested for years before release can't challenge hard solver work.
That's almost completely not true. Debian release managers and maintainers of
key system packages may tell you how much efforts they put to allow smooth and
painless upgrades of the system.

 As you pointed above, and as I understand it, APT is de-facto simple 
 package-updater. Mixing many repositories or downgrading is treated as a 
 stupid way. Am I right?
Mixing many repos? Not, of course. I see sources.list's with dozen of repos.
Downgrading packages may break your system (by design, in any software). So,
all downgrades should be done with caution and in not-automatic way.

 OK. Maybe i just supposed APT to do various things I'm used to expect from 
 other package managements. Now i undrstand, reading the point of view of APT 
 ?cotributor?, this piece of software is not for me.
Maybe.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Maintainer



signature.asc
Description: OpenPGP digital signature


Re: Forthcoming changes in kernel-package

2009-02-09 Thread Manoj Srivastava
On Mon, Feb 09 2009, Michael Tautschnig wrote:

 [...]
c. his means there will be no need for /etc/kernel-img.conf file any
   more.

 [...]

 Isn't this file also read in the postinst of the official kernels?
 In FAI we had several issues when kernel-img.conf was missing or
 hadn't had the proper values in there.

I think that is a carry over from the days when the official
 kernels were based on kernel-package. I am given to understand that is
 not how things are supposed to work post lenny.

In any case, I guess what I meant to say was that images created
 by kernel-package will stop paying attention to /etc/kernel-img.conf,
 and thus there will be no reason to keep that file for the sake of
 kernel-package images. kernel-package shall also stop creating the file
 if it does not exist.

Another thing going away is the on-th-fly patching of the
 sources; the preferred way to patch the sources will be to do so
 outside of make-kpkg, before invoking the make-kpkg script to package
 the kernel images.

All that convoluted code excised from kernel-package ought to
 improve robustness.

manoj
-- 
Love may laugh at locksmiths, but he has a profound respect for money
bags. Sidney Paternoster, The Folly of the Wise
Manoj Srivastava sriva...@acm.org http://www.golden-gryphon.com/  
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



[Fwd: [Pkg-fglrx-devel] Bug#514061: atieventsd and SELinux support]

2009-02-09 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags #514061 + help
thanks

Hello list,

I am also an SELinux newbie and hope here is someone who knows how to
fix this. :-)

Please keep the BTS in CC, thanks.


-  Original-Nachricht 
Betreff: [Pkg-fglrx-devel] Bug#514061: Workaround
Weitersenden-Datum: Mon, 09 Feb 2009 17:39:02 +,Mon, 09 Feb 2009
17:39:03 +
Weitersenden-Von: Don Pellegrino d...@drexel.edu
Weitersenden-An: debian-bugs-d...@lists.debian.org
Weitersenden-CC: Fglrx packaging team
pkg-fglrx-de...@lists.alioth.debian.org
Datum: Mon, 09 Feb 2009 12:37:37 -0500
Von: Don Pellegrino d...@drexel.edu
Antwort an: Don Pellegrino d...@drexel.edu, 514...@bugs.debian.org
Organisation: Drexel University
An: 514...@bugs.debian.org

In my original report I mentioned that I couldn't find the error message
with grep.  The error is recorded in /var/log/audit/audit.log and I
didn't run grep -r so I initially missed it.  The error is:

type=AVC msg=audit(1234196438.214:4): avc:  denied  { execmem } for
pid=3063 comm=atieventsd scontext=system_u:system_r:initrc_t:s0
tcontext=system_u:system_r:initrc_t:s0 tclass=process

type=SYSCALL msg=audit(1234196438.214:4): arch=4003 syscall=192
success=no exit=-13 a0=b7e06000 a1=6000 a2=7 a3=812 items=0 ppid=3061
pid=3063 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0
fsgid=0 tty=(none) ses=4294967295 comm=atieventsd
exe=/usr/sbin/atieventsd subj=system_u:system_r:initrc_t:s0 key=(null)

Experimentation with my local policy file shows that both execmem and
execstack are needed:

type=AVC msg=audit(1234199603.086:4): avc:  denied  { execstack } for
pid=3057 comm=atieventsd scontext=system_u:system_r:initrc_t:s0
tcontext=system_u:system_r:initrc_t:s0 tclass=process

type=SYSCALL msg=audit(1234199603.086:4): arch=4003 syscall=125
success=no exit=-13 a0=bf81d000 a1=1000 a2=107 a3=f000 items=0
ppid=3055 pid=3057 auid=4294967295 uid=0 gid=0 euid=0 suid=0 fsuid=0
egid=0 sgid=0 fsgid=0 tty=(none) ses=4294967295 comm=atieventsd
exe=/usr/sbin/atieventsd subj=system_u:system_r:initrc_t:s0 key=(null)

The basic work-around is to just assume atieventsd should be given the
security it needs and to add a local policy entry:

module local-ati 1.0.0;

require {
type initrc_t;
class process { execmem execstack };
}

# Workaround for atieventsd
allow initrc_t self:process { execmem execstack };

This policy can be added with the following commands:

# checkmodule -M -m -o local-ati.mod local-ati.te
# semodule_package -o local-ati.pp -m local-ati.mod
# semodule -i ./local-ati.pp

I am a novice SELinux user and I don't believe this is the best
work-around.  For one the allow statement appears to cover the entire
initrc_t type rather than the /usr/sbin/atieventsd binary specifically.
Second, I don't know enough to determine if this the proper course of
action.  Should a policy update be made or should this go to ATI for a
correction to the atieventsd binary itself so that it doesn't use
execmem or execstack?

Finally, it is curious that /etc/init.d/fglrx-driver start worked to
load atieventsd after boot without any problems.  So it seems that
loading the process at boot time gives different behavior.




___
Pkg-fglrx-devel mailing list
pkg-fglrx-de...@lists.alioth.debian.org
http://lists.alioth.debian.org/mailman/listinfo/pkg-fglrx-devel

- --
/*
Mit freundlichem Gruß / With kind regards,
Patrick Matthäi

E-Mail: patrick.matth...@web.de

Comment:
Always if we think we are right,
we were maybe wrong.
*/
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkmQa6UACgkQ2XA5inpabMchRACgm/nDQ4k1P3etCkwCVFQZa1bF
eVkAnAycOqp4QKm42mOCvdfmEn4YvA/l
=K/Jc
-END PGP SIGNATURE-


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



Bug#514639: ITP: frei0r -- a minimalistic plugin API for video effects

2009-02-09 Thread Luca Bigliardi
Package: wnpp
Severity: wishlist
Owner: Luca Bigliardi shamm...@artha.org


* Package name: frei0r
  Version : 1.1.22
  Upstream Author : Richard ora...@propirate.net
* URL : http://www.piksel.org/frei0r
* License : GPL-2)
  Programming Lang: C, C++
  Description : a minimalistic plugin API for video effects

frei0r is a minimalistic plugin API for video sources and filters. The
behavior of the effects can be controlled from the host by simple
parameters. The intent is to solve the recurring reimplementation or
adaptation issue of standard effects. It is not meant as a generic API
for all kinds of video applications.


-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)



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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread kc.ubuntu.cz

 
 __
  Od: jackyf.de...@gmail.com
  Komu: kc.ubuntu...@centrum.cz
  CC: debian-devel@lists.debian.org, de...@lists.debian.org
  Datum: 09.02.2009 18:15
  Předmět: Re: incapable and obsolete APT / Aptitude replacement
 
 kc.ubuntu...@centrum.cz wrote:
 #  #  If you look at the comparison i posted above, you can se that APT is 
worse than Urpmi and SMART - which was the best dependency solver in that 
comparison. Zypper mentioned above, is a ittle bit better #than #smart: 
 #  #  
 #  #If you look at users' feelings, situation will rotate significantly, due 
to my
 #  #experience.
 # 
 # That's completely nonsense. Possitive rating targets the APT-DEB-debian 
repository complete system. It does not mean, APT it-self is good. It can be 
worst all-over the world, but usage among single repository #with dependencies 
tested for years before release can't challenge hard solver work.
 #That's almost completely not true. Debian release managers and maintainers of
 #key system packages may tell you how much efforts they put to allow smooth and
 #painless upgrades of the system.

This is exactly what i want to say. Debian developers do great job and long 
hard work, and in the end, as a result original Debian repository exist, with 
so precisely descibed dependencies, that even the most stupid package manager 
could work well. That is not a challenge for dependecy solver. Solving preblems 
among the debian repository is easy.

This Debian aproach is great for servers, but not usefull for Desktops, where 
bleeding edge software and mixed repositories could be expected. That the real 
reason of bigy hype around Ubuntu Linux, which fill the hole for Debian 
Desktop. And in that case, I feel APT useless. And because Debian and ubuntu 
are bound together I think it is imposible to make a change only in ubuntu. 
Although they put some effort and money in SMART.


 
 # As you pointed above, and as I understand it, APT is de-facto simple 
package-updater. Mixing many repositories or downgrading is treated as a stupid 
way. Am I right?
 #Mixing many repos? Not, of course. I see sources.list's with dozen of repos.
 #Downgrading packages may break your system (by design, in any software). So,
 #all downgrades should be done with caution and in not-automatic way.

That is not the argument. How could APT know, which souliton is the best. As I 
said above, on Debian Stable, it can be expected that upgrading is the only 
way. But not on the desktop whith shiny new software.

# OK. Maybe i just supposed APT to do various things I'm used to expect from 
other package managements. Now i undrstand, reading the point of view of APT 
?cotributor?, this piece of software is not for me.
 #Maybe.

But still, there is a qeustion, If I use Debian-like system, which package 
manager with powerfull solver I can use? Package management is not the only 
argument for choosing or refusing some distribution.
 
 -- 
 Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
 C++/Perl developer, Debian Maintainer
 




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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Eugene V. Lyubimkin
kc.ubuntu...@centrum.cz wrote:
...

I don't feel comfortable to answer on your mails. Use '' for quoting, don't 
include mail
headers into answers, and wrap the text, really. Why I have to spend my time to 
parse your
mails while you don't have a time even to configure your mail client?

Or wait for a person who is conformable with this kind of mails.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Maintainer



signature.asc
Description: OpenPGP digital signature


Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread kc.ubuntu.cz
Sorry.

I'm not familiar with mailing list, and it take me a lot of time event to find 
out, how to response. Apologise myself. I did not know. I'm not used to.


have a nice day.



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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Giacomo Catenazzi
kc.ubuntu...@centrum.cz wrote:
 
 __
 Od: jackyf.de...@gmail.com Komu: kc.ubuntu...@centrum.cz CC:
 debian-devel@lists.debian.org, de...@lists.debian.org Datum:
 09.02.2009 18:15 Předmět: Re: incapable and obsolete APT / Aptitude
 replacement
 
 kc.ubuntu...@centrum.cz wrote: #  #  If you look at the comparison
 i posted above, you can se that APT is worse than Urpmi and SMART -
 which was the best dependency solver in that comparison. Zypper
 mentioned above, is a ittle bit better #than #smart: #  # #  #If
 you look at users' feelings, situation will rotate significantly, due
 to my #  #experience. # # That's completely nonsense. Possitive
 rating targets the APT-DEB-debian repository complete system. It does
 not mean, APT it-self is good. It can be worst all-over the world,
 but usage among single repository #with dependencies tested for years
 before release can't challenge hard solver work. #That's almost
 completely not true. Debian release managers and maintainers of #key
 system packages may tell you how much efforts they put to allow
 smooth and #painless upgrades of the system.
 
 This is exactly what i want to say. Debian developers do great job
 and long hard work, and in the end, as a result original Debian
 repository exist, with so precisely descibed dependencies, that even
 the most stupid package manager could work well. That is not a
 challenge for dependecy solver. Solving preblems among the debian
 repository is easy.
 
 This Debian aproach is great for servers, but not usefull for
 Desktops, where bleeding edge software and mixed repositories could
 be expected. That the real reason of bigy hype around Ubuntu Linux,
 which fill the hole for Debian Desktop. And in that case, I feel APT
 useless. And because Debian and ubuntu are bound together I think it
 is imposible to make a change only in ubuntu. Although they put some
 effort and money in SMART.
 
 
 
 # As you pointed above, and as I understand it, APT is de-facto
 simple package-updater. Mixing many repositories or downgrading is
 treated as a stupid way. Am I right? #Mixing many repos? Not, of
 course. I see sources.list's with dozen of repos. #Downgrading
 packages may break your system (by design, in any software). So, #all
 downgrades should be done with caution and in not-automatic way.
 
 That is not the argument. How could APT know, which souliton is the
 best. As I said above, on Debian Stable, it can be expected that
 upgrading is the only way. But not on the desktop whith shiny new
 software.
 
 # OK. Maybe i just supposed APT to do various things I'm used to
 expect from other package managements. Now i undrstand, reading the
 point of view of APT ?cotributor?, this piece of software is not for
 me. #Maybe.
 
 But still, there is a qeustion, If I use Debian-like system, which
 package manager with powerfull solver I can use? Package management
 is not the only argument for choosing or refusing some distribution.

[you mail are not very readable: you should learn to write good
text only email]


You look the problem in a (IMO) completely wrong way.

You insist about the solver, but ... if you want to solve dependencies
mathematically, you should do the right assumptions.
Packages are normally done chronologically with an incremental version
(with very few exceptions). When people do a package, they don't know
about future version of dependencies, and it is nearly never updated,
so there is an asymmetry on dependency declaration. BTW we care about
much more last versions.
So, I think you did the wrong assumption: dependencies are correct
both ways. Instead, apt known that a older version could have wrong
dependencies (missing upper limit), thus the downgrading is avoided.

If you want to improve dependency solver, you should firstly build a
tool that generate automatically the dependencies (thus also
between old package and newer dependencies). Only when you are sure
about correctness of dependencies you could try to improve the solver
in a mathematically correct way.

Debian is improving such part, with automatically symbol versioning,
but .. it is very difficult. Impossible to generate a totally correct
dependency:
As example: it could be impossible to distinguish
automatically which bug (in a library) is need to a program (wrong
assumption of programmer), and which bug need to be corrected, (which
correct also the program).

Without correct dependencies, don't try to test formally the solvers,
instead try real cases and check the heuristic of various solvers).


BTW Debian try to solve the your second point being the biggest
distribution: thus needing less external package.
BTW, in my experience, the external packages, in small repository have
always wrong dependencies (try-error method, instead of code analysis
[linker arguments, modules, ...]), thus a exact solver don't
solve the problem.

Heuristic is still the right way to solve package dependencies!


Re: incapable and obsolete APT / Aptitude replacement (PROBLEM SOLVED)

2009-02-09 Thread kc.ubuntu.cz
I don't know, If you know the correct answer, but I was right. I found some 
paper with additional explanation of the dependency solver problem in Debian.

This paper claims, that experimental branch of Aptitude include a prototype of 
mentioned powerfull solver (same as zypper or smart). (page 15):

http://people.debian.org/~dburrows/model.pdf

This means my thoughts were correct, because Aptittude mantainers are trying to 
implement it. (as I request) This answer I found satisfies me.

One more time, thank you for your answers.




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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Darren Salt
I demand that Eugene V. Lyubimkin may or may not have written...

 kc.ubuntu...@centrum.cz wrote:
 ...
[note: reformatted]
 I don't feel comfortable to answer on your mails. Use '' for quoting,
 don't include mail headers into answers, and wrap the text, really. Why I
 have to spend my time to parse your mails while you don't have a time even
 to configure your mail client?

Says he who uses too long a line length. This brings with it some other
problems, such
as wrapping of the too-long lines such that it is normal for a long line to
be followed
by a very short line. Which isn't exactly readable.

-- 
| Darren Salt| linux or ds at  | nr. Ashington, | Toon
| RISC OS, Linux | youmustbejoking,demon,co,uk | Northumberland | Army
| + Buy less and make it last longer. INDUSTRY CAUSES GLOBAL WARMING.

The pen is mightier than the pencil.


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



Re: Bug#514639: ITP: frei0r -- a minimalistic plugin API for video effects

2009-02-09 Thread Ron Johnson

On 02/09/2009 12:42 PM, Luca Bigliardi wrote:

Package: wnpp
Severity: wishlist
Owner: Luca Bigliardi shamm...@artha.org


* Package name: frei0r
  Version : 1.1.22
  Upstream Author : Richard ora...@propirate.net
* URL : http://www.piksel.org/frei0r
* License : GPL-2)
  Programming Lang: C, C++
  Description : a minimalistic plugin API for video effects

frei0r is a minimalistic plugin API for video sources and filters. The


What apps support this?


behavior of the effects can be controlled from the host by simple
parameters. The intent is to solve the recurring reimplementation or
adaptation issue of standard effects. It is not meant as a generic API
for all kinds of video applications.


--
Ron Johnson, Jr.
Jefferson LA  USA

Supporting World Peace Through Nuclear Pacification


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



Re: deprecated server packages in lenny?

2009-02-09 Thread Petter Reinholdtsen

[Daniel Baumann]
 although probably almost everyone already does, it's finally time to
 drop nfs-user-server (nfs-kernel-server has got support for nohide).

When are host netgroups expanded by nfs-kernel-server?  I had the
impression that only the user space server would expand the host
netgroups used to control NFS exports when a mount request arrive,
while the kernel NFS server would expand them when the exportfs call
was done.  The latter do not work well for netgroups with changes done
after the exportfs call.

I use the user space NFS server to make sure netgroups are expanded
when the mounting happen, and not during boot of the server.

Happy hacking,
-- 
Petter Reinholdtsen


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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Eugene V. Lyubimkin
Darren Salt wrote:
 I demand that Eugene V. Lyubimkin may or may not have written...
 
 kc.ubuntu...@centrum.cz wrote:
 ...
 [note: reformatted]
 I don't feel comfortable to answer on your mails. Use '' for quoting,
 don't include mail headers into answers, and wrap the text, really. Why I
 have to spend my time to parse your mails while you don't have a time even
 to configure your mail client?
 
 Says he who uses too long a line length. This brings with it some other
 problems, such
 as wrapping of the too-long lines such that it is normal for a long line to
 be followed
 by a very short line. Which isn't exactly readable.
 
Yes, I try to follow these rules too. I just checked my settings and my mail
client had setting of 90 characters instead of 78. How ironic, yes...
Beat me if you want. And I didn't mentioned that line is a bit longer than
it have to be. *sigh* At least, this discussion led to even one result.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Maintainer



signature.asc
Description: OpenPGP digital signature


Re: deprecated server packages in lenny?

2009-02-09 Thread Michael Tautschnig
 
 [Daniel Baumann]
  although probably almost everyone already does, it's finally time to
  drop nfs-user-server (nfs-kernel-server has got support for nohide).
 
 When are host netgroups expanded by nfs-kernel-server?  I had the
 impression that only the user space server would expand the host
 netgroups used to control NFS exports when a mount request arrive,
 while the kernel NFS server would expand them when the exportfs call
 was done.  The latter do not work well for netgroups with changes done
 after the exportfs call.
 
 I use the user space NFS server to make sure netgroups are expanded
 when the mounting happen, and not during boot of the server.
 

My experience says that it is expanded at the time of the mount request (I keep
my netgroup entries in LDAP and I never had to do an extra exportfs call after
changing entries).

Best,
Michael



pgpmURjEzNrAo.pgp
Description: PGP signature


Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Tilo Schwarz

On Mon, 09 Feb 2009 12:59:49 +0100, kc.ubuntu...@centrum.cz wrote:

I would like to ask you a little bit controversal question. As a user I  
miss a package manager based on powerfulldependency solver.


As a user I never had any problem using aptitude. It lets you cycle  
quickly through its different dependency resolution options, and then you  
simply pick the one you like.


Best regards,

Tilo


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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Gustavo Noronha
On Mon, 2009-02-09 at 15:31 +0200, Eugene V. Lyubimkin wrote:
 kc.ubuntu...@centrum.cz wrote:
  I would like to ask you a little bit controversal question. As a user I 
  miss a package manager based on powerfull dependency solver. Using APT in 
  DEB-based distributions, I can easilly create some kind of problem, APT is 
  unable to solve. This is because the APT is the worst dependency solver 
  almost ever invented. Proof can be found here: 
   
   http://www.mancoosi.org/edos/manager.html 
 Most tests from this page are just not practical. And they are didn't tested
 the aptitude's resolver, which is default for Debian now and has been proved
 to be more intelligent and coverable in the the most cases.

Also, the test seems to use apt-rpm, which forked from Debian's for some
time, if I'm not mistaken.

See you,

-- 
Gustavo Noronha k...@debian.org
Debian Project


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



Bug#514679: ITP: liblwp-online-perl -- module to check if there is Internet access

2009-02-09 Thread Antonio Radici
Package: wnpp
Severity: wishlist
Owner: Antonio Radici anto...@dyne.org


* Package name: liblwp-online-perl
  Version : 1.07
  Upstream Author : Adam Kennedy ad...@cpan.org
* URL : http://search.cpan.org/dist/LWP-Online/
* License : Artistic | GPL-1+
  Programming Lang: Perl
  Description : module to check if there is Internet access

 LWP::Online will try to verify, as accurately as it can, if the
 host has any Internet access: it will check if there is basic
 network access, DNS connectivity and it will also check whether
 one from a whole set of transport (HTTP, HTTPS, FTP, and so on) is 
 actually available
 . 
 The exported 'online' function can also be used by other modules to 
 skip the tests which require Internet connectivity.

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: i386 (i686)



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



Bug#514690: (no subject)

2009-02-09 Thread Sundaram Ramaswamy








Subject: ITP: artha -- A handy off-line thesaurus based on WordNet
Package: wnpp
Owner: Sundaram Ramaswamy legend...@yahoo.com
Severity: wishlist


* Package name: artha
  Version : 0.8.0
  Upstream Author : Sundaram Ramaswamy legend...@yahoo.com
* URL : http://artha.sourceforge.net/
* License : GPLv2
  Programming Lang: C
  Description : A handy off-line thesaurus based on WordNet

Artha is a handy English thesaurus having distinct features like
look up on a global hot key press, passive notifications of a 
selected text's definitions, suggestions for misspelled words, etc.
Once launched, it sits on the system tray monitoring for a pre-set 
hot key combination. When some text is selected on any window and 
the hotkey is pressed, it pops-up with the word looked-up. Should 
the user prefer passive notifications over the app. popping-up, 
this can be done by enabling the notifications option.

Artha is written from scratch in pure C using GTK+, with WordNet 
as it database corpus. It may be used as an advanced replacement 
for the proprietary WordWeb in GNU/Linux environments.

-- System Information:
Debian Release: 4.0
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-amd64
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)



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



Re: incapable and obsolete APT / Aptitude replacement

2009-02-09 Thread Daniel Burrows
On Mon, Feb 09, 2009 at 12:59:49PM +0100, kc.ubuntu...@centrum.cz was heard to 
say:
 I would like to ask you a little bit controversal question. As a user I miss 
 a package manager based on powerfull dependency solver. Using APT in 
 DEB-based distributions, I can easilly create some kind of problem, APT is 
 unable to solve. This is because the APT is the worst dependency solver 
 almost ever invented. Proof can be found here: 

  The biggest problem with apt's dependency solver is that it can't
conceive of anything other than the current and candidate versions.
That alone renders it useless for anything but trivial circumstances.
Unfortunately, because it's all heuristic, you need to throw the
resolver out and rewrite from scratch to lift that restriction.

  http://www.mancoosi.org/edos/manager.html 

  The claim that aptitude can't handle this is utter bunk.  Out of
curiosity, I typed the first one on that page down in the minimalist
syntax I use to test the aptitude resolver.  (attached)  It passed:

dan...@emurlahn:~/programming/aptitude/post-lenny/src/generic/problemresolver$ 
./test testcarglass.txt 
  (snip lots of cruft)
 --- Found solution door:=v2, engine:=v2, tyre:=v2, wheel:=v3, 
window:=v0;[];460
Would eliminate stupid, but stupid elimination is disabled.
Inserting conflict {engine := engine v2, wheel := wheel v3, tyre := tyre v2, 
door := door v2, window := window v0}
 *** Converged after 7 steps.
 --- Found solution door:=v2, engine:=v2, glass:=v1, tyre:=v2, wheel:=v3, 
window:=v1;[];470
Would eliminate stupid, but stupid elimination is disabled.
Inserting conflict {engine := engine v2, wheel := wheel v3, tyre := tyre v2, 
door := door v2, window := window v1, glass := glass v1}
 *** Converged after 2 steps.
 --- Found solution door:=v2, engine:=v2, glass:=v2, tyre:=v1, wheel:=v3, 
window:=v2;[];470
Would eliminate stupid, but stupid elimination is disabled.
Inserting conflict {engine := engine v2, wheel := wheel v3, tyre := tyre v1, 
door := door v2, window := window v2, glass := glass v2}
 *** Converged after 3 steps.


  It didn't find the most optimal answer first because, as far as I
can tell, it considered the precursor to the optimal answer to be
equivalent to a less optimal answer, and preferred immediately
returning a result vs continuing to search in the hope of finding a
better one.  Which reminds me, I have a feature request to keep
running for a few (maybe 50) steps past the first answer in search
of a better one...

  Anyway, I don't consider that a big deal.  One of the design decisions
I made early on was not to fetishize arbitrary optimality definitions,
because you can end up chasing phantoms that way.  Optimal solutions
are not necessarily best.  They are good for academic projects, though,
because you can easily grade yourself on whether you're doing a good
job and write papers about what a good job you did. ;-)  (please note
that I say that only half-mockingly; I'd love to be paid to work on
this stuff, and playing the academia game seems to be one route these
days; this stuff wasn't taken seriously when I was in school because it
was just for hobbyists :-( )

  Single-criterion tests like this are also a problem because for big
and complicated problems like this, you really need an overall picture
of what sort of results you're getting on a wide variety of inputs.  At
my paid job, one of my projects was working on code to match input text
blocks against a database of postal addresses.  You might think that
would be easy, but when you get to 30 million addresses it gets a bit
tricky...
  Anyway, one thing you learn quickly is that you can make a change to
fix one address that's sitting in front of you, and 50 other addresses
suddenly go from producing a correct answer to producing a wrong answer.
It's like trying to flatten a bumpy rug -- push it down in one place
and three more pop up.  You won't make any progress unless you have a
broad picture of whether you're actually doing better or not.  Package
management is a lot like that, and I prefer to go by the fact that I
only have a handful of bug reports telling me that aptitude totally
failed on some inputs or others.


  BTW, did you read this note at the bottom of the page?

  The content of this chapter should in no way be construed as a
  criticism of the tools we analysed: they do try to solve a much
  harder problem than ours, and they really try their best at it,
  handling all the added complexity of the extra bits of metadata
  associated to package management: we know of no satisfactory
  solution for this problem up to now, and our tools are not a
  replacement for Apt, Protage, Urpmi, Smart and the like.




 I made some personal test, to compare the solver capabilities myself. I add 
 KDE 4.2 repository to SUSE and Ubuntu, and made an upgrade from 4.1.3 to 4.2. 
 After that i disabled KDE 4.2 repositories and delete one of the KDE 4.2 
 packages. This lead to inconsistent 

Re: Bug#514690: ITP: artha -- A handy off-line thesaurus based on WordNet

2009-02-09 Thread Andreas Tille

On Tue, 10 Feb 2009, Sundaram Ramaswamy wrote:


Artha is written from scratch in pure C using GTK+, with WordNet
as it database corpus. It may be used as an advanced replacement
for the proprietary WordWeb in GNU/Linux environments.


Please keep me informed if there is any need for help to package
artha - as the WordNet maintainer I'm somehow interested.

Kind regards
  Andreas.

--
http://fam-tille.de


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



Re: incapable and obsolete APT / Aptitude replacement (PROBLEM SOLVED)

2009-02-09 Thread Martin Wuertele
* kc.ubuntu...@centrum.cz kc.ubuntu...@centrum.cz [2009-02-09 21:12]:

 This means my thoughts were correct, because Aptittude mantainers are
 trying to implement it. (as I request) This answer I found satisfies
 me.

They don't implement it on your request.

yours
Martin 


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



Accepted routes 1.10.3-1 (source all)

2009-02-09 Thread Piotr Ożarowski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 09:12:44 +0100
Source: routes
Binary: python-routes
Architecture: source all
Version: 1.10.3-1
Distribution: unstable
Urgency: low
Maintainer: Piotr Ożarowski pi...@debian.org
Changed-By: Piotr Ożarowski pi...@debian.org
Description: 
 python-routes - Routing Recognition and Generation Tools
Changes: 
 routes (1.10.3-1) unstable; urgency=low
 .
   * New upstream release (upload to unstable)
Checksums-Sha1: 
 df48a04c70e5d7ed08124c56b1cd9c52f9cf6309 1346 routes_1.10.3-1.dsc
 3f7a8653b14a5d0ea39112c42c1e4d7247aa4bbb 52548 routes_1.10.3.orig.tar.gz
 8b48599f59a1e1f4114cad3eb5a93f54c20e3eb5 3156 routes_1.10.3-1.diff.gz
 db1ab065c41d5dee4c5d72b3ebb8a81c58bddb10 24446 python-routes_1.10.3-1_all.deb
Checksums-Sha256: 
 9372a1d8cb8375a7c998b9159bc758b923b8f3346f690bce2d7415ea46b92287 1346 
routes_1.10.3-1.dsc
 112bf5fbe7a16fc364fcc428ee428d803aaf41b4ff9f0e2015cfec26b4414c17 52548 
routes_1.10.3.orig.tar.gz
 3dd0a361ea47a8cb25e169e764ae3e91946c17d44df27e48ec0694d51e469d96 3156 
routes_1.10.3-1.diff.gz
 577693d933bfb32493e154fc34f73ade21f7b1f123c2484631e665efef2e6377 24446 
python-routes_1.10.3-1_all.deb
Files: 
 27b8fb68ee50a4a5ce8491bef897e6d0 1346 python optional routes_1.10.3-1.dsc
 03e2d9f2f6a1b7f9e4cfc3a3866e513f 52548 python optional 
routes_1.10.3.orig.tar.gz
 4d8530056a96571c9bfc167ef03e8a3f 3156 python optional routes_1.10.3-1.diff.gz
 7858da2b60edf2cab86cc26737fff98d 24446 python optional 
python-routes_1.10.3-1_all.deb

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

iEYEARECAAYFAkmP7h8ACgkQB01zfu119ZmpTwCgvy79SbDgBZfewQAZBre6Cm8h
pWsAoMX+JHIIIPabq7BVoOtYgi++w6hS
=Hn+a
-END PGP SIGNATURE-


Accepted:
python-routes_1.10.3-1_all.deb
  to pool/main/r/routes/python-routes_1.10.3-1_all.deb
routes_1.10.3-1.diff.gz
  to pool/main/r/routes/routes_1.10.3-1.diff.gz
routes_1.10.3-1.dsc
  to pool/main/r/routes/routes_1.10.3-1.dsc
routes_1.10.3.orig.tar.gz
  to pool/main/r/routes/routes_1.10.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 t-code 2:2.3.1-3 (source all)

2009-02-09 Thread NOSHIRO Shigeo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 03 Feb 2009 10:09:25 +0900
Source: t-code
Binary: t-code
Architecture: source all
Version: 2:2.3.1-3
Distribution: unstable
Urgency: low
Maintainer: NOSHIRO Shigeo nosh...@debian.org
Changed-By: NOSHIRO Shigeo nosh...@debian.org
Description: 
 t-code - Japanese direct input method environment for emacsen
Changes: 
 t-code (2:2.3.1-3) unstable; urgency=low
 .
   * FIX tc-sysdep.el.
 - Fix incompatibilities emacs22.
   * FIX lisp/Makefile.am
 - Set directory /usr/share/t-code
   * debian/control:
 - Move `Homepage:' from Description to the header.
 - Set Standards-Version to 3.7.3.
Checksums-Sha1: 
 1c26a31e43f7a9751fee3cb3fd0bfbeabd046e12 1090 t-code_2.3.1-3.dsc
 2ec58a0a2dfdbce23a75efd23dd47519956208b0 114067 t-code_2.3.1-3.diff.gz
 ef0a1a92551833aa40bcacd35011de13365fbabd 1260828 t-code_2.3.1-3_all.deb
Checksums-Sha256: 
 a84c7f7142e613460347a4bf9939882d95ba689825c1e2dc2c3feb32700f436a 1090 
t-code_2.3.1-3.dsc
 cb0eeede1827705d5ee578cbfeb89c75d5292ed61a1bffe9b9e63dc82db9a8ce 114067 
t-code_2.3.1-3.diff.gz
 ef40257804db7f686854534b8c412cd1f07b6748d65303f577f6e5417995b86d 1260828 
t-code_2.3.1-3_all.deb
Files: 
 1eab6bfb14ff3f5e64891dda86744962 1090 utils optional t-code_2.3.1-3.dsc
 c0b2b0f4c589dfa18d7e80145ca17908 114067 utils optional t-code_2.3.1-3.diff.gz
 8af1fbe3c4c92440c23cf43f1fbc42eb 1260828 utils optional t-code_2.3.1-3_all.deb

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

iEYEARECAAYFAkmP7/IACgkQhgeQPb3wqtBGvACeOCDqbNVpIOsAT6zGmJh8vV5v
/YkAoJ0Kg2Q569FGrmbi9zOr1qOt+TfD
=oMZJ
-END PGP SIGNATURE-


Accepted:
t-code_2.3.1-3.diff.gz
  to pool/main/t/t-code/t-code_2.3.1-3.diff.gz
t-code_2.3.1-3.dsc
  to pool/main/t/t-code/t-code_2.3.1-3.dsc
t-code_2.3.1-3_all.deb
  to pool/main/t/t-code/t-code_2.3.1-3_all.deb


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



Accepted qnapi 0.1.5-4 (source all amd64)

2009-02-09 Thread Patryk Cisek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 30 Jun 2008 10:35:02 +0200
Source: qnapi
Binary: qnapi qnapi-gnome
Architecture: source all amd64
Version: 0.1.5-4
Distribution: unstable
Urgency: low
Maintainer: Patryk Cisek pat...@prezu.one.pl
Changed-By: Patryk Cisek pat...@prezu.one.pl
Description: 
 qnapi  - application that downloads Polish subtitles from www.napiprojekt.
 qnapi-gnome - application that downloads Polish subtitles from www.napiprojekt.
Changes: 
 qnapi (0.1.5-4) unstable; urgency=low
 .
   * QNapi depends on Qt = 4.3 now
Checksums-Sha1: 
 7ac0ed46f6813aea8d37344424337ce6b7eb263c 1005 qnapi_0.1.5-4.dsc
 32ede3158793568af145a8d5b40757de7afb2139 2530 qnapi_0.1.5-4.diff.gz
 5a7be8f28343ea9e9a587ff32c9126c903f478ca 3056 qnapi-gnome_0.1.5-4_all.deb
 af05974de8eae5ae1f965d2c36026a0a36a8b1ca 222478 qnapi_0.1.5-4_amd64.deb
Checksums-Sha256: 
 f5cc2200b24564d1c2908683cc344b3aa33a812397b48681fb8daf7f65166725 1005 
qnapi_0.1.5-4.dsc
 7821d82813067b0389ad2647179b68a5baf3fbafa350f304a044fa558ea23a15 2530 
qnapi_0.1.5-4.diff.gz
 618e9b1256341c519814c1a1d5d08d578eb0e9f5f6e857668d8fecc1ef7bee41 3056 
qnapi-gnome_0.1.5-4_all.deb
 c81f1644fc78d42271ec0aff7e970582c445063fced1b0b50462701946cc2a60 222478 
qnapi_0.1.5-4_amd64.deb
Files: 
 fcc9a6550f0914da2981d5404adb66f1 1005 net optional qnapi_0.1.5-4.dsc
 94ba0b48a76942a55487db8005b88fe0 2530 net optional qnapi_0.1.5-4.diff.gz
 b1b83615420d915f69a792636e0c500d 3056 net optional qnapi-gnome_0.1.5-4_all.deb
 ea57968706a2bcb8ea17406093b62e87 222478 net optional qnapi_0.1.5-4_amd64.deb

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

iEYEARECAAYFAkmP9fcACgkQQUuEI2/szeA1hwCeIPx9ZLIlrljXsYP57vM4LBjt
m70An1dX1RIz4m7Cdv6+ixyuahmv+9fi
=Txqq
-END PGP SIGNATURE-


Accepted:
qnapi-gnome_0.1.5-4_all.deb
  to pool/main/q/qnapi/qnapi-gnome_0.1.5-4_all.deb
qnapi_0.1.5-4.diff.gz
  to pool/main/q/qnapi/qnapi_0.1.5-4.diff.gz
qnapi_0.1.5-4.dsc
  to pool/main/q/qnapi/qnapi_0.1.5-4.dsc
qnapi_0.1.5-4_amd64.deb
  to pool/main/q/qnapi/qnapi_0.1.5-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 ktechlab 0.3.6-4 (source amd64)

2009-02-09 Thread Georges Khaznadar
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 00:28:49 +0100
Source: ktechlab
Binary: ktechlab
Architecture: source amd64
Version: 0.3.6-4
Distribution: unstable
Urgency: low
Maintainer: Georges Khaznadar georg...@ofset.org
Changed-By: Georges Khaznadar georg...@ofset.org
Description: 
 ktechlab   - circuit simulator for microcontrollers and electronics
Closes: 514552
Changes: 
 ktechlab (0.3.6-4) unstable; urgency=low
 .
   * modified debian/rules so it does not invoke make if there is no
 Makefile
 Closes: #514552
Checksums-Sha1: 
 0f933cb239cb61f140f074c407261f301a236440 1149 ktechlab_0.3.6-4.dsc
 b3434c280acf868e81153139501b165857a7f1af 857433 ktechlab_0.3.6-4.diff.gz
 51a97ec8584bc334673cc26f10293aead04fbf1d 1919498 ktechlab_0.3.6-4_amd64.deb
Checksums-Sha256: 
 aa6cff9c3e9ea693b8affc43754f69676b138f1f457f94e31a41b8c300b6a713 1149 
ktechlab_0.3.6-4.dsc
 f183f8a73c8177c25de3154f46fddcba41e1dfdab2c1ce5df98c90507d4c4db6 857433 
ktechlab_0.3.6-4.diff.gz
 b6dda3ffdd3f55ae63fbb5067aa38d027f36d199913121ba9d3941fea417c516 1919498 
ktechlab_0.3.6-4_amd64.deb
Files: 
 9c5d9cbaff3b375605c936c35b3cb93e 1149 kde optional ktechlab_0.3.6-4.dsc
 77e9ac18bec57be5ee726b190a54cfe6 857433 kde optional ktechlab_0.3.6-4.diff.gz
 f48ffa8a5f08b8327bc0419f18b86071 1919498 kde optional 
ktechlab_0.3.6-4_amd64.deb

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

iEYEARECAAYFAkmP89cACgkQmqVR2WapDeL9hQCgo/Sw2rM3YxzB84EcntG3uaWH
z7oAoOdJ3IjZzxOn/UFvTobaHufMSMUb
=3gR6
-END PGP SIGNATURE-


Accepted:
ktechlab_0.3.6-4.diff.gz
  to pool/main/k/ktechlab/ktechlab_0.3.6-4.diff.gz
ktechlab_0.3.6-4.dsc
  to pool/main/k/ktechlab/ktechlab_0.3.6-4.dsc
ktechlab_0.3.6-4_amd64.deb
  to pool/main/k/ktechlab/ktechlab_0.3.6-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 tor 0.2.0.34-1 (source all i386)

2009-02-09 Thread Peter Palfrader
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 09:53:48 +0100
Source: tor
Binary: tor tor-dbg tor-geoipdb
Architecture: source all i386
Version: 0.2.0.34-1
Distribution: unstable
Urgency: high
Maintainer: Peter Palfrader wea...@debian.org
Changed-By: Peter Palfrader wea...@debian.org
Description: 
 tor- anonymizing overlay network for TCP
 tor-dbg- debugging symbols for Tor
 tor-geoipdb - geoIP database for Tor
Closes: 514579 514580
Changes: 
 tor (0.2.0.34-1) unstable; urgency=high
 .
   * New upstream version:
  - Avoid a potential crash on exit nodes when processing malformed
input.  Remote DoS opportunity (closes: #514579).
  - Fix a temporary DoS vulnerability that could be performed by
a directory mirror (closes: #514580).
Checksums-Sha1: 
 85d041f023d5cf9d721f3e3b0893ccbffd6827b5 1164 tor_0.2.0.34-1.dsc
 6797b85cf4bd44a3a1c3ff1ccb9c46b55f9391f9 2170871 tor_0.2.0.34.orig.tar.gz
 769f0da355d2ed9d531082c699b9f68ecf43f219 77902 tor_0.2.0.34-1.diff.gz
 6e41d35a715b1db3c3d526e59346c4ebcaaf78cb 714102 tor-geoipdb_0.2.0.34-1_all.deb
 9042da5204c6f6dc06df367421d68e9552b67a36 1217002 tor_0.2.0.34-1_i386.deb
 4ebfdb22e9d2d53487f494cd744c2609c44f2c69 851054 tor-dbg_0.2.0.34-1_i386.deb
Checksums-Sha256: 
 70874f49e69591ae0d3cc4ec8a2935494e167cf861b4b491cef6566ef3cdfd48 1164 
tor_0.2.0.34-1.dsc
 1bb19bcc52d365b47dd0e7bc06e3208786447a1cf759d6595c516a0f0cde3cb2 2170871 
tor_0.2.0.34.orig.tar.gz
 744d2fa9a5ced760e52d3d7d2b2270719a45c23c79a8bd2c842aca58241f879b 77902 
tor_0.2.0.34-1.diff.gz
 07223496560f7f4e01564c8f4c3839aa7a87519203795920062932f1aedc757a 714102 
tor-geoipdb_0.2.0.34-1_all.deb
 65c7c2ea2ba288e0bcf2a6879eee96cf8e7d99ea6c1601656e008aa2dd324f22 1217002 
tor_0.2.0.34-1_i386.deb
 183138a9b9c48c00984afd93be5f0edd56c86008faddec4c1657d5040f821f86 851054 
tor-dbg_0.2.0.34-1_i386.deb
Files: 
 a806d03ef1176800ed64aea32e70925f 1164 comm optional tor_0.2.0.34-1.dsc
 f20011be23d5a76988233df12c346f41 2170871 comm optional tor_0.2.0.34.orig.tar.gz
 a21b2f4930f599c843ca5e83fe75a95a 77902 comm optional tor_0.2.0.34-1.diff.gz
 53068202d6de4bddd0cfdc91c5e2395e 714102 comm extra 
tor-geoipdb_0.2.0.34-1_all.deb
 6b2691eea2cabf0061f88f00e4a9cf82 1217002 comm optional tor_0.2.0.34-1_i386.deb
 df3cd97edec1f2e76f569c941b244036 851054 comm extra tor-dbg_0.2.0.34-1_i386.deb

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

iEYEARECAAYFAkmP+B8ACgkQz/ccs6+kS93euACfQ6eTlf2P2MwSYO7IJl92P6Uk
vCwAn3DxCdpnuvsKrq6NDkPp0WcWJP3n
=SF4h
-END PGP SIGNATURE-


Accepted:
tor-dbg_0.2.0.34-1_i386.deb
  to pool/main/t/tor/tor-dbg_0.2.0.34-1_i386.deb
tor-geoipdb_0.2.0.34-1_all.deb
  to pool/main/t/tor/tor-geoipdb_0.2.0.34-1_all.deb
tor_0.2.0.34-1.diff.gz
  to pool/main/t/tor/tor_0.2.0.34-1.diff.gz
tor_0.2.0.34-1.dsc
  to pool/main/t/tor/tor_0.2.0.34-1.dsc
tor_0.2.0.34-1_i386.deb
  to pool/main/t/tor/tor_0.2.0.34-1_i386.deb
tor_0.2.0.34.orig.tar.gz
  to pool/main/t/tor/tor_0.2.0.34.orig.tar.gz


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



Accepted wdq2wav 0.8.2-1 (source amd64)

2009-02-09 Thread Kevin M. Rosenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 02:50:44 -0700
Source: wdq2wav
Binary: wdq2wav
Architecture: source amd64
Version: 0.8.2-1
Distribution: unstable
Urgency: low
Maintainer: Kevin M. Rosenberg k...@debian.org
Changed-By: Kevin M. Rosenberg k...@debian.org
Description: 
 wdq2wav- Converts a WinDAQ channel to sound .wav file
Closes: 511646
Changes: 
 wdq2wav (0.8.2-1) unstable; urgency=low
 .
   * Add stdlib.h (closes:511646)
Checksums-Sha1: 
 424ffeff550501d535617a30783fe32d206ff51f 946 wdq2wav_0.8.2-1.dsc
 0f3c8274a92bd6a8230d9e665badda9284660f19 20665 wdq2wav_0.8.2.orig.tar.gz
 c46d80916d718473e2e40100c07c0440a481327b 2002 wdq2wav_0.8.2-1.diff.gz
 5964334c338259a921d3777484d0e6002ebd58bd 17746 wdq2wav_0.8.2-1_amd64.deb
Checksums-Sha256: 
 ebf32037336a7bb328ced8722b9ed312371543d7d7d7dd25adde173e14adb10f 946 
wdq2wav_0.8.2-1.dsc
 ee8e0788ac193db79778432b8bf653f20e749a8802e51828c140395cb01e9374 20665 
wdq2wav_0.8.2.orig.tar.gz
 c612004d29d5580ec042ef778d279da4867022849cbf6600144d9e7bfce3db16 2002 
wdq2wav_0.8.2-1.diff.gz
 117047174d808bfa614ee9b3fbd06fc083ad2b2421d8f4ce8e7174d7df387b49 17746 
wdq2wav_0.8.2-1_amd64.deb
Files: 
 170afecaceb854170ab7d20c36105167 946 contrib/utils extra wdq2wav_0.8.2-1.dsc
 74b61100af079a94a1eab5640c269865 20665 contrib/utils extra 
wdq2wav_0.8.2.orig.tar.gz
 aecf94b2cffe8e112255fbebf10ef216 2002 contrib/utils extra 
wdq2wav_0.8.2-1.diff.gz
 8e23a5edce1990160af003dd4556aafb 17746 contrib/utils extra 
wdq2wav_0.8.2-1_amd64.deb

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

iEYEARECAAYFAkmP/S8ACgkQES7N8sSjgj5A4QCeL0KAwpgQcTtHEOK13ZEYXIsf
mDgAn3X9z34g21vgVBN4Iljk74evGrz+
=ib52
-END PGP SIGNATURE-


Accepted:
wdq2wav_0.8.2-1.diff.gz
  to pool/contrib/w/wdq2wav/wdq2wav_0.8.2-1.diff.gz
wdq2wav_0.8.2-1.dsc
  to pool/contrib/w/wdq2wav/wdq2wav_0.8.2-1.dsc
wdq2wav_0.8.2-1_amd64.deb
  to pool/contrib/w/wdq2wav/wdq2wav_0.8.2-1_amd64.deb
wdq2wav_0.8.2.orig.tar.gz
  to pool/contrib/w/wdq2wav/wdq2wav_0.8.2.orig.tar.gz


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



Accepted packeth 1.6.2-1 (source amd64)

2009-02-09 Thread David Paleino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 01 Feb 2009 17:07:14 +0100
Source: packeth
Binary: packeth
Architecture: source amd64
Version: 1.6.2-1
Distribution: experimental
Urgency: low
Maintainer: David Paleino d.pale...@gmail.com
Changed-By: David Paleino d.pale...@gmail.com
Description: 
 packeth- Ethernet packet generator
Changes: 
 packeth (1.6.2-1) experimental; urgency=low
 .
   * New Upstream Version
   * debian/copyright updated
   * debian/control:
 - setting DM-Upload-Allowed
   * Packaging switched to dh7
Checksums-Sha1: 
 1f2f368c55e383a1aa5b22f30af78e211373de5e 1214 packeth_1.6.2-1.dsc
 abcc99748e0f0c3bdcace9eb32aedee9539d07c5 151676 packeth_1.6.2.orig.tar.gz
 04af4f49d2d2f4455ed76c774d901e9284a40f1a 5964 packeth_1.6.2-1.diff.gz
 2d3e07a99daca6c56a9d72e9a7707070fc88f924 134192 packeth_1.6.2-1_amd64.deb
Checksums-Sha256: 
 a7f326723e8033b46e6f3998265e37ea2e2e7b83638d068f5bcb89cdcdb1c8c8 1214 
packeth_1.6.2-1.dsc
 c0096b25d2666d57baf6ef5cae93879e67bf6791b11a58c10c009e4ea4f983e8 151676 
packeth_1.6.2.orig.tar.gz
 b030d373fd03012753a2845264517ef2c84c9761193066bdfc1f1902a93a5997 5964 
packeth_1.6.2-1.diff.gz
 83ad3f286f763dcc955373bbb50ea481f3037301a2cf74dded48e3e0b75c6ed3 134192 
packeth_1.6.2-1_amd64.deb
Files: 
 f3d1625c95122503db44119ca74bee5c 1214 net optional packeth_1.6.2-1.dsc
 55243a080b6ce6471058534024557704 151676 net optional packeth_1.6.2.orig.tar.gz
 c9eecde9bc1a0d4a08cf2836f901985a 5964 net optional packeth_1.6.2-1.diff.gz
 758838cc6889f5c07bf091aae227f388 134192 net optional packeth_1.6.2-1_amd64.deb

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

iEYEARECAAYFAkmQB9EACgkQHYflSXNkfP9PxQCaAmuWI/fyIfH7mOfj+2ZA0xvS
QOoAniHBT6iC+FKm+5pcLXfGtGjJNOe4
=q+pe
-END PGP SIGNATURE-


Accepted:
packeth_1.6.2-1.diff.gz
  to pool/main/p/packeth/packeth_1.6.2-1.diff.gz
packeth_1.6.2-1.dsc
  to pool/main/p/packeth/packeth_1.6.2-1.dsc
packeth_1.6.2-1_amd64.deb
  to pool/main/p/packeth/packeth_1.6.2-1_amd64.deb
packeth_1.6.2.orig.tar.gz
  to pool/main/p/packeth/packeth_1.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 librose-db-object-perl 1:0.778-1 (source all)

2009-02-09 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 11:21:22 +0100
Source: librose-db-object-perl
Binary: librose-db-object-perl
Architecture: source all
Version: 1:0.778-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Krzysztof Krzyżaniak (eloy) e...@debian.org
Description: 
 librose-db-object-perl - extensible, high performance RDBMS-OO mapper
Changes: 
 librose-db-object-perl (1:0.778-1) unstable; urgency=low
 .
   * New upstream release
   * debian/copyright: update dates
Checksums-Sha1: 
 06b2e58fc4214021121e79eb5c51f413d1428132 1682 
librose-db-object-perl_0.778-1.dsc
 019b7bb18f8be14c2183621f4997a1c1cee1af35 530266 
librose-db-object-perl_0.778.orig.tar.gz
 df570b39c1c932dc781072e2073186846f4099d0 2130 
librose-db-object-perl_0.778-1.diff.gz
 7b7d82f482f43900d03cc89a575ca0d7005c582f 620414 
librose-db-object-perl_0.778-1_all.deb
Checksums-Sha256: 
 65890cb2f7e4a460e3bfcfa1c2fd64a3f742e73bb45b5d60475c1c6ab6d4ef0c 1682 
librose-db-object-perl_0.778-1.dsc
 d1eedc550ae8b4e56cb83605d8d4482739c30af24b4a70b785ac87d398c85a48 530266 
librose-db-object-perl_0.778.orig.tar.gz
 c840657bd3925f812cc9a54b4b9bd39c89afbfa1ffeb8ea5c893572a35d1452c 2130 
librose-db-object-perl_0.778-1.diff.gz
 c8e15ced9625b2ac51ef233f0a70c9f00cc19f18a85602c881112b31c8fb26f1 620414 
librose-db-object-perl_0.778-1_all.deb
Files: 
 2af8c8c9d417e0d50ad77f4030d0c4b6 1682 perl optional 
librose-db-object-perl_0.778-1.dsc
 ce57ccba4ad70f4c5baf78b4bc066f3c 530266 perl optional 
librose-db-object-perl_0.778.orig.tar.gz
 65a4c3c9f93f76a3ccf13dad83ad81eb 2130 perl optional 
librose-db-object-perl_0.778-1.diff.gz
 af80824223041a2d2a87ae8ee1250358 620414 perl optional 
librose-db-object-perl_0.778-1_all.deb

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

iEYEARECAAYFAkmQClMACgkQy+HP4f7iC8sOSACdEEjwj58NdBpQvKhNtupbK6f7
rr0AoJwzmKPDpwdmagKduEtsYZvjOmS0
=2T9F
-END PGP SIGNATURE-


Accepted:
librose-db-object-perl_0.778-1.diff.gz
  to 
pool/main/libr/librose-db-object-perl/librose-db-object-perl_0.778-1.diff.gz
librose-db-object-perl_0.778-1.dsc
  to pool/main/libr/librose-db-object-perl/librose-db-object-perl_0.778-1.dsc
librose-db-object-perl_0.778-1_all.deb
  to 
pool/main/libr/librose-db-object-perl/librose-db-object-perl_0.778-1_all.deb
librose-db-object-perl_0.778.orig.tar.gz
  to 
pool/main/libr/librose-db-object-perl/librose-db-object-perl_0.778.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 libmoose-perl 0.68-1 (source all)

2009-02-09 Thread eloy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 12:25:25 +0100
Source: libmoose-perl
Binary: libmoose-perl
Architecture: source all
Version: 0.68-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Krzysztof Krzyżaniak (eloy) e...@debian.org
Description: 
 libmoose-perl - extension of the Perl 5 object system
Changes: 
 libmoose-perl (0.68-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 fce22f4fe86f9596ed576b42b186fd4d5494f82f 1935 libmoose-perl_0.68-1.dsc
 56478bb4b9c6f39aa0d45cebb2ca7bc931bf54f2 285870 libmoose-perl_0.68.orig.tar.gz
 e375315e13f97021fd412bda8ec02793a031f306 5264 libmoose-perl_0.68-1.diff.gz
 2519c38cff1c6b14640f323cf8fa971cb4015422 484592 libmoose-perl_0.68-1_all.deb
Checksums-Sha256: 
 a8f2540ef8e738403735747b93357c3dc26d3b13d24a822f33b224de4086b02a 1935 
libmoose-perl_0.68-1.dsc
 212b329ab63960bc9f0d4519fba72dfabe41a9d4832404829df46c0f36529759 285870 
libmoose-perl_0.68.orig.tar.gz
 dc7fd17b869ae0a6318b2bc639a0458598a328f04b937aabe80d3cc85b1edeca 5264 
libmoose-perl_0.68-1.diff.gz
 01a653839942bd62b8e2f12cd28926ea5fd57a4a30953d5fa7fa789aaa8444ed 484592 
libmoose-perl_0.68-1_all.deb
Files: 
 16c099249194e53c7e37e6d853aac34c 1935 perl optional libmoose-perl_0.68-1.dsc
 8710e35012924f8d49b0f5ba994e328c 285870 perl optional 
libmoose-perl_0.68.orig.tar.gz
 e8f6c8b8a9ea1f33fa228358f0e6e74d 5264 perl optional 
libmoose-perl_0.68-1.diff.gz
 3707fa0f6d2aea1070093b2e0b312df5 484592 perl optional 
libmoose-perl_0.68-1_all.deb

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

iEYEARECAAYFAkmQGLQACgkQy+HP4f7iC8vmogCfRgv4adfNsaC2V8Oji5PuBFnB
3HQAnjb+y3D/gtojB5VUZkU+drJhnm6j
=IvAt
-END PGP SIGNATURE-


Accepted:
libmoose-perl_0.68-1.diff.gz
  to pool/main/libm/libmoose-perl/libmoose-perl_0.68-1.diff.gz
libmoose-perl_0.68-1.dsc
  to pool/main/libm/libmoose-perl/libmoose-perl_0.68-1.dsc
libmoose-perl_0.68-1_all.deb
  to pool/main/libm/libmoose-perl/libmoose-perl_0.68-1_all.deb
libmoose-perl_0.68.orig.tar.gz
  to pool/main/libm/libmoose-perl/libmoose-perl_0.68.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 debian-reference 2.28 (source all)

2009-02-09 Thread Osamu Aoki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 21:35:13 +0900
Source: debian-reference
Binary: debian-reference debian-reference-common debian-reference-en 
debian-reference-fr debian-reference-it debian-reference-ja debian-reference-es 
debian-reference-de debian-reference-pt-br debian-reference-pl 
debian-reference-zh-tw debian-reference-zh-cn
Architecture: source all
Version: 2.28
Distribution: unstable
Urgency: low
Maintainer: Osamu Aoki os...@debian.org
Changed-By: Osamu Aoki os...@debian.org
Description: 
 debian-reference - metapackage to install (all) translations of Debian 
Reference
 debian-reference-common - Debian system administration guide, common files
 debian-reference-de - Debian system administration guide, German translation
 debian-reference-en - Debian system administration guide, English original
 debian-reference-es - Debian system administration guide, Spanish translation
 debian-reference-fr - Debian system administration guide, French translation
 debian-reference-it - Debian system administration guide, Italian translation
 debian-reference-ja - Debian system administration guide, Japanese translation
 debian-reference-pl - Debian system administration guide, Polish translation
 debian-reference-pt-br - Debian system administration guide, Portuguese 
translation
 debian-reference-zh-cn - Debian system administration guide, Chinese(CN) 
translation
 debian-reference-zh-tw - Debian system administration guide, Chinese(TW) 
translation
Changes: 
 debian-reference (2.28) unstable; urgency=low
 .
   * Updated non-English documents for removed xmove package
Checksums-Sha1: 
 75eee684bf6ae0136a306ee699d698fee2816700 1216 debian-reference_2.28.dsc
 6369d963b38de2087af7bb31440a28ea16cf7344 2936305 debian-reference_2.28.tar.gz
 a7a4563bdf97b9e37b07043ea1758231d6241a93 14454 debian-reference_2.28_all.deb
 3129971bfb423ada604fdff275b0963673b8e085 52722 
debian-reference-common_2.28_all.deb
 a730d9662d1e460a2aecc4e73f49c46a1169d079 786326 
debian-reference-en_2.28_all.deb
 2460ca39703881173bd890f4718def0430ccacab 760626 
debian-reference-fr_2.28_all.deb
 cf65edfbd52a73e5b86e08e1aa71a6c11fa42aaa 818994 
debian-reference-it_2.28_all.deb
 95f0428984765d07b56e24ff6d967a7fad44a774 865540 
debian-reference-ja_2.28_all.deb
 e375ac84439a530227a34747d957b66d088ba52e 790636 
debian-reference-es_2.28_all.deb
 17e2932030d5de0cffaada8e5d25846b329db894 744886 
debian-reference-de_2.28_all.deb
 c3adc8008f7ae3ba979b1809e56db965122b73ad 808914 
debian-reference-pt-br_2.28_all.deb
 ba80423bb0ed335cad433148084e3d7ac096dca7 854276 
debian-reference-pl_2.28_all.deb
 bae2438cc62560ffdec57bcf47d69579364d49fd 818240 
debian-reference-zh-tw_2.28_all.deb
 c87ff468554555674bf957fe6e6355ad5ef20500 812970 
debian-reference-zh-cn_2.28_all.deb
Checksums-Sha256: 
 7c1f2bf553c94d1a90abf4f45ddb319daa006d1ac9516d1d31b3c4465d2d3275 1216 
debian-reference_2.28.dsc
 f5f803e0df07503cd6afb0e198e4a441daedce3b7f19b9c59695aed1638c74e2 2936305 
debian-reference_2.28.tar.gz
 42a2b43d030cf1da56a1a189211adccc87af9682cba436e4210afa123d4229b0 14454 
debian-reference_2.28_all.deb
 04278eafab1ab681caa0d29c0f160f187b3c07073fce92f5e74e98376599f792 52722 
debian-reference-common_2.28_all.deb
 120a431a0ddc07d8c3586f32219aecf74a0eb6f9182e8aad1e0072975785d8c6 786326 
debian-reference-en_2.28_all.deb
 c149e2ff9ec4b1a56d485c157b25bff63450466a9aeb3c077ab1c682b57a708e 760626 
debian-reference-fr_2.28_all.deb
 1080665777b2f50ce1fed518c3a72db4161d6e4db292a9ab7db162adb3786ceb 818994 
debian-reference-it_2.28_all.deb
 ee9cf623962e7ec5950a8729a6385507975ed533144edfbb746fce8b5adb9a73 865540 
debian-reference-ja_2.28_all.deb
 1327aa717b7575dbed4ce50ac3fc2409b39b600f56b13c66367172bacd99ebab 790636 
debian-reference-es_2.28_all.deb
 b8fa77886b5563bc4685c0a7c8ec55aeabb821ef51f00ea1fd742f35ef83d894 744886 
debian-reference-de_2.28_all.deb
 27c9f90b0ca3e5828fbe1fb1e07788f43e3693e79c171c80ef299dfc0582e49e 808914 
debian-reference-pt-br_2.28_all.deb
 98e53eabb3d2c7216ae1e62c838a36a7951ab0288dd800ca3f2b50154efcb827 854276 
debian-reference-pl_2.28_all.deb
 53dcc9e4440e51c008ba9fa870fc12b9567d80996e5468b8dc633acbbd4e97f8 818240 
debian-reference-zh-tw_2.28_all.deb
 d463b355bbcf33ddb45d323d1f44272de945aabfab56654d806fde7892894ac8 812970 
debian-reference-zh-cn_2.28_all.deb
Files: 
 1b1c2d5e0eb2e2d495cf6d8f60c3dd66 1216 doc optional debian-reference_2.28.dsc
 e64efb75d964615bc33adb668593f706 2936305 doc optional 
debian-reference_2.28.tar.gz
 33026be7647df0d36dddc2bf1751b8c8 14454 doc optional 
debian-reference_2.28_all.deb
 2044e09156f2784b9e54f96a988336c5 52722 doc optional 
debian-reference-common_2.28_all.deb
 c69472b7a26ef3e743e2b0e9106acb27 786326 doc optional 
debian-reference-en_2.28_all.deb
 a51ed955d850700626ca14b1b7fbb9ee 760626 doc optional 
debian-reference-fr_2.28_all.deb
 ba5a7e33028ecab32c767c44ade68ad9 818994 doc optional 
debian-reference-it_2.28_all.deb
 bed044dc66f634ce6a80f449a2455946 865540 doc optional 

Accepted hnb 1.9.18-6 (source i386)

2009-02-09 Thread Carsten Hey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 31 Jan 2009 13:03:34 +0100
Source: hnb
Binary: hnb
Architecture: source i386
Version: 1.9.18-6
Distribution: experimental
Urgency: low
Maintainer: Carsten Hey c@web.de
Changed-By: Carsten Hey c@web.de
Description: 
 hnb- hierarchical notebook
Changes: 
 hnb (1.9.18-6) experimental; urgency=low
 .
   * Fixed a character lost bug in word wrapping.  Thanks to Tomáš Janoušek for
 the patch.
   * Bump dh compat level to 7, update build dependency and use dh_prep instead
 of dh_clean -k.
Checksums-Sha1: 
 c64fc3fd127ef898f411b1bd54e1ae4f985c75c1 974 hnb_1.9.18-6.dsc
 0383d147a64aff4028289fd30a6bdfb8435e019e 24335 hnb_1.9.18-6.diff.gz
 8a7113087274a0c3a5b5a21a25528509289c2f2d 84072 hnb_1.9.18-6_i386.deb
Checksums-Sha256: 
 f1a915c59d5d173072d9268f61ab49b5cd70be7a2f15dc70f47072872dc41459 974 
hnb_1.9.18-6.dsc
 5d642d337658924094f75e21df7119d7bfb5e5d102eb51b6227e024c26c3b241 24335 
hnb_1.9.18-6.diff.gz
 e1d7c8fb030e20a5305503c290a18e7337ebabc15f7be38225235edb6e51a579 84072 
hnb_1.9.18-6_i386.deb
Files: 
 206871cc085f91d202409ee2d91fb743 974 misc optional hnb_1.9.18-6.dsc
 6b58acca34ff116f3a41c70c291f773a 24335 misc optional hnb_1.9.18-6.diff.gz
 6c787235390de2f15b3b19ba24f3a0a7 84072 misc optional hnb_1.9.18-6_i386.deb

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

iEYEARECAAYFAkmQMfYACgkQBxd04ADYzRYTFgCfUL9rTP6HNwfOmoDhiv8BIvzo
9oUAnjVziyH8rmBi4DUSH/rD/O/anb7L
=HyN8
-END PGP SIGNATURE-


Accepted:
hnb_1.9.18-6.diff.gz
  to pool/main/h/hnb/hnb_1.9.18-6.diff.gz
hnb_1.9.18-6.dsc
  to pool/main/h/hnb/hnb_1.9.18-6.dsc
hnb_1.9.18-6_i386.deb
  to pool/main/h/hnb/hnb_1.9.18-6_i386.deb


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



Accepted xpad 3.1-1 (source i386)

2009-02-09 Thread Bart Martens
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 14:48:46 +0100
Source: xpad
Binary: xpad
Architecture: source i386
Version: 3.1-1
Distribution: unstable
Urgency: low
Maintainer: Bart Martens ba...@debian.org
Changed-By: Bart Martens ba...@debian.org
Description: 
 xpad   - sticky note application for X
Changes: 
 xpad (3.1-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/copyright: Updated for new upstream release.
   * debian/control: Fixed debhelper-but-no-misc-depends.
   * debian/control: Build-Depends: intltool = 0.31
Checksums-Sha1: 
 de2d7688967e89d2ec15d57824afca2cb1fec629 1016 xpad_3.1-1.dsc
 ac94aa2170387aa448a224ef5534de4274409af3 225695 xpad_3.1.orig.tar.gz
 9fd0a759bd6b66c3ab18990621e580402057b7db 5112 xpad_3.1-1.diff.gz
 71370868f058dca75fa2fc21e2540db5897bd04d 90558 xpad_3.1-1_i386.deb
Checksums-Sha256: 
 64c24cd79a9c178c1f1080948f03a713b47b5b0283d4b99b72a2fb792eb0d326 1016 
xpad_3.1-1.dsc
 1f1472d5b59e532bda951b973d12e462932483aa0951c4d2d66280c6cad16eef 225695 
xpad_3.1.orig.tar.gz
 8ef5dbbc0ab061c3fca5fe8c91df1b0be50e8aae40cce726a649508d52dac14a 5112 
xpad_3.1-1.diff.gz
 2175e7a279a471c159b92ab1fc868da58a7a54ca49b95ac4bac8a2eaa3098b22 90558 
xpad_3.1-1_i386.deb
Files: 
 6d32bb0ab0be9ab52033a63022275a7e 1016 x11 optional xpad_3.1-1.dsc
 ebea8df1a4d09f4e1168dc95c7de0e84 225695 x11 optional xpad_3.1.orig.tar.gz
 e667de63787c040c39ad789cf009f26a 5112 x11 optional xpad_3.1-1.diff.gz
 daec087d1cc41b330905c09e25d90e5e 90558 x11 optional xpad_3.1-1_i386.deb

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

iEYEARECAAYFAkmQQ4oACgkQbMaawmho9B8cwACeLmsrZUxzn87hJe8KcJIP4U1h
GGIAoNMurz11IDUHk5G9hO5ogwQFdf6K
=166z
-END PGP SIGNATURE-


Accepted:
xpad_3.1-1.diff.gz
  to pool/main/x/xpad/xpad_3.1-1.diff.gz
xpad_3.1-1.dsc
  to pool/main/x/xpad/xpad_3.1-1.dsc
xpad_3.1-1_i386.deb
  to pool/main/x/xpad/xpad_3.1-1_i386.deb
xpad_3.1.orig.tar.gz
  to pool/main/x/xpad/xpad_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 gdal 1.5.4-1 (source i386 all)

2009-02-09 Thread Francesco Paolo Lovergine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 14:01:41 +0100
Source: gdal
Binary: libgdal1-1.5.0 libgdal1-dev libgdal-doc gdal-bin python-gdal 
libgdal-perl libgdal-ruby1.8 libgdal-ruby
Architecture: source i386 all
Version: 1.5.4-1
Distribution: unstable
Urgency: low
Maintainer: Francesco Paolo Lovergine fran...@debian.org
Changed-By: Francesco Paolo Lovergine fran...@debian.org
Description: 
 gdal-bin   - Geospatial Data Abstraction Library - Utility programs
 libgdal-doc - Documentation for the Geospatial Data Abstraction Library
 libgdal-perl - Perl bindings to the Geospatial Data Abstraction Library
 libgdal-ruby - Ruby bindings to the Geospatial Data Abstraction Library
 libgdal-ruby1.8 - Ruby 1.8 bindings to the Geospatial Data Abstraction Library
 libgdal1-1.5.0 - Geospatial Data Abstraction Library
 libgdal1-dev - Geospatial Data Abstraction Library - Development files
 python-gdal - Python bindings to the Geospatial Data Abstraction Library
Changes: 
 gdal (1.5.4-1) unstable; urgency=low
 .
   * New upstream release for 1.5 branch.
   * Removed patch gcc4.4.dpatch merged upstream.
   * dh_movefiles changed in dh_install in debian/rules.
   * compat changed to 5 to be coherent with debian/control.
Checksums-Sha1: 
 aedd476ae2376148ed63f9f856efdfc968b1e25e 1941 gdal_1.5.4-1.dsc
 2ea2ab1685ddcc5cf0047b1a8c30524af83d5efe 6173289 gdal_1.5.4.orig.tar.gz
 83e7426bf64674f79ce34bfec704d405d4c806f8 13214 gdal_1.5.4-1.diff.gz
 1b868e553d12cac8e46b39ac17e5ef9673b63092 34000 libgdal1-1.5.0_1.5.4-1_i386.deb
 9ca5d6917dc3b27e6743bacd319d20488e71851f 33504 libgdal1-dev_1.5.4-1_i386.deb
 328a3cbed708f37f3146ff771c42cffca492a9c8 33328 gdal-bin_1.5.4-1_i386.deb
 56c4268f89ca2e8315b0e0971e79f22823e309a0 33326 python-gdal_1.5.4-1_i386.deb
 2b5945447ca4e88803a5712bfc01b15747a073ab 33276 libgdal-perl_1.5.4-1_i386.deb
 f2dd1e574a2e2eea88327f12d131ad4b00abdd17 33282 libgdal-ruby1.8_1.5.4-1_i386.deb
 ad2ce082c53ab16dcfd881f7b7a1fe5037c16b74 32878 libgdal-ruby_1.5.4-1_i386.deb
 cdfccf4c549c3ebdcbd39581c2fc0566c0b29fdd 33294 libgdal-doc_1.5.4-1_all.deb
Checksums-Sha256: 
 6b805437efed3679bc73a6e437544d4397dc86ef363d7dcb46534ea6960d963a 1941 
gdal_1.5.4-1.dsc
 1d8df0a9046ad06ff73597e43b64cef12b386b07473c7534e7092a1c876abcf1 6173289 
gdal_1.5.4.orig.tar.gz
 5b627c7cf22992fafa899473dfe5aa2f5d1c07abab18e14c86669e19c3f24679 13214 
gdal_1.5.4-1.diff.gz
 371e89eda67858aa0705d0a3d8038d3f0b6fb7fdc429869f4005aa37484c6f7b 34000 
libgdal1-1.5.0_1.5.4-1_i386.deb
 3234f8c53668c38103f2978e6d39576ebfb433243b2f4e83e47b4c6088cee54d 33504 
libgdal1-dev_1.5.4-1_i386.deb
 5283d050e400e5bf7623c4184e587ce51554e9065ea875c234f3d8c9f737ac8a 33328 
gdal-bin_1.5.4-1_i386.deb
 1cb020f3b85c8fc091c4f895dc222eaa0afe9431738cf96a375329b365f466c8 33326 
python-gdal_1.5.4-1_i386.deb
 410bb7892cb10d5f874019699ffc47bfd7076cf4759fbfa909b321fb30af08fc 33276 
libgdal-perl_1.5.4-1_i386.deb
 41e4a5e1889b66f890a04a637021281219518f5390de7f73332d39308898fbd4 33282 
libgdal-ruby1.8_1.5.4-1_i386.deb
 69fca19614218ac5a649a4de002129265c600317544e13afd0d88c46b3d8c8f8 32878 
libgdal-ruby_1.5.4-1_i386.deb
 467cab23494fda1a512ca090e6670f26bb5512bbbda9b410dd9205031af2430b 33294 
libgdal-doc_1.5.4-1_all.deb
Files: 
 d51fc2a4ff646d411b3f5eb23965bfe1 1941 science extra gdal_1.5.4-1.dsc
 d5e411b6f11bd1f144af67d2045d2606 6173289 science extra gdal_1.5.4.orig.tar.gz
 95ba91b74a2eff505e06e1ef6112e499 13214 science extra gdal_1.5.4-1.diff.gz
 d841841e680163ddfb00505bcc9cd83a 34000 libs extra 
libgdal1-1.5.0_1.5.4-1_i386.deb
 bc4af161d55af1d61715d9df42dde29a 33504 libdevel extra 
libgdal1-dev_1.5.4-1_i386.deb
 187326c0ae8c8ceb759d0bf2cd8710e3 33328 science extra gdal-bin_1.5.4-1_i386.deb
 e246d447f4830c93807ae02277cc7e2d 33326 python extra 
python-gdal_1.5.4-1_i386.deb
 f785021477cd87065aa69e5a0a75f393 33276 perl extra libgdal-perl_1.5.4-1_i386.deb
 21b5aa4fb70bdfdc59732b6e0d2fde5c 33282 interpreters extra 
libgdal-ruby1.8_1.5.4-1_i386.deb
 3ac9703a631cf0810fa7b75d8723f823 32878 interpreters extra 
libgdal-ruby_1.5.4-1_i386.deb
 9c8bbed3ff08abc1492d14b781088b64 33294 doc extra libgdal-doc_1.5.4-1_all.deb

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

iEYEARECAAYFAkmQONEACgkQpFNRmenyx0fDewCff+NxQ2NvmnKEYTyHbeqURATf
DbsAoLiVUgcpGz/xyaO9B4CiySwIY7p8
=M3tC
-END PGP SIGNATURE-


Accepted:
gdal-bin_1.5.4-1_i386.deb
  to pool/main/g/gdal/gdal-bin_1.5.4-1_i386.deb
gdal_1.5.4-1.diff.gz
  to pool/main/g/gdal/gdal_1.5.4-1.diff.gz
gdal_1.5.4-1.dsc
  to pool/main/g/gdal/gdal_1.5.4-1.dsc
gdal_1.5.4.orig.tar.gz
  to pool/main/g/gdal/gdal_1.5.4.orig.tar.gz
libgdal-doc_1.5.4-1_all.deb
  to pool/main/g/gdal/libgdal-doc_1.5.4-1_all.deb
libgdal-perl_1.5.4-1_i386.deb
  to pool/main/g/gdal/libgdal-perl_1.5.4-1_i386.deb
libgdal-ruby1.8_1.5.4-1_i386.deb
  to pool/main/g/gdal/libgdal-ruby1.8_1.5.4-1_i386.deb
libgdal-ruby_1.5.4-1_i386.deb
  to pool/main/g/gdal/libgdal-ruby_1.5.4-1_i386.deb
libgdal1-1.5.0_1.5.4-1_i386.deb
  to 

Accepted uptimed 1:0.3.16-1 (source all hppa)

2009-02-09 Thread Thibaut VARENE
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 15:29:23 +0100
Source: uptimed
Binary: uptimed libuptimed0 libuptimed-dev uprecords-cgi
Architecture: source all hppa
Version: 1:0.3.16-1
Distribution: unstable
Urgency: low
Maintainer: Thibaut VARENE vare...@debian.org
Changed-By: Thibaut VARENE vare...@debian.org
Description: 
 libuptimed-dev - Development files for uptimed
 libuptimed0 - Library for uptimed
 uprecords-cgi - A CGI script to show the world your highest uptimes
 uptimed- Utility to track your highest uptimes
Closes: 480352 482643 504714 512871
Changes: 
 uptimed (1:0.3.16-1) unstable; urgency=low
 .
   * New upstream release
   * Use a backup database (Closes: #482643,#504714)
   * Reformat descriptions (Closes: #480352)
   * [INTL:ja] Japanese po-debconf template translation (Closes: #512871)
Checksums-Sha1: 
 7ba923d1048918d783eb19800d8c040a149b9a75 1068 uptimed_0.3.16-1.dsc
 055d055e449dcfd7d9b3ee393d27381a998acbfa 241043 uptimed_0.3.16.orig.tar.gz
 96d1223e0e154f9e10a8a02667c7bc4b0de8817f 37948 uptimed_0.3.16-1.diff.gz
 5116f050de0697594df7fc11de9e12251ef459d6 20394 uprecords-cgi_0.3.16-1_all.deb
 992406913770a01871af4217586a8c5610bf3ea8 46442 uptimed_0.3.16-1_hppa.deb
 0dfa02a6a67dd876798f06f89923a99b4c0e0ca4 15980 libuptimed0_0.3.16-1_hppa.deb
 543cb7c617ad0ca691166045b62fb81a0b11a5a8 16366 libuptimed-dev_0.3.16-1_hppa.deb
Checksums-Sha256: 
 0a74ba7e59a00e1a677735643528125b5237c123f42c914f48300964c485a8f0 1068 
uptimed_0.3.16-1.dsc
 145cf920f34dfb7eae67cd3020195fb0eabc8368f01aabb78ecd5e0fa3598e1c 241043 
uptimed_0.3.16.orig.tar.gz
 2443fb02fc2d6fa9bc346d93858f3a187c3799253fe98440797d99d7495acb35 37948 
uptimed_0.3.16-1.diff.gz
 5093db7c8778ccd97f1a5df6f929b32784a1490e3820c44471e39aff8ede4f33 20394 
uprecords-cgi_0.3.16-1_all.deb
 effbc30635e67cd7be96d30cb2945765eff98af976da26ccee8f10efee10be9f 46442 
uptimed_0.3.16-1_hppa.deb
 415e1ba495eedb41c4767f5ec0948b9a5e846f2cff0c77b78ea111d2b5c5a216 15980 
libuptimed0_0.3.16-1_hppa.deb
 b40844239a7db91c2dc4cb6ae18ebf2466a16edef34f6f008c623a5c2d7296c3 16366 
libuptimed-dev_0.3.16-1_hppa.deb
Files: 
 57c4d12bb99d8c013f343021a82f25a9 1068 utils extra uptimed_0.3.16-1.dsc
 da839e60f7f1d15e7700e7d2f1dde0e2 241043 utils extra uptimed_0.3.16.orig.tar.gz
 dc29ffabc5e39c44ecdbc865513bd1f1 37948 utils extra uptimed_0.3.16-1.diff.gz
 e6f00b9b8ec931962ede1cef43c7efea 20394 utils extra 
uprecords-cgi_0.3.16-1_all.deb
 7cad1e8c8eb3c7a75cef56ad85f229b8 46442 utils extra uptimed_0.3.16-1_hppa.deb
 c850595babb28a02faea4fbff216b164 15980 libs extra libuptimed0_0.3.16-1_hppa.deb
 80b92941b73d62737910ed1a59faec98 16366 libdevel extra 
libuptimed-dev_0.3.16-1_hppa.deb

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

iEYEARECAAYFAkmQRZQACgkQHjLD2rfS8GOCyQCgiyW4DJcivs9w9bgFeHkDptFC
0HAAoNOMQIxsqVXCDEbHtTXnKHsnOfDW
=phRv
-END PGP SIGNATURE-


Accepted:
libuptimed-dev_0.3.16-1_hppa.deb
  to pool/main/u/uptimed/libuptimed-dev_0.3.16-1_hppa.deb
libuptimed0_0.3.16-1_hppa.deb
  to pool/main/u/uptimed/libuptimed0_0.3.16-1_hppa.deb
uprecords-cgi_0.3.16-1_all.deb
  to pool/main/u/uptimed/uprecords-cgi_0.3.16-1_all.deb
uptimed_0.3.16-1.diff.gz
  to pool/main/u/uptimed/uptimed_0.3.16-1.diff.gz
uptimed_0.3.16-1.dsc
  to pool/main/u/uptimed/uptimed_0.3.16-1.dsc
uptimed_0.3.16-1_hppa.deb
  to pool/main/u/uptimed/uptimed_0.3.16-1_hppa.deb
uptimed_0.3.16.orig.tar.gz
  to pool/main/u/uptimed/uptimed_0.3.16.orig.tar.gz


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



Accepted crash 4.0-7.7-1 (source amd64)

2009-02-09 Thread Troy Heber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 07:14:33 -0700
Source: crash
Binary: crash
Architecture: source amd64
Version: 4.0-7.7-1
Distribution: experimental
Urgency: low
Maintainer: Troy Heber tr...@debian.org
Changed-By: Troy Heber tr...@debian.org
Description: 
 crash  - kernel debugging utility, allowing gdb like syntax
Changes: 
 crash (4.0-7.7-1) experimental; urgency=low
 .
   * New upstream version 4.0-7.7 (see
 http://people.redhat.com/anderson/crash.changelog)
 - Support dumps with different page size that the host system, ppc and
 ia64 support configurable page sizes.
 - Fix mod -s to support modules that have both - and _ in their names.
 - Reject s390 and s390x L2^B local label symbols from the kernel symbol
 list
 - Fix potential buffer overflow with ps -l.
 - Fix bt -a to continue backtrace after hitting a fatal error
 - Only suource trusted versions of .crashrc and .gdbinit
 - Fix potential, but highly unlikely, buffer overflow in gdb dwarfread.c
 and dwarf2read.c.
 - Fix potential, but highly unlikely, integer overflow in the BDF library.
 - Enable stack undind on ia64 when using kerntypes file.
 - Fix failure of files -R command when an inode is unknown.
 - Allow LKCD kerntypes debuginfo file created form a module to be loaded
 with: mod -s module kerntypes-file
 - Increase NR_CPUS from 256 to 512 for x86-64 and 128 to 1024 for ppc64.
Checksums-Sha1: 
 259c84ace41db6cf351463edf52ecf410356e900 1010 crash_4.0-7.7-1.dsc
 5c7b8213ad1ba4b14a7d113ba90f868dd762ed7f 17830042 crash_4.0-7.7.orig.tar.gz
 526c791b339a6dd5fc3dbbfd2128feebe553a64f 845562 crash_4.0-7.7-1.diff.gz
 79552bd539ef42ac70b0c22b3c4de4adced0c43f 1796586 crash_4.0-7.7-1_amd64.deb
Checksums-Sha256: 
 163a1aebfad11af20abddfd469a1ed77d0fa8ea1c574a9c002711d665dcedcea 1010 
crash_4.0-7.7-1.dsc
 6c69b8d0de2d18caa840cb8a4c3052a2beb2907b62ff19adfa6f8a88e87cd191 17830042 
crash_4.0-7.7.orig.tar.gz
 95b627d51206de87bcdc55349148dff456544fd48f62b50a143f351dabc37362 845562 
crash_4.0-7.7-1.diff.gz
 61d81dea631777eb3336627376b6f99fb7d4ed4f6871dd2d9ae65597478966a4 1796586 
crash_4.0-7.7-1_amd64.deb
Files: 
 b4dd9f1bc1234b349ceeac59825250ff 1010 utils optional crash_4.0-7.7-1.dsc
 9dab2ffcb2346a63594f550c781364e1 17830042 utils optional 
crash_4.0-7.7.orig.tar.gz
 5b11d553e4793cce69261e6f24867e07 845562 utils optional crash_4.0-7.7-1.diff.gz
 4070654f8f5d8e974b52c2e7444b2fe5 1796586 utils optional 
crash_4.0-7.7-1_amd64.deb

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

iD8DBQFJkEjHQOr9C+GfGI4RAuC5AJsHUPhvzHi9YM+RNENt7nU3hcEdwACfejcz
BRuf2oEP//4RhxCihJgjWj0=
=aMLY
-END PGP SIGNATURE-


Accepted:
crash_4.0-7.7-1.diff.gz
  to pool/main/c/crash/crash_4.0-7.7-1.diff.gz
crash_4.0-7.7-1.dsc
  to pool/main/c/crash/crash_4.0-7.7-1.dsc
crash_4.0-7.7-1_amd64.deb
  to pool/main/c/crash/crash_4.0-7.7-1_amd64.deb
crash_4.0-7.7.orig.tar.gz
  to pool/main/c/crash/crash_4.0-7.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 msrp 0.9.3-1 (source i386)

2009-02-09 Thread Rudi Cilibrasi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 25 Nov 2008 12:22:42 -0800
Source: msrp
Binary: msrp
Architecture: source i386
Version: 0.9.3-1
Distribution: unstable
Urgency: low
Maintainer: Rudi Cilibrasi cilib...@debian.org
Changed-By: Rudi Cilibrasi cilib...@debian.org
Description: 
 msrp   - meta search and replace tool for both filenames and files
Closes: 504938
Changes: 
 msrp (0.9.3-1) unstable; urgency=low
 .
   * New upstream release adding --preserve option. (Closes: #504938)
Checksums-Sha1: 
 defff1464c74b021a197319f3b3dbb43bf451a01 1060 msrp_0.9.3-1.dsc
 3d584c35c99367df7332cfaf95ea49a66f481e2c 102045 msrp_0.9.3.orig.tar.gz
 414eccbbe57440dd24b021f425fa0b0253191b61 2278 msrp_0.9.3-1.diff.gz
 e0283c6a76a4c72525c642ad7f9d47f0854dc012 30170 msrp_0.9.3-1_i386.deb
Checksums-Sha256: 
 897b0fe41f614374e1a86b2654ab5b90c2c6a9c61238479b3387c09527c789c1 1060 
msrp_0.9.3-1.dsc
 5e2233e386f9f1d22e53d396252175768cf42cc87fd383e1f003967da78897b8 102045 
msrp_0.9.3.orig.tar.gz
 da6db6f54b42bdaa57665ac8fc4a9cb948a9b213d0d4f4b2b7f9fa79030e285b 2278 
msrp_0.9.3-1.diff.gz
 687969f42b171d92123e60269ca75ef8bc81ee1c0b0f98d175c46f3f599ba03b 30170 
msrp_0.9.3-1_i386.deb
Files: 
 33e91ec5000724dda732987bfd425c7d 1060 text optional msrp_0.9.3-1.dsc
 e1958f9a8d92a85860bae53826ece92b 102045 text optional msrp_0.9.3.orig.tar.gz
 25613011a11afe82535345e95667420d 2278 text optional msrp_0.9.3-1.diff.gz
 d6c0a3cd4eb67bd32726a05b114aa597 30170 text optional msrp_0.9.3-1_i386.deb

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

iD8DBQFJkE/yNuEPS+DPqOQRApI9AKC94qVuU2TOks9KtYa1DvjStvs1WgCdEeM1
lJtoRsLXWq7qJSwyEnKuDag=
=QK67
-END PGP SIGNATURE-


Accepted:
msrp_0.9.3-1.diff.gz
  to pool/main/m/msrp/msrp_0.9.3-1.diff.gz
msrp_0.9.3-1.dsc
  to pool/main/m/msrp/msrp_0.9.3-1.dsc
msrp_0.9.3-1_i386.deb
  to pool/main/m/msrp/msrp_0.9.3-1_i386.deb
msrp_0.9.3.orig.tar.gz
  to pool/main/m/msrp/msrp_0.9.3.orig.tar.gz


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



Accepted bind9 1:9.5.1.dfsg.P1-1 (source all i386)

2009-02-09 Thread LaMont Jones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Mon, 26 Jan 2009 10:33:42 -0700
Source: bind9
Binary: bind9 bind9utils bind9-doc bind9-host libbind-dev libbind9-40 libdns45 
libisc45 liblwres40 libisccc40 libisccfg40 dnsutils lwresd
Architecture: all i386 source 
Version: 1:9.5.1.dfsg.P1-1
Distribution: unstable
Urgency: low
Maintainer: LaMont Jones lam...@debian.org
Changed-By: LaMont Jones lam...@debian.org
Description: 
 bind9  - Internet Domain Name Server
 bind9-doc  - Documentation for BIND
 bind9-host - Version of 'host' bundled with BIND 9.X
 bind9utils - Utilities for BIND
 dnsutils   - Clients provided with BIND
 libbind-dev - Static Libraries and Headers used by BIND
 libbind9-40 - BIND9 Shared Library used by BIND
 libdns45   - DNS Shared Library used by BIND
 libisc45   - ISC Shared Library used by BIND
 libisccc40 - Command Channel Library used by BIND
 libisccfg40 - Config File Handling Library used by BIND
 liblwres40 - Lightweight Resolver Library used by BIND
 lwresd - Lightweight Resolver Daemon
Closes: 511768 511936
Changes: 
 bind9 (1:9.5.1.dfsg.P1-1) unstable; urgency=low
 .
   * New upstream patch release
 - supportable version of fix from 9.5.0.dfsg.P2-5.1
 - CVE-2009-0025:  Closes: #511936
 - 2475: Overly agressive cache entry removal.  Closes: #511768
 - other bug fixes worthy of patch-release inclusion
Files: 
 2f1f334bda9cb1abf0152ac8c787d78f 144228 net standard 
dnsutils_9.5.1.dfsg.P1-1_i386.deb
 2c7a9628271ca802ff54f9834998696e 1019 net optional bind9_9.5.1.dfsg.P1-1.dsc
 33fa8f34d448810e6a3f3ff667488b69 149458 libs standard 
libisc45_9.5.1.dfsg.P1-1_i386.deb
 343374ae2fc430c3d3950bcd3a24e746 31866 libs standard 
libbind9-40_9.5.1.dfsg.P1-1_i386.deb
 61a7a116996a1b503041cf9cde3f4081 1264356 libdevel optional 
libbind-dev_9.5.1.dfsg.P1-1_i386.deb
 62fdaca3c05b5196a317d458c0852794 93064 net optional 
bind9utils_9.5.1.dfsg.P1-1_i386.deb
 6ad469d1d57f875605fd495f8f532b98 240748 net optional 
bind9_9.5.1.dfsg.P1-1_i386.deb
 88fc2172d1a272900a13301326867b06 223424 net optional 
bind9_9.5.1.dfsg.P1-1.diff.gz
 8e9408280c6aaba92df23468ffae0df7 43868 libs optional 
libisccfg40_9.5.1.dfsg.P1-1_i386.deb
 8f9d463c423009e0cfc7d7642f666789 60804 net standard 
bind9-host_9.5.1.dfsg.P1-1_i386.deb
 9fcc60221e7aede17d47d2fcbb684199 198864 net optional 
lwresd_9.5.1.dfsg.P1-1_i386.deb
 a73a9a6c7b59c307841445ff1ea5 44802 libs standard 
liblwres40_9.5.1.dfsg.P1-1_i386.deb
 c821ad8231d9fd5fef47d283e0dc9b17 26584 libs optional 
libisccc40_9.5.1.dfsg.P1-1_i386.deb
 d58c3ab2ba0a100df389c09769f05b96 547518 libs standard 
libdns45_9.5.1.dfsg.P1-1_i386.deb
 dd0d457eadf3439916de672e03ea7a29 265924 doc optional 
bind9-doc_9.5.1.dfsg.P1-1_all.deb
 e556b2c9b8718a0b867d4038b57864d7 4651682 net optional 
bind9_9.5.1.dfsg.P1.orig.tar.gz

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

iD8DBQFJfnvbzN/kmwoKyScRAr4MAJ0ZUKFWugdpC3KKfyMoX0MtqGDQ9ACfckIa
nO1s55NlkRLQgZUsjiJGcpE=
=vzVw
-END PGP SIGNATURE-


Accepted:
bind9-doc_9.5.1.dfsg.P1-1_all.deb
  to pool/main/b/bind9/bind9-doc_9.5.1.dfsg.P1-1_all.deb
bind9-host_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/bind9-host_9.5.1.dfsg.P1-1_i386.deb
bind9_9.5.1.dfsg.P1-1.diff.gz
  to pool/main/b/bind9/bind9_9.5.1.dfsg.P1-1.diff.gz
bind9_9.5.1.dfsg.P1-1.dsc
  to pool/main/b/bind9/bind9_9.5.1.dfsg.P1-1.dsc
bind9_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/bind9_9.5.1.dfsg.P1-1_i386.deb
bind9_9.5.1.dfsg.P1.orig.tar.gz
  to pool/main/b/bind9/bind9_9.5.1.dfsg.P1.orig.tar.gz
bind9utils_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/bind9utils_9.5.1.dfsg.P1-1_i386.deb
dnsutils_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/dnsutils_9.5.1.dfsg.P1-1_i386.deb
libbind-dev_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/libbind-dev_9.5.1.dfsg.P1-1_i386.deb
libbind9-40_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/libbind9-40_9.5.1.dfsg.P1-1_i386.deb
libdns45_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/libdns45_9.5.1.dfsg.P1-1_i386.deb
libisc45_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/libisc45_9.5.1.dfsg.P1-1_i386.deb
libisccc40_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/libisccc40_9.5.1.dfsg.P1-1_i386.deb
libisccfg40_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/libisccfg40_9.5.1.dfsg.P1-1_i386.deb
liblwres40_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/liblwres40_9.5.1.dfsg.P1-1_i386.deb
lwresd_9.5.1.dfsg.P1-1_i386.deb
  to pool/main/b/bind9/lwresd_9.5.1.dfsg.P1-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 mpdscribble 0.16-2 (source amd64)

2009-02-09 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 17:50:15 +0100
Source: mpdscribble
Binary: mpdscribble mpdscribble-dbg
Architecture: source amd64
Version: 0.16-2
Distribution: unstable
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 mpdscribble - Last.fm reporting client for mpd
 mpdscribble-dbg - Last.fm reporting client for mpd - debugger symbols
Closes: 512997
Changes: 
 mpdscribble (0.16-2) unstable; urgency=low
 .
   * Upload to unstable.
   * [INTL:es] New Spanish translation (Closes: #512997).
   * Update debian/copyright.
Checksums-Sha1: 
 a18655fd6d9a81ac8e088046afb7d73db2e20cf2 1205 mpdscribble_0.16-2.dsc
 4b45ead3a099662f407511371977c84708c784f7 13386 mpdscribble_0.16-2.diff.gz
 c7455026cc23d81a981f48ec543250a4814b4b11 44112 mpdscribble_0.16-2_amd64.deb
 3c95a37d75a9567b26681af038c2aa57091a943e 61344 mpdscribble-dbg_0.16-2_amd64.deb
Checksums-Sha256: 
 e6cd77cc88d99f849d0d2860ea338a5b96590e16738425c4eeaf7693e8056e75 1205 
mpdscribble_0.16-2.dsc
 6f9c78dae8c32ec70b2a0e841d3382f41e8bdf4da1bf9af3e32142d63535eb64 13386 
mpdscribble_0.16-2.diff.gz
 c41d6241883069e8e42572230c9c4713e6409752504638984313b3c3e6466bb2 44112 
mpdscribble_0.16-2_amd64.deb
 27d86d2f6ad914927568eff2e7d5a98e4636a951bd1196ca9faa5f395042c603 61344 
mpdscribble-dbg_0.16-2_amd64.deb
Files: 
 2df1163832b37c5baaf64798b3537fca 1205 sound optional mpdscribble_0.16-2.dsc
 0da7f831b27201a1d36a70a50328fafc 13386 sound optional 
mpdscribble_0.16-2.diff.gz
 7f49cd3a17a4778e5b447b2dade2c709 44112 sound optional 
mpdscribble_0.16-2_amd64.deb
 cd8a197b7f5c26c4b2f3e438decf0490 61344 sound extra 
mpdscribble-dbg_0.16-2_amd64.deb

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

iEYEARECAAYFAkmQXysACgkQ3DVS6DbnVgSjAgCfbzynEuYq4WLVNWA57e4p2gfP
ugcAn0KB80FIIj9jk0O9AXhsv1srXQuf
=tNc+
-END PGP SIGNATURE-


Accepted:
mpdscribble-dbg_0.16-2_amd64.deb
  to pool/main/m/mpdscribble/mpdscribble-dbg_0.16-2_amd64.deb
mpdscribble_0.16-2.diff.gz
  to pool/main/m/mpdscribble/mpdscribble_0.16-2.diff.gz
mpdscribble_0.16-2.dsc
  to pool/main/m/mpdscribble/mpdscribble_0.16-2.dsc
mpdscribble_0.16-2_amd64.deb
  to pool/main/m/mpdscribble/mpdscribble_0.16-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 gammu 1.22.94-1 (source all amd64)

2009-02-09 Thread Michal Čihař
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 17:38:57 +0100
Source: gammu
Binary: gammu gammu-smsd libgammu-dev libgammu-i18n libgammu6 libgsmsd6 
libgammu-dbg python-gammu python-gammu-dbg python-gammu-doc
Architecture: source all amd64
Version: 1.22.94-1
Distribution: experimental
Urgency: low
Maintainer: Michal Čihař ni...@debian.org
Changed-By: Michal Čihař ni...@debian.org
Description: 
 gammu  - mobile phone management utility
 gammu-smsd - SMS message daemon
 libgammu-dbg - mobile phone management library (debugger symbols)
 libgammu-dev - mobile phone management library (development files)
 libgammu-i18n - mobile phone management library (i18n files)
 libgammu6  - mobile phone management library
 libgsmsd6  - SMS daemon helper library
 python-gammu - Python module to communicate with mobile phones
 python-gammu-dbg - Python module to communicate with mobile phones (debug 
version)
 python-gammu-doc - Documentation for Python module to communicate with mobile 
phones
Closes: 512120 514353
Changes: 
 gammu (1.22.94-1) experimental; urgency=low
 .
   * New upstream release.
 - Includes DBI backend with better SQL (Closes: #514353).
 - Fixes FTBFS (Closes: #512120).
Checksums-Sha1: 
 e8000ceacb837924515fd0d5d0512519fd1402bd 1531 gammu_1.22.94-1.dsc
 b2aaeb34f014ffe28e8e7b734dd6286f6c44 5679360 gammu_1.22.94.orig.tar.gz
 835e174a956feb92c963184738d35e977198265a 10278 gammu_1.22.94-1.diff.gz
 ab448b61c05b3ec581197e296b11b1d9410b5557 182030 libgammu-i18n_1.22.94-1_all.deb
 7c8ee8464f58fbf1db318ce1af9007dc116a0034 164434 
python-gammu-doc_1.22.94-1_all.deb
 a650abefc836029e50799ff14bd4a500a66022f0 298386 gammu_1.22.94-1_amd64.deb
 4880865f86620d981807c5e46df3ec9bb0e71e3c 117882 gammu-smsd_1.22.94-1_amd64.deb
 7e3cf91d6770288e07df582bbcae69d5e344c7f1 177358 
libgammu-dev_1.22.94-1_amd64.deb
 b414f4540982d68046f0eaf1b80252d03335be45 524820 libgammu6_1.22.94-1_amd64.deb
 2c214a698e4f66979afba818f3fc6385b98dee05 124002 libgsmsd6_1.22.94-1_amd64.deb
 d22aa10e27f25aa32fcae8327add5b07d39fd6ef 1895932 
libgammu-dbg_1.22.94-1_amd64.deb
 0dc9036b195c174ec9c6412c38fb55d105c55850 242252 
python-gammu_1.22.94-1_amd64.deb
 4618e27c3758632e81be1802447dd9b88c719abc 252286 
python-gammu-dbg_1.22.94-1_amd64.deb
Checksums-Sha256: 
 6a520f9739e1d7d8f894bda451ec0b7713dc967dc24dbb474eafcb0a590ac025 1531 
gammu_1.22.94-1.dsc
 2afd2620af4420d41dd87f5fff559a81323c7e6862016663e3eeb88bafe3f606 5679360 
gammu_1.22.94.orig.tar.gz
 ae3bcb4785cba98601ed15d1607e361eb1ff724dea0f2b96771af7726afbd566 10278 
gammu_1.22.94-1.diff.gz
 5db36c2cb8f7b62a0e8a57e0bdbdc7ff0762922bb5ec520d97308712ba93eb6d 182030 
libgammu-i18n_1.22.94-1_all.deb
 b881c9f5eccceb4eaecec2cfe593cfaecf5462d4d948f5d21771443c5ce6198d 164434 
python-gammu-doc_1.22.94-1_all.deb
 e8384a189e70f50fca47f66ec1adf507541d6ed95523ae014d83e02aff3693d2 298386 
gammu_1.22.94-1_amd64.deb
 5a6e73a8206ddb24d4b8cfc004b31dabf6b542f42ebf03e08fbe06d67a22f492 117882 
gammu-smsd_1.22.94-1_amd64.deb
 6a96cdd4ff88d448bfebf16e7439e95c8d8a7609b2869438bea696490581cb05 177358 
libgammu-dev_1.22.94-1_amd64.deb
 ef91f181b3fc178195dcab1fc977b5aab8a6c1c13800c5de79760c01259bd7ab 524820 
libgammu6_1.22.94-1_amd64.deb
 3d923adbdf8b6f27a2cd091b28a5f4076ac4ddde1c7300fecad19d5ca3229fa7 124002 
libgsmsd6_1.22.94-1_amd64.deb
 f9c1376fbdf3e9296fd7d0b8568b334ba8505d393ec6cb665a3ee55443cf87f9 1895932 
libgammu-dbg_1.22.94-1_amd64.deb
 04afd263a6c07bc927f15f1f668cb7cd2a480beb860c82cf7aabe2fb980ed846 242252 
python-gammu_1.22.94-1_amd64.deb
 207d12c3fbda7fa8c3d3e24bf7b6d181002961b5a1cabf4f5ba16a84f9633149 252286 
python-gammu-dbg_1.22.94-1_amd64.deb
Files: 
 985124b91b44487f43490bb4703906d8 1531 comm optional gammu_1.22.94-1.dsc
 b5856729f936f58ba3ce909ce153de87 5679360 comm optional 
gammu_1.22.94.orig.tar.gz
 cae429ead5544647eb397a4bc42d5718 10278 comm optional gammu_1.22.94-1.diff.gz
 82f30dfa4f06a0e10f0aaae3706b9f7e 182030 libs optional 
libgammu-i18n_1.22.94-1_all.deb
 5aefc9419d09f34e4ca8445bb5effc46 164434 doc optional 
python-gammu-doc_1.22.94-1_all.deb
 27397d3276ac3d5b82525faa1efcc737 298386 comm optional gammu_1.22.94-1_amd64.deb
 7dc29f287732308d1c67605acb017e9a 117882 comm optional 
gammu-smsd_1.22.94-1_amd64.deb
 8d096857e7f80b143dadce1c71fcf777 177358 libdevel optional 
libgammu-dev_1.22.94-1_amd64.deb
 3cc41d7ff904df5948d2f749d165f0ab 524820 libs optional 
libgammu6_1.22.94-1_amd64.deb
 b476a2057bbf509021c070e32d65cb65 124002 libs optional 
libgsmsd6_1.22.94-1_amd64.deb
 8ee8d6074caf0fb81aa6ada0a5979386 1895932 libdevel extra 
libgammu-dbg_1.22.94-1_amd64.deb
 f69d848ac18cffd14763e4726c807607 242252 python optional 
python-gammu_1.22.94-1_amd64.deb
 a95c8d270cb2b6cc2f734e2b390273e2 252286 python extra 
python-gammu-dbg_1.22.94-1_amd64.deb

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

iEYEARECAAYFAkmQZmIACgkQ3DVS6DbnVgSKSQCg9S96FOWPGkAoRWhWD7qLEEo6
xKQAoKXlXnb+05ampUhH9A9k/jhQPsp2
=+cIJ
-END PGP SIGNATURE-


Accepted:

Accepted scribus-ng 1.3.5.dfsg~svn20090208-2 (source i386)

2009-02-09 Thread Oleksandr Moskalenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 09:25:18 -0700
Source: scribus-ng
Binary: scribus-ng
Architecture: source i386
Version: 1.3.5.dfsg~svn20090208-2
Distribution: unstable
Urgency: low
Maintainer: Oleksandr Moskalenko ma...@debian.org
Changed-By: Oleksandr Moskalenko ma...@debian.org
Description: 
 scribus-ng - Open Source Desktop Page Layout - developmental branch
Changes: 
 scribus-ng (1.3.5.dfsg~svn20090208-2) unstable; urgency=low
 .
   * debian/control: Use type-handling -n arm,armel,armeb any to generate the
 list of architectures to build on.
Checksums-Sha1: 
 801872685d56de210eda8866ddb6ff36c00766fc 3304 
scribus-ng_1.3.5.dfsg~svn20090208-2.dsc
 c675d7afc1adf18cf4fd66a04eda18f3b9860101 26466 
scribus-ng_1.3.5.dfsg~svn20090208-2.diff.gz
 8ca9d946be38a88b83813a3b37290c9eb24506ee 17757478 
scribus-ng_1.3.5.dfsg~svn20090208-2_i386.deb
Checksums-Sha256: 
 64f47f8439a9e0473031bf1813707d9be11ccc4ae707b11bb7deeb7eaac4eae1 3304 
scribus-ng_1.3.5.dfsg~svn20090208-2.dsc
 e22896ba955b1e2243da7dc7373808e12facd021fb5823f59e110cb2b9a62f82 26466 
scribus-ng_1.3.5.dfsg~svn20090208-2.diff.gz
 e500c46339b1179708933611e56ee2008a6a47609a7bea01c78ba521c0268726 17757478 
scribus-ng_1.3.5.dfsg~svn20090208-2_i386.deb
Files: 
 1d36512c9afffb4daabf112c04d457c3 3304 graphics optional 
scribus-ng_1.3.5.dfsg~svn20090208-2.dsc
 f56611a42a064bb71b7a01db2d3e71f9 26466 graphics optional 
scribus-ng_1.3.5.dfsg~svn20090208-2.diff.gz
 257aab1ac4e633520638207a2cd78bf6 17757478 graphics optional 
scribus-ng_1.3.5.dfsg~svn20090208-2_i386.deb

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

iD8DBQFJkGiN2ihvMmxfGWsRAod+AKCLETh1nsOjpc2vCPawtGOzGdxs3QCgx5BH
7XSdnvbVGy5884+UiyMPRk4=
=/nVT
-END PGP SIGNATURE-


Accepted:
scribus-ng_1.3.5.dfsg~svn20090208-2.diff.gz
  to pool/main/s/scribus-ng/scribus-ng_1.3.5.dfsg~svn20090208-2.diff.gz
scribus-ng_1.3.5.dfsg~svn20090208-2.dsc
  to pool/main/s/scribus-ng/scribus-ng_1.3.5.dfsg~svn20090208-2.dsc
scribus-ng_1.3.5.dfsg~svn20090208-2_i386.deb
  to pool/main/s/scribus-ng/scribus-ng_1.3.5.dfsg~svn20090208-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 xserver-xorg-video-i128 1:1.3.1-2 (source amd64)

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

Format: 1.8
Date: Mon, 09 Feb 2009 19:03:42 +0100
Source: xserver-xorg-video-i128
Binary: xserver-xorg-video-i128
Architecture: source amd64
Version: 1:1.3.1-2
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-i128 - X.Org X server -- i128 display driver
Changes: 
 xserver-xorg-video-i128 (1:1.3.1-2) experimental; urgency=low
 .
   * Run autoreconf on build; add build-deps on automake, libtool, xutils-dev.
   * Handle parallel builds.
   * Build against xserver 1.6 rc.
Checksums-Sha1: 
 6f0965b21c7e235eb839b637084ee82f5dcb55c7 1563 
xserver-xorg-video-i128_1.3.1-2.dsc
 ec71713e032fe0108cec45c35e2b5fe3942948ff 20407 
xserver-xorg-video-i128_1.3.1-2.diff.gz
 dc34808ac387dececcc3fa10c09272b9d54ccbc5 36172 
xserver-xorg-video-i128_1.3.1-2_amd64.deb
Checksums-Sha256: 
 d699197860f5a3ef62441a2f4396afdf42732ca80dd28353fe690ce07a3ed833 1563 
xserver-xorg-video-i128_1.3.1-2.dsc
 60ee5268c5346edc13b197d082617cd07b2668c4d90064eb6044c1cc1af7f284 20407 
xserver-xorg-video-i128_1.3.1-2.diff.gz
 0628203b4a5902f66e0b5e65076473551d43000202748d3598dd350bb17971ac 36172 
xserver-xorg-video-i128_1.3.1-2_amd64.deb
Files: 
 79f6d05b424a46104f73654c486ec1ad 1563 x11 optional 
xserver-xorg-video-i128_1.3.1-2.dsc
 cfaa7eaa2cadf48bb476920ebc938908 20407 x11 optional 
xserver-xorg-video-i128_1.3.1-2.diff.gz
 6edd84721e3403686bbf9ccb83a92836 36172 x11 optional 
xserver-xorg-video-i128_1.3.1-2_amd64.deb

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

iEYEARECAAYFAkmQcrIACgkQmEvTgKxfcAxVHACgkswfIvgJx7JWr2VWnIa58IO9
F/sAoIzbi0uA7JgVhFDeumE9a8T38nyQ
=fIB5
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-i128_1.3.1-2.diff.gz
  to pool/main/x/xserver-xorg-video-i128/xserver-xorg-video-i128_1.3.1-2.diff.gz
xserver-xorg-video-i128_1.3.1-2.dsc
  to pool/main/x/xserver-xorg-video-i128/xserver-xorg-video-i128_1.3.1-2.dsc
xserver-xorg-video-i128_1.3.1-2_amd64.deb
  to 
pool/main/x/xserver-xorg-video-i128/xserver-xorg-video-i128_1.3.1-2_amd64.deb


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



Accepted canto 0.6.0-1 (source i386)

2009-02-09 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon,  9 Feb 2009 19:02:00 +0100
Source: canto
Binary: canto
Architecture: source i386
Version: 0.6.0-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 canto  - flexible ncurses Atom/RSS newsreader for the console
Changes: 
 canto (0.6.0-1) unstable; urgency=low
 .
   * Merging upstream version 0.6.0.
   * Updating rules to current state of the art.
   * Updating year in copyright file.
Checksums-Sha1: 
 e408aa0a54e9b08475f99f4cf633895298f237b0 1116 canto_0.6.0-1.dsc
 a6e47e45a63b86dd4be8dc379f2201cbcb5a1b00 63437 canto_0.6.0.orig.tar.gz
 5558bbc3e7547c4d6200fca99d58d60ee03ead3e 1598 canto_0.6.0-1.diff.gz
 2e248b012dd6f7c534474ed22a14ecb8111687ef 41014 canto_0.6.0-1_i386.deb
Checksums-Sha256: 
 4d78e2b5c40ae7508f174654ea3ceb031205467f4ed0870a34086c7f1a04c1fd 1116 
canto_0.6.0-1.dsc
 9a93186607764391bd5924799293d6d24435e35850649c37318d9c2e3cc870f2 63437 
canto_0.6.0.orig.tar.gz
 690fec582b3811aedf5f37001be1a53f4fb84a54d4dc3bf9a210c52c9b92b1c1 1598 
canto_0.6.0-1.diff.gz
 b4816e26a5bef12cb21feb7fa39e49ba1f3e61c3c4fdb5f587241249859684c1 41014 
canto_0.6.0-1_i386.deb
Files: 
 fddb0fb666397d764ddd38131f67dfe5 1116 net optional canto_0.6.0-1.dsc
 a204535adb7d1deca34fe9cfc4bdfbc5 63437 net optional canto_0.6.0.orig.tar.gz
 b9052f4b8a5084cbab90a7c2bd5d4d05 1598 net optional canto_0.6.0-1.diff.gz
 99f989fe6835598312fc077c5d0ee5c1 41014 net optional canto_0.6.0-1_i386.deb

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

iEYEARECAAYFAkmQcBIACgkQ+C5cwEsrK56JtwCgmeuake9poM7V1e8zLV/Ioh4N
R8gAnj4VjAJ0zAM2iWwHCrJANsnf0xqH
=mJO2
-END PGP SIGNATURE-


Accepted:
canto_0.6.0-1.diff.gz
  to pool/main/c/canto/canto_0.6.0-1.diff.gz
canto_0.6.0-1.dsc
  to pool/main/c/canto/canto_0.6.0-1.dsc
canto_0.6.0-1_i386.deb
  to pool/main/c/canto/canto_0.6.0-1_i386.deb
canto_0.6.0.orig.tar.gz
  to pool/main/c/canto/canto_0.6.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 libaal 1.0.5-4 (source i386)

2009-02-09 Thread Felix Zielcke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 16:49:08 +0100
Source: libaal
Binary: libaal-dev
Architecture: source i386
Version: 1.0.5-4
Distribution: unstable
Urgency: low
Maintainer: Felix Zielcke fziel...@z-51.de
Changed-By: Felix Zielcke fziel...@z-51.de
Description: 
 libaal-dev - Reiser4's application abstraction library
Closes: 483026
Changes: 
 libaal (1.0.5-4) unstable; urgency=low
 .
   * New maintainer (Closes: #483026)
   * Add a debian/watch file.
   * Change download url in debian/copyright to the kernel.org one.
Checksums-Sha1: 
 2369717a7871b787601050dfb407d96f5a2791fb 969 libaal_1.0.5-4.dsc
 59100676b36c3b471830eade1631e5dd48091ff1 311753 libaal_1.0.5-4.diff.gz
 d2ab107f6c681b7cd653c7d45273e4925b87690f 30432 libaal-dev_1.0.5-4_i386.deb
Checksums-Sha256: 
 1bbb8cb768defcdb1690b7d5097d209254bb9b7a1e91c5f559417dbac6c3c066 969 
libaal_1.0.5-4.dsc
 7e28d3de016c606de41ab020f389b96a7410cd14e7b4e4fa49fff99304ad4391 311753 
libaal_1.0.5-4.diff.gz
 038bf5041f57dd5ebf84bcec663349986a316e7adbacef92fe6b014d1f797274 30432 
libaal-dev_1.0.5-4_i386.deb
Files: 
 c51e3748c7a31a19ef7e83ac0f89a80b 969 libs extra libaal_1.0.5-4.dsc
 a75f95fb13a8af3b10d238ad27ce0723 311753 libs extra libaal_1.0.5-4.diff.gz
 e0b618902a6f5d3728ab632d33fa392a 30432 libdevel extra 
libaal-dev_1.0.5-4_i386.deb

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

iEYEARECAAYFAkmQaoQACgkQ5ItltUs5T36S4gCgjJtCQuQPk0TIM6jOZuvw/oJA
j7MAn03HKt0MIENidx5jKpgIheri6btd
=IxT/
-END PGP SIGNATURE-


Accepted:
libaal-dev_1.0.5-4_i386.deb
  to pool/main/liba/libaal/libaal-dev_1.0.5-4_i386.deb
libaal_1.0.5-4.diff.gz
  to pool/main/liba/libaal/libaal_1.0.5-4.diff.gz
libaal_1.0.5-4.dsc
  to pool/main/liba/libaal/libaal_1.0.5-4.dsc


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



Accepted xserver-xorg-video-mga 1:1.4.9.dfsg-3 (source amd64)

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

Format: 1.8
Date: Mon, 09 Feb 2009 19:45:45 +0100
Source: xserver-xorg-video-mga
Binary: xserver-xorg-video-mga
Architecture: source amd64
Version: 1:1.4.9.dfsg-3
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-mga - X.Org X server -- MGA display driver
Changes: 
 xserver-xorg-video-mga (1:1.4.9.dfsg-3) experimental; urgency=low
 .
   * Run autoreconf on build; add build-deps on automake, libtool, xutils-dev.
   * Handle parallel builds.
   * debian/watch, debian/xsfbs/repack.sh: repack the upstream tarball to
 remove the non-free stuff.
   * Build against xserver 1.6 rc.
Checksums-Sha1: 
 10b870c0f23d7839419a0d8a47afee573bb8a877 1725 
xserver-xorg-video-mga_1.4.9.dfsg-3.dsc
 25e28579ff5f90cc8216b7418d3bc539cf4577a0 17788 
xserver-xorg-video-mga_1.4.9.dfsg-3.diff.gz
 acbb4e0f521475ef2c56c70f7374a800a9fa8f16 116040 
xserver-xorg-video-mga_1.4.9.dfsg-3_amd64.deb
Checksums-Sha256: 
 501eea8f854413d49ddceb47c77c4f42a424965f13e7f5fbdaa368db8a1c82db 1725 
xserver-xorg-video-mga_1.4.9.dfsg-3.dsc
 723d08e72cd8ca0e2545ae764d955bed03c9258667197d37fa5a81cb482c0d9f 17788 
xserver-xorg-video-mga_1.4.9.dfsg-3.diff.gz
 83eae103fcba8f332fd0b9386977ce838e7e50bd71a54037b79465cffc34efa7 116040 
xserver-xorg-video-mga_1.4.9.dfsg-3_amd64.deb
Files: 
 a24184d8bec392b4be33baa6f571e727 1725 x11 optional 
xserver-xorg-video-mga_1.4.9.dfsg-3.dsc
 c26897a80c9ba1862b673c78e4c16d14 17788 x11 optional 
xserver-xorg-video-mga_1.4.9.dfsg-3.diff.gz
 c9edf2e68b1b237d74f42d0d5589a4f0 116040 x11 optional 
xserver-xorg-video-mga_1.4.9.dfsg-3_amd64.deb

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

iEYEARECAAYFAkmQfZ8ACgkQmEvTgKxfcAzQHgCg1lc5YjfW6+axwkKhP/+NhWjc
48sAoLzYiCxZYD0zcoTOQ00E9fPo5p/m
=gRaf
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-mga_1.4.9.dfsg-3.diff.gz
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.4.9.dfsg-3.diff.gz
xserver-xorg-video-mga_1.4.9.dfsg-3.dsc
  to pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.4.9.dfsg-3.dsc
xserver-xorg-video-mga_1.4.9.dfsg-3_amd64.deb
  to 
pool/main/x/xserver-xorg-video-mga/xserver-xorg-video-mga_1.4.9.dfsg-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 galeon 2.0.6-2.1 (source all amd64)

2009-02-09 Thread Fabio Bonelli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 08 Feb 2009 21:55:46 +0100
Source: galeon
Binary: galeon galeon-common
Architecture: source all amd64
Version: 2.0.6-2.1
Distribution: unstable
Urgency: high
Maintainer: Loic Minier l...@dooz.org
Changed-By: Fabio Bonelli fabiobone...@libero.it
Description: 
 galeon - GNOME web browser for advanced users
 galeon-common - GNOME web browser for advanced users
Closes: 514428
Changes: 
 galeon (2.0.6-2.1) unstable; urgency=high
 .
   * Workaround to RC bug: world-readable temporary files when using helper
 apps.  Thanks to Lionel Elie Mamane lmam...@debian.org.
 Closes: #514428
Checksums-Sha1: 
 64c086e3a10254285503effa9954a7c295e448a0 1451 galeon_2.0.6-2.1.dsc
 f691adcf3e5538425a00755be3a976f6b16f6433 49129 galeon_2.0.6-2.1.diff.gz
 dd3663bdb026d3e69844fc20aa169ce7b819d6f9 3069298 
galeon-common_2.0.6-2.1_all.deb
 70d479d3ea2686e0f56df43fa676403d6e7ef6a7 770310 galeon_2.0.6-2.1_amd64.deb
Checksums-Sha256: 
 30805ae6a1b6d60b25a27d17b7819a25c8fea68f1dc4d7485427aca294350445 1451 
galeon_2.0.6-2.1.dsc
 2962be25a27a86fa6262486a4efb10d33d22fbefdd67f5dba8e6f00ea8e4c3b9 49129 
galeon_2.0.6-2.1.diff.gz
 2033f389b40133a1b4b16c7590e5709f302839e94e24d025982d1d0c9d13e076 3069298 
galeon-common_2.0.6-2.1_all.deb
 d5da16e3c6e701e8b81a9545d7c1f3e61e8f81765c79cfd3fd9a1d61f59c7e4c 770310 
galeon_2.0.6-2.1_amd64.deb
Files: 
 e24bbb9f52dc094f6489add5a54703c4 1451 gnome optional galeon_2.0.6-2.1.dsc
 46b83187e95c02532553cdd39ae7c4ab 49129 gnome optional galeon_2.0.6-2.1.diff.gz
 bef1dd92fa106c0bbbeeb42882352475 3069298 gnome optional 
galeon-common_2.0.6-2.1_all.deb
 7082a301d418cc1ba84f710c20dea603 770310 gnome optional 
galeon_2.0.6-2.1_amd64.deb

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

iEYEARECAAYFAkmQfSYACgkQx/UhwSKygsoLywCfdi6fOuAUd9RxlarxHpXBZFtj
1FQAn1CBZjtZKCjGVfyumGS2VHWebxKZ
=PFN8
-END PGP SIGNATURE-


Accepted:
galeon-common_2.0.6-2.1_all.deb
  to pool/main/g/galeon/galeon-common_2.0.6-2.1_all.deb
galeon_2.0.6-2.1.diff.gz
  to pool/main/g/galeon/galeon_2.0.6-2.1.diff.gz
galeon_2.0.6-2.1.dsc
  to pool/main/g/galeon/galeon_2.0.6-2.1.dsc
galeon_2.0.6-2.1_amd64.deb
  to pool/main/g/galeon/galeon_2.0.6-2.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 xserver-xorg-video-neomagic 1:1.2.2-1 (source amd64)

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

Format: 1.8
Date: Mon, 09 Feb 2009 20:19:46 +0100
Source: xserver-xorg-video-neomagic
Binary: xserver-xorg-video-neomagic
Architecture: source amd64
Version: 1:1.2.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description: 
 xserver-xorg-video-neomagic - X.Org X server -- Neomagic display driver
Changes: 
 xserver-xorg-video-neomagic (1:1.2.2-1) experimental; urgency=low
 .
   * New upstream release.
   * Run autoreconf on build; add build-deps on automake, libtool, xutils-dev.
   * Handle parallel builds.
   * Build against xserver 1.6 rc.
Checksums-Sha1: 
 acc6f2df8b5e4269b6b2caaa069d02b6cef34b1b 1622 
xserver-xorg-video-neomagic_1.2.2-1.dsc
 bfb8e6bc58bcb6872018898f5a74dfcfaff4803f 386197 
xserver-xorg-video-neomagic_1.2.2.orig.tar.gz
 d46b706914583a4b639ec8cdfc7d30065446420e 22109 
xserver-xorg-video-neomagic_1.2.2-1.diff.gz
 40f2b03a0b65d6c7a833b64aafa199e88f7eace8 45900 
xserver-xorg-video-neomagic_1.2.2-1_amd64.deb
Checksums-Sha256: 
 690dea277a5a5da193e672c134cc2a67a41894285100d573a8cd544b8c366ae9 1622 
xserver-xorg-video-neomagic_1.2.2-1.dsc
 de2959f4fc8bd8d340d7dded6e64765667a4bb9e43eff54c124b8897e9be90c2 386197 
xserver-xorg-video-neomagic_1.2.2.orig.tar.gz
 b0d5386d2e4bae1fbf40b3263f7d78a24cdd5741652d30f75065043580ab5cf9 22109 
xserver-xorg-video-neomagic_1.2.2-1.diff.gz
 29f5d971b86c90dc7b68ab745ba96777dd82dbee56eaf2dca5c4fbc71cfa4d34 45900 
xserver-xorg-video-neomagic_1.2.2-1_amd64.deb
Files: 
 698f1aa26e5117d919b98a42ab0568c3 1622 x11 optional 
xserver-xorg-video-neomagic_1.2.2-1.dsc
 0f6ab6e824ee0c83f4327635fe940266 386197 x11 optional 
xserver-xorg-video-neomagic_1.2.2.orig.tar.gz
 4c7736c9287c0bfc7a58ff4d4d7a16b4 22109 x11 optional 
xserver-xorg-video-neomagic_1.2.2-1.diff.gz
 9047f22dc0dc76ec7896374d67807ec6 45900 x11 optional 
xserver-xorg-video-neomagic_1.2.2-1_amd64.deb

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

iEYEARECAAYFAkmQgvoACgkQmEvTgKxfcAxO8QCePthRF80/9MKAAiTDxTqoQJK2
WDYAnA2AIAYXtIuwNh2D8vAIDHooPob9
=pREn
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-neomagic_1.2.2-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-neomagic/xserver-xorg-video-neomagic_1.2.2-1.diff.gz
xserver-xorg-video-neomagic_1.2.2-1.dsc
  to 
pool/main/x/xserver-xorg-video-neomagic/xserver-xorg-video-neomagic_1.2.2-1.dsc
xserver-xorg-video-neomagic_1.2.2-1_amd64.deb
  to 
pool/main/x/xserver-xorg-video-neomagic/xserver-xorg-video-neomagic_1.2.2-1_amd64.deb
xserver-xorg-video-neomagic_1.2.2.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-neomagic/xserver-xorg-video-neomagic_1.2.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 boson 0.13-5 (source i386)

2009-02-09 Thread Gonéri Le Bouder
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 08 Feb 2009 00:13:05 +0100
Source: boson
Binary: boson
Architecture: source i386
Version: 0.13-5
Distribution: experimental
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Gonéri Le Bouder gon...@rulezlan.org
Description: 
 boson  - core package for Boson
Closes: 514172
Changes: 
 boson (0.13-5) experimental; urgency=low
 .
   * Drop build dependency on xutils, libkdegames-dev and kdemultimedia-dev
 (Closes: #514172)
   * Bump the standard version to 3.8.0, no change
   * fix fix_desktop_files.diff, it was not correctly imported
   * Upload in experimental because of Lenny freeze
   * Clean quilt .pc directory
Checksums-Sha1: 
 7fa8b2e124f9a01d1c1e0c064c3361ee143e1b97 1423 boson_0.13-5.dsc
 4478f1bbe966dffaa48917b4c39d155e6a1c284e 31471 boson_0.13-5.diff.gz
 b9775bbdc2fb9441fb99915b935d476bef05feb2 7526306 boson_0.13-5_i386.deb
Checksums-Sha256: 
 3bbe7ecc6c69a635f0ba3d90c1891661660c16f88cca241b8697a392fe50b081 1423 
boson_0.13-5.dsc
 b3e501d5ebc1b304e180d1ce7c661c2f0b3e0331f41f399b64753f6b03d25be3 31471 
boson_0.13-5.diff.gz
 a9f53bde1141eba5f6c59aabb078b5d4a13ad149d7ca43f595a206db297ef0f2 7526306 
boson_0.13-5_i386.deb
Files: 
 f20ce4803df6d212168bf5bc73addcb0 1423 games optional boson_0.13-5.dsc
 7d2b8611c730a376eb365ff2563d4b79 31471 games optional boson_0.13-5.diff.gz
 0d45cfbddbc02a63808959347d1baa0c 7526306 games optional boson_0.13-5_i386.deb

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

iEYEARECAAYFAkmQfSsACgkQsKTFpDfZQSwkFACcCPmvGETId62/ExeXOi/3ymuB
g1cAoIYRw0GoARB9zs2GCKTgvP7RQRyF
=jmZx
-END PGP SIGNATURE-


Accepted:
boson_0.13-5.diff.gz
  to pool/main/b/boson/boson_0.13-5.diff.gz
boson_0.13-5.dsc
  to pool/main/b/boson/boson_0.13-5.dsc
boson_0.13-5_i386.deb
  to pool/main/b/boson/boson_0.13-5_i386.deb


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



Accepted reiser4progs 1.0.7-1 (source i386)

2009-02-09 Thread Felix Zielcke
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 08 Feb 2009 17:02:43 +0100
Source: reiser4progs
Binary: reiser4progs reiser4progs-udeb mkreiser4-udeb libreiser4-dev
Architecture: source i386
Version: 1.0.7-1
Distribution: unstable
Urgency: low
Maintainer: Felix Zielcke fziel...@z-51.de
Changed-By: Felix Zielcke fziel...@z-51.de
Description: 
 libreiser4-dev - Reiser4's filesystem access and manipulation library
 mkreiser4-udeb - user-level tool to make Reiser4 filesystems (udeb)
 reiser4progs - administration utilities for the Reiser4 filesystem
 reiser4progs-udeb - user-level tools to manage Reiser4 filesystems (udeb)
Closes: 483027 497413
Changes: 
 reiser4progs (1.0.7-1) unstable; urgency=low
 .
   * New maintainer (Closes: #483027)
   * New upstream version.
   * Rewrite build system using CDBS debhelper.mk.
 - configure udebs with `--with-readline=no' (Closes: #497413)
   * Switch quilt patch system to CDBS simple-patchsys.
   * Change download url in debian/copyright to the kernel.org one.
   * debian/patches/02_fix_ldconfig: New patch to run `run-ldconfig' from
 `$(top_srcdir)' instead of `./'
   * Change debhelper compat level to 6 and build-depend on it.
   * Add a debian/watch file.
Checksums-Sha1: 
 d80aa88011a128f6cefc489f2bd461f6e9da5215 1153 reiser4progs_1.0.7-1.dsc
 a9dca9374c139518661bdbdb3ad61d47237c2cd8 843225 reiser4progs_1.0.7.orig.tar.gz
 d8ca4d3e41156c80d8cadde22d5f046203feefcf 6566 reiser4progs_1.0.7-1.diff.gz
 3fe904c2f88a8df9d40a6709b273a8bca688b585 518594 reiser4progs_1.0.7-1_i386.deb
 5717560fc7236b07118887147f84260eabca1c09 385618 
reiser4progs-udeb_1.0.7-1_i386.udeb
 9a2d668677c305ee2e7a3fb58e416eb00b59dcfa 114706 
mkreiser4-udeb_1.0.7-1_i386.udeb
 0f2a1c4d2b1f8e96d4c3221131cefebae4761536 255078 libreiser4-dev_1.0.7-1_i386.deb
Checksums-Sha256: 
 ec1e86f73d0a6f0044919414d27fc3db94ee289943e1f2707fb19b494f2675eb 1153 
reiser4progs_1.0.7-1.dsc
 09d178a4f6f9ec8c6d1d7a2640650d7fb8cfc328ac05b0a49188fd77361f9d8e 843225 
reiser4progs_1.0.7.orig.tar.gz
 da615d323aeb73682276ffa14b3d2d16a72c83df5cbf5e1af3cb5ee7a591850b 6566 
reiser4progs_1.0.7-1.diff.gz
 ff2b379a98fd5195780a549db088061dc97034443df17d205e004c03ab8024e0 518594 
reiser4progs_1.0.7-1_i386.deb
 ae78465252ff35ff675281657fdf1325de4abb2a53a5599a37696af51d4b9cc0 385618 
reiser4progs-udeb_1.0.7-1_i386.udeb
 b9a4b69d6005355c21e1068386c5f84ca2638720183e1962434f6a5fa6433e1a 114706 
mkreiser4-udeb_1.0.7-1_i386.udeb
 4bc1fc6e554196ed05a7d3c02d7b438e7412d0497612c679e7dd7bd7b2c73eae 255078 
libreiser4-dev_1.0.7-1_i386.deb
Files: 
 d487362880da403955aca52a2ca27241 1153 admin optional reiser4progs_1.0.7-1.dsc
 2c6152db615524b5c441e25d4b4d2bbf 843225 admin optional 
reiser4progs_1.0.7.orig.tar.gz
 9994e6b0553cd54669a73896692d2144 6566 admin optional 
reiser4progs_1.0.7-1.diff.gz
 3c2faa94c0aab9d00e7399314d707131 518594 admin optional 
reiser4progs_1.0.7-1_i386.deb
 e96e93ae48f420ae8ca70d0aab225b66 385618 debian-installer optional 
reiser4progs-udeb_1.0.7-1_i386.udeb
 17e5cd723044429be5f10fafd5b7534f 114706 debian-installer optional 
mkreiser4-udeb_1.0.7-1_i386.udeb
 e18d31ec3ad06c5e64fe750a7fa78e58 255078 libdevel extra 
libreiser4-dev_1.0.7-1_i386.deb
Package-Type: udeb

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

iEYEARECAAYFAkmQg/EACgkQ5ItltUs5T34+UACfSFvx0Vgvq1EYpMQdGTkELIME
LKcAoKZWWwcYtmG4fxQkgKT0tESJNAu0
=w/o2
-END PGP SIGNATURE-


Accepted:
libreiser4-dev_1.0.7-1_i386.deb
  to pool/main/r/reiser4progs/libreiser4-dev_1.0.7-1_i386.deb
mkreiser4-udeb_1.0.7-1_i386.udeb
  to pool/main/r/reiser4progs/mkreiser4-udeb_1.0.7-1_i386.udeb
reiser4progs-udeb_1.0.7-1_i386.udeb
  to pool/main/r/reiser4progs/reiser4progs-udeb_1.0.7-1_i386.udeb
reiser4progs_1.0.7-1.diff.gz
  to pool/main/r/reiser4progs/reiser4progs_1.0.7-1.diff.gz
reiser4progs_1.0.7-1.dsc
  to pool/main/r/reiser4progs/reiser4progs_1.0.7-1.dsc
reiser4progs_1.0.7-1_i386.deb
  to pool/main/r/reiser4progs/reiser4progs_1.0.7-1_i386.deb
reiser4progs_1.0.7.orig.tar.gz
  to pool/main/r/reiser4progs/reiser4progs_1.0.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 iptables 1.4.2-6 (source amd64)

2009-02-09 Thread Laurence J. Lane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 14:31:24 -0500
Source: iptables
Binary: iptables iptables-dev
Architecture: source amd64
Version: 1.4.2-6
Distribution: unstable
Urgency: high
Maintainer: Laurence J. Lane ljl...@debian.org
Changed-By: Laurence J. Lane ljl...@debian.org
Description: 
 iptables   - administration tools for packet filtering and NAT
 iptables-dev - development files for iptable's libipq
Closes: 502548
Changes: 
 iptables (1.4.2-6) unstable; urgency=high
 .
   * added missing conntrack numeric fix. Reported by Bernhard Miklautz.
 Fixed in upstream git repo. Thanks. Closes: #502548
Checksums-Sha1: 
 9e2b8040968a8eebc6157773cde2459d2b7fab53 1043 iptables_1.4.2-6.dsc
 9634a6382ad76ca61dd60ee147f323c5a7e4bf7c 52210 iptables_1.4.2-6.diff.gz
 ac93f623e81731809efcb5d333c4007076c684a6 449492 iptables_1.4.2-6_amd64.deb
 d2e155cf3f97066a23a84821dd933d0b178c7ef6 46042 iptables-dev_1.4.2-6_amd64.deb
Checksums-Sha256: 
 29ee8d2dc6f555e820555c7bfb4794e7b0b7bd2078c1fa06fba5499cb50bf648 1043 
iptables_1.4.2-6.dsc
 ee1a11aefffaccd084edee2f47c88de01781ae4c12f30b91e7583c9f44d163a7 52210 
iptables_1.4.2-6.diff.gz
 c17702babec8f7ea68d0efc458272eb8119354dcebf28dcf3312dc0754ca2d79 449492 
iptables_1.4.2-6_amd64.deb
 e094d830f32b81f13f16037553b4e1772ad47ed404b24dbe2004970f0e04da3b 46042 
iptables-dev_1.4.2-6_amd64.deb
Files: 
 5ab7d94bf8d8b7daf38a12153df5a327 1043 net important iptables_1.4.2-6.dsc
 2cdaaf560096d48ef499955db45f5398 52210 net important iptables_1.4.2-6.diff.gz
 375d951a17af81f7e56d9fc054587761 449492 net important 
iptables_1.4.2-6_amd64.deb
 1e0306749b1a7181009c6f2cc830fdb9 46042 devel optional 
iptables-dev_1.4.2-6_amd64.deb

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

iEUEARECAAYFAkmQhhAACgkQxJBkNlXToemptACghoWQjRm0r6bp++nU35KDMfUN
/qcAl0nw/RDe3fMACbbKt5paQdVOAjQ=
=wl4E
-END PGP SIGNATURE-


Accepted:
iptables-dev_1.4.2-6_amd64.deb
  to pool/main/i/iptables/iptables-dev_1.4.2-6_amd64.deb
iptables_1.4.2-6.diff.gz
  to pool/main/i/iptables/iptables_1.4.2-6.diff.gz
iptables_1.4.2-6.dsc
  to pool/main/i/iptables/iptables_1.4.2-6.dsc
iptables_1.4.2-6_amd64.deb
  to pool/main/i/iptables/iptables_1.4.2-6_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 sl-modem 2.9.11~20080817-2 (source i386)

2009-02-09 Thread Ahmed El-Mahmoudy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun,  7 Feb 2009 19:22:44 +0200
Source: sl-modem
Binary: sl-modem-source sl-modem-daemon
Architecture: source i386
Version: 2.9.11~20080817-2
Distribution: unstable
Urgency: low
Maintainer: أحمد المحمودي (Ahmed El-Mahmoudy) 
aelmahmo...@users.sourceforge.net
Changed-By: أحمد المحمودي (Ahmed El-Mahmoudy) 
aelmahmo...@users.sourceforge.net
Description: 
 sl-modem-daemon - SmartLink software modem daemon
 sl-modem-source - SmartLink software modem driver - module building source
Closes: 421867 507340 512332 513326 51 513378 513603 513704 513713 513802 
513966 514280 514355 514387
Changes: 
 sl-modem (2.9.11~20080817-2) unstable; urgency=low
 .
   * Modified home dir of Slmodemd to /var/log/slmodemd. (Closes: #507340)
   * Added support for DKMS:
 + debian/control: added dkms to sl-modem-source's Recommends field.
 + debian/control: updated long description for sl-modem-source.
 + Added debian/dkms.conf.in.
 + debian/rules: copy dkms.conf.in to
   debian/sl-modem-source/usr/src/modules/sl-modem/dkms.conf
 + Added sl-modem-source.prerm and sl-modem-source.postinst
   * debian/postinst: create /var/lib/slmodem with proper permissions. (Closes:
 #421867)
   * debian/prerm: remove /var/lib/slmodem on uninstall.
   * debian/control:
 + Add ${misc:Depends} to Depends field for sl-modem-daemon and
   sl-modem-source.
 + Add quilt to sl-modem-source's Depends field. (Closes: #512332)
 + Added Homepage field.
   * Added descriptions to patch files.
   * Remove 04_sregs_init.diff patch as it turned to be obsoleted since
 2.9.9e-pre1a.
   * Added set -e to maintainer scripts.
   * sl-modem-daemon.templates: changed the extended description.
   * Translation updates: Arabic, Basque, Russian, Swedish, Italian, Czech,
 German, Portuguese, French, Spanish (Closes: #513326, #513378, #513603,
 #51, #513704, #513713, #513966, #514280, #514355).
   * Added translations: Vietnamese, Slovak (Closes: #513802, #514387).
Checksums-Sha1: 
 48cf3a38612a52ebc0c408988644f4027ce35cac 1374 sl-modem_2.9.11~20080817-2.dsc
 c80082e78a079cd11a52300865f946a9b1086103 31387 
sl-modem_2.9.11~20080817-2.diff.gz
 3cfca1740cce2ac690e8bb300e19b392af55adfd 496822 
sl-modem-source_2.9.11~20080817-2_i386.deb
 a3a719c7ec7d471d5d8ee673cebb592cfdafa0c2 511880 
sl-modem-daemon_2.9.11~20080817-2_i386.deb
Checksums-Sha256: 
 6730e2031ce9ca5f9106029036ba397cb2b7ddc0a3615cc6ac027055e7f5c2c2 1374 
sl-modem_2.9.11~20080817-2.dsc
 24899c6d8c9694d2f657eedfa213961287f7fd101336acf4257521abde929394 31387 
sl-modem_2.9.11~20080817-2.diff.gz
 586d15dd4e4548941cf59d7a3a4badea55f0791d63c2fb486d2d7cbb54a799d7 496822 
sl-modem-source_2.9.11~20080817-2_i386.deb
 8f825286ca7d1c424eecb4afefb502d7b29180982a666b853be909f4e1b3c67e 511880 
sl-modem-daemon_2.9.11~20080817-2_i386.deb
Files: 
 51667fb6f8a2df150f0419209f4f840a 1374 non-free/misc optional 
sl-modem_2.9.11~20080817-2.dsc
 0ed5c264a0c9aef833390776de882cf4 31387 non-free/misc optional 
sl-modem_2.9.11~20080817-2.diff.gz
 c99e29b217c842d91b53ce36124c6bd4 496822 non-free/misc optional 
sl-modem-source_2.9.11~20080817-2_i386.deb
 ab3561e7fec649a408e50992dc6449b3 511880 non-free/misc optional 
sl-modem-daemon_2.9.11~20080817-2_i386.deb

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

iEYEARECAAYFAkmQgMsACgkQ5ItltUs5T34tbwCg4fuB5PNp3TlJXvaBxIeux1CV
+xQAn0FrW/7K7WSKBhkMkMhG//oBWHkO
=/1TT
-END PGP SIGNATURE-


Accepted:
sl-modem-daemon_2.9.11~20080817-2_i386.deb
  to pool/non-free/s/sl-modem/sl-modem-daemon_2.9.11~20080817-2_i386.deb
sl-modem-source_2.9.11~20080817-2_i386.deb
  to pool/non-free/s/sl-modem/sl-modem-source_2.9.11~20080817-2_i386.deb
sl-modem_2.9.11~20080817-2.diff.gz
  to pool/non-free/s/sl-modem/sl-modem_2.9.11~20080817-2.diff.gz
sl-modem_2.9.11~20080817-2.dsc
  to pool/non-free/s/sl-modem/sl-modem_2.9.11~20080817-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 vim-syntax-gtk 20090105-1 (source all)

2009-02-09 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 20:52:49 +0100
Source: vim-syntax-gtk
Binary: vim-syntax-gtk
Architecture: source all
Version: 20090105-1
Distribution: unstable
Urgency: low
Maintainer: Laurent Bigonville bi...@debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 vim-syntax-gtk - Syntax files to highlight GTK+ keywords in vim
Closes: 513991
Changes: 
 vim-syntax-gtk (20090105-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #513991)
 (thanks to Michael Kuhn michael.k...@stud.uni-heidelberg.de)
 - Added Evince and GIO support.
Checksums-Sha1: 
 dd68e6f22edd8ecd8fd4dfb535868213b27e2642 1236 vim-syntax-gtk_20090105-1.dsc
 d7fce15205e4231590dae3d4d32f1c59c619dda9 155020 
vim-syntax-gtk_20090105.orig.tar.gz
 02384cf6a9d51373d5e7d52279e2d92a90f1a4d7 2716 vim-syntax-gtk_20090105-1.diff.gz
 edded8a804415d495049db83cef6d34a1af6bb1c 158284 
vim-syntax-gtk_20090105-1_all.deb
Checksums-Sha256: 
 d87194952d761918416d73fa382f78f461391477277aab8792ee1a6f2c138109 1236 
vim-syntax-gtk_20090105-1.dsc
 b74af4cd0d0184a8e8f7b496e0398140d7f4f20c5c7714ad2f929842c2c65ae4 155020 
vim-syntax-gtk_20090105.orig.tar.gz
 172a63a5f80143c97ecb3daec23cada71a87b232a05224aa47a0d418161d23ec 2716 
vim-syntax-gtk_20090105-1.diff.gz
 0a4987b2d16eb34b6e754b7221f3aea5041aa992127f86b92bcd3cc95678eff5 158284 
vim-syntax-gtk_20090105-1_all.deb
Files: 
 291148e35e2ae4f35351e13bc998a133 1236 editors optional 
vim-syntax-gtk_20090105-1.dsc
 9b135849051cd5812a5838326bbe921a 155020 editors optional 
vim-syntax-gtk_20090105.orig.tar.gz
 69f6689abdf9d21aa953a868759c5556 2716 editors optional 
vim-syntax-gtk_20090105-1.diff.gz
 19632b4aa6dfa6b41be4f3155a98282a 158284 editors optional 
vim-syntax-gtk_20090105-1_all.deb

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

iEYEARECAAYFAkmQjXIACgkQdkeBByM7nqAlzgCeMwrv/u0or7f74ALyOYWWhoWo
QkEAoIVzfrDaVXXhPU1nCW7D5G7pAo3f
=zt6N
-END PGP SIGNATURE-


Accepted:
vim-syntax-gtk_20090105-1.diff.gz
  to pool/main/v/vim-syntax-gtk/vim-syntax-gtk_20090105-1.diff.gz
vim-syntax-gtk_20090105-1.dsc
  to pool/main/v/vim-syntax-gtk/vim-syntax-gtk_20090105-1.dsc
vim-syntax-gtk_20090105-1_all.deb
  to pool/main/v/vim-syntax-gtk/vim-syntax-gtk_20090105-1_all.deb
vim-syntax-gtk_20090105.orig.tar.gz
  to pool/main/v/vim-syntax-gtk/vim-syntax-gtk_20090105.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 eject 2.1.5+deb1+cvs20081104-3 (source amd64)

2009-02-09 Thread Frank Lichtenheld
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 21:24:28 +0100
Source: eject
Binary: eject eject-udeb
Architecture: source amd64
Version: 2.1.5+deb1+cvs20081104-3
Distribution: experimental
Urgency: low
Maintainer: Frank Lichtenheld dj...@debian.org
Changed-By: Frank Lichtenheld dj...@debian.org
Description: 
 eject  - ejects CDs and operates CD-Changers under Linux
 eject-udeb - ejects CDs from d-i menu (udeb)
Closes: 511142 514589
Changes: 
 eject (2.1.5+deb1+cvs20081104-3) experimental; urgency=low
 .
   [ Christian Perrier ]
   * Debconf translations:
 - Asturian added. Closes: #511142
 - Kazakh added. Closes: #514589
Checksums-Sha1: 
 6bb1b069aea6d4a18ed487b5249444faa00c7410 1320 
eject_2.1.5+deb1+cvs20081104-3.dsc
 47ad1b7864987c939c8760da3560f97793818a59 127654 
eject_2.1.5+deb1+cvs20081104-3.diff.gz
 9545b7ddcad75cc76de085d0758a68f0442b91ef 53416 
eject_2.1.5+deb1+cvs20081104-3_amd64.deb
 af3fb136b1fda00c3067ad27b72925cf40b23e1c 33538 
eject-udeb_2.1.5+deb1+cvs20081104-3_amd64.udeb
Checksums-Sha256: 
 c6cf940badf6545709655abcba91220c70499c09bff442901e77a7ea0c454695 1320 
eject_2.1.5+deb1+cvs20081104-3.dsc
 7c8fb91494cc5cdedf97b29f0a196d881d087dc5ccc2c72f2dd6733a55ba01bf 127654 
eject_2.1.5+deb1+cvs20081104-3.diff.gz
 4813717613fcaaa7fced77daf48168454dd2839bda7937118079bb3d501fe4ac 53416 
eject_2.1.5+deb1+cvs20081104-3_amd64.deb
 e6fe5ac85ae4dfbe1f2041ce70d41b76540d15e6752a5e912c78774788b34ba1 33538 
eject-udeb_2.1.5+deb1+cvs20081104-3_amd64.udeb
Files: 
 0f7bf33a64ec6c6ca243600e4f1fded0 1320 utils optional 
eject_2.1.5+deb1+cvs20081104-3.dsc
 a66d1ea99e1210c014b8636d18633fa5 127654 utils optional 
eject_2.1.5+deb1+cvs20081104-3.diff.gz
 b321221a85fee2cbde640584917c9315 53416 utils optional 
eject_2.1.5+deb1+cvs20081104-3_amd64.deb
 dfd062fc92f441a625c34535eeb4a561 33538 debian-installer optional 
eject-udeb_2.1.5+deb1+cvs20081104-3_amd64.udeb
Package-Type: udeb

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

iEYEARECAAYFAkmQmHkACgkQQbn06FtxPfCtYACgszAEp/zB4kjcOHCDrI+WivPN
dLYAn1XlypH3t4UkhPw5P+BF5CfbVqK/
=LJ10
-END PGP SIGNATURE-


Accepted:
eject-udeb_2.1.5+deb1+cvs20081104-3_amd64.udeb
  to pool/main/e/eject/eject-udeb_2.1.5+deb1+cvs20081104-3_amd64.udeb
eject_2.1.5+deb1+cvs20081104-3.diff.gz
  to pool/main/e/eject/eject_2.1.5+deb1+cvs20081104-3.diff.gz
eject_2.1.5+deb1+cvs20081104-3.dsc
  to pool/main/e/eject/eject_2.1.5+deb1+cvs20081104-3.dsc
eject_2.1.5+deb1+cvs20081104-3_amd64.deb
  to pool/main/e/eject/eject_2.1.5+deb1+cvs20081104-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 migrate 0.5.1.2-1 (source all)

2009-02-09 Thread Jan Dittberner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 07 Feb 2009 23:13:31 +0100
Source: migrate
Binary: python-migrate
Architecture: source all
Version: 0.5.1.2-1
Distribution: experimental
Urgency: low
Maintainer: Jan Dittberner j...@dittberner.info
Changed-By: Jan Dittberner j...@dittberner.info
Description: 
 python-migrate - Database schema migration for SQLAlchemy
Changes: 
 migrate (0.5.1.2-1) experimental; urgency=low
 .
   * New upstream version
   * remove debian/patches/disable_py.dpatch because py is not used by
 upstream anymore
   * remove unused debian/patches/00dpatch.conf and debian/patches/00list
   * debian/rules:
 - remove dpatch support because it's not needed
 - build sphinx documentation in html
 - don't compress .rst files
   * debian/dirs:
 - remove docs suffix from /usr/share/doc/python-migrate
   * debian/control:
 - remove dpatch from Build-Depends
 - remove python-docutils from Build-Depends-Indep
 - add python-sphinx to Build-Depends-Indep and Depends
 - bump python-sqlalchemy's minimum required version
   * add debian/migrate-repository repository migration script
   * add debian/migrate-repository.1 man page for migrate-repository
   * remove debian/README.source because of dpatch removal
Checksums-Sha1: 
 6ffe9c604cc43f1c864542dc99b022accac5a6cb 1437 migrate_0.5.1.2-1.dsc
 453c94eebb463205641a23d3b8e668ceb1735e61 77743 migrate_0.5.1.2.orig.tar.gz
 d7fcada820aa09b3bdd8cdbe7c67dce9ca8bbc80 4301 migrate_0.5.1.2-1.diff.gz
 cc2e8839a7775f6975ef27fa8412de50bf81e516 67694 python-migrate_0.5.1.2-1_all.deb
Checksums-Sha256: 
 a6c3b440f4decf26e6914e96fb3bc2a44e73e1b57b0686cc6eba9c667cc6a3fe 1437 
migrate_0.5.1.2-1.dsc
 5cd78352ccfa28e181b0dcb88da32e73cd5fbea8156ecb3e78aef1a9899c1ca8 77743 
migrate_0.5.1.2.orig.tar.gz
 2f7f7a20f149b32dcb2c3e41626fbe46d170d0571ace5be18d6877a78716db40 4301 
migrate_0.5.1.2-1.diff.gz
 1d1da26bcdeb400794288612568aae971c5b2ad37d0b0ae6efea983059e51413 67694 
python-migrate_0.5.1.2-1_all.deb
Files: 
 9f2fdc44e73d375164fee062cfea5b14 1437 python optional migrate_0.5.1.2-1.dsc
 547d692b1ab58186535a0e41aef4b378 77743 python optional 
migrate_0.5.1.2.orig.tar.gz
 90f40bee9d695512aa9bf3fa9de07613 4301 python optional migrate_0.5.1.2-1.diff.gz
 421a28af70343bd7e30ab310dba9b1b8 67694 python optional 
python-migrate_0.5.1.2-1_all.deb

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

iEYEARECAAYFAkmQkygACgkQB01zfu119Zkw+wCfa9Nolp2fwV6e3q1gg9zJKjEJ
s5AAnjzVc/az+7wUNstf1xMJU2a9zJHJ
=tVoA
-END PGP SIGNATURE-


Accepted:
migrate_0.5.1.2-1.diff.gz
  to pool/main/m/migrate/migrate_0.5.1.2-1.diff.gz
migrate_0.5.1.2-1.dsc
  to pool/main/m/migrate/migrate_0.5.1.2-1.dsc
migrate_0.5.1.2.orig.tar.gz
  to pool/main/m/migrate/migrate_0.5.1.2.orig.tar.gz
python-migrate_0.5.1.2-1_all.deb
  to pool/main/m/migrate/python-migrate_0.5.1.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 gedit-latex-plugin 0.2rc1-1 (source all)

2009-02-09 Thread Andrea Gasparini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 04 Feb 2009 15:59:34 +0100
Source: gedit-latex-plugin
Binary: gedit-latex-plugin
Architecture: source all
Version: 0.2rc1-1
Distribution: unstable
Urgency: low
Maintainer: Andrea Gasparini ga...@yattaweb.it
Changed-By: Andrea Gasparini ga...@yattaweb.it
Description: 
 gedit-latex-plugin - GEdit plugin for composing and compiling LaTeX documents
Changes: 
 gedit-latex-plugin (0.2rc1-1) unstable; urgency=low
 .
   * New Upstream version
   * debian/control: added texlive as Recommends, set all as Architecture.
   * debian/patches: fixed a reference before assignment in latex/dialog.py
Checksums-Sha1: 
 ff8ea970d6c1906b6b4d5a85c9106d36a65ae000 1072 gedit-latex-plugin_0.2rc1-1.dsc
 9074f25c6d21218d92ef697aef3d13d91ff0e0dd 179571 
gedit-latex-plugin_0.2rc1.orig.tar.gz
 0f728388f533d028bcb1292638dd598c285dd1a7 2706 
gedit-latex-plugin_0.2rc1-1.diff.gz
 1f38ccc8ba90c09e96196bd2eb7e804ac7383c7a 178988 
gedit-latex-plugin_0.2rc1-1_all.deb
Checksums-Sha256: 
 06bfd1ba8b9cb1dae2baa46b87e2f9dd0acad78387df26c69effed606cc304fc 1072 
gedit-latex-plugin_0.2rc1-1.dsc
 9d8465084a4ece45fef5f1c1d1c5ed5d38fb5cdded6f1afba329d159cd678389 179571 
gedit-latex-plugin_0.2rc1.orig.tar.gz
 0450cbd28208981cc6ec310128d64f33934bfcd266ac6aed6c38569f312428d6 2706 
gedit-latex-plugin_0.2rc1-1.diff.gz
 ba7cb86a842d6e39ba7b155fc174735cb3f909deb3bbc4d4f895a0f3b99ce4bf 178988 
gedit-latex-plugin_0.2rc1-1_all.deb
Files: 
 fd3c881046db000348e177bb880fe235 1072 gnome extra 
gedit-latex-plugin_0.2rc1-1.dsc
 6a2648656515357ae1853c9f00250c08 179571 gnome extra 
gedit-latex-plugin_0.2rc1.orig.tar.gz
 0152a004f751265828b2cf769ebca635 2706 gnome extra 
gedit-latex-plugin_0.2rc1-1.diff.gz
 90001a76d5114f6c4e518127bb349010 178988 gnome extra 
gedit-latex-plugin_0.2rc1-1_all.deb

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

iEYEARECAAYFAkmQnDcACgkQhImxTYgHUptpSgCcDeVRL+By3WejOMjcAjGNNGni
tJwAnjYlALJsoO95mJK90uZ+lN4wvDuF
=DkNT
-END PGP SIGNATURE-


Accepted:
gedit-latex-plugin_0.2rc1-1.diff.gz
  to pool/main/g/gedit-latex-plugin/gedit-latex-plugin_0.2rc1-1.diff.gz
gedit-latex-plugin_0.2rc1-1.dsc
  to pool/main/g/gedit-latex-plugin/gedit-latex-plugin_0.2rc1-1.dsc
gedit-latex-plugin_0.2rc1-1_all.deb
  to pool/main/g/gedit-latex-plugin/gedit-latex-plugin_0.2rc1-1_all.deb
gedit-latex-plugin_0.2rc1.orig.tar.gz
  to pool/main/g/gedit-latex-plugin/gedit-latex-plugin_0.2rc1.orig.tar.gz


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



Accepted xserver-xorg-video-ati 1:6.10.99.0-1 (source i386)

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

Format: 1.8
Date: Mon, 09 Feb 2009 22:51:40 +0100
Source: xserver-xorg-video-ati
Binary: xserver-xorg-video-ati xserver-xorg-video-ati-dbg 
xserver-xorg-video-radeon xserver-xorg-video-radeon-dbg
Architecture: source i386
Version: 1:6.10.99.0-1
Distribution: experimental
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Brice Goglin bgog...@debian.org
Description: 
 xserver-xorg-video-ati - X.Org X server -- ATI display driver wrapper
 xserver-xorg-video-ati-dbg - X.Org X server -- ATI display driver wrapper 
(debugging symbols)
 xserver-xorg-video-radeon - X.Org X server -- ATI Radeon display driver
 xserver-xorg-video-radeon-dbg - X.Org X server -- ATI Radeon display driver 
(debugging symbols)
Changes: 
 xserver-xorg-video-ati (1:6.10.99.0-1) experimental; urgency=low
 .
   * New upstream release candidate.
Checksums-Sha1: 
 77e14293b31425b8cc8f91191bd8ff4b79e8cad3 1856 
xserver-xorg-video-ati_6.10.99.0-1.dsc
 15ad692cbfe6392d04d63372c3342a65913346c3 1050876 
xserver-xorg-video-ati_6.10.99.0.orig.tar.gz
 45c07b98835fc2fc18459df0770ca0d9069683db 22836 
xserver-xorg-video-ati_6.10.99.0-1.diff.gz
 a5fdaadd0905b4b496743214d026c1199d67bddc 174110 
xserver-xorg-video-ati_6.10.99.0-1_i386.deb
 2083b43e41e54b003f64706cf6374e183f763f29 178452 
xserver-xorg-video-ati-dbg_6.10.99.0-1_i386.deb
 715970c87dedbcff928156c95c3f9a10c9842e6a 416150 
xserver-xorg-video-radeon_6.10.99.0-1_i386.deb
 ea405998dd6b16737b834a43759c1121000652c0 1273552 
xserver-xorg-video-radeon-dbg_6.10.99.0-1_i386.deb
Checksums-Sha256: 
 87268294c2d6a43c213732f7d886cb37ed59984499d152a8942671c1d8fa6b07 1856 
xserver-xorg-video-ati_6.10.99.0-1.dsc
 1e82188adb710a854578606d8fbe4e6cd5d3b9bec413a0c0d6bd25ae39ab0c51 1050876 
xserver-xorg-video-ati_6.10.99.0.orig.tar.gz
 c6aa9368bb6de3122a9ece5f4d3eed8c3fb35831c4381b37d82d82227b3a20bd 22836 
xserver-xorg-video-ati_6.10.99.0-1.diff.gz
 08b8858247ec4fb86419d685179c91b2d9c5df43fa1dfd3d98daead118ba1581 174110 
xserver-xorg-video-ati_6.10.99.0-1_i386.deb
 c2c845ffce2262838724f1e1b48a2f859ea5b30b33fad8b9532b6b37e3696f43 178452 
xserver-xorg-video-ati-dbg_6.10.99.0-1_i386.deb
 e9e354c2a14068bec276cecb203089f977c2cecac89b1742432524694d6e46d8 416150 
xserver-xorg-video-radeon_6.10.99.0-1_i386.deb
 53bbc4dce7caee17e7babe30aae6e0cb62e958fddc93157b8cc302923ed43fa0 1273552 
xserver-xorg-video-radeon-dbg_6.10.99.0-1_i386.deb
Files: 
 dcf9447a2fcd60d866dae086ea8ca718 1856 x11 optional 
xserver-xorg-video-ati_6.10.99.0-1.dsc
 bc62be84ae411eea1a95d30c9a5baf9d 1050876 x11 optional 
xserver-xorg-video-ati_6.10.99.0.orig.tar.gz
 d4f7200949add3de0aa08726a5368d57 22836 x11 optional 
xserver-xorg-video-ati_6.10.99.0-1.diff.gz
 a66953266d551b124c8832d6c6897108 174110 x11 optional 
xserver-xorg-video-ati_6.10.99.0-1_i386.deb
 324b01802c4dab52818d2c72f3a6f740 178452 x11 extra 
xserver-xorg-video-ati-dbg_6.10.99.0-1_i386.deb
 7759ea239c3e97204ae41614412cde6e 416150 x11 optional 
xserver-xorg-video-radeon_6.10.99.0-1_i386.deb
 5a27dea4f9503ec686b38dbdb859de38 1273552 x11 extra 
xserver-xorg-video-radeon-dbg_6.10.99.0-1_i386.deb

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

iEYEARECAAYFAkmQp48ACgkQRh88F8PcWfpLkACgklL8yErmTi5a0whM43cKOo9g
OR0AniJU3jesqbRVEyNkaxz0vdqrocsc
=vLqN
-END PGP SIGNATURE-


Accepted:
xserver-xorg-video-ati-dbg_6.10.99.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati-dbg_6.10.99.0-1_i386.deb
xserver-xorg-video-ati_6.10.99.0-1.diff.gz
  to 
pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.10.99.0-1.diff.gz
xserver-xorg-video-ati_6.10.99.0-1.dsc
  to pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.10.99.0-1.dsc
xserver-xorg-video-ati_6.10.99.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.10.99.0-1_i386.deb
xserver-xorg-video-ati_6.10.99.0.orig.tar.gz
  to 
pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-ati_6.10.99.0.orig.tar.gz
xserver-xorg-video-radeon-dbg_6.10.99.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon-dbg_6.10.99.0-1_i386.deb
xserver-xorg-video-radeon_6.10.99.0-1_i386.deb
  to 
pool/main/x/xserver-xorg-video-ati/xserver-xorg-video-radeon_6.10.99.0-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 trickle 1.07-6 (source amd64)

2009-02-09 Thread Robert Lemmen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 02 Feb 2009 17:43:16 +
Source: trickle
Binary: trickle
Architecture: source amd64
Version: 1.07-6
Distribution: unstable
Urgency: low
Maintainer: rober...@semistable.com
Changed-By: Robert Lemmen rober...@semistable.com
Description: 
 trickle- user-space bandwidth shaper
Closes: 513456
Changes: 
 trickle (1.07-6) unstable; urgency=low
 .
   * Disables default loading of the .so from the local dir, this might be a
 security issue (closes: #513456)
   * Added dependency to libbsd and modified build scripts to fix FTBFS under
 lenny
   * Bumped Standards-Version since it is compliant with the new version without
 further changes
Checksums-Sha1: 
 14c13a3a324266dd443f20e48b796ce0b8c63394 988 trickle_1.07-6.dsc
 77b04181020f9e9f0c51595b7ddcbe1a8885236e 243038 trickle_1.07-6.diff.gz
 c807ca1b95792d30bfeb8defcbd2b8e4bd9b3487 43368 trickle_1.07-6_amd64.deb
Checksums-Sha256: 
 e7d0637d9cc0e606e831a4e15c19d5ea1d6c7cfb36f825d76cbb5962958a6351 988 
trickle_1.07-6.dsc
 9aa084fb6a1a4d62bb982ad8303922b8a334a4245c7fdeef75ba6442f63411a2 243038 
trickle_1.07-6.diff.gz
 49e4fab8785e9a38ea16917bcbcbcc9f0a5cfe9b8dc74f97047bc614e59ac50b 43368 
trickle_1.07-6_amd64.deb
Files: 
 ebb566b13ebc7c6653074a7b54744742 988 net optional trickle_1.07-6.dsc
 b037af3d26b3d5bd0df3d6489935a711 243038 net optional trickle_1.07-6.diff.gz
 636633d3d2674aedc95eb69828b5f50f 43368 net optional trickle_1.07-6_amd64.deb

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

iD8DBQFJkKiQS6AOchRbaWYRAnOFAKC64UFJavpngP72k1kUfLP6PcNVxwCgmqGM
8wNpM1ax5M5awmqbOQ6vzvU=
=P1Ep
-END PGP SIGNATURE-


Accepted:
trickle_1.07-6.diff.gz
  to pool/main/t/trickle/trickle_1.07-6.diff.gz
trickle_1.07-6.dsc
  to pool/main/t/trickle/trickle_1.07-6.dsc
trickle_1.07-6_amd64.deb
  to pool/main/t/trickle/trickle_1.07-6_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 html2wml 0.4.11-1 (source all)

2009-02-09 Thread Werner Heuser
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon,  9 Jan 2009 13:08:10 +0100
Source: html2wml
Binary: html2wml
Architecture: source all
Version: 0.4.11-1
Distribution: unstable
Urgency: low
Maintainer: Werner Heuser w...@debian.org
Changed-By: Werner Heuser w...@debian.org
Description: 
 html2wml   - converts HTML pages to WML (WAP) or i-mode pages
Changes: 
 html2wml (0.4.11-1) unstable; urgency=low
 .
   * New upstream release
   * Standards-Version: bumped to 3.7.2. No changes.
   * Suggests: iceweasel and wapua have been added
   * Description: iceweasel WAP plugin and wapua as a means to view
 the results of html2wml are now mentioned
   * Build-Depends: debhelper has been bumped to 5 and greater
   * DESTDIR has been added to clean target in rules file, to avoid a
 build error
   * moved DH_COMPAT from rules to compat
   * polished copyright file: author(s) - author
   * download address changed in copyright file
Checksums-Sha1: 
 525698f3379b98f4d1e7053049ca84716bfb 954 html2wml_0.4.11-1.dsc
 58e5014a98c3b203599c8b2ce8929d82aa4ffc26 114379 html2wml_0.4.11.orig.tar.gz
 5721100ab1f22f9d54339feb6790c8b9972b5ef7 3111 html2wml_0.4.11-1.diff.gz
 ac05345df6ccec312772cf3320d4dda42821821c 109472 html2wml_0.4.11-1_all.deb
Checksums-Sha256: 
 dce77558c7b7b11a97e7a25564dac5edf5095c3ce3db13847083adefd4f707fc 954 
html2wml_0.4.11-1.dsc
 f35b4c3599f7dd61aabc119ecaa5a224f476f880a0bab678f98c997a536d5928 114379 
html2wml_0.4.11.orig.tar.gz
 b4e5972e3646fb6437a16803174d8183e3ac4d8542295e9373aa8794269a1cfc 3111 
html2wml_0.4.11-1.diff.gz
 677d35b4bfcb56f7f66f1d5e839f9ff5e1ca957d5c02b2aeea5c5304d296461d 109472 
html2wml_0.4.11-1_all.deb
Files: 
 a28333e66f6d49a0c93d9a8b4e1d3e08 954 web optional html2wml_0.4.11-1.dsc
 a65c1d6bb9c5e0a12113bcee33762f12 114379 web optional 
html2wml_0.4.11.orig.tar.gz
 0aa36897f365d55825558ebe31da1d39 3111 web optional html2wml_0.4.11-1.diff.gz
 f0e67068951c1aada8dae26b144a80eb 109472 web optional html2wml_0.4.11-1_all.deb

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

iEYEARECAAYFAkmQcW8ACgkQTo5vwBMoL/K8wgCdGAH9sEmjYAfOXb+iR6E++1wZ
GIQAoJdzAfRmE2DuBxziweR00ACADvCu
=K+W6
-END PGP SIGNATURE-


Accepted:
html2wml_0.4.11-1.diff.gz
  to pool/main/h/html2wml/html2wml_0.4.11-1.diff.gz
html2wml_0.4.11-1.dsc
  to pool/main/h/html2wml/html2wml_0.4.11-1.dsc
html2wml_0.4.11-1_all.deb
  to pool/main/h/html2wml/html2wml_0.4.11-1_all.deb
html2wml_0.4.11.orig.tar.gz
  to pool/main/h/html2wml/html2wml_0.4.11.orig.tar.gz


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



Accepted memtest86 3.5-1 (source i386)

2009-02-09 Thread Yann Dirson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 23:14:16 +0100
Source: memtest86
Binary: memtest86
Architecture: source i386
Version: 3.5-1
Distribution: unstable
Urgency: low
Maintainer: Yann Dirson dir...@debian.org
Changed-By: Yann Dirson dir...@debian.org
Description: 
 memtest86  - thorough real-mode memory tester
Closes: 482898 504834
Changes: 
 memtest86 (3.5-1) unstable; urgency=low
 .
   * New upstream release.
   * Add Homepage in control file.
   * Bumped Standards-Version to 3.8.0.
   * Sync'd package with memtest86+ 2.11-2:
 * Added hurd-i386 as architecture (Closes: #482898).
 * Fixed finding boot image in grub script for newer grub.
 * Run update-grub2 from postrm only if /boot/grub/grub.cfg is present.
 * Use better idiom for safely calling make clean.
 * Install elf image for use with kexec and such.
 * Depend on ${misc:Depends}
 * Update make-memtest86-boot-floppy (Closes: #504834).
Checksums-Sha1: 
 4a22b966978aaa0c6e272f375adc18fe7b94f59e 1042 memtest86_3.5-1.dsc
 9de8742454b8e699428df986cae600d28c1d7c9a 178560 memtest86_3.5.orig.tar.gz
 0b8f9de8e465565b07920980d9f0fa86a97d2482 7222 memtest86_3.5-1.diff.gz
 87c9caca41658a476c61bb68abadf8c74316ebaa 127172 memtest86_3.5-1_i386.deb
Checksums-Sha256: 
 fb0256ace514879dae247707045643436f9a45e60a2490eef38a100323120bc2 1042 
memtest86_3.5-1.dsc
 c55875766ed2515dbde09e3648676f83cb8a3efbc3c8001f989f937a4d24e3e4 178560 
memtest86_3.5.orig.tar.gz
 148ccd6d5b2b05c037e086e318158abcaad92b318f5e27fb2bb835d9625bd389 7222 
memtest86_3.5-1.diff.gz
 a7910e68031e28a5a0816b620933c2aa07ed89a79a184e53826264f9dcea4033 127172 
memtest86_3.5-1_i386.deb
Files: 
 204fa9db52c4f19c8e5c42707d50fd26 1042 misc optional memtest86_3.5-1.dsc
 84b6aa8cfa5e2062f24832f9f5806d8a 178560 misc optional memtest86_3.5.orig.tar.gz
 842e1f17d5e0d9d07180fd01e125068b 7222 misc optional memtest86_3.5-1.diff.gz
 e28c9aa4aa1c8059f56491f17de11d1c 127172 misc optional memtest86_3.5-1_i386.deb

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

iEYEARECAAYFAkmQrBoACgkQV1uVslwzwbhfGQCggW+vZ70GilcUtG7wDCHmwCey
o9UAmgNKrhv0CQaiXxYly8VZghuXC9RN
=fJ4I
-END PGP SIGNATURE-


Accepted:
memtest86_3.5-1.diff.gz
  to pool/main/m/memtest86/memtest86_3.5-1.diff.gz
memtest86_3.5-1.dsc
  to pool/main/m/memtest86/memtest86_3.5-1.dsc
memtest86_3.5-1_i386.deb
  to pool/main/m/memtest86/memtest86_3.5-1_i386.deb
memtest86_3.5.orig.tar.gz
  to pool/main/m/memtest86/memtest86_3.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 live-helper 1.0.3-2 (source all)

2009-02-09 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 10 Feb 2009 00:00:00 +0100
Source: live-helper
Binary: live-helper
Architecture: source all
Version: 1.0.3-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Live debian-l...@lists.debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 live-helper - Debian Live build scripts
Closes: 514196
Changes: 
 live-helper (1.0.3-2) unstable; urgency=medium
 .
   [ Daniel Baumann ]
   * Regenerationg live-helper pot file.
   * Fixing typo in changelog.
   * Correcting order of genisoimage option assembling, the exludes do have to 
be
 processed last.
   * Adding clean parameter to lh_config to minimize config directory by
 automatically removing unused and thus empty subdirectories.
   * Splitting out win32-loader handling into own helper script.
   * Take win32-loader from the target distribution by using the chroot.
   * Revert using debhelper 7 command in rules.
   * Prefixing debhelper files with package name.
   * Updating copyright file.
   * Cleaning up rules file.
   * Moving binary manifest to live subdirectory on the images.
   * Moving live-initramfs or casper parameter list to live subdirectory on the
 images.
   * Introducing debian-release mode.
   * Adding own iso volume when beeing in release mode.
   * Correcting typo in iso volume.
   * Including the distribution name in iso volume when being in debian mode.
   * Renaming win32-loader executable as debian-cd does.
   * Creating win32-loader.ini in win32-loader helper script.
   * Updating .disk/info generation when building iso images.
   * Updating lenny cd includes.
   * Updating install call for live-helper defaults file.
   * Updating syslinux help screens.
   * Correcting bootstrap default logic to not overwrite the 'copy' method.
   * Really correcting bootstrap default logic to not overwrite the 'copy'
 method.
   * Updating image example build script.
   * Overwriting default kernels in image autobuild script only when being on
 i386.
   * Updating binary-filesystem reference in lh_config manpage.
   * For space consideration, don't install laptop task in desktop images by
 default anymore.
   * Only enabling win32-loader by default if we also include debian-installer.
 .
   [ Tiago Bortoletto Vaz ]
   * Updating pt_br localization (Closes: #514196).
Checksums-Sha1: 
 7c4a21d7efb135919a3c71a55085ba82eb8ad02e 986 live-helper_1.0.3-2.dsc
 34f75cf8a813565d407094887c3160ad32bf2d7b 2980381 live-helper_1.0.3-2.tar.gz
 e436b7cc498e56cf3d156767d60cbcc714b4547d 2901882 live-helper_1.0.3-2_all.deb
Checksums-Sha256: 
 d86f9cbb2c420f90232e27c8c4ae3ebcd7e0fa61a4282b2719dbb4fbd2587d08 986 
live-helper_1.0.3-2.dsc
 133f1c4bae8b9219e1bd783dfe5804e7c36bd1808f390187912bebaeea7b0655 2980381 
live-helper_1.0.3-2.tar.gz
 f057e5d3f16e20d7194c047540d6e7e59ae4ea270c103d57f38b9b91fa4eee12 2901882 
live-helper_1.0.3-2_all.deb
Files: 
 35e090a717c438cccb9c8bf718acc954 986 misc optional live-helper_1.0.3-2.dsc
 06bb80e94392a3ac5a7acb1c7c936d19 2980381 misc optional 
live-helper_1.0.3-2.tar.gz
 66ce9b31980709fa97daea78f34216c6 2901882 misc optional 
live-helper_1.0.3-2_all.deb

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

iEYEARECAAYFAkmQwUQACgkQ+C5cwEsrK54aLgCgvWStrOWlqgI1qAwBVXuihY5P
8bMAnjmSkjSXmHPZVg2+ymcZu/Ipn5nO
=DEn0
-END PGP SIGNATURE-


Accepted:
live-helper_1.0.3-2.dsc
  to pool/main/l/live-helper/live-helper_1.0.3-2.dsc
live-helper_1.0.3-2.tar.gz
  to pool/main/l/live-helper/live-helper_1.0.3-2.tar.gz
live-helper_1.0.3-2_all.deb
  to pool/main/l/live-helper/live-helper_1.0.3-2_all.deb


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



Accepted canto 0.6.1-1 (source i386)

2009-02-09 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 10 Feb 2009 00:56:00 +0100
Source: canto
Binary: canto
Architecture: source i386
Version: 0.6.1-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 canto  - flexible ncurses Atom/RSS newsreader for the console
Changes: 
 canto (0.6.1-1) unstable; urgency=low
 .
   * Merging upstream version 0.6.1.
Checksums-Sha1: 
 d1cbb0c70a7ee5e8211b6d2d401b4bfc7162f741 1116 canto_0.6.1-1.dsc
 8c95f031dca795693ea53c0147d01c2f0a0c5dd1 64357 canto_0.6.1.orig.tar.gz
 5b0fbc18149bf7bee30f39cdbcacd9e142845294 1619 canto_0.6.1-1.diff.gz
 9ecca281115f14a3f007394772317a8722c47481 42210 canto_0.6.1-1_i386.deb
Checksums-Sha256: 
 bfc28d2e7bbfebefe899bae7cc1f283b218213a6d956fc2c26d600dd638eef63 1116 
canto_0.6.1-1.dsc
 f98f376adb12c175765c9d33e13932c50ea1816e52cb35322d67fd0cecbd4545 64357 
canto_0.6.1.orig.tar.gz
 88bbd3e20b4ab8663865a767a166036f1406cf22f6885c2f606c0f5de5bbb871 1619 
canto_0.6.1-1.diff.gz
 3a4845167d859b9e48e8839d9c2c914c8063faf557f6fc69068fc351dbca5a8c 42210 
canto_0.6.1-1_i386.deb
Files: 
 5f918c06b6622da314c41e0823a40d57 1116 net optional canto_0.6.1-1.dsc
 7c791e6d20f7db541422720e061ffa5c 64357 net optional canto_0.6.1.orig.tar.gz
 dcf94d80f1fb8e5debfa4872447aa249 1619 net optional canto_0.6.1-1.diff.gz
 c2fd62e87cac54ce09303f35bd9f1c87 42210 net optional canto_0.6.1-1_i386.deb

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

iEYEARECAAYFAkmQwswACgkQ+C5cwEsrK55EFwCfY/+wh8ubcTEzut5VuYQoqF+L
qfoAn09TdfNvA0XniHMf9eRCeicY/kf3
=2FHk
-END PGP SIGNATURE-


Accepted:
canto_0.6.1-1.diff.gz
  to pool/main/c/canto/canto_0.6.1-1.diff.gz
canto_0.6.1-1.dsc
  to pool/main/c/canto/canto_0.6.1-1.dsc
canto_0.6.1-1_i386.deb
  to pool/main/c/canto/canto_0.6.1-1_i386.deb
canto_0.6.1.orig.tar.gz
  to pool/main/c/canto/canto_0.6.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 po4a 0.35-1 (source all)

2009-02-09 Thread Nekral
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 04 Oct 2008 13:56:01 +0200
Source: po4a
Binary: po4a
Architecture: source all
Version: 0.35-1
Distribution: experimental
Urgency: low
Maintainer: Nicolas FRANCOIS (Nekral) nicolas.franc...@centraliens.net
Changed-By: Nicolas FRANCOIS (Nekral) nicolas.franc...@centraliens.net
Description: 
 po4a   - tools for helping translation of documentation
Closes: 492485 494607 494626 494626 495947 498094 500448 501204 513708
Changes: 
 po4a (0.35-1) experimental; urgency=low
 .
   * New upstream release.
 - Docbook module:
   + acronym moved to the inline section. Closes: #500448
   + glossterm removed from the inline section. This make them
 translatable. Closes: #492485
   + ackno added to the tags section. CLoses: #501204
   + option moved to the inline section. Closes: #494607
   + code moved to the inline section. Closes: #513708
   + footnote moved to the placeholder section. (see #513716)
 - Fix typos and formating in the Locale:Po4a:XML man page. Closes: #494626
 - Updated dependency on perl-modules (= 5.10.0-16) because the utf8
   option of Pod::Man is needed.
 - Xml has support for placeholders and the conflicts handling was
   improved. Closes: #495947
 - Manpages are now generated in utf-8 and bad formatting in
   Locale:Po4a:Xml was fixed. Closes: #494626
 - New support for asciidoc format (except tables) in the text module.
   Closes: #498094
Checksums-Sha1: 
 37cfe7c8169a8bf1e688d5afdf5c5be43ccce1e8 1294 po4a_0.35-1.dsc
 432db12b4a45089043cf10f8829d4b7327c5fec8 1078976 po4a_0.35.orig.tar.gz
 3d6571b3bda09f12ac9beb4d2ff3084bb8182b60 5461 po4a_0.35-1.diff.gz
 dffda9e1cc6e08e5cff78b4dc60f863ff2a6d50f 880444 po4a_0.35-1_all.deb
Checksums-Sha256: 
 489662e7775b01a1f0d7886cc309dc57350dd9ac660c8b90835d7e222a388f59 1294 
po4a_0.35-1.dsc
 fe5fbadf4f252261351d51dac7efd97e52e532f200c4a1b45c52f2060050cb8c 1078976 
po4a_0.35.orig.tar.gz
 11266390d8607b60e079279a33e108f3f88a2868631380e628365353ea2275cf 5461 
po4a_0.35-1.diff.gz
 79fc29ab3e8d45717b44212c6ec44fa18bc5cb61b01bc74bd53167ebca06fca1 880444 
po4a_0.35-1_all.deb
Files: 
 f744e812c8d9909c8bdd609281ea0ece 1294 text optional po4a_0.35-1.dsc
 3ad10ddc756ec55649599e2e0a32c886 1078976 text optional po4a_0.35.orig.tar.gz
 16e2c8781e8a589d18d37c2fce89ed01 5461 text optional po4a_0.35-1.diff.gz
 b1da379d23c19cce2af70e56bf3b6503 880444 text optional po4a_0.35-1_all.deb

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

iEYEARECAAYFAkmQwIEACgkQWgo5mup89a3YqACfeGM2uCtHI9iVraKeamGRDvLM
+60AnA/M1jAOaAO1hMhlYZbk2w9XbiYM
=SsIw
-END PGP SIGNATURE-


Accepted:
po4a_0.35-1.diff.gz
  to pool/main/p/po4a/po4a_0.35-1.diff.gz
po4a_0.35-1.dsc
  to pool/main/p/po4a/po4a_0.35-1.dsc
po4a_0.35-1_all.deb
  to pool/main/p/po4a/po4a_0.35-1_all.deb
po4a_0.35.orig.tar.gz
  to pool/main/p/po4a/po4a_0.35.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 tor 0.2.1.12-alpha-1 (source all i386)

2009-02-09 Thread Peter Palfrader
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 10 Feb 2009 00:19:53 +0100
Source: tor
Binary: tor tor-dbg tor-geoipdb
Architecture: source all i386
Version: 0.2.1.12-alpha-1
Distribution: experimental
Urgency: low
Maintainer: Peter Palfrader wea...@debian.org
Changed-By: Peter Palfrader wea...@debian.org
Description: 
 tor- anonymizing overlay network for TCP
 tor-dbg- debugging symbols for Tor
 tor-geoipdb - geoIP database for Tor
Closes: 514579 514580
Changes: 
 tor (0.2.1.12-alpha-1) experimental; urgency=low
 .
   * New upstream version, fixing several security relevant bugs:
  - Avoid a potential crash on exit nodes when processing malformed
input.  Remote DoS opportunity (closes: #514579).
  - Fix a temporary DoS vulnerability that could be performed by
a directory mirror (closes: #514580).
   * patches/06_add_compile_time_defaults: Only set the User option in
 the config if we run as root.  Do not set it when run as debian-tor
 as Tor then always insists on changing users which will fail.  (If
 we run as any other user we don't set our debian defaults anyway.)
Checksums-Sha1: 
 c121abb355107d4fbb18a712e465378d70066ef7 1206 tor_0.2.1.12-alpha-1.dsc
 57424ca2416aafee25e5cd6fa4037f440f2a684d 2370592 tor_0.2.1.12-alpha.orig.tar.gz
 d0ae87fef6cc0ee0d8b27687ab0e78b8654c4552 77612 tor_0.2.1.12-alpha-1.diff.gz
 3a2e1bebb5fa5e9fc114441fc8697e5d9f448835 763244 
tor-geoipdb_0.2.1.12-alpha-1_all.deb
 e1043cd5a6f9d77e54aee462d3c7e6ac8e8ba1c4 1325078 tor_0.2.1.12-alpha-1_i386.deb
 f58c8021ede7d0518e2a2a371e8c218d6f414307 905100 
tor-dbg_0.2.1.12-alpha-1_i386.deb
Checksums-Sha256: 
 4a3ca5ec79b427d4bbb02d2c46492e989d9403c74eef085d94b28f0e63091b4d 1206 
tor_0.2.1.12-alpha-1.dsc
 ec93c69e9303a1724cf54b5ade1080ed032a92ad60db6f7935be0076ea26c278 2370592 
tor_0.2.1.12-alpha.orig.tar.gz
 c29d77e771d9d9af2ec5051a721eaee91ecee545ab1c102cbf8b70775b8aac38 77612 
tor_0.2.1.12-alpha-1.diff.gz
 f2b27c5538232253925c8746e3dbba85c314460b6ebaa4bb8dc473885987377b 763244 
tor-geoipdb_0.2.1.12-alpha-1_all.deb
 b27198668f4b1583527b06b6930e50db41c39ca9da65e87fa9ca7b31b366d058 1325078 
tor_0.2.1.12-alpha-1_i386.deb
 c93a58e8389fefe6e8a670f144e9826b1b1c877d52f7d8acda636252b93c6ea1 905100 
tor-dbg_0.2.1.12-alpha-1_i386.deb
Files: 
 68cf14bfec8674a1058dc4875ea1917f 1206 comm optional tor_0.2.1.12-alpha-1.dsc
 1f8d8929b2bf1579220ac7934309a5b7 2370592 comm optional 
tor_0.2.1.12-alpha.orig.tar.gz
 8a391809ee0b4ef200276315b9988065 77612 comm optional 
tor_0.2.1.12-alpha-1.diff.gz
 fc2b921677e07faa70c4380e55962742 763244 comm extra 
tor-geoipdb_0.2.1.12-alpha-1_all.deb
 9f239cf5970a0ae74ed83060bbbd504e 1325078 comm optional 
tor_0.2.1.12-alpha-1_i386.deb
 87c49d67bbcad3c8b4c5eb0349d97e8e 905100 comm extra 
tor-dbg_0.2.1.12-alpha-1_i386.deb

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

iEYEARECAAYFAkmQwlQACgkQz/ccs6+kS9297wCeO37o7hQyqmb/pbmtOqETsD7o
6cIAnjIoyUX/Q1zvXDIdaTgpivJpZjV6
=kjbs
-END PGP SIGNATURE-


Accepted:
tor-dbg_0.2.1.12-alpha-1_i386.deb
  to pool/main/t/tor/tor-dbg_0.2.1.12-alpha-1_i386.deb
tor-geoipdb_0.2.1.12-alpha-1_all.deb
  to pool/main/t/tor/tor-geoipdb_0.2.1.12-alpha-1_all.deb
tor_0.2.1.12-alpha-1.diff.gz
  to pool/main/t/tor/tor_0.2.1.12-alpha-1.diff.gz
tor_0.2.1.12-alpha-1.dsc
  to pool/main/t/tor/tor_0.2.1.12-alpha-1.dsc
tor_0.2.1.12-alpha-1_i386.deb
  to pool/main/t/tor/tor_0.2.1.12-alpha-1_i386.deb
tor_0.2.1.12-alpha.orig.tar.gz
  to pool/main/t/tor/tor_0.2.1.12-alpha.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 pm-utils 1.2.4-1 (source all)

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

Format: 1.8
Date: Tue, 10 Feb 2009 01:08:40 +0100
Source: pm-utils
Binary: pm-utils
Architecture: source all
Version: 1.2.4-1
Distribution: experimental
Urgency: low
Maintainer: Tim Dijkstra t...@famdijkstra.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 pm-utils   - utilities and scripts for power management
Closes: 501073 511466
Changes: 
 pm-utils (1.2.4-1) experimental; urgency=low
 .
   * New upstream release.
 - Do not report an error on systems which have no system.chassis.type hal
   property. (Closes: #511466)
 - Do no longer run hwclock on suspend/resume unless NEED_CLOCK_SYNC is set
   explicitly.(Closes: #501073)
   * debian/patches/15-no-laptop-mode.patch
 - Removed, merged upstream.
   * debian/patches/80-service.patch
 - Updated.
   * debian/copyright
 - Make it clear that pm-utils is released under GPL version 2 and refer to
   the versioned GPL-2 document in /usr/share/common-licenses/.
Checksums-Sha1: 
 331e477a16d56dc4f305d36ad278108b0363b5e3 1191 pm-utils_1.2.4-1.dsc
 597b217c522de08c2fdfe31f01af1e356a73b0a6 177347 pm-utils_1.2.4.orig.tar.gz
 8f726e932143e7050643565c395ad4e6640efc1f 5970 pm-utils_1.2.4-1.diff.gz
 9ba6d43a5e2963c8c6de5cff4719cfc33ff23bdd 86044 pm-utils_1.2.4-1_all.deb
Checksums-Sha256: 
 a435a4c26e0ea2fd94a4769d1018171f691fcfbc9fbc7261bb6266bee0e761eb 1191 
pm-utils_1.2.4-1.dsc
 7c8a4a16adc16dd68bce527063c6a366cbcdf257114edecec91b3dad40e5b465 177347 
pm-utils_1.2.4.orig.tar.gz
 34bb2fba772e286a01f6adb83782465b47385f2730c13d189f1b2dc87ce7bb30 5970 
pm-utils_1.2.4-1.diff.gz
 4acca74d148c68abbbe54f488e9a990bffe74251a6917144ebad70be003084c2 86044 
pm-utils_1.2.4-1_all.deb
Files: 
 e7715a682bf2c857379af5cc595bfddd 1191 admin optional pm-utils_1.2.4-1.dsc
 965bdce8fccaaa5ae2b304e52b362c6e 177347 admin optional 
pm-utils_1.2.4.orig.tar.gz
 ee4ad2dac001cdda5a7ce371d00d807c 5970 admin optional pm-utils_1.2.4-1.diff.gz
 d358d812367cab53d8ba29f35f8b1c5d 86044 admin optional pm-utils_1.2.4-1_all.deb

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

iEYEARECAAYFAkmQxuQACgkQh7PER70FhVSAdwCglYDcoGu29wKL2WjsotpXowDR
ijoAnRzBLpktejKqNKiQQfefGYEBN3mO
=QD8D
-END PGP SIGNATURE-


Accepted:
pm-utils_1.2.4-1.diff.gz
  to pool/main/p/pm-utils/pm-utils_1.2.4-1.diff.gz
pm-utils_1.2.4-1.dsc
  to pool/main/p/pm-utils/pm-utils_1.2.4-1.dsc
pm-utils_1.2.4-1_all.deb
  to pool/main/p/pm-utils/pm-utils_1.2.4-1_all.deb
pm-utils_1.2.4.orig.tar.gz
  to pool/main/p/pm-utils/pm-utils_1.2.4.orig.tar.gz


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



Accepted lintian 2.2.4 (source all)

2009-02-09 Thread Adam D. Barratt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 23:59:00 +
Source: lintian
Binary: lintian
Architecture: source all
Version: 2.2.4
Distribution: unstable
Urgency: low
Maintainer: Debian Lintian Maintainers lintian-ma...@debian.org
Changed-By: Adam D. Barratt a...@adam-barratt.org.uk
Description: 
 lintian- Debian package checker
Closes: 514641
Changes: 
 lintian (2.2.4) unstable; urgency=low
 .
   * checks/changelog-file:
 + [RA] Use Lintian::Relation::Version instead of Dep.
   * checks/control-file:
 + [RA] Use Lintian::Relation instead of Dep.
   * checks/copyright-file:
 + [RA] Use Lintian::Collect for dependency information.
   * checks/cruft:
 + [RA] Use Lintian::Collect for dependency information.
 .
   * t/runtests:
 + [ADB] Correctly handle epoched package versions. Patch by
   Raphael Geissert.
 .
   * testset/runtests:
 + [ADB] Correctly handle epoched package versions.
 .
   * unpack/unpack-srcpkg-l1:
 + [ADB] Correctly determine the source package version for packages
   with epoched versions.  Based on a patch by Raphael Geissert.
   (Closes: #514641)
Checksums-Sha1: 
 1eba4d9ab03999a427f4517262757384fede6013 1163 lintian_2.2.4.dsc
 96f52c40615103b2e89152c47f01dc83c0bf7b07 632383 lintian_2.2.4.tar.gz
 10eef2ecb3646268e32673fa8ed7fc884950895f 440876 lintian_2.2.4_all.deb
Checksums-Sha256: 
 8067cc7f0602d31d72a982a5e44d2a7961677cec26db99b69f00bd941fd10d5d 1163 
lintian_2.2.4.dsc
 3cf3e557009189265e4351f56dd85f0f8e8562b8c1c3b8e115e846426e4a9a4b 632383 
lintian_2.2.4.tar.gz
 72f136fd0bf278239cfec80b7ee3b0dd70c2643452b0d9923bcadcee78e09c68 440876 
lintian_2.2.4_all.deb
Files: 
 fdc7ae47183c1278ba2f9a93df73ec9f 1163 devel optional lintian_2.2.4.dsc
 ab5a60bee1ddfd835aba36d4f01c0acf 632383 devel optional lintian_2.2.4.tar.gz
 bd5a68725ffc6961275c06c29534615e 440876 devel optional lintian_2.2.4_all.deb

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

iEYEARECAAYFAkmQ0RoACgkQokcE1TReOoUMcgCfUtbYN9TltgepTUixu4ZTdDYf
U48Ani3ReObeqLgNJ70ZoIKM/n+oESB8
=fgFY
-END PGP SIGNATURE-


Accepted:
lintian_2.2.4.dsc
  to pool/main/l/lintian/lintian_2.2.4.dsc
lintian_2.2.4.tar.gz
  to pool/main/l/lintian/lintian_2.2.4.tar.gz
lintian_2.2.4_all.deb
  to pool/main/l/lintian/lintian_2.2.4_all.deb


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



Accepted beaker 1.2.1-1 (source all)

2009-02-09 Thread Oleksandr Moskalenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 17:40:28 -0700
Source: beaker
Binary: python-beaker
Architecture: source all
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Oleksandr Moskalenko ma...@debian.org
Changed-By: Oleksandr Moskalenko ma...@debian.org
Description: 
 python-beaker - Simple WSGI middleware that uses the Myghty Container API
Changes: 
 beaker (1.2.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 b62e5807fc251070fd481fa865ec2cc8bec4ede1 1326 beaker_1.2.1-1.dsc
 d4c9ca3dd5c104018544cef1ab0294394c6c1356 38600 beaker_1.2.1.orig.tar.gz
 816e69a4f153e385fad7da433a4947581fb1f81c 3646 beaker_1.2.1-1.diff.gz
 d2773793bf6508abc2c4cd8461025ebcb18b8a87 28148 python-beaker_1.2.1-1_all.deb
Checksums-Sha256: 
 67fdba0833baf494e48bb2a0b18788792c2b1dc5385f98e787188c7088d5928b 1326 
beaker_1.2.1-1.dsc
 2519684079ee333642cf994148390b0522d1c22cf782664730e684a97753d4a7 38600 
beaker_1.2.1.orig.tar.gz
 5c0f4910ccca36ec2a5b51b72dd1bf598b10dd6157390cdf8cd34f498646a320 3646 
beaker_1.2.1-1.diff.gz
 e73ab73bfdd2604d3135d04197fb21940923195e3ec7821a730c9cf6344ad4ae 28148 
python-beaker_1.2.1-1_all.deb
Files: 
 d5fa92e23b292847ad427d0cfcc8b645 1326 python optional beaker_1.2.1-1.dsc
 03dc4e0eaa0805ac7401d4d28b163478 38600 python optional beaker_1.2.1.orig.tar.gz
 ad45d3a2a114818dfcb44b517fec4b1d 3646 python optional beaker_1.2.1-1.diff.gz
 35beed359c4babc355ec605c1c7a5434 28148 python optional 
python-beaker_1.2.1-1_all.deb

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

iD8DBQFJkNPg2ihvMmxfGWsRAt0SAKDGGi2gM2JyDZqTub3hmWVXuC7YBgCgiQfH
fqkvCIivkBQRcCnw4CaBb/E=
=oJc4
-END PGP SIGNATURE-


Accepted:
beaker_1.2.1-1.diff.gz
  to pool/main/b/beaker/beaker_1.2.1-1.diff.gz
beaker_1.2.1-1.dsc
  to pool/main/b/beaker/beaker_1.2.1-1.dsc
beaker_1.2.1.orig.tar.gz
  to pool/main/b/beaker/beaker_1.2.1.orig.tar.gz
python-beaker_1.2.1-1_all.deb
  to pool/main/b/beaker/python-beaker_1.2.1-1_all.deb


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



Accepted gnome-mud 0.11-2 (source i386)

2009-02-09 Thread Jordi Mallach
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 10 Feb 2009 00:44:38 +0100
Source: gnome-mud
Binary: gnome-mud
Architecture: source i386
Version: 0.11-2
Distribution: unstable
Urgency: low
Maintainer: Jordi Mallach jo...@debian.org
Changed-By: Jordi Mallach jo...@debian.org
Description: 
 gnome-mud  - The GNOME MUD client
Closes: 228081 267256 328761 328765 328766 328768 328770 328771 328772 328773 
372585 372585 472710 508202
Changes: 
 gnome-mud (0.11-2) unstable; urgency=low
 .
   [ Jordi Mallach ]
   * Use LDFLAGS += -Wl,-O1 -Wl,-z,defs -Wl,--as-needed, as suggested by
 Loïc Minier.
   * Rebuilding the package gets rid of inactive GNOME maintainers
 Closes: #472710, #508202.
   * Upload to unstable.
   * Removal of the mapper feature fixes a few bugs.
 Closes: #228081, #328765, #328766, #328768,
 Closes: #328770, #328771, #328772, #328773, #372585
   * Crashes related to the terminal should be fixed with the rewrite.
 Closes: #328761, #372585.
   * GConf files should be installed correctly now. Closes: #267256.
 .
 .
   [ Emilio Pozuelo Monfort ]
   * debian/watch: Don't uupdate.
   * debian/patches/01_fix_desktop_file.patch:
 - Update the desktop file to the latest standard.
Checksums-Sha1: 
 8326d082de8780e27d213ad1b2b6029bf6c5b9b8 1462 gnome-mud_0.11-2.dsc
 facbe238619f2df08dc20e4690ac15b7b5da2955 6707 gnome-mud_0.11-2.diff.gz
 1b60c893e5d01eab05d0e9b54379e13177fee0db 331606 gnome-mud_0.11-2_i386.deb
Checksums-Sha256: 
 6e696d98a6c58bbde7344f1171aefb753e30dc48e5c520719959b9db4af6bfd7 1462 
gnome-mud_0.11-2.dsc
 a4ef9ab2afcd83a2f15b0b8324630692a9c9eb126aca0f0248936eb784eb3029 6707 
gnome-mud_0.11-2.diff.gz
 11e849485433b44b8ee15f938f3d4dcc0acb4784bcc3322e77fb6aec164ef307 331606 
gnome-mud_0.11-2_i386.deb
Files: 
 5804f3ab6571b6228591b0e261509fac 1462 gnome optional gnome-mud_0.11-2.dsc
 ff13630705d99fc014e22b916bd84304 6707 gnome optional gnome-mud_0.11-2.diff.gz
 445b5aa15e4b96af6a9a1a68756a7e99 331606 gnome optional 
gnome-mud_0.11-2_i386.deb

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

iEYEARECAAYFAkmQzlIACgkQJYSUupF6Il43RACfZCU2w/VuYRwwM+wU6mec/vBz
vL0AniB4TPC0QN5EuNd2FcrTGbWPTwHq
=L+Rw
-END PGP SIGNATURE-


Accepted:
gnome-mud_0.11-2.diff.gz
  to pool/main/g/gnome-mud/gnome-mud_0.11-2.diff.gz
gnome-mud_0.11-2.dsc
  to pool/main/g/gnome-mud/gnome-mud_0.11-2.dsc
gnome-mud_0.11-2_i386.deb
  to pool/main/g/gnome-mud/gnome-mud_0.11-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 archzoom 0.5.1-4 (source all)

2009-02-09 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 21:20:12 -0500
Source: archzoom
Binary: archzoom
Architecture: source all
Version: 0.5.1-4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 archzoom   - web-based Arch repository browser
Changes: 
 archzoom (0.5.1-4) unstable; urgency=low
 .
   * Bump to Standards-Version 3.8.0.
   * Drop Vcs-Browser.
   * Change Maintainer to Debian QA Group.
Checksums-Sha1: 
 8f1d2cedcc60e59f52e5527ae3d9ff2249140b0d 936 archzoom_0.5.1-4.dsc
 ae5a766ebf37da37f194bf39a392b85974937d70 42991 archzoom_0.5.1-4.diff.gz
 1ca771b039d5ab64a299f080ed51ee0abbbcdf69 116252 archzoom_0.5.1-4_all.deb
Checksums-Sha256: 
 ebfa6010f07420589cb86b314d260a5abbfbb3e8116350970e41197edb635202 936 
archzoom_0.5.1-4.dsc
 1acdede8be86b5ba9a6e426e07f10acd9dedf3cc608a6ea401b170aa6a70f4ec 42991 
archzoom_0.5.1-4.diff.gz
 e38b1d953043c042e1253d6095cd1731eeb5ec50f7c00e51284cc2d1ac94d787 116252 
archzoom_0.5.1-4_all.deb
Files: 
 17ed3e7b7d13ba70c524e29ab311993e 936 devel optional archzoom_0.5.1-4.dsc
 913959161ce4734e750b86b4ddfea23f 42991 devel optional archzoom_0.5.1-4.diff.gz
 85ddd0e427263de5dfdc51a1119eb7e9 116252 devel optional archzoom_0.5.1-4_all.deb

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

iD8DBQFJkOWC5m0u66uWM3ARAlPrAKDgRkXjgHcolth9PCD/xmtmFKBJbwCfXImb
lC4tIuYNtZ0c07Mhje84kJA=
=9LQc
-END PGP SIGNATURE-


Accepted:
archzoom_0.5.1-4.diff.gz
  to pool/main/a/archzoom/archzoom_0.5.1-4.diff.gz
archzoom_0.5.1-4.dsc
  to pool/main/a/archzoom/archzoom_0.5.1-4.dsc
archzoom_0.5.1-4_all.deb
  to pool/main/a/archzoom/archzoom_0.5.1-4_all.deb


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



Accepted archway 0.2.1+patch-85-1 (source all)

2009-02-09 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 21:06:37 -0500
Source: archway
Binary: archway
Architecture: source all
Version: 0.2.1+patch-85-1
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 archway- GUI for GNU Arch
Changes: 
 archway (0.2.1+patch-85-1) unstable; urgency=low
 .
   * Update to current snapshot.
   * Bump to Standards-Version 3.8.0.
   * Drop Vcs-Browser.
   * Set Maintainer to Debian QA Group.
Checksums-Sha1: 
 5488903563ec374146ee99e34a7613631b74cec8 988 archway_0.2.1+patch-85-1.dsc
 d44877759b87d1fb7ea1545f4f2094d8d5f8e563 399813 
archway_0.2.1+patch-85.orig.tar.gz
 b9aee076a45a85625ef56d6efab05702cc009a7e 2482 archway_0.2.1+patch-85-1.diff.gz
 f4134f1301f7186ca1641469a2fcb439a9fa6fd7 302342 
archway_0.2.1+patch-85-1_all.deb
Checksums-Sha256: 
 e082232f8b3160a263e895da709ff7f1f0964767dcf11a6305ca73a7e3953d3d 988 
archway_0.2.1+patch-85-1.dsc
 3e4eff97f14c3c550c4d15a1f426a074245e30d54729f45d8e305a411e7f0a14 399813 
archway_0.2.1+patch-85.orig.tar.gz
 86acb93211d9ec828d40cb5787b8ffa26c918cc21d442b6c0c8eb7beb93cb78d 2482 
archway_0.2.1+patch-85-1.diff.gz
 d887cf9c8ba152bd8608d154497888cd8be28bb24e08659147913ffaf2a7af2d 302342 
archway_0.2.1+patch-85-1_all.deb
Files: 
 eac3b25b7d4e640cbbd987e668daa908 988 devel optional 
archway_0.2.1+patch-85-1.dsc
 b13fbe292d5f478110c9265d70276f05 399813 devel optional 
archway_0.2.1+patch-85.orig.tar.gz
 d62effc513c8859f30ef24be91785e5a 2482 devel optional 
archway_0.2.1+patch-85-1.diff.gz
 0a55ec165a80884c11349423092c289f 302342 devel optional 
archway_0.2.1+patch-85-1_all.deb

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

iD8DBQFJkOLl5m0u66uWM3ARAvrkAKDEWS0fU7+xuEaUImAhr+34Qb1abgCfeoCP
lYDLH5nkyxccqbevJBn7yGQ=
=927L
-END PGP SIGNATURE-


Accepted:
archway_0.2.1+patch-85-1.diff.gz
  to pool/main/a/archway/archway_0.2.1+patch-85-1.diff.gz
archway_0.2.1+patch-85-1.dsc
  to pool/main/a/archway/archway_0.2.1+patch-85-1.dsc
archway_0.2.1+patch-85-1_all.deb
  to pool/main/a/archway/archway_0.2.1+patch-85-1_all.deb
archway_0.2.1+patch-85.orig.tar.gz
  to pool/main/a/archway/archway_0.2.1+patch-85.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 canto 0.6.2-1 (source i386)

2009-02-09 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 10 Feb 2009 03:04:00 +0100
Source: canto
Binary: canto
Architecture: source i386
Version: 0.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann dan...@debian.org
Changed-By: Daniel Baumann dan...@debian.org
Description: 
 canto  - flexible ncurses Atom/RSS newsreader for the console
Changes: 
 canto (0.6.2-1) unstable; urgency=low
 .
   * Merging upstream version 0.6.2.
Checksums-Sha1: 
 7dc30d5ad3e2f4e9ed1701ac4fd82168630b4a4a 1116 canto_0.6.2-1.dsc
 4eb65bb7588f1e4b1220f534e40449dc8d660fe8 65096 canto_0.6.2.orig.tar.gz
 65483bfdc57aebfe65a928c90bfd7d21ef06735e 1635 canto_0.6.2-1.diff.gz
 14eea6fb0978271a70f497f804bafc010ba54de5 42276 canto_0.6.2-1_i386.deb
Checksums-Sha256: 
 a188726aac83468a884984d349fbdd2fc47c6e6187f882145fe3528bb7d3edfd 1116 
canto_0.6.2-1.dsc
 89fd3ec66dac83a8b181344ddf0d44db303b748e1c061c75d8f862215253c495 65096 
canto_0.6.2.orig.tar.gz
 d5857c4e50c22d6b94e06d8331de5521578789c80e8644a2151d2afce61edb7f 1635 
canto_0.6.2-1.diff.gz
 b2fce358c55d5b5910d6097673f6be4ed1b0137158892deff65d72340b0334af 42276 
canto_0.6.2-1_i386.deb
Files: 
 879cc4ee7e6eb6a3742deffc48adc1e0 1116 net optional canto_0.6.2-1.dsc
 7eb167d4db64a689b26b4c2b3eb58b2d 65096 net optional canto_0.6.2.orig.tar.gz
 3b65394746e6372d7de434591f3a46b6 1635 net optional canto_0.6.2-1.diff.gz
 31fc8b757ffd3174fe40b1fcc22d7034 42276 net optional canto_0.6.2-1_i386.deb

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

iEUEARECAAYFAkmQ4ZsACgkQ+C5cwEsrK56v1wCYy/wFvCA4LhkJ2jyx+0tixYQB
cgCfdlAPNq/voGkkB6Wt0DOrEPvKh3g=
=WsJb
-END PGP SIGNATURE-


Accepted:
canto_0.6.2-1.diff.gz
  to pool/main/c/canto/canto_0.6.2-1.diff.gz
canto_0.6.2-1.dsc
  to pool/main/c/canto/canto_0.6.2-1.dsc
canto_0.6.2-1_i386.deb
  to pool/main/c/canto/canto_0.6.2-1_i386.deb
canto_0.6.2.orig.tar.gz
  to pool/main/c/canto/canto_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 mktemp 1.6-1 (source i386)

2009-02-09 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 21:55:05 -0500
Source: mktemp
Binary: mktemp
Architecture: source i386
Version: 1.6-1
Distribution: unstable
Urgency: low
Maintainer: Clint Adams sch...@debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 mktemp - tool for creating temporary files
Changes: 
 mktemp (1.6-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 ae38b09629e4798530727fd97f0d7289467b37a3 891 mktemp_1.6-1.dsc
 6dcec9b53c0be1543f1f7810c2020e62557833ce 3183 mktemp_1.6-1.diff.gz
 9cebe7086e523cb86a952e3d6e4516144039f230 11178 mktemp_1.6-1_i386.deb
Checksums-Sha256: 
 b216c0f4c054e3e16775d4147185aa44b5ed72129ac2b816a74c98ec3e04537d 891 
mktemp_1.6-1.dsc
 da23b4861ebe53796133c51e38764ae2fb79bccd11da068713947d06a6443ce4 3183 
mktemp_1.6-1.diff.gz
 9ee50baed63db73afd359e9830f8176f08aaa463540ed6c343a7d0044a6ea1c5 11178 
mktemp_1.6-1_i386.deb
Files: 
 f86f17464ebea168969a0a1cbc1b68ca 891 utils required mktemp_1.6-1.dsc
 4a74ab8ee3900f49eb796b1098f1f6d4 3183 utils required mktemp_1.6-1.diff.gz
 f1ddebd284d968f5af20f259ca431436 11178 utils required mktemp_1.6-1_i386.deb

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

iD8DBQFJkO0m5m0u66uWM3ARAiFyAKDfk8zUWCQ6cj18dDNZZmdJQwTlawCfRYEd
F47LLYq57zCU+Q6n96D6O2M=
=CiDC
-END PGP SIGNATURE-


Accepted:
mktemp_1.6-1.diff.gz
  to pool/main/m/mktemp/mktemp_1.6-1.diff.gz
mktemp_1.6-1.dsc
  to pool/main/m/mktemp/mktemp_1.6-1.dsc
mktemp_1.6-1_i386.deb
  to pool/main/m/mktemp/mktemp_1.6-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 arch-perl 0.5.1+patch-180-3 (source all)

2009-02-09 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 20:53:55 -0500
Source: arch-perl
Binary: libarch-perl
Architecture: source all
Version: 0.5.1+patch-180-3
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 libarch-perl - Perl library for GNU Arch
Changes: 
 arch-perl (0.5.1+patch-180-3) unstable; urgency=low
 .
   * Bump to Standards-Version 3.8.0.
   * Drop Vcs-Browser field.
   * Change maintainer to Debian QA Group.
Checksums-Sha1: 
 a28551c4c0e172a05373ca08ba3cf0620630ca8b 1011 arch-perl_0.5.1+patch-180-3.dsc
 b48014d1ef8acb84114c8b7bdbc3421c7bb6e192 2819 
arch-perl_0.5.1+patch-180-3.diff.gz
 e0ba745aa6d32bf7db4ac6059825f88c783a0a0a 161792 
libarch-perl_0.5.1+patch-180-3_all.deb
Checksums-Sha256: 
 0c099869b06513ed48730bbc6805dba32758853fb8c723946c3f4094bca608f7 1011 
arch-perl_0.5.1+patch-180-3.dsc
 db396a1ed8599d5b4e6ba6006ee8dec7efdb162fa549835e73279f0cf9e2a3ca 2819 
arch-perl_0.5.1+patch-180-3.diff.gz
 a52c520f0589bc71fbb6e00a9605ebd7273759df8ed476808a7954578a4cf91b 161792 
libarch-perl_0.5.1+patch-180-3_all.deb
Files: 
 94655a49ca89bd96844e451fb311de7a 1011 perl optional 
arch-perl_0.5.1+patch-180-3.dsc
 d771cd82cf0a71b9013adb0a12955f39 2819 perl optional 
arch-perl_0.5.1+patch-180-3.diff.gz
 af7d758a0cc143b5fcffa8ba517056c0 161792 perl optional 
libarch-perl_0.5.1+patch-180-3_all.deb

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

iD8DBQFJkOAq5m0u66uWM3ARAkevAJ4t43ct0Vog85RxaHs+XxHckzq7lwCghgZk
lT38p1Lr+KGGJ9y7i42VEmw=
=JBBX
-END PGP SIGNATURE-


Accepted:
arch-perl_0.5.1+patch-180-3.diff.gz
  to pool/main/a/arch-perl/arch-perl_0.5.1+patch-180-3.diff.gz
arch-perl_0.5.1+patch-180-3.dsc
  to pool/main/a/arch-perl/arch-perl_0.5.1+patch-180-3.dsc
libarch-perl_0.5.1+patch-180-3_all.deb
  to pool/main/a/arch-perl/libarch-perl_0.5.1+patch-180-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 rsyslog 3.20.4-1 (source all i386)

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

Format: 1.8
Date: Tue, 10 Feb 2009 01:52:32 +0100
Source: rsyslog
Binary: rsyslog rsyslog-doc rsyslog-mysql rsyslog-pgsql rsyslog-gssapi 
rsyslog-gnutls
Architecture: source all i386
Version: 3.20.4-1
Distribution: experimental
Urgency: low
Maintainer: Michael Biebl bi...@debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 rsyslog- enhanced multi-threaded syslogd
 rsyslog-doc - documentation for rsyslog
 rsyslog-gnutls - TLS protocol support for rsyslog
 rsyslog-gssapi - GSSAPI authentication and encryption support for rsyslog
 rsyslog-mysql - MySQL output plugin for rsyslog
 rsyslog-pgsql - PostgreSQL output plugin for rsyslog
Changes: 
 rsyslog (3.20.4-1) experimental; urgency=low
 .
   * New upstream release.
   * Merge changes from unstable branch.
   * debian/patches/message_locking_fix.patch
 - Removed, fixed upstream.
   * debian/compat
 - Bump to debhelper v7 compat mode.
   * debian/control
 - Bump debhelper build dependency to (= 7.0.9).
 - Add rsyslog-gnutls and rsyslog-gssapi to Suggests.
 - Improve and update package description for rsyslog, rsyslog-gnutls and
   rsyslog-gssapi.
   * debian/rules
 - Use new dh_installinit -R (restart-after-upgrade) option.
 - Replace dh_clean -k with dh_prep.
   * debian/rsyslog.postinst
 - Remove our custom code to stop/start rsyslog on upgrades. This is done
   now automatically by dh_installinit.
   * debian/rsyslog.docs
 - Install AUTHORS file.
Checksums-Sha1: 
 15b03fd14eb645e3bedeeb95dd59c8b32aacd2a1 1291 rsyslog_3.20.4-1.dsc
 e4c6f02eb7f22dfdfe32ff7a84d7b33466a0a2c9 1304299 rsyslog_3.20.4.orig.tar.gz
 10ecd9eacfd09b795495fd83a48d10ebd1daed7a 19779 rsyslog_3.20.4-1.diff.gz
 dcee97b3b72492918def2283295dc24c0a4702fb 425416 rsyslog-doc_3.20.4-1_all.deb
 bf2c9b4554ec0017f19ad37815f741797ab04339 256990 rsyslog_3.20.4-1_i386.deb
 ac6ac8f8e36a78c909815196ac136ae033c19758 82022 rsyslog-mysql_3.20.4-1_i386.deb
 fc387f923483f5d0a4fe84a3564d55c516c2ee5f 81790 rsyslog-pgsql_3.20.4-1_i386.deb
 c51025cc1aaff1528e55d9109272513a9ebdea9b 89142 rsyslog-gssapi_3.20.4-1_i386.deb
 9409ef17697ca87eb4b95ef0cc648b8628633b37 88538 rsyslog-gnutls_3.20.4-1_i386.deb
Checksums-Sha256: 
 e962d40c9a9dc80b68a82c4ee102871e008154d7fdc649fcc491a1d7afc416aa 1291 
rsyslog_3.20.4-1.dsc
 adc179e5996c9769ed5d46c68e0db07ed6c87a38982de9165105c69cd8786342 1304299 
rsyslog_3.20.4.orig.tar.gz
 6bb1f2e61383bcc0eb94ef5835d68ca85dc1b35e6798f957047e271d6b344384 19779 
rsyslog_3.20.4-1.diff.gz
 a6b39aa21b075e5cdf43c22515e1fee3d9fa879ae4c37b8bb258fbec25480451 425416 
rsyslog-doc_3.20.4-1_all.deb
 c92590912f0523ce877bfacfe5278c49f0a88d47a1cd3832426f9e253280bb68 256990 
rsyslog_3.20.4-1_i386.deb
 9f7a1d0d0b630fc6cb9558ee2e0cbd271eca85f75674423e45ef50a2408a5ecc 82022 
rsyslog-mysql_3.20.4-1_i386.deb
 40b0cc28a721ca61efa5ccaa7713eba95fe6a816c02b3b0c972d94d2e0852c09 81790 
rsyslog-pgsql_3.20.4-1_i386.deb
 5ed02807b18aca84fa80c2fac1be7007fdc343976b1dfb379490ed0c3ac8657b 89142 
rsyslog-gssapi_3.20.4-1_i386.deb
 ce03cbc183225075ca32f6584e40f1257527a6a6108244ee01a796df8dde2b5b 88538 
rsyslog-gnutls_3.20.4-1_i386.deb
Files: 
 0d32b2ef43cc919ce288f4c01a3f982c 1291 admin important rsyslog_3.20.4-1.dsc
 1d67c139fdd7b327f15c4a9f4a4ec8cd 1304299 admin important 
rsyslog_3.20.4.orig.tar.gz
 37ca48993878f8089251cad418561133 19779 admin important rsyslog_3.20.4-1.diff.gz
 29fb300a09b941e9dcdaeb17c420634b 425416 doc extra rsyslog-doc_3.20.4-1_all.deb
 faf26e51c820aa5943aec82f2dba5e75 256990 admin important 
rsyslog_3.20.4-1_i386.deb
 95e9a9985a535eeebe3d5dc9a0a896e0 82022 admin extra 
rsyslog-mysql_3.20.4-1_i386.deb
 c5af87b4a2609b80ff396783aff6d86a 81790 admin extra 
rsyslog-pgsql_3.20.4-1_i386.deb
 6d12575d03bb95d3bbecd3756c54cd3c 89142 admin extra 
rsyslog-gssapi_3.20.4-1_i386.deb
 9c19c713429d0cadb646f88e2a832fac 88538 admin extra 
rsyslog-gnutls_3.20.4-1_i386.deb

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

iEYEARECAAYFAkmQ8ywACgkQh7PER70FhVQj1QCfUnmJjuvfg9Y/hK3gRTgGwgeB
wEwAoML4o9yNQlgZ3IA1o1D9rSfOUts9
=jgFj
-END PGP SIGNATURE-


Accepted:
rsyslog-doc_3.20.4-1_all.deb
  to pool/main/r/rsyslog/rsyslog-doc_3.20.4-1_all.deb
rsyslog-gnutls_3.20.4-1_i386.deb
  to pool/main/r/rsyslog/rsyslog-gnutls_3.20.4-1_i386.deb
rsyslog-gssapi_3.20.4-1_i386.deb
  to pool/main/r/rsyslog/rsyslog-gssapi_3.20.4-1_i386.deb
rsyslog-mysql_3.20.4-1_i386.deb
  to pool/main/r/rsyslog/rsyslog-mysql_3.20.4-1_i386.deb
rsyslog-pgsql_3.20.4-1_i386.deb
  to pool/main/r/rsyslog/rsyslog-pgsql_3.20.4-1_i386.deb
rsyslog_3.20.4-1.diff.gz
  to pool/main/r/rsyslog/rsyslog_3.20.4-1.diff.gz
rsyslog_3.20.4-1.dsc
  to pool/main/r/rsyslog/rsyslog_3.20.4-1.dsc
rsyslog_3.20.4-1_i386.deb
  to pool/main/r/rsyslog/rsyslog_3.20.4-1_i386.deb
rsyslog_3.20.4.orig.tar.gz
  to pool/main/r/rsyslog/rsyslog_3.20.4.orig.tar.gz


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

Accepted fnfx 0.3-14 (source i386)

2009-02-09 Thread Agney Lopes Roth Ferraz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 10 Feb 2009 01:16:19 -0200
Source: fnfx
Binary: fnfxd fnfx-client
Architecture: source i386
Version: 0.3-14
Distribution: unstable
Urgency: low
Maintainer: Agney Lopes Roth Ferraz ag...@debian.org
Changed-By: Agney Lopes Roth Ferraz ag...@debian.org
Description: 
 fnfx-client - Client for customize fnfxd hot-keys
 fnfxd  - ACPI and hotkey daemon for Toshiba laptops
Closes: 503887
Changes: 
 fnfx (0.3-14) unstable; urgency=low
 .
   * added new supported Toshiba laptop to readme -
  Thanks to Darshaka Pathirana (Closes: #503887)
Checksums-Sha1: 
 c42c97ed72c01a84661c14b1330d73725a1d49d8 968 fnfx_0.3-14.dsc
 ed304c5d1028a35776c5d1ff7f4097b66203e973 27580 fnfx_0.3-14.diff.gz
 f88567e98f36a43ab49fe5cb2202a477c285e030 19572 fnfxd_0.3-14_i386.deb
 bf1a66c109bdd8d7942a3549fdc36d35d670a323 7518 fnfx-client_0.3-14_i386.deb
Checksums-Sha256: 
 b93744a0791006603a97180d0b01675cd23de3b53abb4e1fb26c55aabdde3c95 968 
fnfx_0.3-14.dsc
 aeb53b653a665ad8f558d86f0c9e234171103e5580108ea592fc154b35b2e26f 27580 
fnfx_0.3-14.diff.gz
 6a2e13117421c4cb432cf677122b5f4d6964521f331a818b4b6095f86b6f 19572 
fnfxd_0.3-14_i386.deb
 149fdc5598bdf3c2acc18044757e80e548d5f02323d0953f535b24e1c1a67578 7518 
fnfx-client_0.3-14_i386.deb
Files: 
 373a4843bd07358a6c9666a86e0cc11a 968 utils optional fnfx_0.3-14.dsc
 dd91693add79bdfb093b2b7dfdfcd155 27580 utils optional fnfx_0.3-14.diff.gz
 912557217495e6878c7ed0e4d25d5b43 19572 utils optional fnfxd_0.3-14_i386.deb
 cade5cf51ada631b64ec748ad7e50bd7 7518 utils optional 
fnfx-client_0.3-14_i386.deb

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

iEYEARECAAYFAkmQ9rcACgkQD99I1lm5V66XVgCff+dFYYPwtZtNgW9zNYK3sxcO
wHAAn3vh9PUtRrDEoNzsjvoWr2MoWNU2
=qDEt
-END PGP SIGNATURE-


Accepted:
fnfx-client_0.3-14_i386.deb
  to pool/main/f/fnfx/fnfx-client_0.3-14_i386.deb
fnfx_0.3-14.diff.gz
  to pool/main/f/fnfx/fnfx_0.3-14.diff.gz
fnfx_0.3-14.dsc
  to pool/main/f/fnfx/fnfx_0.3-14.dsc
fnfxd_0.3-14_i386.deb
  to pool/main/f/fnfx/fnfxd_0.3-14_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 axp 0.2.1+patch-92-4 (source all)

2009-02-09 Thread Clint Adams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 21:29:27 -0500
Source: axp
Binary: axp
Architecture: source all
Version: 0.2.1+patch-92-4
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Clint Adams sch...@debian.org
Description: 
 axp- command line tool and wrapper for tla
Changes: 
 axp (0.2.1+patch-92-4) unstable; urgency=low
 .
   * Bump to Standards-Version 3.8.0
   * Drop Vcs-Browser.
   * Set Maintainer to Debian QA Group.
Checksums-Sha1: 
 cb631a14af1934b0937fb6b2328652cf949eb661 953 axp_0.2.1+patch-92-4.dsc
 d0a39d8fc6062f23cb2c301bc1c21bfdd5a95449 2324 axp_0.2.1+patch-92-4.diff.gz
 25759a60efff274e8dbc8599e4708f31c5d6324d 33378 axp_0.2.1+patch-92-4_all.deb
Checksums-Sha256: 
 98c8c6acc065a29c4f7ff383eee4d3fb09dd4053468b65e8726a33c328229af3 953 
axp_0.2.1+patch-92-4.dsc
 25c3df46b359699ccecfb3a1be50f55fce0534849bac1b4ad41a5bcdda1dde77 2324 
axp_0.2.1+patch-92-4.diff.gz
 43cb733bed7aa5e8c88b7a18f06b1927d2a010a45ede435f1389406c9c2352b4 33378 
axp_0.2.1+patch-92-4_all.deb
Files: 
 24515586517f441ad9ee906693441acc 953 devel optional axp_0.2.1+patch-92-4.dsc
 77a9968fb397c6e9ace94c1c43cb8d9e 2324 devel optional 
axp_0.2.1+patch-92-4.diff.gz
 c875904ed1b899f4a3f940ae6cd8afaa 33378 devel optional 
axp_0.2.1+patch-92-4_all.deb

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

iD8DBQFJkPld5m0u66uWM3ARAq54AJwKW5nxvNbo0q+lVzZ/6eis/U/WMACgsUus
t9tpT7H4c3IrR2oHzu68lFw=
=3KwO
-END PGP SIGNATURE-


Accepted:
axp_0.2.1+patch-92-4.diff.gz
  to pool/main/a/axp/axp_0.2.1+patch-92-4.diff.gz
axp_0.2.1+patch-92-4.dsc
  to pool/main/a/axp/axp_0.2.1+patch-92-4.dsc
axp_0.2.1+patch-92-4_all.deb
  to pool/main/a/axp/axp_0.2.1+patch-92-4_all.deb


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



Accepted sillypoker 0.25.5-6 (source i386)

2009-02-09 Thread Barry deFreese
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 22:11:36 -0500
Source: sillypoker
Binary: sillypoker
Architecture: source i386
Version: 0.25.5-6
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Barry deFreese bdefre...@debian.org
Description: 
 sillypoker - text based classic poker game
Closes: 493498
Changes: 
 sillypoker (0.25.5-6) unstable; urgency=low
 .
   * QA upload.
 + Set maintainer to Debian QA Group packa...@qa.debian.org.
   * Acknowledge NMUs.
   * Improve short description. (Closes: #493498).
   * Add ${misc:Depends} for debhelper package.
   * Add proper Copyright holders to debian/copyright.
 + Change license path to GPL-2.
   * Quote strings in menu file.
   * Remove trailing whitespace from debian/sillypoker.6.
   * Bump debhelper build-dep to = 5 to match compat.
   * Bump Standards Version to 3.8.0.
Checksums-Sha1: 
 6e09eadfa2d546b50022ae1743db3f064f3b7453 1027 sillypoker_0.25.5-6.dsc
 629bf9576bf7318d445037051c84e3d6a49f57f5 329976 sillypoker_0.25.5-6.diff.gz
 e942e08833c713992110f575d8f1e91e14e4b4be 49796 sillypoker_0.25.5-6_i386.deb
Checksums-Sha256: 
 a0ebe89ef8be03961d2f029e62e4027c36a320986967ca7edbd1d193935f76f9 1027 
sillypoker_0.25.5-6.dsc
 a8becbea2e935e64a88723208a8280f24d02e13c82cb0a26b13387c3ec96696e 329976 
sillypoker_0.25.5-6.diff.gz
 e47d15a2f77ba251d6e679545a308fde50d498527215c0545b020822343eb77d 49796 
sillypoker_0.25.5-6_i386.deb
Files: 
 943a1726a48e62e2154a522dbe83997f 1027 games optional sillypoker_0.25.5-6.dsc
 f347147af6d2f8830d0fb21860ee5690 329976 games optional 
sillypoker_0.25.5-6.diff.gz
 883613e42c32904dc2f3b41f61dd2ee0 49796 games optional 
sillypoker_0.25.5-6_i386.deb

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

iEYEARECAAYFAkmQ/44ACgkQ5ItltUs5T36chQCdHfOcAFqQ+S9yyOP+FFfmjXiR
rZgAn3gn6IjvAV3ZB/gXTp8Hd88S8X9a
=bjEq
-END PGP SIGNATURE-


Accepted:
sillypoker_0.25.5-6.diff.gz
  to pool/main/s/sillypoker/sillypoker_0.25.5-6.diff.gz
sillypoker_0.25.5-6.dsc
  to pool/main/s/sillypoker/sillypoker_0.25.5-6.dsc
sillypoker_0.25.5-6_i386.deb
  to pool/main/s/sillypoker/sillypoker_0.25.5-6_i386.deb


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



Accepted praat 5.0.29-1lenny1 (source amd64)

2009-02-09 Thread Rafael Laboissiere
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 09 Feb 2009 22:19:36 +0100
Source: praat
Binary: praat
Architecture: source amd64
Version: 5.0.29-1lenny1
Distribution: unstable
Urgency: high
Maintainer: Rafael Laboissiere raf...@debian.org
Changed-By: Rafael Laboissiere raf...@debian.org
Description: 
 praat  - program for speech analysis and synthesis
Closes: 514652
Changes: 
 praat (5.0.29-1lenny1) unstable; urgency=high
 .
   * debian/control: Depend on oss-compat, such that sound will work on
 standard installations (closes: #514652)
Checksums-Sha1: 
 f28eeda3a5a5ee48e51d2aef87aa3ebd4663f639 1263 praat_5.0.29-1lenny1.dsc
 d2599f9ccaae0f0b059e14d85c5903bdbd663791 31018 praat_5.0.29-1lenny1.diff.gz
 8d3cd0b734a809363c57084f79b941a9cc7e1ab0 2361216 praat_5.0.29-1lenny1_amd64.deb
Checksums-Sha256: 
 bdf4b4063c6a0f7e6e3971f4ab31cdb7757f067bc2e7fe1b8827d7bb01e7dc37 1263 
praat_5.0.29-1lenny1.dsc
 517a93ce9d6d4628c9a9b466a65508007c3ba72bdb5363567e6a1e328008bce4 31018 
praat_5.0.29-1lenny1.diff.gz
 13cc69db80373e0d6bc70f0bb38fe018a6f2a25294f8dd09e09c4da5fcc4ccb6 2361216 
praat_5.0.29-1lenny1_amd64.deb
Files: 
 a0abd06b54389b58d50dd2af5956c1c1 1263 science optional praat_5.0.29-1lenny1.dsc
 ab0cdc3527b73da5bcc9caf6006bb5c0 31018 science optional 
praat_5.0.29-1lenny1.diff.gz
 6ae3d821d6f8632409dab5de379b2f06 2361216 science optional 
praat_5.0.29-1lenny1_amd64.deb

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

iD8DBQFJkRsZk3oga0pdcv4RApn3AJ4716aDBCo8Yzt1wkZPY5ObARvzdQCaA20L
qobrzCsAc9IyDugBr/EEGFo=
=U7z0
-END PGP SIGNATURE-


Accepted:
praat_5.0.29-1lenny1.diff.gz
  to pool/main/p/praat/praat_5.0.29-1lenny1.diff.gz
praat_5.0.29-1lenny1.dsc
  to pool/main/p/praat/praat_5.0.29-1lenny1.dsc
praat_5.0.29-1lenny1_amd64.deb
  to pool/main/p/praat/praat_5.0.29-1lenny1_amd64.deb


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