Re: os-prober changes

2012-02-07 Thread Paul Wise
[CCing you since I'm not sure you are subscribed]

On Tue, Feb 7, 2012 at 3:09 PM, Андрей Гаврилин wrote:

 I have changed Linux detection and I have added *BSD detection. We
 will use It for Mandriva/ROSA.

Please report a bug against the os-prober package:

http://www.debian.org/Bugs/Reporting

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/CAKTje6HRMf9KvG5nF1nfbES-E3iZvKe=jrbjerynti1rlbs...@mail.gmail.com



Re: Bug#657949: Cannot install libhdf5-mpi-dev and libnetcdf-dev

2012-02-07 Thread Alastair McKinstry
On 2012-02-02 01:43, Steve M. Robbins wrote:
 Hi,

 I'd like to contribute towards a solution for this.  I'm forwarding to
 debian-devel to get some others' ideas.
 Naively, I don't understand why netcdf can't offer multiple variants,
 just as hdf5 does.  Or, at least, one package libnetcdf-mpi-dev that
 links with the default MPI implementation.
 I am not involved in the netcdf. You should report a bug on this
 package.
 I'm prepared to do so, but I'd first like to get agreement that
 netcdf is where the problem lies.  Netcdf maintainers, please
 chime in!


 I think we can no longer live in the status quo (see all the blockers
 of #631019), so something has to give.  Even if it is painful, perhaps
 Debian could pioneer something and pass patches back to upstream?

 Thoughts?

 -Steve

As of now, I have several packages (eg ADIOS, CDO) that used to build
against netcdf and libhdf5-mpi-dev
that don't. Without fixes to netCDF (I appreciate what Francesco says
about netcdf upstream
not giving the libraries proper names), there needs to be a regression:
either the packages
build with netcdf but no MPI, or  MPI but no netcdf.

I could split the package, and provide two versions, eg. adios-mpi and
adios-serial, but this to me is going backwards.
In an increasingly parallel world, we need binaries that will run in
parallel when its available. eg. detect
an MPI environmnent, and if so, use the parallel version of libraries.

Do others think this is the way to go, or that way lies madness?

That is, can we work out the details of what would be needed for
automatic parallelism,
what we can do and what upstream changes might be needed?

e.g. we might add some shim code at the start of programs that do:

if (mpi_detected || ($ENV{NETCDF_SERIAL_WANTED})
   dlopen(netcdf_mpi_version)
else
  dlopen(netcdf_serial_version)
 
(Some netCDF programs, even running under MPI, might run in serial mode
in order to use
features such as compression that don't work in parallel netcdf).

We need to come up with:
(1) A bigger picture of where we want Debian to go (may involve upstream
changes)
(2) A plan for that we can do for the next release.

Regards
Alastair


-- 
Alastair McKinstry  , alast...@sceal.ie , mckins...@debian.org
http://blog.sceal.ie

Anyone who believes exponential growth can go on forever in a finite world
is either a madman or an economist - Kenneth Boulter, Economist.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f30eea0.7030...@debian.org



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Neil Williams
On Mon, 6 Feb 2012 08:31:15 +0100
Raphael Hertzog hert...@debian.org wrote:

 If you discover any bug in dpkg's multiarch implementation, please
 report it to the BTS (against the version 1.16.2~wipmultiarch).

I'd like to ask for some help with a bug which is tripping up my tests
with the multiarch-aware dpkg from experimental - #647522 -
non-deterministic behaviour of gzip -9n.

Some MultiArch: same packages in the archive (libppl9 is the one I came
across first) contain .gz files in ./usr/share/doc/ which differ between
architectures when, AFAICT, the original/decompressed file does not.
i.e. this isn't a bug in libppl9. Strangely, unpacking the .deb,
decompressing these files and then recompressing them with gzip -9nf
changes the checksum of the .gz file *to match the other architectures*.

e.g. the armel package has a bad .gz file, the armhf has a good one.
the kfreebsd-amd64 package has a bad .gz file, the amd64 has a good one.

If that matrix was flipped diagonally, it might make more sense.
;-)

The bad checksums also *match* between armel and kfreebsd-amd64.

armel, kfreebsd-amd64:
0e52e84eebf41588865742edaff7b3c0  usr/share/doc/libppl9/CREDITS.gz

armhf, i386, amd64:
99e2b9f8972ce00cfe57e3735881015e  usr/share/doc/libppl9/CREDITS.gz

By bad, I mean that the .gz file, when decompressed and recompressed,
changes checksum to match the other architecture. It appears to be a
boolean change, not random or Nary.

In this case, it also changes the filesize:

armel, kfreebsd-amd64:
6344 2011-02-27 09:07 ./usr/share/doc/libppl9/CREDITS.gz

armhf, i386, amd64:
6343 2011-02-27 09:07 ./usr/share/doc/libppl9/CREDITS.gz

(Jakub Wilk originally spotted a checksum change without a filesize
change, so filesize is not the best indicator, hence the checksum test.)

Decompress and recompress the file from the kfreebsd-amd64 or armel
packages on amd64 or armel and the filesize changes back to 6343 and the
checksum changes to that of amd64/armhf/i386 etc. making the bug very
hard to reproduce.

The change does not happen in reverse, neither can I regenerate the .gz
file with the original checksum on the architecture which showed the
original problem. Once the bad checksum changes to the good one,
repeating the compression retains the good checksum. (The .gz file
with the changed checksum really is different - it is one byte larger
and 3 bytes differ.) I've run the test script for a couple of hundred
iterations and the checksum always changes after the first 
decompress+compress cycle but never changes back.

So far, I've tried this on abel.debian.org, inside and outside the sid
chroot, and on amd64. Either the armel or kfreebsd-amd64 package can be
unpacked and the CREDITS.gz file decompressed and recompressed - the
filesize and checksum change to the values seen on armhf and amd64.

Can someone spot whether I've made a mess of the test script or whether
there is something else going on here?

http://people.debian.org/~codehelp/gzip.sh.txt

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=647522

It would be a very laborious task to check the md5sums of every .gz file
in /usr/share/doc in every MultiArch: same package across all
architectures and the Contents-* files on the mirrors don't contain the
filesize of the listed files. Does anyone have ideas on how to scan the
archive for this kind of problem?

If we can't pin this down, it is going to make MultiArch very hard to
deliver - any package build could make some MultiArch combinations
uninstallable in ways that are very hard to detect in advance, causing
entire dependency chains to fail to install.

The manifestation of the issue in libppl9 is clear when trying to
install the MultiArch build-dependencies for cross-compilers:

$ sudo apt-get install libcloog-ppl-dev:armel

Selecting previously unselected package libppl9:armel.
(Reading database ... 167711 files and directories currently installed.)
Unpacking libppl9:armel (from .../libppl9_0.11.2-6_armel.deb) ...
dpkg: error
processing /var/cache/apt/archives/libppl9_0.11.2-6_armel.deb
(--unpack): './usr/share/doc/libppl9/CREDITS.gz' is different from the
same file on the system

This then leaves the installation in a broken state and needs careful
manual intervention to remove the dependencies of the broken package as
`apt-get -f install` wrongly tries to just reinstall the libppl9:armel
package again.

dpkg is correct in it's current handling - the files really are
different. The problem is that the uncompressed file is not.

Comment from Paul Effert:
 I should add that it's OK (from the point of view of
 the RFCs) if gzip produces different outputs given the same
 inputs when compressing.  The RFCs allow that and presumably
 other gzip implementations do that.  All that's required is
 that compress+decompress result in a copy of the original.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=647522#20

What we're seeing here are differences after decompress+compress but
without a reproducible test for this bug, 

Bug#659003: ITP: slalib -- Positional Astronomy Library

2012-02-07 Thread Ole Streicher
Package: wnpp
Severity: wishlist
Owner: Ole Streicher deb...@liska.ath.cx
X-Debbugs-Cc: debian-devel@lists.debian.org, debian-scie...@lists.debian.org


* Package name: slalib
  Version : 2.5.4
  Upstream Author : Pat Wallace :
* URL : http://starlink.jach.hawaii.edu/starlink
* License : GPLv2+
  Programming Lang: F77
  Description : Positional Astronomy Library
 SLALIB1is a library of routines intended to make accurate and
 reliable positional-astronomy applications easier to write. Most
 SLALIB routines are concerned with astronomical position and time, but
 a number have wider trigonometrical, numerical or general
 applications.

This package is built in preparation to build saods9
http://bugs.debian.org/655648 and starlink-libast
http://bugs.debian.org/657957.

Its main goal is to replace the obfuscated C-code that is used within
these libraries by a well-documented and open sourced Fortran code.
I plan to do the C interface similarly to the old inclusion of slalib in
saods9 by Justin Pryzby.

However, there is no official slalib tar ball, only an (untagged) git
repository, To make it more confusing, starlink doesn't use version
numbers, but code names for their releases -- the current one is
namaka, and the next will be kaulia. However, internally (files
sla.news, components.xml) they use version numbers which I will use.
I will not be able to provide a working watch file :-(

Some links:
- Programmer's manual http://star-www.rl.ac.uk/docs/sun67.htx/sun67.html
- GIT repository
http://starlink.jach.hawaii.edu/git/?p=starlink.git;a=tree;f=libraries/sla;h=1e88f89e36f83c9370a1b088ab4e7e995519ea56;hb=HEAD
- Starlink home page http://starlink.jach.hawaii.edu/starlink
- Home page of the original author of slalib (Pat Wallace):
http://www.tpsoft.demon.co.uk/

I appreciate any comments on the goal or packaging hints.

Best

Ole



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f3106ed.7030...@liska.ath.cx



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Michael Biebl
On 07.02.2012 10:59, Neil Williams wrote:
 
 It would be a very laborious task to check the md5sums of every .gz file
 in /usr/share/doc in every MultiArch: same package across all
 architectures and the Contents-* files on the mirrors don't contain the
 filesize of the listed files. Does anyone have ideas on how to scan the
 archive for this kind of problem?

This might be interesting

http://lists.debian.org/debian-devel/2011/11/msg00508.html


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Re: Linux 3.2 in wheezy

2012-02-07 Thread Thomas Goirand
On 02/03/2012 01:55 AM, Vincent Bernat wrote:
 With vservers and  OpenVZ you can run each service  in its own container
 with a small  memory footprint. With Xen/KVM, you  will need to allocate
 at least 128 MB for each container.
   
NO ! The limit isn't that great.

With Etch, 48 MB was enough. With Lenny, 64 MB was enough.
With Squeeze, 96 MB is enough (the minimum is between 64 and
96 MB, I didn't care investigating). And with 96 MB, you can already
run a DNS server, OpenVPN, or a (very basic) mail server. The issue
though, might be with things like locales generation or other RAM
intensive stuff in Debian, which may need a bit more RAM to run
smoothly. But in such case, you'll have the issue with both KVM/XEN
and containers, so it doesn't really apply as a point in the discussion
here.

In fact, the main issue when booting a VM with a low RAM footprint,
is the size of the initrd, which over the years, is growing and growing,
which means that you need a large amount of RAM to even load it.

But if you customize a bit your initrd (which means, removing all
useless drivers), you can really use a lot less RAM.

So, ok, you need more RAM, but not as much as 128 MB.

That doesn't discard your argument of the RAM usage all together,
it's really truth that a container will use less RAM. But please, be
reasonable when trying to make your point, and keep it with
facts that you have checked by yourself.

Thomas


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f31206f.9030...@debian.org



Re: Linux 3.2 in wheezy

2012-02-07 Thread Thomas Goirand
On 02/03/2012 08:53 PM, Adam Borowski wrote:
 ssh works.
 
 It triples the memory footprint of an empty Debian container (init + syslogd +
 cron[1]), and adds a new daemon that can be potentially subverted.

 Of course, usually sshd is strongly preferred (so much better than needing
 near-full privileges on the host!) but for many uses you don't need to log
 in to the guest for non-administrative tasks.

 [1]. Yeah, cron is something you could shave away too if you really wanted;
 not worth the hassle though.
   
Are you trying to make the point that, with containers,
you wouldn't need ssh, and you would with VMs? If so,
that's at least not turth with Xen (xm console domain,
which can easily be granted using the dom0 ssh server
and few sudo tricks).

If I'm interpreting wrongly what you wrote above, then
please explain, I'd be happy to understand! :)

Thomas


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f3121a7.2010...@debian.org



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Ian Jackson
Michael Biebl writes (Doesn't contain source for waf binary code):
 as this issue affects quite a few packages, I'd like to bring this up
 for wider discussion.
 
 The issue basically is, that the waf build system uses a python script,
 which embeds a bz2 tarball containing further python sources. Those are
 unpacked to .waf-*/ when the waf script is executed. More details can be
 found at [1].

This is quite astonishing enough, but the situation is in fact even
worse than it appears.  I investigated, and my conclusions are:

waf is a build system written in Python.  It is normally distributed
in the form of a script called waf, which the waf authors intend for
upstream authors to include in their upstream distribution tarballs
etc.  The script is a self-extracting archive which, whenever it's
run, extracts the tarball out of itself into a temporary directory and
then passes control to the python code it has just extracted.

This IMO would be bad enough to reject an upstream package, in this
form, in Debian.  After all we want to be able to modify the build
system as well as the package and this approach makes it unreasonably
hard to do so.  And if the build system has some kind of bug we don't
want to have to update dozens of copies embedded in individual source
packages.

But there is more, and worse.

I compared the tarball in waf in postler 0.1.1-1.1 with the upstream
code as obtained from git clone https://code.google.com/p/waf/;.  It
turns out that the tarball embedded in the waf script is not the
original waf source distribution.  It contains a subset of the
files, and those files it does contain have been processed to remove
comments, whitespace, etc., much like a JavaScript minimisation.  Ie
the waf self-extracting archive is generated out of the waf.git
source code by massaging some of the files; modified versions of the
script are supposed to be generated by editing the waf.git
distribution and rerunning its build.

This means that we are distributing files derived from the waf.git
source code, but not the waf.git source code itself.  This is of
course completely unacceptable in Debian.  (It is not a violation of
the copyright on waf itself as waf has a permissive non-copyleft
licence; but will be a breach of the copyright on any GPL'd waf-using
package, because the GPL's requirements extend to the build system.)

I suggest the following fix:

 * Upstream waf should be packaged somehow.  Upstream's declared
   policy of asking packages to ship a copy of waf suggests that there
   won't be much API stability so we will need to encode the waf
   version number in the package name, and we may need to package
   multiple versions of waf.

 * All packages which currently use an included copy of waf should be
   changed to use a system-provided copy of waf instead.

 * We should treat the file waf in the root of affected packages as
   we do any other file which is non-DFSG-compliant but which we do
   have permission to redistribute.  Our current practice is to repack
   upstream source archives to remove these files from the Debian
   sources.  (I think this is pointless makework but changing that
   policy is out of scope for this discussion.)

 * It is possible that some upstream source packages contain waf
   scripts which were generated from modified versions of waf.git.  In
   this case we may discover that those packages cannot be built with
   publicly available versions of waf.git.  

   For those packages, we need to obtain the relevant version of
   waf.git (for example, by hassling the package upstream), or perhaps
   if it's a simple change we can create our own suitable version of
   waf.git by decompiling (de-minimising) the supplied waf script
   tarball contents (and permanently maintain the forked waf.git).

   If neither of those is possible and the issue can't be worked
   around some other way we will have to move the affected package
   from main to non-free; if the affected upstream package is
   copylefted then we will have no permission to distribute it at all
   and must drop it entirely.

I think this is a release-critical bug for all the affected packages.

Ian.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20273.9233.121924.949...@chiark.greenend.org.uk



Re: Bug#657949: Cannot install libhdf5-mpi-dev and libnetcdf-dev

2012-02-07 Thread Francesco P. Lovergine
On Tue, Feb 07, 2012 at 09:28:00AM +, Alastair McKinstry wrote:
 On 2012-02-02 01:43, Steve M. Robbins wrote:
  Hi,
 
  I'd like to contribute towards a solution for this.  I'm forwarding to
  debian-devel to get some others' ideas.
  Naively, I don't understand why netcdf can't offer multiple variants,
  just as hdf5 does.  Or, at least, one package libnetcdf-mpi-dev that
  links with the default MPI implementation.
  I am not involved in the netcdf. You should report a bug on this
  package.
  I'm prepared to do so, but I'd first like to get agreement that
  netcdf is where the problem lies.  Netcdf maintainers, please
  chime in!
 
 
  I think we can no longer live in the status quo (see all the blockers
  of #631019), so something has to give.  Even if it is painful, perhaps
  Debian could pioneer something and pass patches back to upstream?
 
  Thoughts?
 
  -Steve
 
 As of now, I have several packages (eg ADIOS, CDO) that used to build
 against netcdf and libhdf5-mpi-dev
 that don't. Without fixes to netCDF (I appreciate what Francesco says
 about netcdf upstream
 not giving the libraries proper names), there needs to be a regression:
 either the packages
 build with netcdf but no MPI, or  MPI but no netcdf.
 

The problem is the following: with latest update to hdf5, the chain of
dependencies changed, so that now libnetcdf6 depends on the pure serial
version of hdf5, while the previous one depended on serial or parallel:

Version: 1:4.1.1-6+b1
Depends: libc6 (= 2.7), libcurl3-gnutls (= 7.16.2), libgcc1 (= 1:4.1.1), 
libgfortran3 (= 4.3), libhdf5-7 (= 1.8.7), libquadmath0 (= 4.6), libstdc++6 
(= 4.4.0)

Version: 1:4.1.1-6
Depends: libc6 (= 2.7), libcurl3-gnutls (= 7.16.2-1), libgcc1 (= 1:4.1.1), 
libgfortran3 (= 4.3), libhdf5-serial-1.8.4 | libhdf5-1.8.4, libquadmath0 (= 
4.6), libstdc++6 (= 4.4.0)

So at least at packaging level, that should be fixed to follow the previous 
criteria.

That said, indeed NetCDF provides nc_create_par and nc_open_par in both serial
and parallel versions, but needs to be built with --enable-parallel to take
advantage of parallel I/O in HDF5, else it works in pure serial mode.

-- 
Francesco P. Lovergine


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207131730.gb7...@gandalf.is-a-geek.org



Re: Bug#657949: Cannot install libhdf5-mpi-dev and libnetcdf-dev

2012-02-07 Thread Francesco P. Lovergine
On Wed, Feb 01, 2012 at 07:43:31PM -0600, Steve M. Robbins wrote:
  
  The solution is having upstream adopting a sane naming scheme for 
  mpi-enabled
  flavor libraries instead of using always the same names for all.
 
 Francesco, please clarify: are you speaking of the hdf5 upstream or
 the netcdf upstream?  (Both?)  
 

I mean first of all hdf5 upstream. Note that anyway both them use
different APIs for serial and parallel programming models. So having
the same library names for completely different things IMHO is defective by
design and confusing. As a principle we could install only mpi-enabled
libraries (the serial model and API could be anyway used) but that would imply
that people should coexist with such kind of stuff installed always, if used
or not. Also some serial-only supports could be missed and anomalies appearing 
here and there: both them are quite complicated beasts. I would avoid
to take such kind of decision without a deep analysis.

 What problem are you trying to solve with that: co-installable -dev
 packages or just coinstallable lib packages?
 
 
  Unfortunately they were still not available for that at the time of
  my last poking.  Diverging from upstream is not a good idea, so we
  still have to live in a non perfect world...
 
 I think we can no longer live in the status quo (see all the blockers
 of #631019), so something has to give.  Even if it is painful, perhaps
 Debian could pioneer something and pass patches back to upstream?
 
 Thoughts?
 

I'm afraid it is quite difficult having such kind of proposal accepted
by upstreams. It implies changes for both them in library use, that they
could be not ready to introduce. In 2009 I asked about that in hdf-forum
without a positive answer.

-- 
Francesco P. Lovergine


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207134136.gc7...@gandalf.is-a-geek.org



Re: Linux 3.2 in wheezy

2012-02-07 Thread Russell Coker
On Wed, 8 Feb 2012, Thomas Goirand z...@debian.org wrote:
 With Etch, 48 MB was enough. With Lenny, 64 MB was enough.
 With Squeeze, 96 MB is enough (the minimum is between 64 and
 96 MB, I didn't care investigating). And with 96 MB, you can already
 run a DNS server, OpenVPN, or a (very basic) mail server. The issue

[...]
 
 In fact, the main issue when booting a VM with a low RAM footprint,
 is the size of the initrd, which over the years, is growing and growing,
 which means that you need a large amount of RAM to even load it.

http://etbe.coker.com.au/2008/05/22/xen-and-swap/

In the time of Etch I did some tests to try and improve Xen swap performance.  
My tests failed to give the result I desired but I demonstrated that an Etch 
Xen DomU could boot with 13M of RAM, give bearable performance for Debian 
package installation with 16M, and start giving reasonable performance for 
Debian package installation with about 28M of RAM.

As you note the initrd size is an issue.

Also with recent versions we have things like udev that take up some RAM.  But 
it's not difficult to hack a DomU to not need such things.

There used to be hosting companies that would rent out virtual machines with 
less than 128M of RAM.  I am not aware of anyone who still does that as RAM 
prices decrease and storage price/performance remains about the same it is 
becoming a bad business model to force customers into swap.

https://www.xeneurope.com/clients/cart.php

Xen Europe still sells 128M Xen DomUs.

-- 
My Main Blog http://etbe.coker.com.au/
My Documents Bloghttp://doc.coker.com.au/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201202080101.23718.russ...@coker.com.au



Bug#659023: O: bochs -- IA-32 PC emulator

2012-02-07 Thread Guillem Jover
Package: wnpp
Severity: normal

I intend to orphan the bochs package. I've uploaded what I had pending
in my git tree for bochs 2.4.6 to unstable, and the pending changes I
had for the new upstream release 2.5.1 to experimental, because the
latter gets random freezes at least on the wxWidgets GUI, and I can't
be bothered to track it down (I'll file a bug against that version
after the upload).

Ideally the person adopting this package should have C++ and low-level
programming knowledge, including x86 assembler.

The package description is:
 Bochs is a highly portable free IA-32 (x86) PC emulator written in C++, that
 runs on most popular platforms. It includes emulation of the Intel x86 CPU,
 common I/O devices, and a custom BIOS.
 .
 Bochs is capable of running most operating systems inside the emulation
 including GNU, GNU/Linux, *BSD, FreeDOS, MSDOS and Windows 95/NT.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207141926.ga21...@gaara.hadrons.org



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Michael Biebl
On 07.02.2012 14:16, Ian Jackson wrote:

 I compared the tarball in waf in postler 0.1.1-1.1 with the upstream
 code as obtained from git clone https://code.google.com/p/waf/;.  It
 turns out that the tarball embedded in the waf script is not the
 original waf source distribution.  It contains a subset of the
 files, and those files it does contain have been processed to remove
 comments, whitespace, etc., much like a JavaScript minimisation.  Ie
 the waf self-extracting archive is generated out of the waf.git
 source code by massaging some of the files; modified versions of the
 script are supposed to be generated by editing the waf.git
 distribution and rerunning its build.

The waf-unpack tagged bug reports refer to the Debian wiki with
instructions how to ship the waf script in unpacked form [2].

I assume the FTP team at least considers this approach as acceptable and
quite of few of the affected packages have been fixed this way already.

Michael

[1]
http://bugs.debian.org/cgi-bin/pkgreport.cgi?users=ftpmas...@debian.org;tag=waf-unpack
[2] http://wiki.debian.org/UnpackWaf
[3] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=654500#25
-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Re: Doesn't contain source for waf binary code

2012-02-07 Thread Alexander Reichle-Schmehl
Hi!


Am 07.02.2012 14:16, schrieb Ian Jackson:

  * Upstream waf should be packaged somehow.  Upstream's declared
policy of asking packages to ship a copy of waf suggests that there
won't be much API stability so we will need to encode the waf
version number in the package name, and we may need to package
multiple versions of waf.

Sorry, I'm quite busy and don't have time for a longer answer. We'll
follow up on this soonish.

However, regarding that specific point:  waf once was packaged in
Debian.  See 20100227195857.07540195@utumno
(http://lists.debian.org/debian-devel/2010/02/msg00714.html) for details
about the removal.


Best regards,
  Alexander


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f31508c.2060...@debian.org



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Jerome BENOIT

Hello List:

what is the status of an orphaned package but that is waiting for an sponsor to 
be uploaded ?

Thanks,
Jerome

On 03/02/12 20:33, Michael Biebl wrote:

Hi,

as this issue affects quite a few packages, I'd like to bring this up
for wider discussion.

The issue basically is, that the waf build system uses a python script,
which embeds a bz2 tarball containing further python sources. Those are
unpacked to .waf-*/ when the waf script is executed. More details can be
found at [1].

A few observations/questions:

* We do accept tarball-in-tarball packages. What makes this specific
case different?

* Where exactly is the DFSG violation? The package does ship the source
code even if embedding it in the waf script doesn't make that obvious

but

* Would it be sufficient to document in README.source how a user can
unpack and modify the waf sources (basically what [2] does) and wouldn't
this fulfill the DFSG requirements?


* What about packages which ship both an autotools and waf based build
system and the Debian package uses the one based on autotools?



Michael


[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645190
[2] http://wiki.debian.org/UnpackWaf





--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f315275.4070...@rezozer.net



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Ian Jackson
Michael Biebl writes (Re: Doesn't contain source for waf binary code):
 The waf-unpack tagged bug reports refer to the Debian wiki with
 instructions how to ship the waf script in unpacked form [2].

This is, unfortunately, not sufficient.

 I assume the FTP team at least considers this approach as acceptable and
 quite of few of the affected packages have been fixed this way already.

The FTP team probably assumed that the rather hard to read Python code
in the unpacked waf was actually the source code.  However, it is
not.

It is disappointing that none of the people involved with packaging
waf-using software spotted this problem.

Ian.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20273.20260.603921.659...@chiark.greenend.org.uk



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Roger Leigh
On Tue, Feb 07, 2012 at 01:16:01PM +, Ian Jackson wrote:
 Michael Biebl writes (Doesn't contain source for waf binary code):
  as this issue affects quite a few packages, I'd like to bring this up
  for wider discussion.
  
  The issue basically is, that the waf build system uses a python script,
  which embeds a bz2 tarball containing further python sources. Those are
  unpacked to .waf-*/ when the waf script is executed. More details can be
  found at [1].
 
 This means that we are distributing files derived from the waf.git
 source code, but not the waf.git source code itself.  This is of
 course completely unacceptable in Debian.  (It is not a violation of
 the copyright on waf itself as waf has a permissive non-copyleft
 licence; but will be a breach of the copyright on any GPL'd waf-using
 package, because the GPL's requirements extend to the build system.)

While the waf behavour does sound quite awful, is this really
any different than the current behaviour of the autotools?  The
configure script is an unreadable mess generated by the
expansion of macros in the autotools packages; it too bears little
relation to the original macros.

(This one of the reasons I hope autoconf will use shell functions in
the future.)


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207164410.gf8...@codelibre.net



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Jerome BENOIT

Sorry, this message was meant for an other threat.

On 07/02/12 17:33, Jerome BENOIT wrote:

Hello List:

what is the status of an orphaned package but that is waiting for an sponsor to 
be uploaded ?

Thanks,
Jerome

On 03/02/12 20:33, Michael Biebl wrote:

Hi,

as this issue affects quite a few packages, I'd like to bring this up
for wider discussion.

The issue basically is, that the waf build system uses a python script,
which embeds a bz2 tarball containing further python sources. Those are
unpacked to .waf-*/ when the waf script is executed. More details can be
found at [1].

A few observations/questions:

* We do accept tarball-in-tarball packages. What makes this specific
case different?

* Where exactly is the DFSG violation? The package does ship the source
code even if embedding it in the waf script doesn't make that obvious

but

* Would it be sufficient to document in README.source how a user can
unpack and modify the waf sources (basically what [2] does) and wouldn't
this fulfill the DFSG requirements?


* What about packages which ship both an autotools and waf based build
system and the Debian package uses the one based on autotools?



Michael


[1] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=645190
[2] http://wiki.debian.org/UnpackWaf








--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f3155eb.1060...@rezozer.net



Transition to PHP 5.4 starting soon (Re: PHP 5.4 transition in unstable)

2012-02-07 Thread Filipus Klutiero

On 2012-02-04 14:16, Ondřej Surý wrote:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Fellow developers,

this is just a heads up that we will upload php version 5.4 into
unstable very soon.  It is currently in RC phase and we spoke to PHP
upstream and both parties think this is a good idea to iron out more
bugs for upstream and allow us to have more time to transition.

Unfortunatelly PHP 5.4 introduce a couple of incompatible changes,
most notably:
- - safe_mode and register_globals was finally removed
  (THIS WILL BREAK VARIOUS SOFTWARE)
- - default charset is now utf-8
- - magic_quotes are deprecated (with warning)
- - three new reserved words: callable, insteadof and trait
- - multibyte support is now default
- - removed syntax (break $var, continue $var)
- - sqlite(2) extension was removed (already done in php5.3 in Debian)

For a full list you can check upstream UPGRADING readme:
http://anonscm.debian.org/gitweb/?p=pkg-php/php.git;a=blob;f=UPGRADING

php5-5.4.0~rc7-1 will be uploaded as soon as php5 5.3.10 transitions
to testing to fix the criticil remote vulnerability in php5 5.3.9.
I will then block the transition to testing with a RC bug, so we can
start testing existing software as soon as possible, but keep testing
in relatively stable state. The blocking bug will be removed as soon
we get to 5.4.0 final.

I also plan to provide official backports for Debian squeeze when
final 5.4.0 is out, so people can come and test new php 5.4.0 before
they upgrade to wheezy. I think that safe_mode and register_globals
removal deserves it.

Final note: We already had similar transitions in php (4-5, 5.2-5.3,
etc.), so it's not really that big deal, but it will require some
amount of work hence this email, so you can prepare yourself for the
transition before freeze.



Thank you Ondrej.

Thanks to the PHP team for tackling this task.
Just a note, technically we certainly can do this transition, but in 
terms of coordination, we didn't have a comparable PHP transition in a 
very long time. The PHP 5 transition was versioned and both versions 
coexisted.
As for 5.3, PHP 5.3 was uploaded to unstable over half a year after its 
release. We haven't, AFAIK, uploaded a development release of a major 
PHP version to unstable in the last decade. This could force usage of 
testing-proposed-updates.
Thankfully there's a page being built to track problems in packages that 
contain PHP code: http://wiki.debian.org/PHP/54Transition
I don't really know how different 5.4 is, hopefully it will be smooth. 
For reference, 5.3 took 18 days with some hinting: 
http://lists.debian.org/debian-testing-changes/2010/02/msg00043.html



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f31566a.7070...@gmail.com



Bug#659043: ITP: r-cran-deal -- Learning Bayesian Networks with Mixed Variables

2012-02-07 Thread ivo Maintz
Package: wnpp
Severity: wishlist
Owner: ivo Maintz i...@maintz.de

* Package name: r-cran-deal
  Version : 1.2.34
  Upstream Author : Susanne Gammelgaard Bottcher l...@math.aau.dk
* URL : http://cran.r-project.org/web/packages/deal/index.html
* License : GPL2
  Programming Lang: C, R
  Description : Learning Bayesian Networks with Mixed Variables

Bayesian networks with continuous and/or discrete variables
can be learned and compared from data.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120207163741.14058.97336.report...@orm.biologie.hu-berlin.de



Re: Linux 3.2 in wheezy

2012-02-07 Thread Marco d'Itri
On Feb 07, Thomas Goirand z...@debian.org wrote:

 Are you trying to make the point that, with containers,
 you wouldn't need ssh, and you would with VMs? If so,
With *OpenVZ* I do not need sshd, ftpd and cron in the guest because 
I can use the one in the host.
It's a custom environment, but I have no way to do this with LXC (or 
real virtualization).

 that's at least not turth with Xen (xm console domain,
 which can easily be granted using the dom0 ssh server
 and few sudo tricks).
Come one. This does not support remote commands execution, SFTP, etc.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Joey Hess
Neil Williams wrote:
 I'd like to ask for some help with a bug which is tripping up my tests
 with the multiarch-aware dpkg from experimental - #647522 -
 non-deterministic behaviour of gzip -9n.

pristine-tar hat tricks[1] aside, none of gzip, bzip2, xz are required
to always produce the same compressed file for a given input file, and I
can tell you from experience that there is a wide amount of variation. If
multiarch requires this, then its design is at worst broken, and at
best, there will be a lot of coordination pain every time there is a
new/different version of any of these that happens to compress slightly
differently.

Maybe there was a reason for Guillem  to want to tread carefully.

-- 
see shy jo

[1] Tricks including but not limited to: Small binary diffs and
embedding specific versions of these programs' compressors as
needed.


signature.asc
Description: Digital signature


Re: Linux 3.2 in wheezy

2012-02-07 Thread Vincent Bernat
OoO  En ce début  d'après-midi nuageux  du mardi  07 février  2012, vers
14:00, Thomas Goirand z...@debian.org disait :

 With vservers and  OpenVZ you can run each service  in its own container
 with a small  memory footprint. With Xen/KVM, you  will need to allocate
 at least 128 MB for each container.
 
 NO ! The limit isn't that great.

 With Etch, 48 MB was enough. With Lenny, 64 MB was enough.
 With Squeeze, 96 MB is enough (the minimum is between 64 and
 96 MB, I didn't care investigating). And with 96 MB, you can already
 run a DNS server, OpenVPN, or a (very basic) mail server. The issue
 though, might be with things like locales generation or other RAM
 intensive stuff in Debian, which may need a bit more RAM to run
 smoothly. But in such case, you'll have the issue with both KVM/XEN
 and containers, so it doesn't really apply as a point in the discussion
 here.

It  applies.  The major  point is  that with  containers, RAM  is shared
accross containers (the same kernel is used for all containers).  If one
container  needs for a  few seconds  200 MB,  it can  just use  them. No
memory needs to be allocated for the exclusive of one container.

 That doesn't discard your argument of the RAM usage all together,
 it's really truth that a container will use less RAM. But please, be
 reasonable when trying to make your point, and keep it with
 facts that you have checked by yourself.

Please, don't patronize people.
-- 
Vincent Bernat ☯ http://vincent.bernat.im

panic(sun_82072_fd_inb: How did I get here?);
2.2.16 /usr/src/linux/include/asm-sparc/floppy.h


pgp1NXhyolFT7.pgp
Description: PGP signature


Re: Doesn't contain source for waf binary code

2012-02-07 Thread Russ Allbery
Roger Leigh rle...@codelibre.net writes:

 While the waf behavour does sound quite awful, is this really any
 different than the current behaviour of the autotools?  The configure
 script is an unreadable mess generated by the expansion of macros in the
 autotools packages; it too bears little relation to the original macros.

But all the original macros are actually present and shipped with the
source (or are obtained from some version of the Autoconf, Automake, and
Libtool packages), and I think that failure to regenerate the configure
machinery with current Autotools would constitute a bug.  The difference
with waf is that the sources aren't included and aren't easily obtainable
via another package in Debian one can build-depend on.

I'm converting all of my packages to use dh-autoreconf so that I can
detect such bugs.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87r4y636uy@windlord.stanford.edu



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Jelmer Vernooij

On 02/07/2012 05:19 PM, Ian Jackson wrote:

Michael Biebl writes (Re: Doesn't contain source for waf binary code):

The waf-unpack tagged bug reports refer to the Debian wiki with
instructions how to ship the waf script in unpacked form [2].

This is, unfortunately, not sufficient.


I assume the FTP team at least considers this approach as acceptable and
quite of few of the affected packages have been fixed this way already.

The FTP team probably assumed that the rather hard to read Python code
in the unpacked waf was actually the source code.  However, it is
not.

Samba ships a snapshot of the upstream wafadmin python package and the 
waf-light script. They can be found as 'wafadmin' and 'waf-light' in 
https://code.google.com/p/waf.waf15/.


As far as I can tell there is no functional difference between using 
waf-light and the 'waf' script (direct or unpacked).


This is the code that the upstream developers directly work on, and it 
is what is used as the basis for generating the 
stripped-code-in-a-tarball-in-python minimal waf script.


Cheers,

Jelmer


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f31569b.40...@samba.org



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Andrey Rahmatullin
On Tue, Feb 07, 2012 at 09:12:37AM -0800, Russ Allbery wrote:
  While the waf behavour does sound quite awful, is this really any
  different than the current behaviour of the autotools?  The configure
  script is an unreadable mess generated by the expansion of macros in the
  autotools packages; it too bears little relation to the original macros.
 But all the original macros are actually present and shipped with the
 source (or are obtained from some version of the Autoconf, Automake, and
 Libtool packages),
You must mean all the original macros should be actually present because
it is not always true, as you seem to imply below.

 and I think that failure to regenerate the configure
 machinery with current Autotools would constitute a bug.  The difference
 with waf is that the sources aren't included and aren't easily obtainable
 via another package in Debian one can build-depend on.
 
 I'm converting all of my packages to use dh-autoreconf so that I can
 detect such bugs.
 

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: Doesn't contain source for waf binary code

2012-02-07 Thread Russ Allbery
Andrey Rahmatullin w...@wrar.name writes:
 On Tue, Feb 07, 2012 at 09:12:37AM -0800, Russ Allbery wrote:

 While the waf behavour does sound quite awful, is this really any
 different than the current behaviour of the autotools?  The
 configure script is an unreadable mess generated by the expansion of
 macros in the autotools packages; it too bears little relation to the
 original macros.

 But all the original macros are actually present and shipped with the
 source (or are obtained from some version of the Autoconf, Automake,
 and Libtool packages),

 You must mean all the original macros should be actually present
 because it is not always true, as you seem to imply below.

Er, well, no, I did actually mean what I said.  However, I suppose it's
possible that some upstreams are generating configure scripts from local
macros in /usr/share/aclocal that they don't ship with the package.
Autoconf actually makes it rather hard to do that (you have to go to some
extra effort to do the wrong thing), but I suppose it's theoretically
possible.

I've not run into it personally in years, though, and the few times that I
did run into it, the missing macros were ones that were shipped by other
Debian packages (like pkg-config).

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87vcni1qp1@windlord.stanford.edu



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Andrey Rahmatullin
On Tue, Feb 07, 2012 at 09:47:06AM -0800, Russ Allbery wrote:
  While the waf behavour does sound quite awful, is this really any
  different than the current behaviour of the autotools?  The
  configure script is an unreadable mess generated by the expansion of
  macros in the autotools packages; it too bears little relation to the
  original macros.
  But all the original macros are actually present and shipped with the
  source (or are obtained from some version of the Autoconf, Automake,
  and Libtool packages),
  You must mean all the original macros should be actually present
  because it is not always true, as you seem to imply below.
 Er, well, no, I did actually mean what I said.  However, I suppose it's
 possible that some upstreams are generating configure scripts from local
 macros in /usr/share/aclocal that they don't ship with the package.
They may omit macros from the tarball because of some other things
(starting with a bad tarball generation script). I think I've seen that in
one package but that was long ago and I don't remember details.

-- 
WBR, wRAR


signature.asc
Description: Digital signature


Re: Linux 3.2 in wheezy

2012-02-07 Thread Ben Hutchings
On Tue, Feb 07, 2012 at 06:09:40PM +0100, Vincent Bernat wrote:
[...]
 It  applies.  The major  point is  that with  containers, RAM  is shared
 accross containers (the same kernel is used for all containers).  If one
 container  needs for a  few seconds  200 MB,  it can  just use  them. No
 memory needs to be allocated for the exclusive of one container.
[...]

You can also allow VMs to do this with the use of a balloon driver
to reclaim memory.  But you should normally put some limit on the
memory used by a VM/container.  (One of the biggest problems people
have with LXC in squeeze is lack of the memory resource controller
in official packages.)

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207180755.gb12...@decadent.org.uk



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Michael Biebl
On 07.02.2012 18:07, Joey Hess wrote:
 Neil Williams wrote:
 I'd like to ask for some help with a bug which is tripping up my tests
 with the multiarch-aware dpkg from experimental - #647522 -
 non-deterministic behaviour of gzip -9n.
 
 pristine-tar hat tricks[1] aside, none of gzip, bzip2, xz are required
 to always produce the same compressed file for a given input file, and I
 can tell you from experience that there is a wide amount of variation. If
 multiarch requires this, then its design is at worst broken, and at
 best, there will be a lot of coordination pain every time there is a
 new/different version of any of these that happens to compress slightly
 differently.

This seems to be a rather common problem as evindenced by e.g.

https://bugs.launchpad.net/ubuntu/+source/clutter-1.0/+bug/901522
https://bugs.launchpad.net/ubuntu/+source/libtasn1-3/+bug/889303
https://bugs.launchpad.net/ubuntu/oneiric/+source/pam/+bug/871083

In Ubuntu they started to work-around that by excluding random files
from being compressed. So far I refused to add those hacks to the Debian
package as this needs to be addressed properly.

Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Re: Doesn't contain source for waf binary code

2012-02-07 Thread Ian Jackson
Alexander Reichle-Schmehl writes (Re: Doesn't contain source for waf binary 
code):
 However, regarding that specific point:  waf once was packaged in
 Debian.  See 20100227195857.07540195@utumno
 (http://lists.debian.org/debian-devel/2010/02/msg00714.html) for details
 about the removal.

Urgh.  Thanks for the pointer.

Ian.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20273.27184.988301.725...@chiark.greenend.org.uk



Re: Re: Description-less Packages indices

2012-02-07 Thread Filipus Klutiero

Martin Eberhard Schauer wrote:

The changes have ill side-effects:
[...]
  - These (untranslated) one-liners is what one gets visiting (2), e.g. (3).


Oh-oh. This was reported as #657557: 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=657557

  - There are no new Translation-xx files (4).


Could you clarify? The files are currently dated February 6th.


2:http://packages.debian.org
3:http://packages.debian.org/search?searchon=nameskeywords=manpages-de  
http://packages.debian.org/search?searchon=nameskeywords=manpages-de
4:http://ftp.debian.org/debian/dists/sid/main/i18n/




--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/4f317398.5070...@gmail.com



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Chow Loong Jin
On 08/02/2012 02:05, Andrey Rahmatullin wrote:
 On Tue, Feb 07, 2012 at 09:47:06AM -0800, Russ Allbery wrote:
 While the waf behavour does sound quite awful, is this really any
 different than the current behaviour of the autotools?  The
 configure script is an unreadable mess generated by the expansion of
 macros in the autotools packages; it too bears little relation to the
 original macros.
 But all the original macros are actually present and shipped with the
 source (or are obtained from some version of the Autoconf, Automake,
 and Libtool packages),
 You must mean all the original macros should be actually present
 because it is not always true, as you seem to imply below.
 Er, well, no, I did actually mean what I said.  However, I suppose it's
 possible that some upstreams are generating configure scripts from local
 macros in /usr/share/aclocal that they don't ship with the package.
 They may omit macros from the tarball because of some other things
 (starting with a bad tarball generation script). I think I've seen that in
 one package but that was long ago and I don't remember details.

Afaik autoconf includes aclocal.m4 in the dist tarball by default (I'm not sure
if you can actually disable that), which includes all out-of-tree macros.

However, having the macro in aclocal.m4 does not automagically grant you the
ability to autoreconf, as aclocal.m4 itself is regenerated then.

-- 
Kind regards,
Loong Jin



signature.asc
Description: OpenPGP digital signature


Bug#659051: ITP: libmodule-implementation-perl -- module for loading one of several alternate implementations of a module

2012-02-07 Thread gregor herrmann
Package: wnpp
Owner: gregor herrmann gre...@debian.org
Severity: wishlist
X-Debbugs-CC: debian-devel@lists.debian.org,debian-p...@lists.debian.org

* Package name: libmodule-implementation-perl
  Version : 0.03
  Upstream Author : Dave Rolsky auta...@urth.org
* URL : http://search.cpan.org/dist/Module-Implementation/
* License : Artistic-2.0
  Programming Lang: Perl
  Description : module for loading one of several alternate implementations 
of a module

Module::Implementation abstracts out the process of choosing one of several
underlying implementations for a module. This can be used to provide XS and
pure Perl implementations of a module, or it could be used to load an
implementation for a given OS or any other case of needing to provide
multiple implementations.

This module is only useful when you know all the implementations ahead of
time. If you want to load arbitrary implementations then you probably want
something like a plugin system, not this module.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207193930.ga1...@belanna.comodo.priv.at



Bug#659054: ITP: 389-adminutil -- Utility library for 389ds administration

2012-02-07 Thread Timo Aaltonen
Package: wnpp
Severity: wishlist
Owner: Timo Aaltonen tjaal...@ubuntu.com

* Package name: 389-adminutil
  Version : 1.1.15
  Upstream Author : Red Hat inc.
* URL : http://directory.fedoraproject.org/
* License : LGPL-2.1
  Programming Lang: C
  Description : Utility library for 389ds administration

 Libraries of functions used to administer 389 directory servers,
 usually in conjunction with the admin server.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120207200152.26735.29799.reportbug@eldon.tyrell



Re: severity for bugs in ignoring TMP/TMPDIR?

2012-02-07 Thread bastien ROUCARIES
Le Tuesday 7 February 2012 03:52:33, Henrique de Moraes Holschuh a écrit :
 On Mon, 06 Feb 2012, Ben Hutchings wrote:
arbitrarily large files (in my workflow, 5-100 GB) in /tmp, which is
on the root filesystem.

And swap as hell and kill interactivity
 
 Well, that is Seriously Broken, and it needs fixing.  And it is not a
 wishlist bug either.  We've been through a thread about this rather
 recently.
 
 There are no excuses for any application to assume it can dump arbritarily
 large crap into /tmp and _not_ use $TMPDIR or some other method to
 configure where to place large files.
 
  And how about having /tmp in tmpfs, so that it is limited to a
  fraction of the size of memory?  No application should assume that it
  can store working files of arbitrary size in /tmp.
 
 Exactly.


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201202071739.46507.roucaries.bast...@gmail.com



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Steve Langasek
Hi Joey,

On Tue, Feb 07, 2012 at 01:07:11PM -0400, Joey Hess wrote:
 Neil Williams wrote:
  I'd like to ask for some help with a bug which is tripping up my tests
  with the multiarch-aware dpkg from experimental - #647522 -
  non-deterministic behaviour of gzip -9n.

 pristine-tar hat tricks[1] aside, none of gzip, bzip2, xz are required
 to always produce the same compressed file for a given input file, and I
 can tell you from experience that there is a wide amount of variation. If
 multiarch requires this, then its design is at worst broken, and at
 best, there will be a lot of coordination pain every time there is a
 new/different version of any of these that happens to compress slightly
 differently.

The relevant multiarch invariants are:

 - if a multiarch package is to be installed for more than one architecture,
   all architectures of the package must be at the same version

 - a file shipped at the same location by more than one architecture of the
   package must be identical across all architectures

These are reasonable constraints that spare the package manager from having
to try to arbitrate which is the right version of the package/file, or
distinguish between cases where the differences across architectures
matter vs. cases where they don't.  However, where this gets tangled is
with the one compressed file required for all packages by policy:
/usr/share/doc/$pkg/changelog(.Debian).gz.

There are various ways to meet both the multiarch constraints and the policy
requirements, including shipping an arch:all common package that will
contain the changelog for each multiarch library, which then ships just a
symlink.  But that's a lot of package proliferation for a fairly small
corner case.  If we *could* ensure that the same input file produced the
same output when compressed /with the same version of the tool/ regardless
of architecture, that would be sufficient.  (Having to occasionally do a
sourceful upload due to gzip version skew across architectures is certainly
much cheaper than the alternatives.)

At this stage, I have no reason to think that's not achievable, though no
one seems to have dived very deep into the bug yet.  And whether gzip
upstream agrees this is a reasonable invariant to uphold, I don't know.

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


signature.asc
Description: Digital signature


Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Neil Williams
On Tue, 07 Feb 2012 19:11:16 +0100
Michael Biebl bi...@debian.org wrote:

 On 07.02.2012 18:07, Joey Hess wrote:
  Neil Williams wrote:
  I'd like to ask for some help with a bug which is tripping up my tests
  with the multiarch-aware dpkg from experimental - #647522 -
  non-deterministic behaviour of gzip -9n.
  
  pristine-tar hat tricks[1] aside, none of gzip, bzip2, xz are required
  to always produce the same compressed file for a given input file, and I
  can tell you from experience that there is a wide amount of variation. If
  multiarch requires this, then its design is at worst broken, and at
  best, there will be a lot of coordination pain every time there is a
  new/different version of any of these that happens to compress slightly
  differently.

Exactly. I'm not convinced that this is fixable at the gzip level, nor
is it likely to be fixable by the trauma of changing from gzip to
something else. That would be pointless.

What matters, to me, is that package installations do not fail
somewhere down the dependency chain in ways which are difficult to fix.
Compression is used to save space, not to provide unique identification
of file contents. As it is now clear that the compression is getting in
the way of dealing with files which are (in terms of their actual
*usable* content) identical, then the compression needs to be taken out
of the comparison operation. Where the checksum matches that's all well
and good (problems with md5sum collisions aside), where it does not
match then dpkg cannot deem that the files conflict without creating a
checksum based on the decompressed content of the two files. A checksum
failure of a compressed file is clearly unreliable and will generate
dozens of unreproducible bugs.

MultiArch has many benefits but saving space is not why MultiArch
exists and systems which will use MultiArch in anger will not be likely
to be short of either RAM or swap space. Yes, the machines which are
*targeted* by the builds which occur as a result of having MultiArch
available for Emdebian will definitely be aimed at low resource
devices but those devices do NOT need to actually use MultiArch
themselves. In the parlance of --build, --host and autotools, MultiArch
is a build tool, not a host mechanism. If you've got the resources to
cross-build something, you have the resources to checksum the
decompressed content of some files.

As far as having MultiArch to install non-free i386 on amd64, it is
less of a problem simply because the number of packages installed as
MultiArch packages is likely to be a lot less. Even so, although the
likelihood drops, the effect of one of these collisions getting through
is the same.

 This seems to be a rather common problem as evindenced by e.g.
 
 https://bugs.launchpad.net/ubuntu/+source/clutter-1.0/+bug/901522
 https://bugs.launchpad.net/ubuntu/+source/libtasn1-3/+bug/889303
 https://bugs.launchpad.net/ubuntu/oneiric/+source/pam/+bug/871083

See the number of .gz files in this list:
http://people.debian.org/~jwilk/multi-arch/same-md5sums.txt

 In Ubuntu they started to work-around that by excluding random files
 from being compressed. So far I refused to add those hacks to the Debian
 package as this needs to be addressed properly.

Maybe the way to solve this properly is to remove compression from the
uniqueness check - compare the contents of the file in memory after
decompression. Yes, it will take longer but it is only needed when the
md5sum (which already exists) doesn't match.

The core problem is that the times when the md5sum of the compressed
file won't match are unpredictable. No workaround is going to be
reliable because there is no apparent logic to the files which become
affected and any file which was affected at libfoo0_1.2.3 could well be
completely blameless in libfoo0_1.2.3+b1.

(binNMU's aren't the answer either because that could just as easily
transfer the bug from libfoo0 to libfoo-dev and so on.)

There appears to be plenty of evidence that checksums of compressed
files are only useful until the checksums fail to match, at which point
I think dpkg will just have to fall back to decompressing the contents
in RAM / swap and doing a fresh checksum on the contents of each
contentious compressed file. If the checksums of the contents match,
the compressed file on the filesystem wins.

Anything else and Debian loses all the reproducibility which is so
important to developers and users. When I need to make a cross-building
chroot from unstable (or write a tool for others to create such
chroots), it can't randomly fail today, work tomorrow and fail
with some other package the day after.

If others agree, I think that bug #647522, currently open against gzip,
could be reassigned to dpkg and retitled to not rely on checksums for
compressed files when determining MultiArch file collisions.

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgpapkAXqvTTW.pgp
Description: PGP signature


Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Neil Williams
On Tue, 7 Feb 2012 14:01:57 -0800
Steve Langasek vor...@debian.org wrote:

 There are various ways to meet both the multiarch constraints and the policy
 requirements, including shipping an arch:all common package that will
 contain the changelog for each multiarch library, which then ships just a
 symlink.  But that's a lot of package proliferation for a fairly small
 corner case.  If we *could* ensure that the same input file produced the
 same output when compressed /with the same version of the tool/ regardless
 of architecture, that would be sufficient.  (Having to occasionally do a
 sourceful upload due to gzip version skew across architectures is certainly
 much cheaper than the alternatives.)
 
 At this stage, I have no reason to think that's not achievable, though no
 one seems to have dived very deep into the bug yet.  And whether gzip
 upstream agrees this is a reasonable invariant to uphold, I don't know.

OK, I admit I haven't put evidence of such digging into the bug report
currently, but it has been happening - with custom tools and upstream
co-operation. There were a few pastebin links on IRC and a private IRC
chat which I will try and summarise for the bug report tomorrow.

My understanding, after a day testing this bug, is that we *cannot*
ensure that the same input file always gives the same compressed file
across all possible permutations. The RFC simply does not require it and
the compression tools simply do not support it. It might be nice if they
could but there is no real prospect that it will happen 100% of the
time. Quite often it will work but that is coincidence and
happen-stance. To rely on the checksums of compressed files being
identical for all operations on the same original input file is simply
not supportable by upstream, as I understand it currently.

All that the RFC requires is that an input file can be compressed
and the compressed file will *always* result in getting the original
input file back. There is nothing about the state of the compressed file
itself. It is merely an intermediary and I think we should think about
treating it as such.

-- 


Neil Williams
=
http://www.linux.codehelp.co.uk/



pgp2KUCCf2gTE.pgp
Description: PGP signature


Re: Doesn't contain source for waf binary code

2012-02-07 Thread Karl Goetz
On Tue, 7 Feb 2012 13:16:01 +
Ian Jackson ijack...@chiark.greenend.org.uk wrote:

 Michael Biebl writes (Doesn't contain source for waf binary code):
  as this issue affects quite a few packages, I'd like to bring this
  up for wider discussion.
  
  The issue basically is, that the waf build system uses a python
  script, which embeds a bz2 tarball containing further python
  sources. Those are unpacked to .waf-*/ when the waf script is
  executed. More details can be found at [1].

  * It is possible that some upstream source packages contain waf
scripts which were generated from modified versions of waf.git.  In
this case we may discover that those packages cannot be built with
publicly available versions of waf.git.  

I don't know anything about waf not mentioned in this thread, but
would it be possible to patch the package to work with a packaged waf
instead?
thanks,
kk


-- 
Karl Goetz, (Kamping_Kaiser / VK7FOSS)
http://www.kgoetz.id.au
No, I won't join your social networking group


signature.asc
Description: PGP signature


Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Ben Hutchings
On Tue, Feb 07, 2012 at 10:04:04PM +, Neil Williams wrote:
 On Tue, 07 Feb 2012 19:11:16 +0100
 Michael Biebl bi...@debian.org wrote:
 
  On 07.02.2012 18:07, Joey Hess wrote:
   Neil Williams wrote:
   I'd like to ask for some help with a bug which is tripping up my tests
   with the multiarch-aware dpkg from experimental - #647522 -
   non-deterministic behaviour of gzip -9n.
   
   pristine-tar hat tricks[1] aside, none of gzip, bzip2, xz are required
   to always produce the same compressed file for a given input file, and I
   can tell you from experience that there is a wide amount of variation. If
   multiarch requires this, then its design is at worst broken, and at
   best, there will be a lot of coordination pain every time there is a
   new/different version of any of these that happens to compress slightly
   differently.
 
 Exactly. I'm not convinced that this is fixable at the gzip level, nor
 is it likely to be fixable by the trauma of changing from gzip to
 something else. That would be pointless.
 
 What matters, to me, is that package installations do not fail
 somewhere down the dependency chain in ways which are difficult to fix.
 Compression is used to save space, not to provide unique identification
 of file contents. As it is now clear that the compression is getting in
 the way of dealing with files which are (in terms of their actual
 *usable* content) identical, then the compression needs to be taken out
 of the comparison operation. Where the checksum matches that's all well
 and good (problems with md5sum collisions aside), where it does not
 match then dpkg cannot deem that the files conflict without creating a
 checksum based on the decompressed content of the two files.
[...]

But it's worse than this: even if dpkg decompresses before comparing,
debsums won't (and mustn't, for backward compatibility).  So it's
potentially necessary to fix up the md5sums file for a package
installed for multiple architectures, if it contains a file that was
compressed differently.

Ben.

-- 
Ben Hutchings
We get into the habit of living before acquiring the habit of thinking.
  - Albert Camus


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207224923.gc12...@decadent.org.uk



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Russ Allbery
Neil Williams codeh...@debian.org writes:

 Maybe the way to solve this properly is to remove compression from the
 uniqueness check - compare the contents of the file in memory after
 decompression. Yes, it will take longer but it is only needed when the
 md5sum (which already exists) doesn't match.

Another possible solution is to just give any package an implicit Replaces
(possibly constrained to /usr/share/doc) on any other package with the
same name and version and a different architecture.  This isn't as
defensive, in that it doesn't catch legitimate bugs where someone has made
a mistake and the packages contain different contents, but it also solves
the binNMU issue (well, solves; the changelog will randomly swap back
and forth between the packages, but I'm having a hard time being convinced
this is a huge problem).

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87fwemz229@windlord.stanford.edu



Re: Linux 3.2 in wheezy

2012-02-07 Thread Henrique de Moraes Holschuh
On Tue, 07 Feb 2012, Marco d'Itri wrote:
 On Feb 07, Thomas Goirand z...@debian.org wrote:
  Are you trying to make the point that, with containers,
  you wouldn't need ssh, and you would with VMs? If so,
 With *OpenVZ* I do not need sshd, ftpd and cron in the guest because 
 I can use the one in the host.
 It's a custom environment, but I have no way to do this with LXC (or 
 real virtualization).

On LXC you have to ressort to screen or something like that if you want a
console.  Indeed it is not the same thing.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207232514.ga13...@khazad-dum.debian.net



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Henrique de Moraes Holschuh
On Tue, 07 Feb 2012, Ben Hutchings wrote:
 But it's worse than this: even if dpkg decompresses before comparing,
 debsums won't (and mustn't, for backward compatibility).  So it's

Maybe you can switch to sha256 and add the new functionality while at
it?  Detect which mode (md5sum raw, sha256 uncompress) by the size of
the hash.  Old debsums won't work with the new files, but is that really
a problem?  That's what stable updates and backports are for...

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207234212.gb13...@khazad-dum.debian.net



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Jonathan Nieder
Henrique de Moraes Holschuh wrote:

 Maybe you can switch to sha256 and add the new functionality while at
 it?  Detect which mode (md5sum raw, sha256 uncompress) by the size of
 the hash.  Old debsums won't work with the new files, but is that really
 a problem?  That's what stable updates and backports are for...

No, I do not believe random Debian-internal compatibility breaks are
what stable updates are for.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207234446.GB5928@burratino



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Henrique de Moraes Holschuh
On Tue, 07 Feb 2012, Jonathan Nieder wrote:
 Henrique de Moraes Holschuh wrote:
  Maybe you can switch to sha256 and add the new functionality while at
  it?  Detect which mode (md5sum raw, sha256 uncompress) by the size of
  the hash.  Old debsums won't work with the new files, but is that really
  a problem?  That's what stable updates and backports are for...
 
 No, I do not believe random Debian-internal compatibility breaks are
 what stable updates are for.

If dpkg or debsums in stable are going to get in the way, IMO it is.

But let's not go down that discussion in this thread.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120207234903.gc13...@khazad-dum.debian.net



MATE Desktop Environment in Debian

2012-02-07 Thread Stefano Karapetsas

Hi,
I am a developer of MATE Desktop Environment 
(http://www.mate-desktop.org), a fork of GNOME2 started in June 2011. 
Currently MATE has a little team of developers and contributors, and 
many users thanks to ready packages for some distributions (Debian, 
Ubuntu, Arch, Fedora) and thanks to the inclusion in the latest Linux 
Mint edition.
A lot of work is done from the initial renaming script. We solved many 
bugs and fixed all things with the latest libraries since GNOME2 has 
gone, and we fixed conflicts with GNOME3. We added some new features, 
too.
I think to give to users the chance to use the desktop that they used 
for many years is a great thing for a distribution, if this is supported 
and has a team who work on it.
Someone can object that MATE is based on a dead technology, but GTK3 
support is on our roadmap and we already started to work on it.
Someone else can object Why dont you help GNOME3 fallback session or 
XFCE?. Well, our goal is to keep things like GNOME2. In GNOME3 there 
are a lot of changes in all software, e.g. in Nautilus and in many 
others. XFCE is very different from GNOME2. We want to be focused on 
this purpose to support a desktop like GNOME2.
The nice peculiarity of the free software is anyone can develop 
applications at will. Our work doesnt damage other software.
Completed the brief introduction about MATE, I'm going to write about 
the goal of this mail.
I am a Debian user for many years and I know well all his components, 
like dpkg, the debian policy and the process to have new packages. I 
started to contribute on MATE as packager for Debian. We have already a 
repository for Wheezy (http://wiki.mate-desktop.org/download#debian). 
Many users are using it well. Now that this is enough stable, I begun 
the process for ask the inclusion in Debian.

The first package is mate-common.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=658783 (ITP)
http://lists.debian.org/debian-mentors/2012/02/msg00115.html (RFS)
With this mail I wish to have opinions and suggestions about our work 
from Debian Developers.

Thank you!

Stefano Karapetsas


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e944551ee6cb118622d33c2a01ebe...@karapetsas.com



Re: Doesn't contain source for waf binary code

2012-02-07 Thread Henrique de Moraes Holschuh
On Tue, 07 Feb 2012, Roger Leigh wrote:
 While the waf behavour does sound quite awful, is this really
 any different than the current behaviour of the autotools?  The

That is one of the reasons why you are supposed to retool on distro builds.
Retooling the entire build system as part of the rebuild all autogenerated
files best practice is not news in Debian.

-- 
  One disk to rule them all, One disk to find them. One disk to bring
  them all and in the darkness grind them. In the Land of Redmond
  where the shadows lie. -- The Silicon Valley Tarot
  Henrique Holschuh


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120208002356.gd13...@khazad-dum.debian.net



Taking over conffiles from other packages while cleaning up properly [Re: Problems detected: package initscripts left obsolete init.d script behind]

2012-02-07 Thread Michael Biebl
[taking this to debian-devel]
On 08.02.2012 01:12, Roger Leigh wrote:
 On Wed, Feb 08, 2012 at 04:23:01AM +0530, Lone Learner wrote:
 I am not able to switch to dependency based boot. Here is the relevant
 output.

 debian:/boot/grub# dpkg-reconfigure sysv-rc
 info: Checking if it is safe to convert to dependency based boot.

 error: Unable to migrate to dependency based boot sequencing.
 error: Problems detected: package initscripts left obsolete init.d script
 behind, package initscripts left obsolete init.d script behind, package
 initscripts left obsolete init.d script behind

  /etc/init.d/stop-bootlogd 4544c7e1a2d0c713d29424d02faad237 obsolete
  /etc/init.d/stop-bootlogd-single 648d8624e708151500c5e299a6005afe obsolete
  /etc/init.d/bootlogd 267ceea04f703171e6c62f506fda3305 obsolete

 How can I fix this issue and convert to dependency based boot?
 
 Delete the above three files and try again.  bootlogd was moved into
 a separate package recently.

As bootlogd has been split off from sysvinit-utils into a separate
package, I'm wondering if there is a way how bootlogd can take over the
conffiles while at the same time sysvinit-utils can safely clean up the
conffiles in case bootlogd is not installed (sysvinit-utils doesn't have
a dependency on bootlogd, so it is actually rather likely that bootlogd
won't be installed).


Michael


-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Riku Voipio
On Tue, Feb 07, 2012 at 10:13:01PM +, Neil Williams wrote:
 On Tue, 7 Feb 2012 14:01:57 -0800
 Steve Langasek vor...@debian.org wrote:
  At this stage, I have no reason to think that's not achievable, though no
  one seems to have dived very deep into the bug yet.  And whether gzip
  upstream agrees this is a reasonable invariant to uphold, I don't know.
 
 My understanding, after a day testing this bug, is that we *cannot*
 ensure that the same input file always gives the same compressed file
 across all possible permutations. The RFC simply does not require it and
 the compression tools simply do not support it. It might be nice if they
 could but there is no real prospect that it will happen 100% of the
 time. Quite often it will work but that is coincidence and
 happen-stance. To rely on the checksums of compressed files being
 identical for all operations on the same original input file is simply
 not supportable by upstream, as I understand it currently.

The RFC doesn't require it, but as far as I see gzip doesn't use randomness,
time, uninitialised memory or anything else which might cause it ending up
with an different compression result in 1 case out of 1. Understanding
why this happens should be the prerequisite for deciding what do about this
issue.

If it turns out not reasonable to expect the compression results to be
identical, we should probably look into using dpkg --path-exclude= with
/usr/share/{doc,man,info}/* when installing foreign-architecture packages.
Very few Multi-Arch: same packages need to install identical compressed
files outside these directories. In case it happens, the package needs to 
use multiarch paths or split files to -common package. The ugliness of this
solution is that the specialness of /usr/share/doc and others needs to
embedded into the package system somewhere.

Riku


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120208005252.ga2...@afflict.kos.to



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Russell Coker
On Wed, 8 Feb 2012, Riku Voipio riku.voi...@iki.fi wrote:
 If it turns out not reasonable to expect the compression results to be
 identical

It was reported that sometimes the size differs.  Surely if nothing else 
having gzip sometimes produce an unnecessarily large file is a bug!

Expecting that the compression gives the smallest file every time is 
reasonable.

-- 
My Main Blog http://etbe.coker.com.au/
My Documents Bloghttp://doc.coker.com.au/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/201202081205.44427.russ...@coker.com.au



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Russ Allbery
Riku Voipio riku.voi...@iki.fi writes:

 If it turns out not reasonable to expect the compression results to be
 identical, we should probably look into using dpkg --path-exclude= with
 /usr/share/{doc,man,info}/* when installing foreign-architecture packages.

I believe the only packages that pose a problem are those marked
Multi-Arch: same, allowing multiple architectures of the same package to
be installed, and those packages are almost all shared libraries.  (Among
other things, nothing with a non-arch-qualified binary in bin or sbin
directories can be Multi-Arch: same anyway, which rules out most
non-shared-library packages other than things like cross-compilers.)
libraries are already not allowed to ship files in /usr/share/man and
/usr/share/info unless they change with every SONAME bump or we can't have
coinstallability of multiple SONAMEs of a package.

I think the problem is mostly limited to /usr/share/doc; the remaining
corner cases look pretty rare.

-- 
Russ Allbery (r...@debian.org)   http://www.eyrie.org/~eagle/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87sjimxgub@windlord.stanford.edu



Bug#635672: marked as done (ITP: libswe -- Swiss Ephemeris)

2012-02-07 Thread Debian Bug Tracking System
Your message dated Tue, 24 Jan 2012 21:02:57 +
with message-id e1rpnw5-0004tk...@franck.debian.org
and subject line Accepted libswe 1.77.00.0004-1 (source all i386)
has caused the Debian Bug report #635672,
regarding ITP: libswe -- Swiss Ephemeris
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
635672: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=635672
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: WNPP
Severity: wishlist

* Package name: libswe
  Version : 1.77.00
  Upstream Author : Dieter Koch and Alois Treindl
* URL : http://www.astro.com/swisseph/
* License : GPL2+
  Programming Lang: C
  Description : The SWISS EPHEMERIS is the high precision ephemeris 
developed by Astrodienst, largely based upon the DE406 ephemeris from 
NASA's JPL.

The Swiss Ephemeris offers these advantages:

The Swiss Ephemeris is based upon the latest planetary and lunar
ephemeris, DE405/406, developed by NASA's Jet Propulsion
Laboratory. The original integration, DE405, covered the years 3000 BC
to 3000 AD and required 550 Mb of disk space. DE406 is a compressed
version of DE405 which requires 200 MB while maintaining a precision
of better than 1 m for the moon and 25 m for the planets. These data
have been further compressed with sophisticated compression techniques
developed by Astrodienst. The ephemeris now requires for the complete
6000 years only 5 Mb for all planets except the Moon, and 13 Mb for
the Moon. This compressed ephemeris reproduces the JPL data with 0.001
arcseconds precision.

We have extended the timespan of the JPL ephemeris by numerical
integration, so that Swiss Ephemeris covers the years 5400 BC to 5400
AD, a total of 10'800 years. For this extended timespan the ephemeris
requires 32 Mbytes of ephemeris files.

All transformation steps from the inertial timeframe of the JPL DE406
integration to the reference frame for astrological coordinates (true
equinox of date), all corrections like relativistic aberration,
deflection of light in the gravity field of the Sun etc. have been
performed with utmost care and precision so that the target precision
of 0.001 arcsec is maintained through all transformation steps. Never
before has such a high precision ephemeris been available to
astrologers.

Swiss Ephemeris contains three ephemerides. The user can choose
whether he/she wants to use the original JPL DE406 data (if available
at his/her site), the compressed Swiss Ephemeris data (the default) or
a built in semianalytic theory by Steve Moshier. The Swiss Ephemeris
package switches automatically to the available best precision
ephemeris dependent on which installed ephemeris files it finds. Even
without any stored ephemeris files, using the Moshier model, planetary
positions with better than 0.1 seconds of arc precision are available
(3 arcsec for the Moon).

In addition to the astronomical planets as contained in the JPL
integration, we have included all other bodies and hypothetical
factors which are of interest to the astrologer. We have used our own
numerical integration program to provide ephemerides for ALL known
asteroids. There are over 55'000 of them and nobody will be able to
use them all. We distribute these extended asteroid files via our
download area; there are also CDROMs available with large sets of
asteroid files.

Asteroid reaserachers may be interested in a December 1998 article in
the Economist magazine about the naming of asteroids.

Speed: The Swiss Ephemeris is precise and fast. On our Linux test
machine, a 1000 MHz Pentium III, we compute 10'000 complete sets of
planetary positions, i.e. 10'000 x 11 planets, in 9 seconds. This is
0.9 milliseconds for the complete set of exact planetary positions
(consecutive 1 day steps).



-- System Information:
Debian Release: 5.0.8
  APT prefers oldstable-proposed-updates
  APT policy: (500, 'oldstable-proposed-updates'), (500, 'oldstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-2-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- 
Paul Elliott   1(512)837-1096
pelli...@blackpatchpanel.com   PMB 181, 11900 Metric Blvd Suite J
http://www.free.blackpatchpanel.com/pme/   Austin TX 78758-3117


signature.asc
Description: Digital signature
---End Message---
---BeginMessage---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 14 Jan 2012 00:52:17 -0600
Source: libswe
Binary: libswe-doc libswe-dev libswe0 swe-basic-data
Architecture: source all 

Re: Taking over conffiles from other packages while cleaning up properly [Re: Problems detected: package initscripts left obsolete init.d script behind]

2012-02-07 Thread Raphael Hertzog
On Wed, 08 Feb 2012, Michael Biebl wrote:
  error: Unable to migrate to dependency based boot sequencing.
  error: Problems detected: package initscripts left obsolete init.d script
  behind, package initscripts left obsolete init.d script behind, package
  initscripts left obsolete init.d script behind
 
   /etc/init.d/stop-bootlogd 4544c7e1a2d0c713d29424d02faad237 obsolete
   /etc/init.d/stop-bootlogd-single 648d8624e708151500c5e299a6005afe obsolete
   /etc/init.d/bootlogd 267ceea04f703171e6c62f506fda3305 obsolete
 
  How can I fix this issue and convert to dependency based boot?
  
  Delete the above three files and try again.  bootlogd was moved into
  a separate package recently.
 
 As bootlogd has been split off from sysvinit-utils into a separate
 package, I'm wondering if there is a way how bootlogd can take over the
 conffiles

For this part, there's nothing to do AFAIK (except adding a Replaces, just
in case).

 while at the same time sysvinit-utils can safely clean up the
 conffiles in case bootlogd is not installed (sysvinit-utils doesn't have
 a dependency on bootlogd, so it is actually rather likely that bootlogd
 won't be installed).

What's difficult in implementing this?

You can't really use dpkg-maintscript-helper conditionnaly because the
installation state of bootlogd might change between preinst and postinst
but you could at least remove the (unmodified) files in postinst if you see that
bootlogd is not at least unpacked (usage of dpkg-query in maintainer
scripts is safe).

Cheers,
-- 
Raphaël Hertzog ◈ Debian Developer

Pre-order a copy of the Debian Administrator's Handbook and help
liberate it: http://debian-handbook.info/liberation/


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120208072712.gb32...@rivendell.home.ouaza.com



Re: Please test gzip -9n - related to dpkg with multiarch support

2012-02-07 Thread Lars Wirzenius
On Tue, Feb 07, 2012 at 10:49:23PM +, Ben Hutchings wrote:
 But it's worse than this: even if dpkg decompresses before comparing,
 debsums won't (and mustn't, for backward compatibility).  So it's
 potentially necessary to fix up the md5sums file for a package
 installed for multiple architectures, if it contains a file that was
 compressed differently.

I'm uncomfortable with the idea of checking checksums only for
uncompressed data. Compressed files have headers, and at least for
some formats, it seems those headers can contain essentially 
arbitrary data. This allows compressed files to be modified in
rather significant ways, without debsums noticing, if debsums
uncompresses before comparing.

Further, uncompressors have the potential for security problems.
See https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2009-2624 for example.
In other words: debsums needs to decompress to verify that no
files have been tampered with, but doing so can invoke an attack.
Such an attack may be unlikely, but it would seem to be a better design
to not open up the possibility for it.

-- 
http://www.kickstarter.com/projects/docstory/mix-1-2-albanian


signature.asc
Description: Digital signature


Accepted dirac 1.0.2-6 (source all amd64)

2012-02-07 Thread Alessio Treglia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Feb 2012 09:22:58 +0100
Source: dirac
Binary: dirac libdirac-decoder0 libdirac-encoder0 libdirac-dev libdirac-doc
Architecture: source amd64 all
Version: 1.0.2-6
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Alessio Treglia ales...@debian.org
Description: 
 dirac  - open and royalty free high quality video codec - commandline util
 libdirac-decoder0 - open and royalty free high quality video codec - decoder 
library
 libdirac-dev - open and royalty free high quality video codec - development 
file
 libdirac-doc - open and royalty free high quality video codec - library 
document
 libdirac-encoder0 - open and royalty free high quality video codec - encoder 
library
Closes: 658910
Changes: 
 dirac (1.0.2-6) unstable; urgency=low
 .
   * libdirac-dev: Multi-Arch: same but dirac-stdint.h differs across
 architectures (Closes: #658910):
 - Avoid regenerating /usr/include/dirac/libdirac_common/dirac-stdint.h,
   the only difference among the arch-specific copies is just a comment;
   thanks to Jakub Wilk for the report.
Checksums-Sha1: 
 107e2fb1bdfdcfc0658f3343d3d1ae5fc82d5195 2182 dirac_1.0.2-6.dsc
 fc310ed793b2a4ad5bd9339ea15c01740548e13b 243906 dirac_1.0.2-6.debian.tar.gz
 a5298b43101ed400522f52346cbea9af6b7c4e35 619872 dirac_1.0.2-6_amd64.deb
 0b2bc483b4bfdd5d209aae3bdd9868c58acb723d 314488 
libdirac-decoder0_1.0.2-6_amd64.deb
 c2972803168d52b891325166a5eedd88dc1c01a6 389084 
libdirac-encoder0_1.0.2-6_amd64.deb
 48856450bf1eb0d03e732d9349dbaa599f4c937f 157102 libdirac-dev_1.0.2-6_amd64.deb
 5f59d78e60c1a03af38ae484b61e66b6608c5fe6 13657986 libdirac-doc_1.0.2-6_all.deb
Checksums-Sha256: 
 cdd80fb31af411635eadc1866f17a3d13edaab424fd904e04651acfef983b11c 2182 
dirac_1.0.2-6.dsc
 a191c1f054fa75eaa52c3e4bccf5603148f65f80bd9004f2fdca6c5163dcb270 243906 
dirac_1.0.2-6.debian.tar.gz
 91b7ff0b800c1137484b5000e28d1cf974dc2bc47a5c48c07f358fd88ccb8431 619872 
dirac_1.0.2-6_amd64.deb
 648f63c23ba45d9d1f7e7677a95f570706fb240790c1d77c6c30de0e171359f8 314488 
libdirac-decoder0_1.0.2-6_amd64.deb
 15fad98ba4c0150f41a56c391d469648118aa09d5c14f1e2162139e892286651 389084 
libdirac-encoder0_1.0.2-6_amd64.deb
 37adfc723451afd5e4b9cbb2363e200d31277f7bbc0265f5254b06d1f1bf49c0 157102 
libdirac-dev_1.0.2-6_amd64.deb
 81ac8f91eb0fdb6612c38322d53f562e37e82b2748906ac07e7f472f3e956c28 13657986 
libdirac-doc_1.0.2-6_all.deb
Files: 
 8bb512d0fd115fd5b1279168588985ff 2182 libs optional dirac_1.0.2-6.dsc
 1cadfae18cbe1257237a5abad415e1d0 243906 libs optional 
dirac_1.0.2-6.debian.tar.gz
 e9fcd652145d91db9c16ffae151153af 619872 video optional dirac_1.0.2-6_amd64.deb
 3155c0ca595a0c59bded2eacb60f5727 314488 libs optional 
libdirac-decoder0_1.0.2-6_amd64.deb
 0cbdbbd117a30ae89a5fc3d8df7b082e 389084 libs optional 
libdirac-encoder0_1.0.2-6_amd64.deb
 059427fc65e257e6498c376a3197f6f1 157102 libdevel optional 
libdirac-dev_1.0.2-6_amd64.deb
 7d41babee9bc22851b6dd5d21dfc1b9a 13657986 doc optional 
libdirac-doc_1.0.2-6_all.deb

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

iQIcBAEBCgAGBQJPMOSEAAoJEOikiuUxHXZaD4oP/jKZ9Bt9h7tEN6YjNLcyOjX/
GVOl0UdE/kwFPQ/TknhEFvDvtprSCyshbvX70/lTJPSvGCd5j6dAQRqSp57HckxD
bpCMHNyxQeTOsVsmATpWC1fezXwcC8gZmeoW7g5HjLYT8rwfT4HN8KFmeyoJmy8G
F1jv8arAS+i8iyTshtRAAbt0uw4f0d4CvjcaV4dRrtTSAYLHpghkPXuci/r+9Sa6
uJkub2JzrR+n+7FvP63qOLrBXWWpcsf5tKEo1vbqNy8CAyBs1MnZ64JV0j324+q4
dLywA+Up9XbqO9r/xKevGeNZ87AGwQ8wfFfAeYLJdf6k8JvWlL9r9ETH3kwiZmDC
0+oekeOrORDVQPAqv2bYQWTjZr50s32bMn3qt6+02XDb4Kb6l3IHVI3vlUNa+C+7
Ul2gzlgjj/4X/jlVLIPesDp7mWaOTwV8ZuDVaYdBH4I0p3lIM+a9+TNtwLQTKRmP
HNPQQrq39C9B1tZ7VrfVMpJtBm7wghG0erVAvCM+pROwqLGExPD/YKqs03czWATh
TWmZ2gpXQD8NaTnuQw1ca1DMPJOwVmaJfrJRlAmHhrfGX+SwdgJ9Ii+Jztg1sNGv
XJGW4hy3C5RJTCkDX0MS+71sSJwZId/On2FVlPTRn105ME80WDZPzbLzv1JshbTn
mBuw0Nw2+XfcMaZhhNjm
=lbVC
-END PGP SIGNATURE-


Accepted:
dirac_1.0.2-6.debian.tar.gz
  to main/d/dirac/dirac_1.0.2-6.debian.tar.gz
dirac_1.0.2-6.dsc
  to main/d/dirac/dirac_1.0.2-6.dsc
dirac_1.0.2-6_amd64.deb
  to main/d/dirac/dirac_1.0.2-6_amd64.deb
libdirac-decoder0_1.0.2-6_amd64.deb
  to main/d/dirac/libdirac-decoder0_1.0.2-6_amd64.deb
libdirac-dev_1.0.2-6_amd64.deb
  to main/d/dirac/libdirac-dev_1.0.2-6_amd64.deb
libdirac-doc_1.0.2-6_all.deb
  to main/d/dirac/libdirac-doc_1.0.2-6_all.deb
libdirac-encoder0_1.0.2-6_amd64.deb
  to main/d/dirac/libdirac-encoder0_1.0.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
Archive: http://lists.debian.org/e1rughv-0004k3...@franck.debian.org



Accepted dpatch 2.0.35 (source all)

2012-02-07 Thread Gergely Nagy
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 10:07:31 +0100
Source: dpatch
Binary: dpatch
Architecture: source all
Version: 2.0.35
Distribution: unstable
Urgency: low
Maintainer: Gergely Nagy alger...@madhouse-project.org
Changed-By: Gergely Nagy alger...@madhouse-project.org
Description: 
 dpatch - patch maintenance system for Debian source packages
Closes: 658974
Changes: 
 dpatch (2.0.35) unstable; urgency=low
 .
   * Mark the package Multi-Arch: foreign, thanks Riku Voipio
 riku.voi...@linaro.org. (Closes: #658974)
Checksums-Sha1: 
 70161b96c2ee76411a1dd720e7e3b4fe64d99c28 1502 dpatch_2.0.35.dsc
 b3318ca2ccb3ad65304d97829995c39260f509d5 92179 dpatch_2.0.35.tar.gz
 7f10b84bbfd345e1a9d2d5db5cdcdef2aea463e4 95156 dpatch_2.0.35_all.deb
Checksums-Sha256: 
 a318ca689cd28fcc50b2b73498c7fa098100b389849300728b88ccc25ac67c9d 1502 
dpatch_2.0.35.dsc
 dfe16c407bb9c4347f06d8457302104bc425b36e183ad20f2dfa139a4e4505e9 92179 
dpatch_2.0.35.tar.gz
 b198d44344ffce78f79142ad3e7f5ec2da0f1c0218bd7908a90ae4fab29f6f7a 95156 
dpatch_2.0.35_all.deb
Files: 
 1451f38ba0c1ecdcba00879bfdfc71e9 1502 vcs optional dpatch_2.0.35.dsc
 e8fa4e47ad9fcf96b75d1b9f07cc9eae 92179 vcs optional dpatch_2.0.35.tar.gz
 8f45e0bad542413d3722238048b83458 95156 vcs optional dpatch_2.0.35_all.deb

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

iQIcBAEBAgAGBQJPMOrGAAoJEKwekLrEM/aP2fYQAMzZRXg6dXc+FMj7wTOmicRO
iVsLIatnOrbd6/wySOb2qypxbcpFGzPHu/DtslzRDErk4s2qp+6UXGZdLiVpUDqz
L08auETTusVjNbNG+rOm3jWrTCq4xdpD4ZbV0cwfY4TgEUGpSfII+w0kS1Aw9pHn
qYostZAIDYamMDEBcO7wSGO0FWcz+fPRPCqZxH1ltpJXcjkASDmX/ltLz5bRGqBO
hrm14rV46zIklN1GT45d3CZkL40Icqq+EKM2etdZsQrjvOODAcqBu2PVD5xdMLs6
UkoMhtc5JpyML7DMn3/FpmLML3BnU9Mv/D5A4yln/7FhE6mkUaGjeOAb3UDblwJ6
ecy8oQHyY1oGxUuuycG57tUAeF3a7A/+Tk+TQoc45M5wjgILFK8rxFoquqZVdW45
P3dPc5zmkABhiF7beobLpH07pfYirrl9UWyLjKKovu6HHQ6R4lZayVKsMi6mpVr+
AoB+/eHrSWhr2uFvFD98xSEXSU6NVx2MwbsxPZK2QkL2WOXrTnba2vP5gt4RHE0t
vtLBrJ20jI5RvtcYraeeCAR4w4YoYrLezO5NYKE9gT2LxWBa/iTC/vu47/1YIRYS
5an2w8GEmeRPbt1Nybgou9pe+tU0MNv+OhVCLOv0p5N4tK5sM4yJ8bJXNEPPYjZI
eRL5zcJ85yBncwuhf4q8
=OeUF
-END PGP SIGNATURE-


Accepted:
dpatch_2.0.35.dsc
  to main/d/dpatch/dpatch_2.0.35.dsc
dpatch_2.0.35.tar.gz
  to main/d/dpatch/dpatch_2.0.35.tar.gz
dpatch_2.0.35_all.deb
  to main/d/dpatch/dpatch_2.0.35_all.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ruhbi-0008au...@franck.debian.org



Accepted cups 1.5.2-1 (source all amd64)

2012-02-07 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Feb 2012 09:29:59 +0100
Source: cups
Binary: libcups2 libcupsimage2 libcupscgi1 libcupsdriver1 libcupsmime1 
libcupsppdc1 cups cups-client libcups2-dev libcupsimage2-dev libcupscgi1-dev 
libcupsdriver1-dev libcupsmime1-dev libcupsppdc1-dev cups-bsd cups-common 
cups-ppdc cups-dbg cupsddk
Architecture: source all amd64
Version: 1.5.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian CUPS Maintainers pkg-cups-de...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 cups   - Common UNIX Printing System(tm) - server
 cups-bsd   - Common UNIX Printing System(tm) - BSD commands
 cups-client - Common UNIX Printing System(tm) - client programs (SysV)
 cups-common - Common UNIX Printing System(tm) - common files
 cups-dbg   - Common UNIX Printing System(tm) - debugging symbols
 cups-ppdc  - Common UNIX Printing System(tm) - PPD manipulation utilities
 cupsddk- Common UNIX Printing System (transitional package)
 libcups2   - Common UNIX Printing System(tm) - Core library
 libcups2-dev - Common UNIX Printing System(tm) - Development files CUPS library
 libcupscgi1 - Common UNIX Printing System(tm) - CGI library
 libcupscgi1-dev - Common UNIX Printing System(tm) - Development files for CGI 
libra
 libcupsdriver1 - Common UNIX Printing System(tm) - Driver library
 libcupsdriver1-dev - Common UNIX Printing System(tm) - Development files 
driver librar
 libcupsimage2 - Common UNIX Printing System(tm) - Raster image library
 libcupsimage2-dev - Common UNIX Printing System(tm) - Development files CUPS 
image li
 libcupsmime1 - Common UNIX Printing System(tm) - MIME library
 libcupsmime1-dev - Common UNIX Printing System(tm) - Development files MIME 
library
 libcupsppdc1 - Common UNIX Printing System(tm) - PPD manipulation library
 libcupsppdc1-dev - Common UNIX Printing System(tm) - Development files PPD 
library
Closes: 658236 658237
Changes: 
 cups (1.5.2-1) unstable; urgency=low
 .
   [ Till Kamppeter ]
   * New upstream release
   * debian/patches/00svn_gif_overflow.patch,
 debian/patches/cups-driverd-recognize-cached-drv-generated-ppds.patch,
 debian/patches/dont-send-malformed-dbus-messages.patch,
 debian/patches/execute-commandtops-commands.patch,
 
debian/patches/usb-backend-gracefully-fail-on-more-cases-of-bad-device-id.patch,
 debian/patches/usb-backend-skip-set-configuration-set-interface.patch:
 Removed, included upstream.
   * debian/patches/ipp-patch-r8950+.patch,
 debian/patches/ipp-backend-fails-to-trigger-authentication-prompts.patch,
 debian/patches/ipp-backend-missing-document-type.patch,
 debian/patches/ipp-backend-http-1.0-fallback-fix.patch: Replaced patch
 for downgrading to the IPP backend to the version of CUPS 1.4.x by patches
 for the current backend (LP: #879625, LP: #881843, CUPS STR #3985,
 CUPS STR #3986, CUPS STR #3988, thanks to Robert Bradley, robert dot
 bradley1 at gmail dot com, for the patches).
   * debian/patches/drop_unnecessary_dependencies.patch: Updated patch to
 add -lm to the linker command line, libcups uses the fmod() function
 now.
   * debian/patches/cups-avahi.patch,
 debian/patches/usb-backend-libusb-1.0.patch,
 debian/patches/printer-filtering.patch:
 Manually regenerated to adapt to upstream changes.
   * debian/patches/pidfile.patch,
 debian/patches/rootbackends-worldreadable.patch,
 debian/patches/colord-support.patch,
 debian/patches/airprint-support.patch,
 debian/patches/no-conffile-timestamp.patch,
 
debian/patches/read-embedded-options-from-incoming-postscript-and-add-to-ipp-attrs.patch,
 debian/patches/do-not-broadcast-with-hostnames.patch,
 
debian/patches/do-not-suppress-inputslot-setting-with-empty-ap-d-inputslot.patch,
 debian/patches/confdirperms.patch,
 debian/patches/show-compile-command-lines.patch,
 debian/patches/log-debug-history-nearly-unlimited.patch,
 debian/patches/dnssd-reg-array-linear-search.patch:
 Refreshed using quilt.
   * debian/patches/fix-supply-level-computation-for-percent-supply-unit.patch,
 
debian/patches/fix-supply-levels-for-enumerated-prtmarkersupplieslevel.patch,
 debian/patches/fix-status-reports-when-supply-levels-grow.patch:
 The printer supply levels reported via SNMP, according to the printer MIB
 were not correctly interpreted (LP: #925086, CUPS STR #4016, thanks to
 Peter Hurley, peter at hurleysoftware dot com, for the patches).
   * 
debian/patches/add-status-reports-for-full-waste-trays-and-cleaner-unit-eol.patch:
 Added status reports for waste tray status and cleaner unit end-of-life
 (LP: #925086, CUPS STR #4017, thanks to Peter Hurley, peter at
 hurleysoftware dot com, for the patch).
   * debian/patches/match-marker-colorants-which-use-non-standard-string.patch:
 Try harder to match supply colorant values (LP: #925086, CUPS STR #4019,
 

Accepted mgltools-bhtree 1.5.6~rc3~cvs.20120206-1 (source i386)

2012-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 18:00:00 +0100
Source: mgltools-bhtree
Binary: mgltools-bhtree
Architecture: source i386
Version: 1.5.6~rc3~cvs.20120206-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-bhtree - Bhtree library extension module
Changes: 
 mgltools-bhtree (1.5.6~rc3~cvs.20120206-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: vcs fields corrected
Checksums-Sha1: 
 8bc02e57378152fb745aaecbe587a6e7caccf094 1735 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.dsc
 678e2d5dcb0308c9c7740756da68d18aa85cb6a6 30103 
mgltools-bhtree_1.5.6~rc3~cvs.20120206.orig.tar.gz
 fc4d15083ec7afb5574c904d305b7868e96e2d5d 6107 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 bdff92c3a865a6a4fbe4367be14067d0f78c8d56 114036 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386.deb
Checksums-Sha256: 
 fd9c92c2ec1874ca548e419dddb4df7cfd70224d4d6d07626e4b7bab0e4c2741 1735 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.dsc
 e2a8a7d9b21f395f3aa6a86e978165417a19782da19e1e9c421a235def58bb71 30103 
mgltools-bhtree_1.5.6~rc3~cvs.20120206.orig.tar.gz
 613df49c866d48670f01f234b39b6f095a90a2164e9a04c8b09f367872f26ff2 6107 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 fdd5a0f009621fa81bca92b6f77b260f8e8b217f5a2458277eb8352f6db4c29b 114036 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386.deb
Files: 
 46d6206dfbe7b864d7842ffea70e08a9 1735 non-free/science optional 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.dsc
 ffd5433d23e0533a8a1e3a5d5cb98d88 30103 non-free/science optional 
mgltools-bhtree_1.5.6~rc3~cvs.20120206.orig.tar.gz
 d2be27989dd636a48fe954f26e7c6b27 6107 non-free/science optional 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 242b95ae9c13b1153cf09dc45e34416c 114036 non-free/science optional 
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386.deb

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

iEYEARECAAYFAk8xDCYACgkQ02K2KlS5mJC0oQCdFP/O5AL9zsZSMUghteSQpshy
aqsAn1KwG1/i/qKSJPls/BXYFjgXLFUC
=Pqzb
-END PGP SIGNATURE-


Accepted:
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
  to 
non-free/m/mgltools-bhtree/mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.dsc
  to non-free/m/mgltools-bhtree/mgltools-bhtree_1.5.6~rc3~cvs.20120206-1.dsc
mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386.deb
  to 
non-free/m/mgltools-bhtree/mgltools-bhtree_1.5.6~rc3~cvs.20120206-1_i386.deb
mgltools-bhtree_1.5.6~rc3~cvs.20120206.orig.tar.gz
  to 
non-free/m/mgltools-bhtree/mgltools-bhtree_1.5.6~rc3~cvs.20120206.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
Archive: http://lists.debian.org/e1ruheb-0004w0...@franck.debian.org



Accepted mgltools-geomutils 1.5.6~rc3~cvs.20120206-1 (source i386)

2012-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 18:00:00 +0100
Source: mgltools-geomutils
Binary: mgltools-geomutils
Architecture: source i386
Version: 1.5.6~rc3~cvs.20120206-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-geomutils - Python library for geometric analyses
Changes: 
 mgltools-geomutils (1.5.6~rc3~cvs.20120206-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: vcs fields corrected
Checksums-Sha1: 
 8e27af625878495c50b69c8eddc582ef68da8166 1756 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.dsc
 6f77fa628f9d310ea79bdc360abf7a9e70eaf42f 49592 
mgltools-geomutils_1.5.6~rc3~cvs.20120206.orig.tar.gz
 347fe3355c0d146208fff2c3c93dbf0ff574199f 6799 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 11866f88300a5e86f80ff38aea27a1857c3eb0c6 206592 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1_i386.deb
Checksums-Sha256: 
 9f1a0c10b758cbd2820a8b91b595fff4a4163bdca9f347009d423d3c37281b49 1756 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.dsc
 66c4bb260799a0f4874cb0406678efc9444e9be5ce831762f9fac0d2370cff62 49592 
mgltools-geomutils_1.5.6~rc3~cvs.20120206.orig.tar.gz
 6d0f29ac4941293b4435431745f4195716c6c065b4dd2d36086d5e913805e242 6799 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 3742deed2c2fc008d2768977f24b31b4969eac30f0db6a1f0a54b233a863a509 206592 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1_i386.deb
Files: 
 e383b6f9a8ba0be8a3b7722fb3fbdf2b 1756 non-free/science optional 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.dsc
 927f42140e7c6cd7fc1ece384e533206 49592 non-free/science optional 
mgltools-geomutils_1.5.6~rc3~cvs.20120206.orig.tar.gz
 768d59ede75ed06f855da8d482542e72 6799 non-free/science optional 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 8b9ff8bc771e47cb1e3261c974797d17 206592 non-free/science optional 
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1_i386.deb

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

iEYEARECAAYFAk8xCVcACgkQ02K2KlS5mJDkogCeNcAgj6Vrsx26H7ytGWa6FLGo
Z+IAoJM9NkDOSk62IB3ejAnd9ZAWAkYU
=kVel
-END PGP SIGNATURE-


Accepted:
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
  to 
non-free/m/mgltools-geomutils/mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.dsc
  to 
non-free/m/mgltools-geomutils/mgltools-geomutils_1.5.6~rc3~cvs.20120206-1.dsc
mgltools-geomutils_1.5.6~rc3~cvs.20120206-1_i386.deb
  to 
non-free/m/mgltools-geomutils/mgltools-geomutils_1.5.6~rc3~cvs.20120206-1_i386.deb
mgltools-geomutils_1.5.6~rc3~cvs.20120206.orig.tar.gz
  to 
non-free/m/mgltools-geomutils/mgltools-geomutils_1.5.6~rc3~cvs.20120206.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
Archive: http://lists.debian.org/e1ruher-0004z5...@franck.debian.org



Accepted mgltools-gle 1.5.6~rc3~cvs.20120206-1 (source i386)

2012-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 18:00:00 +0100
Source: mgltools-gle
Binary: mgltools-gle
Architecture: source i386
Version: 1.5.6~rc3~cvs.20120206-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-gle - GLE library Python extension
Changes: 
 mgltools-gle (1.5.6~rc3~cvs.20120206-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: vcs fields corrected
Checksums-Sha1: 
 e08bb5008056b439fa942cf9de3863b39bc326ec 1734 
mgltools-gle_1.5.6~rc3~cvs.20120206-1.dsc
 494f7531cda6a9633c20e6a4ce3d9d07e72c2e6f 65012 
mgltools-gle_1.5.6~rc3~cvs.20120206.orig.tar.gz
 2bc58051f09ceaebefd385a8ba984b06d21b2005 7311 
mgltools-gle_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 00c8949d7d0541fa2e9d1b2eb2b8362e5d93d03e 131790 
mgltools-gle_1.5.6~rc3~cvs.20120206-1_i386.deb
Checksums-Sha256: 
 d8d3cc15f4fd2fbe23216451f07da3234e274e2843dcfeca928b9721b393b0be 1734 
mgltools-gle_1.5.6~rc3~cvs.20120206-1.dsc
 dcfba40b0e017e808658699389df706d9d96da79d8221d7a3a55aac4a24fabab 65012 
mgltools-gle_1.5.6~rc3~cvs.20120206.orig.tar.gz
 c70c3ec5fe4e76ead202c7221df11bcb48a729ed748647e18302ccaaeea76ba9 7311 
mgltools-gle_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 10050fe7c175c044cd4c1bb00b339aff78d1149e7f04ef3ab8fe27d9fbb63cd6 131790 
mgltools-gle_1.5.6~rc3~cvs.20120206-1_i386.deb
Files: 
 48aee7e10a8e98440d0d39f793e4f436 1734 non-free/libs optional 
mgltools-gle_1.5.6~rc3~cvs.20120206-1.dsc
 44a60da9c7b251f0eab59c36f73d4071 65012 non-free/libs optional 
mgltools-gle_1.5.6~rc3~cvs.20120206.orig.tar.gz
 4545e0487081c929d7e557e3bdeb238e 7311 non-free/libs optional 
mgltools-gle_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 0e4e1f7dfeec55b0cd05edc2edfe57b9 131790 non-free/libs optional 
mgltools-gle_1.5.6~rc3~cvs.20120206-1_i386.deb

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

iEYEARECAAYFAk8xCRIACgkQ02K2KlS5mJAC2wCgjUOvH/ddKPpz/lFfS+2v2JAf
SNMAn2eW1Ou/cGebuclwyGEVHipbZYTK
=Dkrj
-END PGP SIGNATURE-


Accepted:
mgltools-gle_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
  to non-free/m/mgltools-gle/mgltools-gle_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
mgltools-gle_1.5.6~rc3~cvs.20120206-1.dsc
  to non-free/m/mgltools-gle/mgltools-gle_1.5.6~rc3~cvs.20120206-1.dsc
mgltools-gle_1.5.6~rc3~cvs.20120206-1_i386.deb
  to non-free/m/mgltools-gle/mgltools-gle_1.5.6~rc3~cvs.20120206-1_i386.deb
mgltools-gle_1.5.6~rc3~cvs.20120206.orig.tar.gz
  to non-free/m/mgltools-gle/mgltools-gle_1.5.6~rc3~cvs.20120206.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
Archive: http://lists.debian.org/e1ruhei-0004bw...@franck.debian.org



Accepted mgltools-mglutil 1.5.6~rc3~cvs.20120206-1 (source all)

2012-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 18:00:00 +0100
Source: mgltools-mglutil
Binary: mgltools-mglutil
Architecture: source all
Version: 1.5.6~rc3~cvs.20120206-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-mglutil - Molecular Graphics Laboratory utility collection
Changes: 
 mgltools-mglutil (1.5.6~rc3~cvs.20120206-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: vcs fields corrected
Checksums-Sha1: 
 93bd330ea999aa527cf5f2e5476db3c5fdf09a13 1716 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.dsc
 98aa408742713d349c668e290414516909e79c8a 1750016 
mgltools-mglutil_1.5.6~rc3~cvs.20120206.orig.tar.gz
 744995840556a1b14c5d3c353d159c4ac980f4b2 7878 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 dde0c70c3fd250cbe3b26d0398f02c5de6c08409 1767474 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all.deb
Checksums-Sha256: 
 9bd95cc1483659f18d6fb893e14523e03100b76de21e12cd4364b2fad83fc1f7 1716 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.dsc
 1ac05ec1663180befb688c810893bc703944619885f9a6a52f7e2ffc006e2f19 1750016 
mgltools-mglutil_1.5.6~rc3~cvs.20120206.orig.tar.gz
 14e9b276059b5c6e8a3621b0a9329ba4cc2137f4bce5c11e0d9a3b44a396b2db 7878 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 a86733fa3817b9a7c6cc21f8731c9037dfcccef4bc05f2bdf50d3db87d3b8d4d 1767474 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all.deb
Files: 
 514e9e8cb0302b0e5abeb0d7cf12f26e 1716 non-free/science optional 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.dsc
 941bd285fbc784e288182ff9eb1b3ae8 1750016 non-free/science optional 
mgltools-mglutil_1.5.6~rc3~cvs.20120206.orig.tar.gz
 d3c5a9aa31fc8b4572c709f7471d703a 7878 non-free/science optional 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 e6a9c43712c747619e786f65403aacbb 1767474 non-free/science optional 
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all.deb

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

iEYEARECAAYFAk8xCK4ACgkQ02K2KlS5mJBOXQCaA2q4l1+3UgP6fm7CvUj01SWu
8l8An2N7Uxvi6+4iU25Wix/cUEsRB1fK
=CZAw
-END PGP SIGNATURE-


Accepted:
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
  to 
non-free/m/mgltools-mglutil/mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.dsc
  to non-free/m/mgltools-mglutil/mgltools-mglutil_1.5.6~rc3~cvs.20120206-1.dsc
mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all.deb
  to 
non-free/m/mgltools-mglutil/mgltools-mglutil_1.5.6~rc3~cvs.20120206-1_all.deb
mgltools-mglutil_1.5.6~rc3~cvs.20120206.orig.tar.gz
  to 
non-free/m/mgltools-mglutil/mgltools-mglutil_1.5.6~rc3~cvs.20120206.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
Archive: http://lists.debian.org/e1ruhex-0004de...@franck.debian.org



Accepted mgltools-networkeditor 1.5.6~rc3~cvs.20120206-1 (source all)

2012-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 18:00:00 +0100
Source: mgltools-networkeditor
Binary: mgltools-networkeditor
Architecture: source all
Version: 1.5.6~rc3~cvs.20120206-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-networkeditor - Python GUI library for the editing of networks
Changes: 
 mgltools-networkeditor (1.5.6~rc3~cvs.20120206-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: vcs fields corrected
Checksums-Sha1: 
 003d120cc5ac6e9c3119c46603bbbed5764ad4e3 1779 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.dsc
 1cfbc61974d1eaefd7af292a48447a01bb773539 205060 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206.orig.tar.gz
 8feda1a1f48040781b2609e8fc54c6584695e9aa 6050 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 2369e89f47ec03dafdae0661f11995b81f777d72 201502 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all.deb
Checksums-Sha256: 
 c1cc1582c114c724bcbf1dd80b1317226d13990a5c87d956cf840861d27d9662 1779 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.dsc
 0ba156987d3415ed5af3e4fb52ab64142f3266f83a8a370292a5e822b5f3e16a 205060 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206.orig.tar.gz
 df5403e0dffdb7bda0995bb02b31e4119023761fde39dd91236eb5185190224e 6050 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 2b86e56a64202a37309902a1bef755b6c76fed74c391b0558b4c64b767fab9da 201502 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all.deb
Files: 
 314b697254927973a7f0a044224330c7 1779 non-free/science optional 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.dsc
 b78cc53a731f175ca310ca8316407181 205060 non-free/science optional 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206.orig.tar.gz
 1be7f0947b996c4483dcfde0f384d9a3 6050 non-free/science optional 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 d7fb1d669a80f590d690cee774e8b5d7 201502 non-free/science optional 
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all.deb

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

iEYEARECAAYFAk8wZNIACgkQ02K2KlS5mJB8XACeJ17ZqOetVB2lixS3GEwTe9sp
UNsAn0NyC1IJJ7Y5+61RDsyGHTaA1Edo
=BFiV
-END PGP SIGNATURE-


Accepted:
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
  to 
non-free/m/mgltools-networkeditor/mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.dsc
  to 
non-free/m/mgltools-networkeditor/mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1.dsc
mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all.deb
  to 
non-free/m/mgltools-networkeditor/mgltools-networkeditor_1.5.6~rc3~cvs.20120206-1_all.deb
mgltools-networkeditor_1.5.6~rc3~cvs.20120206.orig.tar.gz
  to 
non-free/m/mgltools-networkeditor/mgltools-networkeditor_1.5.6~rc3~cvs.20120206.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
Archive: http://lists.debian.org/e1ruhfd-0004fc...@franck.debian.org



Accepted libgeo-ip-perl 1.40-1 (source i386)

2012-02-07 Thread Nicholas Bamber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Feb 2012 09:35:08 +
Source: libgeo-ip-perl
Binary: libgeo-ip-perl
Architecture: source i386
Version: 1.40-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Nicholas Bamber nicho...@periapt.co.uk
Description: 
 libgeo-ip-perl - Perl interface to GeoIP library
Closes: 656148
Changes: 
 libgeo-ip-perl (1.40-1) unstable; urgency=low
 .
   * Taking over package for Debian Perl Group as per email
 http://lists.debian.org/debian-perl/2012/02/msg00024.html
   * New upstream release (Closes: #656148)
   * Raised standards version to 3.9.2 and compat level to 8
   * Added debian/source/format file and refreshed debian/rules
   * Tweaked short description
Checksums-Sha1: 
 9c8bbc64f2a72a6c882449a6fec1af15cc69aed4 2035 libgeo-ip-perl_1.40-1.dsc
 b13a3d74edf6aad22403b065b07cdaab7fdd207f 111898 libgeo-ip-perl_1.40.orig.tar.gz
 1cb731d0933ca76e188160ee84c41def9a282975 2864 
libgeo-ip-perl_1.40-1.debian.tar.gz
 6811222a4450bb07866b20d5b712513177a064bb 90554 libgeo-ip-perl_1.40-1_i386.deb
Checksums-Sha256: 
 19cb48b9145f4e6bdf979b2ddf418efdbc9af4bba9d71b198b803ab3dacdc540 2035 
libgeo-ip-perl_1.40-1.dsc
 ca48babd3e944cb1bc5cac56f618c9f94f3a329dd2716d6b49b658ae28848ab3 111898 
libgeo-ip-perl_1.40.orig.tar.gz
 2e5053d5a0829f5f9b90bdb2a3b00f5d665fc9065747c3b71814e2138a19eecb 2864 
libgeo-ip-perl_1.40-1.debian.tar.gz
 ae073df954fe4b44a6ebf311e8f18d01e21897299691861ec8311080f4a6d887 90554 
libgeo-ip-perl_1.40-1_i386.deb
Files: 
 633e6dcc8428db0ade6c74bd5c28627b 2035 perl optional libgeo-ip-perl_1.40-1.dsc
 f2e0ebe860052edf250ae02da81af1a5 111898 perl optional 
libgeo-ip-perl_1.40.orig.tar.gz
 c14ca7b01e696a4bfec15d88993a2354 2864 perl optional 
libgeo-ip-perl_1.40-1.debian.tar.gz
 f5874173360389d7bb2091b4bdb82d27 90554 perl optional 
libgeo-ip-perl_1.40-1_i386.deb

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

iQIcBAEBCAAGBQJPMPXPAAoJELbE2bY7/+c8sLAQAMVqzIzVPcpCJf/seA3ffrj7
fOhta60zO5Sw64m2SkwQuaoZeSbFn0u1hcPJ7gUilbvyaDiheNuoUvo0qyUevX1w
PGFLVHyCKYmLxm/5E+b7nMw1wu9g6Pu8VgrhyjLcfjGmJSENUmnVFOymtUK5ft3l
gUZ+7uUWRYO1L+4bSErp83QQkdzfywxt35hvGlNilsQPhBXjzGsnIQgFzW2fmNg6
etXVmhOzIoUObS8ni3uYQfhW8PzYnOqj9WcLhz8EdeMko60TkVKbKh4Kwhbx7WC4
B0drvZbqyvGJJsUi8+98Z8RBXi9V+r8GY6MKOqRApXNyYU+DM5I7A2eU3x7zhJsD
gCna/fgxkykXqqOIxbCroZSObpFrJcLD5c32ZVHuKWSIeIzlFceViLcEmCmpc5jH
YUhYTnXuU7JzJvN2Gt6/tAAIlwwOYuXxLUraCHuKMsvQsDt+yapzhSML2Ysa82Re
6YaUuyeU93qkhRjm4YWuDjlaguKOTT+zmFtmwFl08pL2UFdfAhAVPf3AmBRfo2R7
1Cyo7/REbCoB9mK7GB+mmkHnczx2sgoq+cKTi9SWPLdztPqqCQMRlZS3JOA6QMJx
prQTLK15QMPwnwsoDJgV0XBMC3REmy8z2g7x3Uav0w9naRcfk4ZsTq3jP5yv95dM
0X6RM1tBV2rRxgqHVTyZ
=tWVk
-END PGP SIGNATURE-


Accepted:
libgeo-ip-perl_1.40-1.debian.tar.gz
  to main/libg/libgeo-ip-perl/libgeo-ip-perl_1.40-1.debian.tar.gz
libgeo-ip-perl_1.40-1.dsc
  to main/libg/libgeo-ip-perl/libgeo-ip-perl_1.40-1.dsc
libgeo-ip-perl_1.40-1_i386.deb
  to main/libg/libgeo-ip-perl/libgeo-ip-perl_1.40-1_i386.deb
libgeo-ip-perl_1.40.orig.tar.gz
  to main/libg/libgeo-ip-perl/libgeo-ip-perl_1.40.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
Archive: http://lists.debian.org/e1ruhuh-0006s3...@franck.debian.org



Accepted mgltools-dejavu 1.5.6~rc3~cvs.20120206-1 (source all)

2012-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 18:00:00 +0100
Source: mgltools-dejavu
Binary: mgltools-dejavu
Architecture: source all
Version: 1.5.6~rc3~cvs.20120206-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-dejavu - visualization of 3D geometry using the OpenGL with Python
Changes: 
 mgltools-dejavu (1.5.6~rc3~cvs.20120206-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: vcs fields corrected
Checksums-Sha1: 
 12f7cd7d2d4b522d71977d01e65d663c2dfa9f8c 1767 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.dsc
 2195491aff9d1031e9692e7800b0efde92118a23 1665808 
mgltools-dejavu_1.5.6~rc3~cvs.20120206.orig.tar.gz
 5e0f7b3d8d67379cce879f7386cc1f9be0224255 6331 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 082a1fa73aa034f7e139ee4431b3f91dd99abcab 617048 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all.deb
Checksums-Sha256: 
 04d55d551ef1f75b1c36271f69b6c7e389de7dd8bae815465639176e6830822a 1767 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.dsc
 525989a8f86123e0476235d95c1b833ac2ca45cc211ff34d8a6ef276f12a9f6e 1665808 
mgltools-dejavu_1.5.6~rc3~cvs.20120206.orig.tar.gz
 4595e6978ca1991ea176d400d06fbb79d19c1257d39757e34421ec751992de0e 6331 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 6fda5a1c197e07b9db3e747fbeefc7b3d75bf1d5d87ca63a7f97f42fe882b782 617048 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all.deb
Files: 
 4cc884dfb94b65afbd1279e373a88c30 1767 non-free/science optional 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.dsc
 8ba75067e4067c50c8d4913c3729087e 1665808 non-free/science optional 
mgltools-dejavu_1.5.6~rc3~cvs.20120206.orig.tar.gz
 cb36d10a055e416e20839a8009c968f4 6331 non-free/science optional 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 283854c2f7162826f045e229467c1750 617048 non-free/science optional 
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all.deb

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

iEYEARECAAYFAk8xD5wACgkQ02K2KlS5mJD2QACfbfVqwEEY8GhqYX050kBRiJbV
zcwAnjYOVgI60FSD2g2cTXkl7wXfaMnC
=TZlt
-END PGP SIGNATURE-


Accepted:
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
  to 
non-free/m/mgltools-dejavu/mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.dsc
  to non-free/m/mgltools-dejavu/mgltools-dejavu_1.5.6~rc3~cvs.20120206-1.dsc
mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all.deb
  to non-free/m/mgltools-dejavu/mgltools-dejavu_1.5.6~rc3~cvs.20120206-1_all.deb
mgltools-dejavu_1.5.6~rc3~cvs.20120206.orig.tar.gz
  to 
non-free/m/mgltools-dejavu/mgltools-dejavu_1.5.6~rc3~cvs.20120206.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
Archive: http://lists.debian.org/e1ruhuw-0006u6...@franck.debian.org



Accepted backbone 0.9.1-1 (source all)

2012-02-07 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Feb 2012 11:55:24 +0100
Source: backbone
Binary: libjs-backbone node-backbone
Architecture: source all
Version: 0.9.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 libjs-backbone - some Backbone for JavaScript applications - browser library
 node-backbone - some Backbone for JavaScript applications - Node module
Changes: 
 backbone (0.9.1-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 addab8a88c036ce866e9da904b65d3e8de081832 2018 backbone_0.9.1-1.dsc
 bef710755b4ae3b514040a3c466507713c17caf7 6447930 backbone_0.9.1.orig.tar.gz
 3832fe3ab074d03ede2c9239967a82a23e6a7429 5769 backbone_0.9.1-1.debian.tar.gz
 aee2c148cf85e785ef4d7812c9eb06212ddf076e 71036 libjs-backbone_0.9.1-1_all.deb
 eb0c151fb2655c9ec42e9da13cc89832d7f57d39 45500 node-backbone_0.9.1-1_all.deb
Checksums-Sha256: 
 36bd30757b9d724fa61880b3f6d2f8bcbdd11af12945c126a224a87d413541ba 2018 
backbone_0.9.1-1.dsc
 2bc976dcf85e72d1e70a23818e4ead67515d8f7e55efd78ea44dba0299cf5ec0 6447930 
backbone_0.9.1.orig.tar.gz
 f73350161e60fd776679a3b5cb297d46b76534d9bc786128a34c860e3f92a7e9 5769 
backbone_0.9.1-1.debian.tar.gz
 6bf513d793efe23232c37c36192e9b9fa5afa5de5b6ffbe755e04e698eb6b27f 71036 
libjs-backbone_0.9.1-1_all.deb
 a5d993667bc81fd79dc386493b749ba9ed913e8699dfb63f413db18af3648ad1 45500 
node-backbone_0.9.1-1_all.deb
Files: 
 3ed75cdd1fd71ed17831d9a1639f3c88 2018 web optional backbone_0.9.1-1.dsc
 adad938b293d186b9a91db505ee3cb02 6447930 web optional 
backbone_0.9.1.orig.tar.gz
 d7b21d662434bdcc290ee7055bcd2b3e 5769 web optional 
backbone_0.9.1-1.debian.tar.gz
 3258259ccffb1989689876f07fdcade2 71036 web optional 
libjs-backbone_0.9.1-1_all.deb
 611d471b3e896729a74a0eb58a551ade 45500 web optional 
node-backbone_0.9.1-1_all.deb

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

iQIcBAEBCgAGBQJPMQSHAAoJECx8MUbBoAEhmWYP/Rc44kXLBMrY/KTsa8HqJgQ5
2ERr+6n+GMHIEyFsb9/Rnv+d9NHz2msDfeQXOxpmfZrKrtyDoqZpbZ7Qg6yskfH6
b8xuitiVAtN/y6ToOsVL7udakTzQ+AiF78xmL4JBWkozhu/bk9vVxlB+7Yb6bVBh
p1IcIZiwveFt/qvTPikGgxdFkFWNpHalqj+IWqwYSwBmdxD1f92JyK3/mYhGMGko
Odcm0vo55gjdSBWsSFBrgLGYn4pQ76mkx1u0dQO3yI1hQ33auttqTf2BxkH672V3
tpuJ+5lTw7TVts37OrxpWLQJa45e5SdrJB0KtzQlgMg6Uop8xshnS3lPaVsTCn3b
+BV1I4fRjmvoM+Tumx1e6nF1zcDqGspgV8n204gmrf3EGNyBmwad/4xL5uRZnXbT
kMlSV5SEMwB5gqWKtKGPrl9v2xBQrLwSsNBUJ5xJKH+ibcKnoDcbax/nasZo2yXk
0aUJkN0wfwWB/WSlOxGwIJVjVPETlhW4NMX1VH/IlIeZE6QXY9UFqbiLGlfaTesV
hJXm+Z+tcuRWpwiC6wYf6ku3C9hKaW2iWnn59/qDn1sXhUUo3i3L6s42kMg0xpvZ
3WvISyV0kxhf/YcJ4to0zIGQ/hmgt23t3lphf+lhB0z4jF7VuQqTKw4s+ajKq/Vp
ThDz/eCsrrwl/VWgq3Hz
=pv1j
-END PGP SIGNATURE-


Accepted:
backbone_0.9.1-1.debian.tar.gz
  to main/b/backbone/backbone_0.9.1-1.debian.tar.gz
backbone_0.9.1-1.dsc
  to main/b/backbone/backbone_0.9.1-1.dsc
backbone_0.9.1.orig.tar.gz
  to main/b/backbone/backbone_0.9.1.orig.tar.gz
libjs-backbone_0.9.1-1_all.deb
  to main/b/backbone/libjs-backbone_0.9.1-1_all.deb
node-backbone_0.9.1-1_all.deb
  to main/b/backbone/node-backbone_0.9.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
Archive: http://lists.debian.org/e1ruj2v-000673...@franck.debian.org



Accepted qof 0.8.4-2 (source all amd64)

2012-02-07 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 22:38:55 +
Source: qof
Binary: libqof2 libqof-dev libqof2-backend-qsf libqof2-backend-sqlite 
libqof2-dbg libqof-doc qof-data
Architecture: source all amd64
Version: 0.8.4-2
Distribution: unstable
Urgency: low
Maintainer: Neil Williams codeh...@debian.org
Changed-By: Neil Williams codeh...@debian.org
Description: 
 libqof-dev - Query Object Framework - Development Headers
 libqof-doc - Query Object Framework - API Documentation
 libqof2- Query Object Framework
 libqof2-backend-qsf - Query Object Framework - XML backend module
 libqof2-backend-sqlite - Query Object Framework - SQLite backend module
 libqof2-dbg - Query Object Framework - Debug Symbols
 qof-data   - Query Object Framework - common files
Changes: 
 qof (0.8.4-2) unstable; urgency=low
 .
   * Migrate to MultiArch paths - backend paths have changed
 but path has never been exported, so no changes needed.
Checksums-Sha1: 
 d132ec8b7e554c4e58deb1d0f067996ec4baf496 1596 qof_0.8.4-2.dsc
 42f8a3b8923a131d31ddd77bcb797c281ec34585 6650 qof_0.8.4-2.diff.gz
 424d7796814193c3f04dfc316ab719327e78f243 1192986 libqof-doc_0.8.4-2_all.deb
 f075e8259ae49a3b7f961b5f0bcf3ae279fed7c2 56696 qof-data_0.8.4-2_all.deb
 61c5260b925815bd1c1b5f421a3796e80b23e344 179410 libqof2_0.8.4-2_amd64.deb
 1a515221398290a52d598ff7ac96f133575691a3 292682 libqof-dev_0.8.4-2_amd64.deb
 dabae5c9fb58d8b3481c111ad1bbe7273009a66c 57140 
libqof2-backend-qsf_0.8.4-2_amd64.deb
 a4e99ede8b87a05f874fb32001d014c1d26db0f1 44100 
libqof2-backend-sqlite_0.8.4-2_amd64.deb
 6d8ea03cb523b1c91f153796abbd18e74bdec72d 353950 libqof2-dbg_0.8.4-2_amd64.deb
Checksums-Sha256: 
 e52f294159b08caaa75234224e3dfad56dfe07dca3a812c5152a1bb1c7ee20eb 1596 
qof_0.8.4-2.dsc
 8698c28e80115800f4e66c5d7b5ae42350c425aabe8072f412ceacac706f68df 6650 
qof_0.8.4-2.diff.gz
 8a22d26647c9b9bb8639b4f35b7867f8ddc5716b2c56e63861a1a8da3a59c70f 1192986 
libqof-doc_0.8.4-2_all.deb
 ab9c3efaf30d2e0011d373cc56c238a61811e2e7f65249b24d528ba4f50a92aa 56696 
qof-data_0.8.4-2_all.deb
 53de64e2cda911e91fa604ce004bbf3b55ae9470abd280c7a70050f2442fdfdd 179410 
libqof2_0.8.4-2_amd64.deb
 e67546f3894bfd0cc9f881a200732ab8c2c31e30151b0ebe10d02405f6ab23fe 292682 
libqof-dev_0.8.4-2_amd64.deb
 e66b579e378f4e7fc6626d607bcedf708390de1824f272524421fc361ce79161 57140 
libqof2-backend-qsf_0.8.4-2_amd64.deb
 e0832bd6c61bbc07735de54656251b996835481d3c5a127b167e655022fe62d8 44100 
libqof2-backend-sqlite_0.8.4-2_amd64.deb
 f554026d58c1c92ec85ee96e80dadd57ccbc9cbaa04922af6bb191bbed71fb3d 353950 
libqof2-dbg_0.8.4-2_amd64.deb
Files: 
 5fa7bb748972321c482db87ac9bc2e2c 1596 libs optional qof_0.8.4-2.dsc
 b387e456d68b20c103c28e0b40a65cec 6650 libs optional qof_0.8.4-2.diff.gz
 4f32ca8813f98327c99567cc1f567fe6 1192986 doc optional 
libqof-doc_0.8.4-2_all.deb
 f850b38a0004f34ea9be047dd76017f2 56696 libs optional qof-data_0.8.4-2_all.deb
 45b4b6e74c8c478f4d6816e1a88e 179410 libs optional libqof2_0.8.4-2_amd64.deb
 37ec924354f1523af7060f67ef01dd5b 292682 libdevel optional 
libqof-dev_0.8.4-2_amd64.deb
 7b56d53d2b78f0a8079a5325328d45f5 57140 libs optional 
libqof2-backend-qsf_0.8.4-2_amd64.deb
 de93290e546afd1ebfa704cf8226d895 44100 libs optional 
libqof2-backend-sqlite_0.8.4-2_amd64.deb
 83684fa3fd54745ee7577d3268f2b3e1 353950 debug extra 
libqof2-dbg_0.8.4-2_amd64.deb

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

iEYEARECAAYFAk8xBO0ACgkQiAEJSii8s+P+RQCfSMRzSq+J/wc2V+T2b4Gg8Aeh
7AEAniy8wxYpGtvyLNemO49y5VS3Hnwm
=1Y/b
-END PGP SIGNATURE-


Accepted:
libqof-dev_0.8.4-2_amd64.deb
  to main/q/qof/libqof-dev_0.8.4-2_amd64.deb
libqof-doc_0.8.4-2_all.deb
  to main/q/qof/libqof-doc_0.8.4-2_all.deb
libqof2-backend-qsf_0.8.4-2_amd64.deb
  to main/q/qof/libqof2-backend-qsf_0.8.4-2_amd64.deb
libqof2-backend-sqlite_0.8.4-2_amd64.deb
  to main/q/qof/libqof2-backend-sqlite_0.8.4-2_amd64.deb
libqof2-dbg_0.8.4-2_amd64.deb
  to main/q/qof/libqof2-dbg_0.8.4-2_amd64.deb
libqof2_0.8.4-2_amd64.deb
  to main/q/qof/libqof2_0.8.4-2_amd64.deb
qof-data_0.8.4-2_all.deb
  to main/q/qof/qof-data_0.8.4-2_all.deb
qof_0.8.4-2.diff.gz
  to main/q/qof/qof_0.8.4-2.diff.gz
qof_0.8.4-2.dsc
  to main/q/qof/qof_0.8.4-2.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ruj3t-0006hc...@franck.debian.org



Accepted unagi 0.3-1 (source amd64)

2012-02-07 Thread Arnaud Fontaine
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 20:37:06 +0900
Source: unagi
Binary: unagi unagi-dev
Architecture: source amd64
Version: 0.3-1
Distribution: unstable
Urgency: low
Maintainer: Arnaud Fontaine ar...@debian.org
Changed-By: Arnaud Fontaine ar...@debian.org
Description: 
 unagi  - Modular X compositing manager
 unagi-dev  - Modular X compositing manager - development files
Closes: 652450
Changes: 
 unagi (0.3-1) unstable; urgency=low
 .
   * New upstream release. Closes: #652450.
 + Bump libxcb Build-Depends to = 1.8~.
 + Add libxcb-randr0-dev and libev-dev as Build-Depends.
Checksums-Sha1: 
 3918cfef0ca013517bbf172c2a9ccf1633b394ba 1435 unagi_0.3-1.dsc
 6eda608b0ec62e4364d9d08cf2737f4436bfd751 426454 unagi_0.3.orig.tar.gz
 c5da24e8bd3c1e6ed7a0701a9913e64c17fd00ec 2298 unagi_0.3-1.debian.tar.gz
 f0bcc52140f14713209e9587da4f5bdbd4594b27 49752 unagi_0.3-1_amd64.deb
 42c801b2b909398b746e4415ee4227ba110f3445 7796 unagi-dev_0.3-1_amd64.deb
Checksums-Sha256: 
 35f1b4dff98164a296fbe34249de033bd34f86a5caebc3409f2e66e0ebc5083e 1435 
unagi_0.3-1.dsc
 ad9ac062c6ceedcc45f3aff17845166b165ec072c19d64fa8da02c7e95505134 426454 
unagi_0.3.orig.tar.gz
 870efe0c55947a9e22193a94d7b60acb87d61946428e0142d535b2a2837b0215 2298 
unagi_0.3-1.debian.tar.gz
 ea7260c9eff54720a7aea3cd09bcb2a3ddcb7dbd42df3809bb47b34526f8fbaa 49752 
unagi_0.3-1_amd64.deb
 fbcc0a99918e4077cb0ef4c7e19d14b7606f0c21bd7c39fea44226e8354d53d5 7796 
unagi-dev_0.3-1_amd64.deb
Files: 
 7d727e59b851f75dcd4810e58c6e6732 1435 x11 optional unagi_0.3-1.dsc
 14da55d1f44b3cf53072b5b58ce43265 426454 x11 optional unagi_0.3.orig.tar.gz
 eadf0b5565f1572e046b79ec37c01c11 2298 x11 optional unagi_0.3-1.debian.tar.gz
 d13833150cc8403c85a37d2af24dd8aa 49752 x11 optional unagi_0.3-1_amd64.deb
 a1e63f0d807a3f1d4b7b3f3c0f942068 7796 x11 optional unagi-dev_0.3-1_amd64.deb

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

iEYEARECAAYFAk8xEEMACgkQvfKiIF42GdPv0QCfQL2pFJ72onU1j/S0/EwUt3og
zccAni03IooygffnNWkybnJ1K1ktPxan
=JyUp
-END PGP SIGNATURE-


Accepted:
unagi-dev_0.3-1_amd64.deb
  to main/u/unagi/unagi-dev_0.3-1_amd64.deb
unagi_0.3-1.debian.tar.gz
  to main/u/unagi/unagi_0.3-1.debian.tar.gz
unagi_0.3-1.dsc
  to main/u/unagi/unagi_0.3-1.dsc
unagi_0.3-1_amd64.deb
  to main/u/unagi/unagi_0.3-1_amd64.deb
unagi_0.3.orig.tar.gz
  to main/u/unagi/unagi_0.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
Archive: http://lists.debian.org/e1rujzq-0004av...@franck.debian.org



Accepted node-postgres 0.6.10-1 (source amd64)

2012-02-07 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Feb 2012 13:17:12 +0100
Source: node-postgres
Binary: node-pg
Architecture: source amd64
Version: 0.6.10-1
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 node-pg- PostgreSQL client library for Node
Changes: 
 node-postgres (0.6.10-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 cd138820dd13559616379b694af4dfa80b4073f6 2040 node-postgres_0.6.10-1.dsc
 788e328259e5c7e0ed3bd5271550ecb9f1ddc915 50935 node-postgres_0.6.10.orig.tar.gz
 465d63ab6ce08eb0f72db8acad36281c64b46451 5014 
node-postgres_0.6.10-1.debian.tar.gz
 57b5f0e36f03e35a2f96ffa77afef43e847f7260 38626 node-pg_0.6.10-1_amd64.deb
Checksums-Sha256: 
 26038994ea0c6260846a8df3b57fc38b734095ca0704802c7cb3e41e8999b894 2040 
node-postgres_0.6.10-1.dsc
 6bdb4c870d5d043908aa0112d17b8836f9610f883362a4d50fff378adab255b3 50935 
node-postgres_0.6.10.orig.tar.gz
 1d561d4e76215b0b6a82e4b397cc1ed5029a637f845f81f78985c7280369de5f 5014 
node-postgres_0.6.10-1.debian.tar.gz
 1af85f84f4cb1fefbddd08ed4cec549810717e13054b3bcfbf4be2f434cceaca 38626 
node-pg_0.6.10-1_amd64.deb
Files: 
 29a2a5045001316a2ea1dfb91cf36543 2040 web optional node-postgres_0.6.10-1.dsc
 0c29eb54c613c89855f8fbb949e1486b 50935 web optional 
node-postgres_0.6.10.orig.tar.gz
 04c9dbf8b010af275c7f8a17465fe1b3 5014 web optional 
node-postgres_0.6.10-1.debian.tar.gz
 a4ae8e110e088994e2711d46fa91dd57 38626 web optional node-pg_0.6.10-1_amd64.deb

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

iQIcBAEBCgAGBQJPMRhIAAoJECx8MUbBoAEhPFYP+QHAikZpH+wqya1OgIDZlCTu
xe2F236qs61Z4FwW5l58OMsgq3O99iUDMDsMQS40icFZoLRAAVnF1XW5UduJAYfb
HczQjolEi6X8/lWfJjrsoNs1M1HMNBvpTRCWtA0ZuLDmwX2gCM8CNvyvbAIbgluL
c6dMtmOyCT5oGxnheoRq/0ryIqpuz1MY8QWWZ1hxkxh2AhBnEFBc+7gGFAqHJFTy
quB+kSkDxkFRkGeoIZ1aFdLgFa2ZbcTz0H1UO4WxmmU/ankUhRKMWeI9KQMn9jq0
oi4fphHakb/vctjzBIzwilrACnt65/gOgPO8E7qwMxN0HC6D+9+KcCJ7tNe2IGNn
NOCkO8tGqDRzWPgtxfhKFKgZvT1ueOwUkHSIZ96fXWOyy1e9YSq0VJKEThj+WDKU
sheIY2VmSs66rPLf842o7pWqq0wM3bTaJetQXNXkLFovE+pteHHjz3ROwJXK6iDH
qM1XJTUZu+UEWTBOjr1hrhdMM7ul7ML+mJUOaiFmOAL7Zs+SbwuEmN9nSkDV0uDy
pnanHkyv/NuOQsWZXP3UHZTZH4W4zh8tDK4hxqjv62ogFN02+dpIixdcrCbvcMdO
Igsrm1xrL4I3ladDo1HqCM+GsIJdNVvxtfIQuaz1ytA3aPjL/4wxwECR9Q+zQvCq
oS6g/O9evd23JbvMPI7B
=dYup
-END PGP SIGNATURE-


Accepted:
node-pg_0.6.10-1_amd64.deb
  to main/n/node-postgres/node-pg_0.6.10-1_amd64.deb
node-postgres_0.6.10-1.debian.tar.gz
  to main/n/node-postgres/node-postgres_0.6.10-1.debian.tar.gz
node-postgres_0.6.10-1.dsc
  to main/n/node-postgres/node-postgres_0.6.10-1.dsc
node-postgres_0.6.10.orig.tar.gz
  to main/n/node-postgres/node-postgres_0.6.10.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
Archive: http://lists.debian.org/e1rukdn-0005ou...@franck.debian.org



Accepted ruby-sass 3.1.14-1 (source all)

2012-02-07 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Feb 2012 13:28:13 +0100
Source: ruby-sass
Binary: ruby-sass
Architecture: source all
Version: 3.1.14-1
Distribution: unstable
Urgency: low
Maintainer: Jonas Smedegaard d...@jones.dk
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 ruby-sass  - powerful but elegant CSS compiler that makes CSS fun again -- lib
Changes: 
 ruby-sass (3.1.14-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 08c99e662f602aedbe614626e24f32490124a7b8 1945 ruby-sass_3.1.14-1.dsc
 87542472dd9043ff4b80a8f724dc3a5663600240 242899 ruby-sass_3.1.14.orig.tar.gz
 f657ce7aaac181e575a5725ce6b8a84eae90a9b2 6070 ruby-sass_3.1.14-1.debian.tar.gz
 d2043e959be61fce87eb7544d5e15c858893111e 133898 ruby-sass_3.1.14-1_all.deb
Checksums-Sha256: 
 d8b8db59fede2c14b843c40577153f4b8d9cdd7718f8191834b7a3a5139d1c5b 1945 
ruby-sass_3.1.14-1.dsc
 4d775185eb21d02999d4fee269fd5ebce2878e221ece21ecd679f05fd6c76f09 242899 
ruby-sass_3.1.14.orig.tar.gz
 eb98f4a7ecda73f1817d0f8604dfc499c3cb4539b6169229d6485bf0ee68add7 6070 
ruby-sass_3.1.14-1.debian.tar.gz
 4b0b38e9eee673253fa4c9e28c3a21d0bdbe6176f5389fc3c73f8b4a488f8993 133898 
ruby-sass_3.1.14-1_all.deb
Files: 
 c5f5f50b4e767014bfb291d7effecdc6 1945 ruby optional ruby-sass_3.1.14-1.dsc
 f0d32f69badd670eb418311082191f47 242899 ruby optional 
ruby-sass_3.1.14.orig.tar.gz
 218d2f030c0af70bce7c656f850561c2 6070 ruby optional 
ruby-sass_3.1.14-1.debian.tar.gz
 32c4a3d6ca397e2253cd78e0f8a71288 133898 ruby optional 
ruby-sass_3.1.14-1_all.deb

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

iQIcBAEBCgAGBQJPMRl/AAoJECx8MUbBoAEhCKUP/3VwblgUWYcsKG60P5KUjJTS
8Q84BewW+siz1Nz7Wc+ggPD9cR012V/Wx/ZuaFXavlOCATs1WTXaI7/PyLlInAQl
/LA6olJqKIf3O3+Fpty9Ek7ncoxJ7BXhnzKDRMJ/X8fqYlZOwY4nc07IyrfKSvOr
N69iRg6hSp547AQGl4IKgKpb+czS+A12mAaDNouPQPUSeQlEStsg+rD8nGNiMy4F
veVTi9aFcOLShEzbwf6uql51/jRtq4BP8ETNJXcWRL5bNJ8TEI73HNr5DyXzPcPc
MrXFXdnuZ3gKkfAuz+B+13OrgftJrfDto6eGNbkQGNROLWZcyBybpeRAXdI/QpX0
vfocOIbs4qNC7gJ/vxYoFIR6X+eacxf51daDJ/yPO5aVT5IfXq3cS0M/2APfOLyp
FL/oeR18V7ZNfuRUFPDDNdFcJqGTKiWr6horczRd44IVHGSH9OcTu+t+w6NQFUBZ
WP5OMQRTl8f3/o3GINyMXF/9pP8okzLe3sITSYVBIml+beMk6uK2sx+pB71Rtrm4
vrVVTGQNjKtiktehWR4Hb3XdrL5ngKP4C0PRUu5E+0AGuadJXV92Vg+DPIv6t0F+
pR5APsKpHTxJESZ1kzhGHdc9SJ1cm3tYunnYLnuAaXP0ta66/+5JtKD7pY2sT1h9
gc5ioRSmOoF3hYO49TF3
=UlOs
-END PGP SIGNATURE-


Accepted:
ruby-sass_3.1.14-1.debian.tar.gz
  to main/r/ruby-sass/ruby-sass_3.1.14-1.debian.tar.gz
ruby-sass_3.1.14-1.dsc
  to main/r/ruby-sass/ruby-sass_3.1.14-1.dsc
ruby-sass_3.1.14-1_all.deb
  to main/r/ruby-sass/ruby-sass_3.1.14-1_all.deb
ruby-sass_3.1.14.orig.tar.gz
  to main/r/ruby-sass/ruby-sass_3.1.14.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1ruket-0005sa...@franck.debian.org



Accepted tslib 1.0-10 (source all amd64)

2012-02-07 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 12:01:28 +
Source: tslib
Binary: libts-0.0-0 libts-dev libts-bin libts-0.0-0-dbg tsconf
Architecture: source amd64 all
Version: 1.0-10
Distribution: experimental
Urgency: low
Maintainer: Neil Williams codeh...@debian.org
Changed-By: Neil Williams codeh...@debian.org
Description: 
 libts-0.0-0 - touch screen library
 libts-0.0-0-dbg - touch screen library debug symbols
 libts-bin  - touch screen library utilities
 libts-dev  - touch screen library, development files
 tsconf - touch screen library common files
Changes: 
 tslib (1.0-10) experimental; urgency=low
 .
   [ Hector Oron ]
   * Set Architecture to linux-any, instead of any.
 .
   [ Neil Williams ]
   * Convert to MultiArch paths
   * Upload to experimental for plugin testing.
Checksums-Sha1: 
 572e90fe35a71f1912c8d0aed191bd71df79ac09 1604 tslib_1.0-10.dsc
 d7bf835ffd14e8975f23cba0a1c71a33ea87fd85 13374 tslib_1.0-10.debian.tar.gz
 18a423f15a1a22b36391fb04faf5b8dfdf55 29818 libts-0.0-0_1.0-10_amd64.deb
 2b4372ec4e3a836acf2266d4d289a4308bb9e5dc 11640 libts-dev_1.0-10_amd64.deb
 09c84fe54d0a3217313e215637c712eaa41f7af8 34798 libts-bin_1.0-10_amd64.deb
 46629b6844880690d3b9c6599f74f50bc69d6362 23804 libts-0.0-0-dbg_1.0-10_amd64.deb
 7639dcf1d7e7c69a21061511ac0d13d0d31c2cca 13354 tsconf_1.0-10_all.deb
Checksums-Sha256: 
 e8c76eeb58a89599ea576a86d3aa4096a217e6d7596fd538e72ccf35d1bf0394 1604 
tslib_1.0-10.dsc
 dfc3834e550d2bfa96590d046c2bf239cc6bd230e651e5f1f2ca523187ebcdf1 13374 
tslib_1.0-10.debian.tar.gz
 681097722c059e39170193d60e66eaa210bdd8f011bc20cfe1acc2ec522a32d7 29818 
libts-0.0-0_1.0-10_amd64.deb
 a13339b740e92e987b071ca9b2bb8a5e16d2c9fd53ab9ee646708c179bdaad95 11640 
libts-dev_1.0-10_amd64.deb
 83ea7d9676715b5466f0bcbf481691f6f90096c99f4a9aee65f2b4cd335f195e 34798 
libts-bin_1.0-10_amd64.deb
 1f71aabfd8e7a89edf52108f94e144bc9d1a3dca3ce15654693af5e6a2a0696c 23804 
libts-0.0-0-dbg_1.0-10_amd64.deb
 f94fff68a2b56226fee03379e8ac255a523f9cd424153f1a4742120c207daae5 13354 
tsconf_1.0-10_all.deb
Files: 
 16cd6b197e966b8cad2eb7f9ffef0900 1604 embedded optional tslib_1.0-10.dsc
 2b4e8e5867f27bf3f60901d5f5f40ea7 13374 embedded optional 
tslib_1.0-10.debian.tar.gz
 6ad3cb45ae3413a2657140dac12193be 29818 libs optional 
libts-0.0-0_1.0-10_amd64.deb
 99ac1f97bd96436777efe73f42233a3a 11640 libdevel optional 
libts-dev_1.0-10_amd64.deb
 560eccf6285fd8ca3efae721486c73b6 34798 embedded optional 
libts-bin_1.0-10_amd64.deb
 fabd3725dbbee6cb1df9dfa28a84c164 23804 debug extra 
libts-0.0-0-dbg_1.0-10_amd64.deb
 d307ba8984fdc26368464d0378150b5c 13354 embedded optional tsconf_1.0-10_all.deb

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

iEYEARECAAYFAk8xFwcACgkQiAEJSii8s+OFpQCgq6KMYtF8R4wL381L9cUOo5Y+
EUYAnAmhSSTQG2S0QyUYijx/iCl5YeAN
=64KQ
-END PGP SIGNATURE-


Accepted:
libts-0.0-0-dbg_1.0-10_amd64.deb
  to main/t/tslib/libts-0.0-0-dbg_1.0-10_amd64.deb
libts-0.0-0_1.0-10_amd64.deb
  to main/t/tslib/libts-0.0-0_1.0-10_amd64.deb
libts-bin_1.0-10_amd64.deb
  to main/t/tslib/libts-bin_1.0-10_amd64.deb
libts-dev_1.0-10_amd64.deb
  to main/t/tslib/libts-dev_1.0-10_amd64.deb
tsconf_1.0-10_all.deb
  to main/t/tslib/tsconf_1.0-10_all.deb
tslib_1.0-10.debian.tar.gz
  to main/t/tslib/tslib_1.0-10.debian.tar.gz
tslib_1.0-10.dsc
  to main/t/tslib/tslib_1.0-10.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rukek-0005er...@franck.debian.org



Accepted avogadro 1.0.3-3.1 (source all amd64)

2012-02-07 Thread Steve M. Robbins
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 28 Jan 2012 05:36:13 -0600
Source: avogadro
Binary: avogadro avogadro-data libavogadro1 libavogadro-dev python-avogadro
Architecture: source amd64 all
Version: 1.0.3-3.1
Distribution: unstable
Urgency: low
Maintainer: Debichem Team debichem-de...@lists.alioth.debian.org
Changed-By: Steve M. Robbins s...@debian.org
Description: 
 avogadro   - Molecular Graphics and Modelling System
 avogadro-data - Molecular Graphics and Modelling System (Data Files)
 libavogadro-dev - Molecular Graphics and Modelling System (development files)
 libavogadro1 - Molecular Graphics and Modelling System (library)
 python-avogadro - Molecular Graphics and Modelling System (Python module)
Closes: 653625
Changes: 
 avogadro (1.0.3-3.1) unstable; urgency=low
 .
   * Non-Maintainer Upload.
 .
   * patches/boost148.patch: New.  Work around moc limitation.  Closes:
 #653625.
Checksums-Sha1: 
 37f5ced33cd593f0445db22ff9e2f0918e63b468 1863 avogadro_1.0.3-3.1.dsc
 e6c036265ace872068efd37fd8bc2a74269a25aa 12945 avogadro_1.0.3-3.1.debian.tar.gz
 46b204c44983a39071cad4cd21c8ec83ce355ef6 4119626 avogadro_1.0.3-3.1_amd64.deb
 bbde5941b5f18b37a1fe57c54c70ecbf40aab021 321064 avogadro-data_1.0.3-3.1_all.deb
 e30bc27f5ed7fb6f4558f263a657a0be58e8e4c3 1748488 
libavogadro1_1.0.3-3.1_amd64.deb
 087ba830973ed0e406b62081706298380a4e9103 260110 
libavogadro-dev_1.0.3-3.1_amd64.deb
 3ea7a39e21e88dc9a58afeb60c9212ddb135956b 539772 
python-avogadro_1.0.3-3.1_amd64.deb
Checksums-Sha256: 
 85575eabf9f5f9533b5bdc0674cab7b09a99b1168c5665bb9dd76b8664c82c13 1863 
avogadro_1.0.3-3.1.dsc
 5bb94a846adbf113c5973109c2405bf5a20be8c61322039515a6f729a4dd05bc 12945 
avogadro_1.0.3-3.1.debian.tar.gz
 df281200dacb52c51e56ba1cb26f7ac77459e8fe820ccfa9effbcdc1e78ab93c 4119626 
avogadro_1.0.3-3.1_amd64.deb
 17f7c9fbce08f646146c34ca4fb58085cbb69147c7a44d5b250095c8331d2c3b 321064 
avogadro-data_1.0.3-3.1_all.deb
 ab671329bef74f54741cdd121ecf172bd67930b1b041b2293c7819594051d867 1748488 
libavogadro1_1.0.3-3.1_amd64.deb
 bd79abc630ecb60a65654862cbfe89f99cfbacd06ced96ed75cbaf97fd47e9a4 260110 
libavogadro-dev_1.0.3-3.1_amd64.deb
 7d4699afcb9c4a02a9f307567c02be31348eaa57d2919ab6b3f634c84afb0181 539772 
python-avogadro_1.0.3-3.1_amd64.deb
Files: 
 08d411a9ee4cc0bb284579682ef10eb3 1863 science optional avogadro_1.0.3-3.1.dsc
 888393c81e5298a777809d091998734e 12945 science optional 
avogadro_1.0.3-3.1.debian.tar.gz
 497788c6d15a19647a1909ad50049eff 4119626 science optional 
avogadro_1.0.3-3.1_amd64.deb
 6adc0bc06376cb076a672c1b893c12bc 321064 science optional 
avogadro-data_1.0.3-3.1_all.deb
 972f2fe5dc48dfcb9c045d26e788bd22 1748488 libs optional 
libavogadro1_1.0.3-3.1_amd64.deb
 b13bbcdbca486936caf9206112f095fb 260110 libdevel extra 
libavogadro-dev_1.0.3-3.1_amd64.deb
 01ac4baec594917756ee0f17316abe43 539772 python extra 
python-avogadro_1.0.3-3.1_amd64.deb

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

iD8DBQFPI+lT0i2bPSHbMcURAmsmAJ92Qe2BBYfSO1iZugOG23ray3CmswCggkQi
9dW+E2PEdibjRbK9NJUKlIc=
=6mnR
-END PGP SIGNATURE-


Accepted:
avogadro-data_1.0.3-3.1_all.deb
  to main/a/avogadro/avogadro-data_1.0.3-3.1_all.deb
avogadro_1.0.3-3.1.debian.tar.gz
  to main/a/avogadro/avogadro_1.0.3-3.1.debian.tar.gz
avogadro_1.0.3-3.1.dsc
  to main/a/avogadro/avogadro_1.0.3-3.1.dsc
avogadro_1.0.3-3.1_amd64.deb
  to main/a/avogadro/avogadro_1.0.3-3.1_amd64.deb
libavogadro-dev_1.0.3-3.1_amd64.deb
  to main/a/avogadro/libavogadro-dev_1.0.3-3.1_amd64.deb
libavogadro1_1.0.3-3.1_amd64.deb
  to main/a/avogadro/libavogadro1_1.0.3-3.1_amd64.deb
python-avogadro_1.0.3-3.1_amd64.deb
  to main/a/avogadro/python-avogadro_1.0.3-3.1_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rukgh-000160...@franck.debian.org



Accepted qt-gstreamer 0.10.1-2.1 (source all amd64)

2012-02-07 Thread Steve M. Robbins
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 28 Jan 2012 05:41:39 -0600
Source: qt-gstreamer
Binary: libqtglib-2.0-0 libqtgstreamer-0.10-0 libqtgstreamerui-0.10-0 
libqtgstreamerutils-0.10-0 qtgstreamer-plugins libqtgstreamer-dev 
qtgstreamer-doc qtgstreamer-dbg
Architecture: source amd64 all
Version: 0.10.1-2.1
Distribution: unstable
Urgency: low
Maintainer: Maintainers of GStreamer packages 
pkg-gstreamer-maintain...@lists.alioth.debian.org
Changed-By: Steve M. Robbins s...@debian.org
Description: 
 libqtglib-2.0-0 - C++ bindings library for GLib and GObject with a Qt-style API
 libqtgstreamer-0.10-0 - C++ bindings library for GStreamer with a Qt-style API
 libqtgstreamer-dev - Development headers for QtGStreamer
 libqtgstreamerui-0.10-0 - The QtGStreamerUi library
 libqtgstreamerutils-0.10-0 - The QtGStreamerUtils library
 qtgstreamer-dbg - Debug symbols for QtGStreamer
 qtgstreamer-doc - QtGStreamer API documentation
 qtgstreamer-plugins - GStreamer plugins from QtGStreamer
Closes: 653796
Changes: 
 qt-gstreamer (0.10.1-2.1) unstable; urgency=low
 .
   * Non-Maintainer Upload.
 .
   * patches/boost1.48.patch: New.  Work around moc limitation.  Closes:
 #653796.
Checksums-Sha1: 
 6789b4d5d2566da11f42fc28350b5cf48012fff5 1850 qt-gstreamer_0.10.1-2.1.dsc
 ddd7fa3192115ba0c5054bb1c464ddf225478223 14746 
qt-gstreamer_0.10.1-2.1.debian.tar.gz
 bac68d34ab560b90df2e5411e29016cfcf77bb5c 77008 
libqtglib-2.0-0_0.10.1-2.1_amd64.deb
 47efcad9359e21d2e750ecb6370f7cd0b78fd715 111652 
libqtgstreamer-0.10-0_0.10.1-2.1_amd64.deb
 854c7c6ccce9b04b033dfccdbd8427bff826db87 21902 
libqtgstreamerui-0.10-0_0.10.1-2.1_amd64.deb
 7ac521e8dbfc1ad0f7af9629d2b88f233d826a96 16546 
libqtgstreamerutils-0.10-0_0.10.1-2.1_amd64.deb
 c2ed5e722a60c541ef88fa9638ea34731735fd88 18490 
qtgstreamer-plugins_0.10.1-2.1_amd64.deb
 80554684fb08ff05c14d7539148b40002694df25 61878 
libqtgstreamer-dev_0.10.1-2.1_amd64.deb
 90069c1470e2427101b40ae3f2260693bfb069b6 2435262 
qtgstreamer-doc_0.10.1-2.1_all.deb
 0b45c0294426c6107f5c95f2123a19bceb13a721 95634 
qtgstreamer-dbg_0.10.1-2.1_amd64.deb
Checksums-Sha256: 
 3f3fe57db1bee8404877f8ee2525e532a275a4463970404a234c6007a320babc 1850 
qt-gstreamer_0.10.1-2.1.dsc
 71fc38249a8941cfafef71de9009952199078d614cd370ac57fae247d8300338 14746 
qt-gstreamer_0.10.1-2.1.debian.tar.gz
 9b618901e1a95a97c1be444026236f69b14244664ace193b4e89c8f561c5ead2 77008 
libqtglib-2.0-0_0.10.1-2.1_amd64.deb
 6c84fcf74d74ce2f6088d5b97cca84f6a5132319794b43a3a00e1de9f30df72e 111652 
libqtgstreamer-0.10-0_0.10.1-2.1_amd64.deb
 cd463f1727959d0dc7d000698ac3fc1f4bb719fd48a5470bd7a4d2e312eda851 21902 
libqtgstreamerui-0.10-0_0.10.1-2.1_amd64.deb
 092573387f4ff281700ce614c2e27f6f44fb025775aecbe339aed690d37a8b31 16546 
libqtgstreamerutils-0.10-0_0.10.1-2.1_amd64.deb
 99de2f1f4da683e289ddec3c46c842bb67c919e1cf29f1ed697cf95bd9ae63c2 18490 
qtgstreamer-plugins_0.10.1-2.1_amd64.deb
 17e7500a633526e3cd01dca6fd3e33e3d684652a2633d36e7522ce606941a3d9 61878 
libqtgstreamer-dev_0.10.1-2.1_amd64.deb
 860f61265943cc4f01c8e5f50f5e4147488d912763ecd4994ee471acf71ce9dc 2435262 
qtgstreamer-doc_0.10.1-2.1_all.deb
 ae0cdee5fd14492f3925dd0ba7e43d57bf20acb3be019241883614bc162db66e 95634 
qtgstreamer-dbg_0.10.1-2.1_amd64.deb
Files: 
 0b9257061a4d367d23fac8e330d339c4 1850 libs optional qt-gstreamer_0.10.1-2.1.dsc
 4f13cb32504bd17fb05fa68431ab5ac1 14746 libs optional 
qt-gstreamer_0.10.1-2.1.debian.tar.gz
 b51dfd2e8778b455bdf49d24626418cc 77008 libs optional 
libqtglib-2.0-0_0.10.1-2.1_amd64.deb
 cc85738dee0dde8649817e81267eff65 111652 libs optional 
libqtgstreamer-0.10-0_0.10.1-2.1_amd64.deb
 97fdc7e9d2b0a37afee0f309803115e0 21902 libs optional 
libqtgstreamerui-0.10-0_0.10.1-2.1_amd64.deb
 a31efc375eddc48ddf7eb6ec47a12690 16546 libs optional 
libqtgstreamerutils-0.10-0_0.10.1-2.1_amd64.deb
 d64b3fad0aa303744a00a3299f93c878 18490 libs optional 
qtgstreamer-plugins_0.10.1-2.1_amd64.deb
 2d22b326d5f7898203f0452063929297 61878 libdevel optional 
libqtgstreamer-dev_0.10.1-2.1_amd64.deb
 ec999f57c727058488a2c26e81380e9a 2435262 doc optional 
qtgstreamer-doc_0.10.1-2.1_all.deb
 6fbdd687d7c5f474794c2c1ae7648f60 95634 debug extra 
qtgstreamer-dbg_0.10.1-2.1_amd64.deb

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

iD8DBQFPI+kc0i2bPSHbMcURAsoCAJ9MtX10bNHAVm2RA2RU2Ed1lE0N2wCePGkg
uPtPaydmyotcG9o+Q551NK4=
=yU6z
-END PGP SIGNATURE-


Accepted:
libqtglib-2.0-0_0.10.1-2.1_amd64.deb
  to main/q/qt-gstreamer/libqtglib-2.0-0_0.10.1-2.1_amd64.deb
libqtgstreamer-0.10-0_0.10.1-2.1_amd64.deb
  to main/q/qt-gstreamer/libqtgstreamer-0.10-0_0.10.1-2.1_amd64.deb
libqtgstreamer-dev_0.10.1-2.1_amd64.deb
  to main/q/qt-gstreamer/libqtgstreamer-dev_0.10.1-2.1_amd64.deb
libqtgstreamerui-0.10-0_0.10.1-2.1_amd64.deb
  to main/q/qt-gstreamer/libqtgstreamerui-0.10-0_0.10.1-2.1_amd64.deb
libqtgstreamerutils-0.10-0_0.10.1-2.1_amd64.deb
  to main/q/qt-gstreamer/libqtgstreamerutils-0.10-0_0.10.1-2.1_amd64.deb

Accepted dos2unix 5.3.2-2 (source amd64)

2012-02-07 Thread Jari Aalto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 05 Feb 2012 21:20:34 +0200
Source: dos2unix
Binary: dos2unix
Architecture: source amd64
Version: 5.3.2-2
Distribution: unstable
Urgency: low
Maintainer: Jari Aalto jari.aa...@cante.net
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 dos2unix   - convert text file line endings between CRLF and LF
Changes: 
 dos2unix (5.3.2-2) unstable; urgency=low
 .
   * debian/compat
 - Update to 9.
   * debian/control
 - (Build-Depends): Update to debhelper 9, dpkg-dev 1.16.1.
   * debian/rules
 - (include): Add buildflags.mk.
 - (override_dh_auto_build): New. Use hardened CFLAGS (release goal).
   http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags
Checksums-Sha1: 
 3f5c3950b74684ce4af96dada077beca5381675b 1846 dos2unix_5.3.2-2.dsc
 8f41b95dca9a91da79b5134d8b427791638dc3fd 4251 dos2unix_5.3.2-2.debian.tar.gz
 157bbcd1c903f570404ab61abe4cdbd990a7f25f 66324 dos2unix_5.3.2-2_amd64.deb
Checksums-Sha256: 
 a7f86a276172be36e1c6a699340d34bec70894c4aa5b13d83cba9f162d769255 1846 
dos2unix_5.3.2-2.dsc
 7ce0d25d804141ac7a9ab006af9c6058da4a0e06a1827c7fa8d305b0ed48454d 4251 
dos2unix_5.3.2-2.debian.tar.gz
 83e2c21f904be051ab85364c491cb4f8a9a2c1db072d1fe5d34259d0c344a5dd 66324 
dos2unix_5.3.2-2_amd64.deb
Files: 
 e7d03d3d333cf0213605c9a5833f34c9 1846 text extra dos2unix_5.3.2-2.dsc
 79a267e10f86abf82c071d4136323ddf 4251 text extra dos2unix_5.3.2-2.debian.tar.gz
 0bc81ce4f4e8439f3041fe0212b63423 66324 text extra dos2unix_5.3.2-2_amd64.deb

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

iQIcBAEBAgAGBQJPMSEgAAoJECHSBYmXSz6WofgQAIUfm19zMOG8S5TK40KEHrAN
OLkzfeWeUeGi3LZaouAjfINBDfTnfipZG1L67YLeWXC+Wd1T8BSvu1ferzutbzGo
3ePN8y+saKtg2tZj0lHpj/ta06MnbY2hvP6lLjI9WVd14Er10OnzzNkJr/Ouzz9C
l0jvJsKhMxWUMVc2/XauEOwgZhDkD1B88OEgnEm4iOmWL/jvyZS9pVt16Z5DNnTH
dvy+/BaKUoJD0ShOmHQkhPHHGrOvdlgcGC7KDbFdI3lZcTqJfVnl24WSzCRw7XsV
VSBX+rJEtfuy57t2Sa+FBUnBwmtJqxzgvBmJfR3ZnYo6Owxwy1pDzaaEajlMDavT
S9+uyid2d9Q9yy62t8tXKA88HTqersRiy+G6eMJ9NgH6mwA72LWaiKqv4W+M1B3G
qWXBqG8ZqJ/NMcoQ7kJJ9e+US/8NGZw3cakpelBmrijjUVnLAzDQzobBXDSRWhGd
iqluf1IxE+u0xFGUlGB3xaEwKmAg4UXn8ds6IPsQsUiJi16k7IQ18t1/ruxRplnW
Q0kHZync1GmiaE94WcIpoY+x9VIlN87cSihsVnR+f8dIuKnjnl40QFlSVWSJ2Pjz
5wxJTvvE/2vhikkuTVSTkobykBKwhLzqOwy7LODPKiZ3pRvpL/8xI4vyEbOqSTKR
kJjSy87YlQ7W/IWXolHW
=GWgS
-END PGP SIGNATURE-


Accepted:
dos2unix_5.3.2-2.debian.tar.gz
  to main/d/dos2unix/dos2unix_5.3.2-2.debian.tar.gz
dos2unix_5.3.2-2.dsc
  to main/d/dos2unix/dos2unix_5.3.2-2.dsc
dos2unix_5.3.2-2_amd64.deb
  to main/d/dos2unix/dos2unix_5.3.2-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
Archive: http://lists.debian.org/e1rukv1-0002vi...@franck.debian.org



Accepted winetricks 0.0+20120207+svn767-1 (source all)

2012-02-07 Thread Jari Aalto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 07:00:14 +0200
Source: winetricks
Binary: winetricks
Architecture: source all
Version: 0.0+20120207+svn767-1
Distribution: unstable
Urgency: low
Maintainer: Jari Aalto jari.aa...@cante.net
Changed-By: Jari Aalto jari.aa...@cante.net
Description: 
 winetricks - package manager for WINE to install software easily
Closes: 638895
Changes: 
 winetricks (0.0+20120207+svn767-1) unstable; urgency=low
 .
   * New upstream release
 - Spotify fix (Closes: #638895).
   * debian/compat
 - Update to 9.
   * debian/control
 - Update to debhelper 9.
   * debian/manpages
 - Update path.
   * debian/rules
 - (override_dh_auto_install): Adjust path location.
Checksums-Sha1: 
 0a4716bb53e0561c4d8c09206edfdfdaee99fc73 2015 
winetricks_0.0+20120207+svn767-1.dsc
 ff01fc20c5658b4fa9170179e2c73de6b87b719e 153948 
winetricks_0.0+20120207+svn767.orig.tar.gz
 94ec06c45178c825c1094a5f7636c553310f38f4 27879 
winetricks_0.0+20120207+svn767-1.debian.tar.gz
 88a32c5788d0b54a9713551bece4eaaaca858495 165528 
winetricks_0.0+20120207+svn767-1_all.deb
Checksums-Sha256: 
 2276a0d9b6985e880f1418f5bc56e4fd390d09ab1bb4aec0309c2cfeea046150 2015 
winetricks_0.0+20120207+svn767-1.dsc
 8fc716ac6dd43db54d527beb6f053c51dd6c69ffeaa6673b8016b9e12675adcb 153948 
winetricks_0.0+20120207+svn767.orig.tar.gz
 8e76b716ad207aa9929042660197fd2b1bcb8f7b8eff6fbfe2393a117362fdde 27879 
winetricks_0.0+20120207+svn767-1.debian.tar.gz
 c44c5c9292359d0ac186439a346e03a9057c12a0997091f5a3ae48b531c09e4b 165528 
winetricks_0.0+20120207+svn767-1_all.deb
Files: 
 f035d024bbdb746ca925959987e019f0 2015 contrib/otherosfs optional 
winetricks_0.0+20120207+svn767-1.dsc
 19a1aea0fac381041d0364afaeb79b6f 153948 contrib/otherosfs optional 
winetricks_0.0+20120207+svn767.orig.tar.gz
 7618b695799a296ebe383177848f43d8 27879 contrib/otherosfs optional 
winetricks_0.0+20120207+svn767-1.debian.tar.gz
 ee7dff621ed338aaf1f115b9488a05f7 165528 contrib/otherosfs optional 
winetricks_0.0+20120207+svn767-1_all.deb

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

iQIcBAEBAgAGBQJPMSLLAAoJECHSBYmXSz6WbYkQALqDoyrF/1eiUly4nrWG7LiC
HWfQka+NBarkpcmsBncxeJ/jM6/3ym96NNvJNUiALqaDHSBV88m9KdsJnePG+Qel
g1To8HXC1IHEBt6zvxOvuddQr9BTaushoi22uoep0SjzlPOiMdqVRJf7kbKnnJwV
QZNFsGp0kOeAN/a4PDo+xCk8TdVN9ZiErLD9Ao2adquiNS0UVdT1jY3+8C7YnDU5
Kik/xZVTk6XNGM4Yg6vQEqbMkrDvyvKmuHLvpyZ0tHj2fgqCttCciQ5+hd9UC9Tn
OfcsDYsE0tqVaHI9LHvyym4aHQNSb4fxKQllbfNpx8GEblyD8aTBiboYPeCM8EuX
INcNZvAd1WZ0l26HPUCFE3DmAItQ4wZTjfPQyYqVuKxhsmbhD6t25WIDQt+lv3Oe
ibBj0QTj3AHqp192FyKll5oTd+G+MEA4p0wmnBouNbov6DL4Y9lka+fIhoFg1yyG
mqfer/ZCK0LBN3Wu8pRX58nVvNYRdGjD3T85spxVtxaZIOp4vet6DZCjtwJcFxyh
cR3XlzvqbWW/c4faqU33peUc2tFfTCLLsOaAT4b+KI9qxbUh3dKoxZa+G41VOtwP
qvdqmSR4kXkNoiEDtUSLCFVRoZrLFD6p8JljnQmJ4CEQ2PrIoS3dktpK7DCsrlKX
Z22ax/Rle2Ay0tEAXUn3
=YySd
-END PGP SIGNATURE-


Accepted:
winetricks_0.0+20120207+svn767-1.debian.tar.gz
  to contrib/w/winetricks/winetricks_0.0+20120207+svn767-1.debian.tar.gz
winetricks_0.0+20120207+svn767-1.dsc
  to contrib/w/winetricks/winetricks_0.0+20120207+svn767-1.dsc
winetricks_0.0+20120207+svn767-1_all.deb
  to contrib/w/winetricks/winetricks_0.0+20120207+svn767-1_all.deb
winetricks_0.0+20120207+svn767.orig.tar.gz
  to contrib/w/winetricks/winetricks_0.0+20120207+svn767.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
Archive: http://lists.debian.org/e1rukvd-0002yh...@franck.debian.org



Accepted hiredis 0.10.1-4 (source i386)

2012-02-07 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 27 Jan 2012 10:39:19 +0100
Source: hiredis
Binary: libhiredis0.10 libhiredis-dev
Architecture: source i386
Version: 0.10.1-4
Distribution: unstable
Urgency: low
Maintainer: Alessandro Ghedini al3x...@gmail.com
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 libhiredis-dev - Minimalistic C client library for Redis (development files)
 libhiredis0.10 - Minimalistic C client library for Redis
Closes: 650800 657580
Changes: 
 hiredis (0.10.1-4) unstable; urgency=low
 .
   * Add -f flag to rm in dh_auto_test override (Closes: #650800)
   * Enable tests on sparc, since redis-server does not segfaults anymore
 (see #647627)
   * Build depends on redis-server = 2:2.4.2-2 on sparc to get segfault fix
   * Do not use -ggdb option (Closes: #657580)
Checksums-Sha1: 
 45a7397459557facc6f23c58e750cf166be6bc78 1959 hiredis_0.10.1-4.dsc
 dfaa9d65a0dd506cc5c4846b51a5201a3fe6aa79 5187 hiredis_0.10.1-4.debian.tar.gz
 9f77f33b71d41fb7f30973e0440bd8b3fe921857 24104 libhiredis0.10_0.10.1-4_i386.deb
 b9d9e7ad2a9266813d83dea8533b1dfcf069a333 37494 libhiredis-dev_0.10.1-4_i386.deb
Checksums-Sha256: 
 d54d51e1ff6df2a886d0ea72e5498f46cea28648b80280ec757b3fc0192c15f9 1959 
hiredis_0.10.1-4.dsc
 7cc6f36cb2b397330b4b4791fe50f7d2358fbde3be1a3e84e8ac0e422c3aa169 5187 
hiredis_0.10.1-4.debian.tar.gz
 ba3c937acdce7826c14eaf9a87cb722663b4e89838f338a53d2cd5359f7d840b 24104 
libhiredis0.10_0.10.1-4_i386.deb
 5a7ca904909bce303ddbfea65f9e015c0a5d80fb2e44794bd81658833801825e 37494 
libhiredis-dev_0.10.1-4_i386.deb
Files: 
 eb120bf4021851abaefd01970b5de1ae 1959 libs optional hiredis_0.10.1-4.dsc
 6061d7cbc004c570c6cd244337be666e 5187 libs optional 
hiredis_0.10.1-4.debian.tar.gz
 9ddf32d99d694b5ef6002056f0a07fc9 24104 libs optional 
libhiredis0.10_0.10.1-4_i386.deb
 a63388038bb9c462bc892e418b534345 37494 libdevel optional 
libhiredis-dev_0.10.1-4_i386.deb

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

iQIcBAEBCAAGBQJPMSXzAAoJELs6aAGGSaoGaaIQAMKnrtg348U91y93Ctwlal6+
opRRFiF4nVTuhp0ZpvuS1q+ovrAqIf2YsmsL/gVjKf/1fyJ0pLY5KeNz37jU9HHG
ylQu5HAtGRCpe6QhhF6kGlbsKasllkvX/dmLgnuppYsFrqAtbsjHjZs7L/UryuFy
GTXgjuWiN/TkPxrG5u8hF4+c9VFg/OYo87qvj6j1vL3+I1AWch/MKweg3MiqO+Gr
/AZrvUa3FSlyZeyXrvXujdNaX9Ch6vq2NMgchdtz1Ct7nMM3/1nHpxxUrz+xvnoG
fjpg8mfNFOEMqV9ctAPLoA7SRTcZDJMZKiq7zje/103VkOe1OKNB3KPHlDf6meuV
oRhv/d2ZottDMJHahHLiNtcxxk3T5SSy53Xzjdv8Fz8axgjAF/SN46Od2Vf/BQue
MQine7oIViDo+QK2yHw7cawGXJ1vF7drkeAgjvaoLjlNBkER3YtP7OQ9D/FfrzEg
lJfK0Lus/w94htSdfiV5sydPXfqtwGx6Ftk6CqfyJHu7LBDQ4OoiVSc5EuJPv13n
SPJ4KqDgCkw4MKvVU3wBmf57zhuGo/JkVYjwiA/vVrsSw2CNjb6u4KMagi5yJDmC
8c5NGl2avY8CSx7l1dq8uc99nRzi4+83rUU4SO7+V30634NarPngrjMC2A2Fmdrj
47dwf0zHsN3uGGwV95D0
=jI6o
-END PGP SIGNATURE-


Accepted:
hiredis_0.10.1-4.debian.tar.gz
  to main/h/hiredis/hiredis_0.10.1-4.debian.tar.gz
hiredis_0.10.1-4.dsc
  to main/h/hiredis/hiredis_0.10.1-4.dsc
libhiredis-dev_0.10.1-4_i386.deb
  to main/h/hiredis/libhiredis-dev_0.10.1-4_i386.deb
libhiredis0.10_0.10.1-4_i386.deb
  to main/h/hiredis/libhiredis0.10_0.10.1-4_i386.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rulai-0005ap...@franck.debian.org



Accepted libconfig-auto-perl 0.40-1 (source all)

2012-02-07 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Feb 2012 14:21:28 +0100
Source: libconfig-auto-perl
Binary: libconfig-auto-perl
Architecture: source all
Version: 0.40-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libconfig-auto-perl - magical config file parser
Changes: 
 libconfig-auto-perl (0.40-1) unstable; urgency=low
 .
   * Imported Upstream version 0.40
   * Update copyright years for debian/* packaging
   * Add test-file-for-06_const_it.t-test.patch patch.
 Change test file to a file which should be available even in buildd
 chroots (/etc/dpkg/dpkg.cfg).
Checksums-Sha1: 
 dc5a73ffecd2ec7eac576dd313bdfcbf2d38b169 2403 libconfig-auto-perl_0.40-1.dsc
 66d1a24e08460c18a624cbd74b25721003c4dd8b 15836 
libconfig-auto-perl_0.40.orig.tar.gz
 d5c0109cee00ee2f4a710f89fb928ec555904018 3486 
libconfig-auto-perl_0.40-1.debian.tar.gz
 7c05f70d8194be7282997fd7de4dc81dd1405caa 20374 
libconfig-auto-perl_0.40-1_all.deb
Checksums-Sha256: 
 2a7f83d0f4e0e933c15639de2c8c2aa07d74c26d07fe21e1c5a1cca9773ab47e 2403 
libconfig-auto-perl_0.40-1.dsc
 4411a6a962028982724d1f3f3b58c9515102d49c4e62bab2a853122a7acba59b 15836 
libconfig-auto-perl_0.40.orig.tar.gz
 391f90e61bec3096592cdbda9a61e0a6fe67bad595f30f87a6fad41b0c7dac8d 3486 
libconfig-auto-perl_0.40-1.debian.tar.gz
 b86c816a7d8801edfd7bb83fb2107aac392c32e944a7ec20d5fbc08356d87fa3 20374 
libconfig-auto-perl_0.40-1_all.deb
Files: 
 cf7b646f7149daeb7fdaa5138233190f 2403 perl optional 
libconfig-auto-perl_0.40-1.dsc
 3299f1f03a6f977fe15c3e784a75f5a9 15836 perl optional 
libconfig-auto-perl_0.40.orig.tar.gz
 733e0ef1d8d20053fce9f2131a8f3385 3486 perl optional 
libconfig-auto-perl_0.40-1.debian.tar.gz
 4c424f3d8185d9a7943739659078702b 20374 perl optional 
libconfig-auto-perl_0.40-1_all.deb

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

iQIcBAEBCAAGBQJPMSWnAAoJEHidbwV/2GP+MD4QAM2L3meaDC5KJLvnX3GksY2x
Wa/Uo3j0h2NVYnaXLQmzCsTBhH76pJiHhoRlyy6ZcqJObmSadl/auwUgik8pb8SU
LkJrLAjNSXsF9CIouvbbudJ2bHSQmCMHPGf5nfA6Unc7q4kWpIoCuCGR2KN74YXH
ZJxmQs41eyAyaO8qMmoqCS/V5tLXlY/AlTtyUnWgQIbFZIVMIGdP4clpDyo8NMWi
rbAMpSDFEElOVeUp+5mccOXY509rByodcYwdeCZKIosph9KfnIhwzTNtrE//eJCP
tgfjmf5raqWyZ5NVhSNr4L8+1LOZ5txmlafbKGKSBdZh/mFCpZ7fCNLK49UYGOjK
4NCVGUHqmxvZ5vZ58DcWAjsdUfi69URKToj/mHzOM27QnPoD0bIrHWy1LCVhY84z
g6/aMPoEBrDhbm857JFaiUvzZuGm/tXvifuoP2apo9f1O2FwftoemxxlqTiSvueP
12Qj1mHitFaDnqbH9xCRTnyUCDagOL0IsyB1r33WyLIWkBvts399/xS0fg8u8SCT
clIDLTildhTkyTQjMdWbXH+ja98o89CPXhsyD4uOSLFtH/Qnd7vS15rvlzynLBub
CBeVqVl5YcO8g3eTxVyH1I52RbxS5MRMyqK5KgGLnjQfTCD5VRbnOHifho5j1VRb
exx2kFfJQCm7let7eSe7
=BJCV
-END PGP SIGNATURE-


Accepted:
libconfig-auto-perl_0.40-1.debian.tar.gz
  to main/libc/libconfig-auto-perl/libconfig-auto-perl_0.40-1.debian.tar.gz
libconfig-auto-perl_0.40-1.dsc
  to main/libc/libconfig-auto-perl/libconfig-auto-perl_0.40-1.dsc
libconfig-auto-perl_0.40-1_all.deb
  to main/libc/libconfig-auto-perl/libconfig-auto-perl_0.40-1_all.deb
libconfig-auto-perl_0.40.orig.tar.gz
  to main/libc/libconfig-auto-perl/libconfig-auto-perl_0.40.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
Archive: http://lists.debian.org/e1rulax-0005eb...@franck.debian.org



Accepted xclip 0.12+svn84-1 (source i386)

2012-02-07 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 06 Feb 2012 12:30:49 +0100
Source: xclip
Binary: xclip
Architecture: source i386
Version: 0.12+svn84-1
Distribution: unstable
Urgency: low
Maintainer: Alessandro Ghedini al3x...@gmail.com
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 xclip  - command line interface to X selections
Closes: 601079 657329
Changes: 
 xclip (0.12+svn84-1) unstable; urgency=low
 .
   [ Maximilian Gass ]
   * New release from upstream Subversion, as suggested by him in private
 mail (closes: #601079)
   * Add dh-autoreconf to Build-Depends and debian/rules
   * Switch to source format 3.0 (quilt)
   * Bump debhelper compat to v8
 .
   [ Alessandro Ghedini ]
   * New maintainer (Closes: #657329)
   * Remove debian/README.source (not needed with 3.0 (quilt))
   * Bump Standards-Version to 3.9.2 (no changes needed)
   * One build dep per line, sort
   * Add get-orig-source rule
   * Update DEP5 formatting for d/copyright
   * Run tests inside xvfb
 - Build depends on xvfb, xauth and psmisc
Checksums-Sha1: 
 4dd8886a72f6a8303d671d47b0e48798a959715f 1881 xclip_0.12+svn84-1.dsc
 449c266bfea9718d46ea329f495548c85cd6b743 28450 xclip_0.12+svn84.orig.tar.gz
 cca7c241cc03e04c8f353b8af1df4a48377b8829 3881 xclip_0.12+svn84-1.debian.tar.gz
 7dd31969e41b8fe724aaacc9b49cc4da9a584e09 21762 xclip_0.12+svn84-1_i386.deb
Checksums-Sha256: 
 731724392e2ab9875dd7c094e28afb9c6196ba9e8b07ca7193b39a0836d2b791 1881 
xclip_0.12+svn84-1.dsc
 0a6d7b46f109326eb5ad8e5a445808d083bab1ce9bb9393b79932a6a9b83afb0 28450 
xclip_0.12+svn84.orig.tar.gz
 4919675b09cb56042fde0dae4265a0caec1da205eab27871e23897a7e80b28d0 3881 
xclip_0.12+svn84-1.debian.tar.gz
 3cfccff2e570dee19251bcf87a822908d19e3319e88170a1f262a1d99f6365f6 21762 
xclip_0.12+svn84-1_i386.deb
Files: 
 7f9dc899013c2a86daa8b93bf359f9c4 1881 x11 optional xclip_0.12+svn84-1.dsc
 06fe5785390224b3c48a21e8fe096150 28450 x11 optional 
xclip_0.12+svn84.orig.tar.gz
 08e621891ffa81a5936036444bc133d4 3881 x11 optional 
xclip_0.12+svn84-1.debian.tar.gz
 6cdd533d7fe1dc223388b49d3213d7a1 21762 x11 optional xclip_0.12+svn84-1_i386.deb

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

iQIcBAEBCAAGBQJPMSfmAAoJELs6aAGGSaoGY8UQAJG/NKYY0wPErj+cYTqh7yHI
Iq+fnBrH8Ll7Kob6SAMNnMr6LQNpjhKHpQi1O26pmNqsKsVvtWVx94KAsLnQXljM
YJNSqaNHKdM3Q/C3Wcgdkj01lz74PWbmACfE6i9Yd25bDHObvFXWi4R4fDWJUbon
7R4VS+2HsAZk2hxtBxFhYDHDGyyVzVTxK3MP8gnvL+3s7FeO7ZDz7PXH6Hucgtnp
yfp3fClIcqCfOruEYx18l3GgGustALACGxv96Me4w6resJvK2hBAors6mxnqg6BJ
Isf7/U1wHVwIdVU9ImrKTZRaJL3pchTUO2bPJiRevZ/UUu7YNyDLBIKiIF0qrbd6
pVk53/C5M3Nu71Q7MTASsoY5GJETv1AWjhr4YVfYLOfd+teAASUKLZzOfhIt3BQG
pkDv4ZckSuNeiIaCrxpS5NVDvnklURuX3oLu4PUrET81bzIqveaTRjgYjbYtXGzv
C/68SjnJoNCLHCBw4qWQFYTO7Tz1d9ZUVQsTWBc9cupYK+NhB6hB3b2tKaHb5dRh
lu7J5MDfeJq9apzsAO+1Ivl1ai/RoqcOFK7sl8hEvvxYm16Lb2P2J8q+xD3Xib3Z
y56Jv+PE09MDKAZKYla0DfRlsjhTfjwyAwK7DYmY1Ond1H8WpWGLXeMrY4/bV1XT
Ox3sx7I50dRkpbtLPUax
=Dfrx
-END PGP SIGNATURE-


Accepted:
xclip_0.12+svn84-1.debian.tar.gz
  to main/x/xclip/xclip_0.12+svn84-1.debian.tar.gz
xclip_0.12+svn84-1.dsc
  to main/x/xclip/xclip_0.12+svn84-1.dsc
xclip_0.12+svn84-1_i386.deb
  to main/x/xclip/xclip_0.12+svn84-1_i386.deb
xclip_0.12+svn84.orig.tar.gz
  to main/x/xclip/xclip_0.12+svn84.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
Archive: http://lists.debian.org/e1rulph-0007gl...@franck.debian.org



Accepted bochs 2.4.6-5 (source all amd64)

2012-02-07 Thread Guillem Jover
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 13:10:17 +0100
Source: bochs
Binary: bochs bochs-doc bochsbios bochs-wx bochs-sdl bochs-term bochs-x 
bochs-svga bximage sb16ctrl-bochs
Architecture: source all amd64
Version: 2.4.6-5
Distribution: unstable
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Guillem Jover guil...@debian.org
Description: 
 bochs  - IA-32 PC emulator
 bochs-doc  - Bochs upstream documentation
 bochs-sdl  - SDL plugin for Bochs
 bochs-svga - SVGA plugin for Bochs
 bochs-term - Terminal (ncurses-based) plugin for Bochs
 bochs-wx   - WxWindows plugin for Bochs
 bochs-x- X11 plugin for Bochs
 bochsbios  - BIOS for the Bochs emulator
 bximage- Disk Image Creation Tool for Bochs
 sb16ctrl-bochs - control utility for Bochs emulated SB16 card
Closes: 653511
Changes: 
 bochs (2.4.6-5) unstable; urgency=low
 .
   * Orphan package, set maintainer to Debian QA Group.
   * Fix typo (targeted) in README.Debian, spotted by lintian.
   * Remove sb16ctrl.exe from upstream tarball in debian/tarball.sh.
   * Add missing backslash to escape $ on XPM_LIB variable:
 - debian/patches/link-only-needed-libs.patch
   * Enable support for RFB protocol as GUI frontend (works with VNC viewer).
   * Use dpkg-buildflags to set build flags (enables default hardening flags).
 Based on a patch by Moritz Muehlenhoff j...@debian.org. (Closes: #653511)
   * Fix man page warnings due to unescaped ' at the beginning of line.
   * Reorganize patches:
 - Remove sequence numbers from non-imported patch filenames.
 - Rename non-imported patches to more descriptive names.
 - Split 00_base.patch into a local-config.patch and local-paths.patch.
   * Switch sb16ctrl-bochs to any-i386 instead of explicit arch list.
   * Clarify output on what's being done by debian/tarball.sh.
   * Build bochs-svga on all architectures where svgalib is now available;
 implies switching from i386 and amd64 to linux-any and kfreebsd-any.
Checksums-Sha1: 
 71e2bae2b181abe41324a94525e8fa0d8a267083 1864 bochs_2.4.6-5.dsc
 8eb74b1e8ca034d2ae5e9331456119f8832d4b5b 46313 bochs_2.4.6-5.debian.tar.gz
 3e027e7f773a30ebcb9688179aa9f18881c395d3 246174 bochs-doc_2.4.6-5_all.deb
 f6224277d666c86eae14557aec2ec689fdb7922a 174338 bochsbios_2.4.6-5_all.deb
 cf55daf65fa0c7aae8680b07c58ca9a758c8f5c2 1075314 bochs_2.4.6-5_amd64.deb
 100ebac6e2d688b4e25d4b5cd42ec72d013509c3 173286 bochs-wx_2.4.6-5_amd64.deb
 5e11653ad684817fc45cb1811684b7a62e6b07a3 98704 bochs-sdl_2.4.6-5_amd64.deb
 baa065e32c050c1857b5fe7874b649a87e31936e 86834 bochs-term_2.4.6-5_amd64.deb
 1e5eb1a6baf84013666cea3d1009343ee3606e5d 102604 bochs-x_2.4.6-5_amd64.deb
 bf5ab9628a47df0870d0e8b3c731ff2e77cdbe4b 87914 bochs-svga_2.4.6-5_amd64.deb
 ec9db908e34cf811a9f184f10875149a03a012c8 90754 bximage_2.4.6-5_amd64.deb
Checksums-Sha256: 
 5644f3d357a6c5c8a8d1cb55c0a8d0496605a69922df27e9687308bb81e56d52 1864 
bochs_2.4.6-5.dsc
 206ee735fd1ce9e1ea637556a15ec5de7e6128b5622bc731ef7ea1af7e1f3f49 46313 
bochs_2.4.6-5.debian.tar.gz
 fc3c1b7dac14109ed72e068b2788c3d2b8d3edf11e7eeaf00862474e1c5adff8 246174 
bochs-doc_2.4.6-5_all.deb
 2bf6d56db16e2e4527386fc13a2427f1e035c9f73b5bc9c9338b3f2601ccefdd 174338 
bochsbios_2.4.6-5_all.deb
 a9bfbdd755e1fbc84e3c8548dbbe260210e902dbdff340ddb1803d8a87c33436 1075314 
bochs_2.4.6-5_amd64.deb
 dd72d56ff760086b53d9c7b927d652ba63544ceb144545ca5906504351f58931 173286 
bochs-wx_2.4.6-5_amd64.deb
 eb07d19b3a6e67308d25e2156e55aeb510c54e723f53805794c7dbf04f5d5d05 98704 
bochs-sdl_2.4.6-5_amd64.deb
 18d147c9112e60a4a47fe67a930381515098448f39e9412c9d3082f1562e19c7 86834 
bochs-term_2.4.6-5_amd64.deb
 a31fa188ace8e850c0be8b28d6d916a7c3cbbab1279c55f9031efcebae37403a 102604 
bochs-x_2.4.6-5_amd64.deb
 a34b65253e31ac1f23864e24b8221ad36b1df476bbe05bfacbe5053fa9c94049 87914 
bochs-svga_2.4.6-5_amd64.deb
 9a1e18005c28bf362c6daa721662f75c711a72e3d0d3676ef87500362acbc51e 90754 
bximage_2.4.6-5_amd64.deb
Files: 
 e29b60cb24341563021ae17cc1598c13 1864 misc extra bochs_2.4.6-5.dsc
 829ec2ceef03b2aad6ff9eb4d91fdf95 46313 misc extra bochs_2.4.6-5.debian.tar.gz
 c27cae38642d49e53765bd8e24ef4479 246174 doc extra bochs-doc_2.4.6-5_all.deb
 85aeb52e608700217eeadef567f33c80 174338 misc extra bochsbios_2.4.6-5_all.deb
 f192808cea0818895c28156a4cff73f3 1075314 misc extra bochs_2.4.6-5_amd64.deb
 8f5c86d27cde3758551286bb09067198 173286 misc extra bochs-wx_2.4.6-5_amd64.deb
 1db7e6b72d3b92bd9a00d04b6ee8f32f 98704 misc extra bochs-sdl_2.4.6-5_amd64.deb
 8ef802e3d93e523eafe98ed88762ce15 86834 misc extra bochs-term_2.4.6-5_amd64.deb
 1e8310825c0a03f95ccc59cfae4e9fb6 102604 misc extra bochs-x_2.4.6-5_amd64.deb
 0cca6a75ee2fc611257e08589967edc5 87914 misc extra bochs-svga_2.4.6-5_amd64.deb
 33f5e69611c2b5e44e5cc467d9714bc8 90754 misc extra bximage_2.4.6-5_amd64.deb

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

iEYEARECAAYFAk8xK5AACgkQuW9ciZ2SjJtqpACfcK4+l0gBdMOd8r9HAt5DpSxB

Accepted bochs 2.5.1-1 (source all amd64)

2012-02-07 Thread Guillem Jover
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 13:33:35 +0100
Source: bochs
Binary: bochs bochs-doc bochsbios bochs-wx bochs-sdl bochs-term bochs-x 
bochs-svga bximage sb16ctrl-bochs
Architecture: source all amd64
Version: 2.5.1-1
Distribution: experimental
Urgency: low
Maintainer: Debian QA Group packa...@qa.debian.org
Changed-By: Guillem Jover guil...@debian.org
Description: 
 bochs  - IA-32 PC emulator
 bochs-doc  - Bochs upstream documentation
 bochs-sdl  - SDL plugin for Bochs
 bochs-svga - SVGA plugin for Bochs
 bochs-term - Terminal (ncurses-based) plugin for Bochs
 bochs-wx   - WxWindows plugin for Bochs
 bochs-x- X11 plugin for Bochs
 bochsbios  - BIOS for the Bochs emulator
 bximage- Disk Image Creation Tool for Bochs
 sb16ctrl-bochs - control utility for Bochs emulated SB16 card
Closes: 499567
Changes: 
 bochs (2.5.1-1) experimental; urgency=low
 .
   !! This release gets random app freezes when using the wxWidgets GUI. !!
 .
   * Orphan package, set maintainer to Debian QA Group.
   * New upstream release.
 - Refresh patches.
   * Do not use obsolete --enable-acpi and --enable-vbe options.
   * Use --enable-ne2000 and --enable-pnic on all systems, as now a dummy
 backend is used automatically as a system fallback.
   * Do not manually specify a backend to --enable-sb16, configure selects
 the correct one automatically.
   * Add following configure options: --enable-avx, --enable-vmx=2,
 --enable-es1370 and --enable-clgd54xx.
   * Switch from gdb-stub to the internal GUI debugger, as the former is
 unmaintained upstream. It might need disabling prior to an upload to
 unstable though, as the debugging screen appearing on start is a bit
 annoying, if one does not want to debug anything. Or alternatively
 making the debugging screen not appear on start. (Closes: #499567)
   * Bump bochs versioned Depends on vgabios to = 0.7a-1.
   * Fix man page warnings due to unescaped ' at the beginning of line,
 and table lines using more than 80 characters.
Checksums-Sha1: 
 9d1a2a3c403d809a441d34d72c29d8da6561339a 1877 bochs_2.5.1-1.dsc
 6b9ee826c37b9ba3a5b89cedccda906dabf386e6 3981579 bochs_2.5.1.orig.tar.gz
 5a0e29258d99a02f007c0bb928eac90cf65ddaae 46626 bochs_2.5.1-1.debian.tar.gz
 61a5482520e558b475790f938e9879846112482f 247824 bochs-doc_2.5.1-1_all.deb
 40a8555d11c2544a4b1240999ca6c7a6edc9b21c 181158 bochsbios_2.5.1-1_all.deb
 b76483137c8665f5777bda624aa840ffad55896b 1296318 bochs_2.5.1-1_amd64.deb
 9ed8fbfcd297ed043a0a88c80ef727c6e2231e50 183376 bochs-wx_2.5.1-1_amd64.deb
 f3819ebf118151daa549aa1085a71973b47db05e 104304 bochs-sdl_2.5.1-1_amd64.deb
 9dd81510c25f4fa663c3b88d45de0f977bbd2e09 91474 bochs-term_2.5.1-1_amd64.deb
 5d45fc13e1d11fe333acf9d3ada17f324b6e57d5 109204 bochs-x_2.5.1-1_amd64.deb
 0af92f5b8c06ea756d27564f11729ead487854c6 92570 bochs-svga_2.5.1-1_amd64.deb
 793bb28aa92657496846eab81a847ae6c71f10e2 95368 bximage_2.5.1-1_amd64.deb
Checksums-Sha256: 
 4a000d3380f98e3bcc4578e91dfd452a9b2ff29d244d250a88216c59db51f344 1877 
bochs_2.5.1-1.dsc
 b5cc83f3802270a083ce2c15a4bd4164eac5382c3c74be8eedb9ace742aa364a 3981579 
bochs_2.5.1.orig.tar.gz
 ff8cb4f21fd136a651599098806a6b593b2e55cb03cbf2dfdb23c1af185ff00b 46626 
bochs_2.5.1-1.debian.tar.gz
 0e9023a1333f33341cc9aa8da6f73de556d53ff9ca7c7dfb83d01d20cd75d16d 247824 
bochs-doc_2.5.1-1_all.deb
 318a9277f1588a1d05ecf6c53754491fbe4ccc88b5fc48a2a8de59d2ac6f9c36 181158 
bochsbios_2.5.1-1_all.deb
 ccf1206c5db6b139f842322bad0f7e6ee46d8c6098e28395806389fd88a8ea93 1296318 
bochs_2.5.1-1_amd64.deb
 ed4ab308b41826836d3e7a2055cfab26fff3909097b7cca2110997557d1b03e2 183376 
bochs-wx_2.5.1-1_amd64.deb
 f1c38b3a93494ace0cdbbc658489e2815621d8a8dfe2a7b1be31a80b2a3e5737 104304 
bochs-sdl_2.5.1-1_amd64.deb
 aa5bdad422a1ea4691a58cbce420e83583b32537e0fcc91f7fa13e12368c46a3 91474 
bochs-term_2.5.1-1_amd64.deb
 ca139091da053bf76555ea7a1a1b566821627bc11d2025d7d486476c9439d1f2 109204 
bochs-x_2.5.1-1_amd64.deb
 ad76376697de66546c127c29d1bcc50d0a4813b6aa04db79ec1bc374d1d31543 92570 
bochs-svga_2.5.1-1_amd64.deb
 eac4f60e9deca5e616c644281e74afe379d0d2a91fbedd2dce7c5b37f24cbeec 95368 
bximage_2.5.1-1_amd64.deb
Files: 
 aedb7da615b015dd8f02d6f16a1411af 1877 misc extra bochs_2.5.1-1.dsc
 c8ea87be9b39a094ee2023bdd6c260fc 3981579 misc extra bochs_2.5.1.orig.tar.gz
 0cd0bed432cc10fb20091ffa52a71575 46626 misc extra bochs_2.5.1-1.debian.tar.gz
 5f4104778f62c0c982907db4a1ec5ea3 247824 doc extra bochs-doc_2.5.1-1_all.deb
 419d9b35d46236001c1796d48a74f1b6 181158 misc extra bochsbios_2.5.1-1_all.deb
 6afe231865ff2b60d188ea07fc73987d 1296318 misc extra bochs_2.5.1-1_amd64.deb
 d5b21c89d1cf7b1b919bdb06f472a8c9 183376 misc extra bochs-wx_2.5.1-1_amd64.deb
 b931bc45ce49bf351988848bf11719ff 104304 misc extra bochs-sdl_2.5.1-1_amd64.deb
 6f2e48a3beeb3536dc81981ef71f3a2c 91474 misc extra bochs-term_2.5.1-1_amd64.deb
 fdad3892116ac9490d03769f7da38c24 109204 misc extra bochs-x_2.5.1-1_amd64.deb
 

Accepted libgpewidget 0.117-5 (source all amd64)

2012-02-07 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 12:25:39 +
Source: libgpewidget
Binary: libgpewidget1 libgpewidget-dev libgpewidget-data libgpewidget1-dbg 
libgpewidget-doc
Architecture: source amd64 all
Version: 0.117-5
Distribution: unstable
Urgency: low
Maintainer: Neil Williams codeh...@debian.org
Changed-By: Neil Williams codeh...@debian.org
Description: 
 libgpewidget-data - data files for libgpewidget
 libgpewidget-dev - Development files for libgpewidget
 libgpewidget-doc - GPE Palmtop Environment widget library Reference Manual
 libgpewidget1 - GPE Palmtop Environment widget library
 libgpewidget1-dbg - debug symbols for libgpewidget
Changes: 
 libgpewidget (0.117-5) unstable; urgency=low
 .
   * Convert to Multi-Arch paths
Checksums-Sha1: 
 e71d527d16965809a726c69e3eb071137a34f6c4 1800 libgpewidget_0.117-5.dsc
 1b233a1eb508b1a46dfb1a83dfa261cce4e3e2ec 6967 
libgpewidget_0.117-5.debian.tar.gz
 98d7865ec3079f75e2d6349de0d0bfeccc8be0bf 84528 libgpewidget1_0.117-5_amd64.deb
 60ae489492e0dd2cc40b6ea060b1d2cd4427627b 101304 
libgpewidget-dev_0.117-5_amd64.deb
 6e857155ac7266c2525d7d730303d985cd9f1f7e 74222 
libgpewidget-data_0.117-5_all.deb
 a0b0e079ff572951263f1631d726b5318304a5ce 235036 
libgpewidget1-dbg_0.117-5_amd64.deb
 e64646d83cadfe123b9bc191d57d13cd48d51c18 56782 libgpewidget-doc_0.117-5_all.deb
Checksums-Sha256: 
 8d76c8d7cea3303acbeebcd66310c5884d8d763246177831721a7bd3030ef488 1800 
libgpewidget_0.117-5.dsc
 7f7ea9c5e789994b5164e993ae729e7a826db39f508f342f97a11c643f70b07b 6967 
libgpewidget_0.117-5.debian.tar.gz
 5c39436c1bf9a74cbd422319c5c8fb36b0e5c4510f03cf4164d69ce871831c98 84528 
libgpewidget1_0.117-5_amd64.deb
 9d1705e5fb62fe3e6d93c260205b76f124441cfa71500f846aaf10a91aeec7bc 101304 
libgpewidget-dev_0.117-5_amd64.deb
 773540f046d8c44b182f2550e110cba594fc1b4bc4a98fe278a83b1fcb57f299 74222 
libgpewidget-data_0.117-5_all.deb
 78a333a1dabefb12e0c2823eebce7e37cc526e58ed3b673b398bd5f89249588f 235036 
libgpewidget1-dbg_0.117-5_amd64.deb
 6fc7489a5dc15412401b8d85011eee76e9bfde2909c38dc9c351b30083798e4a 56782 
libgpewidget-doc_0.117-5_all.deb
Files: 
 1e5ec8494fd2fafc8c0c5d7bca8f3511 1800 libs optional libgpewidget_0.117-5.dsc
 b9b490133a4aeb073141bb065d94a674 6967 libs optional 
libgpewidget_0.117-5.debian.tar.gz
 f066e8bb7729b97c69579a503eaf3d88 84528 libs optional 
libgpewidget1_0.117-5_amd64.deb
 f01ac16f5970382a58e743c9ed0ebefc 101304 libdevel optional 
libgpewidget-dev_0.117-5_amd64.deb
 f76a675d58b6d01dc02e58625120fe03 74222 utils optional 
libgpewidget-data_0.117-5_all.deb
 4d54af403674e1ccb17cb7f8ac2a3c28 235036 debug extra 
libgpewidget1-dbg_0.117-5_amd64.deb
 c560cb12556104946942075b603bb70e 56782 doc optional 
libgpewidget-doc_0.117-5_all.deb

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

iEYEARECAAYFAk8xM+EACgkQiAEJSii8s+OBuACePUx7tzhIKGiV4t042ayZdTtW
2YMAoOD17iwalmuGANiojEfiXkUpIsHv
=2ul9
-END PGP SIGNATURE-


Accepted:
libgpewidget-data_0.117-5_all.deb
  to main/libg/libgpewidget/libgpewidget-data_0.117-5_all.deb
libgpewidget-dev_0.117-5_amd64.deb
  to main/libg/libgpewidget/libgpewidget-dev_0.117-5_amd64.deb
libgpewidget-doc_0.117-5_all.deb
  to main/libg/libgpewidget/libgpewidget-doc_0.117-5_all.deb
libgpewidget1-dbg_0.117-5_amd64.deb
  to main/libg/libgpewidget/libgpewidget1-dbg_0.117-5_amd64.deb
libgpewidget1_0.117-5_amd64.deb
  to main/libg/libgpewidget/libgpewidget1_0.117-5_amd64.deb
libgpewidget_0.117-5.debian.tar.gz
  to main/libg/libgpewidget/libgpewidget_0.117-5.debian.tar.gz
libgpewidget_0.117-5.dsc
  to main/libg/libgpewidget/libgpewidget_0.117-5.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rumoy-0004w8...@franck.debian.org



Accepted nx-libs-lite 3.5.0.10-1 (source amd64)

2012-02-07 Thread Reinhard Tartler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 14:24:23 +0100
Source: nx-libs-lite
Binary: nxproxy libxcomp3 libxcomp-dev
Architecture: source amd64
Version: 3.5.0.10-1
Distribution: unstable
Urgency: low
Maintainer: Reinhard Tartler siret...@debian.org
Changed-By: Reinhard Tartler siret...@tauware.de
Description: 
 libxcomp-dev - NX X compression library headers
 libxcomp3  - NX X compression library
 nxproxy- NX proxy
Changes: 
 nx-libs-lite (3.5.0.10-1) unstable; urgency=low
 .
   * New upstream release
 - drop sa_restorer flag, better patch is upstream now.
 - (hopefully) Fixes FTBFS on ia64 for good.
   * Fix the top-level makefile
Checksums-Sha1: 
 5f6219ffe7a7a3a4be64d7bc0cf4d048e382cd29 1595 nx-libs-lite_3.5.0.10-1.dsc
 9d38380c19e07f67864e51b0ac82b6fff2203e13 524037 
nx-libs-lite_3.5.0.10.orig.tar.gz
 fdfe7a3f440cac00fb12ee940d1ff91f290c3a0d 4034 
nx-libs-lite_3.5.0.10-1.debian.tar.gz
 2f9bd78042f3e92fab02e9b16e947c8178dd36ee 9918 nxproxy_3.5.0.10-1_amd64.deb
 7701a41c1c9b7124ddeb1c01e7c566119ea3c03f 410240 libxcomp3_3.5.0.10-1_amd64.deb
 c54fca662ee294ab13cbdef13efc717570141560 559806 
libxcomp-dev_3.5.0.10-1_amd64.deb
Checksums-Sha256: 
 d162c86ac238dfae75d75db8246a03903c852afa79533154ee37aea42e4fdd0b 1595 
nx-libs-lite_3.5.0.10-1.dsc
 51f3955e703822b3b3d1cefe21d1d2face00f3eef24d14b664a200b15e1c2508 524037 
nx-libs-lite_3.5.0.10.orig.tar.gz
 ff5ba78b8e40875656c020cd025ab8bb2f232a4ae10cb7149aeba3431b24d287 4034 
nx-libs-lite_3.5.0.10-1.debian.tar.gz
 f4e917b20f7789f3a7d224caffa5b57b951d95ba68190164e7e4de155fe81793 9918 
nxproxy_3.5.0.10-1_amd64.deb
 67ee73c8899220fa5106b0321f9c943403765af396024589dc723ac4d5bc1504 410240 
libxcomp3_3.5.0.10-1_amd64.deb
 87eaff2df04cf8820131f01d53f9428769c2e1aa0ccfd327a397bd701f7d3c8c 559806 
libxcomp-dev_3.5.0.10-1_amd64.deb
Files: 
 1571099b45bef5468a611c7a1d065523 1595 x11 optional nx-libs-lite_3.5.0.10-1.dsc
 78120f0619bc021863a214df384af114 524037 x11 optional 
nx-libs-lite_3.5.0.10.orig.tar.gz
 3be7ec144310a81033da1d3877884467 4034 x11 optional 
nx-libs-lite_3.5.0.10-1.debian.tar.gz
 c4de6224eb0744b1e8ea0553f6a42ce1 9918 x11 optional nxproxy_3.5.0.10-1_amd64.deb
 2ec93788850877324a007f806f4ee303 410240 x11 optional 
libxcomp3_3.5.0.10-1_amd64.deb
 2c26adf7190bd865d529cb75190fbba6 559806 libdevel optional 
libxcomp-dev_3.5.0.10-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (GNU/Linux)
Comment: Debian Powered!

iEYEARECAAYFAk8xKuAACgkQmAg1RJRTSKRf8gCdEnJnCEf5smP80nbdWvtH/Z9P
9z4AniibGNA3FFxt/MCdDSs9tIchT8Cf
=gqsG
-END PGP SIGNATURE-


Accepted:
libxcomp-dev_3.5.0.10-1_amd64.deb
  to main/n/nx-libs-lite/libxcomp-dev_3.5.0.10-1_amd64.deb
libxcomp3_3.5.0.10-1_amd64.deb
  to main/n/nx-libs-lite/libxcomp3_3.5.0.10-1_amd64.deb
nx-libs-lite_3.5.0.10-1.debian.tar.gz
  to main/n/nx-libs-lite/nx-libs-lite_3.5.0.10-1.debian.tar.gz
nx-libs-lite_3.5.0.10-1.dsc
  to main/n/nx-libs-lite/nx-libs-lite_3.5.0.10-1.dsc
nx-libs-lite_3.5.0.10.orig.tar.gz
  to main/n/nx-libs-lite/nx-libs-lite_3.5.0.10.orig.tar.gz
nxproxy_3.5.0.10-1_amd64.deb
  to main/n/nx-libs-lite/nxproxy_3.5.0.10-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
Archive: http://lists.debian.org/e1rumpa-00050n...@franck.debian.org



Accepted prolix 0.03-1 (source all)

2012-02-07 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Feb 2012 14:59:15 +0100
Source: prolix
Binary: prolix
Architecture: source all
Version: 0.03-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 prolix - tool to interactively filter chatty command output
Closes: 657746
Changes: 
 prolix (0.03-1) unstable; urgency=low
 .
   * Team upload.
   * New upstream release:
 - doc fixes (closes: #657746)
   * Update year of upstream copyright.
   * Make (build-) dependency on libmoosex-getopt-perl versioned.
Checksums-Sha1: 
 d3ce82e8eced82e836e85231f0bce1d39a649c25 2148 prolix_0.03-1.dsc
 b5e780db5c051649e70b80e7db195806749ea1d2 9489 prolix_0.03.orig.tar.gz
 eee8cd3da6f5f661a33957a582887f8d5a907fb5 1813 prolix_0.03-1.debian.tar.gz
 145eb3f4d67d13b0848639d53de7c3a814477a8d 17700 prolix_0.03-1_all.deb
Checksums-Sha256: 
 bb917edf556531e4830fae732c2dcf9240d84b610fd9b340b893ec34a15e5428 2148 
prolix_0.03-1.dsc
 6e48cbe04f95629fc2fb7a658a570aa72fbd216c52cfa9ee6368c38b654a540e 9489 
prolix_0.03.orig.tar.gz
 d8c73c64df84382d9d2dced5542080b871cf9a07865dfee5c60819727adf98ed 1813 
prolix_0.03-1.debian.tar.gz
 6ac5cabb1d5fb7529fd8fdea070832b57a41e26b9404793afc8ba409691d8121 17700 
prolix_0.03-1_all.deb
Files: 
 dddb7ca1afce16294a9dab9b5ce23b96 2148 perl optional prolix_0.03-1.dsc
 cf244b6c138d97293735e6d47c030c40 9489 perl optional prolix_0.03.orig.tar.gz
 24fe07dcce1618aca0cc6e737248075b 1813 perl optional prolix_0.03-1.debian.tar.gz
 95cf37c4beea0da5421d542b6b36e912 17700 perl optional prolix_0.03-1_all.deb

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

iQIcBAEBCAAGBQJPMS6uAAoJELs6aAGGSaoGn74QAJcRpTKH8qoepB/AF8tEqcef
cUXDcwj4to6G3F27l2/htqmuy9nQG6ydnQPMjpsVrA/FYUGIM4UB/rdwSQ3nQSyZ
AQQ7g134cWODbzBM6erA+7Wd4D3Cd9/UO+eD2boh8UknlC7OLdIvgF+Ss39U1niV
YY6HS/0+YCxjmzZEO3PwAeRtfgZ3p1AY4jHdK/6oSf9JpHj2vXWecVAiMddylXSM
NwlncjhwkZwvP7tDnLwcVc5YDiuYKpB27nNcPdv/hpNr0a4r53/ScAVu0BxjnyUb
7hu4zr5nFp05fZf0ezVXMTxINBC7ATSS1fiEj1Y4gDG4km4Uqd3LMu+oPBWo4fGj
hCQQ3Xdp5BKZa0Iq2RfHXdt9yddY48JsKRhunDIwu7eLWIQSzBTSxZnD4gCTxNlj
m4ZtBGecBFX3RAEhnEwvw1CKZWDOiYk+Ctm6hAmgypYQjOfKJ32LwvczvbNGsFAM
rbPraOlvFEqhUyBs81EWYLZahAf0QQFNJ6SaT+h2ro3bG/IKEdcxLmv5Q92LXn50
WFdEb/3rQO+tWU7e3tKagL4pLrGVWIvmd8e8IOlMOc0AZCTST2ygAdj8uRTw0pPC
934xBzLgEJ6AqhplKGaHavugspI4YzzXzgDL8WOmNM7CL4L0+mlDDrny5PaDBZLz
dKFhRqyb4LSf/o/6uuxj
=kseF
-END PGP SIGNATURE-


Accepted:
prolix_0.03-1.debian.tar.gz
  to main/p/prolix/prolix_0.03-1.debian.tar.gz
prolix_0.03-1.dsc
  to main/p/prolix/prolix_0.03-1.dsc
prolix_0.03-1_all.deb
  to main/p/prolix/prolix_0.03-1_all.deb
prolix_0.03.orig.tar.gz
  to main/p/prolix/prolix_0.03.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
Archive: http://lists.debian.org/e1rumpp-00053i...@franck.debian.org



Accepted mgltools-molkit 1.5.6~rc3~cvs.20120206-1 (source all)

2012-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 18:00:00 +0100
Source: mgltools-molkit
Binary: mgltools-molkit
Architecture: source all
Version: 1.5.6~rc3~cvs.20120206-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-molkit - Python classes to read and manipulate molecules
Changes: 
 mgltools-molkit (1.5.6~rc3~cvs.20120206-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: vcs fields corrected
Checksums-Sha1: 
 073cbe570c98e796731b63b5505611c4a1eebc0d 1696 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1.dsc
 bbeeea6eed6ef7f67e4ce4436c593e37968bfe7d 3006208 
mgltools-molkit_1.5.6~rc3~cvs.20120206.orig.tar.gz
 c60fc9c3b02f3bc350087cf06863997fd8e616e7 8958 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 d191ccdffdde502e9c81da3e04598a0697ccaca7 3021778 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all.deb
Checksums-Sha256: 
 a213dcd83e82abb087b055bc9bb38a69f8033456383c74cc9f2e23c079f4a4a4 1696 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1.dsc
 708ead4ac7e85195f2a408b851f5cd8aa8cdab51db36c3388e51110eeef1d013 3006208 
mgltools-molkit_1.5.6~rc3~cvs.20120206.orig.tar.gz
 037dbbc06767411bbad8ff35fa92df46d6e94cd6bea9a7f9aaf263131bc3a39b 8958 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 d2721881cd421bf8fd71d9edbc162df5fb9f208f3cf1fa06ea66d9bd960fc48f 3021778 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all.deb
Files: 
 b12e0f1077c68b9752aa56fe0def1032 1696 non-free/science optional 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1.dsc
 c5b588588fba16452a5cbd393c23c94a 3006208 non-free/science optional 
mgltools-molkit_1.5.6~rc3~cvs.20120206.orig.tar.gz
 2a920277cdd66a11bb0f9a9c99154f38 8958 non-free/science optional 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 16e7b9b50b70af6d1d2b0fa6edd81f39 3021778 non-free/science optional 
mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all.deb

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

iEYEARECAAYFAk8xVgAACgkQ02K2KlS5mJAEegCfaF3akvOtBg2a1mPah2dSgZ9c
0rYAn13txe7m0JGaj8Cns4zSxryjM3lO
=47Ph
-END PGP SIGNATURE-


Accepted:
mgltools-molkit_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
  to 
non-free/m/mgltools-molkit/mgltools-molkit_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
mgltools-molkit_1.5.6~rc3~cvs.20120206-1.dsc
  to non-free/m/mgltools-molkit/mgltools-molkit_1.5.6~rc3~cvs.20120206-1.dsc
mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all.deb
  to non-free/m/mgltools-molkit/mgltools-molkit_1.5.6~rc3~cvs.20120206-1_all.deb
mgltools-molkit_1.5.6~rc3~cvs.20120206.orig.tar.gz
  to 
non-free/m/mgltools-molkit/mgltools-molkit_1.5.6~rc3~cvs.20120206.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
Archive: http://lists.debian.org/e1rumzl-0006yp...@franck.debian.org



Accepted talloc 2.0.7+git20120207-1 (source amd64)

2012-02-07 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 15:46:18 +0100
Source: talloc
Binary: libtalloc2 libtalloc2-dbg libtalloc-dev python-talloc python-talloc-dbg 
python-talloc-dev
Architecture: source amd64
Version: 2.0.7+git20120207-1
Distribution: unstable
Urgency: low
Maintainer: Jelmer Vernooij jel...@debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 libtalloc-dev - hierarchical pool based memory allocator - development files
 libtalloc2 - hierarchical pool based memory allocator
 libtalloc2-dbg - hierarchical pool based memory allocator - debug symbols
 python-talloc - hierarchical pool based memory allocator - Python bindings
 python-talloc-dbg - hierarchical pool based memory allocator - Python debug 
extension
 python-talloc-dev - talloc Python bindings - development files
Closes: 654508
Changes: 
 talloc (2.0.7+git20120207-1) unstable; urgency=low
 .
   * New upstream snapshot.
+ Unpacks waf source code. Closes: #654508
Checksums-Sha1: 
 068ab5db996d0efe0a782b8daecf0a4144925b2a 1614 talloc_2.0.7+git20120207-1.dsc
 4fba72189d6f4069b31d57ad0cef1815649c2f39 416335 
talloc_2.0.7+git20120207.orig.tar.gz
 878dced8dbb4658fb3e9621593d861d8e95c8504 5465 
talloc_2.0.7+git20120207-1.debian.tar.gz
 00790183189b090793858a48c9ecf79e1f91244c 24812 
libtalloc2_2.0.7+git20120207-1_amd64.deb
 afefe66bcf0372b38b8c809226c32fb790b216f6 46716 
libtalloc2-dbg_2.0.7+git20120207-1_amd64.deb
 3b954fd86be17be9f2951970d953a58632a88e39 109074 
libtalloc-dev_2.0.7+git20120207-1_amd64.deb
 50a628d74c8d8dd48170e0ea9c3258c7fa4c19a6 9402 
python-talloc_2.0.7+git20120207-1_amd64.deb
 87137cd66aab73083362975d7cc82560351e0c88 13998 
python-talloc-dbg_2.0.7+git20120207-1_amd64.deb
 7965e3ac3c8f6c20adbca85cce325fe814ff884a 5066 
python-talloc-dev_2.0.7+git20120207-1_amd64.deb
Checksums-Sha256: 
 fb1e4d6abbb4097c9cf83f41635e33d04dceb50912cf64c2255af63708bff155 1614 
talloc_2.0.7+git20120207-1.dsc
 b9834fb36a4eb992f0da7ffce73f7190862a1ba112bbd0b7063d09fc11307b43 416335 
talloc_2.0.7+git20120207.orig.tar.gz
 64c3098192493e7ac1956fcf6e33a05a1c78c05a216f0b786bbaad413aaf29e9 5465 
talloc_2.0.7+git20120207-1.debian.tar.gz
 42f281238dfb16fb97a640382ace22f9a84a7929da0f2315674aed392b5b3648 24812 
libtalloc2_2.0.7+git20120207-1_amd64.deb
 7061c0f9dbba865c3e5d9063f3abe73cb4bb2333da1d55225d53b74f1e9b1bf3 46716 
libtalloc2-dbg_2.0.7+git20120207-1_amd64.deb
 123c4674410b8b7bb8d5250ba400d1b9f5aa8d9e8c62aa2d145d1400cdf7d47a 109074 
libtalloc-dev_2.0.7+git20120207-1_amd64.deb
 b2c2464e124037d03bf0575e28a443aae199e0cd7cefbfd907c4ba5a3e4643b6 9402 
python-talloc_2.0.7+git20120207-1_amd64.deb
 f956ad0ecfbbc90610859089e6dfb933653aaff78f124eff9fbc8eb69b3ba587 13998 
python-talloc-dbg_2.0.7+git20120207-1_amd64.deb
 a904e580f5f9b97557b09364df9238676945ac80f29d67f74deb8e5b778ab708 5066 
python-talloc-dev_2.0.7+git20120207-1_amd64.deb
Files: 
 16e9f36a323d58c30949715607bd57b5 1614 devel optional 
talloc_2.0.7+git20120207-1.dsc
 914786e61ee58e94db8c58805af0a4f1 416335 devel optional 
talloc_2.0.7+git20120207.orig.tar.gz
 483079ea7bae8c0ceba72acb93006894 5465 devel optional 
talloc_2.0.7+git20120207-1.debian.tar.gz
 19ac30ee1e0175a42e39e302b759bcf1 24812 libs optional 
libtalloc2_2.0.7+git20120207-1_amd64.deb
 f0843b0635cb22433931119378d9d835 46716 debug extra 
libtalloc2-dbg_2.0.7+git20120207-1_amd64.deb
 338f4ad8a78dd228ed1c03de641d840d 109074 libdevel optional 
libtalloc-dev_2.0.7+git20120207-1_amd64.deb
 0b5c7950eaad99729880616dca0eb0a1 9402 python optional 
python-talloc_2.0.7+git20120207-1_amd64.deb
 a1f7c64be3a060f7d5aeb48c169e420d 13998 debug extra 
python-talloc-dbg_2.0.7+git20120207-1_amd64.deb
 caff460520d30cbb2d0af7986b33a5a0 5066 libdevel optional 
python-talloc-dev_2.0.7+git20120207-1_amd64.deb

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

iEYEARECAAYFAk8xOusACgkQPa9Uoh7vUnasiACfW9dRFkqthzelDzxcja43cyzn
tP4AnjUu4ijHQja1+LdTtN97JRsTGizw
=QjnP
-END PGP SIGNATURE-


Accepted:
libtalloc-dev_2.0.7+git20120207-1_amd64.deb
  to main/t/talloc/libtalloc-dev_2.0.7+git20120207-1_amd64.deb
libtalloc2-dbg_2.0.7+git20120207-1_amd64.deb
  to main/t/talloc/libtalloc2-dbg_2.0.7+git20120207-1_amd64.deb
libtalloc2_2.0.7+git20120207-1_amd64.deb
  to main/t/talloc/libtalloc2_2.0.7+git20120207-1_amd64.deb
python-talloc-dbg_2.0.7+git20120207-1_amd64.deb
  to main/t/talloc/python-talloc-dbg_2.0.7+git20120207-1_amd64.deb
python-talloc-dev_2.0.7+git20120207-1_amd64.deb
  to main/t/talloc/python-talloc-dev_2.0.7+git20120207-1_amd64.deb
python-talloc_2.0.7+git20120207-1_amd64.deb
  to main/t/talloc/python-talloc_2.0.7+git20120207-1_amd64.deb
talloc_2.0.7+git20120207-1.debian.tar.gz
  to main/t/talloc/talloc_2.0.7+git20120207-1.debian.tar.gz
talloc_2.0.7+git20120207-1.dsc
  to main/t/talloc/talloc_2.0.7+git20120207-1.dsc
talloc_2.0.7+git20120207.orig.tar.gz
  to main/t/talloc/talloc_2.0.7+git20120207.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with 

Accepted tdb 1.2.9+git20120207-1 (source amd64)

2012-02-07 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 14:38:34 +0100
Source: tdb
Binary: libtdb1 tdb-tools libtdb-dev libtdb1-dbg python-tdb python-tdb-dbg
Architecture: source amd64
Version: 1.2.9+git20120207-1
Distribution: unstable
Urgency: low
Maintainer: Jelmer Vernooij jel...@debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 libtdb-dev - Trivial Database - development files
 libtdb1- Trivial Database - shared library
 libtdb1-dbg - Trivial Database - debug symbols
 python-tdb - Python bindings for TDB
 python-tdb-dbg - Python bindings for TDB - debug extension
 tdb-tools  - Trivial Database - bundled binaries
Closes: 654509 657021
Changes: 
 tdb (1.2.9+git20120207-1) unstable; urgency=low
 .
   * New upstream snapshot.
+ Unpacks waf sourcecode. Closes: #654509
+ Fixes build issues when IOV_MAX is not available, as is
  the case on Hurd systems. Closes: #657021
Checksums-Sha1: 
 27a142215fca5c510571175aa5631fba1645be79 1476 tdb_1.2.9+git20120207-1.dsc
 47af4d3ef11091e85cd44f0a83ec2b9bbca1c1bf 443339 
tdb_1.2.9+git20120207.orig.tar.gz
 a1c148a810113345310911ae38c7e4f736b406f2 12547 
tdb_1.2.9+git20120207-1.debian.tar.gz
 4f58be7ee4d9a7f819bdf404a5a7c8ae2935683b 39230 
libtdb1_1.2.9+git20120207-1_amd64.deb
 7af1d735fe874907f2c6e3dd6a544f5c81af154a 26872 
tdb-tools_1.2.9+git20120207-1_amd64.deb
 d0b17f7b608bca36e58457db8a01342e668f0fcb 139484 
libtdb-dev_1.2.9+git20120207-1_amd64.deb
 414df8f31e61217fb5c125c3a456e6b3e3f27c59 57756 
libtdb1-dbg_1.2.9+git20120207-1_amd64.deb
 76b8f030ff3ccda02fadb48a5150df10288f359c 14694 
python-tdb_1.2.9+git20120207-1_amd64.deb
 4c931ebb2442d4712b4ebc8f8728415f250e4842 19354 
python-tdb-dbg_1.2.9+git20120207-1_amd64.deb
Checksums-Sha256: 
 9bb787fd7f8d433d38a91ba5a53676ac57b76aa2603118777dbd5d614c14c81a 1476 
tdb_1.2.9+git20120207-1.dsc
 6823d7fac10664d1444deeaf96a178699a59dc4ef85f36af5bd4cbe9c3e524bb 443339 
tdb_1.2.9+git20120207.orig.tar.gz
 53694198f28d6e32728b19c00557f7954151999e1260ffb39380b95a48771c71 12547 
tdb_1.2.9+git20120207-1.debian.tar.gz
 7730d4c3c37eed27df7046cba8c70b1ae79d3295e7adfd6e7ff912e2e5896b8f 39230 
libtdb1_1.2.9+git20120207-1_amd64.deb
 2569cab631cfceb932bdf319b8103c01eae33fc9afd0946a6304d4dd7e28928a 26872 
tdb-tools_1.2.9+git20120207-1_amd64.deb
 6fa83430608a2c1880c794e89d530b2c13559babcb7f89ceb10d6fe60be5dd09 139484 
libtdb-dev_1.2.9+git20120207-1_amd64.deb
 6830ef166139bc4a8a6c0a75a099a0259a8e3aa6f813f8b257d8733c4fdbc5f0 57756 
libtdb1-dbg_1.2.9+git20120207-1_amd64.deb
 7c52123f2f7d83ce4a559744a13b7d49e816cd18f3cc2426c250183c20ae9c0b 14694 
python-tdb_1.2.9+git20120207-1_amd64.deb
 7758a32c74d62fae57f48397bf5cd73ff8f6309bf8f84861d5cfad87a27b7ed2 19354 
python-tdb-dbg_1.2.9+git20120207-1_amd64.deb
Files: 
 e3ec5aedf65c2a86eb75ce9b38fc591d 1476 devel optional 
tdb_1.2.9+git20120207-1.dsc
 fba23adabd2a8ebea068cadfc7d11d25 443339 devel optional 
tdb_1.2.9+git20120207.orig.tar.gz
 20072bd69722d6688af8338c12dc3600 12547 devel optional 
tdb_1.2.9+git20120207-1.debian.tar.gz
 9739bfb2747769d3bfdde5153531f7be 39230 libs optional 
libtdb1_1.2.9+git20120207-1_amd64.deb
 52abef6fb66729485b74e268bc6603ce 26872 utils optional 
tdb-tools_1.2.9+git20120207-1_amd64.deb
 1cc7a61c1fd7788c37de7f0bbf83669a 139484 libdevel optional 
libtdb-dev_1.2.9+git20120207-1_amd64.deb
 d9a9fc6052db7c4815bf4b0ccb594249 57756 debug extra 
libtdb1-dbg_1.2.9+git20120207-1_amd64.deb
 4539e0f60c2ad359e9bd6019ad6074c8 14694 python optional 
python-tdb_1.2.9+git20120207-1_amd64.deb
 e0e7adea29992becc36e7276b8bb3a53 19354 debug extra 
python-tdb-dbg_1.2.9+git20120207-1_amd64.deb

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

iEYEARECAAYFAk8xOIoACgkQPa9Uoh7vUnb6QgCdEWR5oeMNhVhWAE0coAPrKtp0
Z38AoIP4rCkR14YUCSq+fcq0yOi+CLwK
=hEvl
-END PGP SIGNATURE-


Accepted:
libtdb-dev_1.2.9+git20120207-1_amd64.deb
  to main/t/tdb/libtdb-dev_1.2.9+git20120207-1_amd64.deb
libtdb1-dbg_1.2.9+git20120207-1_amd64.deb
  to main/t/tdb/libtdb1-dbg_1.2.9+git20120207-1_amd64.deb
libtdb1_1.2.9+git20120207-1_amd64.deb
  to main/t/tdb/libtdb1_1.2.9+git20120207-1_amd64.deb
python-tdb-dbg_1.2.9+git20120207-1_amd64.deb
  to main/t/tdb/python-tdb-dbg_1.2.9+git20120207-1_amd64.deb
python-tdb_1.2.9+git20120207-1_amd64.deb
  to main/t/tdb/python-tdb_1.2.9+git20120207-1_amd64.deb
tdb-tools_1.2.9+git20120207-1_amd64.deb
  to main/t/tdb/tdb-tools_1.2.9+git20120207-1_amd64.deb
tdb_1.2.9+git20120207-1.debian.tar.gz
  to main/t/tdb/tdb_1.2.9+git20120207-1.debian.tar.gz
tdb_1.2.9+git20120207-1.dsc
  to main/t/tdb/tdb_1.2.9+git20120207-1.dsc
tdb_1.2.9+git20120207.orig.tar.gz
  to main/t/tdb/tdb_1.2.9+git20120207.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
Archive: http://lists.debian.org/e1rumad-0006oh...@franck.debian.org



Accepted tevent 0.9.14+git20120207-1 (source amd64)

2012-02-07 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 15:36:52 +0100
Source: tevent
Binary: libtevent0 libtevent0-dbg libtevent-dev
Architecture: source amd64
Version: 0.9.14+git20120207-1
Distribution: unstable
Urgency: low
Maintainer: Jelmer Vernooij jel...@debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 libtevent-dev - talloc-based event loop library - development files
 libtevent0 - talloc-based event loop library - shared library
 libtevent0-dbg - talloc-based event loop library - debug symbols
Closes: 654510
Changes: 
 tevent (0.9.14+git20120207-1) unstable; urgency=low
 .
   * New upstream snapshot.
+ Unpacks waf source code. Closes: #654510
Checksums-Sha1: 
 f0e5d94e946e77ef250c77a3a0a5db9d3d201ca3 1417 tevent_0.9.14+git20120207-1.dsc
 827d9021bd2bc8ed5d7a764c2dcc9623168e278d 483201 
tevent_0.9.14+git20120207.orig.tar.gz
 fd89a88cbbab1db61f6181e42868d4309019ce8e 7149 
tevent_0.9.14+git20120207-1.debian.tar.gz
 103a2fac88bf5c9baae3e41885690dd60f299f62 25788 
libtevent0_0.9.14+git20120207-1_amd64.deb
 5767a5f1deb11bdd921cecfc1343cdc0c63a8762 46212 
libtevent0-dbg_0.9.14+git20120207-1_amd64.deb
 bc4488e94034d21f7a204ae1439112e23a1d4efd 44658 
libtevent-dev_0.9.14+git20120207-1_amd64.deb
Checksums-Sha256: 
 2afebb347a380de035f65924bc2abca9c2276212c4691e7705d404e635eb1dc6 1417 
tevent_0.9.14+git20120207-1.dsc
 dba6e6ec5d4d5e606d45731514724c5927b8e3f7a4eda0410eafc187565f429d 483201 
tevent_0.9.14+git20120207.orig.tar.gz
 f47d7fb5eb7af4d3b8c44e345a456549e6a875fe802393cd8a55bbfe8ce33b86 7149 
tevent_0.9.14+git20120207-1.debian.tar.gz
 aba89902630fb9105c54cdb204b21915366d76710c27b03a8c9ea9776c2c6f5d 25788 
libtevent0_0.9.14+git20120207-1_amd64.deb
 54ada1af804de16d6b572b521fb3310ebceaa62a596a5adb5cb997b7d233a28d 46212 
libtevent0-dbg_0.9.14+git20120207-1_amd64.deb
 04c40825eba6d83f14dd81c1442e0bfa73ead0045e5c5cfadf34d84e0306db92 44658 
libtevent-dev_0.9.14+git20120207-1_amd64.deb
Files: 
 0ee6b7298446ed9ee7484b5dcde4c546 1417 devel optional 
tevent_0.9.14+git20120207-1.dsc
 a60c922fe7bfbae9c2abe718cd22d7e5 483201 devel optional 
tevent_0.9.14+git20120207.orig.tar.gz
 1fee019656874ff9d77188d060b4e62c 7149 devel optional 
tevent_0.9.14+git20120207-1.debian.tar.gz
 177b7216d3be04125305f35ce006d141 25788 libs optional 
libtevent0_0.9.14+git20120207-1_amd64.deb
 b6d2f527e56f3feebb21551fab055a7c 46212 debug extra 
libtevent0-dbg_0.9.14+git20120207-1_amd64.deb
 cc0f2c7b55b4505ea03cb1cc4bd9e5f0 44658 libdevel optional 
libtevent-dev_0.9.14+git20120207-1_amd64.deb

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

iEYEARECAAYFAk8xOc8ACgkQPa9Uoh7vUnYUfwCgjM8U3noSiTomC3VHgNzZUyHd
1cQAmgLIDF25DFB4I7Hx07JVxT/c/3Uc
=nabZ
-END PGP SIGNATURE-


Accepted:
libtevent-dev_0.9.14+git20120207-1_amd64.deb
  to main/t/tevent/libtevent-dev_0.9.14+git20120207-1_amd64.deb
libtevent0-dbg_0.9.14+git20120207-1_amd64.deb
  to main/t/tevent/libtevent0-dbg_0.9.14+git20120207-1_amd64.deb
libtevent0_0.9.14+git20120207-1_amd64.deb
  to main/t/tevent/libtevent0_0.9.14+git20120207-1_amd64.deb
tevent_0.9.14+git20120207-1.debian.tar.gz
  to main/t/tevent/tevent_0.9.14+git20120207-1.debian.tar.gz
tevent_0.9.14+git20120207-1.dsc
  to main/t/tevent/tevent_0.9.14+git20120207-1.dsc
tevent_0.9.14+git20120207.orig.tar.gz
  to main/t/tevent/tevent_0.9.14+git20120207.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
Archive: http://lists.debian.org/e1rumav-0006t3...@franck.debian.org



Accepted file 5.10-1 (source i386)

2012-02-07 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 15:50:45 +0100
Source: file
Binary: file libmagic1 libmagic-dev python-magic python-magic-dbg
Architecture: source i386
Version: 5.10-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net
Changed-By: Daniel Baumann daniel.baum...@progress-technologies.net
Description: 
 file   - Determines file type using magic numbers
 libmagic-dev - File type determination library using magic numbers 
(developmen
 libmagic1  - File type determination library using magic numbers
 python-magic - File type determination library using magic numbers (Python 
bin
 python-magic-dbg - File type determination library using magic numbers 
(Python bin
Closes: 333717 608944 638314
Changes: 
 file (5.10-1) unstable; urgency=low
 .
   [ Daniel Baumann ]
   * Adding patch from Eloi Notario entfe...@gmail.com to add new magic
 for GNU tar incremental snapshots files (Closes: #608944).
   * Adding multi-arch support, thanks to Riku Voipio
 riku.voi...@iki.fi (Closes: #333717, #638314).
 .
   [ Judit Foglszinger ]
   * Removing rpath from usr/bin/file.
   * Merging upstream version 5.10.
   * Removing magic-gnu-tar.patch, went upstream.
   * Changing ./configure string to not compile in rpath and removing
 workaround with chrpath, thanks to Riku Voipio riku.voi...@iki.fi.
Checksums-Sha1: 
 c0dd74a9251dbeb5159d7931766e0f121aeaf111 1372 file_5.10-1.dsc
 72fd435e78955ee122b7b3d323ff2f92e6263e89 608726 file_5.10.orig.tar.gz
 69c43714e39e7b690823939064f491eb3117bbad 27350 file_5.10-1.debian.tar.gz
 460b27ca0a0099ccffe8f432772fda066b137cd8 52384 file_5.10-1_i386.deb
 46e85580dc4715cc080186bb936aa30a08a9f049 248732 libmagic1_5.10-1_i386.deb
 cb30bb61cd846ec4c626e3bfc3fd07eed3905df5 99190 libmagic-dev_5.10-1_i386.deb
 bd210d03ab54685567fcbdfa5a5303704b2ccf68 38708 python-magic_5.10-1_i386.deb
 ef9cef3c986beef18674ef1dc07dfbb59c001378 888 python-magic-dbg_5.10-1_i386.deb
Checksums-Sha256: 
 5846562a946b65ef95f7334c62aa61bf836c6861f419350d8cd5692b3f79c425 1372 
file_5.10-1.dsc
 73ae51889006b1ddb95db729237d411eb8d353884dfb149f0b4427d314aff68a 608726 
file_5.10.orig.tar.gz
 adb6f27e44eef12ae4a28437f2984022e25322247635a7d29a72111c955f4a36 27350 
file_5.10-1.debian.tar.gz
 2c9d3fd50acedc3438db2e6f49258c0702be4611922655f9d2ce2814a2dac0e9 52384 
file_5.10-1_i386.deb
 12717d4723826d1857680b2df9bd3f835823af71b59ba7e5d54c8bad5dad7644 248732 
libmagic1_5.10-1_i386.deb
 69d88ae71d5954ffacc9a37fa5d037a7f8d6a11ec799a2769202687349cb0e6c 99190 
libmagic-dev_5.10-1_i386.deb
 8ef669144d7514c76978278aee398dd366c28b83a786579d2f2b00b5052c07ff 38708 
python-magic_5.10-1_i386.deb
 3d2a190012dfacd25404d9f901cd13c19a28a1143f0e2f9664cb1a11ebc9ecfb 888 
python-magic-dbg_5.10-1_i386.deb
Files: 
 014063629fbf2691ab24b3b255bbc5c3 1372 utils standard file_5.10-1.dsc
 4cea34b087b060772511e066e2038196 608726 utils standard file_5.10.orig.tar.gz
 fbbfbced50b7ec2a8865861654bf26b4 27350 utils standard file_5.10-1.debian.tar.gz
 de741ba566bb5768892a910ebee56f88 52384 utils standard file_5.10-1_i386.deb
 fc3fba0b5d58e59f0097c19fb8ccb0a9 248732 libs standard libmagic1_5.10-1_i386.deb
 4200a0ff2ef61bbe2b8951cf0392ddd7 99190 libdevel optional 
libmagic-dev_5.10-1_i386.deb
 2bf9a2ea8968d39303411c89901acfdf 38708 python extra 
python-magic_5.10-1_i386.deb
 c6768683c027653862be0bd99acb5e74 888 debug extra 
python-magic-dbg_5.10-1_i386.deb

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

iEYEARECAAYFAk8xPlgACgkQ+C5cwEsrK574ZgCfVBQKWV/TeMJtrd+g/l6EoIct
zf8An3LrZ7xNyPXhrrA39hGSGAy0sn8T
=foKw
-END PGP SIGNATURE-


Accepted:
file_5.10-1.debian.tar.gz
  to main/f/file/file_5.10-1.debian.tar.gz
file_5.10-1.dsc
  to main/f/file/file_5.10-1.dsc
file_5.10-1_i386.deb
  to main/f/file/file_5.10-1_i386.deb
file_5.10.orig.tar.gz
  to main/f/file/file_5.10.orig.tar.gz
libmagic-dev_5.10-1_i386.deb
  to main/f/file/libmagic-dev_5.10-1_i386.deb
libmagic1_5.10-1_i386.deb
  to main/f/file/libmagic1_5.10-1_i386.deb
python-magic-dbg_5.10-1_i386.deb
  to main/f/file/python-magic-dbg_5.10-1_i386.deb
python-magic_5.10-1_i386.deb
  to main/f/file/python-magic_5.10-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
Archive: http://lists.debian.org/e1rumne-qn...@franck.debian.org



Accepted ldb 1:1.1.4+git20120206-1 (source amd64)

2012-02-07 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 16:04:26 +0100
Source: ldb
Binary: libldb1 libldb1-dbg ldb-tools libldb-dev python-ldb python-ldb-dev 
python-ldb-dbg
Architecture: source amd64
Version: 1:1.1.4+git20120206-1
Distribution: unstable
Urgency: low
Maintainer: Jelmer Vernooij jel...@debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 ldb-tools  - LDAP-like embedded database - tools
 libldb-dev - LDAP-like embedded database - development files
 libldb1- LDAP-like embedded database - shared library
 libldb1-dbg - LDAP-like embedded database - debug symbols
 python-ldb - Python bindings for LDB
 python-ldb-dbg - Python bindings for LDB - debug extension
 python-ldb-dev - LDB python bindings - development files
Closes: 654482
Changes: 
 ldb (1:1.1.4+git20120206-1) unstable; urgency=low
 .
   * New upstream snapshot.
+ Extracts waf source code. Closes: #654482
+ Disable tdb2 support.
Checksums-Sha1: 
 4a9fc306139d4b06f4e331c3f4ca10727f355a84 1728 ldb_1.1.4+git20120206-1.dsc
 4c3c6b63654b81ecd7dc098727bcd6e18ad08cfb 1471374 
ldb_1.1.4+git20120206.orig.tar.gz
 dc3957447c181255fe080049be93cbf6e5b9ec1f 11762 
ldb_1.1.4+git20120206-1.debian.tar.gz
 25cc266836de00b9c3daa60ddb4e8db161be2846 142554 
libldb1_1.1.4+git20120206-1_amd64.deb
 e0ac1a6b3d8a8d41ae7eac93f84beddc2c58a63c 240716 
libldb1-dbg_1.1.4+git20120206-1_amd64.deb
 8955429bd1ae2f6a1b875b6d0cd6c93a42b2aae9 38502 
ldb-tools_1.1.4+git20120206-1_amd64.deb
 fb3ec172e4217c722d28dc1387e40d10d2e541b9 277166 
libldb-dev_1.1.4+git20120206-1_amd64.deb
 6a590c5c0ab219d4d20af4e75410e2b39b800d8c 35936 
python-ldb_1.1.4+git20120206-1_amd64.deb
 b9d91f8c447a0c8a353d607fa94c586ae142a689 7806 
python-ldb-dev_1.1.4+git20120206-1_amd64.deb
 043ca9419dd4d1e16a5f0b02e559509a0ab0ee5e 51038 
python-ldb-dbg_1.1.4+git20120206-1_amd64.deb
Checksums-Sha256: 
 df1bccaf664852f2ff4f3b6e6e1d222c1976d714fb76ef03a35558bb6da58f40 1728 
ldb_1.1.4+git20120206-1.dsc
 990b2eb1c2c9e09d8313ac2ed87945a15168df79bde4eb44565b524b998b1f1d 1471374 
ldb_1.1.4+git20120206.orig.tar.gz
 e2d7f265a96b65de001dee9378d51f90124aaa1f1becde2146be1e71796343f9 11762 
ldb_1.1.4+git20120206-1.debian.tar.gz
 c2588810957fe0b342c362a765bee15fb09e30976229b27d9d90d55a4d6ce4ba 142554 
libldb1_1.1.4+git20120206-1_amd64.deb
 48cb31cce0ffe0f773e27694beed393a847a928817c12c9fd43d975b2b521eec 240716 
libldb1-dbg_1.1.4+git20120206-1_amd64.deb
 b4f5bff73fb850b7231ace2c59720418636f67311c15a2bc2249642a07671896 38502 
ldb-tools_1.1.4+git20120206-1_amd64.deb
 8df22b02f4bdcd594ea83fa08f0c38f35ed4a1fa9e06c47fa7bec7e4c403ca1c 277166 
libldb-dev_1.1.4+git20120206-1_amd64.deb
 fd388fc0d6d2d8ad5b912444155b536f15703b595dca3337494e4495da35dbb6 35936 
python-ldb_1.1.4+git20120206-1_amd64.deb
 39d0fab4543e4ea94c7aac6a55ba499e904cbd79618a5898d2aacbf85e30ec39 7806 
python-ldb-dev_1.1.4+git20120206-1_amd64.deb
 48fd7655e94a5c037cac7c93f587d2a765fa51aaa68319bc974fb4562fd00a01 51038 
python-ldb-dbg_1.1.4+git20120206-1_amd64.deb
Files: 
 0d18245aad28106f5c316c63859e6bd4 1728 devel optional 
ldb_1.1.4+git20120206-1.dsc
 f52bdbb8ab60a926ef42d912d7869ffe 1471374 devel optional 
ldb_1.1.4+git20120206.orig.tar.gz
 9bd61f4151867d71cf8ed7a4baaec0dc 11762 devel optional 
ldb_1.1.4+git20120206-1.debian.tar.gz
 dfb30c7db7b135141c46d9572d2bfc68 142554 libs optional 
libldb1_1.1.4+git20120206-1_amd64.deb
 b24725a61082264674cd82bb4dc03c01 240716 debug extra 
libldb1-dbg_1.1.4+git20120206-1_amd64.deb
 e8bc2d603a1d613a4705ea3a565ae19d 38502 utils optional 
ldb-tools_1.1.4+git20120206-1_amd64.deb
 34ae0fdeef81b772cde9dbf0c3708100 277166 libdevel optional 
libldb-dev_1.1.4+git20120206-1_amd64.deb
 eb581e220086471a5ffd90dc6ffc7132 35936 python optional 
python-ldb_1.1.4+git20120206-1_amd64.deb
 a8bfede4f68c780b29a2c56d7967a925 7806 libdevel optional 
python-ldb-dev_1.1.4+git20120206-1_amd64.deb
 1768c345cd9d57197ecfaa78319fc892 51038 debug extra 
python-ldb-dbg_1.1.4+git20120206-1_amd64.deb

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

iEYEARECAAYFAk8xPvAACgkQPa9Uoh7vUnbw6wCcD3RMvu+1YovZoJgn+kH8/p+I
mccAn1fLADCCTHaeciLYZoQWjw7CZbze
=fkNV
-END PGP SIGNATURE-


Accepted:
ldb-tools_1.1.4+git20120206-1_amd64.deb
  to main/l/ldb/ldb-tools_1.1.4+git20120206-1_amd64.deb
ldb_1.1.4+git20120206-1.debian.tar.gz
  to main/l/ldb/ldb_1.1.4+git20120206-1.debian.tar.gz
ldb_1.1.4+git20120206-1.dsc
  to main/l/ldb/ldb_1.1.4+git20120206-1.dsc
ldb_1.1.4+git20120206.orig.tar.gz
  to main/l/ldb/ldb_1.1.4+git20120206.orig.tar.gz
libldb-dev_1.1.4+git20120206-1_amd64.deb
  to main/l/ldb/libldb-dev_1.1.4+git20120206-1_amd64.deb
libldb1-dbg_1.1.4+git20120206-1_amd64.deb
  to main/l/ldb/libldb1-dbg_1.1.4+git20120206-1_amd64.deb
libldb1_1.1.4+git20120206-1_amd64.deb
  to main/l/ldb/libldb1_1.1.4+git20120206-1_amd64.deb
python-ldb-dbg_1.1.4+git20120206-1_amd64.deb
  to main/l/ldb/python-ldb-dbg_1.1.4+git20120206-1_amd64.deb
python-ldb-dev_1.1.4+git20120206-1_amd64.deb
  to 

Accepted pari 2.5.1-1 (source all amd64)

2012-02-07 Thread Bill Allombert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 23:00:43 +0100
Source: pari
Binary: pari-gp libpari-dev libpari-dbg libpari-gmp3 pari-doc
Architecture: source amd64 all
Version: 2.5.1-1
Distribution: unstable
Urgency: low
Maintainer: Bill Allombert ballo...@debian.org
Changed-By: Bill Allombert ballo...@debian.org
Description: 
 libpari-dbg - PARI/GP Computer Algebra System debugging symbols
 libpari-dev - PARI/GP Computer Algebra System development files
 libpari-gmp3 - PARI/GP Computer Algebra System shared library
 pari-doc   - PARI/GP Computer Algebra System documentation
 pari-gp- PARI/GP Computer Algebra System binaries
Changes: 
 pari (2.5.1-1) unstable; urgency=low
 .
   * New upstream release. This release
 - Fix multiarch support: Patch fix_multiarch_support removed.
   This also takes care of the missing GMP version in the banner.
   * debian/rules:
- Fix detection of powerpc ABI.
- Generate pari.cfg.dbg and add it to libpari-dev (Useful for gp2c-dbg).
   * New patch:
 - tex2mail-Getopt-Long: change tex2mail to use Getopt::Long instead of
   perl4 module.
   * debian/control:
 - No more Build-Depends on libncurses5-dev
Checksums-Sha1: 
 47e540d3fe14aca578a6c6148d533da4cf5f481b 1291 pari_2.5.1-1.dsc
 c83314bb993161a60e1e46ae7616072858414354 2718726 pari_2.5.1.orig.tar.gz
 e22546b40a27cbdc5d08dcb25d63c1eb79947dd2 12307 pari_2.5.1-1.debian.tar.gz
 411c50d7a8f351e8c5e84a5d88d1d8fdab89c1f8 178600 pari-gp_2.5.1-1_amd64.deb
 310ee440fed290c769f85d8354538738d99a2e2d 2632560 libpari-dev_2.5.1-1_amd64.deb
 a51597481207e7067e9aee5a8c61fb7c5564da36 4514054 libpari-dbg_2.5.1-1_amd64.deb
 e4627c8815b8fb3b46d9cdda4b3d504e4af418c1 2018596 libpari-gmp3_2.5.1-1_amd64.deb
 559f6b8aa2aebd36d2cfc326b312d7a098e54079 4452266 pari-doc_2.5.1-1_all.deb
Checksums-Sha256: 
 1279b1a21887ad09cbfb4400077a78f6baa29773521e747f3e33420fb1b13431 1291 
pari_2.5.1-1.dsc
 72c1828af50878acf5f09b553e45ac04b24400e095d16e6948a06947538a8f4f 2718726 
pari_2.5.1.orig.tar.gz
 303d6c480dfb022307b35d83b9e805d23b489aeba1acc7101adbf0f5f7b24354 12307 
pari_2.5.1-1.debian.tar.gz
 c744c199ad4f71c8b2307a2f1b44c5d92f2fe981680c9753c887713f60b92f56 178600 
pari-gp_2.5.1-1_amd64.deb
 6f759512ad75ae5960be5281d7c8261ac0220ab060b57178fefce1fce11ce27d 2632560 
libpari-dev_2.5.1-1_amd64.deb
 3a6a3ac09e45139df41c227b1b900fff2083de0cc6919023ecd9ed60fe826c7c 4514054 
libpari-dbg_2.5.1-1_amd64.deb
 7c15e1c751e171a840420da439fdaa78b11d81bf97de2f9b3803fb1ffe2b1a42 2018596 
libpari-gmp3_2.5.1-1_amd64.deb
 1dd8e143d21dc6835573d2a352c4f1c3e4d11af36df6a302124e0eb4b45093e8 4452266 
pari-doc_2.5.1-1_all.deb
Files: 
 8fec8b65fac339845c63a6c2c89ff72d 1291 math optional pari_2.5.1-1.dsc
 d267dd1be4839f209217c8fff615478e 2718726 math optional pari_2.5.1.orig.tar.gz
 9c0bd11d998c017d7bdbe5edc41f82b7 12307 math optional pari_2.5.1-1.debian.tar.gz
 a0821f8c4a2689802dcfa12a909d4530 178600 math optional pari-gp_2.5.1-1_amd64.deb
 a40c1dbc4b7759cc770990fecd3b77f0 2632560 libdevel optional 
libpari-dev_2.5.1-1_amd64.deb
 7312a412af776f8528f1c4f97623aa9f 4514054 debug extra 
libpari-dbg_2.5.1-1_amd64.deb
 b8d0cbd8e3ab4131abc6ea83f5ee48a5 2018596 libs optional 
libpari-gmp3_2.5.1-1_amd64.deb
 7cde0ab209141dac26f74ecff35a6a72 4452266 doc optional pari-doc_2.5.1-1_all.deb

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

iEYEARECAAYFAk8xKEEACgkQeDPs8bVESBUKFACfVSExuC2bnhS2OjnkqlixuhLH
c+QAnR/w1wDaHaunilV9l/vsAMDt2cvE
=pls+
-END PGP SIGNATURE-


Accepted:
libpari-dbg_2.5.1-1_amd64.deb
  to main/p/pari/libpari-dbg_2.5.1-1_amd64.deb
libpari-dev_2.5.1-1_amd64.deb
  to main/p/pari/libpari-dev_2.5.1-1_amd64.deb
libpari-gmp3_2.5.1-1_amd64.deb
  to main/p/pari/libpari-gmp3_2.5.1-1_amd64.deb
pari-doc_2.5.1-1_all.deb
  to main/p/pari/pari-doc_2.5.1-1_all.deb
pari-gp_2.5.1-1_amd64.deb
  to main/p/pari/pari-gp_2.5.1-1_amd64.deb
pari_2.5.1-1.debian.tar.gz
  to main/p/pari/pari_2.5.1-1.debian.tar.gz
pari_2.5.1-1.dsc
  to main/p/pari/pari_2.5.1-1.dsc
pari_2.5.1.orig.tar.gz
  to main/p/pari/pari_2.5.1.orig.tar.gz


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1rumrn-0001dk...@franck.debian.org



Accepted ipxe 1.0.0+git-20120202.f6840ba-3 (source all)

2012-02-07 Thread Bastian Blank
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 16:09:43 +0100
Source: ipxe
Binary: ipxe ipxe-qemu
Architecture: source all
Version: 1.0.0+git-20120202.f6840ba-3
Distribution: unstable
Urgency: low
Maintainer: Bastian Blank wa...@debian.org
Changed-By: Bastian Blank wa...@debian.org
Description: 
 ipxe   - PXE boot firmware
 ipxe-qemu  - PXE boot firmware - ROM images for qemu
Closes: 658684 658982
Changes: 
 ipxe (1.0.0+git-20120202.f6840ba-3) unstable; urgency=low
 .
   * Fix to break qemu-system instead of qemu. (closes: #658982)
   * Make ipxe-qemu break and replace ipxe. (closes: #658684)
   * Add link for ipxe.lkrn, so all images can be found in one location.
Checksums-Sha1: 
 b9998c10300846937ca97cbe78948a5fbda4e429 1230 
ipxe_1.0.0+git-20120202.f6840ba-3.dsc
 21eabb26ca16924f29ee1360ecbcd2cec66f38f7 7328 
ipxe_1.0.0+git-20120202.f6840ba-3.debian.tar.gz
 67e041449042e3dff0b36f8a2fcbe2bc4dc2c1cf 1149236 
ipxe_1.0.0+git-20120202.f6840ba-3_all.deb
 bc80e87fa0bf0be322d32257f3df696f3fd6ad46 390872 
ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all.deb
Checksums-Sha256: 
 5e6479c0f5527bb6dbd3fdca6df32f85b326cf4ec0e840a7e016ddb686c35649 1230 
ipxe_1.0.0+git-20120202.f6840ba-3.dsc
 2effc46b211fd8f6272020cd018649e0d4c3535d0a407262c6d42778dc81bb84 7328 
ipxe_1.0.0+git-20120202.f6840ba-3.debian.tar.gz
 38628578301ee039d36656ef7fb4c4e2133647fcbe8f41f1d1b405977e750362 1149236 
ipxe_1.0.0+git-20120202.f6840ba-3_all.deb
 e99b959b565e3a4684161600d88fff50eae18c9ecaf9725dfeb71a5c9187e152 390872 
ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all.deb
Files: 
 c26db60f598d76b63d42872483e1c160 1230 admin optional 
ipxe_1.0.0+git-20120202.f6840ba-3.dsc
 a80b1010055b91fa4646d67366477fa0 7328 admin optional 
ipxe_1.0.0+git-20120202.f6840ba-3.debian.tar.gz
 23fa39c404270229b767a92a67147fdb 1149236 admin optional 
ipxe_1.0.0+git-20120202.f6840ba-3_all.deb
 8c031f4f209b70f11043ccdf74b8b03d 390872 admin optional 
ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all.deb

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

iEYEARECAAYFAk8xQDMACgkQLkAIIn9ODhGA5gCfRP4rGwlJ5PQCKH9g2Lv8QOy9
jvMAoNQvrJKOLRG/Ud/UbcFHsiZTq5bk
=M5Sv
-END PGP SIGNATURE-


Accepted:
ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all.deb
  to main/i/ipxe/ipxe-qemu_1.0.0+git-20120202.f6840ba-3_all.deb
ipxe_1.0.0+git-20120202.f6840ba-3.debian.tar.gz
  to main/i/ipxe/ipxe_1.0.0+git-20120202.f6840ba-3.debian.tar.gz
ipxe_1.0.0+git-20120202.f6840ba-3.dsc
  to main/i/ipxe/ipxe_1.0.0+git-20120202.f6840ba-3.dsc
ipxe_1.0.0+git-20120202.f6840ba-3_all.deb
  to main/i/ipxe/ipxe_1.0.0+git-20120202.f6840ba-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
Archive: http://lists.debian.org/e1run3g-0003uu...@franck.debian.org



Accepted lftp 4.3.5-1 (source amd64)

2012-02-07 Thread Noël Köthe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 17:16:57 +0100
Source: lftp
Binary: lftp
Architecture: source amd64
Version: 4.3.5-1
Distribution: unstable
Urgency: low
Maintainer: Noël Köthe n...@debian.org
Changed-By: Noël Köthe n...@debian.org
Description: 
 lftp   - Sophisticated command-line FTP/HTTP client programs
Changes: 
 lftp (4.3.5-1) unstable; urgency=low
 .
   * new upstream release from 2012-01-24
Checksums-Sha1: 
 e1524d8eebe14f36f08c250b4452943895738635 1114 lftp_4.3.5-1.dsc
 8c07b1c8d9836b915e7ecc780c3115daf4af6f41 2431974 lftp_4.3.5.orig.tar.gz
 4f29e53303ce902fabb94af0d47b4da91e3bac75 13171 lftp_4.3.5-1.debian.tar.gz
 9aec9c7acc52cb2af69eddc7ef5d11a4d7885cdf 709976 lftp_4.3.5-1_amd64.deb
Checksums-Sha256: 
 e32c1784d052e66a32cfa88b416436e20f9621c9ed57ac02c2f4e9b70e222435 1114 
lftp_4.3.5-1.dsc
 34bccb0977ec16ca18b9988a466627fbe6b6521109af0a67e34b60f31fcd3246 2431974 
lftp_4.3.5.orig.tar.gz
 3d12d34d7a028eb5828b37d86ea0bc5486d630ed0a429626ad39bc85717097d7 13171 
lftp_4.3.5-1.debian.tar.gz
 95cd9f6931144fab66a5cf1608518b879f13617b05cdcbd966fefd2652b8f12a 709976 
lftp_4.3.5-1_amd64.deb
Files: 
 202275093541c7129e4e827218afe41c 1114 net optional lftp_4.3.5-1.dsc
 32d1ae606ee893949aa225ae23876e56 2431974 net optional lftp_4.3.5.orig.tar.gz
 c311403fe25ed928a25daee9f94267e9 13171 net optional lftp_4.3.5-1.debian.tar.gz
 c7f685c31f853babc10174e1e925b6ee 709976 net optional lftp_4.3.5-1_amd64.deb

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

iEYEARECAAYFAk8xQcQACgkQ9/DnDzB9Vu3d4QCeIuLTcIU0nVVHhonKlN8Iwaw+
DKkAnjAU5h+WLXrfa9GwX8hzmwsLe5Uj
=HVGK
-END PGP SIGNATURE-


Accepted:
lftp_4.3.5-1.debian.tar.gz
  to main/l/lftp/lftp_4.3.5-1.debian.tar.gz
lftp_4.3.5-1.dsc
  to main/l/lftp/lftp_4.3.5-1.dsc
lftp_4.3.5-1_amd64.deb
  to main/l/lftp/lftp_4.3.5-1_amd64.deb
lftp_4.3.5.orig.tar.gz
  to main/l/lftp/lftp_4.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
Archive: http://lists.debian.org/e1run3y-0003ww...@franck.debian.org



Accepted libgpepimc 0.9-3 (source amd64)

2012-02-07 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 15:25:22 +
Source: libgpepimc
Binary: libgpepimc-dev libgpepimc0 libgpepimc0-dbg
Architecture: source amd64
Version: 0.9-3
Distribution: unstable
Urgency: low
Maintainer: Moray Allan mo...@debian.org
Changed-By: Neil Williams codeh...@debian.org
Description: 
 libgpepimc-dev - category management for GPE applications [development]
 libgpepimc0 - category management for GPE applications [runtime]
 libgpepimc0-dbg - category management for GPE applications [debugging]
Changes: 
 libgpepimc (0.9-3) unstable; urgency=low
 .
   * Add to pkg-gpe SVN
   * Migrate to MultiArch paths
   * Fix section for debug package.
   * Drop unnecessary build-dep on libdisplaymigration
Checksums-Sha1: 
 bdae8ffc7b87d8f2b5dfc8ae099e7cca6002e31a 1579 libgpepimc_0.9-3.dsc
 f5b8fff529935509391177af52162497a196a9bb 2497 libgpepimc_0.9-3.debian.tar.gz
 deefb64b7a7fdc756bcce73c53b7b4ff3a7757d8 22642 libgpepimc-dev_0.9-3_amd64.deb
 fa9e4c9fb89fdd3af22a4c50d135484aa383 16194 libgpepimc0_0.9-3_amd64.deb
 a718ef3c988ce629595ec9cde221a6212c12f358 25406 libgpepimc0-dbg_0.9-3_amd64.deb
Checksums-Sha256: 
 884bb31b8e8808b48a1ac163d864badc93dfcbdb012896630cd445d5c271e29d 1579 
libgpepimc_0.9-3.dsc
 6fc130218f2dcca02f0843d5c7de57914220163a404fa12cdce10be7ebd8 2497 
libgpepimc_0.9-3.debian.tar.gz
 3deb39ca0e96ebc445de6da5a868c3a162515426327c172daa2c0f23590dcf09 22642 
libgpepimc-dev_0.9-3_amd64.deb
 7fd1a0ebd7148c3a00a9392f69034824afce0c3799bcf640e9a12aa4f8f2becb 16194 
libgpepimc0_0.9-3_amd64.deb
 3959fa10f94eaa5ac1197bbd56677687b3110ce4dd8d9aca4580f2e941a5b1ba 25406 
libgpepimc0-dbg_0.9-3_amd64.deb
Files: 
 3334e26c2eaad3162123cb2bbbc634ee 1579 libs - libgpepimc_0.9-3.dsc
 9cc0f6e34fbd288ad2bfc5c50ad1a976 2497 libs - libgpepimc_0.9-3.debian.tar.gz
 3df2eee47b721e5d03d074bca21a0567 22642 libdevel optional 
libgpepimc-dev_0.9-3_amd64.deb
 ba82377e6cb04612f8de7f6b27ae773e 16194 libs optional 
libgpepimc0_0.9-3_amd64.deb
 8173170f56a68a907c0e09736c291d81 25406 debug extra 
libgpepimc0-dbg_0.9-3_amd64.deb

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

iEYEARECAAYFAk8xRHsACgkQiAEJSii8s+PkyQCgutko7rOoLUNUmdTMJ5kR8HvL
s4oAn2R0wqq7moQwO7VMTUyXcywZvuy8
=+R0u
-END PGP SIGNATURE-


Accepted:
libgpepimc-dev_0.9-3_amd64.deb
  to main/libg/libgpepimc/libgpepimc-dev_0.9-3_amd64.deb
libgpepimc0-dbg_0.9-3_amd64.deb
  to main/libg/libgpepimc/libgpepimc0-dbg_0.9-3_amd64.deb
libgpepimc0_0.9-3_amd64.deb
  to main/libg/libgpepimc/libgpepimc0_0.9-3_amd64.deb
libgpepimc_0.9-3.debian.tar.gz
  to main/libg/libgpepimc/libgpepimc_0.9-3.debian.tar.gz
libgpepimc_0.9-3.dsc
  to main/libg/libgpepimc/libgpepimc_0.9-3.dsc


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1runjh-0005x5...@franck.debian.org



Accepted openchange 1:0.11.dfsg1-1 (source amd64)

2012-02-07 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 16:21:04 +0100
Source: openchange
Binary: libmapi0 libmapi-dev libmapipp-dev libmapipp0 libocpf0 libocpf-dev 
openchangeclient openchangeserver openchangeserver-dev openchangeproxy 
libmapiadmin0 libmapiadmin-dev libmapiproxy0 libmapiproxy-dev libmapistore0 
libmapistore-dev
Architecture: source amd64
Version: 1:0.11.dfsg1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Samba Maintainers pkg-samba-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 libmapi-dev - Development files for the MAPI client library
 libmapi0   - Client library for the MAPI protocol
 libmapiadmin-dev - Development files for the MAPI administration client library
 libmapiadmin0 - Administration client library for the MAPI (Exchange/Outlook) 
pro
 libmapipp-dev - Development files for the C++ MAPI client library
 libmapipp0 - Library files for the C++ MAPI client library
 libmapiproxy-dev - Development files for the MAPI proxy library
 libmapiproxy0 - Proxy library for the MAPI (Exchange/Outlook) protocol
 libmapistore-dev - Storage library for MAPI objects - development files
 libmapistore0 - Storage library for MAPI objects
 libocpf-dev - Development files for the OCPF library
 libocpf0   - Scripting library for the MAPI protocol
 openchangeclient - Command-line client for the MAPI (Exchange/Outlook) protocol
 openchangeproxy - Experimental MAPI (Exchange/Outlook) proxy
 openchangeserver - Experimental MAPI (Exchange/Outlook) server
 openchangeserver-dev - Experimental MAPI (Exchange/Outlook) server - 
development files
Closes: 654494
Changes: 
 openchange (1:0.11.dfsg1-1) unstable; urgency=low
 .
   * Repack orig tarball to exclude waf. Closes: #654494
Checksums-Sha1: 
 d6fb92813effd3551149d33645c29eabf3c99957 2610 openchange_0.11.dfsg1-1.dsc
 4b8a481f498b8dd74a9930ad6662614cca97563e 1838016 
openchange_0.11.dfsg1.orig.tar.gz
 9a247fe59d0e593ada56403a8ccce7bad761131d 6395 
openchange_0.11.dfsg1-1.debian.tar.gz
 aa24a004d549c4fca7b7f1a1cd02db8024be2c16 486862 libmapi0_0.11.dfsg1-1_amd64.deb
 a63fe3642ad1bed6039d7d2636447c9d3f700863 214932 
libmapi-dev_0.11.dfsg1-1_amd64.deb
 c765cd3d8e27c9cca50f02cd4ec08d393f4a82f5 35230 
libmapipp-dev_0.11.dfsg1-1_amd64.deb
 0d342ffb14ec0b1412c77578b5a362c4257c9036 48002 
libmapipp0_0.11.dfsg1-1_amd64.deb
 943547958fb9b486bb5c40169778f1841f6e3252 64442 libocpf0_0.11.dfsg1-1_amd64.deb
 1dc131044804d8f6d1d1348e98be50d3026d2259 27372 
libocpf-dev_0.11.dfsg1-1_amd64.deb
 ecea08cf87040991100eacdaa075c96bd98b6063 217544 
openchangeclient_0.11.dfsg1-1_amd64.deb
 66f99edecece80395d78ee33037e08043ab89d2b 498762 
openchangeserver_0.11.dfsg1-1_amd64.deb
 f930b3c0180e5941d3ebf3e1ccda3fc3e68094dc 29218 
openchangeserver-dev_0.11.dfsg1-1_amd64.deb
 6b1a8ad3459f027f329350b82726d314e96f806e 834232 
openchangeproxy_0.11.dfsg1-1_amd64.deb
 20134b93d7921fb5b399a35d26dfad8cc6ef8216 35494 
libmapiadmin0_0.11.dfsg1-1_amd64.deb
 7dcc2e47e01d4b114199a3ae9236479d998dfbfa 27596 
libmapiadmin-dev_0.11.dfsg1-1_amd64.deb
 e4ff1ce64214501ef72c1368adce0f1d66964b2b 53934 
libmapiproxy0_0.11.dfsg1-1_amd64.deb
 bae30ea47c3728664d4cfcd365e4b5df226f9e01 28604 
libmapiproxy-dev_0.11.dfsg1-1_amd64.deb
 d52cc8dbebd48c7d9629e74d73a67615e60f9d54 115024 
libmapistore0_0.11.dfsg1-1_amd64.deb
 93b89255f386d14ae50b3d6b603177e8f8ca0b99 29764 
libmapistore-dev_0.11.dfsg1-1_amd64.deb
Checksums-Sha256: 
 76b5ed8b7a37c5a9bfe435165fea28587fc115eb8d34ddb4b639a242b7c2ca19 2610 
openchange_0.11.dfsg1-1.dsc
 c84c17d95d149eb189ea8cdfa3419d8aa5882a0b7e3c9e3877ebd81ea18f6b48 1838016 
openchange_0.11.dfsg1.orig.tar.gz
 f6d730d0418125a9f2d900b3b14b58661b0c83d64d49c9b826db05c30b1b6ed2 6395 
openchange_0.11.dfsg1-1.debian.tar.gz
 07e9824685c2c7924d5b63ce97cbb0226f536acd1c4da49081142cbc1f216d85 486862 
libmapi0_0.11.dfsg1-1_amd64.deb
 0746ca1d7d22797189d205f4d48585c9c99321cb37bf6fc987317dd49fea09fb 214932 
libmapi-dev_0.11.dfsg1-1_amd64.deb
 4075d7365af5e48d0027e52c43e3994470b8c551eb3975479f38ab8f8d8ff0cb 35230 
libmapipp-dev_0.11.dfsg1-1_amd64.deb
 5aadc8075ec37ba078f1fd7894f329044cbbd0361f5162c80553f49d1a66324b 48002 
libmapipp0_0.11.dfsg1-1_amd64.deb
 36eab68a44713dd06bca1c2824a92f09b99646d0ba87f307bf883de3d9982d85 64442 
libocpf0_0.11.dfsg1-1_amd64.deb
 03eafa24df020a8012c4c3e512ba68cb1e81eb2b642fb0c631dc523875372d6c 27372 
libocpf-dev_0.11.dfsg1-1_amd64.deb
 5353bc0b07938e185c5cd12a51c2bb6c8ff862b2b58a9e427bfba2986fd14479 217544 
openchangeclient_0.11.dfsg1-1_amd64.deb
 67c01af9d6d8a0c74f4a975d6318236a609b7318a7fe4faa0a9578b0697840fb 498762 
openchangeserver_0.11.dfsg1-1_amd64.deb
 2e7a67b21526477aec4a28c597c106668d8ec63159016ce0cb4ebe824da25aff 29218 
openchangeserver-dev_0.11.dfsg1-1_amd64.deb
 3ec809c5c15cf589eaeafca60aa368c26d4bd19c8997cbb4bf0deb4f520cd1bc 834232 
openchangeproxy_0.11.dfsg1-1_amd64.deb
 335a2d5e4b747fc1c34151a07633bacc96d67db3d75a6b9bee5be0ebfb8cd8a9 35494 
libmapiadmin0_0.11.dfsg1-1_amd64.deb
 

Accepted ruby-compass 0.11.7~dfsg-1 (source all)

2012-02-07 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Feb 2012 16:30:15 +0100
Source: ruby-compass
Binary: ruby-compass
Architecture: source all
Version: 0.11.7~dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Micah Anderson mi...@debian.org
Changed-By: Jonas Smedegaard d...@jones.dk
Description: 
 ruby-compass - Stylesheet Framework streamlining creation and maintainance of 
CS
Changes: 
 ruby-compass (0.11.7~dfsg-1) unstable; urgency=low
 .
   * New upstream release.
   * Drop dpkg-source local-options: Defaults since dpkg-source 1.16.1.
Checksums-Sha1: 
 2769f6fbc2cd4df5641a4751b4f05a52e80bb73f 2187 ruby-compass_0.11.7~dfsg-1.dsc
 caed0c14060a1ad37ec783fa56247feca9924732 1751928 
ruby-compass_0.11.7~dfsg.orig.tar.gz
 e50bb6068e70ca046a915b3f0a4cddd19c17d6ea 26230 
ruby-compass_0.11.7~dfsg-1.debian.tar.gz
 a939f3694f9748ff244287006577136a6700af9f 866076 
ruby-compass_0.11.7~dfsg-1_all.deb
Checksums-Sha256: 
 babc6bf558e674a0684ccde078dde2a2cb0466291de7b95acd6b181e0361f4f2 2187 
ruby-compass_0.11.7~dfsg-1.dsc
 2e2be5021466101a755f555a1b0cc7348dd6a7dbf3573b42da774c460400d256 1751928 
ruby-compass_0.11.7~dfsg.orig.tar.gz
 265c378a97590f8635ecb0b1fc9237cfcd9fbba172a924ea44ad3818f3341fe5 26230 
ruby-compass_0.11.7~dfsg-1.debian.tar.gz
 dbaf2bebf9b3ff2f442c960d6a62e4fc6e0193047790d4835288bc221faf75fd 866076 
ruby-compass_0.11.7~dfsg-1_all.deb
Files: 
 8db982f797b1ccfe384b9cf989c93b1b 2187 ruby optional 
ruby-compass_0.11.7~dfsg-1.dsc
 36abf7d892890bf4f374c0f96b8ea492 1751928 ruby optional 
ruby-compass_0.11.7~dfsg.orig.tar.gz
 276cd8988bf9907e0e516026b2d88b25 26230 ruby optional 
ruby-compass_0.11.7~dfsg-1.debian.tar.gz
 6ffa4d2e9c42be9217676a69803c07c0 866076 ruby optional 
ruby-compass_0.11.7~dfsg-1_all.deb

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

iQIcBAEBCgAGBQJPMUSlAAoJECx8MUbBoAEh3EQP/jYCs4Lrp4jYuVI5ljYqXQ0a
NQod2Q7RmutCIbEyHcNb33qq0djKKAx9tkf+8pXSZTTyuQ/jMyXb8/eRDUJEa0vB
Q9wRFYDazEElFmnB9bqHbfqEQphnahCnIYbGg2NoZIa3U0t2v1OXyxiaiagtCYEU
hSEpTskE+XH8EZizKGOwXHGa56NYdYW/9zlzqfarlfJI2whtBv58P+vfDJCWZ8Na
yXEXUEBcWde1oLtD9/mOdm43DQMCQIryrB/OQ0760ULRA0beWcHwYq7uOGfShOa/
7qnYMuGyxOfJ8WLw9TvyI0gwKnx3cyNKIFy+5Kcp9xdWbQOyIj1zWgHQw2AYbju1
Q/M4nAGOCTcZ6THGU3Ks+9GJw359a3V7HdVBfJxUxm6SfhKBCR2ZvE2KIzTJHqwo
5QtIc/OXSH7DFQvs6cUVp2FRxcuiR0xAoRXZ9hXb2y4d83kP0Brz/iiQ0SWqZAJM
mmRoYXkJqfw2mPv5aI42jID0uc51lliN13lSw+fxyCXGmxoLqI9Q4iddMvd5sjTZ
yv4SyGTdxKFJA4s8Ofp4O568UWcsIvikDURD1eXUCgc34hFG87aWgYnEKnDsJjyW
P7Gx2fIG3oeVxEBh0SAZg+UPLXTAhdupdba9f+AWKFLH/RxwzRZ3Oe5i8zoYOtxj
bl08yvAbjfCSfXPMaw7N
=aoZL
-END PGP SIGNATURE-


Accepted:
ruby-compass_0.11.7~dfsg-1.debian.tar.gz
  to main/r/ruby-compass/ruby-compass_0.11.7~dfsg-1.debian.tar.gz
ruby-compass_0.11.7~dfsg-1.dsc
  to main/r/ruby-compass/ruby-compass_0.11.7~dfsg-1.dsc
ruby-compass_0.11.7~dfsg-1_all.deb
  to main/r/ruby-compass/ruby-compass_0.11.7~dfsg-1_all.deb
ruby-compass_0.11.7~dfsg.orig.tar.gz
  to main/r/ruby-compass/ruby-compass_0.11.7~dfsg.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
Archive: http://lists.debian.org/e1runl2-00066l...@franck.debian.org



Accepted squid3 3.1.19-1 (source all i386)

2012-02-07 Thread Luigi Gangitano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 16:19:12 +0100
Source: squid3
Binary: squid3 squid3-dbg squid3-common squidclient squid-cgi
Architecture: source all i386
Version: 3.1.19-1
Distribution: unstable
Urgency: low
Maintainer: Luigi Gangitano lu...@debian.org
Changed-By: Luigi Gangitano lu...@debian.org
Description: 
 squid-cgi  - Full featured Web Proxy cache (HTTP proxy) - control CGI
 squid3 - Full featured Web Proxy cache (HTTP proxy)
 squid3-common - Full featured Web Proxy cache (HTTP proxy) - common files
 squid3-dbg - Full featured Web Proxy cache (HTTP proxy) - Debug symbols
 squidclient - Full featured Web Proxy cache (HTTP proxy) - control utility
Closes: 654877
Changes: 
 squid3 (3.1.19-1) unstable; urgency=low
 .
   * New upstream release
 - Removed patch integrated upstream
   + 19-adaptation-compile
 .
   * debian/rules
 - Enabled WCCPv2 support (Closes: #654877)
Checksums-Sha1: 
 f540077cc3a0efb8090f3473b2da08adf2f3c040 1402 squid3_3.1.19-1.dsc
 688e47e755c018397d279e30ca215a28e1b535ef 3403110 squid3_3.1.19.orig.tar.gz
 c66836b1b3e639d0a9947dad145d797c2f6d83bd 19341 squid3_3.1.19-1.debian.tar.gz
 517aaddbe0d11d4dcbcb7b79d3c2738b1a0adc36 201238 squid3-common_3.1.19-1_all.deb
 ba0faf8c113e967b93bfef9e67b624d4687d94e7 1547316 squid3_3.1.19-1_i386.deb
 7cdba73fc3d7f02a3da2263eb05dc42777aedd30 5439148 squid3-dbg_3.1.19-1_i386.deb
 ead11abff50b45870978ad65b6e115fcdc936d73 119022 squidclient_3.1.19-1_i386.deb
 80eba2c482e2c5dc0c1754c9cb8f3299fc6f94fa 121160 squid-cgi_3.1.19-1_i386.deb
Checksums-Sha256: 
 c425e52abb140251aea8a7a290c4dad3f06d6c286af06f58bf007dd33383d256 1402 
squid3_3.1.19-1.dsc
 1a2ebfd832364ada4793532dcc59fb79588ee3819cb80b77d8f53858f0166e34 3403110 
squid3_3.1.19.orig.tar.gz
 96c29b29a97366745377be38c7ee4f54065eb81dff0c311a5e9789f3407ddac6 19341 
squid3_3.1.19-1.debian.tar.gz
 27e607a6865980f70cec78af12657f32b7ee15f98148d7e8026dcca2abf51038 201238 
squid3-common_3.1.19-1_all.deb
 4915fdbb7d9c1f3e45dfacfbbdae657b9b47d9984952b51d46da67422850582e 1547316 
squid3_3.1.19-1_i386.deb
 b2ed19083f6bb1bc34c7c97b3679ff10e91d8edb299e7b15a237c8d1093b085c 5439148 
squid3-dbg_3.1.19-1_i386.deb
 82321df18efdcde42b0e90ea9a09ddef8ab4394665e92af8e2021a3fe545d5a2 119022 
squidclient_3.1.19-1_i386.deb
 18b43dcc80ee4fbafb2d8322d7220a30adf5372df4f77529403a13bf2ef2e2fd 121160 
squid-cgi_3.1.19-1_i386.deb
Files: 
 2d53a06b1e5bb4f5fa0d2f86475df541 1402 web optional squid3_3.1.19-1.dsc
 8a884983296d2cee7ac1c4a3179bece9 3403110 web optional squid3_3.1.19.orig.tar.gz
 fd48dd8294ccdf6dbb08a0cdd7724063 19341 web optional 
squid3_3.1.19-1.debian.tar.gz
 06357689288b9bef45753ec3625bd7e8 201238 web optional 
squid3-common_3.1.19-1_all.deb
 94a56ccb9d2f1130f41984571b30e31b 1547316 web optional squid3_3.1.19-1_i386.deb
 086fadd02f3be6b80f332b4ca3904d5d 5439148 debug extra 
squid3-dbg_3.1.19-1_i386.deb
 c8393e5114a2e4e066efc1d44bf5c16a 119022 web optional 
squidclient_3.1.19-1_i386.deb
 642e45afb340abb561bce068f9d311f7 121160 web optional 
squid-cgi_3.1.19-1_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (Darwin)

iEYEARECAAYFAk8xSQEACgkQ8ZumGJJMDCY76gCfRo7et8EsrEX3DHBYN0BjyV3v
PYwAmwV6kzGIo862rQAO1mXgFe46tH2I
=GnHZ
-END PGP SIGNATURE-


Accepted:
squid-cgi_3.1.19-1_i386.deb
  to main/s/squid3/squid-cgi_3.1.19-1_i386.deb
squid3-common_3.1.19-1_all.deb
  to main/s/squid3/squid3-common_3.1.19-1_all.deb
squid3-dbg_3.1.19-1_i386.deb
  to main/s/squid3/squid3-dbg_3.1.19-1_i386.deb
squid3_3.1.19-1.debian.tar.gz
  to main/s/squid3/squid3_3.1.19-1.debian.tar.gz
squid3_3.1.19-1.dsc
  to main/s/squid3/squid3_3.1.19-1.dsc
squid3_3.1.19-1_i386.deb
  to main/s/squid3/squid3_3.1.19-1_i386.deb
squid3_3.1.19.orig.tar.gz
  to main/s/squid3/squid3_3.1.19.orig.tar.gz
squidclient_3.1.19-1_i386.deb
  to main/s/squid3/squidclient_3.1.19-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
Archive: http://lists.debian.org/e1runxq-ru...@franck.debian.org



Accepted ruby-mocha 0.10.3-1 (source all)

2012-02-07 Thread Cédric Boutillier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 30 Jan 2012 14:43:32 +0100
Source: ruby-mocha
Binary: ruby-mocha libmocha-ruby libmocha-ruby1.8
Architecture: source all
Version: 0.10.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Cédric Boutillier cedric.boutill...@gmail.com
Description: 
 libmocha-ruby - Transitional package for ruby-mocha
 libmocha-ruby1.8 - Transitional package for ruby-mocha
 ruby-mocha - Mocking and stubbing library for Ruby
Changes: 
 ruby-mocha (0.10.3-1) unstable; urgency=low
 .
   * New upstream version
   * debian/control
 - add myself to the uploaders
 - add (build-)dependency on ruby-metaclass and rubygems
 - add build-dependency on ruby-introspection and ruby-minitest
 - set Priority of transitional packages to extra
   * debian/ruby-tests.rb:
 - remove unneeded $LOAD_PATH manipulation
 - ignore two test files with Ruby1.9 due to ruby-introspection misbehaving
   with Ruby1.9.3
   * debian/patches:
 - add_rubygems_requirement.patch: require rubygems/requirement in
   lib/mocha/integration/{test_unit,mini_test}.rb
 - remove_rubygems_stuff_in_minitest_test.patch: remove use of rubygems to
   load minitest and reorder require statements to avoid conflicts between
   minitest and test_unit
   * debian/require-rubygems.overrides:
 lib/mocha/integration/{test_unit,mini_test}.rb need rubygems/requirement
Checksums-Sha1: 
 a2b3d7064fbdaee848cedeb6bdc536ae6e94765e 1618 ruby-mocha_0.10.3-1.dsc
 2133df41ae60e3c24fcac5ba10681409e05f9752 69562 ruby-mocha_0.10.3.orig.tar.gz
 15e9c8eada5ff4186ef8a7607e0d44d57d4e5cf1 6657 ruby-mocha_0.10.3-1.debian.tar.gz
 b668aa040bff98ea8fe083e50559ba5455506360 32814 ruby-mocha_0.10.3-1_all.deb
 31391120ec41374d66441a70d5ec0dc4bbe57f2f 5170 libmocha-ruby_0.10.3-1_all.deb
 3c7893c750422e3418c18c84e8ceddfcc1e554e7 5170 libmocha-ruby1.8_0.10.3-1_all.deb
Checksums-Sha256: 
 fdba2f366dc9a6600c44721e2ae58119a4897c3950bf9b7e1a461ee1d1e69f43 1618 
ruby-mocha_0.10.3-1.dsc
 600c08167af54c09f994a2e4abf56cd708090dc63c7830dd0d31294d41293e5d 69562 
ruby-mocha_0.10.3.orig.tar.gz
 d50ce72037be6702affe56d661af9e3c1a8ede84a28e96a3d6deffcceba60696 6657 
ruby-mocha_0.10.3-1.debian.tar.gz
 1e97c2079e8fd710c27fe0a18b1a159fb8f39bfe69070ba2dfd66e4b5ec57760 32814 
ruby-mocha_0.10.3-1_all.deb
 97062ed97a39632934f91be94910084590978721df7442ac1ee47ea53f50f40a 5170 
libmocha-ruby_0.10.3-1_all.deb
 aa59389acf3fbaa3bfee3ecb6fe5bc2843f1070966e64191923aa79b7f1909cb 5170 
libmocha-ruby1.8_0.10.3-1_all.deb
Files: 
 f004cb4f4f8a393f638c6f0001902e4a 1618 ruby optional ruby-mocha_0.10.3-1.dsc
 92402164838e8b7acd71eec9dbc444d9 69562 ruby optional 
ruby-mocha_0.10.3.orig.tar.gz
 271b0e343ea6df6787d8632ade858ce0 6657 ruby optional 
ruby-mocha_0.10.3-1.debian.tar.gz
 0c261df3a52d47f9b679e0d4a5fa7353 32814 ruby optional 
ruby-mocha_0.10.3-1_all.deb
 02610bdcac00c8a1cb9b5d9e985e92c6 5170 oldlibs extra 
libmocha-ruby_0.10.3-1_all.deb
 fc3b3b6848e7185ae08895337e9cc07e 5170 oldlibs extra 
libmocha-ruby1.8_0.10.3-1_all.deb

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

iEYEARECAAYFAk8xTG8ACgkQDOM8kQ+cso8LzACdGC3mFvOzJW9A8MDioLEozs36
ty4An2evM+Bk7YN/Z9w73OCasEQ1b8Kd
=XzWI
-END PGP SIGNATURE-


Accepted:
libmocha-ruby1.8_0.10.3-1_all.deb
  to main/r/ruby-mocha/libmocha-ruby1.8_0.10.3-1_all.deb
libmocha-ruby_0.10.3-1_all.deb
  to main/r/ruby-mocha/libmocha-ruby_0.10.3-1_all.deb
ruby-mocha_0.10.3-1.debian.tar.gz
  to main/r/ruby-mocha/ruby-mocha_0.10.3-1.debian.tar.gz
ruby-mocha_0.10.3-1.dsc
  to main/r/ruby-mocha/ruby-mocha_0.10.3-1.dsc
ruby-mocha_0.10.3-1_all.deb
  to main/r/ruby-mocha/ruby-mocha_0.10.3-1_all.deb
ruby-mocha_0.10.3.orig.tar.gz
  to main/r/ruby-mocha/ruby-mocha_0.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
Archive: http://lists.debian.org/e1runnu-0002ie...@franck.debian.org



Accepted xsunpinyin 2.0.3-3 (source amd64)

2012-02-07 Thread Liang Guo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 02 Feb 2012 16:40:22 +0800
Source: xsunpinyin
Binary: xsunpinyin
Architecture: source amd64
Version: 2.0.3-3
Distribution: unstable
Urgency: low
Maintainer: IME Packaging Team pkg-ime-de...@lists.alioth.debian.org
Changed-By: Liang Guo bluestonech...@gmail.com
Description: 
 xsunpinyin - Standalone XIM server for Sunpinyin
Closes: 647046
Changes: 
 xsunpinyin (2.0.3-3) unstable; urgency=low
 .
   * debian/copyright:
 - Add Upstream-Contact
 - Update Format field
   * Use Environment.MergeFlags to separate build flags (Closes: #647046)
Checksums-Sha1: 
 6d9bfc0e786a3799a2dca4051e9956999e710940 1625 xsunpinyin_2.0.3-3.dsc
 711f65c305b0aa14905d5b4dd0a46be638d2719a 11177 xsunpinyin_2.0.3-3.debian.tar.gz
 e5bd3c6dc533942378ddf960453ff685081b5702 128958 xsunpinyin_2.0.3-3_amd64.deb
Checksums-Sha256: 
 8d981d7b4072b9290668baa152ff7e8d30225153ed13d6cbf8b11c1362321d55 1625 
xsunpinyin_2.0.3-3.dsc
 359145cf93954513f30a700fa23bacf23b44e3d4f2394ea59a229d894c07f364 11177 
xsunpinyin_2.0.3-3.debian.tar.gz
 2702aaf7b5848d18ed804b6c68805ec1b239ed0e3de68c85e548cc9ed6db9fdc 128958 
xsunpinyin_2.0.3-3_amd64.deb
Files: 
 a4b063dbdfb3c432d120e430be043bb1 1625 utils optional xsunpinyin_2.0.3-3.dsc
 861851a03e0ab7faa5ee22072cee6d19 11177 utils optional 
xsunpinyin_2.0.3-3.debian.tar.gz
 6c69a2e02da9fb893eeaaf791a5d6df9 128958 utils optional 
xsunpinyin_2.0.3-3_amd64.deb

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

iQEcBAEBCgAGBQJPMUwVAAoJEIAhAkTu07wNBccH/2/nTaC0/qtbAKAn1u2bYQWB
IaYdWQlaLHjcnp+CgptTqZgJb+692S/bRnTHo8dT8hG0azYsLYIcH13nzjuQdOXn
75U12BxhIIIaU/ERxOSICfRaKL74IDI0gq0TP2CifKbN+kH0gzydk2ZXxviFBGiR
293CZQf+vhY1Se4c4q/n8JBk3U82A4Al1jdAl/DvzCywck7HcyGyfEuT8ah75Tma
cXYPWSNkVVLhwkUWa/gBR9jRM15GEjf8nDBPVacIdynxDokfI5eT48YkAgHkQsd2
Cg7tR+ONqBljO/mzUEpBpCONwTikr+5HrLjanjpWBs6Awy0l6VZUaSG3kx/0Dao=
=MvqI
-END PGP SIGNATURE-


Accepted:
xsunpinyin_2.0.3-3.debian.tar.gz
  to main/x/xsunpinyin/xsunpinyin_2.0.3-3.debian.tar.gz
xsunpinyin_2.0.3-3.dsc
  to main/x/xsunpinyin/xsunpinyin_2.0.3-3.dsc
xsunpinyin_2.0.3-3_amd64.deb
  to main/x/xsunpinyin/xsunpinyin_2.0.3-3_amd64.deb


-- 
To UNSUBSCRIBE, email to debian-devel-changes-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/e1runo7-0002lt...@franck.debian.org



Accepted mgltools-opengltk 1.5.6~rc3~cvs.20120206-1 (source i386)

2012-02-07 Thread Thorsten Alteholz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Feb 2012 18:00:00 +0100
Source: mgltools-opengltk
Binary: mgltools-opengltk
Architecture: source i386
Version: 1.5.6~rc3~cvs.20120206-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Thorsten Alteholz deb...@alteholz.de
Description: 
 mgltools-opengltk - Opengltk Python extension
Changes: 
 mgltools-opengltk (1.5.6~rc3~cvs.20120206-1) unstable; urgency=low
 .
   * New upstream version.
   * debian/control: vcs fields corrected
Checksums-Sha1: 
 c49750571e84ce18b45886eee8fd2d14a4178b93 1818 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.dsc
 550c48eb2e57d75ff5971ce44db843d5f3e04311 1269992 
mgltools-opengltk_1.5.6~rc3~cvs.20120206.orig.tar.gz
 f142a6b53493d8533abac5b57966c6c15bf4b649 7588 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 a07bc74688219ba50e4b92944629fac1b6c9c33f 563518 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1_i386.deb
Checksums-Sha256: 
 f9488e6131d7ec3eaed7951b373470281d3bf81209a88072008ed0116cdda6e5 1818 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.dsc
 bac49bcd9872f989025dddbc3fb91712e8c02afd4e87151aac575960425bd935 1269992 
mgltools-opengltk_1.5.6~rc3~cvs.20120206.orig.tar.gz
 1523a70331b1c4b2a6452097f4d8beeac330e147b0955364346eab85b742169a 7588 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 8a3580af59bf4ad2c97f9cbdc12477a6096a165bab8875ec684c04559c5fe422 563518 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1_i386.deb
Files: 
 6abf25cf5f510790b08142fe4f5fce06 1818 non-free/science optional 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.dsc
 f5f5f19b0536e5fd119d440c71df656e 1269992 non-free/science optional 
mgltools-opengltk_1.5.6~rc3~cvs.20120206.orig.tar.gz
 572140368b70821e9a33ec28439ef695 7588 non-free/science optional 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
 f4091d088235f2296b8a5fbdaa32a470 563518 non-free/science optional 
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1_i386.deb

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

iEYEARECAAYFAk8xaZcACgkQ02K2KlS5mJAFBgCeNZlxpRVRhAOzbdYr3+nV/Olj
jxEAnRD/7LHHQ+q4RNs9YXrxZTjF3Ysz
=wLfM
-END PGP SIGNATURE-


Accepted:
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
  to 
non-free/m/mgltools-opengltk/mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.debian.tar.gz
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.dsc
  to non-free/m/mgltools-opengltk/mgltools-opengltk_1.5.6~rc3~cvs.20120206-1.dsc
mgltools-opengltk_1.5.6~rc3~cvs.20120206-1_i386.deb
  to 
non-free/m/mgltools-opengltk/mgltools-opengltk_1.5.6~rc3~cvs.20120206-1_i386.deb
mgltools-opengltk_1.5.6~rc3~cvs.20120206.orig.tar.gz
  to 
non-free/m/mgltools-opengltk/mgltools-opengltk_1.5.6~rc3~cvs.20120206.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
Archive: http://lists.debian.org/e1ruo2s-0004u4...@franck.debian.org



Accepted bzr 2.5.0~bzr6473-1 (source all amd64)

2012-02-07 Thread Jelmer Vernooij
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Feb 2012 16:24:36 +0100
Source: bzr
Binary: bzr python-bzrlib python-bzrlib-dbg python-bzrlib.tests bzr-doc
Architecture: source all amd64
Version: 2.5.0~bzr6473-1
Distribution: unstable
Urgency: low
Maintainer: Debian Bazaar Maintainers pkg-bazaar-ma...@lists.alioth.debian.org
Changed-By: Jelmer Vernooij jel...@debian.org
Description: 
 bzr- easy to use distributed version control system
 bzr-doc- easy to use distributed version control system (documentation)
 python-bzrlib - distributed version control system - python library
 python-bzrlib-dbg - distributed version control system - debug extension
 python-bzrlib.tests - distributed version control system - testsuite
Closes: 657349
Changes: 
 bzr (2.5.0~bzr6473-1) unstable; urgency=low
 .
   * New upstream snapshot.
+ No longer attempts to create directories with empty name.
  Closes: #657349
Checksums-Sha1: 
 e0f6905b443ef0d1834a3bcdd105f43e9417b53b 1899 bzr_2.5.0~bzr6473-1.dsc
 c5939a9026facba9b8f4aeff8d50861da8013780 9131130 bzr_2.5.0~bzr6473.orig.tar.gz
 c2c5faccd7321f226ca60b90d038d1cc3107fa43 40350 
bzr_2.5.0~bzr6473-1.debian.tar.gz
 80854e7bdedc0c4359249114dbbd7a79620078cf 49658 bzr_2.5.0~bzr6473-1_all.deb
 2dc81538e2ff9eee73605697142cdfe4cd99a8ce 2284368 
python-bzrlib_2.5.0~bzr6473-1_amd64.deb
 734d5c2b91d49d18567d4374978738438aa39b8a 2711334 
python-bzrlib-dbg_2.5.0~bzr6473-1_amd64.deb
 320655166dc3d041951d94fb98e9c8861f307756 1450502 
python-bzrlib.tests_2.5.0~bzr6473-1_all.deb
 0fb9ad084baad3c16dc991770feb1af14c3f8252 5493272 
bzr-doc_2.5.0~bzr6473-1_all.deb
Checksums-Sha256: 
 6187ad27906a235ba03d07f7c9d9bbc31a649cb068f0eb082a98cb2748c31318 1899 
bzr_2.5.0~bzr6473-1.dsc
 f880e5617e1468fe9f125d2e498b114d391445dc09fa8fd62eb52a4ea60e0879 9131130 
bzr_2.5.0~bzr6473.orig.tar.gz
 57bf384250449f44259b353a62d627cf4ed7749e2db3f70c16bce65430d7a6f8 40350 
bzr_2.5.0~bzr6473-1.debian.tar.gz
 d60c0686b192bdaf2e1e14cd76a96ce1057878cd8a6e1fd83f7ebd1e3c27b8a8 49658 
bzr_2.5.0~bzr6473-1_all.deb
 9214f653e15ef3625f483ce2632c02444c8904e31d2c0de0b15915ccdbe41eae 2284368 
python-bzrlib_2.5.0~bzr6473-1_amd64.deb
 f85dd282531d3c431f22a9b554728902b671af43187c5cd3fedecd420e9e2c2f 2711334 
python-bzrlib-dbg_2.5.0~bzr6473-1_amd64.deb
 ed1d4484d628859f1aa457d24959a2426fa645ae69fdad620a31b94102d49be6 1450502 
python-bzrlib.tests_2.5.0~bzr6473-1_all.deb
 c26ca00e0ea0d037c528feab3913f5124a4787e62be9fb3b4893a01d362a0805 5493272 
bzr-doc_2.5.0~bzr6473-1_all.deb
Files: 
 657446d74d192e8b5df16f733d26a105 1899 vcs optional bzr_2.5.0~bzr6473-1.dsc
 4cf36ab9231f546ec017269ef165371e 9131130 vcs optional 
bzr_2.5.0~bzr6473.orig.tar.gz
 4a0357873b218eb98930e8f65d2d5bd3 40350 vcs optional 
bzr_2.5.0~bzr6473-1.debian.tar.gz
 c054e0368fa99e3ea2bdb90cbe626c35 49658 vcs optional bzr_2.5.0~bzr6473-1_all.deb
 9ae976d87a0a4d6b6801526015685167 2284368 python optional 
python-bzrlib_2.5.0~bzr6473-1_amd64.deb
 a33d40359f585c872eabe0f7f4f7f51d 2711334 debug extra 
python-bzrlib-dbg_2.5.0~bzr6473-1_amd64.deb
 40ff621d49eaa21d125aebfa4b2e5390 1450502 python optional 
python-bzrlib.tests_2.5.0~bzr6473-1_all.deb
 5ff59195f5d4dcdab98f6aca5815872b 5493272 doc optional 
bzr-doc_2.5.0~bzr6473-1_all.deb

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

iEYEARECAAYFAk8xU7cACgkQPa9Uoh7vUnbHdwCfaytFrKUj/S3BYyqVqGY6cW/g
SPsAnjaR0pnvP+S5txiC4dzEk+58mfWb
=fxSM
-END PGP SIGNATURE-


Accepted:
bzr-doc_2.5.0~bzr6473-1_all.deb
  to main/b/bzr/bzr-doc_2.5.0~bzr6473-1_all.deb
bzr_2.5.0~bzr6473-1.debian.tar.gz
  to main/b/bzr/bzr_2.5.0~bzr6473-1.debian.tar.gz
bzr_2.5.0~bzr6473-1.dsc
  to main/b/bzr/bzr_2.5.0~bzr6473-1.dsc
bzr_2.5.0~bzr6473-1_all.deb
  to main/b/bzr/bzr_2.5.0~bzr6473-1_all.deb
bzr_2.5.0~bzr6473.orig.tar.gz
  to main/b/bzr/bzr_2.5.0~bzr6473.orig.tar.gz
python-bzrlib-dbg_2.5.0~bzr6473-1_amd64.deb
  to main/b/bzr/python-bzrlib-dbg_2.5.0~bzr6473-1_amd64.deb
python-bzrlib.tests_2.5.0~bzr6473-1_all.deb
  to main/b/bzr/python-bzrlib.tests_2.5.0~bzr6473-1_all.deb
python-bzrlib_2.5.0~bzr6473-1_amd64.deb
  to main/b/bzr/python-bzrlib_2.5.0~bzr6473-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
Archive: http://lists.debian.org/e1ruoci-0006oz...@franck.debian.org



  1   2   3   >