Re: /tmp as tmpfs and consequence for imaging software

2011-11-15 Thread Neil Williams
On Tue, 15 Nov 2011 07:41:54 +0100
Andrew Shadura bugzi...@tut.by wrote:

 Hello,
 
 On Mon, 14 Nov 2011 00:14:18 +0100
 Josselin Mouette j...@debian.org wrote:
 
   No it does not work like you said. We know the matrix structure, not
   the kernel. We map and unmap manually. Doing as you said is
   inneficient and trash a lot cache and so on.
 
  This is getting insane. Please learn how to use madvise and
  posix_fadvise and let the kernel deal with paging. The kernel knows
  everything about the underlying hardware; the application does not.
 
 And what about the software being cross-platform? What about other
 systems which don't have such system calls?

Ever heard of #ifdef #else #endif ?

If similar calls exist, use them conditionally. Where they do not
exist, you need to decide if that system can be supported and accept
the limitations of doing so. Where the calls DO exist it is inexcusable
NOT to use the support available.

Do not cripple all platforms with the sins of the weakest.

 Also, the application
 doesn't need to know anything about the hardware except that disk
 memory is usually larger and slower than RAM is.

For a trivial application, that is true. For any application which
makes specific or unusual demands on the hardware / system resources, it
is not. Applications making specific or unusual demands MUST allow for
system differences and that includes adjusting to those which can
handle the requests *better* than your own code as well as providing
code for (or preventing a build / deployment on) those which cannot.

Some kinds of applications just cannot avoid a direct interface with
the kernel (anything using iptables, for example) and any process which
makes unusual demands on the available temporary storage is certainly
sufficiently specialised to require conditionals in the code which make
use of kernel features where those are available.

Cross-platform is not an excuse for one-class-for-all. Cross-platform
means making the most of each platform, not dumbing down to the lowest,
meanest or most inept.

If you want compile-once run anywhere, you could try java and move all
these problems to the VM. (Which has to do this system-specific stuff
anyway.)

If the application needs to be recompiled to be cross-platform then
there is absolutely NO EXCUSE for not including conditional compilation
for specific kernels or environments.

Your build system is unquestionably doing some adjustments from one
platform to another anyway - you simply have to bring those
conditionals into the codebase. There is no excuse - your software is
broken and it must be fixed or removed.

(and, yes, I've explicitly included iptables as an example because I've
got an RC bug outstanding for a tiny app which cannot therefore be used
on BSD and I keep meaning to find the time to fix the build
requirements, so this is directed at me as much as anyone else.)

-- 


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



pgpqqs3OEU9lt.pgp
Description: PGP signature


Re: /tmp as tmpfs and consequence for imaging software

2011-11-15 Thread Adam Borowski
On Tue, Nov 15, 2011 at 07:41:54AM +0100, Andrew Shadura wrote:
 On Mon, 14 Nov 2011 00:14:18 +0100
 Josselin Mouette j...@debian.org wrote:
  This is getting insane. Please learn how to use madvise and
  posix_fadvise and let the kernel deal with paging. The kernel knows
  everything about the underlying hardware; the application does not.
 
 And what about the software being cross-platform? What about other
 systems which don't have such system calls? Also, the application
 doesn't need to know anything about the hardware except that disk
 memory is usually larger and slower than RAM is.

madvise():
# _BSD_SOURCE
# CONFORMING TO
#POSIX.1b.

posix_fadvise():
# CONFORMING TO
#POSIX.1-2001.

I'd call functions that are required by a not-so-recent version of POSIX
pretty portable.  What do you want to be cross-platform to then?  win32?
If so, you need a portability layer for anything fancier than Hello world
anyway.

-- 
1KB // Yo momma uses IPv4!


signature.asc
Description: Digital signature


Re: Want to become a DM and co-maintainer

2011-11-15 Thread olivier sallou
2011/11/12 Svante Signell svante.sign...@telia.com

 Hi,

 Where/how to apply to become a co-maintainer and a maintainer? The
 packages I'm interested into start with are: gnuradio and octave.
 Additionally, I have not found any package for USRP yet.


At first, you will have to maintain package via a sponsor or a team. After
some time, according to your sponsor, you will be able to ask to be a DM so
that you are able to maintain by yourself the package.
Once ready for being a DM, you can go here:

http://wiki.debian.org/DebianMaintainer#Becoming_a_Debian_Maintainer


 Thanks!


 --
 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/1321127664.6311.24.camel@x60




-- 

gpg key id: 4096R/326D8438  (pgp.mit.edu)
Key fingerprint = 5FB4 6F83 D3B9 5204 6335  D26D 78DC 68DB 326D 8438


Re: Two groups of users, one distro in the middle

2011-11-15 Thread Charles Plessy
Le Tue, Nov 15, 2011 at 08:48:57AM +0800, Paul Wise a écrit :
 On Tue, Nov 15, 2011 at 8:14 AM, Alex Pennace wrote:
 
  Even without that point, the conclusion remains the same: Both
  projects should endure the rename (unless one concedes), and that
  shouldn't be viewed in terms of look at what those meanies in Debian
  are making us do but instead regarded as a natural outcome of the
  choices each project made at various times.
 
 I personally wonder if we should change our policy instead of forcing
 these two upstream communities into conflict.

I agree.  One possiblity when packages A and B conflict for a program name
would be to rename, but in addition to provide a wrapper that executes the
program from A when only A is installed, from B when only B is installed, and
that gives an error reporting alternative path names when both A and B are
installed.  The wrappers for all names could be provided by a third package.

Have a nice day,

-- 
Charles Plessy
Tsurumi, Kanagawa, Japan


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/2015094358.ge27...@merveille.plessy.net



Re: Description-less packages file

2011-11-15 Thread Ansgar Burchardt
Joey Hess jo...@debian.org writes:
 AFAICS, there are no diff files, so this increases the average apt-get update
 download size by 3.6 MB.

 Also, it seems unlikely this will ever allow apt to skip downloading the
 English files, unless translations somehow get to, and stay at 100%

Switching to xz compression would reduce the English translation from
3.7 MB to 3.3 MB.  Maybe we could add support for this to APT and switch
later (so we don't need both bz2 and xz on the mirrors).

Regards,
Ansgar


-- 
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/s2shb25k6fs@bistromathics.mathi.uni-heidelberg.de



Re: /tmp as tmpfs and consequence for imaging software

2011-11-15 Thread Aneurin Price
On 15 November 2011 08:17, Neil Williams codeh...@debian.org wrote:
 On Tue, 15 Nov 2011 07:41:54 +0100
 Andrew Shadura bugzi...@tut.by wrote:

 Hello,

 On Mon, 14 Nov 2011 00:14:18 +0100
 Josselin Mouette j...@debian.org wrote:

   No it does not work like you said. We know the matrix structure, not
   the kernel. We map and unmap manually. Doing as you said is
   inneficient and trash a lot cache and so on.

  This is getting insane. Please learn how to use madvise and
  posix_fadvise and let the kernel deal with paging. The kernel knows
  everything about the underlying hardware; the application does not.

 And what about the software being cross-platform? What about other
 systems which don't have such system calls?

 Ever heard of #ifdef #else #endif ?

 If similar calls exist, use them conditionally. Where they do not
 exist, you need to decide if that system can be supported and accept
 the limitations of doing so. Where the calls DO exist it is inexcusable
 NOT to use the support available.

 Do not cripple all platforms with the sins of the weakest.

I think this discussion needs a sanity check.

Please remember, the topic of conversation is whether an application
can reasonably make the assumption that the system defined tmp
directory is a suitable place to store temporary data.

You appear to be saying Of course not; every application should
include a small compatibility layer to call the appropriate syscalls
or other relevant interface for every possible platform to indicate to
the kernel exactly what it wants to do with its data. Yes, that
doesn't answer the question of where temporary data should be stored
in the first place, but I don't care about that as long as nobody has
the audacity to suggest that maybe /tmp might be a reasonable place
for transient temporary data.

Can you see why this might be treated with incredulity? Maybe it's
worth going back to the topic at hand rather ranting about something
irrelevant.


-- 
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/cahb+spbpom8oz5hvespjqtkaglr-+hbh-uk46-ovu79bwd3...@mail.gmail.com



Re: Description-less packages file

2011-11-15 Thread Steve McIntyre
Ansgar wrote:
Joey Hess jo...@debian.org writes:
 AFAICS, there are no diff files, so this increases the average apt-get update
 download size by 3.6 MB.

 Also, it seems unlikely this will ever allow apt to skip downloading the
 English files, unless translations somehow get to, and stay at 100%

Switching to xz compression would reduce the English translation from
3.7 MB to 3.3 MB.  Maybe we could add support for this to APT and switch
later (so we don't need both bz2 and xz on the mirrors).

I did wonder about that when I added the debian-cd code to deal with
translations. xz would probably make more sense, yes, but at the
moment I've just hard-coded for bz2.

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
Because heaters aren't purple! -- Catherine Pitt


-- 
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/e1rqima-0003ch...@mail.einval.com



Re: Two groups of users, one distro in the middle

2011-11-15 Thread Ian Jackson
Charles Plessy writes (Re: Two groups of users, one distro in the middle):
 I agree.  One possiblity when packages A and B conflict for a program name
 would be to rename, but in addition to provide a wrapper that executes the
 program from A when only A is installed, from B when only B is installed, and
 that gives an error reporting alternative path names when both A and B are
 installed.  The wrappers for all names could be provided by a third package.

I don't think this ia a good idea.  The result would be that
installing an additional package could break the operation of
an unrelated package.

If users desperately want to do this themselves there is no reason why
they shouldn't symlink /usr/bin/node - nodejs themselves - apart
from, of course, the reasons why they shouldn't.

But we should absolutely not support it.  I have no sympathy at all
for nodejs upstream on this matter.

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/20162.27255.473822.488...@chiark.greenend.org.uk



Re: Two groups of users, one distro in the middle

2011-11-15 Thread Gergely Nagy
Paul Wise p...@debian.org writes:

 On Tue, Nov 15, 2011 at 8:14 AM, Alex Pennace wrote:

 Even without that point, the conclusion remains the same: Both
 projects should endure the rename (unless one concedes), and that
 shouldn't be viewed in terms of look at what those meanies in Debian
 are making us do but instead regarded as a natural outcome of the
 choices each project made at various times.

 I personally wonder if we should change our policy instead of forcing
 these two upstream communities into conflict.

In that case, I'll consider un-deprecating dpatch, and since it can very
well be used outside of Debian, rename it to patch.

Looking at our reverse deps and build-deps, as far as build-deps are
concerned, the patch and dpatch camp is farily equal (937 vs 764), which
is a much much smaller difference than in the node-vs-nodejs case, so
I'll be looking forward to having patch renamed to patch.gnu or similar.

(FYI, I'm a reasonablye person, so as long as patch gets renamed, I'll
be content with my patch being patch.dpatch, and I'm willing to bear the
consequences of having to adapt all scripts that use the old name, to
use the new one.)
/sarcasm

Just because two upstreams can't agree, and both choose a name far too
generic, we shouldn't make our policies more forgiving to such
sillyness.

Furthermore, packages in Debian are - to the best of my knowledge -
adapted already to use /usr/bin/nodejs, packages outside can still work
unmodified, if the user makes a simple symlink. Document this, and all's
well.

Perhaps this will stop another upstream from choosing a similarly
generic name.

In all honesty, I fail to see the harm done, apart from some very minor
inconvenience, which can be trivially worked around.

-- 
|8]


-- 
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/87zkfxihgh.fsf@algernon.balabit



Re: Two groups of users, one distro in the middle

2011-11-15 Thread sean finney
On Tue, Nov 15, 2011 at 03:33:02PM +0100, Gergely Nagy wrote:
 Furthermore, packages in Debian are - to the best of my knowledge -
 adapted already to use /usr/bin/nodejs, packages outside can still work
 unmodified, if the user makes a simple symlink. Document this, and all's
 well.

I don't think the symlink is even necessary, and is probably a bad idea
in case the other package providing node was installed.  instead, ship
the binary in /usr/lib/nodejs/node (or similar), and instruct users that
if they need upstream compatibility, to simply 

export PATH=/usr/lib/nodejs:$PATH

and problem solved, right?



sean


-- 
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/2015152833.ga21...@cobija.connexer.com



Re: Two groups of users, one distro in the middle

2011-11-15 Thread Milan P. Stanic
On Tue, 2011-11-15 at 13:34, Ian Jackson wrote:
 Charles Plessy writes (Re: Two groups of users, one distro in the middle):
  I agree.  One possiblity when packages A and B conflict for a program name
  would be to rename, but in addition to provide a wrapper that executes the
  program from A when only A is installed, from B when only B is installed, 
  and
  that gives an error reporting alternative path names when both A and B are
  installed.  The wrappers for all names could be provided by a third package.
 
 I don't think this ia a good idea.  The result would be that
 installing an additional package could break the operation of
 an unrelated package.
 
 If users desperately want to do this themselves there is no reason why
 they shouldn't symlink /usr/bin/node - nodejs themselves - apart
 from, of course, the reasons why they shouldn't.
 
 But we should absolutely not support it.  I have no sympathy at all
 for nodejs upstream on this matter.

As a user/admin I fully agree with you. Debian policy should be changed
to state something like First come, first served. Principle of least
surprise.

ax25 packages are in Debian for more than ten years, IIRC.

What to do if someone create {some}script language and call it 'cat' and
refuse to rename it because s/he like cats. ;-)

-- 
Kind regards,  Milan
--
Arvanta, IT Securityhttp://www.arvanta.net
Please do not send me e-mail containing HTML code or documents in
proprietary format (word, excel, pps and so on)


-- 
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/201518.ga24...@arvanta.net



Re: Two groups of users, one distro in the middle

2011-11-15 Thread Joey Hess
Alex Pennace wrote:
 Clearly, the nodejs community would not be pleased. On the other hand,
 the AX25 community would not be pleased about being forced to rename
 if it fell on them. So the real question is which community should
 bear the costs of resolving this conflict?
 
 At this stage, it looks like neither side is willing to budge, so
 logic and Debian policy say both must bear the costs.

That seemed to make sense the first time I read it, but the more I think
about it the less convinced I am. The actual costs of Debian renaming
both `node`s will mostly be borne by Debian, and our users, not by the
upstream projects. There's really no point in trying to punish the
upstreams at all, because the next naming conflict is sure to involve
two different upstreams; such punishment has no deterrent value, and
only sours things. And not letting the most-popular name win flies in
the face of recent history: chromium the browser conflicted with
chromium the game and won; git the VCS conflicted with git the
little-used gnu tools, and won.

-- 
see shy jo, who is currently involved in a naming conflict over parallel


signature.asc
Description: Digital signature


Re: /tmp as tmpfs and consequence for imaging software

2011-11-15 Thread Philip Hands
On Tue, 15 Nov 2011 12:34:03 +, Aneurin Price aneurin.pr...@gmail.com 
wrote:
...
 I think this discussion needs a sanity check.
 
 Please remember, the topic of conversation is whether an application
 can reasonably make the assumption that the system defined tmp
 directory is a suitable place to store temporary data.

Absolutely, although at the other extreme we seem to have people
demanding that they should be able to make very specific assumptions
about what form that storage will take for all future time and how much
of their data they should be able to put on it, without needing to do
tiresome things like check first, or even checking whether it worked
afterwards.

Of course we cannot please _all_ our users with our defaults, but if
this niche software is really rendered useless by having /tmp on tmpfs
then surely it should check for that case, and then if necessary,
suggest one of the several possible solutions to the user.

Cheers, Phil.
-- 
|)|  Philip Hands [+44 (0)20 8530 9560]http://www.hands.com/
|-|  HANDS.COM Ltd.http://www.uk.debian.org/
|(|  10 Onslow Gardens, South Woodford, London  E18 1NE  ENGLAND


pgpFE0ZTmZBFf.pgp
Description: PGP signature


Re: Is anyone maintaining (the ham radio tool) node?

2011-11-15 Thread Jonas Smedegaard
On 11-11-09 at 08:33am, Philipp Kern wrote:
 On 2011-11-08, Patrick Ouellette p...@flying-gecko.net wrote:
  I hope to avoid any issues with breaking old boxes with the eventual 
  resolution of the issue.
 
 I don't know what's wrong with Jonathan Nieder's advise in [0] about 
 helping users with the conversion automatically.  That's how it's 
 usually done.
 He even provided that patch.
 
 Who would refer to the node binary as provided by the ham package node 
 except for the inetd and the ax25d superservers?  (Serious question.)

Did anyone address above question already?


Regards,

 - Jonas

-- 
 * Jonas Smedegaard - idealist  Internet-arkitekt
 * Tlf.: +45 40843136  Website: http://dr.jones.dk/

 [x] quote me freely  [ ] ask before reusing  [ ] keep private


signature.asc
Description: Digital signature


info please

2011-11-15 Thread Richard
Hi,
Whats the difference between dependency level 1 and dependency level 2.
I'm new to the list
Thanks

-- 
Best wishes / 73
Richard Bown

e-mail: rich...@g8jvm.com   or   richard.b...@blueyonder.co.uk

nil carborundum a illegitemis
##
Ham Call G8JVM . OS Debian Wheezy amd64 on a Dual core AMD Athlon 5200, 4 GB RAM
Maidenhead QRA: IO82SP38, LAT. 52 39.720' N LONG. 2 28.171 W ( degs mins )
QRV HF + VHF Microwave 23 cms:140W,13 cms:100W,6 cms:10W  3 cms:5W
##
 


-- 
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/2015162919.7b23f29e@debian



Re: Two groups of users, one distro in the middle

2011-11-15 Thread Tollef Fog Heen
]] sean finney 

|   export PATH=/usr/lib/nodejs:$PATH
| 
| and problem solved, right?

PATH isn't considered for #! lines, so not really.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87bosdnvjh@qurzaw.varnish-software.com



Re: /tmp as tmpfs and consequence for imaging software

2011-11-15 Thread Henrique de Moraes Holschuh
On Tue, 15 Nov 2011, Aneurin Price wrote:
 I think this discussion needs a sanity check.
 
 Please remember, the topic of conversation is whether an application
 can reasonably make the assumption that the system defined tmp
 directory is a suitable place to store temporary data.

/tmp in RAM has been extremely common on Solaris for more than 10 years
(/tmp in RAM is the default there).  I recall every SuperSPARC and
UltraSPARC box at Uni had this configuration.

IMO, it is a very clearly cut case: applications cannot reasonably make any
assumption about /tmp for any non-trivial usage, and they are to use $TMPDIR
to locate the system tmp directory in the first place if they want to use
it.

This is NOT a Debian thing.  It is not even a new requirement, it is so old
that TMPDIR has already made it into POSIX/SuS...

http://en.wikipedia.org/wiki/TMPDIR
http://en.wikipedia.org/wiki/Tmpfs

-- 
  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/2015175144.ga29...@khazad-dum.debian.net



Using Qt debug libraries without configure and qmake

2011-11-15 Thread Malte Forkel
Hi,

I need your advise on how to deal with the way Debian packages the debug
version of Qt libraries.

I'm trying to package an existing software that includes a small Qt
application. The software is not using autotools or qmake but fixed
Makefiles. Building the release version is accomplished by lines like
   CXXFLAGS += $(shell pkg-config --cflags QtCore)
   LIBS +=  $(shell pkg-config --libs QtCore)
Building the release version of the sofware works fine.

Alternatively, when building a debug version, the above lines are
replaced by
   CXXFLAGS += $(shell pkg-config --cflags QtCore_debug)
   LIBS +=  $(shell pkg-config --libs QtCore_debug)
Building the debug version fails with errors like
   Package QtCore_debug was not found in the pkg-config search path.
   Perhaps you should add the directory containing `QtCore_debug.pc'
   to the PKG_CONFIG_PATH environment variable
   No package 'QtCore_debug' found

I have installed libqtcore4, libqt4-dev and libqt4-dbg in the build
environment. Looking at the files in these packages, I noticed that they
provide /usr/lib/libQtCore.so.4.4.3 and
/usr/lib/libQtCore.so.4.4.3.debug, but not
/usr/lib/libQtCore_debug.so.4.4.3. Also, there is
/usr/lib/pkgconfig/QtCore.pc, but no /usr/lib/pkgconfig/QtCore_debug.pc
(or /usr/lib/pkgconfig/QtCore.debug.pc). Debian seems to use its own way
of packaging the debug versions.

As far as I can tell after some looking around, this might be no problem
when using a configure and qmake. Unfortenatey, upstream does not.

What should I do to specify that the debug versions of the libraries are
used?

Thanks in advance,
Malte



-- 
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/j9ua1r$m34$1...@dough.gmane.org



Re: directory under /usr/bin -- Ok or not?

2011-11-15 Thread Goswin von Brederlow
Yaroslav Halchenko deb...@onerussian.com writes:

 Thank you John for extending my argument with adequate references which
 I have swallowed while  composing my question email.

 And if we are after reading FHS /usr/lib section:

 /usr/lib includes object files, libraries, and internal binaries that
 are not intended to be executed directly by users or shell scripts.

 and in my case it becomes more interesting -- those tools *are intended*
 to be executed by (interested) users directly.  It is just due to 
 proliferation
 in number of the tools and conflicts with other packages they cannot go under
 /usr/bin directly.

But if you have /usr/bin/foo/bar then how is the user supposed to
execute it? foo/bar won't work.

And if you have to type in the full path every time that would be pretty
anoying and no improvement over /usr/lib/foo/bar.


I would rather use /usr/bin/foo-bar in that case, e.g. git-import-dsc.

 That is why for this package (as for few others we maintain already) we
 are shipping also /etc/PKG/pkg.sh script so (interested) users could
 source to have their PATH adjusted to get preference to execute tools
 from the PKG instead of possibly available conflicting one under
 /usr/bin.   Wrapper script shipped directly under /usr/bin/ is only for
 possible future adoption  since at the moment all users (and their
 scripts) rely on direct names of the cmdline tools.

Adding /usr/lib/PKG to the PATH seems just a viable.

As for wrapper scripts. If you can put a wrapper script in /usr/bin then
you can just as easily just put the binary there in the first place.

 Altogether, according to FHS /usr/lib/PKG is actually not preferable
 location for them since indeed it is for solely internal use (and it is
 now used to keep shared libraries)

There you might have a point.

MfG
Goswin


-- 
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/87obwdqmdh.fsf@frosties.localnet



libconfig9 for Wheezy?

2011-11-15 Thread Jonathan McCrohan
Hi,

libconfig [1] has not been updated since Squeeze, and is lagging
upstream by a major version.

Packaging the upstream release is not a problem, but an ABI change will
require a transition from libconfig8 to libconfig9.

The maintainer is aware of the problem, and this has been tracked as
wishlist bug #583528 since May 2010 [2].

Is there enough time left to have this updated before the Wheezy freeze
window?

Thanks,
Jon

[1] http://packages.qa.debian.org/libc/libconfig.html
[2] http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=583528


-- 
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/4ec2ac54.2070...@gmail.com



Re: Description-less packages file

2011-11-15 Thread Goswin von Brederlow
Joerg Jaspert jo...@debian.org writes:

 I just merged a patch from Ansgar to generate the Packages files without
 the English description embedded inside them. Instead they are now
 written into a new file, the English Translation file in
 main/i18n/Translation-en.bz2. They thus appear alongside all other
 translated descriptions as just another language. apt  co will (or
 should) just download those Translation files to show the description,
 as they do already for all other languages.
 This lets us save quite a bit of space on our mirrors by not repeating
 them as many times as we have architectures - and also enables
 non-English-speaking users (and eventually multi-arch enabled APT) to
 save on download size, as they no longer need to download a language
 that is of no use to them or is already there.

Thanks. This is verry much appreciated and saves doubly (triplly,
quadruply, ...) on downloads, disk space (and I assume memory too) with
multiarch.

MfG
Goswin


-- 
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/87k471qm5g.fsf@frosties.localnet



Re: libconfig9 for Wheezy?

2011-11-15 Thread Ben Hutchings
On Tue, Nov 15, 2011 at 06:15:48PM +, Jonathan McCrohan wrote:
 Hi,
 
 libconfig [1] has not been updated since Squeeze, and is lagging
 upstream by a major version.
 
 Packaging the upstream release is not a problem, but an ABI change will
 require a transition from libconfig8 to libconfig9.
 
 The maintainer is aware of the problem, and this has been tracked as
 wishlist bug #583528 since May 2010 [2].
 
 Is there enough time left to have this updated before the Wheezy freeze
 window?
 
Very likely, but release questions should be sent to debian-release.

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/2015182919.gb3...@decadent.org.uk



Re: Two groups of users, one distro in the middle

2011-11-15 Thread John H. Robinson, IV
Tollef Fog Heen wrote:
 ]] sean finney 
 
 | export PATH=/usr/lib/nodejs:$PATH
 | 
 | and problem solved, right?
 
 PATH isn't considered for #! lines, so not really.

It is if you use #!/usr/bin/env node

-- 
John H. Robinson, IV  jaq...@debian.org
 http  
WARNING: I cannot be held responsible for the above, sbih.org ( )(:[
as apparently my cats have learned how to type.  spiders.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/2015182353.ga7...@a.mx.sbih.org



Re: Sharing data between maintainer scripts and debian/rules

2011-11-15 Thread Goswin von Brederlow
Neil Williams codeh...@debian.org writes:

 We've a few native packages which handle data in package-specific
 directories under /var/lib/. It would be convenient to specify the name
 of this directory in debian/rules as a -D define to the compiler
 (because it's native) and then pass that into the relevant maintainer
 scripts, postinst and postrm. (We could use a prerm if appropriate.)

 So rather than copying the directory name in various places in the
 debian/ directory, I was wondering if there's a simple way to feed a
 variable into the maintainer scripts from debian/rules (which in turn
 could set the variable according to DEB_BUILD_OPTIONS and
 dpkg-architecture query results). We could use a file in /etc/ but that
 seems to just move the problem elsewhere and we could use a hidden
 debconf value but that just adds complexity to the postinst itself.

The maintainer scripts aren't (usualy) build so you can't pass anything
from the build environment into them. If you do need/want to do this you
need to build those script in some form or another. For example I have
the following in a few cases (from memory):

debian/%: debian/%.in
sed 's/@VERSION@/$(VERSION)/g'  $+  $@

binary-arch: debian/foo.postinst debian/foo.prerm

clean:
rm -f debian/foo.postinst debian/foo.prerm


Don't use a conffile for this. The file would only confuse users, tempt
them to edit the file and then what would your programm and maintainer
scripts do? That only invites chaos.

 The implementation is embedded, so unnecessary clock cycles (retrieval
 from debconf) need to be avoided and the chances of a config file being
 edited are slim (i.e. only during development) - there is no user login
 and no user access. There is no python interpreter on-device and the
 perl-modules package is not installed, so only the base perl interpreter
 is present. Retrieving this variable on-device is therefore less than
 appealing, the value needs to be in the postinst script that actually
 ends up in the binary package.

Alternatively to the above, where every maintainer script has to be
build, you could add a single common file and source that in all
maintainer scripts. This would involve querying dpkg for the location of
maintainer scripts so it would add some overhead at install time.

 Other than using sed and awk during the build on a package-specific
 basis with all the potential for typos, is there a wider use case for
 dissemination of variables from debian/rules into maintainer scripts? I
 guess it's an extension of the #DEBHELPER# mechanism, which being on
 the build system means that a lot more tools would be available.

Maybe debhelper could add support for this, doing the sed for you when
it installs the maintainer scripts and replaces its own #DEBHELPER#. But
afaik there is nothing existing of that sort.

As for typos the sed commands are quite trivial and never change. So you
just write them and carefully check the result once. So I don't buy that
fear.

 Any mechanism would have to allow the old value to be identified upon a
 change to the directory, so that the old data gets cleaned out
 properly. i.e. when changed, the maintainer scripts end up handling two
 locations, cleaning the old, populating the new.

 There's also the possibility that the process needs to be
 architecture-sensitive, i.e. the armel postinst might need to behave
 differently from i386 because the armel device can do things which you
 don't want a desktop to do (like suspend automatically). This is
 relatively simple to do with some conditionals in debian/rules.

For that there are provisions:

man 1 dpkg

   DPKG_MAINTSCRIPT_PACKAGE
  Defined by dpkg on the maintainer script  environment  to
  the package name being handled.

   DPKG_MAINTSCRIPT_ARCH
  Defined  by  dpkg on the maintainer script environment to
  the architecture the package got built for.

   DPKG_MAINTSCRIPT_NAME
  Defined by dpkg on the maintainer script  environment  to
  the name of the script running (preinst, postinst, prerm,
  postrm).

 There remains the option of doing this all in the compiled code but I'm
 interested in seeing if this is something other people need to do as
 well.

MfG
Goswin


-- 
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/87fwhpqkwm.fsf@frosties.localnet



Re: Using Qt debug libraries without configure and qmake

2011-11-15 Thread Neil Williams
On Tue, 15 Nov 2011 19:12:10 +0100
Malte Forkel malte.for...@berlin.de wrote:

 I need your advise on how to deal with the way Debian packages the debug
 version of Qt libraries.

Debugging symbols exist in the libqt4-dbg package.

When building your own code, it is just a case of ensuring that the
flags are passed to the compiler, as normal. It has nothing to do with
pkg-config. The Makefile is broken. Check the actual output using
objdump and file.

When building packages for Debian, it's down to debian/rules and
arguments to dh_strip. Check the source of any number of dbg packages
already in Debian.

 I'm trying to package an existing software that includes a small Qt
 application. The software is not using autotools or qmake but fixed
 Makefiles. Building the release version is accomplished by lines like
CXXFLAGS += $(shell pkg-config --cflags QtCore)
LIBS +=  $(shell pkg-config --libs QtCore)
 Building the release version of the sofware works fine.

Those lines have no effect on whether the debug or release version is
built. That comes down to the use of strip - and you always want the
debug symbols in every build, let the Debian packaging sort out the
rest.

 Alternatively, when building a debug version, the above lines are
 replaced by
CXXFLAGS += $(shell pkg-config --cflags QtCore_debug)
LIBS +=  $(shell pkg-config --libs QtCore_debug)

Broken. There is no such .pc file for pkg-config, hence the errors.
Don't build a release and debug version, it makes no sense. There
is one version which gets stripped to retain the debug symbols in a
useful manner.

Fix the rest of the flags. In most cases, what you're thinking of as
the release build may actually contain debug symbols which dh_strip
would then put into a dbg package. What matters (the only thing
which matters) is exactly what is passed to g++.

When building for local development, always retain the debug symbols to
make life easier. Then when building a package, let the normal Debian
packaging rules retain the debug symbols until dh_strip is called to
put the detached symbols into the -dbg package.

Don't strip in the upstream build. Just don't. Ever.

What you think of as a release build is just broken.

 I have installed libqtcore4, libqt4-dev and libqt4-dbg in the build
 environment. Looking at the files in these packages, I noticed that they
 provide /usr/lib/libQtCore.so.4.4.3 and
 /usr/lib/libQtCore.so.4.4.3.debug, but not
 /usr/lib/libQtCore_debug.so.4.4.3. Also, there is

Check the contents of libqt4-dbg with 'dpkg -L libqt4-dbg' - that's
where the symbols live, exactly where gdb expects to find them. That's
the only useful thing to do with debug symbols anyway - let gdb find
them.

/usr/lib/debug/usr/lib/libQtGui.so.4.7.3
/usr/lib/debug/usr/lib/libQtCore.so.4.7.3
etc.

 What should I do to specify that the debug versions of the libraries are
 used?

You don't. You build your software with debugging symbols and then gdb
finds the debug symbols from the dbg packages directly. Packaging takes
care of the rest.

g++ -c -pipe -I../lib -g -I/usr/include/
Building with debugging symbols intact for later extraction via
dh_strip or use directly in gdb

$ file lib/libtextwidget.so.2.1.0 
lib/libtextwidget.so.2.1.0: ELF 64-bit LSB shared object, x86-64,
version 1 (SYSV), dynamically linked, BuildID
[sha1]=0xaca25b93845a468cc3f696cd7b796ada47d89226, not stripped

Clearly indicates that the debug symbols are available.

$ gdb ./bin/textwidget
Reading symbols
from /.../textwidget/bin/textwidget...done.
(gdb) 



-- 


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



pgp9ovBRygp5u.pgp
Description: PGP signature


Re: Using Qt debug libraries without configure and qmake

2011-11-15 Thread Simon McVittie
On Tue, 15 Nov 2011 at 19:02:48 +, Neil Williams wrote:
 Fix the rest of the flags. In most cases, what you're thinking of as
 the release build may actually contain debug symbols which dh_strip
 would then put into a dbg package. What matters (the only thing
 which matters) is exactly what is passed to g++.

Some packages/build systems do distinguish between a debug and release
build, and actually compile different code for the two (e.g. python2.7-dbg
has a lot of reference-count-debugging goo which just doesn't exist in
python2.7), or do things like changing the level of optimization.
I believe this is particularly popular in things originating on Windows
(iirc MSVC++ has release- and debug-mode runtime libraries, which are not
the same).

For instance, the release version might build with -NDEBUG
(disable assert(3)), -DG_DISABLE_ASSERTS (the equivalent for GLib), or even
-DG_DISABLE_CHECKS (the break my app flag). In some packages (like Python),
the debug version even has a different ABI (again, for the intrusive
reference-count-debugging stuff, which makes all your objects a bit larger).

I personally think this sort of thing should be avoided wherever possible -
not least because you run the risk of having bugs that can be reproduced
with the release version but not the debug version - but it's something that
happens, unfortunately including packages I maintain.

In Debian, we build everything with debug symbols (-g), but usually using the
code paths that would normally be considered a release version.

CMake formalizes this by having Debug, Release and RelWithDebInfo
values for CMAKE_BUILD_TYPE: the one normally used in Debian is
RelWithDebInfo.

S


-- 
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/2015192610.gb29...@reptile.pseudorandom.co.uk



Re: /tmp as tmpfs and consequence for imaging software

2011-11-15 Thread bastien ROUCARIES
Le Monday 14 November 2011 00:14:18, Josselin Mouette a écrit :
 Le dimanche 13 novembre 2011 à 23:20 +0100, Bastien ROUCARIES a écrit :
  No it does not work like you said. We know the matrix structure, not
  the kernel. We map and unmap manually. Doing as you said is
  inneficient and trash a lot cache and so on.
 
 This is getting insane. Please learn how to use madvise and
 posix_fadvise and let the kernel deal with paging. The kernel knows
 everything about the underlying hardware; the application does not.

Yes I do it with  MADV_DONTNEED when needed. And the kernel do not know when to 
use MADV_DONTNEED on 16MB block and as you said I 
have performance enhancement (but we should take in account system call cost). 

 
  Memory is used as a cache. This is not broken. This a valid use.
 
 By paging the data manually to the disk, the only thing you are
 achieving is duplicating it at the time of reading/writing. Please learn
 how to use memory pages and stop telling people you know better when it
 is obvious you don’t know what you are talking about.

Thanks


--
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/20151123.12073.roucaries.bast...@gmail.com



Processed: Re: /usr/include/features.h(323): catastrophic error: could not open source file bits/predefs.h

2011-11-15 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 # affects most development libraries, not just libc
 reassign 648889 general
Bug #648889 [libc6-dev] /usr/include/features.h(323): catastrophic error: could 
not open source file bits/predefs.h
Bug reassigned from package 'libc6-dev' to 'general'.
Bug No longer marked as found in versions eglibc/2.13-21.
 forcemerge 637232 648889
Bug#637232: general: Multiarch breaks support for non-multiarch toolchain
Bug#648889: /usr/include/features.h(323): catastrophic error: could not open 
source file bits/predefs.h
Bug#639214: eglibc: changes to paths concerning crt1.o, crti.o and crtn.o 
breaks building LLVM Trunk
Bug#644986: i386: Compiling gcc-snapshots from upstream with 
multiarch-toolchain?
Forcibly Merged 637232 639214 644986 648889.

 quit
Stopping processing here.

Please contact me if you need assistance.
-- 
644986: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=644986
648889: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=648889
637232: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=637232
639214: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=639214
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.132139440612194.transcr...@bugs.debian.org



Bug#648896: ITP: kup -- kernel.org upload tool

2011-11-15 Thread Ben Hutchings
Package: wnpp
Severity: wishlist
Owner: Ben Hutchings b...@decadent.org.uk

* Package name: kup
  Version : 0.2
  Upstream Author : H. Peter Anvin h...@linux.intel.com
* URL : git://git.zytor.com/users/hpa/kup/kup.git
* License : GPLv2+
  Programming Lang: Perl
  Description : kernel.org upload tool

This utility is used to upload files to kernel.org and other
systems using the same upload system (kup-server).  Each upload
is required to have a PGP signature, and the server will generate
multiple compressed formats if the content uploaded is intended to be
compressed.



-- 
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/2015230558.20771.33239.report...@shadbolt.decadent.org.uk



Re: libconfig9 for Wheezy?

2011-11-15 Thread Jose Luis Tallón

El 15/11/11 19:29, Ben Hutchings escribió:

On Tue, Nov 15, 2011 at 06:15:48PM +, Jonathan McCrohan wrote:

Hi,

libconfig [1] has not been updated since Squeeze, and is lagging
upstream by a major version.

Packaging the upstream release is not a problem, but an ABI change will
require a transition from libconfig8 to libconfig9.

The maintainer is aware of the problem, and this has been tracked as
wishlist bug #583528 since May 2010 [2].

Any sponsor / uploader welcome.
It isn't updated because nobody agreed to upload it, and I gave up 
eventually.




Is there enough time left to have this updated before the Wheezy freeze
window?


Very likely, but release questions should be sent to debian-release.

Yup.

/ J.L.


--
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/4ec2f3b0.8020...@adv-solutions.net



perl transition underway; breakage with libjson-pp-perl

2011-11-15 Thread Dominic Hargreaves
On Sun, Nov 13, 2011 at 01:59:19PM +, Dominic Hargreaves wrote:
 As per #637809, I plan to upload perl 5.14 to unstable soon (maybe today,
 depending on how some last bits of testing go). Like last time, this
 will mean that a large number (~ 470) of packages will need to be binNMUed
 by the release team. I'm sure they would appreciate uploads for these
 packages being avoided once the rebuilds start, so that the transition
 isn't interrupted, so I hope that this heads-up is useful. If this is
 likely to cause any serious problems for anyone, let me know ASAP.

As you've probably noticed, the transition is underway. There is an
unanticipated file conflict between the new perl package and
libjson-pp-perl. Fixed packages are being prepared; if you have
libjson-pp-perl installed, I suggest waiting until a fixed version of
libjson-pp-perl and perl has been uploaded before dist-upgrading your
sid systems. See #648893 and #648897 for more details.

Thanks,
Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)


-- 
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/2015233038.gu4...@urchin.earth.li



Re: /tmp as tmpfs and consequence for imaging software

2011-11-15 Thread John D. Hendrickson and Sara Darnell
I still think that is disagreeing with thought using /tmp is a bad idea is a good idea and agree 
with the people who are against.


debian-devel@lists.debian.orgAneurin Price wrote:

On 15 November 2011 08:17, Neil Williams codeh...@debian.org wrote:




Do not cripple all platforms with the sins of the weakest.


Microsoft did and still does CREATE incompatibility to kill any competition.  Get with the program 
they are not a debian friend they run people over quite readily.  They insert many historic in 
Wikipedia.  Visit the tomb of the lost linux users ! ?



On Tue, Nov 15, 2011 at 07:41:54AM +0100, Andrew Shadura wrote:
1KB // Yo momma uses IPv4!

Anything IPv6 does 32bit IPv4 can do ALLOT BETTER.  where's the promised permanent IPs.  why do they 
now have so much more control?  they planned it.




If you want highly specialized caching write code.  If are not sure if the cache is invalidated 
maybe you should be doing things another way.  It's quite complicated bsd about bit off more than 
they can chew already, considering hardware has similar and complicated paging blocking caching etc 
etc etc issues hacking these simply isn't a good idea.


ta ta, have a good day all !


--
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/4ec2f578.9080...@cox.net



Bug#648909: ITP: phlipple -- reduce 3D shapes to a single square

2011-11-15 Thread Miriam Ruiz
Package: wnpp
Severity: wishlist
Owner: Miriam Ruiz little_m...@yahoo.es


* Package name: phlipple
  Version : 0.8.2
  Upstream Author : Remigiusz Dybka remigiusz.dy...@gmail.com
* URL : http://phuzzboxmedia.com/games/phlipple
* License : GPL 3.0 or above
  Programming Lang: C
  Description : reduce 3D shapes to a single square

 Phlipple is a unique puzzle game. The goal of every level is to reduce
 a 3D shape to a single square. Elimination of squares is done by flipping
 edges around just like in a cardboard box. It starts off relatively easy
 to teach the basics just to later on serve hours of brain tickling fun.
 It's a great way to train memory as well as orientation in 3D.



-- 
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/2016030322.3855.80392.reportbug@danu.local



Bug#648889: /usr/include/features.h(323): catastrophic error: could not open source file bits/predefs.h

2011-11-15 Thread Jonathan Nieder
Wolfgang Tichy wrote:

 Thanks for your answer. I think the intel compiler does support the -B
 and -I options. So I think your suggestion would work. However, I am
 not sure if I like this solution.

It's only a workaround.  A fix would involve contacting the Intel
developers to get icc to search the new paths by default.

 I always loved debian for the fact
 that libraries and include files were in standard places (unlike say
 in redhat based distributions). So it was always easy to compile with
 any compiler.

Yes, I understand.

 Moving them to other places seems to complicate things.
 I mean I am no expert on multiarch and guess there are good reasons
 for that. But why can't there be symlinks to the files you need for
 your own architecture in standard places? Would that break something?

There are two sides to that question: would adding such symlinks be
feasible?  And would the resulting behavior of the system be desirable?

Compatibility symlinks for multiarch: the use case
--

Let's take the second question first.  If /usr/lib and /usr/include
were filled with symlinks to the corresponding architecture-specific
files for the native architecture, there would be some nice benefits:

 - multiarch-unaware compilers would continue to work
 - programs hard-coding paths to libraries would continue to work

On the other hand, binaries and builds for foreign architectures
would be likely to misbehave when libraries for that arch are missing
(/usr/lib/arch/foo.so is missing and /usr/lib/foo.so is not).  So
for someone using only multiarch-aware programs, the net effect is
negative.

Compatibility symlinks for multiarch: feasibility
-

Now the first question.  In wheezy, packages that are marked as such
can be installed on multiple architectures at once.  So, for example,
I can install the i386 and the amd64 versions of libavcodec at the
same time.

Which package would get to put a symlink to its library in /usr/lib?

It's tempting to say the native one, but it is not always clear
which one that is.  In fact, one of the goals of multiarch is to be
able to (gradually) upgrade an i386 system to an amd64 one.  At what
point has the native architecture switched?

A proposal
--

The above suggests to me a possible way forward.  To be clear, I do
not want to work on this; this is just a sketch of one way that people
who do want to work on it could try.

The idea is that there would be a separate package that installs
compatibility symlinks pointing to /usr/lib/triplet/* and
/usr/include/triplet/* to help people still using multiarch-unaware
tools.

Its post-installation script would be a simple script that scans
/usr/lib/triplet and /usr/include/triplet for added or removed
libraries and updates the corresponding symlinks in /usr/lib and
/usr/include.  Using triggers (see [1]) it would ensure that this
script is run for each apt run in which a file is installed to or
removed from /usr/lib/triplet or /usr/include/triplet.

This compatibility package could be removed at any time and
multiarch-aware packages would continue to work.

(Based on an idea from Matthias Klose[2].)

Of course, I would be even happier to see tools like icc learn about
the new paths.

Hope that helps,
Jonathan

[1] /usr/share/doc/dpkg-dev/triggers.txt.gz
[2] http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=40;bug=634821

 Thanks,
 Wolfgang

 PS: I do not mean to complain. I think Debian is great and I am
 grateful for the job you maintainers do. I only write because I like
 Debian, and thought this might be helpful...



-- 
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/2016035012.ga5...@elie.hsd1.il.comcast.net



Re: libconfig9 for Wheezy?

2011-11-15 Thread Reinhard Tartler
CC'ing mentors, as this issue seems to be blocked by a missing sponsor.

On Mi, Nov 16, 2011 at 00:20:16 (CET), Jose Luis Tallón wrote:

 El 15/11/11 19:29, Ben Hutchings escribió:
 On Tue, Nov 15, 2011 at 06:15:48PM +, Jonathan McCrohan wrote:
 Hi,

 libconfig [1] has not been updated since Squeeze, and is lagging
 upstream by a major version.

 Packaging the upstream release is not a problem, but an ABI change will
 require a transition from libconfig8 to libconfig9.

 The maintainer is aware of the problem, and this has been tracked as
 wishlist bug #583528 since May 2010 [2].
 Any sponsor / uploader welcome.
 It isn't updated because nobody agreed to upload it, and I gave up

I don't see the new version of the package on mentors. Please consider
uploading your new package there, it will then show up on
http://packages.qa.debian.org/libc/libconfig.html in the 'todo' box
AFAIUI.

Moreover, as this upload requires a transition, you'll need to
coordinate with the release team. These days, such transitions are
tracked in form of bugs against the 'release.debian.org' pseudo package:

http://bugs.debian.org/cgi-bin/pkgreport.cgi?pkg=release.debian.org;dist=unstable#_0_6_4

HTH,
Reinhard

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4


-- 
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/878vngljid@faui43f.informatik.uni-erlangen.de



Re: Bug#648896: ITP: kup -- kernel.org upload tool

2011-11-15 Thread Ben Hutchings
On Wed, 2011-11-16 at 06:53 +0100, Reinhard Tartler wrote:
 On Mi, Nov 16, 2011 at 00:05:58 (CET), Ben Hutchings wrote:
 
  Package: wnpp
  Severity: wishlist
  Owner: Ben Hutchings b...@decadent.org.uk
 
  * Package name: kup
Version : 0.2
Upstream Author : H. Peter Anvin h...@linux.intel.com
  * URL : git://git.zytor.com/users/hpa/kup/kup.git
 
 The URL is not a website. I haven't seen seen git:// urls in other
 package descriptions yet, but
 http://git.zytor.com/?p=users/hpa/kup/kup.git;a=summary would have made
 it easier, I think.

Maybe I'll do something like that.  It turns out that the canonical
location is the repository on git.kernel.org, by the way.

  * License : GPLv2+
Programming Lang: Perl
Description : kernel.org upload tool
 
  This utility is used to upload files to kernel.org and other
  systems using the same upload system (kup-server).  Each upload
  is required to have a PGP signature, and the server will generate
  multiple compressed formats if the content uploaded is intended to be
  compressed.
 
 Do you intend to package kup-server as well? It seems to be included in
 the same sources after all, but you don't mention it in the package
 description.

Yes.  The packaging is already committed at
http://anonscm.debian.org/gitweb/?p=kernel/kup.git.  I'm waiting for
the Perl transition to clear before uploading.

Ben.

-- 
Ben Hutchings
The world is coming to an end.  Please log off.


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


Re: Bug#648896: ITP: kup -- kernel.org upload tool

2011-11-15 Thread Reinhard Tartler
On Mi, Nov 16, 2011 at 00:05:58 (CET), Ben Hutchings wrote:

 Package: wnpp
 Severity: wishlist
 Owner: Ben Hutchings b...@decadent.org.uk

 * Package name: kup
   Version : 0.2
   Upstream Author : H. Peter Anvin h...@linux.intel.com
 * URL : git://git.zytor.com/users/hpa/kup/kup.git

The URL is not a website. I haven't seen seen git:// urls in other
package descriptions yet, but
http://git.zytor.com/?p=users/hpa/kup/kup.git;a=summary would have made
it easier, I think.

 * License : GPLv2+
   Programming Lang: Perl
   Description : kernel.org upload tool

 This utility is used to upload files to kernel.org and other
 systems using the same upload system (kup-server).  Each upload
 is required to have a PGP signature, and the server will generate
 multiple compressed formats if the content uploaded is intended to be
 compressed.

Do you intend to package kup-server as well? It seems to be included in
the same sources after all, but you don't mention it in the package
description.

Cheers,
Reinhard

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4


-- 
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/87vcqkk3yy@faui43f.informatik.uni-erlangen.de



Accepted fonts-yozvox-yozfont 13.08~beta17-dfsg-1 (source all)

2011-11-15 Thread Hideki Yamane
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 13 Nov 2011 16:10:11 +0900
Source: fonts-yozvox-yozfont
Binary: fonts-yozvox-yozfont fonts-yozvox-yozfont-new-kana 
fonts-yozvox-yozfont-standard-kana fonts-yozvox-yozfont-antique 
fonts-yozvox-yozfont-cute fonts-yozvox-yozfont-edu otf-yozvox-yozfont 
otf-yozvox-yozfont-new-kana otf-yozvox-yozfont-standard-kana 
otf-yozvox-yozfont-antique otf-yozvox-yozfont-cute otf-yozvox-yozfont-edu
Architecture: source all
Version: 13.08~beta17-dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Hideki Yamane henr...@debian.org
Description: 
 fonts-yozvox-yozfont - Japanese proportional Handwriting OpenType font
 fonts-yozvox-yozfont-antique - Japanese proportional Handwriting OpenType font 
(antique kana)
 fonts-yozvox-yozfont-cute - Japanese proportional Handwriting OpenType font 
(cute kana)
 fonts-yozvox-yozfont-edu - Japanese proportional Handwriting OpenType font 
(educational cana
 fonts-yozvox-yozfont-new-kana - Japanese proportional Handwriting OpenType 
font (new kana)
 fonts-yozvox-yozfont-standard-kana - Japanese proportional Handwriting 
OpenType font (standard kana)
 otf-yozvox-yozfont - transitional dummy package
 otf-yozvox-yozfont-antique - transitional dummy package
 otf-yozvox-yozfont-cute - transitional dummy package
 otf-yozvox-yozfont-edu - transitional dummy package
 otf-yozvox-yozfont-new-kana - transitional dummy package
 otf-yozvox-yozfont-standard-kana - transitional dummy package
Changes: 
 fonts-yozvox-yozfont (13.08~beta17-dfsg-1) unstable; urgency=low
 .
   * New upstream beta release
Checksums-Sha1: 
 a49b61fe6aa43b9e34ea59227cbb6bc664be2728 2956 
fonts-yozvox-yozfont_13.08~beta17-dfsg-1.dsc
 ffa25cad18aa8b4973db4f4b03586984260db162 124452680 
fonts-yozvox-yozfont_13.08~beta17-dfsg.orig.tar.xz
 d96de598b7b280f85c99da97bfdc120f765dfe45 5592 
fonts-yozvox-yozfont_13.08~beta17-dfsg-1.debian.tar.gz
 076ea09302ece20c7b83d2868ff6d35853b92df7 5572 
fonts-yozvox-yozfont_13.08~beta17-dfsg-1_all.deb
 f7fb6be9337af1e53d0770b0799d747cda5ad9a4 30417482 
fonts-yozvox-yozfont-new-kana_13.08~beta17-dfsg-1_all.deb
 3b47843d84aed432dfc9321b0ceb7aab7b4ce74d 42989844 
fonts-yozvox-yozfont-standard-kana_13.08~beta17-dfsg-1_all.deb
 10047b4b5dbaf52aad0a337c298d054e1b63f41c 43001272 
fonts-yozvox-yozfont-antique_13.08~beta17-dfsg-1_all.deb
 775e0e304a105b27ec6695ad68a438e5406de1bc 29956074 
fonts-yozvox-yozfont-cute_13.08~beta17-dfsg-1_all.deb
 8a54f6fab7c3e7a4fdff264b9d0009525ade13a7 30426902 
fonts-yozvox-yozfont-edu_13.08~beta17-dfsg-1_all.deb
 ef47deebf29fa8cb7f9d73d6f42b847b25ac63da 5344 
otf-yozvox-yozfont_13.08~beta17-dfsg-1_all.deb
 d1f59bff1733b9c9e7cc750b22912cc86b18c381 5364 
otf-yozvox-yozfont-new-kana_13.08~beta17-dfsg-1_all.deb
 d904b098f213b2b870b48e3a8143acc9 5364 
otf-yozvox-yozfont-standard-kana_13.08~beta17-dfsg-1_all.deb
 1e9835752ad56917fe9523021bc0214d23cc2cb0 5356 
otf-yozvox-yozfont-antique_13.08~beta17-dfsg-1_all.deb
 bee1110349e9870c0970bdda9a686ae2a2d90705 5346 
otf-yozvox-yozfont-cute_13.08~beta17-dfsg-1_all.deb
 4d88135fa332899d5148b5f76ce73c9440ffa83a 5344 
otf-yozvox-yozfont-edu_13.08~beta17-dfsg-1_all.deb
Checksums-Sha256: 
 3aaa5944e469a61b6321714cdcfa49e58852eb5d1d4e19e04c609b5bb223b24a 2956 
fonts-yozvox-yozfont_13.08~beta17-dfsg-1.dsc
 dd4e696840cb8ce95335d4d9904f2a135c9ec7778dab6764e39068d2e0979d91 124452680 
fonts-yozvox-yozfont_13.08~beta17-dfsg.orig.tar.xz
 133a0335807f5e4adc71cf491259b5a580eb2ea33253f9e55c5dabc16837a95c 5592 
fonts-yozvox-yozfont_13.08~beta17-dfsg-1.debian.tar.gz
 5e73acb5d89fd0a0463577da540c6ece2a6f045672bb29bf8ed4f4add45dedb4 5572 
fonts-yozvox-yozfont_13.08~beta17-dfsg-1_all.deb
 b9c93c2e797da8b3ea8c7f8a17536a718583fab9c21928728f55cbb37e640ab1 30417482 
fonts-yozvox-yozfont-new-kana_13.08~beta17-dfsg-1_all.deb
 0527e3393d64998cbf4fe5827971511d20de2b350f3f5094e4b52b604166d305 42989844 
fonts-yozvox-yozfont-standard-kana_13.08~beta17-dfsg-1_all.deb
 8323d0ef362e6a5ba10a724c31d5c93532d8da4862a8fefdbfe3b804e7db42fb 43001272 
fonts-yozvox-yozfont-antique_13.08~beta17-dfsg-1_all.deb
 b2cc961cf3eb80c6369af4cd660c4734591758bf7d73d7169cb66a14dd1c7b97 29956074 
fonts-yozvox-yozfont-cute_13.08~beta17-dfsg-1_all.deb
 243211f38393378857825e1ec7dffd1de05a7fb7157645cc516d194a95bc7481 30426902 
fonts-yozvox-yozfont-edu_13.08~beta17-dfsg-1_all.deb
 0c3a6c83675092642e0f994e842d8932bd80cbc25186b3200ec2683d6bd5ca27 5344 
otf-yozvox-yozfont_13.08~beta17-dfsg-1_all.deb
 640a19383ca753b2a97756759869785970b6828f1e7625c695156bf856d5d795 5364 
otf-yozvox-yozfont-new-kana_13.08~beta17-dfsg-1_all.deb
 cc5a47a64a9928f3edb06a6792f95ce6c97b34877a5a64e3f4ae6e3ddc31acd1 5364 
otf-yozvox-yozfont-standard-kana_13.08~beta17-dfsg-1_all.deb
 aff6e974c0fcc45394a4af175a984602dd51ff50edec65a575b616e2f58d 5356 
otf-yozvox-yozfont-antique_13.08~beta17-dfsg-1_all.deb
 8a67cd072fe1fd914255ef0c1289d8917f66d965ace3a5bda1ebfa6f7574ff7b 

Accepted gcc-snapshot 20111114-1 (source amd64)

2011-11-15 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Nov 2011 21:49:45 +0100
Source: gcc-snapshot
Binary: gcc-snapshot
Architecture: source amd64
Version: 2014-1
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 gcc-snapshot - A SNAPSHOT of the GNU Compiler Collection
Changes: 
 gcc-snapshot (2014-1) unstable; urgency=low
 .
   * Update to SVN 2014 from the trunk (first build in stage3).
Checksums-Sha1: 
 c040368c3a982a2733c2879345e12015e30621b6 3360 gcc-snapshot_2014-1.dsc
 7660fd85c9a7751a12f6d7cc258c485ea6729c1f 62051386 
gcc-snapshot_2014.orig.tar.gz
 efe70750cd79adccfdf91fb33ff4dec5e8aed26f 467877 gcc-snapshot_2014-1.diff.gz
 e818fa4b48c193dfc8bc2787978cd371754c85fb 139055014 
gcc-snapshot_2014-1_amd64.deb
Checksums-Sha256: 
 ac8513664780a8cf637aa1dc73bbdd04e95e349eb29b628658989134df362fc1 3360 
gcc-snapshot_2014-1.dsc
 39efe91cabbfb3d0a0d1c2cc73556db219b8a98ef0ae5c9471e3d32e420fd695 62051386 
gcc-snapshot_2014.orig.tar.gz
 6f342d4b279d76c80c2dc6752ee9a7719f9829e2e1c67dca08d450170e552247 467877 
gcc-snapshot_2014-1.diff.gz
 2a1292df4c9441fc91756e50235335c0d94a77a59079ee4b85f905714a93d01b 139055014 
gcc-snapshot_2014-1_amd64.deb
Files: 
 4787e7a0c258bf8e7805ebee5a5c6d31 3360 devel optional 
gcc-snapshot_2014-1.dsc
 5f703669460cd9ac1fde5da7f633a67e 62051386 devel optional 
gcc-snapshot_2014.orig.tar.gz
 aae717e5be48d8105ec1d8e7ed7a6939 467877 devel optional 
gcc-snapshot_2014-1.diff.gz
 ef1ea7125c37bbadbb5a998f7400b2ee 139055014 devel extra 
gcc-snapshot_2014-1_amd64.deb

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

iEYEARECAAYFAk7CEkQACgkQStlRaw+TLJzxGwCZAVBacptZlZuUAce7hWnfffg3
ZsoAoIRseltQ0syKyy+Gw72vfIqEnxpb
=xqQ2
-END PGP SIGNATURE-


Accepted:
gcc-snapshot_2014-1.diff.gz
  to main/g/gcc-snapshot/gcc-snapshot_2014-1.diff.gz
gcc-snapshot_2014-1.dsc
  to main/g/gcc-snapshot/gcc-snapshot_2014-1.dsc
gcc-snapshot_2014-1_amd64.deb
  to main/g/gcc-snapshot/gcc-snapshot_2014-1_amd64.deb
gcc-snapshot_2014.orig.tar.gz
  to main/g/gcc-snapshot/gcc-snapshot_2014.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/e1rqf1q-rx...@franck.debian.org



Accepted gcj-4.6 4.6.2-2 (source all amd64)

2011-11-15 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Nov 2011 22:20:22 +0100
Source: gcj-4.6
Binary: gcj-4.6-base gcj-4.6-jdk gcj-4.6-jre-headless gcj-4.6-jre libgcj12 
gcj-4.6-jre-lib libgcj12-awt libgcj12-dev libgcj12-dbg gcj-4.6-source libgcj-doc
Architecture: source all amd64
Version: 4.6.2-2
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 gcj-4.6-base - GCC, the GNU Compiler Collection (gcj base package)
 gcj-4.6-jdk - gcj and classpath development tools for Java(TM)
 gcj-4.6-jre - Java runtime environment using GIJ/classpath
 gcj-4.6-jre-headless - Java runtime environment using GIJ/classpath (headless 
version)
 gcj-4.6-jre-lib - Java runtime library for use with gcj (jar files)
 gcj-4.6-source - GCJ java sources for use in IDEs like eclipse and netbeans
 libgcj-doc - libgcj API documentation and example programs
 libgcj12   - Java runtime library for use with gcj
 libgcj12-awt - AWT peer runtime libraries for use with gcj
 libgcj12-dbg - Debugging symbols for libraries provided in libgcj12-dev
 libgcj12-dev - Java development headers for use with gcj
Changes: 
 gcj-4.6 (4.6.2-2) unstable; urgency=medium
 .
   * Sync packaging with gcc-4.6 4.6.2-4.
Checksums-Sha1: 
 fd2f1f2a84ccfb4702a6f43bcbc8438b5adec403 3578 gcj-4.6_4.6.2-2.dsc
 d13aa6296d1d8bcac81b8a6f8395b5ab1d08f2ba 819150 gcj-4.6_4.6.2-2.diff.gz
 8c05df66bd8449e4e9bb72e32a724a5496896c3b 10484318 
gcj-4.6-jre-lib_4.6.2-2_all.deb
 a69ff54799f6c39ab6061abb1e9f085665df8dd9 12302934 
gcj-4.6-source_4.6.2-2_all.deb
 96fe2d20574348023d62dc4795301f10831dac4f 43679362 libgcj-doc_4.6.2-2_all.deb
 711f2c9766f96f6560c1dc258fd0ff1899405e84 124334 gcj-4.6-base_4.6.2-2_amd64.deb
 cbce0ae496d22e48442ef9b97958358043e3547e 53576 
gcj-4.6-jre-headless_4.6.2-2_amd64.deb
 ef5c27177a368190fd624986705d6668b2b30b3b 13712110 libgcj12_4.6.2-2_amd64.deb
 4fa08ee5be45724e6fa9b10f8a875d8b8dffacc9 82792 libgcj12-awt_4.6.2-2_amd64.deb
 3553970021b3ef76fd5ed848841f27034bbf74a1 1010 gcj-4.6-jre_4.6.2-2_amd64.deb
 d67043352cd2101200d95393319aab82960d954f 767924 libgcj12-dev_4.6.2-2_amd64.deb
 e45d376e069c2ebf929f70362a4e3c83f6e8e8af 24893486 
libgcj12-dbg_4.6.2-2_amd64.deb
 3463fa1aca6b52cbdf5274d938b0c8580f6ef0fe 4938098 gcj-4.6-jdk_4.6.2-2_amd64.deb
Checksums-Sha256: 
 f39d03c7868e8d7e8065932703626ea9cdad5e95872fb1d57da7b4ce7b4bc61d 3578 
gcj-4.6_4.6.2-2.dsc
 009055aec6f8438cc3e212d44e806626bc0bfb6144c649b5b44383754b4eadb4 819150 
gcj-4.6_4.6.2-2.diff.gz
 c152ba503506928b41e349c514cdcb4ab13232542b0031b8f3391beb8577891b 10484318 
gcj-4.6-jre-lib_4.6.2-2_all.deb
 5a886d94b99c148deab2d98b44bff7f3000575805987b6c5e96e63459914d195 12302934 
gcj-4.6-source_4.6.2-2_all.deb
 4f5377767b70ba5a80839ac21314bebc0150de3926764b892fb86172ca0023de 43679362 
libgcj-doc_4.6.2-2_all.deb
 9aa0fc44d981da63eca41c48ade03c6c6e308c94ad500e7c485850cf41cb0b20 124334 
gcj-4.6-base_4.6.2-2_amd64.deb
 5f435389c2a5d5dbfdb3e3e39d4badd371e54264b5f5db0acad4b79605446404 53576 
gcj-4.6-jre-headless_4.6.2-2_amd64.deb
 d25daa0e8948acadcedd83dc1c915de8829a1d27c9dfc31c9000c5378afbeb70 13712110 
libgcj12_4.6.2-2_amd64.deb
 b1d9545cad9be1af1d7e3f0339c3a9b7dfde3a360aaaf31ff4e42879cd818a9f 82792 
libgcj12-awt_4.6.2-2_amd64.deb
 7e9d2868427dc023b252052e31447fa8dde72c99a0e44e3b2bb5a0511ed0ac37 1010 
gcj-4.6-jre_4.6.2-2_amd64.deb
 28c206f1c1c58c22fe02b6632125bb6630f25d6da90a3769e1c3b3058e532985 767924 
libgcj12-dev_4.6.2-2_amd64.deb
 2b713b397d954d94be043ca03fbaee90a5acdd07a7d787a00ef11dd7770fca66 24893486 
libgcj12-dbg_4.6.2-2_amd64.deb
 417328489acc228f0f0d952442f823267e4cf4f72bedcebfa315ddb2cb64a6d1 4938098 
gcj-4.6-jdk_4.6.2-2_amd64.deb
Files: 
 78e72e9035e97648ed4be36e82850500 3578 devel optional gcj-4.6_4.6.2-2.dsc
 90dcdaf806a0367f1cbefffe5b3f841d 819150 devel optional gcj-4.6_4.6.2-2.diff.gz
 5a46b3c76ea16b68290bbe7a2eb5ccff 10484318 java optional 
gcj-4.6-jre-lib_4.6.2-2_all.deb
 2fff498b9074467841abe6b206c33ec8 12302934 java optional 
gcj-4.6-source_4.6.2-2_all.deb
 a37f0f733167b7e6a3bf91335b127767 43679362 doc optional 
libgcj-doc_4.6.2-2_all.deb
 87e245669d28c8de4cd3732bd90177cb 124334 libs optional 
gcj-4.6-base_4.6.2-2_amd64.deb
 c3cadc9163c1bd6452da0354f2f9afdc 53576 java optional 
gcj-4.6-jre-headless_4.6.2-2_amd64.deb
 c082e9c0c92a2b4ba4e7309eb7a7f7e5 13712110 libs optional 
libgcj12_4.6.2-2_amd64.deb
 941af174362f53790a74cca11537d561 82792 libs optional 
libgcj12-awt_4.6.2-2_amd64.deb
 874dcf2e086bd0cf025340441285b283 1010 java optional 
gcj-4.6-jre_4.6.2-2_amd64.deb
 bc25556c8cb269dd085e8ebf8343db5e 767924 libdevel optional 
libgcj12-dev_4.6.2-2_amd64.deb
 a4b3ae7fa30857431a189db26f2979b6 24893486 debug extra 
libgcj12-dbg_4.6.2-2_amd64.deb
 db19c026281f29b9f381f546a6230366 4938098 java optional 
gcj-4.6-jdk_4.6.2-2_amd64.deb

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

iEYEARECAAYFAk7CEmAACgkQStlRaw+TLJwnugCglhIDKiguBkcktlhWCRHeKFZI

Accepted gnat-4.6 4.6.2-2 (source amd64)

2011-11-15 Thread Ludovic Brenta
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Nov 2011 10:32:28 +0100
Source: gnat-4.6
Binary: gnat-4.6-base gnat-4.6 gnat-4.6-sjlj libgnat-4.6 libgnat-4.6-dbg 
libgnatvsn4.6-dev libgnatvsn4.6 libgnatvsn4.6-dbg libgnatprj4.6-dev 
libgnatprj4.6 libgnatprj4.6-dbg
Architecture: source amd64
Version: 4.6.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Ludovic Brenta lbre...@debian.org
Description: 
 gnat-4.6   - GNU Ada compiler
 gnat-4.6-base - GNU Ada compiler (common files)
 gnat-4.6-sjlj - GNU Ada compiler (setjump/longjump runtime library)
 libgnat-4.6 - runtime for applications compiled with GNAT (shared library)
 libgnat-4.6-dbg - runtime for applications compiled with GNAT (debugging 
symbols)
 libgnatprj4.6 - GNU Ada compiler Project Manager (shared library)
 libgnatprj4.6-dbg - GNU Ada compiler Project Manager (debugging symbols)
 libgnatprj4.6-dev - GNU Ada compiler Project Manager (development files)
 libgnatvsn4.6 - GNU Ada compiler selected components (shared library)
 libgnatvsn4.6-dbg - GNU Ada compiler selected components (debugging symbols)
 libgnatvsn4.6-dev - GNU Ada compiler selected components (development files)
Closes: 614402
Changes: 
 gnat-4.6 (4.6.2-2) unstable; urgency=low
 .
   [Євгеній Мещеряков]
   * debian/patches/pr47818.diff: new.  Closes: #614402.
   * debian/rules.patch: apply it.
 .
   Merge from gcc-4.6 (4.6.2-4) unstable; urgency=low
 .
   * Update to SVN 2003 (r180830) from the gcc-4_6-branch.
 - Fix PR target/50691, PR c++/50901, PR target/50945,
   PR rtl-optimization/47918, PR libstdc++/50880.
 .
   * Configure the armel build by explicitly passing --with-arch=armv4t
 --with-float=soft.
   * libffi: Simplify PowerPC assembly and avoid CPU-specific string
 instructions (Kyle Moffett).
   * Fix MULTIARCH_DIRNAME on powerpcspe (Kyle Moffett). Fixes: #647324.
Checksums-Sha1: 
 1ed2ac249ac76a68f5e511b289860d41ed02c0a0 2911 gnat-4.6_4.6.2-2.dsc
 207ce0e1822b4ff2824d47d3c29442addfcb5ee0 795296 gnat-4.6_4.6.2-2.tar.gz
 21f9afe2cf397d7691156c3360401302a19549fa 147326 gnat-4.6-base_4.6.2-2_amd64.deb
 cc7cafed399d14cab42629ce2ebeba3faca75471 1189164 libgnat-4.6_4.6.2-2_amd64.deb
 764e7b370a63bc1fc7bcaa9f2fe0b62b59f127d5 2058322 
libgnat-4.6-dbg_4.6.2-2_amd64.deb
 901cdeb7f74f202603e3d0b9b6f238049129ef14 1809366 
libgnatvsn4.6-dev_4.6.2-2_amd64.deb
 d4f11222308559fa28f0387bad1ceb6f20a11cf0 350716 libgnatvsn4.6_4.6.2-2_amd64.deb
 a34883f652bae159e99edeffa9dd85214f617b91 477894 
libgnatvsn4.6-dbg_4.6.2-2_amd64.deb
 e9ade16dfe5c4afb31d13d5d2ea144418c9e3665 3064472 
libgnatprj4.6-dev_4.6.2-2_amd64.deb
 fad8fa936cf3656ca3b053b1fdd95266105307c3 608292 libgnatprj4.6_4.6.2-2_amd64.deb
 8d59584184689f94a4183d8170d10ec8b37955e2 1040430 
libgnatprj4.6-dbg_4.6.2-2_amd64.deb
 b98b1db913c8024c05e5097ca246002a7b41 11733618 gnat-4.6_4.6.2-2_amd64.deb
 272e25795287209f6b13862d4c9678916ff14e37 4608792 
gnat-4.6-sjlj_4.6.2-2_amd64.deb
Checksums-Sha256: 
 4284ad707f954a105152d91b8df0a1bce496e396153bf52d02d395baa9023962 2911 
gnat-4.6_4.6.2-2.dsc
 d74c653ae5be04988cdc132f1bdc375b8d1af6b297672620a6f38bacd41678c5 795296 
gnat-4.6_4.6.2-2.tar.gz
 3309a42c94fa340d54e1b8ad02dcce1c4b8dcd5e521e16dbb48fd8c3a4808ab4 147326 
gnat-4.6-base_4.6.2-2_amd64.deb
 dfff086a4daaffdc38118177cff4d40ef978687d3d8b80187f1e6b15040c1e4b 1189164 
libgnat-4.6_4.6.2-2_amd64.deb
 dfb86dd74269d522e5ff2fdc13b302b8a3723cc7153cd1163720eed33613e839 2058322 
libgnat-4.6-dbg_4.6.2-2_amd64.deb
 031218415c38060872752ebd9579821db035905932a28989be253edf36f8d5c0 1809366 
libgnatvsn4.6-dev_4.6.2-2_amd64.deb
 8fe18a42d73cf45b4366f88bd1fbe89eac2f8cfe88f306efe8ed25fffe887da6 350716 
libgnatvsn4.6_4.6.2-2_amd64.deb
 00edef4d021d3a0e6888be2c9f6109c39b7dc6312c793e41ec902cff4b0b1e52 477894 
libgnatvsn4.6-dbg_4.6.2-2_amd64.deb
 015c3065398093aff568475c88ba3724f525d43a3403c11bd5dfb944dcbf2ad7 3064472 
libgnatprj4.6-dev_4.6.2-2_amd64.deb
 496fc328b7e7bc07df33032036fe9e460be0121c8ef9509a55f87564f50481cf 608292 
libgnatprj4.6_4.6.2-2_amd64.deb
 d2c913d6dcef8e26a5aa98ae6e67d5f3c8857db9a7d898faf3d59acb4e68214c 1040430 
libgnatprj4.6-dbg_4.6.2-2_amd64.deb
 13e03ed8f9339bb2c1d571bcccbc292da2326774eec18a3e1336040a0c0f4bbb 11733618 
gnat-4.6_4.6.2-2_amd64.deb
 7bff271131a4aeb16de0259a56346a685df939745582f5dfeb0a62a2164d1039 4608792 
gnat-4.6-sjlj_4.6.2-2_amd64.deb
Files: 
 0d81ef01017d8c30148a478755a6feae 2911 devel optional gnat-4.6_4.6.2-2.dsc
 68b32c1f9a28f8bd67791a15ffbd91f4 795296 devel optional gnat-4.6_4.6.2-2.tar.gz
 64369226ab4c9d5e98fffb3ee06657dc 147326 libs optional 
gnat-4.6-base_4.6.2-2_amd64.deb
 2f8b474f46d855260feaead315cc78e4 1189164 libs optional 
libgnat-4.6_4.6.2-2_amd64.deb
 b811d996ff17c0913f674ee80611ad60 2058322 debug extra 
libgnat-4.6-dbg_4.6.2-2_amd64.deb
 ab040f4172046f83bafc76f50e62ca2c 1809366 libdevel extra 
libgnatvsn4.6-dev_4.6.2-2_amd64.deb
 5e02afce4255be6549c2cc9f9e9c89e8 350716 libs optional 

Accepted piwigo 2.3.1-1 (source all)

2011-11-15 Thread Nicolas Roudaire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 Nov 2011 20:38:12 +0100
Source: piwigo
Binary: piwigo piwigo-mysql piwigo-pgsql piwigo-sqlite
Architecture: source all
Version: 2.3.1-1
Distribution: unstable
Urgency: medium
Maintainer: Nicolas Roudaire nikro...@gmail.com
Changed-By: Nicolas Roudaire nikro...@gmail.com
Description: 
 piwigo - photo gallery software for the web
 piwigo-mysql - metapackage providing MySQL dependencies for piwigo
 piwigo-pgsql - metapackage providing PostgreSQL dependencies for piwigo
 piwigo-sqlite - metapackage providing SQLite dependencies for piwigo
Closes: 642924 645829
Changes: 
 piwigo (2.3.1-1) unstable; urgency=medium
 .
   * New upstream release
   * urgency=medium because of issue in prerm script. piwigo cannot be removed.
 Fix incorrect test in prerm (Closes: #645829)
   * Change Sqlite database location (Closes: #642924)
Checksums-Sha1: 
 75a3bda4de42be678b8030a65a998fab9e22288a 1948 piwigo_2.3.1-1.dsc
 57673411b25a2cb7a378df1216544f1fb073a409 2892236 piwigo_2.3.1.orig.tar.gz
 39fc55f3e359963e9182a91e71a988218112b17a 95975 piwigo_2.3.1-1.debian.tar.gz
 ab9db2e0b3277b0036fbc3d444100793eb26965c 2631886 piwigo_2.3.1-1_all.deb
 d84e411eee744c80b68d4b116e11eeeac6516c96 3912 piwigo-mysql_2.3.1-1_all.deb
 ac66c72a5b667e745b7bfa594780cb2026116f7b 3922 piwigo-pgsql_2.3.1-1_all.deb
 350999ba63e4e0400fb1b2c0a14f9904b6326ec6 3904 piwigo-sqlite_2.3.1-1_all.deb
Checksums-Sha256: 
 e7e17ffe812182c31a4702f2545e8008312bfd87314ed655e121b90033de62b6 1948 
piwigo_2.3.1-1.dsc
 06ba27baddd85603650e3b6fd49c5b9b8d2958b724cf43fb58b0c083bc170f9f 2892236 
piwigo_2.3.1.orig.tar.gz
 56f2341824be8d59ef77e39cf659859b412ebbe6cf60f1275d1eee45750dafb3 95975 
piwigo_2.3.1-1.debian.tar.gz
 15c49a8217d8c0f58d7115571632f1009392009285819803536100f590131014 2631886 
piwigo_2.3.1-1_all.deb
 3e7c25267f485adb6babf4346d0b98a1f3f7e704e6e16b0c174e92346bc01de6 3912 
piwigo-mysql_2.3.1-1_all.deb
 b1f49ebfd0f6f394da9a36d3259152d7d5acbcc71d3ccd18432b8045aeb6271b 3922 
piwigo-pgsql_2.3.1-1_all.deb
 f063d7baace618170e157de7d3ff0820971bb08f84b9a76eb552ec0fbe5990dc 3904 
piwigo-sqlite_2.3.1-1_all.deb
Files: 
 f291f268b767181bf594d5caeca9e91a 1948 web optional piwigo_2.3.1-1.dsc
 15e9c7d6a4b098d4276e864cc8952b74 2892236 web optional piwigo_2.3.1.orig.tar.gz
 79fe1fe22495d921504874d638791d24 95975 web optional 
piwigo_2.3.1-1.debian.tar.gz
 67f91668009b89bdcd37ab881f319203 2631886 web optional piwigo_2.3.1-1_all.deb
 da4de00188b12ee9d9758c2742ab 3912 web optional piwigo-mysql_2.3.1-1_all.deb
 8cb7ead395fdf4317d34d4e080c2ca8c 3922 web optional piwigo-pgsql_2.3.1-1_all.deb
 79542cbe7d3d21fd58ec116aa55d97c1 3904 web optional 
piwigo-sqlite_2.3.1-1_all.deb

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

iQIcBAEBCAAGBQJOwiVzAAoJEKgvu4Pz1XAzAF0QAKb1o6ShgGPq/z5CoNY87jWd
/FLr4RDX3+ENKX7OITwEXjwYdPq99Iz5O7JBVUOFP7ut6u8a/+AXkJQ7zPjSWgnM
IqeTuLLuEN5TGuJJ+TNnFC0T+u8iNL/Tg1Vx0VUrAV6pF9ZJB7QTooXIadOKlxWR
HusW1wSooDQoRVlUrXZ2vCZfaAdF6aFrlGGizKh2HhJuVBqO1Vwfa45JIDYXYNM5
ll79CuQY/YhmyQD1qb9jaZE3Q5ZNyE63pdW+NoIUDjSwoZtqgL9lh+QpTo4u+8aX
yQ16uIIJ/r83Xri0q4d2MW9d640gwkpQFED8+LeJ1ePOBgYcBa0Z9BTlq08u4hdw
BtG3Es0qZZm4/V0sqUdUisKuys91RpVOJG8iEidFb9VUdcWvxXFR0W0mYNxYDixa
/faqOF+TlZI5FJG7CTvGKkEQYhfNgiJkl0n+O2VtjFSGGSsLBuTdwrpZzif1Yxv5
DOJ6rCf85459aBuU4+m/BQlzgbp3z2jLa4B/cHEct6Rf9QhoqyAxAbDd37SmLI61
vXf9VWyfOGH2lAEYfneoWa+DwRYENu3hbMsI5blDX4LGJ9n+XIW7yalV7TLsaU5q
jimCD96wU8aBVGg4u9z0V6kxWHOtaDK8xmDsZhtUgwmdmuFpklzEKJYuaezck15V
BQSGvvROIHxqiW54j4TE
=QDFS
-END PGP SIGNATURE-


Accepted:
piwigo-mysql_2.3.1-1_all.deb
  to main/p/piwigo/piwigo-mysql_2.3.1-1_all.deb
piwigo-pgsql_2.3.1-1_all.deb
  to main/p/piwigo/piwigo-pgsql_2.3.1-1_all.deb
piwigo-sqlite_2.3.1-1_all.deb
  to main/p/piwigo/piwigo-sqlite_2.3.1-1_all.deb
piwigo_2.3.1-1.debian.tar.gz
  to main/p/piwigo/piwigo_2.3.1-1.debian.tar.gz
piwigo_2.3.1-1.dsc
  to main/p/piwigo/piwigo_2.3.1-1.dsc
piwigo_2.3.1-1_all.deb
  to main/p/piwigo/piwigo_2.3.1-1_all.deb
piwigo_2.3.1.orig.tar.gz
  to main/p/piwigo/piwigo_2.3.1.orig.tar.gz


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



Accepted e2wm 1.2-1 (source all)

2011-11-15 Thread KURASHIKI Satoru
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 26 Oct 2011 19:43:38 +0900
Source: e2wm
Binary: e2wm
Architecture: source all
Version: 1.2-1
Distribution: unstable
Urgency: low
Maintainer: KURASHIKI Satoru lur...@gmail.com
Changed-By: KURASHIKI Satoru lur...@gmail.com
Description: 
 e2wm   - simple window manager for emacs
Closes: 645279
Changes: 
 e2wm (1.2-1) unstable; urgency=low
 .
   * Initial release (Closes: #645279)
Checksums-Sha1: 
 cd2dbe8aec1094dc3760172ec4756674a67aed22 1875 e2wm_1.2-1.dsc
 9eee908a629d81805df831fdfc0cc297b58810cf 35202 e2wm_1.2.orig.tar.gz
 22c123018714a85f7d44219dfc1d6b3ff24933ab 3265 e2wm_1.2-1.debian.tar.gz
 fac599a8e98690c9307301edf9570390e2c3e71e 40028 e2wm_1.2-1_all.deb
Checksums-Sha256: 
 d06a22bf39fab100ee5ce44ca621a83d79c57fbf9054c79801caa688232d9866 1875 
e2wm_1.2-1.dsc
 5fb6b2bf0627c42e708496539fbaf229d1519675e6217441df423e099464eae6 35202 
e2wm_1.2.orig.tar.gz
 a99a223ed19bb0c3e658c77615a130f2af971d363bb3c93fde8f3d55500feef1 3265 
e2wm_1.2-1.debian.tar.gz
 e0747b3b90cadbe6ee4727dfe0df598cb0f9591a9c3ac1b45d363fb2ce7060c0 40028 
e2wm_1.2-1_all.deb
Files: 
 303c1587ef2ba7e429aad957d614561f 1875 lisp extra e2wm_1.2-1.dsc
 f3c438c50c50521aba8ef94c9b1be67f 35202 lisp extra e2wm_1.2.orig.tar.gz
 41cd2bb55dd5819d23af26d367c7a234 3265 lisp extra e2wm_1.2-1.debian.tar.gz
 de3481a2fcc43c3d1561092ad244f291 40028 lisp extra e2wm_1.2-1_all.deb

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

iQIcBAEBCAAGBQJOwPs9AAoJEHGoAtC80bySv88P/RCqTUxLZLS3S7+y41jnDaPL
bPm46rdr0zIvvaBPQoKio8WgeBhbT5XS68dP86Lf7VaGLGdnefDWdyn6W/uq7pw3
TiA6VCgTy614Ndbh+Gezp7vgo8Gx2/6PkSw1mejS2KIfDOIODYFQwBJS4UjuVMZV
vhL96Fz77frjx6ACtCPDgkCD1/fqX8k58FjWqn946pXvGBU4T01S/GmpNuyfIt+1
FY1rfgczgdVKuuUbkxe/lZpLe98YX8/Ac+4JXQ/3X8rpf2hRMYdpqGEbGSYHr3Wm
gM3mIX1AbS2SAJmRYuMa1p2U+czF/dyrNn7+b8Netu6E+asq6N7nQwXUpiIMrPyv
u9WDbo7D6ma/QZR0+tOA+YnY/C1KXz0y9PqtPCh5vu0hPe13QLU82QBbs8LfEitK
tSOuwFFSQhIW44SuiO7uVuuof4Gtk8qF5u7m3gdbmhcbAC5jw/A8evzJHRSBduwo
8rpiFtDWGaxqBiloL3jLHHOt0GqNgWxZUu2bHWyQmiVeWctHdk5IK/8RJsX4zIM/
z1E//juVzvB5V1I4igDH+IokXd+SZscwjvRWpPTCmN0jdVXh1NP3xWTUJCxqbmMZ
yXNK3Ty5iGs2Yr7Ib+0tcoUq2JpSTivPB/hH+E9XoYHzrbBmkBydBc7VzWO41rKm
YUWj+QtOUrqlcS3+BHyK
=DLgT
-END PGP SIGNATURE-


Accepted:
e2wm_1.2-1.debian.tar.gz
  to main/e/e2wm/e2wm_1.2-1.debian.tar.gz
e2wm_1.2-1.dsc
  to main/e/e2wm/e2wm_1.2-1.dsc
e2wm_1.2-1_all.deb
  to main/e/e2wm/e2wm_1.2-1_all.deb
e2wm_1.2.orig.tar.gz
  to main/e/e2wm/e2wm_1.2.orig.tar.gz


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



Accepted libnss-sshsock 0.1-1 (source i386)

2011-11-15 Thread Vagrant Cascadian
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Nov 2011 09:54:29 -0800
Source: libnss-sshsock
Binary: libnss-sshsock2
Architecture: source i386
Version: 0.1-1
Distribution: unstable
Urgency: low
Maintainer: Vagrant Cascadian vagr...@debian.org
Changed-By: Vagrant Cascadian vagr...@debian.org
Description: 
 libnss-sshsock2 - NSS module using an ssh socket connection
Changes: 
 libnss-sshsock (0.1-1) unstable; urgency=low
 .
   * Initial release.
Checksums-Sha1: 
 169a94432cdae3dc5c8e9a18dc7078e11f62ef7a 1718 libnss-sshsock_0.1-1.dsc
 5b5b196cb0a0fae71bcbc8291ee2b1f8ee62839a 12598 libnss-sshsock_0.1.orig.tar.gz
 c2ec53720cb52562affb8b643a3677bf4dbbceb6 1574 
libnss-sshsock_0.1-1.debian.tar.gz
 9d7be66d11d0ada6dce1553e3baccb423905f99a 11702 libnss-sshsock2_0.1-1_i386.deb
Checksums-Sha256: 
 399f62d0fe77fe5414d4b4bbed84abfa7a946405d1f9873586ef32391f240941 1718 
libnss-sshsock_0.1-1.dsc
 16d3542c675bd5370a72eb12fdfb0a042b32f2753668f5e034ceb430e9647074 12598 
libnss-sshsock_0.1.orig.tar.gz
 ffde44b1e480ceb2bbede3268f26902b495bc6156ab80b73537c132c6aa0152c 1574 
libnss-sshsock_0.1-1.debian.tar.gz
 4701729c34c7ddb2debee289aac7df9f4475818592138f3af0469c3b92210194 11702 
libnss-sshsock2_0.1-1_i386.deb
Files: 
 0980afb01d5891f89be37c21d34d1f3d 1718 admin extra libnss-sshsock_0.1-1.dsc
 7d03936065cfbde90eed2f0faf81a4c2 12598 admin extra 
libnss-sshsock_0.1.orig.tar.gz
 f5403c30198f5fe014f704de276b4958 1574 admin extra 
libnss-sshsock_0.1-1.debian.tar.gz
 b0df830d97a89760b6ba67435f7f7365 11702 admin extra 
libnss-sshsock2_0.1-1_i386.deb

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

iQIcBAEBAgAGBQJOwVifAAoJELeLgtSBS5G2jHkQAJPkoymhK/WFZUmj2JKXCoUo
kThHDHmvHStDoLXIbit1Scpmzy9T1Unx807Bn5nMglC4Yq4jK0JEE4Kkq068VISZ
zhNJiZSPgTkCp8K7vSqfgcM3HT+svYQyV//yG4N7CF5bcStP9QxEMeDbvIZAVQIt
JJd+SqTVw01HrNBia1MpPaIQRIWowyPDvjHBCK1bV8zfba6EGcb6iZwaEfsCQXQB
5HE+Hk7FITuUm7y7Nxxm7u/s1ekLa/2FAkhN5NtPB7+8RNMmqmCaU1L6l9exWp+h
lrI441++DgzGF/k8y12uYUzmOAKCiddGNzs8LHQWqJF9YZfIwyGmD6Xt9+s9plF5
206wJiWN0FsxEdpcSRSf2mWaDS+DMt4/RNu8GWxSHjlqmH8hRA2SFzwOk0fMDxzq
swLOxFfIAwIss2/pwpUhNhRrzN2nDsGWjaTZ2viNmtnGjdNf5YkdJb4vSj+KcRZu
tRmHbUuZIlZ4FEi4vUfoPBpzhRIMrI9w0xBX1+JkXcd73Ixil8Xy87JcQEtbZf7A
UozXFyFCq5auDJ1sw+akwgwO+0LZgbHPUp9BYs0vgV63k963CV7B4N5GpFXY7VSK
IvznnQgvCj+EWrzTL8+JKCcrI5lYr5XTT/C7fLuC1nDq9PVlKTAzn6mNubKjOc6D
ThTZvJ/BFVoyjAEMFlqC
=r/lk
-END PGP SIGNATURE-


Accepted:
libnss-sshsock2_0.1-1_i386.deb
  to main/libn/libnss-sshsock/libnss-sshsock2_0.1-1_i386.deb
libnss-sshsock_0.1-1.debian.tar.gz
  to main/libn/libnss-sshsock/libnss-sshsock_0.1-1.debian.tar.gz
libnss-sshsock_0.1-1.dsc
  to main/libn/libnss-sshsock/libnss-sshsock_0.1-1.dsc
libnss-sshsock_0.1.orig.tar.gz
  to main/libn/libnss-sshsock/libnss-sshsock_0.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/e1rqh18-0004dn...@franck.debian.org



Accepted libstatistics-r-perl 0.23-2 (source all)

2011-11-15 Thread Don Armstrong
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 14 Nov 2011 10:56:52 -0800
Source: libstatistics-r-perl
Binary: libstatistics-r-perl
Architecture: source all
Version: 0.23-2
Distribution: unstable
Urgency: low
Maintainer: Don Armstrong d...@debian.org
Changed-By: Don Armstrong d...@debian.org
Description: 
 libstatistics-r-perl - Control the R interpreter with perl
Closes: 647568
Changes: 
 libstatistics-r-perl (0.23-2) unstable; urgency=low
 .
   * Update debian/copyright to reflect that that inc/* files are part of
 Module::Install.
   * Remove B-D-I: on quilt as it isn't necessary when using quilt (3.0)
 .
 libstatistics-r-perl (0.23-1) unstable; urgency=low
 .
   * Initial Release (closes: #647568)
Checksums-Sha1: 
 e1d3e2fca75c991373d664537de9fbcd1f6ffe56 2024 libstatistics-r-perl_0.23-2.dsc
 3bde2d435fd1a770b349135d898f75109cb6188e 29795 
libstatistics-r-perl_0.23.orig.tar.gz
 3e3a89cf435d8892a4b1280c83d4e0964e753c11 2159 
libstatistics-r-perl_0.23-2.debian.tar.gz
 5c12f95d99e867e731b6a425ce07dd521f731a34 25312 
libstatistics-r-perl_0.23-2_all.deb
Checksums-Sha256: 
 b786ffc2ef0c1228c8ce8f5fcf7928acd44a6c1a3ff05d3b54df38728847e076 2024 
libstatistics-r-perl_0.23-2.dsc
 1d84b82aa7ab9580b1b49ee34d7037e9a944f8281783036218e2b34ac8b820c8 29795 
libstatistics-r-perl_0.23.orig.tar.gz
 b75003e8796c07ab0a88552ccca0a1424179246520d3a7b76bd109b868d18c67 2159 
libstatistics-r-perl_0.23-2.debian.tar.gz
 2bfb5f3dfcb1c8c5d7423bb58659a8c925dcbcda52ecc5ce90f02c675c63b828 25312 
libstatistics-r-perl_0.23-2_all.deb
Files: 
 65bb355b172a5279b15787238a4110fe 2024 perl optional 
libstatistics-r-perl_0.23-2.dsc
 e0b39213f6cb532b48b08fc5d7659c45 29795 perl optional 
libstatistics-r-perl_0.23.orig.tar.gz
 4c39021b645c37664478ef454da9738b 2159 perl optional 
libstatistics-r-perl_0.23-2.debian.tar.gz
 87e65df80d0c1b9f8b912d0edaa3e90d 25312 perl optional 
libstatistics-r-perl_0.23-2_all.deb

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

iQIVAwUBTsFnuaLRMAHZjA+6AQpCpQ/+OtdgQcl80HHwqy3EJMCJIlTPV3Ay0uVL
P7GcPUxoA6LIdyQWysZ5MUO3LCa4gBLdWsvEd4nuaU9fUMgHyzXDn9i0YJzEhz6V
mAhfKSJFb1UXvbrNrMY7v6r3raUXouvnNqHSzVTmXKnZ/nl1YFI3iLMj5VX2fFRm
nAMceSfQGitjd5R7P5x0Wg6T/Hi+c5PGhBuOc+VZM74QbdMqIedRjsmkTOTAQrPA
OFCikP+9iMx6+WLB/qGel/0Enz/Wlamm/Ad//TMnQirAS9qUm9Ty/5IUnYR2+NZP
2+F5fEOulHrRC5l7njkLMQGfbxH7Hg08dPmhM0ua9JtBoS0M7J0Dlr3/cNB+sHN0
sj0mS1L0absk1lHjUH/aUf0HBoDQTtTevF1getcsuU3mUaUMzWQ+inEu85Ohq3sC
LUHvvQ+w5539+s0N0eTNe/DuRFsF0tQ4gSL43P38JzXKqBUw96iNS6FRvc1m7qev
ortWx/aP28awHwNFxA5nfXcMP3TYrc6uFNcfxcB4nrODxxs6W0rzyzd5gPW5ykfD
pYJA6bSzgwPLJn7lwNJjAscQ9jb+BY1AeTrHKsSQlIFo1Lu3sDWsLkL44qtIYnvY
ZVzgeOdKjrTGEkIRKjRe4UPg7VUDTIe0wdTgQSOizO+TCXJL2I4eCrMXIQ3H4gl2
8bBcDrqiZMI=
=eKQX
-END PGP SIGNATURE-


Accepted:
libstatistics-r-perl_0.23-2.debian.tar.gz
  to main/libs/libstatistics-r-perl/libstatistics-r-perl_0.23-2.debian.tar.gz
libstatistics-r-perl_0.23-2.dsc
  to main/libs/libstatistics-r-perl/libstatistics-r-perl_0.23-2.dsc
libstatistics-r-perl_0.23-2_all.deb
  to main/libs/libstatistics-r-perl/libstatistics-r-perl_0.23-2_all.deb
libstatistics-r-perl_0.23.orig.tar.gz
  to main/libs/libstatistics-r-perl/libstatistics-r-perl_0.23.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/e1rqh1p-0004fj...@franck.debian.org



Accepted osmium 0.0~20111114-ga147fb1-1 (source i386 all)

2011-11-15 Thread David Paleino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Nov 2011 21:11:24 +0100
Source: osmium
Binary: libosmium-dev osmium-doc osmjs
Architecture: source i386 all
Version: 0.0~2014-ga147fb1-1
Distribution: unstable
Urgency: low
Maintainer: Debian OpenStreetMap Team pkg-osm-ma...@lists.alioth.debian.org
Changed-By: David Paleino da...@debian.org
Description: 
 libosmium-dev - C++ framework for working with OSM data files
 osmium-doc - C++ framework for working with OSM data files - docs
 osmjs  - osmium-based Javascript framework for handling OSM data
Closes: 648710
Changes: 
 osmium (0.0~2014-ga147fb1-1) unstable; urgency=low
 .
   * Initial release (Closes: #648710)
Checksums-Sha1: 
 e65a0484504e8057de07d4588121752fd170772e 1698 
osmium_0.0~2014-ga147fb1-1.dsc
 2a48b5bf4f107c6c15797983944ebd35db11f433 135791 
osmium_0.0~2014-ga147fb1.orig.tar.gz
 81aaf9c20b8b030885a57eb5b432f3e6831b698a 6033 
osmium_0.0~2014-ga147fb1-1.debian.tar.gz
 49e4d388378050fa58d94ddb658165fd43170f44 91460 
libosmium-dev_0.0~2014-ga147fb1-1_i386.deb
 f444db46643a1eb56d005a84da8f0120c23b1e96 8578686 
osmium-doc_0.0~2014-ga147fb1-1_all.deb
 082f568e5fec81f7896b977c2d3400e41d124070 187234 
osmjs_0.0~2014-ga147fb1-1_i386.deb
Checksums-Sha256: 
 47a81a33680bd24019ff1bb5ba865eebff5e7c7a797979dbfb694206f580172b 1698 
osmium_0.0~2014-ga147fb1-1.dsc
 80abfe16046b75d826bba3ed3fe83dfb89ef1759b806187db9267854125ed455 135791 
osmium_0.0~2014-ga147fb1.orig.tar.gz
 3282a0d6ea1cee2e863a1202437a92c06b7d5c25ee5c9d4db4b46ff47beeb346 6033 
osmium_0.0~2014-ga147fb1-1.debian.tar.gz
 dc3e66421ddecd4bb5a985416b79274a6af4ad4022ec43b968244340fad2d95b 91460 
libosmium-dev_0.0~2014-ga147fb1-1_i386.deb
 77e52e8a688ef42fca738cd9e43cf257c81d5c90854fcb751a5049dcdc93acab 8578686 
osmium-doc_0.0~2014-ga147fb1-1_all.deb
 42aba7414ad2f11405769587e871b54f191c14418396f63f6f954f408a0576d3 187234 
osmjs_0.0~2014-ga147fb1-1_i386.deb
Files: 
 645b3f4dff0577d7149a0bbb7953d5b1 1698 utils extra 
osmium_0.0~2014-ga147fb1-1.dsc
 abd4fcbaa7eeac38786593918c813ad6 135791 utils extra 
osmium_0.0~2014-ga147fb1.orig.tar.gz
 91832a2d29789c7a09f45969e0354db3 6033 utils extra 
osmium_0.0~2014-ga147fb1-1.debian.tar.gz
 c5329072440b419564285b92972bf554 91460 libdevel extra 
libosmium-dev_0.0~2014-ga147fb1-1_i386.deb
 44d6ada47c3b6a7b71cd12b18ea4a877 8578686 doc extra 
osmium-doc_0.0~2014-ga147fb1-1_all.deb
 7154551f5f071c3d5e3d7484d9cbefc6 187234 utils extra 
osmjs_0.0~2014-ga147fb1-1_i386.deb

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

iEYEARECAAYFAk7BeLMACgkQ5qqQFxOSsXTNbwCgm8r/dMAXMT34J4Fs4SFSX/hc
SCMAn3TpthL8SjFrsxgZC0DuV0NC8yIC
=Pa2r
-END PGP SIGNATURE-


Accepted:
libosmium-dev_0.0~2014-ga147fb1-1_i386.deb
  to main/o/osmium/libosmium-dev_0.0~2014-ga147fb1-1_i386.deb
osmium-doc_0.0~2014-ga147fb1-1_all.deb
  to main/o/osmium/osmium-doc_0.0~2014-ga147fb1-1_all.deb
osmium_0.0~2014-ga147fb1-1.debian.tar.gz
  to main/o/osmium/osmium_0.0~2014-ga147fb1-1.debian.tar.gz
osmium_0.0~2014-ga147fb1-1.dsc
  to main/o/osmium/osmium_0.0~2014-ga147fb1-1.dsc
osmium_0.0~2014-ga147fb1.orig.tar.gz
  to main/o/osmium/osmium_0.0~2014-ga147fb1.orig.tar.gz
osmjs_0.0~2014-ga147fb1-1_i386.deb
  to main/o/osmium/osmjs_0.0~2014-ga147fb1-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/e1rqh1j-0004jk...@franck.debian.org



Accepted osmpbf 1.2.1-1 (source all i386)

2011-11-15 Thread David Paleino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Nov 2011 11:34:40 +0100
Source: osmpbf
Binary: libosmpbf-java libosmpbf-dev osmpbf-bin
Architecture: source all i386
Version: 1.2.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian OpenStreetMap Team pkg-osm-ma...@lists.alioth.debian.org
Changed-By: David Paleino da...@debian.org
Description: 
 libosmpbf-dev - C headers for OpenStreetMap PBF file format
 libosmpbf-java - Java access library for OpenStreetMap PBF file format
 osmpbf-bin - OpenStreetMap PBF file format library - tools
Changes: 
 osmpbf (1.2.1-1) unstable; urgency=low
 .
   * New upstream version
   * Added myself to Uploaders
   * Added debian/watch file
   * Fix build.xml to point to the correct protobuf-java.jar
   * Provide additional libosmpbf-dev and osmpbf-bin packages
   * Add Build-Depends on libprotobuf-dev
   * Standards-Version bump to 3.9.2, no changes needed
Checksums-Sha1: 
 1599b4fd343e44053141c85e8446a1a8b758dacd 1460 osmpbf_1.2.1-1.dsc
 c12e6649e8aa00a460f54db7f84e723503367fc2 23493 osmpbf_1.2.1.orig.tar.gz
 fc1be939df5ee6cd7261dc12afeceda35e18436e 2124 osmpbf_1.2.1-1.debian.tar.gz
 0c677ba3e1c30841182214de344b622e76fb5be7 107210 libosmpbf-java_1.2.1-1_all.deb
 c544eb62ed611224b9abee6542bbf3369c11810d 14490 libosmpbf-dev_1.2.1-1_i386.deb
 a053361884f84dc8965f71782cd6d29ecfe3f342 44686 osmpbf-bin_1.2.1-1_i386.deb
Checksums-Sha256: 
 85d1ea6f23e382a518bd47a754c5695e9e2603471b8f745bb9180e3db5e80e7c 1460 
osmpbf_1.2.1-1.dsc
 e825246cd210ecffeeaea6a86eb6b8abaecdd6b2592c76d7df2f9eea572e2e9a 23493 
osmpbf_1.2.1.orig.tar.gz
 f8b50314ace3c5e5e0ef8fd270252dbfd5d968aad4ec921e5cfa4555b8a8ab66 2124 
osmpbf_1.2.1-1.debian.tar.gz
 50426997ec4d00c3715594872dce4cb52457cbd0835f0f10fedc2d43b0320a9f 107210 
libosmpbf-java_1.2.1-1_all.deb
 c463de528a38ee1227643c602e28cedbc25e4649b7b9796c7fee8eeb7fe04151 14490 
libosmpbf-dev_1.2.1-1_i386.deb
 6879c6c339f0ec68a2a0dae10b0704b41a8fea812047756ffa9b70fb5152262b 44686 
osmpbf-bin_1.2.1-1_i386.deb
Files: 
 ea6e97c5b816e3794cf930489f041c79 1460 java extra osmpbf_1.2.1-1.dsc
 7eb8e6c30c261d2fa338048e2a356bad 23493 java extra osmpbf_1.2.1.orig.tar.gz
 da6d8a7d8d2659014d55b897cba0fced 2124 java extra osmpbf_1.2.1-1.debian.tar.gz
 91b37752b6824fc5982a2e908baafd47 107210 java extra 
libosmpbf-java_1.2.1-1_all.deb
 f60ee5856e7161f0a490050b0b8e303c 14490 libdevel extra 
libosmpbf-dev_1.2.1-1_i386.deb
 8329d26859000e5ebad88a80c13326f4 44686 utils extra osmpbf-bin_1.2.1-1_i386.deb

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

iEYEARECAAYFAk7A7zgACgkQ5qqQFxOSsXSORQCfZ9QJ/HYaybl2no4ULYv9aoxf
0w8An1Pp3U/2SI03KwKAa/Rt6IZ6o+sH
=MSvl
-END PGP SIGNATURE-


Accepted:
libosmpbf-dev_1.2.1-1_i386.deb
  to main/o/osmpbf/libosmpbf-dev_1.2.1-1_i386.deb
libosmpbf-java_1.2.1-1_all.deb
  to main/o/osmpbf/libosmpbf-java_1.2.1-1_all.deb
osmpbf-bin_1.2.1-1_i386.deb
  to main/o/osmpbf/osmpbf-bin_1.2.1-1_i386.deb
osmpbf_1.2.1-1.debian.tar.gz
  to main/o/osmpbf/osmpbf_1.2.1-1.debian.tar.gz
osmpbf_1.2.1-1.dsc
  to main/o/osmpbf/osmpbf_1.2.1-1.dsc
osmpbf_1.2.1.orig.tar.gz
  to main/o/osmpbf/osmpbf_1.2.1.orig.tar.gz


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



Accepted osmpbf 1.2.1-2 (source all i386)

2011-11-15 Thread David Paleino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Nov 2011 11:50:47 +0100
Source: osmpbf
Binary: libosmpbf-java libosmpbf-dev osmpbf-bin
Architecture: source all i386
Version: 1.2.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian OpenStreetMap Team pkg-osm-ma...@lists.alioth.debian.org
Changed-By: David Paleino da...@debian.org
Description: 
 libosmpbf-dev - C headers for OpenStreetMap PBF file format
 libosmpbf-java - Java access library for OpenStreetMap PBF file format
 osmpbf-bin - OpenStreetMap PBF file format library - tools
Changes: 
 osmpbf (1.2.1-2) unstable; urgency=low
 .
   * Also install the static library in libosmpbf-dev
Checksums-Sha1: 
 f5f2626a70c52812f31cd99b91d8fc43d3de0f72 1460 osmpbf_1.2.1-2.dsc
 2b8009a1db19c7863baf00eba4a716b05cf2cce8 2122 osmpbf_1.2.1-2.debian.tar.gz
 9c9656fbd8bccbe8724c72492073e0393ecee9d1 107262 libosmpbf-java_1.2.1-2_all.deb
 c1e786f4bb0a3c6ab836a92d75ce4951aefa8f8d 65700 libosmpbf-dev_1.2.1-2_i386.deb
 fe1b4ebe4a8d4d554c049c36346864f76cabe9ad 44726 osmpbf-bin_1.2.1-2_i386.deb
Checksums-Sha256: 
 ff642b86d68ffcafc4999b2f7111321c15755271e91d86e1fd716fc8cb796ad1 1460 
osmpbf_1.2.1-2.dsc
 b57a7307926711737734ddf79a37166888c0ca7395de363f7165a98194ede53b 2122 
osmpbf_1.2.1-2.debian.tar.gz
 2ae8358a8aa9de3259745ee26f2c0bfcfe18902b92781b24e8d9c3224b407f1a 107262 
libosmpbf-java_1.2.1-2_all.deb
 4b89804737782748e1c890791f12fbea36193e8c6bb17f9a9e984f80a817fdc5 65700 
libosmpbf-dev_1.2.1-2_i386.deb
 05fff740512b821834629bf2a42bb28745e4c7e749e0203df55654bbe4db30e1 44726 
osmpbf-bin_1.2.1-2_i386.deb
Files: 
 180302fae33f502eb6a1b600378f7147 1460 java extra osmpbf_1.2.1-2.dsc
 f184363d79bf3cf8ebbf99a571502726 2122 java extra osmpbf_1.2.1-2.debian.tar.gz
 ea646155a2ec1b29d7d72ce4986a3ae8 107262 java extra 
libosmpbf-java_1.2.1-2_all.deb
 681d14037681dc60ace2a97cb6997b16 65700 libdevel extra 
libosmpbf-dev_1.2.1-2_i386.deb
 910e4c5e4f27aa83e9bfded4cac73eb2 44726 utils extra osmpbf-bin_1.2.1-2_i386.deb

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

iEYEARECAAYFAk7A+EMACgkQ5qqQFxOSsXRDZwCgolZ7Yr7J6ia4qUL9IWT2ZF8r
6HAAnRgSYv7jx3qZ8r/Ssg6+sg5k6ROB
=lNZv
-END PGP SIGNATURE-


Accepted:
libosmpbf-dev_1.2.1-2_i386.deb
  to main/o/osmpbf/libosmpbf-dev_1.2.1-2_i386.deb
libosmpbf-java_1.2.1-2_all.deb
  to main/o/osmpbf/libosmpbf-java_1.2.1-2_all.deb
osmpbf-bin_1.2.1-2_i386.deb
  to main/o/osmpbf/osmpbf-bin_1.2.1-2_i386.deb
osmpbf_1.2.1-2.debian.tar.gz
  to main/o/osmpbf/osmpbf_1.2.1-2.debian.tar.gz
osmpbf_1.2.1-2.dsc
  to main/o/osmpbf/osmpbf_1.2.1-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/e1rqh2k-0004ri...@franck.debian.org



Accepted php-letodms-lucene 1.0.0-1 (source all)

2011-11-15 Thread Francisco Manuel Garcia Claramonte
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 29 Sep 2011 16:38:50 +0200
Source: php-letodms-lucene
Binary: php-letodms-lucene
Architecture: source all
Version: 1.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Francisco Manuel Garcia Claramonte franci...@debian.org
Changed-By: Francisco Manuel Garcia Claramonte franci...@debian.org
Description: 
 php-letodms-lucene - Document management system - Fulltext search
Closes: 643914
Changes: 
 php-letodms-lucene (1.0.0-1) unstable; urgency=low
 .
   * Initial Release (Closes: #643914).
   * Created the package.diff patch to fix a license problem in package.xml
 file. Patched with fixed file in SVN:
 http://mydms.svn.sourceforge.net/viewvc/mydms/trunk/LetoDMS_Lucene/
Checksums-Sha1: 
 7bd637dc1f8cde7e564be57fca75b9d93559a29b 1104 php-letodms-lucene_1.0.0-1.dsc
 d67327c9f1c2088ca9ec568baf7d38a5d5bcb074 2925 
php-letodms-lucene_1.0.0.orig.tar.gz
 ad61d270d747385cdd101c214f8a10937e2a0ea1 2751 
php-letodms-lucene_1.0.0-1.debian.tar.gz
 25a3dffc41ec8ba0941de94d8bda717fb7ec08c8 8442 
php-letodms-lucene_1.0.0-1_all.deb
Checksums-Sha256: 
 98a4327ed6f34c0445a2fd045e6ec60f37ff61ba276b88bcc408e20d6b724020 1104 
php-letodms-lucene_1.0.0-1.dsc
 8ec467773f7ea480ca9d2da042daa2e985e04cb008a737627266120b19b51081 2925 
php-letodms-lucene_1.0.0.orig.tar.gz
 2e1fd34e6f74fb301c9f37185e8370a6777fe3a74660a3307be6bd15a30dbecb 2751 
php-letodms-lucene_1.0.0-1.debian.tar.gz
 37c980bf0329a00987586a43918752a869d7be4f26741062f110d61db84b2b42 8442 
php-letodms-lucene_1.0.0-1_all.deb
Files: 
 d4a606a7e8ab7e51e0a620faf05e10f6 1104 web optional 
php-letodms-lucene_1.0.0-1.dsc
 3df8ae52cebfb9c47bf221861ded0083 2925 web optional 
php-letodms-lucene_1.0.0.orig.tar.gz
 a4ba0615b1d7744899f0f7f04ab2af2a 2751 web optional 
php-letodms-lucene_1.0.0-1.debian.tar.gz
 5fb319f7b98a4b449eff5513ce84c88c 8442 web optional 
php-letodms-lucene_1.0.0-1_all.deb

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

iEYEARECAAYFAk7BSYoACgkQmpU8glVqulFeswCgvzAy+7bvzYL1TOMBBWw2vRi0
4h0AoKkNWxDxp6iE30I804WcvISwxcny
=HIRA
-END PGP SIGNATURE-


Accepted:
php-letodms-lucene_1.0.0-1.debian.tar.gz
  to main/p/php-letodms-lucene/php-letodms-lucene_1.0.0-1.debian.tar.gz
php-letodms-lucene_1.0.0-1.dsc
  to main/p/php-letodms-lucene/php-letodms-lucene_1.0.0-1.dsc
php-letodms-lucene_1.0.0-1_all.deb
  to main/p/php-letodms-lucene/php-letodms-lucene_1.0.0-1_all.deb
php-letodms-lucene_1.0.0.orig.tar.gz
  to main/p/php-letodms-lucene/php-letodms-lucene_1.0.0.orig.tar.gz


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



Accepted ruby-htmlentities 4.3.0-1 (source all)

2011-11-15 Thread Gunnar Wolf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 Nov 2011 12:19:49 -0600
Source: ruby-htmlentities
Binary: ruby-htmlentities libhtmlentities-ruby libhtmlentities-ruby1.8 
libhtmlentities-ruby1.9.1
Architecture: source all
Version: 4.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Gunnar Wolf gw...@debian.org
Description: 
 libhtmlentities-ruby - Transitional package for ruby-htmlentities
 libhtmlentities-ruby1.8 - Transitional package for ruby-htmlentities
 libhtmlentities-ruby1.9.1 - Transitional package for ruby-htmlentities
 ruby-htmlentities - Ruby library for handling HTML entities
Changes: 
 ruby-htmlentities (4.3.0-1) unstable; urgency=low
 .
   * New upstream release
   * Changed packaging style to gem2deb
   * Added myself as an uploader
   * Standards-version → 3.9.2
Checksums-Sha1: 
 c7e02f0e1d37d68e10656b6798793ce6425a6d1f 2368 ruby-htmlentities_4.3.0-1.dsc
 0afb1e1321d9d176025dd043058360791e34a13a 28908 
ruby-htmlentities_4.3.0.orig.tar.gz
 4805d015c038a30df8bc1f4a240ecf5bd547b784 2966 
ruby-htmlentities_4.3.0-1.debian.tar.gz
 05024646a69dbbbd2f931dc67c5b76a3c8464f24 26974 
ruby-htmlentities_4.3.0-1_all.deb
 84480cec4d693b1d0813967663cd0eb927b3f3ec 4430 
libhtmlentities-ruby_4.3.0-1_all.deb
 ce2ded909ede403fa80fbc3555f797d1116f1376 4438 
libhtmlentities-ruby1.8_4.3.0-1_all.deb
 cb4eecb7a58ea0e38610565fba452bbe1b337384 4414 
libhtmlentities-ruby1.9.1_4.3.0-1_all.deb
Checksums-Sha256: 
 297383829c3e70f4e7e4a2014d21edc1716044511b1950a7fa016a5399fa5cf7 2368 
ruby-htmlentities_4.3.0-1.dsc
 58819f8759a9216f8d3ecbc0ec6dda1f787f5feb5f914074dd4a53730eacd2bd 28908 
ruby-htmlentities_4.3.0.orig.tar.gz
 5be9ea8dc27c7aefb12577ebd88e7ce904cc97648e22c6485fea4db1f47986e2 2966 
ruby-htmlentities_4.3.0-1.debian.tar.gz
 be3ccedaa137c644c74713dd38633095b31e1f2e04cd7eb0d47b0baa4da38497 26974 
ruby-htmlentities_4.3.0-1_all.deb
 6c7d95f5dbb4dd87228e325b301fbc92ac62b1779b5be2a3da86dc8f6fdc2b0a 4430 
libhtmlentities-ruby_4.3.0-1_all.deb
 02354d7a36a0e2f9896adabea1e19ccf9ba3feeac57f2ca8dc69cfacb31291a9 4438 
libhtmlentities-ruby1.8_4.3.0-1_all.deb
 3d604b66b055df3759838e3de7cb5057a52ca4f971b7e9b9b448202ff5ccaf0c 4414 
libhtmlentities-ruby1.9.1_4.3.0-1_all.deb
Files: 
 f02302d078fef49fd2655b6a008a5f6c 2368 ruby optional 
ruby-htmlentities_4.3.0-1.dsc
 deec073687a5ed96bb229871ea37f856 28908 ruby optional 
ruby-htmlentities_4.3.0.orig.tar.gz
 f70e649590aff94aba2788004cca5a5d 2966 ruby optional 
ruby-htmlentities_4.3.0-1.debian.tar.gz
 3195caa8c39d473eba9c94035bbe1b8e 26974 ruby optional 
ruby-htmlentities_4.3.0-1_all.deb
 af4d4f89cb26c5136252ae7dd60aa615 4430 oldlibs optional 
libhtmlentities-ruby_4.3.0-1_all.deb
 5a142af471f5a369c24031f7514c0a4d 4438 oldlibs optional 
libhtmlentities-ruby1.8_4.3.0-1_all.deb
 62cd527a7afacc8fbb533227d021e975 4414 oldlibs optional 
libhtmlentities-ruby1.9.1_4.3.0-1_all.deb

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

iQIcBAEBCAAGBQJOwWZxAAoJEGc6A+TB25Ifz6UQAImfynzKDtOFFRBm1/ZFmriw
sjETtbWdb6nzrx3uR9FknskMhuS0GWi9tli53DXLMOBwR17eszFK4BBRqK08yJv7
IN3HIrkzQcqNWMltqBWihHQ9d1tEFITzVnw2shqQFJjYudK2hdI8ambOlt5ZkR7A
Cvhgb1YF1KCHJdedHRCR0P4BeILovfxnAwLFa2z0ykBnd0k3AgengDKv1IdykJL5
DhugeyYJEP0bMPiAwZ9g9krxPeJOaCQ/B1UTEFrteYG+hj/pLyNkTguuGVcBvEwA
tQ1dg7RPL/2jEsKBQ4b5fhhIzr94CdYAVtIaV/nrRDuDEv6r3Mh+uvA4aVFOSa3t
NjuTRDRGf5JxCcLveO2YWV1r4o29cFr+4P+k3XUa9y7Je+aSV1wlPjSVkhiHAbGW
1R1D0nIiqhRQN24v0utof25057+yOZjAyRsy7Fo3xz/J6UlwIHJnJaRkxTyRrvT8
8Op/TiruEPFlYa7IOumwKpZGY8b7oS0F2A4hol5ZRQYADt23N76PZAwBEosx2GvX
Nk3dmpbaMr1RZ/WW+48tL3HGORT9lIiUKOXhaQUoGmwuKwpvhTqGta7Op9ZiOirm
UM89ZqgP+KGgRXkJDOvxF9aSPpm0wvnxPztspJt+wYyLsTFlgTRkLoSerIx4VNZW
NHsJlnEIVLJgFp3m8uJt
=nvCT
-END PGP SIGNATURE-


Accepted:
libhtmlentities-ruby1.8_4.3.0-1_all.deb
  to main/r/ruby-htmlentities/libhtmlentities-ruby1.8_4.3.0-1_all.deb
libhtmlentities-ruby1.9.1_4.3.0-1_all.deb
  to main/r/ruby-htmlentities/libhtmlentities-ruby1.9.1_4.3.0-1_all.deb
libhtmlentities-ruby_4.3.0-1_all.deb
  to main/r/ruby-htmlentities/libhtmlentities-ruby_4.3.0-1_all.deb
ruby-htmlentities_4.3.0-1.debian.tar.gz
  to main/r/ruby-htmlentities/ruby-htmlentities_4.3.0-1.debian.tar.gz
ruby-htmlentities_4.3.0-1.dsc
  to main/r/ruby-htmlentities/ruby-htmlentities_4.3.0-1.dsc
ruby-htmlentities_4.3.0-1_all.deb
  to main/r/ruby-htmlentities/ruby-htmlentities_4.3.0-1_all.deb
ruby-htmlentities_4.3.0.orig.tar.gz
  to main/r/ruby-htmlentities/ruby-htmlentities_4.3.0.orig.tar.gz


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



Accepted ruby-password 0.5.3-3 (source all amd64)

2011-11-15 Thread Gunnar Wolf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 Nov 2011 11:08:06 -0600
Source: ruby-password
Binary: ruby-password libpassword-ruby libpassword-ruby1.8
Architecture: source amd64 all
Version: 0.5.3-3
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Gunnar Wolf gw...@debian.org
Description: 
 libpassword-ruby - Transitional package for ruby-password
 libpassword-ruby1.8 - Transitional package for ruby-password
 ruby-password - Ruby library for handling passwords
Changes: 
 ruby-password (0.5.3-3) unstable; urgency=low
 .
   * Repackaged under the new pkg-ruby-extras gem2deb-derived style
Checksums-Sha1: 
 31e80cceb5e5f8850bc9e8b32d0abf849f1b37f9 2313 ruby-password_0.5.3-3.dsc
 a8c006dac804534cec94b9d2585b10b7e105fb3f 23088 ruby-password_0.5.3.orig.tar.gz
 7db8f69a175bd5e4fac38913c78ba1187afbe189 3524 
ruby-password_0.5.3-3.debian.tar.gz
 908872b35d0bf79024e4d6656458c543058fe868 16600 ruby-password_0.5.3-3_amd64.deb
 39e103068f99849d26540b7f030ed007be2658c2 7330 libpassword-ruby_0.5.3-3_all.deb
 df50dc14a89a713af44007e870875f2331fb6aed 7332 
libpassword-ruby1.8_0.5.3-3_all.deb
Checksums-Sha256: 
 d1adfd1c4a75af675b7c2fccefa3676a6dbce30081633c30f0f5deb2e58ea643 2313 
ruby-password_0.5.3-3.dsc
 2563d30868f90ed958919b235668639678d4cdc259eeaad528a267ca456f224f 23088 
ruby-password_0.5.3.orig.tar.gz
 0985b3451a7b67ab146f83a3cd4d5077042d850c50d7dfbfdb623311a959af64 3524 
ruby-password_0.5.3-3.debian.tar.gz
 d88bb5c382afb1afaf81fcac0f375529f466e794f58b3a50d19dedd9039191eb 16600 
ruby-password_0.5.3-3_amd64.deb
 e3e464e62a54a10563cf63a63b40cd83c77f54dc45eec2d0313344288594bf7c 7330 
libpassword-ruby_0.5.3-3_all.deb
 003a2e657362d1f43e8c0ee71a7dfd4a8a5d5d459e325311603af19e692e269d 7332 
libpassword-ruby1.8_0.5.3-3_all.deb
Files: 
 8491961586ebe5069e7c72fd7bec7c84 2313 ruby optional ruby-password_0.5.3-3.dsc
 b4304bab359bdc95bc7f0938b0db4bed 23088 ruby optional 
ruby-password_0.5.3.orig.tar.gz
 0d337a768353f263f8c0c4c031b0bdb5 3524 ruby optional 
ruby-password_0.5.3-3.debian.tar.gz
 d785b1093c75e19164ab72a5880a80c2 16600 ruby optional 
ruby-password_0.5.3-3_amd64.deb
 7bd2a756ccae98684d3d7001284941a5 7330 oldlibs optional 
libpassword-ruby_0.5.3-3_all.deb
 a947a684727059534c19b70d39787462 7332 oldlibs optional 
libpassword-ruby1.8_0.5.3-3_all.deb

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

iQIcBAEBCAAGBQJOwXOdAAoJEGc6A+TB25IfXiYQAIyEqAxNaWrm8PSFDKuqAVQY
FBt24gmQcdwGaxcgI5R+8gxmBjn4hVfBVMp2gdSFIAPKsG0VZvQLjydeLqvldE3S
2KiFniRHPfRKxIryx8loKKf5ahAD2eNeyGvT/PFVfMU6RYHZfgeTWTZVc41lpSMG
Ppz17trUtC+Db8HKwPDltvs6qwrlLtWSzHWnk6QaOdck/4+xcc13BYCbNk+hqRQ/
BsLQm9kjB1vRqwzbeLxULpQrlqmj2FSDV/IlRTWEAxu9bJDChSNKtVAqS4HkzsvY
Yxz2eNReyGTkbGss5forJB3k0i6JICF/91JKHNgiXiU96W7fs3uILIbnttAFkltB
h1sTIJ41RlPTxAuHtOTKdZqArNwMyCETsxPgP5kJk/a8KlaXLhCBZxD0VurGInbQ
nhrk22AaNG5b+VBuWDxY2NEQ5zfhvZar14W+auCvAVdnwMIqbS1mERCue2RJ/8TH
QK/1k5BWoqQ7oDIk9G1PrT8XaXadG744+qxiaVaHH+v7s4kmKTvkhKvg00i40ONC
XvrlMRfFbXQFhrr1M28O+WWn26AyUDPZ4mK1ix5jvZXfxTU04AoJ9wnC7H1uy9Te
CEb58QGXzlCr3tNqau1dDBr739ew+Fio9xPBuqQMmBxKlUQzufCk6ou8ZqsgIClE
w7JpcxQnCO35+OiU7yeF
=84ZM
-END PGP SIGNATURE-


Accepted:
libpassword-ruby1.8_0.5.3-3_all.deb
  to main/r/ruby-password/libpassword-ruby1.8_0.5.3-3_all.deb
libpassword-ruby_0.5.3-3_all.deb
  to main/r/ruby-password/libpassword-ruby_0.5.3-3_all.deb
ruby-password_0.5.3-3.debian.tar.gz
  to main/r/ruby-password/ruby-password_0.5.3-3.debian.tar.gz
ruby-password_0.5.3-3.dsc
  to main/r/ruby-password/ruby-password_0.5.3-3.dsc
ruby-password_0.5.3-3_amd64.deb
  to main/r/ruby-password/ruby-password_0.5.3-3_amd64.deb
ruby-password_0.5.3.orig.tar.gz
  to main/r/ruby-password/ruby-password_0.5.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/e1rqh3d-0004bu...@franck.debian.org



Accepted ruby-ruby2ruby 1.3.1-1 (source all)

2011-11-15 Thread Gunnar Wolf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 Nov 2011 16:37:00 -0600
Source: ruby-ruby2ruby
Binary: ruby-ruby2ruby libruby2ruby-ruby1.8 libruby2ruby-ruby
Architecture: source all
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Gunnar Wolf gw...@debian.org
Description: 
 libruby2ruby-ruby - Transitional package for ruby-ruby2ruby
 libruby2ruby-ruby1.8 - Transitional package for ruby-ruby2ruby
 ruby-ruby2ruby - Generate pure ruby code easily from ParseTree's Sexps 
(ruby1.8)
Changes: 
 ruby-ruby2ruby (1.3.1-1) unstable; urgency=low
 .
   * New upstream release
   * Repackaged using the new gem2deb way
   * Added myself to uploaders
Checksums-Sha1: 
 f9fc006e309000ded189e51981a713218e4d35a9 2242 ruby-ruby2ruby_1.3.1-1.dsc
 72aebc617dd25831ccf58bb864e71c19e284c92d 15490 ruby-ruby2ruby_1.3.1.orig.tar.gz
 87a58406d50441c6d54ed4c3ce5c8bffba7adaa5 2897 
ruby-ruby2ruby_1.3.1-1.debian.tar.gz
 78010596d59c8056ee3b912e0e1c659dac580985 12570 ruby-ruby2ruby_1.3.1-1_all.deb
 82b7990fceb8475501184043a1ed63617f1e2840 5480 
libruby2ruby-ruby1.8_1.3.1-1_all.deb
 5ee6393f95bc34566dcdcedc286dbb9e0aec77fd 5474 libruby2ruby-ruby_1.3.1-1_all.deb
Checksums-Sha256: 
 6545bba391bb9e969187c519069507fad7b652e02f6716937663797d2f2a92b4 2242 
ruby-ruby2ruby_1.3.1-1.dsc
 abb2f72d784b22f565c40f787ecc5368dd0b915e4b308abf037e5318a41add30 15490 
ruby-ruby2ruby_1.3.1.orig.tar.gz
 d42949c93a382c5d96217a18bc67ea14c4b2cd20f62415947717c36e5a7ffdfd 2897 
ruby-ruby2ruby_1.3.1-1.debian.tar.gz
 e25747449d065c165b075c3028f13d6c1def79d70c2a74bebe091d26108ad3c1 12570 
ruby-ruby2ruby_1.3.1-1_all.deb
 8ad88398e57d820d27a9bb8008ba9bf5eae58a679dc4c2bb0dc7ec1cfe9bca32 5480 
libruby2ruby-ruby1.8_1.3.1-1_all.deb
 30238614299f99c2f40e6b94895e960b963f94b379b2361d0e1c948dee3534c6 5474 
libruby2ruby-ruby_1.3.1-1_all.deb
Files: 
 d3fe44b8e7007f67cb7da41138a4479a 2242 ruby optional ruby-ruby2ruby_1.3.1-1.dsc
 44643e1146d29687bc89a649f7e841b8 15490 ruby optional 
ruby-ruby2ruby_1.3.1.orig.tar.gz
 025da2575a98424e6b3d578771b2deea 2897 ruby optional 
ruby-ruby2ruby_1.3.1-1.debian.tar.gz
 7e546a702cc3b1c56d06dd0f23cf033b 12570 ruby optional 
ruby-ruby2ruby_1.3.1-1_all.deb
 d4c85e982af9e99cf3266b6396a6 5480 oldlibs optional 
libruby2ruby-ruby1.8_1.3.1-1_all.deb
 9ef8d1443e9b37766c66f4ed43eaa72a 5474 oldlibs optional 
libruby2ruby-ruby_1.3.1-1_all.deb

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

iQIcBAEBCAAGBQJOwaBZAAoJEGc6A+TB25IfQjgP/36uLNf1k6WlgMJRIOxUZmmR
CQiuGZ9BpiZGH6vR/InVovV6QqetPbiGxyxQ/yily+fAO2d0TjJRlfiVyOz/rQs3
ACk5fKctS4x4RyesQ+b35OwojhsD+cZfRE27hTgTaTYDAVXm61Ddm2cHTAyvGjcl
zjRTncohkfzrD92+oxN/HMmMbebYYYycIZ45+Zd9yGo51haFgd/bDyQJ4a4WJLyO
R4Hxa1EEacmpdOLcCULAjTmdVKPDr8e/tifIKbi8ADSaHuBgfWTfVVqVW/3+BXaR
dpJxegRNTvs/hjO/u9nwKGb0OZ+XgncJFN+wo9tSIuaCuCz+uLLFeEWgd5PAfrAR
VKMncc+TKuyvGjiyj+kcpxCE8f8qiy1IyWQonVcczSLgqb/HLHEzJ7MYywhyUk4j
Yk4u9RoPZRhCudZE6jyucn+weXmFBw7IE07ML5K+f4gmwW6DI+qGxs9GgqZEY9Bn
DvRc9Lnw1dJvfTEDLCvnU7UNNE6PrnVaG1oed6OXlK5EvInvzhJ0G9cL2xCM9tTf
lVder6XzQdXjdQVamNiDQTkQH+5wmr7S5bV6+QQTYIqTsKFrFmMF1ll1HIOBjBpW
wU3YWCAUL6jOlEGp6q6LR9j+JVkzBPIKceM3DWuvhajiRUl753FTCm3Q1nczXBSj
9uO7QZGQyCaNTv35TEDe
=xCcM
-END PGP SIGNATURE-


Accepted:
libruby2ruby-ruby1.8_1.3.1-1_all.deb
  to main/r/ruby-ruby2ruby/libruby2ruby-ruby1.8_1.3.1-1_all.deb
libruby2ruby-ruby_1.3.1-1_all.deb
  to main/r/ruby-ruby2ruby/libruby2ruby-ruby_1.3.1-1_all.deb
ruby-ruby2ruby_1.3.1-1.debian.tar.gz
  to main/r/ruby-ruby2ruby/ruby-ruby2ruby_1.3.1-1.debian.tar.gz
ruby-ruby2ruby_1.3.1-1.dsc
  to main/r/ruby-ruby2ruby/ruby-ruby2ruby_1.3.1-1.dsc
ruby-ruby2ruby_1.3.1-1_all.deb
  to main/r/ruby-ruby2ruby/ruby-ruby2ruby_1.3.1-1_all.deb
ruby-ruby2ruby_1.3.1.orig.tar.gz
  to main/r/ruby-ruby2ruby/ruby-ruby2ruby_1.3.1.orig.tar.gz


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



Accepted sheepdog 0.2.4-1 (source i386)

2011-11-15 Thread Guido Günther
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Nov 2011 15:35:17 +0100
Source: sheepdog
Binary: sheepdog
Architecture: source i386
Version: 0.2.4-1
Distribution: experimental
Urgency: low
Maintainer: Guido Günther a...@sigxcpu.org
Changed-By: Guido Günther a...@sigxcpu.org
Description: 
 sheepdog   - Distributed storage system for KVM/QEMU
Closes: 606134
Changes: 
 sheepdog (0.2.4-1) experimental; urgency=low
 .
   * New upstream version
   * [e0f4d8a] Don't install init.d script
 .
 sheepdog (0.2.0~0.git452bc6-1) unstable; urgency=low
 .
   * Initial release (Closes: #606134)
Checksums-Sha1: 
 05bfec168222aa655d9e225b786a943ee4796d5a 1100 sheepdog_0.2.4-1.dsc
 4f791654d0905906cd72aea40b181d55b5fb7222 82664 sheepdog_0.2.4.orig.tar.gz
 3a1a6984326dde9e3474cc02dbe421a052763df4 1451 sheepdog_0.2.4-1.debian.tar.gz
 76b9102926bf5f83a992f15669ec52473ca6e9dc 81532 sheepdog_0.2.4-1_i386.deb
Checksums-Sha256: 
 d0245faef14c31b099e98dc8640605e577fb351f5f5a2c54eeb2ceb82ccb2754 1100 
sheepdog_0.2.4-1.dsc
 cb8989d477daf8393fe557aaafcaceab698e4afc582d7e27ed84f19e0ad36c9c 82664 
sheepdog_0.2.4.orig.tar.gz
 3cccb050f001acb666ae7fb62bee0cd70784e971479c0b8b5fd067be25f858e3 1451 
sheepdog_0.2.4-1.debian.tar.gz
 46cef94ddc57b01d6e278f686467404d7abbb7937b628e8eac9633e2bb6b790d 81532 
sheepdog_0.2.4-1_i386.deb
Files: 
 73bf2b0b577ea81a4e1fbb9f7e341f5d 1100 admin extra sheepdog_0.2.4-1.dsc
 2c8c7ad1545c890209b1cb4eca53d3a2 82664 admin extra sheepdog_0.2.4.orig.tar.gz
 4bb97789e55cceebb2506f849990048b 1451 admin extra 
sheepdog_0.2.4-1.debian.tar.gz
 aa5c6504c52c2fdd1847d820c5dd01ba 81532 admin extra sheepdog_0.2.4-1_i386.deb

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

iD8DBQFOwTYPn88szT8+ZCYRAkd4AJ9MhEXcriXBAru/OnD2T7M1QWjS4QCfU16C
fbdWQVVREGo75q0MOr3742k=
=PQ2g
-END PGP SIGNATURE-


Accepted:
sheepdog_0.2.4-1.debian.tar.gz
  to main/s/sheepdog/sheepdog_0.2.4-1.debian.tar.gz
sheepdog_0.2.4-1.dsc
  to main/s/sheepdog/sheepdog_0.2.4-1.dsc
sheepdog_0.2.4-1_i386.deb
  to main/s/sheepdog/sheepdog_0.2.4-1_i386.deb
sheepdog_0.2.4.orig.tar.gz
  to main/s/sheepdog/sheepdog_0.2.4.orig.tar.gz


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



Accepted tclcl 1.20-1 (source amd64)

2011-11-15 Thread YunQiang Su
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 12 Nov 2011 14:36:52 +0800
Source: tclcl
Binary: tclcl libtclcl1 libtclcl1-dev tclcl-dbg
Architecture: source amd64
Version: 1.20-1
Distribution: unstable
Urgency: low
Maintainer: YunQiang Su wzss...@gmail.com
Changed-By: YunQiang Su wzss...@gmail.com
Description: 
 libtclcl1  - development files of TclCL
 libtclcl1-dev - development files of TclCL
 tclcl  - tcl2c++ program from tclcl
 tclcl-dbg  - debug symbols of TclCL: both tclcl and libtclcl1
Changes: 
 tclcl (1.20-1) unstable; urgency=low
 .
   * New upstream stable release.
   * debian/watch: to sf.net.
   * rm config.status and override lintian warning.
   * Rewrite build system with cmake.
   * Generate shared library, packages renamed to libtclcl1 and libtclcl1-dev;
 libtclcl1-dev provides libtclcl1-dev; New debug package tclcl-dbg.
   * New pkg-config file: tclcl.pc.
   * Multiarch these packages.
   * Symbols file for libtclcl1.
   * tclcl: install otcldoc:
 simple script for translating otcl classes into an html hyperlinked 
document
Checksums-Sha1: 
 5ac412805d94329304b05c1d6a65666e50a5e255 1493 tclcl_1.20-1.dsc
 45d38a1dea2ed9bfd529776b16f5a78d584f7549 171728 tclcl_1.20.orig.tar.gz
 57f7eea4cf0bbea296ecb455a1bacb89f57e900d 9168 tclcl_1.20-1.debian.tar.gz
 aa7ed86ee1b3b823803dcd51c968313e12509d81 43460 tclcl_1.20-1_amd64.deb
 95394fc9e93564d8de0404d8615e7fa36af918a9 103556 libtclcl1_1.20-1_amd64.deb
 e72b2885e5799746312169e7dc6d8869632c1a1a 113708 libtclcl1-dev_1.20-1_amd64.deb
 3571f9ea3b2c4f8fef14a93a1c95ed803d16e4f0 39418 tclcl-dbg_1.20-1_amd64.deb
Checksums-Sha256: 
 ad12782a97e97ff8c715a6edccc010434590b4cd7d3939d6cd44642239ba529e 1493 
tclcl_1.20-1.dsc
 64fd1ec4b1d1c13229e58a7e10bf8422d804c5d3f00221117eafc2aff306dc78 171728 
tclcl_1.20.orig.tar.gz
 dcc47e3216b7aa4fc4f9ff622eb39fa8a270804527ead2a4c0d25932690f46af 9168 
tclcl_1.20-1.debian.tar.gz
 7f6b561ccaded2e87421ba448b4d84b72b7f5d52b98bc8f109a0e0406c7c227c 43460 
tclcl_1.20-1_amd64.deb
 ef94bfc9e5a863d9755921b1cde9a7becdcfb46b4c5e0e61d208ef79cc3bd018 103556 
libtclcl1_1.20-1_amd64.deb
 b6d99b6f0da51cb6fa11834e6a94e616272f1df58a6107a45cdcbb5a38ebb9f2 113708 
libtclcl1-dev_1.20-1_amd64.deb
 fce9117e0615826e1df7ae026a84bb79dfe8f4ed73202b5b7200548b45489839 39418 
tclcl-dbg_1.20-1_amd64.deb
Files: 
 13a53369638ea97fcfbb693d53172aed 1493 libs optional tclcl_1.20-1.dsc
 91d48d6694ae06cd29c627df6b78534a 171728 libs optional tclcl_1.20.orig.tar.gz
 ce0f253b55934959ddf54cf870de1a4b 9168 libs optional tclcl_1.20-1.debian.tar.gz
 d7dc6bf3c809485dfcd4205790b7ae04 43460 utils optional tclcl_1.20-1_amd64.deb
 7bdc83271adea03d5bc926f9d4d42442 103556 libs optional 
libtclcl1_1.20-1_amd64.deb
 79d52bceb911754c055e6f69ed626aaf 113708 libdevel optional 
libtclcl1-dev_1.20-1_amd64.deb
 e242bc2af100d1086b0ead3b27e93713 39418 debug extra tclcl-dbg_1.20-1_amd64.deb

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

iEYEARECAAYFAk7BLCAACgkQ5TUK4GCH0vgqLACePpC1KpGYnlbJlbxmr6quV2Iv
bTwAoKv6FTVS8yG88iD4eCIPXHGpoc4v
=ETGg
-END PGP SIGNATURE-


Accepted:
libtclcl1-dev_1.20-1_amd64.deb
  to main/t/tclcl/libtclcl1-dev_1.20-1_amd64.deb
libtclcl1_1.20-1_amd64.deb
  to main/t/tclcl/libtclcl1_1.20-1_amd64.deb
tclcl-dbg_1.20-1_amd64.deb
  to main/t/tclcl/tclcl-dbg_1.20-1_amd64.deb
tclcl_1.20-1.debian.tar.gz
  to main/t/tclcl/tclcl_1.20-1.debian.tar.gz
tclcl_1.20-1.dsc
  to main/t/tclcl/tclcl_1.20-1.dsc
tclcl_1.20-1_amd64.deb
  to main/t/tclcl/tclcl_1.20-1_amd64.deb
tclcl_1.20.orig.tar.gz
  to main/t/tclcl/tclcl_1.20.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/e1rqh43-0004rp...@franck.debian.org



Accepted avfs 1.0.0-2 (source amd64)

2011-11-15 Thread Michael Meskes
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 11:01:24 +0100
Source: avfs
Binary: avfs
Architecture: source amd64
Version: 1.0.0-2
Distribution: unstable
Urgency: low
Maintainer: Michael Meskes mes...@debian.org
Changed-By: Michael Meskes mes...@debian.org
Description: 
 avfs   - virtual filesystem to access archives, disk images, remote locati
Closes: 634364
Changes: 
 avfs (1.0.0-2) unstable; urgency=low
 .
   * Made avfs work correctly with kFreeBSD. (Closes: #634364)
Checksums-Sha1: 
 4222b3cd117871099905944b6cb6c2e5192c02ae 1005 avfs_1.0.0-2.dsc
 d6526f12e51f7f4f041f892d5fe61140ca89606e 7213 avfs_1.0.0-2.diff.gz
 150ff3d3ef7ca5eeadd10112cba0d23579755c74 526478 avfs_1.0.0-2_amd64.deb
Checksums-Sha256: 
 5685b7600e301a471fd386d2bf95260b4921526691e0c45371450f055bc34b03 1005 
avfs_1.0.0-2.dsc
 1c5700f5cde41bb6536ca7616e7ed41eeb48739e4170c29bc954ccfb31950e15 7213 
avfs_1.0.0-2.diff.gz
 26bab4bccd3ab14822456fece74f27c844141ce505f00498352000c6b1c95b05 526478 
avfs_1.0.0-2_amd64.deb
Files: 
 5d9eea23bbb9382c55c66effb567f064 1005 utils extra avfs_1.0.0-2.dsc
 190c6c1d72fba3d113b4b8c635bf3093 7213 utils extra avfs_1.0.0-2.diff.gz
 0aafb3a47ff9174a00894dd73f33ab09 526478 utils extra avfs_1.0.0-2_amd64.deb

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

iD8DBQFOwkeTVkEm8inxm9ERAn5QAJsGdCT88emUbNE8ETEvNx+3N5mb2ACeLWhb
45M3jdSzyFZGxrZMYsyB3rA=
=ebuD
-END PGP SIGNATURE-


Accepted:
avfs_1.0.0-2.diff.gz
  to main/a/avfs/avfs_1.0.0-2.diff.gz
avfs_1.0.0-2.dsc
  to main/a/avfs/avfs_1.0.0-2.dsc
avfs_1.0.0-2_amd64.deb
  to main/a/avfs/avfs_1.0.0-2_amd64.deb


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



Accepted clearsilver 0.10.5-1.2 (source amd64)

2011-11-15 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 16:24:49 +0100
Source: clearsilver
Binary: clearsilver-dev python-clearsilver libclearsilver-perl
Architecture: source amd64
Version: 0.10.5-1.2
Distribution: unstable
Urgency: low
Maintainer: Jesus Climent jesus.clim...@hispalinux.es
Changed-By: Didier Raboud o...@debian.org
Description: 
 clearsilver-dev - headers and static library for clearsilver
 libclearsilver-perl - Perl bindings for clearsilver
 python-clearsilver - Python bindings for clearsilver
Closes: 643474
Changes: 
 clearsilver (0.10.5-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Drop wrong debian-changes-0.10.5-1 patch (Closes: #643474).
Checksums-Sha1: 
 a06d622a48a084d7524e8183fc6707e327cda390 1914 clearsilver_0.10.5-1.2.dsc
 3557e2666f68b3a0e14e242679fbaec68171da42 7521 
clearsilver_0.10.5-1.2.debian.tar.gz
 413bed8b7be85a0af5dc80a1b8efa1c35184e36a 288500 
clearsilver-dev_0.10.5-1.2_amd64.deb
 3b513650e282861fcc7978719932fbb326cf268c 199252 
python-clearsilver_0.10.5-1.2_amd64.deb
 3a3d384df1f4b62a99fc4182733fe915ae7054e8 99642 
libclearsilver-perl_0.10.5-1.2_amd64.deb
Checksums-Sha256: 
 0523e3bb07239a0f63cee8e83d03f3579a1c78412c04a652501b86dfa2666e20 1914 
clearsilver_0.10.5-1.2.dsc
 cb514efdd075db04f9b3c54b5597344916d5c0a752f60b3c638983a0c8bfd640 7521 
clearsilver_0.10.5-1.2.debian.tar.gz
 07dfbabf0763ba181cd1eee733364582ab8eb5df96b7f47863e6c3a14a381f7c 288500 
clearsilver-dev_0.10.5-1.2_amd64.deb
 7b98f5168d072f05639e7b21c446542e46ae7c578727bde8980e5aa34c32af4e 199252 
python-clearsilver_0.10.5-1.2_amd64.deb
 4d4d6275a71c55bad61e0209e6cca54aa80bab9798b46cac4cbfbce6701dc770 99642 
libclearsilver-perl_0.10.5-1.2_amd64.deb
Files: 
 44b724862f450e36c4215a00b5b3e556 1914 devel optional clearsilver_0.10.5-1.2.dsc
 a7903ee411c87f86a6a41415945f09fd 7521 devel optional 
clearsilver_0.10.5-1.2.debian.tar.gz
 1e76145683222a22751263f6efb86ce4 288500 python optional 
clearsilver-dev_0.10.5-1.2_amd64.deb
 2e811934816d57feb3b4c1db910ee7f8 199252 python optional 
python-clearsilver_0.10.5-1.2_amd64.deb
 2fe24bcb0fbf7da4ed1dad707f7a125a 99642 perl optional 
libclearsilver-perl_0.10.5-1.2_amd64.deb

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

iQGcBAEBCAAGBQJOwoejAAoJEIvPpx7KFjRVDioL/0KYRv0HPB/gZS4Bqv6+NX7w
ky3o3DXNPqm5nwwW6WIXFFbqn0qIEpDrAPrMPibQEvs1b8ICzBgo966oMhGQz22h
4i0bcjXP9zka1AIyh3jnndXnZZnoZNmseX/zNllyglSTyIyHVxXoMcuc10Kaqezj
gCnhhNMHG4t9OIMkWqwljPsMXQZiOONZuebglREp7iX5sd+uqJ9/nDeD80Vq6iIc
FfrPFui6CRPCAYhykm5yXm7lwXDEG93OPxjOfAg0Pbd6m6LotgywKiZGvRHA5SdW
KkbTDptXOz8ULFAlsAjuLsUHONMOPR0kCEJMb0HS0TUH2PYwVxTXovP1LdsXl2cB
pO4vOWU3uKrn2FWagEUh6l+9TYklSf0+uAgzf5HhbPGwMH2moNYVMTd1xbywY/Gx
bIe43lQCbt94JM7BFCBgyKHdPQbpddhtuAmgQ4o4DRg3aMlWz5hLm3nonWCFcJRn
vVdsi9lDk5oOuw7j0LkOptpWDufxyoJPCVM7EViJ/w==
=373V
-END PGP SIGNATURE-


Accepted:
clearsilver-dev_0.10.5-1.2_amd64.deb
  to main/c/clearsilver/clearsilver-dev_0.10.5-1.2_amd64.deb
clearsilver_0.10.5-1.2.debian.tar.gz
  to main/c/clearsilver/clearsilver_0.10.5-1.2.debian.tar.gz
clearsilver_0.10.5-1.2.dsc
  to main/c/clearsilver/clearsilver_0.10.5-1.2.dsc
libclearsilver-perl_0.10.5-1.2_amd64.deb
  to main/c/clearsilver/libclearsilver-perl_0.10.5-1.2_amd64.deb
python-clearsilver_0.10.5-1.2_amd64.deb
  to main/c/clearsilver/python-clearsilver_0.10.5-1.2_amd64.deb


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



Accepted gvpe 2.24-2 (source amd64)

2011-11-15 Thread TANIGUCHI Takaki
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 10:58:19 +0900
Source: gvpe
Binary: gvpe
Architecture: source amd64
Version: 2.24-2
Distribution: unstable
Urgency: low
Maintainer: TANIGUCHI Takaki tak...@debian.org
Changed-By: TANIGUCHI Takaki tak...@debian.org
Description: 
 gvpe   - creates a virtual ethernet between multiple endpoints
Closes: 647809
Changes: 
 gvpe (2.24-2) unstable; urgency=low
 .
   * debian/control: Add Vcs-* fields.
   * debian/gvpe.default: rename parameter DAEMON_OPTS to DAEMON_ARGS.
 (Closes: #647809)
Checksums-Sha1: 
 258075ff0032ac07524da0dc965a2dcb793b29a2 1830 gvpe_2.24-2.dsc
 6e842aa53e08101835d3b7ed48dd1861a4777ee2 15596 gvpe_2.24-2.debian.tar.gz
 30ecdb935bdb8798e2567567cee7bef4e41799df 141778 gvpe_2.24-2_amd64.deb
Checksums-Sha256: 
 9d62d3be639bd6eb98c3e59b218ec15c13b374fb5191293dd56d75f0803dfff8 1830 
gvpe_2.24-2.dsc
 28b765d4b1e9cec73d6a0f6eb07f53817947ee888e40567cb9803f8eaf72b851 15596 
gvpe_2.24-2.debian.tar.gz
 1f8ce557bbae6df9d58e034dd9aa53764ec69a71eff1d091addf543f819c60a2 141778 
gvpe_2.24-2_amd64.deb
Files: 
 5f5f9b4905a6aefa98bbbfb81af4dd6d 1830 net extra gvpe_2.24-2.dsc
 3de17a93d542a2849da9e8105438d284 15596 net extra gvpe_2.24-2.debian.tar.gz
 d648f23d5749282d122680d9b52ce960 141778 net extra gvpe_2.24-2_amd64.deb

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

iQIcBAEBCAAGBQJOwk/MAAoJEMwUn2wopeJXjg0QAI24zXJx94BMSUEcg5fvARdh
gzpy6mUn4Y/CAVvUB53NrwJu8ezcXwN3Mn8Kp8ueGWOe62tugcr6VhPmzDgc3m5+
j04tWmqM6wRDczYNg3WsJm0eD1lpzG/OoF/vfvuSI1Mn0vqvbge8NS1XCbQnq5E0
PUD7xHOWyJ7rhcA6QWQ2GAvkWdlsURJ4coGOYKHAMm2BHm1HeJKqq2aM7Sq11mVA
XuYNNvS5JtvjscBZkdIWDSgcuXn2nBzO5IFwXrCyOZaiD/KHxrAG8ytx23ygHUpJ
hJT+22K4AoAnq+yHO1CdtUnTvvuizIg0n1s/LAlmVWJg7XywLXatGUwf2qmMBvoF
lM/oVLbIBU0MpzHpHm44pNYj64/8QyDp7R5/TvgQfJ/BcSzzTHeMAsPs7ijalnZO
EwUVgt/ao5E8CguNM4CTIdMEfBDPBdHaZSAYw+iS0LkrPH1OgjwR8iweqH93FQek
vbUBoPYMmIElCtBcNBOkd0Ol2D0XIe3kucJFwQZauNi+ECT94vMAga4t8nI++ltZ
CEmnOXcKohFq77AD5CZiGEY4+SvLXt4XI/T2Vrkk4wkgd8nMWO4PI31vszg8neex
Z6k4MnA/ES7aAzxNDfaK5r/h2K5vgtEx/LB/3QKAIbzxVPJ61BSO9yPxrb5CRpmz
82NmQx6djriQWg2JlePm
=r6fQ
-END PGP SIGNATURE-


Accepted:
gvpe_2.24-2.debian.tar.gz
  to main/g/gvpe/gvpe_2.24-2.debian.tar.gz
gvpe_2.24-2.dsc
  to main/g/gvpe/gvpe_2.24-2.dsc
gvpe_2.24-2_amd64.deb
  to main/g/gvpe/gvpe_2.24-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/e1rqlzp-0003au...@franck.debian.org



Accepted python-enet 0.0~svn24-1 (source amd64)

2011-11-15 Thread Christoph Egger
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 15 Nov 2011 15:57:37 +0100
Source: python-enet
Binary: python-enet
Architecture: source amd64
Version: 0.0~svn24-1
Distribution: unstable
Urgency: low
Maintainer: Christoph Egger christ...@debian.org
Changed-By: Christoph Egger christ...@debian.org
Description: 
 python-enet - wrapper for the ENet library
Changes: 
 python-enet (0.0~svn24-1) unstable; urgency=low
 .
   * Updated to svn revision 24
Checksums-Sha1: 
 15444efb98ca2c52ebba6d7f76a4e4d239adf662 1801 python-enet_0.0~svn24-1.dsc
 f4501f4b9d4e1c2eee5b138c2059dab1f3d3d880 8984 python-enet_0.0~svn24.orig.tar.xz
 eb2a07a61a3a00df3918d3b357adf0cb72d7ca84 3053 
python-enet_0.0~svn24-1.debian.tar.gz
 6c1fbc6563c84eb36f971e24cb8b3458de75af2b 81454 
python-enet_0.0~svn24-1_amd64.deb
Checksums-Sha256: 
 89725e2832331ed40eeb04ba7b2a466ab46dfcf8642ccd973eb908c2a4726bbc 1801 
python-enet_0.0~svn24-1.dsc
 df9c738d1b02a2a10da822ff952964fb3b59e796acdc9f2e04b701379f3b52b9 8984 
python-enet_0.0~svn24.orig.tar.xz
 b7f968f3c8c9c83455047abd241c54832893d1b6c9347ac0daa02d9e3c44508d 3053 
python-enet_0.0~svn24-1.debian.tar.gz
 d374a5480332699780aa999222f15eaf8e40e2ff8490b35683e8dd98449e49ac 81454 
python-enet_0.0~svn24-1_amd64.deb
Files: 
 3495d3a502d0c847a368f2e71d1dfae0 1801 python optional 
python-enet_0.0~svn24-1.dsc
 3db4fdb18a4006149f71c85eee7cec05 8984 python optional 
python-enet_0.0~svn24.orig.tar.xz
 0ebea103db261199c39e96f8f19a0154 3053 python optional 
python-enet_0.0~svn24-1.debian.tar.gz
 40d76693bce8b8e6516ac0da4172bdbd 81454 python optional 
python-enet_0.0~svn24-1_amd64.deb

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

iQIcBAEBCgAGBQJOwn8/AAoJEKv/7bJACMb5SJoP/3snvAnJGs7/hsp2YlmLulhc
DAo/g/epCCgCCTtzbwp9/1vW6Tc/5P5B1C8aip4aFlGOg9ELADeVxXM4GhswlZ1n
NuGYHCYgQvNAJi4eSU8+2W5vEdmVQfxGLS28QKWKNJl/O5GeszCYSk2SZIdb6L3u
tz2XVrqsb4xtAIgZqmPFsQW25KBC0xtt+aYxQO5N8C8z9i59L2B6LFwJIJEFVDte
Wdix/ZkL1DbGi4dgbEGB8i49AvQaRMlCvlRrO0dPDLExU9CYVSDTwqvvnJexcpK+
apSmYc/eFsNuMs1JBUomMDo1fSz530GpC5m7LYk2EYkKnzlf0nSvwMSqeV1YLZr0
qd6NAE8qN6cXjedqUiKotKzUfOPz+dg0DNkpjxK5yL82kgibYlTZjtw2uaaQBTI2
Wz40umuhSwLYR3HmHpBRnp8hZiQeootqyyOrAmDdVsIhJ38jkuG+cR5JYT5tcuEV
godpZyEWi3+bipBPe+mcvPBzUS2f8NnGHkRsU4D8U9/iFhBjxGLb9YGrt8ix/lGj
lCcT2LQHM8RXeWF7LJgGbGyps4ISusPCZIRDNpMPf8wfWgT+1nCeTMldT7uRtxJk
RURUAp26UPvrV6+PhOZn+xI20ras3ehJ6mcOErmYTw1dGZ+GTvMYk+beXk5jimTG
AaHZ3YUM2yc61hY+Q5cz
=re01
-END PGP SIGNATURE-


Accepted:
python-enet_0.0~svn24-1.debian.tar.gz
  to main/p/python-enet/python-enet_0.0~svn24-1.debian.tar.gz
python-enet_0.0~svn24-1.dsc
  to main/p/python-enet/python-enet_0.0~svn24-1.dsc
python-enet_0.0~svn24-1_amd64.deb
  to main/p/python-enet/python-enet_0.0~svn24-1_amd64.deb
python-enet_0.0~svn24.orig.tar.xz
  to main/p/python-enet/python-enet_0.0~svn24.orig.tar.xz


-- 
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/e1rqn6b-0005vm...@franck.debian.org



Accepted cluster-glue 1.0.8-3 (source all amd64)

2011-11-15 Thread Martin Loschwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 17:00:18 +
Source: cluster-glue
Binary: libcluster-glue liblrm2 libpils2 libplumb2 libplumbgpl2 libstonith1 
liblrm2-dev libpils2-dev libplumb2-dev libplumbgpl2-dev libstonith1-dev 
libcluster-glue-dev cluster-glue cluster-glue-dev
Architecture: source amd64 all
Version: 1.0.8-3
Distribution: unstable
Urgency: high
Maintainer: Debian HA Maintainers 
debian-ha-maintain...@lists.alioth.debian.org
Changed-By: Martin Loschwitz madk...@debian.org
Description: 
 cluster-glue - The reusable cluster components for Linux HA
 cluster-glue-dev - Development files for the cluster glue components
 libcluster-glue - Reusable cluster libraries (transitional package)
 libcluster-glue-dev - The reusable cluster components for Linux HA 
(transitional packag
 liblrm2- Reusable cluster libraries -- liblrm2
 liblrm2-dev - Reusable cluster development files -- liblrm
 libpils2   - Reusable cluster libraries -- libpils2
 libpils2-dev - Reusable cluster development files -- libpils2
 libplumb2  - Reusable cluster libraries -- libplumb2
 libplumb2-dev - Reusable cluster development files -- libplumb2
 libplumbgpl2 - Reusable cluster libraries -- libplumbgpl2
 libplumbgpl2-dev - Reusable cluster development files -- libplumbgpl2
 libstonith1 - Reusable cluster libraries -- libstonith1
 libstonith1-dev - Reusable cluster development files -- libstonith1
Changes: 
 cluster-glue (1.0.8-3) unstable; urgency=high
 .
   * debian/patches/series: Disable raexecupstart.patch as the bug causing
 this was in glib and is fixed in Unstable by now. For further details,
 please refer to the Ubuntu bug tracking system at
 https://bugs.launchpad.net/ubuntu/+source/cluster-glue/+bug/821732
 (urgency is set to high because this fixes a memory leak that might
 otherwise crash lrmd and crmd along with it)
Checksums-Sha1: 
 78cba229dfa6779a552712e19b7d0dadf88cfc5d 2601 cluster-glue_1.0.8-3.dsc
 def811df8152b8fbf68783153063217efa7459f9 10456 
cluster-glue_1.0.8-3.debian.tar.gz
 2e7e814c8b5d7cc17eeb4e33fa3c0dcc6183b873 24638 liblrm2_1.0.8-3_amd64.deb
 8fea6e5d0f276056cdaee1c78423348e22f8e2f9 24388 libpils2_1.0.8-3_amd64.deb
 ec0f033303fbe1985b746f90c70f4025829e1215 91970 libplumb2_1.0.8-3_amd64.deb
 e81f3c6f679c6f0a03a1d595b1232b102cbf0eb4 13412 libplumbgpl2_1.0.8-3_amd64.deb
 84c8b17336e53cd01a9062af555d78a0b56c8a56 20932 libstonith1_1.0.8-3_amd64.deb
 d17b3f8b89733724f9b789a97b1b3a07aba9358b 32378 liblrm2-dev_1.0.8-3_amd64.deb
 23299251930794e79bc26a29973a8bfc36d2768b 35414 libpils2-dev_1.0.8-3_amd64.deb
 a486efa7fbbf0bb58919a2437ddcaf61526da43f 132854 libplumb2-dev_1.0.8-3_amd64.deb
 d448ac4eb71043b687682a2ff290e33692af3d26 12880 
libplumbgpl2-dev_1.0.8-3_amd64.deb
 411ecd58ec16ff6683fa0d59bbce33f8bbf52a0d 27762 
libstonith1-dev_1.0.8-3_amd64.deb
 15edd47e060892eba69f922dd286747df42b215f 353816 cluster-glue_1.0.8-3_amd64.deb
 2d955dcc29d04efe8c466b464e143c838401aa39 1749630 
cluster-glue-dev_1.0.8-3_amd64.deb
 5d2d62431fc97b82a61f390c8d0beef8ebbafb55 10092 libcluster-glue_1.0.8-3_all.deb
 ef0da3ddafb473e934ef949b6410b9be20377c0e 10130 
libcluster-glue-dev_1.0.8-3_all.deb
Checksums-Sha256: 
 830a41b9d02c1acfec9e7ab41f7c2e20410632f0676500bcce207b22b974227c 2601 
cluster-glue_1.0.8-3.dsc
 f654322a0f223fbe6e950a45be6c464727f94bf9f8df26947672e5be72bb5145 10456 
cluster-glue_1.0.8-3.debian.tar.gz
 1f0f11dcba8a3427412d11878d92f2912ab89c1413d932817a497fea41013d12 24638 
liblrm2_1.0.8-3_amd64.deb
 2a308061bff6373b84c9127ef3b811a35f690582080c541ab5a2756b01e7d3a6 24388 
libpils2_1.0.8-3_amd64.deb
 4c1445f15e4db12d901a381e7dedab956fcd97f257af863c609afe2ecbc1a604 91970 
libplumb2_1.0.8-3_amd64.deb
 462b9cd7dc99bd78a1c572cf92feff530d9bf707fdbe46cfd27799be6c043fd7 13412 
libplumbgpl2_1.0.8-3_amd64.deb
 244ce1c7ab3e05960b36c31aacd33dee772f6229cd944d97e362b7304dc5abce 20932 
libstonith1_1.0.8-3_amd64.deb
 7ed7d0b6b7ac3d7479c6f0989dcd8479c85a3374c685c70dccbb9a2372faec4c 32378 
liblrm2-dev_1.0.8-3_amd64.deb
 e1f48c07809e123ef86d32e1b4694abd3cadf43ec1e1f01ce762766322db82fa 35414 
libpils2-dev_1.0.8-3_amd64.deb
 1e49fe87d121047c9b81c3cbdccca14a99f0148c394e45c8ea6edb6d60e9104b 132854 
libplumb2-dev_1.0.8-3_amd64.deb
 6872fe53b441f2601bf52fd8565e7f6fc4f1f28adcba1b6d164be8069e37eeb4 12880 
libplumbgpl2-dev_1.0.8-3_amd64.deb
 a4c75adff03a5e2ff5e7c41bd9b6e2ed64be26403c0cecd71cfb1359596304c7 27762 
libstonith1-dev_1.0.8-3_amd64.deb
 25c93c68ec517f966bff202a74a53dae68eba88c71a3eabdbea2450039ad9637 353816 
cluster-glue_1.0.8-3_amd64.deb
 0b0059d52967f5e244ef67a9a343f1a3c13567da5c2274e64e05e0038c3dbe2f 1749630 
cluster-glue-dev_1.0.8-3_amd64.deb
 5fed9ea33a76d67cb94866ad054a07c91ef25f29091e3bd653d4d90e569a8c26 10092 
libcluster-glue_1.0.8-3_all.deb
 4d7d86e2b57e62b9092e7a8c83a63f6f995b20f51d4c2302ca54efb59ba6a4b9 10130 
libcluster-glue-dev_1.0.8-3_all.deb
Files: 
 8caabf0fc7c5d31dc6c6600df0a0abc5 2601 admin optional cluster-glue_1.0.8-3.dsc
 

Accepted clutter-1.0 1.8.2-2 (source all amd64)

2011-11-15 Thread Laurent Bigonville
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 17:54:17 +0100
Source: clutter-1.0
Binary: libclutter-1.0-0 libclutter-1.0-common libclutter-1.0-dev 
libclutter-1.0-dbg libclutter-1.0-doc clutter-1.0-tests gir1.2-clutter-1.0
Architecture: source all amd64
Version: 1.8.2-2
Distribution: unstable
Urgency: low
Maintainer: Ross Burton r...@debian.org
Changed-By: Laurent Bigonville bi...@debian.org
Description: 
 clutter-1.0-tests - Open GL based interactive canvas library (test programs)
 gir1.2-clutter-1.0 - GObject introspection data for the Clutter 1.0 library
 libclutter-1.0-0 - Open GL based interactive canvas library
 libclutter-1.0-common - Open GL based interactive canvas library (common files)
 libclutter-1.0-dbg - Open GL based interactive canvas library (debug files)
 libclutter-1.0-dev - Open GL based interactive canvas library (development 
files)
 libclutter-1.0-doc - Open GL based interactive canvas library (documentation)
Closes: 647410
Changes: 
 clutter-1.0 (1.8.2-2) unstable; urgency=low
 .
   * Add fallback-non-transparent-stages.patch: Fallback to non-transparent
 stages (taken from upstream) (Closes: #647410)
Checksums-Sha1: 
 5198e63a72cf1cb2d465ea80fa490f8e9f2a4c7e 2785 clutter-1.0_1.8.2-2.dsc
 d443bd1583c7a33e480ddfec040c258d62f307c4 16218 
clutter-1.0_1.8.2-2.debian.tar.gz
 6757ea9ad481e84413cc72a754257f911515703c 645890 
libclutter-1.0-common_1.8.2-2_all.deb
 c97269876ed5e58664fdb7756a671f13ca20a795 984862 
libclutter-1.0-doc_1.8.2-2_all.deb
 8c410d3fe75862da599fecbd9d62fa7ccd02fcd9 626900 
libclutter-1.0-0_1.8.2-2_amd64.deb
 64ab2340c1e9f5ff5f337c6b9eb4e7db760d19ca 513268 
libclutter-1.0-dev_1.8.2-2_amd64.deb
 240b30b84efb4195aab346c64124aebb28e0d554 1501164 
libclutter-1.0-dbg_1.8.2-2_amd64.deb
 14eb9e26f76334d30febd4b7a930c7a68e375e0f 319502 
clutter-1.0-tests_1.8.2-2_amd64.deb
 e35c1ec0da2918561866e9935d1ebfa915e4e41d 334458 
gir1.2-clutter-1.0_1.8.2-2_amd64.deb
Checksums-Sha256: 
 7796de886b12f9f4d68b56c67d7c8ab7ca667817cb3788c919b08d2340730425 2785 
clutter-1.0_1.8.2-2.dsc
 3503e89f3be89f83b8e67f8016b984d8922830bfd5eb316ed4b6e83dd3ab7c3b 16218 
clutter-1.0_1.8.2-2.debian.tar.gz
 f0e7b6f8fe915ca8d00ffabc5340674ddc4508d2c6a79ede78eaaf1d6a5fa5b8 645890 
libclutter-1.0-common_1.8.2-2_all.deb
 e22ce0cf508d2432a1fdd78f81754b33b2b3d9d1e50f9756c65805b08c912a21 984862 
libclutter-1.0-doc_1.8.2-2_all.deb
 441341fe96e3315cd54d9ef25fbb26b6996d230d6c0648725388c1cbacb82e12 626900 
libclutter-1.0-0_1.8.2-2_amd64.deb
 9708b12057bbc67033aebb9b74bcb31710d912c071281eabe7b35a9ff562d733 513268 
libclutter-1.0-dev_1.8.2-2_amd64.deb
 5b1615691e4dd0961914ffbdcb4b3c98e778eb6dd336c7fb9da7df6a263fa6a0 1501164 
libclutter-1.0-dbg_1.8.2-2_amd64.deb
 60c9e9bfe154ad6a97ddc4479b54aa4a4ee7af7567453b8b7e4163ef0479a57f 319502 
clutter-1.0-tests_1.8.2-2_amd64.deb
 71d1fcf699d167617165192e9100d78acd223face3c15427fbdae8a16fd6889e 334458 
gir1.2-clutter-1.0_1.8.2-2_amd64.deb
Files: 
 d50ee62c17d12f0c7a3205535d71ee93 2785 libs optional clutter-1.0_1.8.2-2.dsc
 88a42bc3594e59e87aebe8eac4223439 16218 libs optional 
clutter-1.0_1.8.2-2.debian.tar.gz
 bef1194bf678559e93d3667ce442ba4e 645890 libs optional 
libclutter-1.0-common_1.8.2-2_all.deb
 65adb42254aba7e8403472676e2a9068 984862 doc optional 
libclutter-1.0-doc_1.8.2-2_all.deb
 7a9387ffbc7bb3ad5ae94dc911724244 626900 libs optional 
libclutter-1.0-0_1.8.2-2_amd64.deb
 e257951e82e9a984091952b28a4c5499 513268 libdevel optional 
libclutter-1.0-dev_1.8.2-2_amd64.deb
 d021c861df317c525691d53242a84934 1501164 debug extra 
libclutter-1.0-dbg_1.8.2-2_amd64.deb
 caa6033d0d70c3ad171be8ae057db395 319502 misc extra 
clutter-1.0-tests_1.8.2-2_amd64.deb
 6401ba3a08477bc5a307210ef0f4f3be 334458 libs optional 
gir1.2-clutter-1.0_1.8.2-2_amd64.deb

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

iQEcBAEBCAAGBQJOwpyiAAoJEB/FiR66sEPVi4gIAKg28LQO8KnkHg0q8q12NcvI
If2/YZUQDxthd4Hpiq4Ae9O66zyPhDQJYv1riT2Io6CSmpV+AQSqOY966S2PdsFc
0AXIKFoHs7SDoYUHaBO690LlFfrA5u6Yp2VMcZlQgD5ECTJMDh9Rcf5e56uEbqgn
5Yb/9q95XIyqMuIJTXp9iRJ5nk0MaJwEis3Uza9BLPq0aCJDgjtp9DX+4oFA23SI
iJ6vUr6Rrb7yV14y6h1breMKfzG6GvhF+J2DUOvUbO/N16zMfA4mL0QyvUs2HPk/
nlL22EbJnIkD4hpuOyOOc6KUaufqjxfJqI5cACd2UtBlfVHjNrdDHCsGRbJVww4=
=xBXk
-END PGP SIGNATURE-


Accepted:
clutter-1.0-tests_1.8.2-2_amd64.deb
  to main/c/clutter-1.0/clutter-1.0-tests_1.8.2-2_amd64.deb
clutter-1.0_1.8.2-2.debian.tar.gz
  to main/c/clutter-1.0/clutter-1.0_1.8.2-2.debian.tar.gz
clutter-1.0_1.8.2-2.dsc
  to main/c/clutter-1.0/clutter-1.0_1.8.2-2.dsc
gir1.2-clutter-1.0_1.8.2-2_amd64.deb
  to main/c/clutter-1.0/gir1.2-clutter-1.0_1.8.2-2_amd64.deb
libclutter-1.0-0_1.8.2-2_amd64.deb
  to main/c/clutter-1.0/libclutter-1.0-0_1.8.2-2_amd64.deb
libclutter-1.0-common_1.8.2-2_all.deb
  to main/c/clutter-1.0/libclutter-1.0-common_1.8.2-2_all.deb
libclutter-1.0-dbg_1.8.2-2_amd64.deb
  to main/c/clutter-1.0/libclutter-1.0-dbg_1.8.2-2_amd64.deb
libclutter-1.0-dev_1.8.2-2_amd64.deb
  to 

Accepted drush 4.5-4 (source all)

2011-11-15 Thread Antoine Beaupré
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 11:06:01 -0500
Source: drush
Binary: drush
Architecture: source all
Version: 4.5-4
Distribution: unstable
Urgency: low
Maintainer: Antoine Beaupré anar...@debian.org
Changed-By: Antoine Beaupré anar...@debian.org
Description: 
 drush  - command line shell and Unix scripting interface for Drupal
Closes: 648413
Changes: 
 drush (4.5-4) unstable; urgency=low
 .
   * Do not require using the upstream branch in git-buildpackage
   * Revert 4.5-2 approach of fetching table.inc during build, as buildd do
 not have network access, and Ubuntu rebuilds even Arch: all packages
 (Closes: #648413).
Checksums-Sha1: 
 ac4e0ef77bcc9eaff5d72fad1b6fcdc33d16d8d1 1793 drush_4.5-4.dsc
 d85f9ea7a6aaeeab29b6891716b4082d879448dd 14536 drush_4.5-4.debian.tar.gz
 3a44ab547b635c29a26c7064bb57fc8207e20acf 250052 drush_4.5-4_all.deb
Checksums-Sha256: 
 42b1e1621ad09752cb689b16a8919cf1acd09fda70e57a671566eb9074592e04 1793 
drush_4.5-4.dsc
 0f58dffb505f9aa50386239a57c7cffd1069c2c6c127c692019419449ba12a40 14536 
drush_4.5-4.debian.tar.gz
 2459077c53f9a4502e8920da2be82c5b838837452470c94a2ba23a32f907c852 250052 
drush_4.5-4_all.deb
Files: 
 c584a110ac0de5ec05dacacd33eeb1a7 1793 php optional drush_4.5-4.dsc
 109790fce869b99d51f839b59b9cc307 14536 php optional drush_4.5-4.debian.tar.gz
 eac9135de7a625b12cb20952374566fe 250052 php optional drush_4.5-4_all.deb

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

iQIcBAEBCAAGBQJOwo/cAAoJEHkhUlJ7dZIeDRgP/RhBn9dmLMTTygNiitwJc3d6
zxPBwqs4MBnEeHOunhoadjp0PPBG1uCwgtm2sEIiRHESqb8a2A1WEao/eMZdz7IE
YcSL9sp0auskW3ZD0BQkUrTE2nz22/nJk8Y2gVaCMfqIo6mqG5GHIDlsXVQR2ZV3
U3MwNebIR+C8+fGtRdRqUd3WYa8WI+lA/6YlHLQvwl5jR8OqV5WUYemFd6z2A9KT
d9jUT4ZGuZaYcKOD8w43koFFqAiEQp3qbLqpSRydNh2s25pR/WbQbRouIXHN0XBg
HW+r3WNB7B63JODD06UelkM/O8JJcFfce5f/opU/xe1Vrzu1qAcDAQJMVZ5qH8/9
1cyZxetKU4oXum/SkR5uh42NEGdQPAZ34WMFqgD34ue52nnRADjJdA5TqZ7wN0SG
Kh8WbYdqFOl2f3C31aVQXFzvpYMu66dSqpHR5iZSc/bteEKIthgcXe6WTKrJhc0D
OQ1xoezZM82dkM09aISwwE8UdTjeU6CzeU5N8zv9QqJL3nBjoB2zHu7icBE4D34w
e13dxjJIgTvDJRyhGw8Vy0SbkAXjtrHVyj6elbeLr9q4R7sSKbK06VZRSEDbk8yy
QFA5UxTAzwihkSSFIgt4QyMdb0+9ywtzNnQZLDw+WQiYovjxlpu4Ru2Jr2ueAGiK
E7s/xdIuZHccy03KHiyM
=p1/2
-END PGP SIGNATURE-


Accepted:
drush_4.5-4.debian.tar.gz
  to main/d/drush/drush_4.5-4.debian.tar.gz
drush_4.5-4.dsc
  to main/d/drush/drush_4.5-4.dsc
drush_4.5-4_all.deb
  to main/d/drush/drush_4.5-4_all.deb


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



Accepted g2 0.72-2.1 (source amd64)

2011-11-15 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 16:59:33 +0100
Source: g2
Binary: libg2-dev libg20 libg20-perl
Architecture: source amd64
Version: 0.72-2.1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Didier Raboud o...@debian.org
Description: 
 libg2-dev  - g2 2D graphics library (development files)
 libg20 - g2 2D graphics library
 libg20-perl - g2 2D graphics library (Perl module)
Closes: 643478
Changes: 
 g2 (0.72-2.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't mix source format 3.0 (quilt) and manual usage of quilt:
 - Drop manual quilt calls from debian/rules;
 - Drop superfluous quilt Build-Depends.
 Closes: #643478
Checksums-Sha1: 
 c5862624ee670771b1c3b4d08096f946b35228cf 1974 g2_0.72-2.1.dsc
 c1bb30a454407c7f70be120a412c11e2efcef68e 8486 g2_0.72-2.1.debian.tar.gz
 f088581b877f26fb386f544d36df50635cd41bed 207502 libg2-dev_0.72-2.1_amd64.deb
 c2a8b3d24e493a9f9f273286be2c85b5e14015dc 51526 libg20_0.72-2.1_amd64.deb
 c83ca77fde4a1d2641ade3d1ed8f97c0c7227e81 35856 libg20-perl_0.72-2.1_amd64.deb
Checksums-Sha256: 
 264a4cbb7cdef5cc8803a6a76970b7241e2d5050cf6df513e50516acd0f7115c 1974 
g2_0.72-2.1.dsc
 532d6f1ffc369441a1fa547f93c41a3d86d9a1a467110124125872777c7581e2 8486 
g2_0.72-2.1.debian.tar.gz
 89b17364d27a5eb5d45bbc9b0a8997cc4699bcf06e867fffa01618b3bcfa1508 207502 
libg2-dev_0.72-2.1_amd64.deb
 245bb1596bc2563f5f3fcd97e08f05e545b0995c2c135ff490d49399c311baea 51526 
libg20_0.72-2.1_amd64.deb
 63f1196a319b3086e82bcce30cc7c76966f3010c63428ff5073600c53980c08e 35856 
libg20-perl_0.72-2.1_amd64.deb
Files: 
 a0268d398a91d7b335943a720da2343b 1974 libs optional g2_0.72-2.1.dsc
 ab40ecf068117a208854034b15a8d6ba 8486 libs optional g2_0.72-2.1.debian.tar.gz
 490968c401af60c093d8e0b6679f52ec 207502 libdevel optional 
libg2-dev_0.72-2.1_amd64.deb
 011080025e98687f70628098419a3c6a 51526 libs optional libg20_0.72-2.1_amd64.deb
 74881554150a3c0c5ae1f9d46b99a24b 35856 perl optional 
libg20-perl_0.72-2.1_amd64.deb

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

iQGcBAEBCAAGBQJOwo4mAAoJEIvPpx7KFjRVQDwL/0kGX2/jnCDXfXsG/cw3pQ6c
UKs9UGTAAJ+Sv0DpKC5Qsqlu9HR6+9tp1nIrWqUUphicMqiqRl8qLmRPefI8bQKa
Zf/aHQezJPZHeKP6R3x671T8b2hwv9RjG+59D2L6dt7u7YwYyHWaYRKykhv5q8i8
sSUYGiia+Nl/SU2A5DX4BMYMMsmUWP+3DXqZweTTxgyEpNiySv7UdifEJ0Km+n/V
/+Cr5b/iW5hQHATZLpKFlHzH5pKHMemXiaTTXXnV4eiKKMQEQmIG4agbh0UdYlub
y2SHEkx7NVDc/NPC2q66ZN+Z+XEkjokoxNimz2q/UzZX4HheJNDovWXeQ0/ubbjx
BHJWgIRg1ikn4z9VvBWzIkDoh4AOjp9sQxD0lXZuPS13xyl6oD4KnyolxJ6vQEc/
J712VmVzfmLav0FafWlyUmwcbapalmHX6/GnlssiQMlb2MwUIlDR3xpbjes6urTh
3ygkHFdTqX7VyTKNMQSd+lFADWegBU/jJ/ehOYjhjA==
=okDf
-END PGP SIGNATURE-


Accepted:
g2_0.72-2.1.debian.tar.gz
  to main/g/g2/g2_0.72-2.1.debian.tar.gz
g2_0.72-2.1.dsc
  to main/g/g2/g2_0.72-2.1.dsc
libg2-dev_0.72-2.1_amd64.deb
  to main/g/g2/libg2-dev_0.72-2.1_amd64.deb
libg20-perl_0.72-2.1_amd64.deb
  to main/g/g2/libg20-perl_0.72-2.1_amd64.deb
libg20_0.72-2.1_amd64.deb
  to main/g/g2/libg20_0.72-2.1_amd64.deb


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



Accepted libgeo-proj4-perl 1.01-1.1 (source i386)

2011-11-15 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Nov 2011 16:54:42 +0100
Source: libgeo-proj4-perl
Binary: libgeo-proj4-perl
Architecture: source i386
Version: 1.01-1.1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libgeo-proj4-perl - Proj4 library for carthographic projections
Closes: 647120
Changes: 
 libgeo-proj4-perl (1.01-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix FTBFS with perl 5.14: CCFLAGS should include $Config{ccflags}:
 add patch conf_ccflags.patch by Dominic Hargreaves (closes: #647120).
Checksums-Sha1: 
 dee899c6be7926c350f8990a2020eeba4b9bd407 2019 libgeo-proj4-perl_1.01-1.1.dsc
 ba64e87646d35a2fbd4e4c4d1846c18b831d084f 1874 
libgeo-proj4-perl_1.01-1.1.debian.tar.gz
 0d0f7d82691e0a8d37af2885f42b00a054844984 29272 
libgeo-proj4-perl_1.01-1.1_i386.deb
Checksums-Sha256: 
 fc86c75168c8049c01a13553de10578f3957cf27607bf6c6630ea943e7dcdf70 2019 
libgeo-proj4-perl_1.01-1.1.dsc
 acb98bb3d46cc8ad96f336ffd24b0b07ccfba932ceda8363885bc719e4d54be8 1874 
libgeo-proj4-perl_1.01-1.1.debian.tar.gz
 15485a1ce53709051a6996688438e13acf49c89ab5294ef032f39a9112f98e03 29272 
libgeo-proj4-perl_1.01-1.1_i386.deb
Files: 
 7e375498348b2bb9b6f09b609d4367f2 2019 perl optional 
libgeo-proj4-perl_1.01-1.1.dsc
 bc1d6335711568c9dc1f7f836efee85a 1874 perl optional 
libgeo-proj4-perl_1.01-1.1.debian.tar.gz
 29fe8f0cd2cdec97d06b4609d46e8b64 29272 perl optional 
libgeo-proj4-perl_1.01-1.1_i386.deb

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

iQIcBAEBCAAGBQJOv+kJAAoJELs6aAGGSaoGvUwP/iaYZpG5vK6Zq6bULr1w9y+l
tc1DF8XgNP+Sb1Zvq79veG/dWD1As9E0rVNVx5yZTDu4KPfSnDTU7mJo2ZVtkgJK
X4qEf8sDPXptDYlrEAKOtYqhgUkXLyjgC8cLkQgJFJmjcyShuQhNhsEhaj8s9A4P
+COiAyzvjWz1UBtNDqGR0QKzjH/x/d4N+JYvAsI4knJBWp1kLTgqGqBUUR5ondXw
2kZThOBihNre9hatGEBSC5ir+EaIE5bf8ZY3g75nWUoYF94q2RVivrcPCyvl4V0J
Rd8bLX903nKXlUr16ExZOhYpLenoVhIP8le/6vDDJwi1GKSW9UYro0bRcz3A21M8
fBxGPvcJpQqLGB5QeYYG1FUkI7AasvN8GLZnolYX5XEg6TaZGVoI3paPsjKkPg6k
VBq8/SW8ZzsnVIsKQTvq1p6arWkKq2ElHkFM4a/hIhhgXuq/QO6V4Imkoa2OrVg+
prPApR/bHNaTxuKufWigbH7xjPsnuf3r8vyr0HeYa1E0O3xiN6znvYr6E8xSDsxb
Wu+zheQ4GyDca/Mxk6SjqCU/XGrTLPDS7+WICn6CtPaQ80XeoNpFyRXT8Rph52P2
fwIPhDNfJJZXVVhxZXF0Nzxx/hUEt/8JuIYAhnuDTpSdwVWqpvHqaSscwTjoPwQC
+6DHKUw7xdixbCkBkW4B
=Ra/8
-END PGP SIGNATURE-


Accepted:
libgeo-proj4-perl_1.01-1.1.debian.tar.gz
  to main/libg/libgeo-proj4-perl/libgeo-proj4-perl_1.01-1.1.debian.tar.gz
libgeo-proj4-perl_1.01-1.1.dsc
  to main/libg/libgeo-proj4-perl/libgeo-proj4-perl_1.01-1.1.dsc
libgeo-proj4-perl_1.01-1.1_i386.deb
  to main/libg/libgeo-proj4-perl/libgeo-proj4-perl_1.01-1.1_i386.deb


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



Accepted resource-agents 1:3.9.2-5 (source all amd64)

2011-11-15 Thread Martin Loschwitz
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 17:14:18 +
Source: resource-agents
Binary: resource-agents resource-agents-dev ldirectord
Architecture: source amd64 all
Version: 1:3.9.2-5
Distribution: unstable
Urgency: high
Maintainer: Debian HA Maintainers 
debian-ha-maintain...@lists.alioth.debian.org
Changed-By: Martin Loschwitz madk...@debian.org
Description: 
 ldirectord - Monitors virtual services provided by LVS
 resource-agents - Cluster Resource Agents
 resource-agents-dev - Cluster Resource Agents Development files
Closes: 646110
Changes: 
 resource-agents (1:3.9.2-5) unstable; urgency=high
 .
   * debian/control: Fix the Conflicts and Replaces lines of resource-agents
 to make sure that cluster-agents and resource-agents are mutually
 exclusive. Setting the urgency to high because this bug keeps people
 from running the whole clusterstack (Closes: #646110)
   * debian/patches/ocf-asterisk: Include the Asterisk PBX OCF resource agent
 written by Florian Haas, Andreas Kurz and me, sponsored by hastexo
Checksums-Sha1: 
 5f298e69909cf138052405089b0f7e2ca4149868 1646 resource-agents_3.9.2-5.dsc
 44811e23cedb95e0d55d929ffb9dbdd760a7e88c 15939 
resource-agents_3.9.2-5.debian.tar.gz
 c498ae74f8f574dcf8b0bf5539e97060971fa344 509440 
resource-agents_3.9.2-5_amd64.deb
 620792e4aed425b4c395f84c9b339d40ddec8317 11732 
resource-agents-dev_3.9.2-5_amd64.deb
 d557b9b5290b57dbb60333cf53eec5edbb989bb5 65224 ldirectord_3.9.2-5_all.deb
Checksums-Sha256: 
 575c3a47d2d23cfc5e3b6157f6f93b550cdbcb9ca3df143ea315c51d1507db26 1646 
resource-agents_3.9.2-5.dsc
 156d08afb929ca777e0fd0f99cb54641be6b8755ea6604a62e52bf9af353c0b3 15939 
resource-agents_3.9.2-5.debian.tar.gz
 dc84fcbbdb6047c7ebab2af9fc36c4be12298f153eab56f5402c4f0f01c1403d 509440 
resource-agents_3.9.2-5_amd64.deb
 47a2221c84952ebb219711e2260918ee6680a2575ab3503368a7aa598aad19a2 11732 
resource-agents-dev_3.9.2-5_amd64.deb
 c54967087069bbd27338b84c1ecb9a7d77538340273b1bbf2aeb538a25eb96f4 65224 
ldirectord_3.9.2-5_all.deb
Files: 
 d52d7720c6993ca466f3af2223c6106b 1646 admin optional 
resource-agents_3.9.2-5.dsc
 d767f7d2fe5df3011335a4e30be962b4 15939 admin optional 
resource-agents_3.9.2-5.debian.tar.gz
 07334cb24bae25fc4c47514802936639 509440 admin optional 
resource-agents_3.9.2-5_amd64.deb
 4ae83d2385a735c7a866288cf1725def 11732 admin optional 
resource-agents-dev_3.9.2-5_amd64.deb
 8e3eafc4cd37f02c831c838e1d7510f8 65224 admin extra ldirectord_3.9.2-5_all.deb

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

iEYEARECAAYFAk7Coc4ACgkQHPo+jNcUXjBiuACfcYW5kDMVnCLrYxeawFmPP7ag
P+IAn1bkHrlFe5N7iYqZPBOr5KpiQMsP
=x/Ww
-END PGP SIGNATURE-


Accepted:
ldirectord_3.9.2-5_all.deb
  to main/r/resource-agents/ldirectord_3.9.2-5_all.deb
resource-agents-dev_3.9.2-5_amd64.deb
  to main/r/resource-agents/resource-agents-dev_3.9.2-5_amd64.deb
resource-agents_3.9.2-5.debian.tar.gz
  to main/r/resource-agents/resource-agents_3.9.2-5.debian.tar.gz
resource-agents_3.9.2-5.dsc
  to main/r/resource-agents/resource-agents_3.9.2-5.dsc
resource-agents_3.9.2-5_amd64.deb
  to main/r/resource-agents/resource-agents_3.9.2-5_amd64.deb


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



Accepted cheese 3.2.2-1 (source all amd64)

2011-11-15 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 20:28:14 +0100
Source: cheese
Binary: cheese cheese-common libcheese-gtk20 libcheese-gtk-dev libcheese1 
libcheese-dev gir1.2-cheese-3.0
Architecture: source all amd64
Version: 3.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 cheese - tool to take pictures and videos from your webcam
 cheese-common - Common files for the Cheese tool to take pictures and videos
 gir1.2-cheese-3.0 - tool to take pictures and videos from your webcam - gir 
bindings
 libcheese-dev - tool to take pictures and videos from your webcam - base dev
 libcheese-gtk-dev - tool to take pictures and videos from your webcam - 
widgets dev
 libcheese-gtk20 - tool to take pictures and videos from your webcam - widgets
 libcheese1 - tool to take pictures and videos from your webcam - base library
Changes: 
 cheese (3.2.2-1) unstable; urgency=low
 .
   * New upstream release.
   * debian/control.in:
 - Bump Build-Depends on valac to valac-0.14 (= 0.13.2).
Checksums-Sha1: 
 6e6bbe7958dacc7fba1ac2354105ed2a895a898e 3053 cheese_3.2.2-1.dsc
 0836267a2a793dae4a111a980a1c0ea8ad5c8a46 3486624 cheese_3.2.2.orig.tar.xz
 d1b70664699f697bb58dca3123d2bc6c68d5b95d 9782 cheese_3.2.2-1.debian.tar.gz
 5e7e2f7491cb6716a66942ba66a97be49d753185 3177444 cheese-common_3.2.2-1_all.deb
 84a7656d6ac14d1d048be0747e093d7918648633 181546 cheese_3.2.2-1_amd64.deb
 b48c241c2a587c9574fa3992cc97ec600faa1f08 151008 
libcheese-gtk20_3.2.2-1_amd64.deb
 d925a67a60a5e67441e4066cb548fd0c9dd949be 144986 
libcheese-gtk-dev_3.2.2-1_amd64.deb
 08dd5dad3d0360ce508ebd7cbe34cecfbde7aa7c 155566 libcheese1_3.2.2-1_amd64.deb
 f9fcb8cb21f95b9e861401a5b109b16c048e03d2 137414 libcheese-dev_3.2.2-1_amd64.deb
 debccb809292c509d7baced8ff8589a45d4e3764 133488 
gir1.2-cheese-3.0_3.2.2-1_amd64.deb
Checksums-Sha256: 
 9a52653bebc3a172db4822b1f1733a6c2fded0176b53af9ec7ecec4078ba969c 3053 
cheese_3.2.2-1.dsc
 8f050b03365310d739c54e48c8c62f8e2d6d9a028fed3eb3c8da4c7654a9009a 3486624 
cheese_3.2.2.orig.tar.xz
 e0df23eac696847d0529c3f38c685d6dfcf7066c8af32831542f9df9e63ab615 9782 
cheese_3.2.2-1.debian.tar.gz
 1a67bc5c988394e577005a36fe79b3dda2b6788f5935f36cde9ca9cfa0bd4dd6 3177444 
cheese-common_3.2.2-1_all.deb
 417269acb9a8e8d4dfebdd7dedb1c36af6908b93570dcf863fd52325e1525d87 181546 
cheese_3.2.2-1_amd64.deb
 6a93115a534b2d15ef585b808300a4773fced966b6ca9af0d5a4bc97402bb8f0 151008 
libcheese-gtk20_3.2.2-1_amd64.deb
 bb369e6d9c3b65f3aa57c7c42ca9ecb6cb4f99df92710177b7c0300c4cdabc04 144986 
libcheese-gtk-dev_3.2.2-1_amd64.deb
 a01eee864a462e33eed8db5b575b623a16e4281d31745debdc69f7334a9588fa 155566 
libcheese1_3.2.2-1_amd64.deb
 20845fbb5ed474be98a51558a1b0eaaea691c538e96c9e698fad11357c846fbe 137414 
libcheese-dev_3.2.2-1_amd64.deb
 e388e325e3d8f7b29a2b48ff0d7de6b42e13978b44a2f7275c083da35947fafe 133488 
gir1.2-cheese-3.0_3.2.2-1_amd64.deb
Files: 
 b8c2caa6cafeecc469cab7107cf0f45d 3053 gnome optional cheese_3.2.2-1.dsc
 a674bbe235cc960e578bb71b6aa55783 3486624 gnome optional 
cheese_3.2.2.orig.tar.xz
 4f2a652ca0e0e94f5233cfea6b9cd664 9782 gnome optional 
cheese_3.2.2-1.debian.tar.gz
 a54555bb82371d0eea2a63a75bf0ce06 3177444 gnome optional 
cheese-common_3.2.2-1_all.deb
 c6248b85ed7fc25d1fce7cf0dcc6b9ec 181546 gnome optional cheese_3.2.2-1_amd64.deb
 0104e2aad7686ebda75ae3fb0cdf5162 151008 libs optional 
libcheese-gtk20_3.2.2-1_amd64.deb
 50c42063d3938a270c9e1dd7d831392c 144986 libdevel optional 
libcheese-gtk-dev_3.2.2-1_amd64.deb
 65dc845cfd1de26119ae28eedf60affd 155566 libs optional 
libcheese1_3.2.2-1_amd64.deb
 d954aa14cd8b7c9e9d5e5fddc8925779 137414 libdevel optional 
libcheese-dev_3.2.2-1_amd64.deb
 a9c55e212946733bcb6c9ed75aa25487 133488 libs optional 
gir1.2-cheese-3.0_3.2.2-1_amd64.deb

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

iQIcBAEBCAAGBQJOwr/jAAoJEGrh3w1gjyLcBU8QAIyFzMbWwX1Ti5SgoHav+2IX
LFcMSrPhK2WVxUsOR1DwLlExuTXgXi59tzyrevJRKa0iXDJ0/LsnTvFm660HMMKT
9wjdxgzY3BcgBt2fTJipwZhwwioejPejMK7vhM++bWgd/ln166iyhK53Mdd79IC6
DYP57zOEFqfze/yjUbV9AC0XLtQZhPJ0MFYNEzhaLwGWopjRWjZVQ4h5bmc3ivnh
/TpqC/QPLAIgo/0lJ02fmpYuM7ooZHfBW9vG+H2rYUql182DlAfIejLRY/nF/tKM
0Yu7tEliKnEFXP1BjOTFTD1F02a97pWLVLljsfwH2h7lQGH9/iYXonHgQzMKuzAU
DkuUU6u0tgE2/fHqyDUyZTVqIBGHtjoIsKr+lOzXCxABeufK3qILR+xDbSAKDd/s
J97CwCbEdmJgW0nXbucLBELJAE8VQQXr5Gw1I5DcaBzryPqjBrWj85G6nGjnZRaQ
YvvEzHgSb/Bj9HZhaKiJKevq9fiDbpUMBf3qam4AQpQN/2YkR0B7p3GpSrLlisPP
z45vj9T6D4qmR45NwBfzz3s8eklrNMkJF1ufQ1wYvm2KnSG41oXszsE0CJepT9HR
oW7A941LGWKZG0mlvCBrJE+UqVxCF/XsWsVTmYPUJVwGbQWVNQa2WSVpOr7clWbz
YIV3mqWr+H6LCeiLQEoY
=42hR
-END PGP SIGNATURE-


Accepted:
cheese-common_3.2.2-1_all.deb
  to main/c/cheese/cheese-common_3.2.2-1_all.deb
cheese_3.2.2-1.debian.tar.gz
  to main/c/cheese/cheese_3.2.2-1.debian.tar.gz
cheese_3.2.2-1.dsc
  to main/c/cheese/cheese_3.2.2-1.dsc
cheese_3.2.2-1_amd64.deb
  to 

Accepted curl 7.22.0-3 (source i386)

2011-11-15 Thread Alessandro Ghedini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 13 Nov 2011 21:07:32 +0100
Source: curl
Binary: curl libcurl3 libcurl3-gnutls libcurl3-nss libcurl4-openssl-dev 
libcurl4-gnutls-dev libcurl4-nss-dev libcurl3-dbg
Architecture: source i386
Version: 7.22.0-3
Distribution: unstable
Urgency: low
Maintainer: Ramakrishnan Muthukrishnan rkrish...@debian.org
Changed-By: Alessandro Ghedini al3x...@gmail.com
Description: 
 curl   - Get a file from an HTTP, HTTPS or FTP server
 libcurl3   - Multi-protocol file transfer library (OpenSSL)
 libcurl3-dbg - libcurl compiled with debug symbols
 libcurl3-gnutls - Multi-protocol file transfer library (GnuTLS)
 libcurl3-nss - Multi-protocol file transfer library (NSS)
 libcurl4-gnutls-dev - Development files and documentation for libcurl (GnuTLS)
 libcurl4-nss-dev - Development files and documentation for libcurl (NSS)
 libcurl4-openssl-dev - Development files and documentation for libcurl 
(OpenSSL)
Closes: 647255
Changes: 
 curl (7.22.0-3) unstable; urgency=low
 .
   [ Ramakrishnan Muthukrishnan ]
   * Add new Uploaders, Ian and Alessandro. (Closes: #647255)
 .
   [ Luk Claes ]
   * Install lintian overrides with dh_lintian.
   * Install all files with dh_install and get rid of dh_installdirs.
 .
   [ Alessandro Ghedini ]
   * New upstream release.
   * Bump debhelper compat level to 8.
   * debian/control:
 - One (Build-)Depends per line.
 - Sort (Build-)Depends.
 - Remove Build-Depends on binutils
   (v2.18 is already in oldstable and it is Build-Essential: yes).
 - Build depends on stunnel4 instead of stunnel
   (stunnel is just a dummy package).
 - Remove duplicate Section field in package curl.
 - Add Luk to Uploaders too, sort names.
   * debian/patches:
 - Update runtests_gdb patch, add DEP3 headers.
 - Update gnutls and nss patches, add DEP3 headers.
 - Refresh other patches.
 - Add DEP3 headers to all the patches.
 - Remove libtool patch (not applied anyway)
 - Set Forwarded: not-needed for Debian specific patches
   * Replace dh_clean -k call with dh_prep
 (dh_clean -k is deprecated since debhelper 7).
   * Add fix_manpage_spelling patch
   * debian/copyright:
 - Switch to DEP5 format
 - Update copyright information
   * Add librtmp-dev to libcurl4-nss-dev too
Checksums-Sha1: 
 eea505f65bfb1be0714340146035788a833d156a 1923 curl_7.22.0-3.dsc
 8057d6b8c0c1bd8a1576a1117b54d0a69cbf0c81 2957090 curl_7.22.0.orig.tar.gz
 04f29733c66951fea8aacd281e6ae54bd3aa5068 28436 curl_7.22.0-3.debian.tar.gz
 2111b11402488297a915f37935425a62c85ccb8d 256972 curl_7.22.0-3_i386.deb
 f549afbaf2b05a39e01a2b4c77b3d58f0bb5f036 322842 libcurl3_7.22.0-3_i386.deb
 21d1b954b27bbac684e2a972cf38b47b90598974 303154 
libcurl3-gnutls_7.22.0-3_i386.deb
 5e57841c668efc5b0e91daad4fed4a9468db13c7 308812 libcurl3-nss_7.22.0-3_i386.deb
 bf3647c7e73ac1aa92a410e46c8ca13796d3d41d 1185722 
libcurl4-openssl-dev_7.22.0-3_i386.deb
 6566a1c4e42ab37ac3a71282217e5e96b8943ab1 1163894 
libcurl4-gnutls-dev_7.22.0-3_i386.deb
 ac6e658a8f0d973bc33fab83a93d3aff257b2cd2 1168458 
libcurl4-nss-dev_7.22.0-3_i386.deb
 4f8f1af89c90eebb31827d462f9891f67bc43e76 166682 libcurl3-dbg_7.22.0-3_i386.deb
Checksums-Sha256: 
 921bab7d0d313325f1ec6f352fd632af6582c40691132ded25973aad2f632730 1923 
curl_7.22.0-3.dsc
 8fa54fdb229b5a014f454e67502fcca2516121f4d078e0be19103998a736279c 2957090 
curl_7.22.0.orig.tar.gz
 fb22ad192d3a1601fd8966de93bbbe8d1b555fcf86e6c2232a3cae2924e8b6c6 28436 
curl_7.22.0-3.debian.tar.gz
 fd8ca1c4c37d0416ec945957f65e31cf5987e5b15d27117ff996c3be296ba34e 256972 
curl_7.22.0-3_i386.deb
 322eb2f03caba41bf9c7f586df1afb09aa9585a48d35bcf93e1d00253ab26768 322842 
libcurl3_7.22.0-3_i386.deb
 7e296d8a39d60f7dba4eef0c713c034aae23b8d33f4829725c284784fd387ebd 303154 
libcurl3-gnutls_7.22.0-3_i386.deb
 eea71c76c01c7499ab460dd28291dbc3c72212c97972f1efcafe5b74fb6e8b73 308812 
libcurl3-nss_7.22.0-3_i386.deb
 a0c8369ecfcd6c3d805703d581a4ff17a720edd011e4833ad6ad1a4657ccaa4f 1185722 
libcurl4-openssl-dev_7.22.0-3_i386.deb
 500876ee8f1f5f0c361386e758f6848b86ccb2eee9dbce9b91e4091f5c07a7a5 1163894 
libcurl4-gnutls-dev_7.22.0-3_i386.deb
 aa6b26a75bb079c4bb2d1a9944daf4dd3359b82510aecc5c12c55fedac1ad639 1168458 
libcurl4-nss-dev_7.22.0-3_i386.deb
 e35a666e16585f775557d8d73cc7639f0784ebfd784c522140e50330ee1c598c 166682 
libcurl3-dbg_7.22.0-3_i386.deb
Files: 
 3cdcfccc53f4aa5e6a600c4c61461af2 1923 web optional curl_7.22.0-3.dsc
 e8c36126d21c893f085aca233906b5cc 2957090 web optional curl_7.22.0.orig.tar.gz
 bdd2f879072e2817466e12e9a4d49939 28436 web optional curl_7.22.0-3.debian.tar.gz
 ccfd61ec86c37385acc8a59ca93c51c4 256972 web optional curl_7.22.0-3_i386.deb
 1f4f68982f34d92cb32c32d02745ba6f 322842 libs optional 
libcurl3_7.22.0-3_i386.deb
 add3026c99c23ef60a00cc3273ffe27d 303154 libs optional 
libcurl3-gnutls_7.22.0-3_i386.deb
 15f62ad07bb908ebc9f2816c1cc26c99 308812 libs optional 
libcurl3-nss_7.22.0-3_i386.deb
 a0369b63bd4c0a05d9527181dc75e124 

Accepted fontmatrix 0.6.0+svn20110930-1.1 (source i386)

2011-11-15 Thread Jakub Wilk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Nov 2011 19:51:41 +0100
Source: fontmatrix
Binary: fontmatrix
Architecture: source i386
Version: 0.6.0+svn20110930-1.1
Distribution: unstable
Urgency: low
Maintainer: Oleksandr Moskalenko ma...@debian.org
Changed-By: Jakub Wilk jw...@debian.org
Description: 
 fontmatrix - featureful personal font manager
Closes: 644250
Changes: 
 fontmatrix (0.6.0+svn20110930-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix type mismatch between qreal and double on ARM EABI (closes: #644250).
Checksums-Sha1: 
 b46a776c6108e2bf12b0fd08ad873a3f21344606 2105 
fontmatrix_0.6.0+svn20110930-1.1.dsc
 98518f1ec880fcdca4ecf8a7055098c8d03401fa 5539 
fontmatrix_0.6.0+svn20110930-1.1.debian.tar.gz
 4fbd5b232a47f5abcf66af1b74eac09ab5c1b8a1 1467390 
fontmatrix_0.6.0+svn20110930-1.1_i386.deb
Checksums-Sha256: 
 d130e68d05ceaf2ee840bb41577a1ba004a3d4cdf3d5d31350ec121397f9099d 2105 
fontmatrix_0.6.0+svn20110930-1.1.dsc
 5def5a9f502a0264e59d1f1139ef1237756c1986b06473a73b550e17c03facf3 5539 
fontmatrix_0.6.0+svn20110930-1.1.debian.tar.gz
 5f42e033b1c9aa9654dd8dce071731a307974aebdeed2c65a24abd3998c0466f 1467390 
fontmatrix_0.6.0+svn20110930-1.1_i386.deb
Files: 
 630dfde24a493a85f35a44e12013a142 2105 graphics optional 
fontmatrix_0.6.0+svn20110930-1.1.dsc
 d6095dfa31829ef41351b27c2eb76bda 5539 graphics optional 
fontmatrix_0.6.0+svn20110930-1.1.debian.tar.gz
 0f795958dd02729ff3c88591a8a93e20 1467390 graphics optional 
fontmatrix_0.6.0+svn20110930-1.1_i386.deb

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

iQIcBAEBCAAGBQJOwBcKAAoJEC1Os6YBVHX1XM4P/3Putfs+SYhRJOaej7pG5LT7
HAZ158s05p48jXXRi6WKuVfw6p9mFQzyVp1wE1y44y5rt/0ARIqukj5Vpoupr5hv
CfuJ0sVamEkVOZTPV2uCM5uvgVFu5j0fQvrq9eDA/NgSvJYd3F733CZD1wJJyWHo
XzxOWToloqG5oLRYAgOtZb6OB2dT0nTyteJah0ITZX63o+79MCy24tUtNZUhJHk0
JO6jLeUS42N0u6Jd60f/RbRLyAHp5fsHSTPZHTFozgYYk0QDjv7pRPlBgMfK/fAI
IvY/QCE2q76z0QZXQpsLp9KwapWNojq1LO/3VO4fga4J4OtKkfpxoXtLJ+9OALwK
AIO4oWQ0G5byuK8QBRjBk50CGm0myD2axDWKshHXHLDJ/MklLrjClMhsz/nEVFOi
kn/1D3TmPEZXXNr9+rDiWuCDD9QFRwP8niMchSnUuaxBOXpnhf+1EiwOv0Nr23gt
hoA+yb20g8dnJucaI5TLuuyFnjc35H/qWZpei5a82/rBYoGDgna5d1IZ21tJm3zy
fjcBT+Qk5BguqEhgx5hUzGGf8Pe7iBBQ7NrImslnoU8gvHe3gnJcrFaIC0E4NZUm
ZvxZ0KILpR7ggqJZRe71Z7wk8ot7Qlw3FCU6bFrinuDtezptvx3xekMaCQ7lJy5C
qqEv4YxEZH8OQa/gVaNp
=ki12
-END PGP SIGNATURE-


Accepted:
fontmatrix_0.6.0+svn20110930-1.1.debian.tar.gz
  to main/f/fontmatrix/fontmatrix_0.6.0+svn20110930-1.1.debian.tar.gz
fontmatrix_0.6.0+svn20110930-1.1.dsc
  to main/f/fontmatrix/fontmatrix_0.6.0+svn20110930-1.1.dsc
fontmatrix_0.6.0+svn20110930-1.1_i386.deb
  to main/f/fontmatrix/fontmatrix_0.6.0+svn20110930-1.1_i386.deb


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



Accepted fonts-opendin 0.1-3 (source all)

2011-11-15 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 21:52:50 +0100
Source: fonts-opendin
Binary: fonts-opendin ttf-opendin
Architecture: source all
Version: 0.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Christian Perrier bubu...@sesostris.kheops.frmug.org
Description: 
 fonts-opendin - Open DIN font
 ttf-opendin - transitional dummy package
Closes: 648745
Changes: 
 fonts-opendin (0.1-3) unstable; urgency=low
 .
   * Team upload
   * Fix version in Replaces and Conflicts. Closes: #648745
Checksums-Sha1: 
 58239af49569984ffe76aa536c063cba5979735d 1902 fonts-opendin_0.1-3.dsc
 e8c8fb483d94f45be65000449ffb7f67f11ad46c 37468 fonts-opendin_0.1.orig.tar.gz
 3909cd84c7fef7114b30c7b54d5fc9d3c410faac 3499 fonts-opendin_0.1-3.debian.tar.gz
 45a11d7ac00fa5b528ef9423fdd496e47b560a19 12724 fonts-opendin_0.1-3_all.deb
 f06ba8583f2965440cb0a5c4f12e552d3ff65b33 3880 ttf-opendin_0.1-3_all.deb
Checksums-Sha256: 
 5c7ee49457fc339fdaef9acea9ad23122e0ad932c542bce97019eda5a28f9f3e 1902 
fonts-opendin_0.1-3.dsc
 25a7832fc5e94e68f408b3a7aeadf39e182cca8e131c1c5cc08196aac7749674 37468 
fonts-opendin_0.1.orig.tar.gz
 2577a31c0261b877c86e906489293004ee92983d3b2988aa9b66c92e1bb6e77e 3499 
fonts-opendin_0.1-3.debian.tar.gz
 ae09c5f3f33c5798c0527fc91d5bcd159338d1c2723b9c47b162ecce262268dd 12724 
fonts-opendin_0.1-3_all.deb
 8837733314fb815fb75d308c34e1de12ce1ced587e28fe16dd85e40f80e996c8 3880 
ttf-opendin_0.1-3_all.deb
Files: 
 1cc55211c4d5db37301cc70d0fb95bcf 1902 fonts optional fonts-opendin_0.1-3.dsc
 7fa7c90d6af6508fe15e0619e113affd 37468 fonts optional 
fonts-opendin_0.1.orig.tar.gz
 2ee0b6dd4d3bee2c0f45e30ac69b0832 3499 fonts optional 
fonts-opendin_0.1-3.debian.tar.gz
 2e751667a63cc16435201d226fc1bce4 12724 fonts optional 
fonts-opendin_0.1-3_all.deb
 ded62b621db6a211199f5b02cbc8b882 3880 oldlibs optional 
ttf-opendin_0.1-3_all.deb

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

iQIVAwUBTsLS94cvcCxNbiWoAQKunA/9Fz8fznMg2VIy1RrjiJORqm9nX95akWq7
i2TSdt6nUk3VVMcl1uUo0XN/rd/rne1U0Xn2yaNBL9ZfkSy79i0MUAXzkrJRloPn
zSsm8M73DXE5cG0yrCrHhaGJsf0R1NXGYn3B7Av8DE4aKherqR1zkMn4JO+kxZpF
aSYqhVfYXB169e/pzxP0eHCNc9+MKU6DysRwVZXUWSXjzQU+AeVr+wLpszGLzw4O
gRsfnp7YRFTYI6zuuuWNsNgXmp7yTEM5o1yyUGMad/D8xNrBQL/ChoftOoS2rUJX
9hJ8FmI/a8NwPRloUA5ilEMKrKUg7xRMUWKu+xV37WQwyGF2JAssVRKWHvlvtCV6
4NMyGyK2QpGhusYrh2453iHsMDK1miO6tlnvTb+z0vQ5WTmeycdTcZDPcCvN02lf
KiEY0BFWHfcbR3IbHEgJxZXxf3cCUxArdIRyBBaiQodFLH+9maDqVKxMGCVJPscy
TWJBrOGUAWwVZFix7K3q1GQGB0sUI0Vt/AG4k7Ae55KkKXxpsLq1ZPsjz1Txj+MD
1Rc6faClcn9dyB/Ill3zr4e2YY0rCeImJYKZKZp/o5tBxtA+qia5T6saJgd8hYdX
8ltyvsLSX82/pXg3lVMEVrAFM9ndR/4MScsCGaLgjx45ubz3hs70S1MV55jOwFc4
veGujOKafIg=
=dYYK
-END PGP SIGNATURE-


Accepted:
fonts-opendin_0.1-3.debian.tar.gz
  to main/f/fonts-opendin/fonts-opendin_0.1-3.debian.tar.gz
fonts-opendin_0.1-3.dsc
  to main/f/fonts-opendin/fonts-opendin_0.1-3.dsc
fonts-opendin_0.1-3_all.deb
  to main/f/fonts-opendin/fonts-opendin_0.1-3_all.deb
ttf-opendin_0.1-3_all.deb
  to main/f/fonts-opendin/ttf-opendin_0.1-3_all.deb


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



Accepted fonts-yanone-kaffeesatz 0.20100525-4 (source all)

2011-11-15 Thread Christian Perrier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 21:55:45 +0100
Source: fonts-yanone-kaffeesatz
Binary: fonts-yanone-kaffeesatz ttf-yanone-kaffeesatz
Architecture: source all
Version: 0.20100525-4
Distribution: unstable
Urgency: low
Maintainer: Debian Fonts Task Force pkg-fonts-de...@lists.alioth.debian.org
Changed-By: Christian Perrier bubu...@sesostris.kheops.frmug.org
Description: 
 fonts-yanone-kaffeesatz - Font in four weights
 ttf-yanone-kaffeesatz - transitional dummy package
Closes: 648746
Changes: 
 fonts-yanone-kaffeesatz (0.20100525-4) unstable; urgency=low
 .
   * Team upload
   * Fix version IN replaces and Conflicts. Closes: #648746
Checksums-Sha1: 
 a028d188d227d129c5e53d7966e42d3c32bc7e87 2053 
fonts-yanone-kaffeesatz_0.20100525-4.dsc
 0fb05600b3a8cbe9bc8ea2fad013fafe9b0ab2a0 357703 
fonts-yanone-kaffeesatz_0.20100525.orig.tar.gz
 e71f8c61477428455da75a887e2e47ff047dcac1 3917 
fonts-yanone-kaffeesatz_0.20100525-4.debian.tar.gz
 d5011a91a8d0a6b23d3e7c3b5cbd88fe217cb6f4 358200 
fonts-yanone-kaffeesatz_0.20100525-4_all.deb
 3c2346ad7d28f3cd4b1f0ef6e1e67434d17ce0c2 3978 
ttf-yanone-kaffeesatz_0.20100525-4_all.deb
Checksums-Sha256: 
 136a6fcbcaead211a8a3971109d59cc3757803cba109896ff400cd84e8a3f5ea 2053 
fonts-yanone-kaffeesatz_0.20100525-4.dsc
 dff6d638bc10d47df1e23c7129896aef3a7dd7de41e95816698cebc02464997b 357703 
fonts-yanone-kaffeesatz_0.20100525.orig.tar.gz
 f39fd9d91e6369d9db2132f9e95d0831139d0f69ba202a65962a8ee194574435 3917 
fonts-yanone-kaffeesatz_0.20100525-4.debian.tar.gz
 bfb556827563e497c4c549c3573c20e552f2fbe998d060730b97b0150ea7cf49 358200 
fonts-yanone-kaffeesatz_0.20100525-4_all.deb
 b6c4d73043151d69e4cf398d2a24921da138b64a917d5d0658d3e38f01b6b6b1 3978 
ttf-yanone-kaffeesatz_0.20100525-4_all.deb
Files: 
 7ab02ca380e1b5cb27d3ccbd8e08c1d5 2053 fonts optional 
fonts-yanone-kaffeesatz_0.20100525-4.dsc
 36382e7ebb04d5fc0f72d55445ff4188 357703 fonts optional 
fonts-yanone-kaffeesatz_0.20100525.orig.tar.gz
 cf6fa8508ab6527d7b300868615acbc7 3917 fonts optional 
fonts-yanone-kaffeesatz_0.20100525-4.debian.tar.gz
 22dd063b50b71e68dca054ae74373740 358200 fonts optional 
fonts-yanone-kaffeesatz_0.20100525-4_all.deb
 a12b86f63c80175df88f9263dd8ccd7e 3978 oldlibs optional 
ttf-yanone-kaffeesatz_0.20100525-4_all.deb

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

iQIVAwUBTsLStYcvcCxNbiWoAQLosRAAiOjLLi21SXM8p8dGOFyK83QVtXpXWIBi
jsIVt6yp2YXsZUMEuA+4CdPk7e6qmSzjW4LUQ3lgOm9Bk/cxixGT6klMdsQB4FVX
ERuDWPqiJ8QJ3aVPLPpa2Rx8WU3ElnPJdVH1zmx7b1C1Ox8P+c2FPx3/aSTCc/b3
SN7hyMY5xigJL3Dii7j/oMpKy6deeR7Aluu2gIM2xCpZ+vQYKziAs6D7KsebYA37
9mnbIWa2ceV4XI3L4HeACt6Za9cFuYAWLWQGIhFM69Ez5EiirvjF4teGzIw7PViS
j9wnRprymOiIqvbu56RAkxGDJgwbUYspurUfi/wpqYslWbQgHpx3DinCc8xngTzt
OvzVX4l3IHN0jiG/VFSwPlYq8ztXtsN1e4dQAvBPiPVQ7IcA7uexqW6pULMbg7pQ
837fJzia/j9yn615bLrf2ecMZ/DnRRo+oCAGNg/I2NpH7xnLjv4fc4NZM2V6CkHM
aKYL7FXL1Hnk8Y1tuptp+0SbuRbNo1c/WvVRXzwwXhcBjOwL8aogM2juPoQ26bYB
ve2yJ3pkR2qZTgYfs2GC8D/shrdT2+fqeuacTDSrH0JsTFXkjaRlvTaTSyCQbtwZ
Cd78G3lFqXh1Oa6jcOqTYMI2cQ+l84B3pdHAgIdMNpAjoo/rOXjGhJm1Z1P9oLza
ZahIZRDR3gY=
=3Dm0
-END PGP SIGNATURE-


Accepted:
fonts-yanone-kaffeesatz_0.20100525-4.debian.tar.gz
  to 
main/f/fonts-yanone-kaffeesatz/fonts-yanone-kaffeesatz_0.20100525-4.debian.tar.gz
fonts-yanone-kaffeesatz_0.20100525-4.dsc
  to main/f/fonts-yanone-kaffeesatz/fonts-yanone-kaffeesatz_0.20100525-4.dsc
fonts-yanone-kaffeesatz_0.20100525-4_all.deb
  to main/f/fonts-yanone-kaffeesatz/fonts-yanone-kaffeesatz_0.20100525-4_all.deb
ttf-yanone-kaffeesatz_0.20100525-4_all.deb
  to main/f/fonts-yanone-kaffeesatz/ttf-yanone-kaffeesatz_0.20100525-4_all.deb


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



Accepted gnomeradio 1.8-2 (source amd64)

2011-11-15 Thread Francesco Namuri
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Nov 2011 17:01:29 +0100
Source: gnomeradio
Binary: gnomeradio
Architecture: source amd64
Version: 1.8-2
Distribution: unstable
Urgency: low
Maintainer: Francesco Namuri france...@namuri.it
Changed-By: Francesco Namuri france...@namuri.it
Description: 
 gnomeradio - FM-radio tuner for the GNOME desktop
Closes: 645577
Changes: 
 gnomeradio (1.8-2) unstable; urgency=low
 .
   [ Michael Biebl ]
   * Pull patches from Fedora to make gnomeradio compile against GTK 3 and
 gnome-media-profiles 3.0. (Closes: #645577)
   * Don't patch configure directly, but use dh-autoreconf to update the build
 system.
   * Update build dependencies.
   * Use dpkg source format 3.0 (quilt).
 .
   [ Francesco Namuri ]
   * debian/rules: added DEB_CONFIGURE_SCRIPT_ENV to pass -lm to configure
 script, avoid compilation problems with binutils-gold.
   * debian/control: bumped to 3.9.2 no changes needed.
   * added debian/patches/fix_gnome_radio_gui.patch to fix bug in gui.c
 gnome_radio_gui function causing a blank main gtk window.
Checksums-Sha1: 
 1bbca535e5b2cba31fe9eeb8bb4dadad1497f12b 2008 gnomeradio_1.8-2.dsc
 4b89eda4cf52b0b583c7aa0676e0f8ae3e43d47f 23832 gnomeradio_1.8-2.debian.tar.gz
 22947b579742e5ffdf7b4960435276ab9a2270ac 540886 gnomeradio_1.8-2_amd64.deb
Checksums-Sha256: 
 b0eeafe8479b5672aac460fdc6341e408889cc122fe9032a36fd506f2d7f3434 2008 
gnomeradio_1.8-2.dsc
 aa248fe20ea70c9c5b1a168c593d5c5d68c4a94de7249f0375e7e12704b9fa9c 23832 
gnomeradio_1.8-2.debian.tar.gz
 9f3ecd2b8e916bb895f9349b582b166278b465e83bfb178678a8e21d6ff2d7f6 540886 
gnomeradio_1.8-2_amd64.deb
Files: 
 131d54cf63f87d8407fc19c4dee12849 2008 sound optional gnomeradio_1.8-2.dsc
 019ce748f8463d3eaebbb3e88d18d3e0 23832 sound optional 
gnomeradio_1.8-2.debian.tar.gz
 b29d4bd15601ef9d29013eab355cfe13 540886 sound optional 
gnomeradio_1.8-2_amd64.deb

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

iQIcBAEBCAAGBQJOwq99AAoJEGrh3w1gjyLcdzUQAJ5lxOiXuR4ubqagQ2mIrrV+
7SpC0TYK7KNpd5NdE/sIvJRaKXQe/5CajzNmT2kjmvkANOgSvYUCoYbEefHM4lkU
kHVk8bHLMTic9R826t1lUOyk793nLu22/99yOfn5rT7JZkiholRTuGigHKrwi/RL
L9aC6G4dDaUVUDgGtMU8EVxOJgDtlRhs2wTsGBgm5Fxd3z/qjdexg92rHNc6CtiP
Xm3am3JBkxnX2OoLZb1wYYaYl8jk69LoG1+3eneSMoy6UwVOducZ00xW5pesCvlL
2zUfDhlKi+9eOPO0+yJtif9nITh3rqeULnwukuSehLjdztaQjN9eBEd178g+x/5T
t0mLix3YoFEMJFB72F6t9w0BNcHBV1617uln1iVcPD7U501VuSVnyyDV+ahOBBaf
Tm8Yk+uLFYh011KoVVLIggBa541yccDnP/hxdToiEg0Owysh/5lE1uwlExmDGgzU
lW7hWJrGTFk60t3er9tbPcBGA3hT+kG5GamVmLCozVaI4ZzWDOcCbFu9nzn6IVIP
YX8VojG4D1pt1lXtv8ku49dxw//Tz7BjKIq7/mQZo/Oma/WjhwmTKZGvX1X3RZ4A
WRnBxHoQ4ByHXpwYuPaiBHCwRysiJRPreMevsfgBWpn3mJoyWquiPKDh93FSu15J
ZOypUxU4owypHet5MkCZ
=JYYm
-END PGP SIGNATURE-


Accepted:
gnomeradio_1.8-2.debian.tar.gz
  to main/g/gnomeradio/gnomeradio_1.8-2.debian.tar.gz
gnomeradio_1.8-2.dsc
  to main/g/gnomeradio/gnomeradio_1.8-2.dsc
gnomeradio_1.8-2_amd64.deb
  to main/g/gnomeradio/gnomeradio_1.8-2_amd64.deb


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



Accepted gnutls26 2.12.14-3 (source all i386)

2011-11-15 Thread Andreas Metzler
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Tue, 15 Nov 2011 19:10:06 +0100
Source: gnutls26
Binary: libgnutls-dev libgnutls26 libgnutls26-dbg gnutls-bin gnutls-doc 
guile-gnutls libgnutlsxx27 libgnutls-openssl27
Architecture: source all i386
Version: 2.12.14-3
Distribution: unstable
Urgency: low
Maintainer: Debian GnuTLS Maintainers pkg-gnutls-ma...@lists.alioth.debian.org
Changed-By: Andreas Metzler ametz...@debian.org
Description: 
 gnutls-bin - GNU TLS library - commandline utilities
 gnutls-doc - GNU TLS library - documentation and examples
 guile-gnutls - GNU TLS library - GNU Guile bindings
 libgnutls-dev - GNU TLS library - development files
 libgnutls-openssl27 - GNU TLS library - OpenSSL wrapper
 libgnutls26 - GNU TLS library - runtime library
 libgnutls26-dbg - GNU TLS library - debugger symbols
 libgnutlsxx27 - GNU TLS library - C++ runtime library
Closes: 648247
Changes: 
 gnutls26 (2.12.14-3) unstable; urgency=low
 .
   * [20_tests-select.diff] Do not run gnulib test-select test anymore. The
 test fails on kfreebsd-i386, the gnutls library does not use select().
 Closes: #648247
Checksums-Sha1: 
 9c52b6fd453db73daf65e7f7b2d828e2a998ac26 2009 gnutls26_2.12.14-3.dsc
 9bba003a74d7a21abd2f6bf1ac94bc95360ff861 24070 gnutls26_2.12.14-3.debian.tar.gz
 c3d5cf60af2c6f8d6dc4ff4d6f596d8139e5a8aa 3442714 gnutls-doc_2.12.14-3_all.deb
 3b707f94a47363e2b912ebc5fc537bb9193e3cf2 727748 
libgnutls-dev_2.12.14-3_i386.deb
 2473caf516bccb9c02b34402919937dc0056df2d 609532 libgnutls26_2.12.14-3_i386.deb
 9464adc42a6ca7f91d99c7132257d1154376c652 1384072 
libgnutls26-dbg_2.12.14-3_i386.deb
 0dcdc9f0f3000fdf69d72d900c3edd436dc2e464 383546 gnutls-bin_2.12.14-3_i386.deb
 bc7ff0188d2ac07f1922ec19ebde7bc23e9a283c 264846 guile-gnutls_2.12.14-3_i386.deb
 4f46eb692c8d793b853e89d6503901aa023429cf 221626 
libgnutlsxx27_2.12.14-3_i386.deb
 0fed496f13dffd400f7214c4989f6ab59874ba94 218946 
libgnutls-openssl27_2.12.14-3_i386.deb
Checksums-Sha256: 
 cde3b6c332d4d4bf23ee9d7f457f59f5d7238cfe030cbfcb8d967786886a6565 2009 
gnutls26_2.12.14-3.dsc
 7fea4eb01b202c42d6c5238fe83c6749e556faf4f05ee6c4949a5ec6dcf34b51 24070 
gnutls26_2.12.14-3.debian.tar.gz
 b06ad100db70b13a0f23da1558d67c1f6cfbe3d25f09cba1799c9dcb852bebf1 3442714 
gnutls-doc_2.12.14-3_all.deb
 6e888fa413744984626054eabc0a3d931acda47ebb33f030bcdfa228384e6154 727748 
libgnutls-dev_2.12.14-3_i386.deb
 a9589166a911a2456a0eae678e060a3430d6e884cc296fd4c793358e5ad1c303 609532 
libgnutls26_2.12.14-3_i386.deb
 975a34fda98fd81fed366602cb847a7920b822e020c4950289c12ccf8c04a58f 1384072 
libgnutls26-dbg_2.12.14-3_i386.deb
 385bda1e0275fe7a8c3118b993ece3404c9c3a1bc12af1ad2b9d099eeb3e7cec 383546 
gnutls-bin_2.12.14-3_i386.deb
 1b21eb8326cf1d3f342eeda0783b615597f049655a9f64337d8fa17711e4461f 264846 
guile-gnutls_2.12.14-3_i386.deb
 ccca038cc0258c6411b4eca2620398105aca7d5ddd1d7fdeeb46d33039e0bb72 221626 
libgnutlsxx27_2.12.14-3_i386.deb
 50b18bdf6c47d10a7312f5980e70a85b5a910574263bcb711f0b0c77d134a35f 218946 
libgnutls-openssl27_2.12.14-3_i386.deb
Files: 
 362ad87b2510b64d29f2324967f3453e 2009 libs optional gnutls26_2.12.14-3.dsc
 5fe8a92314ac86f1912604305ebdbe9c 24070 libs optional 
gnutls26_2.12.14-3.debian.tar.gz
 ada34a7ec45020fab45d16ee0ddf61af 3442714 doc optional 
gnutls-doc_2.12.14-3_all.deb
 915c7c8de69bc021f4d1c233816c3e5f 727748 libdevel optional 
libgnutls-dev_2.12.14-3_i386.deb
 5081b2ba62bab5e7f6114138222d91cd 609532 libs standard 
libgnutls26_2.12.14-3_i386.deb
 88abb0339a51e5925f8c450f736795fe 1384072 debug extra 
libgnutls26-dbg_2.12.14-3_i386.deb
 677b9c7ae340143e166b628c3a2dc0f7 383546 net optional 
gnutls-bin_2.12.14-3_i386.deb
 b4ec08443963c97f5f294536ad851b17 264846 lisp optional 
guile-gnutls_2.12.14-3_i386.deb
 bde6b0a3286032a7ae85928bce1df8c6 221626 libs extra 
libgnutlsxx27_2.12.14-3_i386.deb
 8d7768b9c0ff4182fd0bc67b219da919 218946 libs standard 
libgnutls-openssl27_2.12.14-3_i386.deb

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

iEYEAREDAAYFAk7CrdgACgkQHTOcZYuNdmOX3gCfaYasUvwxDeC+XdAGTq6Uh80h
n0IAn2Eh7efUj/Vk6d+F/rmwnDVEo4Dy
=5gVD
-END PGP SIGNATURE-


Accepted:
gnutls-bin_2.12.14-3_i386.deb
  to main/g/gnutls26/gnutls-bin_2.12.14-3_i386.deb
gnutls-doc_2.12.14-3_all.deb
  to main/g/gnutls26/gnutls-doc_2.12.14-3_all.deb
gnutls26_2.12.14-3.debian.tar.gz
  to main/g/gnutls26/gnutls26_2.12.14-3.debian.tar.gz
gnutls26_2.12.14-3.dsc
  to main/g/gnutls26/gnutls26_2.12.14-3.dsc
guile-gnutls_2.12.14-3_i386.deb
  to main/g/gnutls26/guile-gnutls_2.12.14-3_i386.deb
libgnutls-dev_2.12.14-3_i386.deb
  to main/g/gnutls26/libgnutls-dev_2.12.14-3_i386.deb
libgnutls-openssl27_2.12.14-3_i386.deb
  to main/g/gnutls26/libgnutls-openssl27_2.12.14-3_i386.deb
libgnutls26-dbg_2.12.14-3_i386.deb
  to main/g/gnutls26/libgnutls26-dbg_2.12.14-3_i386.deb
libgnutls26_2.12.14-3_i386.deb
  to main/g/gnutls26/libgnutls26_2.12.14-3_i386.deb
libgnutlsxx27_2.12.14-3_i386.deb
  to main/g/gnutls26/libgnutlsxx27_2.12.14-3_i386.deb


-- 
To 

Accepted gtk+3.0 3.2.2-1 (source all amd64)

2011-11-15 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 14 Nov 2011 00:07:56 +0100
Source: gtk+3.0
Binary: libgtk-3-0 libgtk-3-0-udeb libgtk-3-common libgtk-3-bin libgtk-3-dev 
libgtk-3-0-dbg libgtk-3-doc gtk-3-examples gir1.2-gtk-3.0 libgail-3-0 
libgail-3-dev libgail-3-0-dbg libgail-3-doc
Architecture: source all amd64
Version: 3.2.2-1
Distribution: experimental
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gir1.2-gtk-3.0 - GTK+ graphical user interface library -- gir bindings
 gtk-3-examples - example files for GTK+ 3
 libgail-3-0 - GNOME Accessibility Implementation Library -- shared libraries
 libgail-3-0-dbg - Gail libraries and debugging symbols
 libgail-3-dev - GNOME Accessibility Implementation Library -- development files
 libgail-3-doc - documentation files of the Gail library
 libgtk-3-0 - GTK+ graphical user interface library
 libgtk-3-0-dbg - GTK+ libraries and debugging symbols
 libgtk-3-0-udeb - GTK+ graphical user interface library - minimal runtime 
(udeb)
 libgtk-3-bin - programs for the GTK+ graphical user interface library
 libgtk-3-common - common files for the GTK+ graphical user interface library
 libgtk-3-dev - development files for the GTK+ library
 libgtk-3-doc - documentation for the GTK+ graphical user interface library
Changes: 
 gtk+3.0 (3.2.2-1) experimental; urgency=low
 .
   * New upstream release.
   * Refresh patches.
Checksums-Sha1: 
 54637e6b0a3e547294374c27fcab98cbe088a06e 3548 gtk+3.0_3.2.2-1.dsc
 fc88cbd2801efac02a6171a2f4b5ffe50eec61f7 12662804 gtk+3.0_3.2.2.orig.tar.xz
 be4eff8f37e2812c9689afc1c3c9cbbd61d14f5f 85367 gtk+3.0_3.2.2-1.debian.tar.gz
 ffacd0744582561096be6c0bd10e9db2f3f41878 6246940 
libgtk-3-common_3.2.2-1_all.deb
 3501970bcbe6db18e10f41594bdb9d6be1b4e4cd 171136 libgtk-3-bin_3.2.2-1_all.deb
 5ce57fc1b85b19d7c71bd0b82210d477d4cf60dd 2020154 libgtk-3-doc_3.2.2-1_all.deb
 6aa00d134f812aaac32a19e83b04d3780f8b94ef 177516 libgail-3-doc_3.2.2-1_all.deb
 0d83a6b02ed82a4dd3a6dcd28ede1dbede66b9f0 2361744 libgtk-3-0_3.2.2-1_amd64.deb
 33f000bfe1a276e4859089fd4313c1184cf63f5e 2058440 
libgtk-3-0-udeb_3.2.2-1_amd64.udeb
 95dbaf54620d1c625f23874734fe5d6a74c648ce 4027094 libgtk-3-dev_3.2.2-1_amd64.deb
 4447fb2cc5c65ebf4cfa83495ac8f9b18725991e 5704266 
libgtk-3-0-dbg_3.2.2-1_amd64.deb
 db2c4473e1012d7116b3dabd2b258f6a3bced268 416100 
gtk-3-examples_3.2.2-1_amd64.deb
 9c68704f03b7b686eafe78f4445299155df35aee 384466 
gir1.2-gtk-3.0_3.2.2-1_amd64.deb
 dd9e5926c00c73aaba7f6a4d055ddbf58ba91f5f 179326 libgail-3-0_3.2.2-1_amd64.deb
 137fdedbe382261e1eaa142854e43a2396909e1f 178784 libgail-3-dev_3.2.2-1_amd64.deb
 f8cc9e99cdd393db5282be7e5351a41024f89b56 187880 
libgail-3-0-dbg_3.2.2-1_amd64.deb
Checksums-Sha256: 
 c68eb6dc4610e5315139ddfcfb2ed4b1b1bfdc4c9ac8bfafb31ab22faf43bf6a 3548 
gtk+3.0_3.2.2-1.dsc
 f7ec82de393cd7ae2aa45022576400941704709d1f0f35fb0b17f3be1f2e7d84 12662804 
gtk+3.0_3.2.2.orig.tar.xz
 489e56586cf3044528b14da835de9b1f4054d433f6c4cd81292692702c18606a 85367 
gtk+3.0_3.2.2-1.debian.tar.gz
 6c090471e9c0506b383276c7b27dedf14bc6406397b7721d3b1c9627b3506e91 6246940 
libgtk-3-common_3.2.2-1_all.deb
 50623ea57a3eb1cc8e0fa828025fb2f687a72f6fa61c0b8f5b18afec79a705e7 171136 
libgtk-3-bin_3.2.2-1_all.deb
 1dc2d5d749070b09ef96f292cd9f941e0283ec237fd62ed6cd4c55621738d942 2020154 
libgtk-3-doc_3.2.2-1_all.deb
 20e70a802c32f07641ea5826349566cf1a00f43c33ed307dea33ee73613a3ee3 177516 
libgail-3-doc_3.2.2-1_all.deb
 be4b3bccca318fbe16a206a7972d80e00c39c2bc33880081974a1a61480dcbe7 2361744 
libgtk-3-0_3.2.2-1_amd64.deb
 af4859d1b538a9a4b91bcc8a2ad0409b97fc99db103cef2a0737b446ba087885 2058440 
libgtk-3-0-udeb_3.2.2-1_amd64.udeb
 a5592857628d49c5245b19dcf14be2ab3bfc5eaa2517cdc5f038de54eef6d9c4 4027094 
libgtk-3-dev_3.2.2-1_amd64.deb
 3e0179c09cbc53efda0b823d1908b2fec1ed3f45e877d91af23a51bd87e1b96b 5704266 
libgtk-3-0-dbg_3.2.2-1_amd64.deb
 3238fe7229ba93ca34c1cc9c51d1f22e26d7781d89e2fc1528a902b987c91fdc 416100 
gtk-3-examples_3.2.2-1_amd64.deb
 ababf6748803bee40ba27ef0e9c610dfd1e272a7ee29e9b14d7b0c6ad8290dbe 384466 
gir1.2-gtk-3.0_3.2.2-1_amd64.deb
 25c787351cdd134c423455c316dd5c1af93fa74f7332afa4ea6031f16d90cdcd 179326 
libgail-3-0_3.2.2-1_amd64.deb
 497aeee9a7d0421d7f7829515cc33421d9c8f9dbfaefaa96f8f7cd283373c163 178784 
libgail-3-dev_3.2.2-1_amd64.deb
 34962b1e1d21ed0b283c795fc4711ad61cdf4e6a04ae5059661ff22a55859fcb 187880 
libgail-3-0-dbg_3.2.2-1_amd64.deb
Files: 
 d2846807f0fc1fc7370027ae2032f34d 3548 libs optional gtk+3.0_3.2.2-1.dsc
 447e4f452eff459b81c1591a0adfd791 12662804 libs optional 
gtk+3.0_3.2.2.orig.tar.xz
 edee1218c4a572f13cd81978ab8706a5 85367 libs optional 
gtk+3.0_3.2.2-1.debian.tar.gz
 25ad81232c63e9c9d4a7851a76313ce3 6246940 misc optional 
libgtk-3-common_3.2.2-1_all.deb
 0648e4a017dbdec726ed679db336b88d 171136 misc optional 
libgtk-3-bin_3.2.2-1_all.deb
 2b781cda1fab93b33c1ade9536cd4fc7 2020154 doc optional 

Accepted libdevel-globaldestruction-perl 0.04-2 (source all)

2011-11-15 Thread Dominic Hargreaves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 20:59:46 +
Source: libdevel-globaldestruction-perl
Binary: libdevel-globaldestruction-perl
Architecture: source all
Version: 0.04-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Dominic Hargreaves d...@earth.li
Description: 
 libdevel-globaldestruction-perl - module to expose the flag that marks global 
destruction
Closes: 648865
Changes: 
 libdevel-globaldestruction-perl (0.04-2) unstable; urgency=medium
 .
   [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
 .
   [ Salvatore Bonaccorso ]
   * debian/copyright: Replace DEP5 Format-Specification URL from
 svn.debian.org to anonscm.debian.org URL.
 .
   [ Dominic Hargreaves ]
   * Makefile.PL detects presence of $ {^GLOBAL_PHASE} (perl 5.14 and
 above) and becomes architecture independent, so add versioned
 {Build-,}Depends on perl (= 5.14.0) and set package to
 Architecture: all. Thanks Jakub Wilk for the bug report and initial
 patch (closes: #648865)
   * Add a README.source with a note to backporters about the above change
Checksums-Sha1: 
 ffbb67270e0f9bfdd12030fa29692a6ccdb6b88b 1659 
libdevel-globaldestruction-perl_0.04-2.dsc
 d1f573c0cea192237e2c693935628c5c8acd0a4d 2604 
libdevel-globaldestruction-perl_0.04-2.debian.tar.gz
 c9667fe3354138910e04dbfcdc27234e42caa95b 7348 
libdevel-globaldestruction-perl_0.04-2_all.deb
Checksums-Sha256: 
 25dd72d0b2388ad2e605ff371324d07dbc2162c70dfb36491af94c5c04804e73 1659 
libdevel-globaldestruction-perl_0.04-2.dsc
 e6ae1df36da3ba57c519e31430cff1ead5f72a7367262b31a443fee59aa4ba1f 2604 
libdevel-globaldestruction-perl_0.04-2.debian.tar.gz
 5233f8e7cb284f75fd38d74fd5c1bbd9d2b12b685594be809f671fac14498b80 7348 
libdevel-globaldestruction-perl_0.04-2_all.deb
Files: 
 9a105df24cbaead8685e5ea663726f35 1659 perl optional 
libdevel-globaldestruction-perl_0.04-2.dsc
 59595e2a2db8837e7b5b2c0e0965131f 2604 perl optional 
libdevel-globaldestruction-perl_0.04-2.debian.tar.gz
 5651b5ff77c324872b9f0a3fd43faa3a 7348 perl optional 
libdevel-globaldestruction-perl_0.04-2_all.deb

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

iD8DBQFOwtMlYzuFKFF44qURAusoAJ9Fsks7nICT4P1qLYqG+L6XziZ2rwCgpyo2
VftVB9rvLX9jLFuLYWCLUQM=
=2ECs
-END PGP SIGNATURE-


Accepted:
libdevel-globaldestruction-perl_0.04-2.debian.tar.gz
  to 
main/libd/libdevel-globaldestruction-perl/libdevel-globaldestruction-perl_0.04-2.debian.tar.gz
libdevel-globaldestruction-perl_0.04-2.dsc
  to 
main/libd/libdevel-globaldestruction-perl/libdevel-globaldestruction-perl_0.04-2.dsc
libdevel-globaldestruction-perl_0.04-2_all.deb
  to 
main/libd/libdevel-globaldestruction-perl/libdevel-globaldestruction-perl_0.04-2_all.deb


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



Accepted libpod-constants-perl 0.16-2 (source all)

2011-11-15 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 21:36:04 +0100
Source: libpod-constants-perl
Binary: libpod-constants-perl
Architecture: source all
Version: 0.16-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libpod-constants-perl - module for including constants from POD
Closes: 629284
Changes: 
 libpod-constants-perl (0.16-2) unstable; urgency=medium
 .
   [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
 .
   [ gregor herrmann ]
   * Switch to source format 3.0 (quilt).
   * Add patch EUMM_AUTHOR.patch: adjust AUTHOR in Makefile.PL to older and
 newer versions of ExtUtils::MakeMaker. (Closes: #629284)
   * Switch to debhelper 8 and tiny debian/rules; don't install README
 anymore; add some files to debian/clean.
   * Convert debian/copyright to DEP5 format.
   * Set Standards-Version to 3.9.2, drop version from perl build
 dependency.
   * Add /me to Uploaders.
   * Make short description a noun phrase.
   * Add a patch to fix 2 spelling mistakes.
   * Set urgency to medium (RC bug, perl 5.14 transition).
Checksums-Sha1: 
 6463d36d002e2a5e0de6a6bee28e7fb3212b9793 2119 libpod-constants-perl_0.16-2.dsc
 55b0477a4bdb4ab5779446a684cafbe979ee4220 6314 
libpod-constants-perl_0.16-2.debian.tar.gz
 07620b4df0926b42feaee8b6a23542ee025ad9eb 18214 
libpod-constants-perl_0.16-2_all.deb
Checksums-Sha256: 
 967d6b55977c1ef6bb497f70bd237d28e5b4a1e7105c94990f842e9b7a87bcac 2119 
libpod-constants-perl_0.16-2.dsc
 541a153a5cc67df8616b3237f6df02dff250bfba1a04da0567ef3891c6ae5ce6 6314 
libpod-constants-perl_0.16-2.debian.tar.gz
 c30c6ee686a56e72cfb4d4bbdeca8999fe2800fda090ad215e80f212a995d24e 18214 
libpod-constants-perl_0.16-2_all.deb
Files: 
 50e04e9e675cfc1e3a37ffb899ad4fed 2119 perl optional 
libpod-constants-perl_0.16-2.dsc
 ec50ed06ccb6ded80c3fd46753053755 6314 perl optional 
libpod-constants-perl_0.16-2.debian.tar.gz
 9bc39049fc992b618845edbc1fd0b6e6 18214 perl optional 
libpod-constants-perl_0.16-2_all.deb

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

iQIcBAEBCAAGBQJOws2bAAoJELs6aAGGSaoG7hgP/Atovy/z0KYJH5Ti6O9BIBWk
BbP/8G2MGfm9Q/+DfSs6dcxdnEOa9XA9rhw6rw9OmDlThyv4gss+iVytShg4r1K2
QTbyRODBWHwmM0Vh2bBRbb5bl+r2ntpfZSYktj0ZJGLzbX9fMk7MXQOUxI1rtAPE
pi1wR+FiONogs/6VqRi2J9veIrtJ2HW2M8zpk9+sqRpRJtzvzP0OdytQFcHHp14b
d0tg+5oAtA5oLpfM33ecYoXHk7piGqTRRdt1uwTvng8DLLHE4S9CQlkoMtKFKrXo
RzfFLNme4cJfuWK9mJDzPVo0OyAhtuZNC9cTIlejq/3Vqa7EenuHTJyF/WMDUDmK
Bu2s4GItFCFHKRaB+PQjKd9AmXmSBqFfurwmsGeojIk737XdCZnuQSzuDN6Ijyuu
D1EmNC4HYKqbyhoDfw+BeE9Nzx4ZAY9Y4UHYKI15FhqnwuMjhThDBp+m8iU2/6MD
/AIr+1UmiZIv94TMulR5ZcbJD5bufL+hBPU8wGehOHTUZaNDWNdks39aS95I0PKW
eNoawyDKArQhFp8chncLrG1L1MfflhZVSmXADL4AT6pd7iiUfjrzIwEf7wvEsThf
1ZKKTEbiAbD6aV1IhURhILfjWaUCcdJ8zkwxzQ0Ae+IC8JJ/cr80/NuG8oc4JOxH
VQOh87GPsbE0i0tM0krk
=iB4m
-END PGP SIGNATURE-


Accepted:
libpod-constants-perl_0.16-2.debian.tar.gz
  to main/libp/libpod-constants-perl/libpod-constants-perl_0.16-2.debian.tar.gz
libpod-constants-perl_0.16-2.dsc
  to main/libp/libpod-constants-perl/libpod-constants-perl_0.16-2.dsc
libpod-constants-perl_0.16-2_all.deb
  to main/libp/libpod-constants-perl/libpod-constants-perl_0.16-2_all.deb


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



Accepted libtest-simpleunit-perl 1.21-5 (source all)

2011-11-15 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 20:00:23 +0100
Source: libtest-simpleunit-perl
Binary: libtest-simpleunit-perl
Architecture: source all
Version: 1.21-5
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libtest-simpleunit-perl - simplified Perl unit-testing framework
Closes: 636522
Changes: 
 libtest-simpleunit-perl (1.21-5) unstable; urgency=low
 .
   [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
 .
   [ gregor herrmann ]
   * Switch to source format 3.0 (quilt).
   * Add patch perl_re.patch: adjust regexp to work with older and newer
 perl versions. (Closes: #636522)
   * Update to debhelper (compat level) 8, use tiny debian/rules.
   * debian/copyright: reformat according to current DEP5 draft.
   * Set Standards-Version to 3.9.2, drop version from perl build
 dependency.
   * Add /me to Uploaders.
   * Improve short and long description a bit.
   * Add a patch to fix a spelling mistake.
Checksums-Sha1: 
 49ea36dd47d44232586496801d2321886fe59d47 2205 
libtest-simpleunit-perl_1.21-5.dsc
 c2e6610917cc9133ac1218cf5e1b27dfdc65b20f 3188 
libtest-simpleunit-perl_1.21-5.debian.tar.gz
 babaa022619f85f95fc277e2f28d5482afd6bfb7 25398 
libtest-simpleunit-perl_1.21-5_all.deb
Checksums-Sha256: 
 0bc0e94c0c4adfb137566982a39a51e22523e1e7c0c7c7921f337f3008959289 2205 
libtest-simpleunit-perl_1.21-5.dsc
 aa6691bde47df3e791066e36b28cdcb8ab602194e97df408dc47bf2f2e3e9896 3188 
libtest-simpleunit-perl_1.21-5.debian.tar.gz
 7a475d02094452a54763cee1f25c57dd1a37bfa94c61e15613742f1074b7d36c 25398 
libtest-simpleunit-perl_1.21-5_all.deb
Files: 
 3d2aa8e78dcd985425eb7c2f79b5e600 2205 perl optional 
libtest-simpleunit-perl_1.21-5.dsc
 5d8e4260fb7ae46b8fbf951fe379dd78 3188 perl optional 
libtest-simpleunit-perl_1.21-5.debian.tar.gz
 3600adf407d970c820d04c2044f4aeea 25398 perl optional 
libtest-simpleunit-perl_1.21-5_all.deb

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

iQIcBAEBCAAGBQJOwrd4AAoJELs6aAGGSaoGAtoQAKWO/HSlRffmKGyy+N1I78Ue
o1Xo7LdTJu8/5cUl+qSfKweENrxfBkEsSkr2UHbekgR6L48G417bZUxL8jh6kKbl
S53MsrRH/bJlmJtU+pQoiIz8jqfKwRkRxi9Z9qXXLzmc4VFG57La1TwtBAWBDbU9
kapmeB3Zak95XdaHa8X4arXO16PUJJHYUONpIpSf6vz+WzBsbSrBoAExg9EYAO3U
wH84BURoqiy0nxqCwpCQgGyP/aAvOqJBJPW9qmDcUrojWxgXBL6fIkQ7ySAYc9DG
pHn8x8D4i8mABHrrlnTzHGSwkIujBET0p4ThoglQ8UcPClLMyOQxzM7vehcNMKEb
FYxx3VQfnZeBVXBXLCGuNsLpkyEBNm0CBWNgU/m1awqNl7jcJYOzy+DtgZNm1FyF
a1JW3YI6moAuERuoL2cXaTddmaw3vwMK93mu1wcYIjX7Hh1TXsl8D9KXSsxJOfIO
8rUHpUBWymf9pxLo8Xn/6e1jvp0NnkibaHjbyOfeo/MxJvetsyvavZmHyjN4u/+q
U+uVbYaJBq4wCeP+kd8g03xIlPvnJK5NRiEmEliKEd4WXUejT2YpkeU2YdRsJIPK
IkvjWXgD2QmBngrEgHyP9rAIULUngGx/LwgNBm02eMfZ9MfGCaOUIpNF2rNas0d9
B5AeqIl2gt40nLV1P2ZW
=ySVc
-END PGP SIGNATURE-


Accepted:
libtest-simpleunit-perl_1.21-5.debian.tar.gz
  to 
main/libt/libtest-simpleunit-perl/libtest-simpleunit-perl_1.21-5.debian.tar.gz
libtest-simpleunit-perl_1.21-5.dsc
  to main/libt/libtest-simpleunit-perl/libtest-simpleunit-perl_1.21-5.dsc
libtest-simpleunit-perl_1.21-5_all.deb
  to main/libt/libtest-simpleunit-perl/libtest-simpleunit-perl_1.21-5_all.deb


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



Accepted lightdm 1.0.6-2 (source amd64)

2011-11-15 Thread Yves-Alexis Perez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 15 Nov 2011 21:39:30 +0100
Source: lightdm
Binary: lightdm lightdm-gtk-greeter lightdm-qt-greeter lightdm-vala 
liblightdm-gobject-1-0 liblightdm-qt-1-0 liblightdm-gobject-dev 
liblightdm-qt-dev
Architecture: source amd64
Version: 1.0.6-2
Distribution: unstable
Urgency: high
Maintainer: Debian Xfce Maintainers pkg-xfce-de...@lists.alioth.debian.org
Changed-By: Yves-Alexis Perez cor...@debian.org
Description: 
 liblightdm-gobject-1-0 - simple display manager (gobject library)
 liblightdm-gobject-dev - simple display manager (gobject development files)
 liblightdm-qt-1-0 - simple display manager (Qt library)
 liblightdm-qt-dev - simple display manager (Qt development files)
 lightdm- simple display manager
 lightdm-gtk-greeter - simple display manager (GTK+ greeter)
 lightdm-qt-greeter - simple display manager (Qt greeter)
 lightdm-vala - simple display manager (Vala files)
Changes: 
 lightdm (1.0.6-2) unstable; urgency=high
 .
   * urgency=high for security fixes.
   * debian/patches:
 - 07_CVE-2011-4105 added, make sure the file is not a link when chowning
   it. (CVE-2011-4105)
 - 08_CVE-2011-3153 added, fix information disclosure by droping privileges
   before reading and re-writing ~/.dmrc.
Checksums-Sha1: 
 155b67f9b8c394664169b797992537765ab7f6f4 2689 lightdm_1.0.6-2.dsc
 962136e9b8817538f90dace905ee83b667d83289 33975 lightdm_1.0.6-2.debian.tar.gz
 496343e5b126b1f128a769cd9ad9e198da05d8c2 123800 lightdm_1.0.6-2_amd64.deb
 a6f00ef34aada27538c43918c99a6cee0796d5f9 30298 
lightdm-gtk-greeter_1.0.6-2_amd64.deb
 8dd5ea5c7d8c80d3c1dbafff3d09abfcfe820a8c 22970 
lightdm-qt-greeter_1.0.6-2_amd64.deb
 635d9bee84f3e242d39032c0284f5ca50fedaee3 5236 lightdm-vala_1.0.6-2_amd64.deb
 45440fadf3ae012ee08255e1eb71e77d86d296ba 29902 
liblightdm-gobject-1-0_1.0.6-2_amd64.deb
 9dd3325f1e637733257f194fb7c36272d5ca727b 51756 
liblightdm-qt-1-0_1.0.6-2_amd64.deb
 91ed0a2885371484861ca5e29cb8c22192400eea 52732 
liblightdm-gobject-dev_1.0.6-2_amd64.deb
 1ba47242225258b8f698f4874c64ee9664dbd9bf 63552 
liblightdm-qt-dev_1.0.6-2_amd64.deb
Checksums-Sha256: 
 f9da982b3f7d4779c425013e09be52c0b892c2743f4e8734921d68dd47e82a75 2689 
lightdm_1.0.6-2.dsc
 c24de6abeeeda9cd6c8cb9c6c9b0075fff27575f70bd00a7ddd3a965ad22db29 33975 
lightdm_1.0.6-2.debian.tar.gz
 29662f59a2b6a554385c39ff5dd81e0c46372341d8bd2f884327667b058bddfb 123800 
lightdm_1.0.6-2_amd64.deb
 5676410cb2785a28c011a00344de819eb84d779d3b35ca55e771c55641049347 30298 
lightdm-gtk-greeter_1.0.6-2_amd64.deb
 53e5652e0a0ff094bde31083a41a6c391128545469fd49dcc669bf43e34884e7 22970 
lightdm-qt-greeter_1.0.6-2_amd64.deb
 7c742bb42210e295c3c35159aa8476f646f7f0a171e625a8c7d841262df4c045 5236 
lightdm-vala_1.0.6-2_amd64.deb
 4cc53b95d936070cd3c5c055f8c6600465da12f1aa2fb9b79ac71e9c64678884 29902 
liblightdm-gobject-1-0_1.0.6-2_amd64.deb
 3531f7d2f68044eed739fb4657214d164c0f74e419e6e276bcf1cb4b93d20aa2 51756 
liblightdm-qt-1-0_1.0.6-2_amd64.deb
 d08ca55afd26484b588030f940b254c753a2035b8c262ad296b5c5f9789dc214 52732 
liblightdm-gobject-dev_1.0.6-2_amd64.deb
 8fb8b796254b8380c989628591d021641760b0761168b05157f359558e7db6ec 63552 
liblightdm-qt-dev_1.0.6-2_amd64.deb
Files: 
 e5075783576a39651842a8683d42958b 2689 x11 optional lightdm_1.0.6-2.dsc
 9532347a6e8351b246090eec6ec46b64 33975 x11 optional 
lightdm_1.0.6-2.debian.tar.gz
 35b0eab0c4eeb858df256a6cf1101704 123800 x11 optional lightdm_1.0.6-2_amd64.deb
 a8fddb69cb1a2ecbd724bd40bd58ba14 30298 x11 optional 
lightdm-gtk-greeter_1.0.6-2_amd64.deb
 5a1fcfc415216a9261d5343b41990a28 22970 x11 optional 
lightdm-qt-greeter_1.0.6-2_amd64.deb
 b6a22fa27b97239dbec1d51921bd25d9 5236 x11 optional 
lightdm-vala_1.0.6-2_amd64.deb
 f921f7b7fcac4528cd79929f294b1447 29902 libdevel optional 
liblightdm-gobject-1-0_1.0.6-2_amd64.deb
 b2435b906eb13bccddfaf61adf9a572f 51756 libdevel optional 
liblightdm-qt-1-0_1.0.6-2_amd64.deb
 7cab873f7411abd96c8987676aca302b 52732 libdevel optional 
liblightdm-gobject-dev_1.0.6-2_amd64.deb
 5994dec0f2ce6cb970816997062c02b6 63552 libdevel optional 
liblightdm-qt-dev_1.0.6-2_amd64.deb

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

iQIcBAEBCgAGBQJOws7DAAoJEDBVD3hx7wuoBIQP/3/OVt4vfJEcUYEn6MaVsAGC
dEq94RSkN9lDEbgagkvjFy69PLsapIp/6YfN2uR+39nqZ0SemotDnxvLDhpVzyCD
WBe4FemTOSkluOAQXD+wUdXkfW+nswuFl2i77ZwsG9lUH74+ikzwfN/kYIHcB+6F
k67+6dkYbrlsJGfKuqiuowctAU3B1kvgt9lO0zZ5WSBD1/H37S6cWdmrP8eYLwDZ
hpNw1PV2F/Rfxa0Q+SA8CFMGlUgC67F/gJUW6c86ldCL+g2LnVA4SCEDiAotuHO6
XapVAjqAP3Jv/x4VmRAbz57WwxJc9L9d69g0yOpXgr8FhHNQ6Bkd8hRdboRFSvrm
ElxkZjGWc6ikHJCS/o6oViUNaS1HMjf947wV/LpxzEawREfZhjQCObB63kJRL8nN
dPatKKTe5d6Q5x+GbdaDI9+bWRDxiURDt58lZkeqDZmUcYZn7sqfO7w8HqDovTSg
adgg6vxh3CdpYAO1QYoeKHxYtQvxYMPVXX2XzTIE3D/zLTyyEwtieMJvGEAiwfxP
zw6lR7q3D1KLEpTvtfjMqbMcp2j13ZgEk44o8x66LuqGgjnk1m+mbLxDpPOG12DD
5Uqmkvzk6S4bAsc2DIR9jVtGuS6P1LUUdJ0BnAusv9WpE89BzXLunhR5hwdaZl9P
aGh+wbXOPfdiGT0CVgvp
=+xHY
-END PGP SIGNATURE-


Accepted:

Accepted petsc 3.1.dfsg-11.1 (source all amd64)

2011-11-15 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 17:20:34 +0100
Source: petsc
Binary: libpetsc3.1-dev petsc-dev libpetsc3.1 libpetsc3.1-dbg petsc3.1-doc
Architecture: source all amd64
Version: 3.1.dfsg-11.1
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Didier Raboud o...@debian.org
Description: 
 libpetsc3.1 - Shared libraries for version 3.1 of PETSc
 libpetsc3.1-dbg - Static debugging libraries for PETSc
 libpetsc3.1-dev - Static libraries, shared links, header files for PETSc
 petsc-dev  - Meta-package depending on latest PETSc development package
 petsc3.1-doc - Documentation and examples for PETSc
Closes: 643488
Changes: 
 petsc (3.1.dfsg-11.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't mix source format 3.0 (quilt) and manual usage of quilt:
 - Drop manual quilt calls from debian/rules;
 - Drop superfluous quilt Build-Depends.
 Closes: #643488
Checksums-Sha1: 
 871a9da0500e94cc08d5ab870653090d947771d7 2547 petsc_3.1.dfsg-11.1.dsc
 0a269751df5550621c3290b520093b4a8f614644 1670480 
petsc_3.1.dfsg-11.1.debian.tar.gz
 565ab4c9d76e005b54c858345091fca94995227c 14382 petsc-dev_3.1.dfsg-11.1_all.deb
 1be51e4481712ed629506390b6b9afcd4e5f9928 4202288 
petsc3.1-doc_3.1.dfsg-11.1_all.deb
 6166c40c860277dd6ccb193bccab02a9aeac82fb 4369048 
libpetsc3.1-dev_3.1.dfsg-11.1_amd64.deb
 f2ee1b398eb36c2522382612ecef6c3b7fa98345 2186822 
libpetsc3.1_3.1.dfsg-11.1_amd64.deb
 1cbe0c3c2d99402ee3ea34bc2ccbf736b7672f07 4635452 
libpetsc3.1-dbg_3.1.dfsg-11.1_amd64.deb
Checksums-Sha256: 
 f24fe1d1591d08dfc7c10d51150a2ee155c310301ead2c7ee1dbc91d262491a1 2547 
petsc_3.1.dfsg-11.1.dsc
 f26ffc1d034d632c4ccf0d9958d004be09e63c0191c25e9e57f3afb40e01e46e 1670480 
petsc_3.1.dfsg-11.1.debian.tar.gz
 69705ec89a2eb1d9fc90c94ef66046df79453473a08186d8f9d94ba26542eb90 14382 
petsc-dev_3.1.dfsg-11.1_all.deb
 8e04825163b3dd916972c07cb89fa78562693bc5906ceacdb21003e88af57392 4202288 
petsc3.1-doc_3.1.dfsg-11.1_all.deb
 a0bdf41b2ea974d5f1dc43bcd267e91b8ffccb117eb9b618d2f5df3b6e2760d1 4369048 
libpetsc3.1-dev_3.1.dfsg-11.1_amd64.deb
 c6621f9b82eb1956b4a8e46223c4a4b03d56200dbe55b16f9bcb5e0bc96103f8 2186822 
libpetsc3.1_3.1.dfsg-11.1_amd64.deb
 a0b89df66b9e84a98eb501b4dc895aa7bc5201d11982262aa5b53a7550621439 4635452 
libpetsc3.1-dbg_3.1.dfsg-11.1_amd64.deb
Files: 
 238318aaa61452d9ade875eda15a9689 2547 devel extra petsc_3.1.dfsg-11.1.dsc
 faf316bbc73b04dfdf08b52666875625 1670480 devel extra 
petsc_3.1.dfsg-11.1.debian.tar.gz
 8245b6c9b3e7d78c9f5808fb1fc8c1e7 14382 libdevel extra 
petsc-dev_3.1.dfsg-11.1_all.deb
 c384c04fac577507cddd672c1a92b7df 4202288 doc extra 
petsc3.1-doc_3.1.dfsg-11.1_all.deb
 32155fa31243b6842361217eb7f91f83 4369048 libdevel extra 
libpetsc3.1-dev_3.1.dfsg-11.1_amd64.deb
 ddfc114ffae61a74dd6ab826318b534c 2186822 libs extra 
libpetsc3.1_3.1.dfsg-11.1_amd64.deb
 8e1d8cd1b78aadf5a430976dc4cbf161 4635452 debug extra 
libpetsc3.1-dbg_3.1.dfsg-11.1_amd64.deb

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

iQGcBAEBCAAGBQJOwrRwAAoJEIvPpx7KFjRVLB4MAIQuhT2aj4apaxMQb71kqxP9
9hyizt6PxY/AUF5lgNh/ShzCBUf/DDCuU6UWFuSvZyR8jGq1o+42aNZ/3xWeV30j
8BtsUSv9V/ywr8xr88go6/fHm7ptWQmJO7HRKEyncFlxjmAZS1TctCF7gW9yPGyL
NmzHVE/g9kBzBe/tbr0bfIPHIMBtD9nFYeDv0n4o7G5Na3xn7JkETBnKZzyzKFit
6cyq0Rge7qvhng+ajTu7VSD05HKHn8vaJyLVZ/WusHEnQlGb90tNpiKQ7rj0wDP+
srrddyTgYogtq735T5QeEMdnX3uOp9U1Lepnc+F3VtdqAkDhzoO3wYY5VvCcESDE
txYHCwfAlomT6MXJDweSmYqYC+FKlRaz+4wg4Xfz9gPj1ctJ8RhSHR2b5DZERa95
I4/kLyU9JU6QF3eMeLtcr0o+wYnVqsN2nbAJ/RhjoY9pXL1Zq2nb39IdHN8eTMgI
nY166ZRiMXQyiY7EzRBY5DsiqL6z0ayXGuIIBLuTjg==
=HNOl
-END PGP SIGNATURE-


Accepted:
libpetsc3.1-dbg_3.1.dfsg-11.1_amd64.deb
  to main/p/petsc/libpetsc3.1-dbg_3.1.dfsg-11.1_amd64.deb
libpetsc3.1-dev_3.1.dfsg-11.1_amd64.deb
  to main/p/petsc/libpetsc3.1-dev_3.1.dfsg-11.1_amd64.deb
libpetsc3.1_3.1.dfsg-11.1_amd64.deb
  to main/p/petsc/libpetsc3.1_3.1.dfsg-11.1_amd64.deb
petsc-dev_3.1.dfsg-11.1_all.deb
  to main/p/petsc/petsc-dev_3.1.dfsg-11.1_all.deb
petsc3.1-doc_3.1.dfsg-11.1_all.deb
  to main/p/petsc/petsc3.1-doc_3.1.dfsg-11.1_all.deb
petsc_3.1.dfsg-11.1.debian.tar.gz
  to main/p/petsc/petsc_3.1.dfsg-11.1.debian.tar.gz
petsc_3.1.dfsg-11.1.dsc
  to main/p/petsc/petsc_3.1.dfsg-11.1.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/e1rqrkn-0005am...@franck.debian.org



Accepted sshfp 1.2.2-2 (source all)

2011-11-15 Thread Julien Valroff
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Nov 2011 21:24:26 +0100
Source: sshfp
Binary: sshfp
Architecture: source all
Version: 1.2.2-2
Distribution: unstable
Urgency: low
Maintainer: Julien Valroff jul...@debian.org
Changed-By: Julien Valroff jul...@debian.org
Description: 
 sshfp  - DNS SSHFP records generator
Closes: 648659
Changes: 
 sshfp (1.2.2-2) unstable; urgency=low
 .
   * Update DEP-5 uri
   * Ships daneldnsx.py and add a wrapper around dane (Closes: #648659)
   * Add dependencies for dane
Checksums-Sha1: 
 766b37ba1f077d8efd288ad84f7d7a1218fd1ba1 1851 sshfp_1.2.2-2.dsc
 34d4ad366e5c459759be41a6eb20b346990c7685 3181 sshfp_1.2.2-2.debian.tar.gz
 dcfa0babdf553de223c62d7fce6c998f0e022502 26312 sshfp_1.2.2-2_all.deb
Checksums-Sha256: 
 82d0a6e2ee9277c1e272f073b0a8c4c73f657534c0e46ba210b91849b5eb6687 1851 
sshfp_1.2.2-2.dsc
 cdfe7975a37b2cf201ac6d5816cce525e65765cfd023c787b106b2de32f65b2b 3181 
sshfp_1.2.2-2.debian.tar.gz
 66d0ea157222dcd832c295584a503ed5bcdf0baeab56fbe1a52dab15a3103df9 26312 
sshfp_1.2.2-2_all.deb
Files: 
 5c7521f2ff15a1ca9543e7c01b4da43c 1851 net extra sshfp_1.2.2-2.dsc
 2eab6a045362ef5e062c1c3255c75d36 3181 net extra sshfp_1.2.2-2.debian.tar.gz
 5cd3e4ef067e5b1cd8acb73e5d26a782 26312 net extra sshfp_1.2.2-2_all.deb

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

iQIcBAEBCAAGBQJOwsFXAAoJEFHhprzRxas7SmMP/3dlzsIeabjv99kbce80sroZ
3qhHe8Ly5fAv6sVP00/chfeVFJKgBjtNCcWCqVWK1Key7FDBYjLA/ObYJ5zw3/k6
nFuMBMcGQRWtUq3cxzEzUuSPRjAI7U9URjOCXcxcSISrb/msZdG4KVQ7ZBZKiUVL
0muvyS/efm1f2nVi08uDKiWuNG/bNG7y9A7Nz3coGowIeC5EHu9R120ckT1VDBZp
BNZdkJqWBpfVuN/X2vMUATXYwFpDIImUffjxPhDT0lF3i3kk2d8g4HLy180NDK1F
Iw1IZp1AU3rzlhwc1WBF1KGuu27QYyszy6ZRiOXkXm5Q6JmvV874lOMySwCo4kk9
4SjqonQsDTq0xDe0zRSVSZB9TCuAAYBNhYr8bKFDgIsVEbCu+CbR82HRZtNnGILW
UoSltmbn2/vdEd8iWEhGRfcGkKNIwrUpNtjLWpRu0pIc/3+7RmkX2zrpzy39jOX6
hHuCZ+9CSgOVOekc2l9b4dxtdb91i0yrAHbELLGKFSOst2HeU1QPYk61F0rNReq7
iF5w++CjZxypvGfXS/Hnep4HVRxIexUCixTfOr7z+t1fBKGSKfPcZ7ui2OGe7LsE
+Rn1T5tWMo2O1IeZHfacAtNx1JLK/HI2jEmmjpDdiAk/qILD/EsOiLF95bTnrn/P
8U8YZwPrAaJFh5/as8Fq
=iZVa
-END PGP SIGNATURE-


Accepted:
sshfp_1.2.2-2.debian.tar.gz
  to main/s/sshfp/sshfp_1.2.2-2.debian.tar.gz
sshfp_1.2.2-2.dsc
  to main/s/sshfp/sshfp_1.2.2-2.dsc
sshfp_1.2.2-2_all.deb
  to main/s/sshfp/sshfp_1.2.2-2_all.deb


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



Accepted sxiv 1.0-1 (source i386)

2011-11-15 Thread Daniel Echeverry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 05 Nov 2011 12:56:11 -0500
Source: sxiv
Binary: sxiv
Architecture: source i386
Version: 1.0-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Echeverry epsilo...@gmail.com
Changed-By: Daniel Echeverry epsilo...@gmail.com
Description: 
 sxiv   - simple X image viewer
Changes: 
 sxiv (1.0-1) unstable; urgency=low
 .
   * New upstream release
   * Remove fix-manpage.diff
 + Merge with upstream
   * Refresh allow-cflags-override.diff patch
   * debian/copyright
 + Update upstream email address
   * Use cflags, ldflags and cppflags from dpkg-buildflags
Checksums-Sha1: 
 336f980c3bdca2aef4617d93314e5ef675fdc178 1677 sxiv_1.0-1.dsc
 d863db9f7b91d0ff94cce76785d251ce601a1056 137321 sxiv_1.0.orig.tar.gz
 cebe4a7496ab72bbde6b0c2404d45d397714ba73 2523 sxiv_1.0-1.debian.tar.gz
 43e98695a8664457f8707ce563804685cc94fab5 28054 sxiv_1.0-1_i386.deb
Checksums-Sha256: 
 b9ed9711f547c59a21f1b7ce2e4a0b0a81b74a507ead318933758503e4d8a0da 1677 
sxiv_1.0-1.dsc
 a1c4fee290f1e74664c57075c949e8e53baf09156faf3c52bf2dbee3104a427d 137321 
sxiv_1.0.orig.tar.gz
 94e19bb701a0bd45134dbda81e01e0e4da34aba9f61e6460befb41282a8ef8de 2523 
sxiv_1.0-1.debian.tar.gz
 fad90099818230fefa1271f6b703fb73fe1104987ed2ea3e17e72686bba24237 28054 
sxiv_1.0-1_i386.deb
Files: 
 fdbb56771a322d7214fec16059613de8 1677 graphics extra sxiv_1.0-1.dsc
 768c9d425d42e6599df1ee2bafbdab69 137321 graphics extra sxiv_1.0.orig.tar.gz
 f3da8d23d4897a65d4c626e0bfd88a07 2523 graphics extra sxiv_1.0-1.debian.tar.gz
 db3a99d58d625c76516104108b6b895c 28054 graphics extra sxiv_1.0-1_i386.deb

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

iQIcBAEBCAAGBQJOwrb9AAoJEC1Os6YBVHX1jdEP/0WEeXDLPiq3mnNBJVLFukok
mpq+5W5CHCrV3r05VhkVRFYODRJYYhhvMcAQLROz7QxgD8TM3w43AJ0DRCRLytLz
2w3m5AJrtnQfXieyj1qNUxcvRHCkCUyHBZzzKSkfd1NRfrwlbb3F3TxGDVBictvu
QgnF7v1cVpx5igYx1mbgA7BU6dxEKt8jOFN3jHFDL/51+S3rGlSKdKGFyaVkvDYP
2ih4Xb3k3TW7FNVENEeA/kXPbyoHLBFry3Thjx/RrVVo75XzV9qW+FvfD4OW/Awr
EzDUPyC9AjInfVZr6zOVz5Kzp94qNj5N7SV+doDL3MVrFKfIGIMVV45qLXlmuB/i
w38kX5wBIR/rjp3IUjXGZiJmFKbCSeuLUh6t4H+zvto9qdsT4Au8nilz5C6GpFs8
AtWBTmXY7iaPF1mt8tunWNjjpUoy2zneCyNcLBASEL26zBMprQSZJOqWWxDAkce9
UEGFl3jRUflh+hpazAFcHTvGTLBzEKK3QZDnXYnUkBFQq6YG5juwK5XgWJrF0JdD
o0tle1zvo4DxPkfETcZew8jVMVclBw9XzbhFZQ4EEkPKZqRy8OktH9IHXGmgy+91
jhtKrIjCACIiiCF9qD7eGbMoGwLF7GP1uASYjkANfB9ANkEMSPTfHnJRhKIBp+ck
/EsfqObryNOyOSkXGAz0
=c6Gp
-END PGP SIGNATURE-


Accepted:
sxiv_1.0-1.debian.tar.gz
  to main/s/sxiv/sxiv_1.0-1.debian.tar.gz
sxiv_1.0-1.dsc
  to main/s/sxiv/sxiv_1.0-1.dsc
sxiv_1.0-1_i386.deb
  to main/s/sxiv/sxiv_1.0-1_i386.deb
sxiv_1.0.orig.tar.gz
  to main/s/sxiv/sxiv_1.0.orig.tar.gz


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



Accepted vidalia 0.2.15-1 (source amd64)

2011-11-15 Thread Ulises Vitulli
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 17:14:07 -0300
Source: vidalia
Binary: vidalia
Architecture: source amd64
Version: 0.2.15-1
Distribution: unstable
Urgency: low
Maintainer: Vern Sun s5u...@gmail.com
Changed-By: Ulises Vitulli der...@debian.org
Description: 
 vidalia- controller GUI for Tor
Changes: 
 vidalia (0.2.15-1) unstable; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 c20bb00bd110935457d77916292cd2229d684f25 2016 vidalia_0.2.15-1.dsc
 dea1d2440d84e50c5c64c2662a4d035ba43ad8c4 6091551 vidalia_0.2.15.orig.tar.gz
 0b570cc5deecae1f1f42c59ebe786401b0252dd2 23209 vidalia_0.2.15-1.debian.tar.gz
 9588f607bb4eccc4489ff4035602e1609174ce2e 2676964 vidalia_0.2.15-1_amd64.deb
Checksums-Sha256: 
 eb52899b36bea96dcec7f799301832af02590eca38bfb4a2390f9bb9abc09f71 2016 
vidalia_0.2.15-1.dsc
 4598fdd9fb8e1d6fcdd02b908f331dba6e34ffdd72046ab94c2ef091a8c18809 6091551 
vidalia_0.2.15.orig.tar.gz
 bbee9481c5ac2f68c1a85bf765f7825def5b8f0f673fce3ade4fb3f97a04a2b6 23209 
vidalia_0.2.15-1.debian.tar.gz
 56cc2f6bca684f2b02c1b3a3e50bd9e6c4c862c55d9943fd353d4537de125818 2676964 
vidalia_0.2.15-1_amd64.deb
Files: 
 6d29c125b446dd16da5dfea100540757 2016 net extra vidalia_0.2.15-1.dsc
 845b627eb2534aa5da29efd6c8d30978 6091551 net extra vidalia_0.2.15.orig.tar.gz
 cb396ced52a0bb30219acb596a42769a 23209 net extra vidalia_0.2.15-1.debian.tar.gz
 dc9385b5569392120d00d04899803629 2676964 net extra vidalia_0.2.15-1_amd64.deb

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

iQIcBAEBCAAGBQJOwsnOAAoJEGin9OG0lUUKtvAP/3VA/4xdl8dYihXVpiYr5yxe
LTLkwqQckGH+96/0XE9q1Ntn0s80jo2e5BrS7+nqo0jhXN/Z0Ecl0MfydfNIrQbf
hc3K5Njb8YFIIqYQZHPx8/eanLoeMQWxp95nnOIjkGaY49QwS9g39guc2XR5NRnh
ti24XkyV/PnXLn89+83OLSlL5dq6nOhnv4ZI4oy6JqKIuOjToeEs9281/yYovxTF
k5FHTj54zBpuQKuFMxXp7FteAU+Ak1UxSck3LosXWXOGYdKP/2fZrUyFJW9Mchsq
xA14J/cqCtopE+tNPFHAXks1lUAL3OIuTrbo3WthleSltckZNGAUNYhMCq6NRkjd
fuDTNLyYsNhq7GHe2WuT/qnlBjkTK4JVa1gO3yeOSDeE1FyF3DcCsIW8/A72uTYQ
WXVFdmSbdzpdl+816Zq/1bkyCfW2E1mVazkzxk/zX2U0YDS6Dt5te80/0lYvLeoq
LUeR00Z29ofQtbnml72AGt0fgksZuJ+fs4HAlmxHDYwIkd3nppV3/GQGud/LGubL
fmzxDC9pqmYKC+lbTY7ocDpQw9+C77GMNBlEzuXLxXMyruEjRsa0jwBycwtnsAJ/
5hG6BYd7qflKfiosMPd+lwDYfYmZOGGJD3UenGsH0iQn/+PRIVhrtnbfst/9SD11
4FMtgD9DWhA5Qv9j9GZA
=w9EY
-END PGP SIGNATURE-


Accepted:
vidalia_0.2.15-1.debian.tar.gz
  to main/v/vidalia/vidalia_0.2.15-1.debian.tar.gz
vidalia_0.2.15-1.dsc
  to main/v/vidalia/vidalia_0.2.15-1.dsc
vidalia_0.2.15-1_amd64.deb
  to main/v/vidalia/vidalia_0.2.15-1_amd64.deb
vidalia_0.2.15.orig.tar.gz
  to main/v/vidalia/vidalia_0.2.15.orig.tar.gz


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



Accepted x11proto-bigreqs 1:1.1.1-2 (source all)

2011-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 10:20:54 -0800
Source: x11proto-bigreqs
Binary: x11proto-bigreqs-dev
Architecture: source all
Version: 1:1.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 x11proto-bigreqs-dev - X11 Big Requests extension wire protocol
Closes: 642224
Changes: 
 x11proto-bigreqs (1:1.1.1-2) unstable; urgency=low
 .
   [ Cyril Brulebois ]
   * Fix missing URL in long description (Closes: #642224), thanks to
 Aputsiaq Janussen.
 .
   [ Steve Langasek ]
   * Mark x11proto-bigreqs-dev Multi-Arch: foreign.
Checksums-Sha1: 
 dda6d3a7f02d2c81b8837827276f7cee3a3ba617 2079 x11proto-bigreqs_1.1.1-2.dsc
 6d111f56c2eaab30077643ebf61cb1ee3268626b 14014 x11proto-bigreqs_1.1.1-2.diff.gz
 7c50aa957895474a204260e64a4d82194226731d 10836 
x11proto-bigreqs-dev_1.1.1-2_all.deb
Checksums-Sha256: 
 d9f502179c498cefb82a1752dcef7ea27c0a3789699bb8fdadeffa906ae469eb 2079 
x11proto-bigreqs_1.1.1-2.dsc
 204426bb1e2e299c0618ffd05f2b5de7c4e5ccef40f4806fc043296c7792151b 14014 
x11proto-bigreqs_1.1.1-2.diff.gz
 3894df525ee46e5e875cd2ed5f1b0aaa6d93819e56596920b77fef64f0dcd011 10836 
x11proto-bigreqs-dev_1.1.1-2_all.deb
Files: 
 65e9cdd035e5d51129ffe751936348ed 2079 x11 optional x11proto-bigreqs_1.1.1-2.dsc
 ebdebd34d3487e030d4592e910b9f1d8 14014 x11 optional 
x11proto-bigreqs_1.1.1-2.diff.gz
 32a2d5b167c01043e6faf7c0581dca09 10836 x11 optional 
x11proto-bigreqs-dev_1.1.1-2_all.deb

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

iQIVAwUBTsKxIVaNMPMhshM9AQhmXRAAsQFnlxWoSxg140/ZrwOz9HvNTBodItbB
BLGI5DFToQQCCjwHQ6PLYUAdRqFvk3GZybUX2IkCykSVysrcVbBfDbTpb13TB1Yt
YOOHcqKh70ca2+6sb0SGRKnOA78euQ7eDSK4M6nP+ZAm/E1wRBpnylz/5Z7o5ySF
x8Oa8E7V1bvrdpoYHswwSFRbowotjc3pZ8MWyFdglsXQweyQ4QzlQLVDbpAzE8+n
Wnspy0MU6tRc3oIDUBR8wbflI6+2lt6cuqs0V1Ob/vbKIORtGrUamrJDon88ypcW
TLIIz2BgsgEbM97MpWb+v4zUuuFxxOxm/LzYbBWHuASDFaBmWR/ZCPDcECt64/Kr
SJ4j9OzTIWtEiXrrRjAlajMQ/6Qo/ikgM7xSZEF2+J5e76dUlMHi+9FmC5oz0LU6
Tp6/pYFbg5FRTd/CAU0j1MRT2/BV6QYerL7NjCpiTyrRCNFX+HYVcGG1AZScOpbn
LEW0eqKNhmI2QelWVu0Y5zWQXbaNqFHReU0/VDd6AiMGfhGHh1ERy0NPi0tw7fMj
pIC0u01bC6LkmjCBl2GgeAB4s73+KEqq9Pa688xOvW0TYBnSbuVHBLVSv1lKk2lJ
yGQ1bKicB6R1DkDc/4OMvXGFy7mn7gvTiIj88jOnhCoLcEoOnrxPSnlmqLn98Ven
ucNBJ3lWtGQ=
=aPYo
-END PGP SIGNATURE-


Accepted:
x11proto-bigreqs-dev_1.1.1-2_all.deb
  to main/x/x11proto-bigreqs/x11proto-bigreqs-dev_1.1.1-2_all.deb
x11proto-bigreqs_1.1.1-2.diff.gz
  to main/x/x11proto-bigreqs/x11proto-bigreqs_1.1.1-2.diff.gz
x11proto-bigreqs_1.1.1-2.dsc
  to main/x/x11proto-bigreqs/x11proto-bigreqs_1.1.1-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/e1rqs6o-m2...@franck.debian.org



Accepted x11proto-fonts 2.1.1-2 (source all)

2011-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 11:39:24 -0800
Source: x11proto-fonts
Binary: x11proto-fonts-dev
Architecture: source all
Version: 2.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 x11proto-fonts-dev - X11 font extension wire protocol
Changes: 
 x11proto-fonts (2.1.1-2) unstable; urgency=low
 .
   * Mark x11proto-fonts-dev Multi-Arch: foreign
Checksums-Sha1: 
 e3793d96a9eae290efcd2d51409e7c890a71083d 2055 x11proto-fonts_2.1.1-2.dsc
 c66745b6b9fb952a0e462849cb004cc6f457fe80 14761 x11proto-fonts_2.1.1-2.diff.gz
 9205a84237adec7b1c9f2e016b4779e63d603f3e 68162 
x11proto-fonts-dev_2.1.1-2_all.deb
Checksums-Sha256: 
 7550639b3ee023c6739957d6ad4d58e979b5be78a703143504bf9340b0fee27e 2055 
x11proto-fonts_2.1.1-2.dsc
 a3f0ac89c0eb526892486d0466ae54f68764e64bd1da2febda8eb500d20055e7 14761 
x11proto-fonts_2.1.1-2.diff.gz
 00e96a89be2ebccd8247f6940387d82e6ed8c621e33874f4e63d585d066b49d6 68162 
x11proto-fonts-dev_2.1.1-2_all.deb
Files: 
 c2ba279d2643231b846654e20c96afbf 2055 x11 optional x11proto-fonts_2.1.1-2.dsc
 3a4a68144ef712d8c9aa3547eb684812 14761 x11 optional 
x11proto-fonts_2.1.1-2.diff.gz
 532822df8d781eae6669bc60de85598a 68162 x11 optional 
x11proto-fonts-dev_2.1.1-2_all.deb

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

iQIVAwUBTsLAr1aNMPMhshM9AQinOhAAvlXVtEhSIUHdYMqMuktiNmycR65hJqjl
vR71JOIOCxfX44MgVgpGeEAaR1OskeApHmgatE7AUmfrDgU2yPHHQbmTG+cUuV8a
kd+e126ori+vEZhc+S51ov+uBdWYkZ7/9bb8FAzO9BMoyGde5f9J70vOm6oWLLAg
qrA9MMwFdStvWsDAaiwnm/hGBsW75L6YHJVQ0SiGEIAqdZ2hJ2QacTzZv+KFxDdI
CgsuzWC+j4f8BQx+TlLM1kX6hM3f8hOuNerkCstOiUov3jjA7j8FxywbhVrl4ogd
t6uBIhOADrELmp1qtUeR+ysjnX2eELcTIzWJRNkrXYPAAOqkXqugkahu1IrVmcXr
vetIVt7IXqCoXcu45Bp0AKd3D5ZXOWxm/qc7Wp9T3FXjvlEsxlzxoLSuJMZoyxL+
PZL18QmQgEWo9zY6PnQpqI5/p4uwhl8m9Xs41f04Fr3oMmkd1XVeceS6zrTTJhEU
8bDi295y8Qf6JDGHdeXpx6z/AIl/e/m3ZJFX1a1HmKGT9iryki0gCb1LqRprAj9b
5TNjmRq6ympdm61Cqa/zNdRsWqwJ1KEIewQNMpLXeQsgV37XfEgLOvlMizlXiHn2
wPrNYYPmqmLJrnga5qBWpedYKKuOkO2gE04ILVT32hkskcwpOkxi3HW6o5JdnYeu
1QSmTKLfd5Y=
=Qzan
-END PGP SIGNATURE-


Accepted:
x11proto-fonts-dev_2.1.1-2_all.deb
  to main/x/x11proto-fonts/x11proto-fonts-dev_2.1.1-2_all.deb
x11proto-fonts_2.1.1-2.diff.gz
  to main/x/x11proto-fonts/x11proto-fonts_2.1.1-2.diff.gz
x11proto-fonts_2.1.1-2.dsc
  to main/x/x11proto-fonts/x11proto-fonts_2.1.1-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/e1rqs6l-qq...@franck.debian.org



Accepted x11proto-print 1.0.5-2 (source all)

2011-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 11:44:18 -0800
Source: x11proto-print
Binary: x11proto-print-dev
Architecture: source all
Version: 1.0.5-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 x11proto-print-dev - X11 Printing extension (Xprint) wire protocol
Changes: 
 x11proto-print (1.0.5-2) unstable; urgency=low
 .
   [ Julien Cristau ]
   * Remove David and Andres from Uploaders.
   * Drop obsolete Pre-Depends on x11-common.
 .
   [ Steve Langasek ]
   * Mark x11proto-print-dev Multi-Arch: foreign
Checksums-Sha1: 
 d368b38a35a4ef3b0103a64ae30e2d44768d28ee 1925 x11proto-print_1.0.5-2.dsc
 4d7c3de3fe322fc2161d40cf57a93128d97aacd8 107985 x11proto-print_1.0.5-2.diff.gz
 95f73603f296c283fc71b23bde1518a7170d77bb 14940 
x11proto-print-dev_1.0.5-2_all.deb
Checksums-Sha256: 
 d6c0d3c41674adbf514034e6f81a8d7e5d48def6854bfbab2984ccea8473551f 1925 
x11proto-print_1.0.5-2.dsc
 5007e27d99f902c11c7be64f128d5ffc4d2e984813c06be0b173f09ed41e8e3b 107985 
x11proto-print_1.0.5-2.diff.gz
 ca24e5d1398212b2828975100c9ae81e3def7c910489cfbf9e22e582d770a5bf 14940 
x11proto-print-dev_1.0.5-2_all.deb
Files: 
 1f31a12ef67c1640d055d386639b1b74 1925 x11 optional x11proto-print_1.0.5-2.dsc
 7607b48698ead6b059426c9ff24f3a61 107985 x11 optional 
x11proto-print_1.0.5-2.diff.gz
 3bbddefaa5243b3891d0fadfd0241a01 14940 x11 optional 
x11proto-print-dev_1.0.5-2_all.deb

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

iQIVAwUBTsLBvFaNMPMhshM9AQiOFQ/9HNpYn7lQIRcrclD3qpNoBPDvv9hXzQlM
XuT0LOs7LGPese1FHKQkklynFVhpJO0ecPQPFkvP1lRzbd/mn+TR0lbysjWr7TxV
N8JReVIockJWIxpCI2tgJpUzBKv9CigYb/HgUoDfePR595UviS5Ws/9G9sE0WorE
68k29gGZxvGTEtw4pP7gTbpDoJwYvKtEvbvrz3Qk8Mvka2FT0gzHgQEoEkaYy3cy
mZv6VOx3S6oxUW+ZSz7CODczMzaaaGKvo9VhpjFW8k0NTIIJamfTqReMY1jsy20H
VYodLowygv6gISLDqE3vtU85fWPrxdz5/lBoPRrvTO5PyByq8mPfVnD9jVz8JDS6
8h0fA7bRj07y4c1bPrkOU6HSJ5GqQ5naqOkLW3ecATSbMTGauI99fl59XwdNmVHQ
T1113v/5nb1W+dTpXrvNyq7wCIsrmfAHmMCNUHTPM+iM6r/aVNBTQGGAFr+OSGWn
bbDEgqikWkqg8XLLW+KjqUcA4Lp16RH0CLUjCwNLKU3iAOfzo1CrKpekDMKmQWMk
sIlen8RwzHJE9YH9SkSYrpyGptfBKz7D5EF2ziVrWr+72tqVnDHbc50Ce4ZpoNUi
AcNBo4PGwjSb6rg6TifPqaIqUOM2B+cf9FVO9hHVX7aTCPK5zpl17RLg5x5TGJEm
h7P6Xqlni8c=
=LsqH
-END PGP SIGNATURE-


Accepted:
x11proto-print-dev_1.0.5-2_all.deb
  to main/x/x11proto-print/x11proto-print-dev_1.0.5-2_all.deb
x11proto-print_1.0.5-2.diff.gz
  to main/x/x11proto-print/x11proto-print_1.0.5-2.diff.gz
x11proto-print_1.0.5-2.dsc
  to main/x/x11proto-print/x11proto-print_1.0.5-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/e1rqs78-ug...@franck.debian.org



Accepted x11proto-scrnsaver 1.2.1-2 (source all)

2011-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 11:49:19 -0800
Source: x11proto-scrnsaver
Binary: x11proto-scrnsaver-dev
Architecture: source all
Version: 1.2.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 x11proto-scrnsaver-dev - X11 Screen Saver extension wire protocol
Changes: 
 x11proto-scrnsaver (1.2.1-2) unstable; urgency=low
 .
   * Mark x11proto-scrnsaver-dev Multi-Arch: foreign
Checksums-Sha1: 
 dbbc48cba93739dbb8b88b48844ef4179712b6bf 2099 x11proto-scrnsaver_1.2.1-2.dsc
 6a8ba6f73e69a41f9bd7f3232261ee11b662fa4e 14393 
x11proto-scrnsaver_1.2.1-2.diff.gz
 64efbee7325d02a9eb5700d0495dbba9ea2ece0d 23162 
x11proto-scrnsaver-dev_1.2.1-2_all.deb
Checksums-Sha256: 
 abaee2e746326c92774b6ec11b7056d159bd551bed184857daa60de7a6499845 2099 
x11proto-scrnsaver_1.2.1-2.dsc
 6c22814da0dc5dba75a251b3103cc7bcd0d295e2d1f7e9339097937e35c5191b 14393 
x11proto-scrnsaver_1.2.1-2.diff.gz
 0af071763bfa360ad7de0c2b40759a950bc3c3da1afe5bc446b4594413e63cf1 23162 
x11proto-scrnsaver-dev_1.2.1-2_all.deb
Files: 
 93ff201af84d7570867f8b7e0c7932c0 2099 x11 optional 
x11proto-scrnsaver_1.2.1-2.dsc
 e1b6f584d68dbaa460c9f5d30fd16031 14393 x11 optional 
x11proto-scrnsaver_1.2.1-2.diff.gz
 3b81b515bc0590dd0147e7f0c671cb07 23162 x11 optional 
x11proto-scrnsaver-dev_1.2.1-2_all.deb

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

iQIVAwUBTsLC6FaNMPMhshM9AQhwmQ//ZllbkxnNc+Nj+e/ZGAvrdgjJYnSEaZV1
b0tcWtXcW+c/wQBqF38f9XySik4g9aLGZP1R4TR13BoL24MUzEO4KdAHLQu058Lm
ETK4+/Py2Y2VnpJVI6Tb3nvDzaI6f7/Rnvj8EBm4Pr/0Jqv1/IxjGC8BHCJCgZVk
hRu76Le6BP6oxCcWYkgX3LRL4m+issndk5do8QHvpB8rBXPlTjIgKhhElj+EeXb+
lYMm/oeO3XZVF53wGREs6Z5Wz+DZUDjD/xdl23noC6gCKS1oGCF8C1qB9BruENT7
togju4r+Omp2hrpe4QDci9OHUQHIhKQXFWdqh97LXBQekImsWN4s++PYzFcctPrA
MgxdC0/Q793FdSiTdvLmqDlQ9oRYmYBq/UeTJDvvt6KCgfl+Rrnf2JbHA3MiOyt6
c/bS/QXqZtW01p3ZHymt+UDCRxijBzvTNy8NWfmlUXP8HbaX2IZv7KJDYcnlx+VA
2Ep6LZ0z1FNVVgbHEuKTWYhH0O9OlNYApsSP52cl4RY8qjfV0e/Ra6TzG5W8sVRj
adrHnZ+LMiy78qpPFaxMgPopPM6I/QbdkfQzMg6TvIE5huy9R9qr8ozghJue53DQ
ti9FNyJKttpBWwiSK5ijNrUooNIkdcFhgAhS+4Shw9w1mDYr21mIGSlAnp9af8ip
lGZXmLyV67c=
=3pLM
-END PGP SIGNATURE-


Accepted:
x11proto-scrnsaver-dev_1.2.1-2_all.deb
  to main/x/x11proto-scrnsaver/x11proto-scrnsaver-dev_1.2.1-2_all.deb
x11proto-scrnsaver_1.2.1-2.diff.gz
  to main/x/x11proto-scrnsaver/x11proto-scrnsaver_1.2.1-2.diff.gz
x11proto-scrnsaver_1.2.1-2.dsc
  to main/x/x11proto-scrnsaver/x11proto-scrnsaver_1.2.1-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/e1rqs7v-we...@franck.debian.org



Accepted x11proto-xcmisc 1.2.1-2 (source all)

2011-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 11:52:55 -0800
Source: x11proto-xcmisc
Binary: x11proto-xcmisc-dev
Architecture: source all
Version: 1.2.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 x11proto-xcmisc-dev - X11 XC-Miscellaneous extension wire protocol
Changes: 
 x11proto-xcmisc (1.2.1-2) unstable; urgency=low
 .
   * Mark x11proto-xcmisc-dev Multi-Arch: foreign
Checksums-Sha1: 
 11025dd272601d6879da312ce151b0ca9d2cffd7 2066 x11proto-xcmisc_1.2.1-2.dsc
 919bb111077a4c0ca94034a7714318265bf90fa8 14030 x11proto-xcmisc_1.2.1-2.diff.gz
 c3e0af64ab65162cd36b0d95076744e487fdce67 10710 
x11proto-xcmisc-dev_1.2.1-2_all.deb
Checksums-Sha256: 
 6bf208568a98c9beed3d32f89992b03570266ce247812313203d3eba34361002 2066 
x11proto-xcmisc_1.2.1-2.dsc
 2797afe25c582fb81e3d87c50c3378cc0987a44e2c11a562e641ffd1e796b07d 14030 
x11proto-xcmisc_1.2.1-2.diff.gz
 e82c3c279d31ffd68c73f9c90f7265972f7a8fcf4ec6ed72577b4d6c16f85c3d 10710 
x11proto-xcmisc-dev_1.2.1-2_all.deb
Files: 
 459f933dd1810d331af1516784a1069c 2066 x11 optional x11proto-xcmisc_1.2.1-2.dsc
 0d3aea46c979022ab92e1b646e9a282d 14030 x11 optional 
x11proto-xcmisc_1.2.1-2.diff.gz
 3ce98908c60d72396587bccfeb0073da 10710 x11 optional 
x11proto-xcmisc-dev_1.2.1-2_all.deb

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

iQIVAwUBTsLDklaNMPMhshM9AQiAEQ/+JABGZ7WljKPOLNxnX7IYTI6Orog2C+zL
yxRukY0ztVCGKOLI6eWGM4EEDPFRJSamfiMN0/tyYQXJsRRyviMLpa1z5ZK7OqjS
5ShFYHtw8iGQOiEnnZcpakMeg7AXt0I84rusiBS3954twDeHj7BIaQGq2pMBug4E
lflCBoMw0cMs74eUk0ourtjsBfdkDt81M4EpCJED5kQknHpbDTmm0TszlvSOI0aH
+pssfCM6Nw9NBvQ8P2n+y7PTKV40RbCES45EDpU6dRfBaG5ZHsJWZ2xBNKnTrbje
knQEVSqzgZdGT9RpZrJjrQc+UJGog0BH53rpiW3XaVZvegfB2zlmzJ8OLMKU8I4+
OvCybRmd6riUB82SYPq8hnfDPgmIhkML3OY2ADB2tfH9znz1BMC0lAoxtmIF9uDU
vXZtdU6LKLCzjpxisDzs5/dlwc2CoHOelxs6VrpYBFPLnTLWVCAsNxCBEuV9mfak
tJyTooFFwAVbw6JlpTdRu1WS4qdG4L53EnrFBPXUim3nh26+BwNxWvhxsoGn1Ve9
96tUrXw57KG2DqSmcrg8VcLGnb5KID3p+WD9aV47OoSzl/pRrNvynK60g9X0dDQW
qxG/cPZq5JU8+jp6KhhFIJOJ0tNCRC8dcXIukQpVHMmYWQIp/yVV05+KKrXS3V/4
S5XhAyJJX6w=
=P7ZP
-END PGP SIGNATURE-


Accepted:
x11proto-xcmisc-dev_1.2.1-2_all.deb
  to main/x/x11proto-xcmisc/x11proto-xcmisc-dev_1.2.1-2_all.deb
x11proto-xcmisc_1.2.1-2.diff.gz
  to main/x/x11proto-xcmisc/x11proto-xcmisc_1.2.1-2.diff.gz
x11proto-xcmisc_1.2.1-2.dsc
  to main/x/x11proto-xcmisc/x11proto-xcmisc_1.2.1-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/e1rqs7t-yr...@franck.debian.org



Accepted x11proto-xf86dga 2.1-3 (source all)

2011-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 11:55:40 -0800
Source: x11proto-xf86dga
Binary: x11proto-xf86dga-dev
Architecture: source all
Version: 2.1-3
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 x11proto-xf86dga-dev - X11 Direct Graphics Access extension wire protocol
Changes: 
 x11proto-xf86dga (2.1-3) unstable; urgency=low
 .
   [ Julien Cristau ]
   * Rename the build directory to not include DEB_BUILD_GNU_TYPE for no
 good reason.  Thanks, Colin Watson!
   * Remove myself from Uploaders
 .
   [ Steve Langasek ]
   * Mark x11proto-xf86dga-dev Multi-Arch: foreign
Checksums-Sha1: 
 b6e68b5037791faf955a757d63ada077586b5b56 1973 x11proto-xf86dga_2.1-3.dsc
 ea77572c4b6b568680e05a7bc2c88ab66bab42be 14028 x11proto-xf86dga_2.1-3.diff.gz
 143c523b78f652326567c6395dbdba92ef24b446 10768 
x11proto-xf86dga-dev_2.1-3_all.deb
Checksums-Sha256: 
 ea1dc0cf98ceb1507b213cae57a00fc3e6342e9a42a71ac9ffb80e7a9855fca7 1973 
x11proto-xf86dga_2.1-3.dsc
 440bfd7cf61b1105de0680c8046d612b001edf5a18beac60c9b82919a90da906 14028 
x11proto-xf86dga_2.1-3.diff.gz
 69f9727178f1c3e568e72d9602b5e0fe401a30e639da58af18d2e4398b4f5226 10768 
x11proto-xf86dga-dev_2.1-3_all.deb
Files: 
 4ed9f99865ab513de884f8c80c8da8df 1973 x11 optional x11proto-xf86dga_2.1-3.dsc
 7a6f7c10500dd466adba509c858fed09 14028 x11 optional 
x11proto-xf86dga_2.1-3.diff.gz
 e3d7a5f25107a11f3566f86596a24b43 10768 x11 optional 
x11proto-xf86dga-dev_2.1-3_all.deb

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

iQIVAwUBTsLEDVaNMPMhshM9AQjgcA/8DiN7nLiWxSQhI1yfQxcAAD7z1tNTP2HH
b6xWyg3mbyv1D9J/RO3fnx2kYnmFkXt922usp00toxgXA8VAiRrYuQu3WG50GsO9
xYyuzlHS1gsryBN7x/UTnXMOpnKcHDbGNPiZj3xQVpbB0W6aYICkgk35+3hT56cb
4CZYO4DoH55nrnTH1Gfl0aGXfrODJMrP6pqEG2pQZCV2SbeDzjDgz4fOEGgEryRz
7dfmXRFvaJzLSMuBGTPwbAyIXDQUp5wr85DT/jW/FAY167cG+x+ODuOppGU7/WZR
s1QviVendZ4TPcRvQ1NgiJoM8WyedXtllFrzc8LiCCmSRRvegjW4cW9xYpFEbJQT
bSzh35quw5eNdgZ0CjM404JQgWQR6+wim6KKYaUTwjvEXFwXMOW9qElc8X7h5TvX
NxDvbTCpehBcuXGAil5MK8yoZEHEXl4kFT80FveyMBMVsjFW8ExIW/qglPwmqOQv
JcK9ugrVsVG0O0R0/sEE59h0RHJdbIJ3nlrTaJqkajpiC8IPyf8mqAUpnEX8ID6O
i7FKCzmhAPacaw98aXo70TUfk1ytKqf6r3J3y6gL9teg6LzUeWk6dhb6jYrSmHfo
Uih8RCLiCsp5OWdaVbmynKTPfgDDc5WztyJeVkZocWbuPuIYMs/8paef19qQhKIE
LV2FN8IPPVQ=
=QFJp
-END PGP SIGNATURE-


Accepted:
x11proto-xf86dga-dev_2.1-3_all.deb
  to main/x/x11proto-xf86dga/x11proto-xf86dga-dev_2.1-3_all.deb
x11proto-xf86dga_2.1-3.diff.gz
  to main/x/x11proto-xf86dga/x11proto-xf86dga_2.1-3.diff.gz
x11proto-xf86dga_2.1-3.dsc
  to main/x/x11proto-xf86dga/x11proto-xf86dga_2.1-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/e1rqs8g-000117...@franck.debian.org



Accepted x11proto-xf86dri 2.1.1-2 (source all)

2011-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 11:58:56 -0800
Source: x11proto-xf86dri
Binary: x11proto-xf86dri-dev
Architecture: source all
Version: 2.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 x11proto-xf86dri-dev - X11 DRI extension wire protocol
Changes: 
 x11proto-xf86dri (2.1.1-2) unstable; urgency=low
 .
   * Mark x11proto-xf86dri-dev Multi-Arch: foreign
   * Install xf86driproto.pc to /usr/share/pkgconfig
Checksums-Sha1: 
 6f893029d3777d94bb1feaf09ed80b9a1803a303 2022 x11proto-xf86dri_2.1.1-2.dsc
 a4be3bc1441b9bd6dcc129e31c04226677a08365 13616 x11proto-xf86dri_2.1.1-2.diff.gz
 2fbff3ba9c433768ae770a26ab9af6d6f1c69e90 5592 
x11proto-xf86dri-dev_2.1.1-2_all.deb
Checksums-Sha256: 
 8733f4076e7c8a9eda8e8e6518d0df62663ad1107625e46414d4e710a184a783 2022 
x11proto-xf86dri_2.1.1-2.dsc
 eaea3da31ae1d0899386c14e9376f87d96f04f215ef01dd0202c4c3e4fa5ce33 13616 
x11proto-xf86dri_2.1.1-2.diff.gz
 ad7b839695a5ae327827e7509992cf307b40f64967558b671edb1781df90c603 5592 
x11proto-xf86dri-dev_2.1.1-2_all.deb
Files: 
 cf971f97e1983a40c79ed70128588e5f 2022 x11 optional x11proto-xf86dri_2.1.1-2.dsc
 b2c53e0f82b11dfe8764fcca2abe78e5 13616 x11 optional 
x11proto-xf86dri_2.1.1-2.diff.gz
 9f7ed8c3f15a19e43c3923955ec790f6 5592 x11 optional 
x11proto-xf86dri-dev_2.1.1-2_all.deb

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

iQIVAwUBTsLFBlaNMPMhshM9AQhK8A/+LfY9PY5WDf5aYyUDjwD1PuK/RUBh6AnE
xRroXdJZzEajC0jQ2qI6mWqrcW3YJDBrK4DHgeVr+WmhH9GM5pgJrJRn88LsUYIe
cxVjsv9ke8uDwBBClCryJBDwB2ThJ+/RNXmVubSjwOweI19SKTMma/SLyeJtvQeX
rhwWxL4JMk7ICuxHzcfcp7ZwXMECLPhuEIP+1zL8DXxiTzJlV/dtnVcAdyW5u/HL
Sqx7YaUoDqbWpUyQ4qs9y0dGvSPuU+bmSRpDrjeRQDiz6l5e9MdbDD9LPvQnE4Pj
3gd4YI9f5p2dwhmm5m9DDR0OfZlBhbSUH3HY5uQ+r8lUGLoz3mFkp7P4BDlIERM7
UKpVOPdceOeRTepULWswN81UI0SsO+u++0xnXBwUahnG6RD7mqEbwQ3NUz1E8sTm
a+RFw0YUY3XmW6L7i8Xa+T9DkvNrutA50DL9IawwDzc0pjNDirYhdTZ0egNkT/A6
q8QLBMY591TSt5dJkVu9ixtWTot1MJA/78qA0BY5hWpOmwPCOpOF9DEviP4DRWoi
5M2k7YqOQ4TmlosablQaC8lrs9srezhPcUy4Q0BhoZbtQw2CMDZ+sSwH+VaRkH8R
T4MNGK0IKeXBKHocCzkw53QvgNN88QS7d0JjrNUHxs2xDHGxBe4u4T7IzEJfvYTg
iHXZn22byvE=
=jPPL
-END PGP SIGNATURE-


Accepted:
x11proto-xf86dri-dev_2.1.1-2_all.deb
  to main/x/x11proto-xf86dri/x11proto-xf86dri-dev_2.1.1-2_all.deb
x11proto-xf86dri_2.1.1-2.diff.gz
  to main/x/x11proto-xf86dri/x11proto-xf86dri_2.1.1-2.diff.gz
x11proto-xf86dri_2.1.1-2.dsc
  to main/x/x11proto-xf86dri/x11proto-xf86dri_2.1.1-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/e1rqs8b-00013y...@franck.debian.org



Accepted x11proto-xf86misc 0.9.3-2 (source all)

2011-11-15 Thread Steve Langasek
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 12:02:23 -0800
Source: x11proto-xf86misc
Binary: x11proto-xf86misc-dev
Architecture: source all
Version: 0.9.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Steve Langasek vor...@debian.org
Description: 
 x11proto-xf86misc-dev - X11 XFree86-Miscellaneous extension wire protocol
Changes: 
 x11proto-xf86misc (0.9.3-2) unstable; urgency=low
 .
   * Mark x11proto-xf86misc-dev Multi-Arch: foreign
   * Install xf86miscproto.pc to /usr/share/pkgconfig
Checksums-Sha1: 
 a2e11d40442403c7b67e8c2e898df18f2ca6a8a8 2036 x11proto-xf86misc_0.9.3-2.dsc
 049ccec64cc7a3948f6c7a0ce3b90ee3dcaa907d 15072 
x11proto-xf86misc_0.9.3-2.diff.gz
 78375686a118fc1166311470161eaf392f479329 5842 
x11proto-xf86misc-dev_0.9.3-2_all.deb
Checksums-Sha256: 
 2b054a8f40e2789d5ce08c3ca90f39b3452610a218f7d4d895610ff56c215656 2036 
x11proto-xf86misc_0.9.3-2.dsc
 9986a458402bed236dfb2f3147beaf2ea08709f65ac10b21e226d3970203e969 15072 
x11proto-xf86misc_0.9.3-2.diff.gz
 af02ea0f2fd7355e0727eeb17dbc50e902ebb2d3dd652afab846f11cc2881f93 5842 
x11proto-xf86misc-dev_0.9.3-2_all.deb
Files: 
 5ab12d4e7e618834b13dcea27781305d 2036 x11 optional 
x11proto-xf86misc_0.9.3-2.dsc
 60eddc6e3d4481ff5190d4635b3735d9 15072 x11 optional 
x11proto-xf86misc_0.9.3-2.diff.gz
 c0a45cf39e72363b085c6e54ae47c1ea 5842 x11 optional 
x11proto-xf86misc-dev_0.9.3-2_all.deb

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

iQIVAwUBTsLF11aNMPMhshM9AQgOzA//Ui80cImyKR01Oshw8rpWrw3rt7Lb+5mp
gfjd49rP5hMhEEwYlkZccE9ZbR0ClXVAyYC69fX564eYY/6WW+1xfoNYMZuoejiA
9RJlxsZHyojiNbDnb6DC/9k2ymjBzHRKjZQAW+3iF/OxdDcZtBucwVqm7ilJy8At
EtQCDwKq2lhVQll0JLtDkj1e6mEQM1a5AFIp+rNOwDniVDgiFZhYA33KXHTzsWGj
tWSzbLz8VrrDDWLrbj9G0bAjiKonPmp9rxGSsMax+xNzOkI3AR9xiQijlFkC3xNc
GsnBUgypGowBYVuRxu5drmlGjKE6lX5tMq2C49Js76Pf4LnEQIVQYHYm2PAu75mH
aWgBO1gmHdFUo9ocby3Ee6U+E3ifUcoDf8AbXWLCmYXnjLoX3k96b83k76ahfXya
cq9bUJVbfuF6r+qugS1eWl4rN2bxGt/qEfqBgzxig0YTDgkqiz02FnISXEyzOj2w
DJM17pHfj8bK+bVeaCe1qtnOQyOhhweS6TId2vuPiKQQZmTKmkV4FvNkDLYuYJck
IAsKlGWIwkNFFbf/nqOeKSoWXAl7zfm0mcqYRHhO+6sAbsnDV0pc2dj4cw6j/IoX
feHK+VPi6qX55jOL+vH6azBvp+3wrgNL/0C4AUFAqjXG+dJNAnjE7gai4y8pdF8U
VxiElgHO0lE=
=cQY5
-END PGP SIGNATURE-


Accepted:
x11proto-xf86misc-dev_0.9.3-2_all.deb
  to main/x/x11proto-xf86misc/x11proto-xf86misc-dev_0.9.3-2_all.deb
x11proto-xf86misc_0.9.3-2.diff.gz
  to main/x/x11proto-xf86misc/x11proto-xf86misc_0.9.3-2.diff.gz
x11proto-xf86misc_0.9.3-2.dsc
  to main/x/x11proto-xf86misc/x11proto-xf86misc_0.9.3-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/e1rqs8x-00016a...@franck.debian.org



Accepted autofill-forms 0.9.8.3-3 (source all)

2011-11-15 Thread Sascha Girrulat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 22:26:57 +0100
Source: autofill-forms
Binary: xul-ext-autofill-forms
Architecture: source all
Version: 0.9.8.3-3
Distribution: unstable
Urgency: low
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: Sascha Girrulat sas...@girrulat.de
Description: 
 xul-ext-autofill-forms - Iceweasel/Firefox add-on that enables you to fill out 
web forms f
Closes: 648790
Changes: 
 autofill-forms (0.9.8.3-3) unstable; urgency=low
 .
   * [dcd3dd5] add ${xpi:Breaks} to control (Closes: #648790)
Checksums-Sha1: 
 d5274a699ac1febba8a1b731bab36e929643a439 1925 autofill-forms_0.9.8.3-3.dsc
 c6c7015749dae6eebad5f89aad184d35a81b2ef0 2566628 
autofill-forms_0.9.8.3.orig.tar.gz
 a116015664aa577c8e6e552b6e885499d656105e 20964 
autofill-forms_0.9.8.3-3.debian.tar.gz
 40cb0543110fbbde16987c730f1029f17a11c1fb 2612518 
xul-ext-autofill-forms_0.9.8.3-3_all.deb
Checksums-Sha256: 
 ed569240db5617a91e0bb84beb7e07cf183f96f3580e7e306f2669f98731c6a7 1925 
autofill-forms_0.9.8.3-3.dsc
 95685a3123b18eecc09dc69caf46536ebfc753f9bc8417fb896bb7bd60610844 2566628 
autofill-forms_0.9.8.3.orig.tar.gz
 a55efc581f08421817e71a7893df2fc9b7c05f7f2242b7bd1dbbac3feeba 20964 
autofill-forms_0.9.8.3-3.debian.tar.gz
 b44a00ff9f1372f668c29dbe8481f0607a56d40d320b325f5b40fddb68f84110 2612518 
xul-ext-autofill-forms_0.9.8.3-3_all.deb
Files: 
 405f32ea80009a6ff25d669a1ef51c39 1925 web optional autofill-forms_0.9.8.3-3.dsc
 fb4042ca9bdd4634439fa0e58315c057 2566628 web optional 
autofill-forms_0.9.8.3.orig.tar.gz
 34eb5faebeb16d13ea6f6c23844fde6c 20964 web optional 
autofill-forms_0.9.8.3-3.debian.tar.gz
 017a07b5f91919bd690c5649ebe1bf8a 2612518 web optional 
xul-ext-autofill-forms_0.9.8.3-3_all.deb

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

iQGcBAEBAgAGBQJOwtmsAAoJEGEHEeZmMP76QuYL/3mfZLEzODd5s+4xsJNdPdzN
6aE9mNIdGpYoWax7sD5Qsh8WCXmi+n3NVGW1s6E5ivNut38t2XfSbY37HZbp4jge
uu5+S6utyuA4X7cVgDDD8PPH3bdIMLlONzLxRUFuvo0HwSfYgd4+6NYG8ECL5Uxc
JqftmgoJRfSndmUbEHyIWpphent7PbwGOqIVC1zZ5QO8cxIUmPrKChItFvChlC9w
LsZd+i4guX24j7w+GzqdwtvOUF41i5s+jQrtuSv7anXsysgoDyp9AixzOdPx/1xR
mfFNSHfw9zlMKXOTHdp1bT8AJxGLWnDeTyY0Xo800LlT/KRmaAeVF/fgw/Z4wYzf
ULC/MKBy/tYyJ+5AHkmuEtmefeznhMg/fs4zr2G396XqYFDkeLc5E7DLMKWTFmUM
3B01Cj3aXk89gL0DXniUyL83mDc6Fl3YgAiuY/SiRNJokoQr+pELoXRGoReXqcR5
tJS+5HhJGIzY1hpaAcZaKoRDfyMz463Yt8x7UpXbog==
=1FKi
-END PGP SIGNATURE-


Accepted:
autofill-forms_0.9.8.3-3.debian.tar.gz
  to main/a/autofill-forms/autofill-forms_0.9.8.3-3.debian.tar.gz
autofill-forms_0.9.8.3-3.dsc
  to main/a/autofill-forms/autofill-forms_0.9.8.3-3.dsc
xul-ext-autofill-forms_0.9.8.3-3_all.deb
  to main/a/autofill-forms/xul-ext-autofill-forms_0.9.8.3-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/e1rqsx5-0005i4...@franck.debian.org



Accepted flare 0.14.1-5 (source all amd64)

2011-11-15 Thread Manuel A. Fernandez Montecelo
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 22:12:48 +
Source: flare
Binary: flare flare-data
Architecture: source amd64 all
Version: 0.14.1-5
Distribution: unstable
Urgency: low
Maintainer: Jan-Hendrik Peters he...@hennr.name
Changed-By: Manuel A. Fernandez Montecelo manuel.montez...@gmail.com
Description: 
 flare  - single-player 2D action role-playing game, binary
 flare-data - single-player 2D action role-playing game, data files
Changes: 
 flare (0.14.1-5) unstable; urgency=low
 .
   [ Jan-Hendrik Peters he...@hennr.name ]
   * Correcting path to icon in the menu file
Checksums-Sha1: 
 ab5d8bf92a760d8cd82bb6d836325e01bf69157c 1367 flare_0.14.1-5.dsc
 811e6cdaed96e694ba812b772839de73d142ba64 19412 flare_0.14.1-5.debian.tar.gz
 65a51566ab413a6f06e35dc055e1fa7c242c7b38 209772 flare_0.14.1-5_amd64.deb
 dcc6c780f6049806fdfd7fb6069eaf9b3a3ea485 43112120 flare-data_0.14.1-5_all.deb
Checksums-Sha256: 
 81590e6e7afdf361366a27281db0f34ab3dcc0fb1ef86b5e20ae390e922b157c 1367 
flare_0.14.1-5.dsc
 f27af88203d2a9c8b04dc2c96f883cefffeb574571a3c5d03512ef3c6d991b97 19412 
flare_0.14.1-5.debian.tar.gz
 b2819830dd51e24b132c0b5e77555204ca4613cc31c2064fd0f40ed83f7ad3ee 209772 
flare_0.14.1-5_amd64.deb
 afdb1c7a549af1325d6d9bdfa655548c9df7d8892b0902dcdf1a9b428b62a16e 43112120 
flare-data_0.14.1-5_all.deb
Files: 
 56c80ef45397abab2211060f5635d4ee 1367 games optional flare_0.14.1-5.dsc
 919dc45533a2d2357faee98b0d4301dc 19412 games optional 
flare_0.14.1-5.debian.tar.gz
 673ae45398a982aa087bb2f04b8a673f 209772 games optional flare_0.14.1-5_amd64.deb
 5065cb18a40cb49a30ef22446d6492de 43112120 games optional 
flare-data_0.14.1-5_all.deb

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

iEYEARECAAYFAk7C4xYACgkQK4B7+/vnTppvvQCfVhoUWt91DYbmpwM+tz9TE0oV
mAgAnRTbr6Z0PD3tuSaqIpye1S1s7ieo
=S/EZ
-END PGP SIGNATURE-


Accepted:
flare-data_0.14.1-5_all.deb
  to main/f/flare/flare-data_0.14.1-5_all.deb
flare_0.14.1-5.debian.tar.gz
  to main/f/flare/flare_0.14.1-5.debian.tar.gz
flare_0.14.1-5.dsc
  to main/f/flare/flare_0.14.1-5.dsc
flare_0.14.1-5_amd64.deb
  to main/f/flare/flare_0.14.1-5_amd64.deb


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



Accepted fldigi 3.21.26-1 (source amd64)

2011-11-15 Thread Kamal Mostafa
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 13:26:59 -0800
Source: fldigi
Binary: fldigi
Architecture: source amd64
Version: 3.21.26-1
Distribution: unstable
Urgency: low
Maintainer: Debian Hamradio Maintainers debian-h...@lists.debian.org
Changed-By: Kamal Mostafa ka...@whence.com
Description: 
 fldigi - digital modem program for hamradio operators
Changes: 
 fldigi (3.21.26-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 b08587ef295c7226283c3e1362d2a440c6f27178 2052 fldigi_3.21.26-1.dsc
 204f7a9a9482e137f2a5530405971960dad35c81 1633239 fldigi_3.21.26.orig.tar.gz
 345b1481d29dba08cbaf7c18e0fdc62cdc8e1528 10122 fldigi_3.21.26-1.debian.tar.gz
 22260d14b8107568a2e1a32b9be22e96f09e4424 1460634 fldigi_3.21.26-1_amd64.deb
Checksums-Sha256: 
 208f6e13471025ad43170727f041201f568ec82f40c6c846bd1890a6ba87a2a3 2052 
fldigi_3.21.26-1.dsc
 fffa23483a217069d2f6cba99f7a40f0ba6ed10c7d6b864ea3f9317478ba3f92 1633239 
fldigi_3.21.26.orig.tar.gz
 3c69ada8dc5ea0453c60b753b0357e03e1340a96abed118f128865fb0fda3849 10122 
fldigi_3.21.26-1.debian.tar.gz
 1c5ea20c302d67d716ab4e3dc28d174a868e878d730936652d5f88ebfc29a429 1460634 
fldigi_3.21.26-1_amd64.deb
Files: 
 5e70dedd9419cd705dd61368049c06b7 2052 hamradio extra fldigi_3.21.26-1.dsc
 68fffb4a098fcf6e823bfc03dbe3f65a 1633239 hamradio extra 
fldigi_3.21.26.orig.tar.gz
 b269a9940033e2e5f92a92fc1a62dd9a 10122 hamradio extra 
fldigi_3.21.26-1.debian.tar.gz
 33d12634283297879baf21eec85511e5 1460634 hamradio extra 
fldigi_3.21.26-1_amd64.deb

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

iQIcBAEBCAAGBQJOwujRAAoJEOf3EFVUCeQi+g0P/1qSNbeOoqMwuTM65MCYRAMe
O4qwgdjONaehkidJ4Yp1+0g7KOlOHMO26Vdn6SZLwAnaBbbovwG8K/Ar32oPCCYP
P36z1/Dcyq2A5nlTV2YMBkgasuzsluAKCYWnUezbb7yDGbbHVTiTvF91IiHCHC9x
x32/rxx4SpUMlP3o+Heng14WGvjPqFvk1pvnEBnlIemgpm+lK8BeerH4QC64/kxw
91dWimJlUxJSuGRGedfvPvupODgP2fgUcaDPhH4j6jb49Si+3t9lx0lA7yQkLO8q
OJhIxG0r3iNjhfx3YRk3ayustXqJNsHFN0ZW1nX8gS4uLjdHDWn0qCnnd03/lMhk
9bbrwDxd2LEHzg9Bl7FZ0qEiS+2TQVArBDt94xBXgZQpqlkICkOHlD+aWsaiLmR2
mUW2OHpx2Ier9AEiaVrSAT4z81pARc8Y7lXVrmUR0MorWhNkI1x2DtpZ5YPJuSB6
riprfDcBNKIt2PBKXWmENR10ygMDakJD720FIHqUFpVCnKSioUsUYzaKZkfuxSdl
byRyZ/yxHI2HDuY9UZ2HAqykc5sPbEBHH/OvbjNIYYul7xEcrJqWNoYtgRzCLi8n
VGjGqRsODEtG2pwfoQAiINggSKJmtdicm4eXU8KewSiQFoZ24ZVwjRM2o6nKbFUX
+TulNMsHHyiKDjHn02XY
=cQi/
-END PGP SIGNATURE-


Accepted:
fldigi_3.21.26-1.debian.tar.gz
  to main/f/fldigi/fldigi_3.21.26-1.debian.tar.gz
fldigi_3.21.26-1.dsc
  to main/f/fldigi/fldigi_3.21.26-1.dsc
fldigi_3.21.26-1_amd64.deb
  to main/f/fldigi/fldigi_3.21.26-1_amd64.deb
fldigi_3.21.26.orig.tar.gz
  to main/f/fldigi/fldigi_3.21.26.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/e1rqsfm-0006i5...@franck.debian.org



Accepted gnudatalanguage 0.9.2-1 (source amd64)

2011-11-15 Thread Axel Beckert
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 23:18:56 +0100
Source: gnudatalanguage
Binary: gnudatalanguage
Architecture: source amd64
Version: 0.9.2-1
Distribution: unstable
Urgency: low
Maintainer: Gürkan Sengün gur...@phys.ethz.ch
Changed-By: Axel Beckert a...@debian.org
Description: 
 gnudatalanguage - Free IDL compatible incremental compiler
Closes: 630481 647802 648476
Changes: 
 gnudatalanguage (0.9.2-1) unstable; urgency=low
 .
   * New upstream release (Closes: #648476)
 - Fixes FTBFS. (Closes: #647802) Thanks to Daniel T Chen for
   investigation!
 - Add B-D on pslib-dev and add --with-pslib to configure call.
 - No more remove /usr/lib/libantlr.a from the package, it's no more
   built anymore.
 - Refresh patch fix-muldefs
 - Refresh patch build-with-debian-antlr-instead-embedded-one; remove
   parts applied upstream.
   * Install upstream man page, drop outdated debian/gdl.1. Thanks
 Sylwester Arabas! (Closes: #630481)
   * Use dh_autotools-dev_*config instead of manually copying
 config.{sub,guess}
   * Use dh_autoreconf instead of patching configure et al manually.
 - No more patch configure script, just configure.in in remaining
   patches.
   * Bump Standards-Version to 3.9.2 (no changes necessary)
Checksums-Sha1: 
 25a36f9876b33db0f057ee2ab4795022593b51c5 1532 gnudatalanguage_0.9.2-1.dsc
 0d6fe86e2971637310c6298379616b02f773e956 2436946 
gnudatalanguage_0.9.2.orig.tar.gz
 1b881a7f730a19f02c712919beb935c7d0787f38 7709 
gnudatalanguage_0.9.2-1.debian.tar.gz
 8074454522eb280e61bd5280ce183928bf801312 2718170 
gnudatalanguage_0.9.2-1_amd64.deb
Checksums-Sha256: 
 179f2ee85202598c50c93eee2a501b637c2c09393bde647428a116821e7c3df1 1532 
gnudatalanguage_0.9.2-1.dsc
 59907d941877327e9653a9cda5d801ea0b45f67af4c7da22acfcdd7cad291acf 2436946 
gnudatalanguage_0.9.2.orig.tar.gz
 246ecc741d5468ab17a27b8b55578a29f8ca1e00eb60c69c8ad56bd0ccf08df7 7709 
gnudatalanguage_0.9.2-1.debian.tar.gz
 ab068c21dd732ed30fa1f47b2a61ced4b5db9a2fbdc8dcc0bfb09a0b043ae8ea 2718170 
gnudatalanguage_0.9.2-1_amd64.deb
Files: 
 d678f6612f75da62af5abfc319d47255 1532 interpreters optional 
gnudatalanguage_0.9.2-1.dsc
 7178304e6737a8dca910d2c1061ff63c 2436946 interpreters optional 
gnudatalanguage_0.9.2.orig.tar.gz
 7f4f110901c0793f27ac30c256da978a 7709 interpreters optional 
gnudatalanguage_0.9.2-1.debian.tar.gz
 d2d124177f9aa6de42d7da136d804e77 2718170 interpreters optional 
gnudatalanguage_0.9.2-1_amd64.deb

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

iEYEARECAAYFAk7C55gACgkQwJ4diZWTDt6shwCeNKVgqb+utIspH1sJoU3gjLUn
K7cAnjGvIj4vUUkSa8+XrX+msOlh/mu1
=uLRy
-END PGP SIGNATURE-


Accepted:
gnudatalanguage_0.9.2-1.debian.tar.gz
  to main/g/gnudatalanguage/gnudatalanguage_0.9.2-1.debian.tar.gz
gnudatalanguage_0.9.2-1.dsc
  to main/g/gnudatalanguage/gnudatalanguage_0.9.2-1.dsc
gnudatalanguage_0.9.2-1_amd64.deb
  to main/g/gnudatalanguage/gnudatalanguage_0.9.2-1_amd64.deb
gnudatalanguage_0.9.2.orig.tar.gz
  to main/g/gnudatalanguage/gnudatalanguage_0.9.2.orig.tar.gz


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



Accepted gtksourceview3 3.2.3-1 (source all amd64)

2011-11-15 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 23:37:56 +0100
Source: gtksourceview3
Binary: libgtksourceview-3.0-0 libgtksourceview-3.0-common 
libgtksourceview-3.0-dev libgtksourceview-3.0-doc gir1.2-gtksource-3.0
Architecture: source all amd64
Version: 3.2.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description: 
 gir1.2-gtksource-3.0 - gir files for the GTK+ syntax highlighting widget
 libgtksourceview-3.0-0 - shared libraries for the GTK+ syntax highlighting 
widget
 libgtksourceview-3.0-common - common files for the GTK+ syntax highlighting 
widget
 libgtksourceview-3.0-dev - development files for the GTK+ syntax highlighting 
widget
 libgtksourceview-3.0-doc - documentation for the GTK+ syntax highlighting 
widget
Changes: 
 gtksourceview3 (3.2.3-1) unstable; urgency=low
 .
   * New upstream release.
   * Rely on cdbs to call dh_girepository. Bump Build-Depends accordingly.
Checksums-Sha1: 
 571ed1c09939d390b71092dea6aa0c4bf8233d80 2776 gtksourceview3_3.2.3-1.dsc
 22e9e3c38a10e3ffdec7d5e1179571364e4d3653 1215836 
gtksourceview3_3.2.3.orig.tar.xz
 2da8e29cd319ea5a41d37740653d44fd71f0d0d9 13431 
gtksourceview3_3.2.3-1.debian.tar.gz
 7e930c9af1a1a1d7d874a885996e2dfe04e67bc7 1157260 
libgtksourceview-3.0-common_3.2.3-1_all.deb
 ec3951e26c23075ba6e0a941f6b8a4452194931e 194862 
libgtksourceview-3.0-doc_3.2.3-1_all.deb
 38c74e6d5e7c9e05b8a10d169aeae8e63298d3be 280226 
libgtksourceview-3.0-0_3.2.3-1_amd64.deb
 aec757129d8f7b0cf6dd2f943162590253283f43 378094 
libgtksourceview-3.0-dev_3.2.3-1_amd64.deb
 d6bb0ec87b63edcfe708c91b68d52be37e1128c2 104294 
gir1.2-gtksource-3.0_3.2.3-1_amd64.deb
Checksums-Sha256: 
 bf53c753736764fe7680488f14a6f774352fe22fce2e38ff509cc87811a91cc9 2776 
gtksourceview3_3.2.3-1.dsc
 73d9c6702ccecd06846132cfb50191092cb50a4bcb3ff810a5605868f0855947 1215836 
gtksourceview3_3.2.3.orig.tar.xz
 636c66935b5c0cf949196c5a08ecbf74201858cab6d84b68351fb9145be55120 13431 
gtksourceview3_3.2.3-1.debian.tar.gz
 4ad464b0d1283bf4adf288a2f64e3702fc93584366555a80e3b0dbec927f3c2c 1157260 
libgtksourceview-3.0-common_3.2.3-1_all.deb
 92b3b6d958dad0b2000938f5ab6ef9d689562c84634d380905f5bb6cd5ba8f95 194862 
libgtksourceview-3.0-doc_3.2.3-1_all.deb
 55263d07153f102473df7a43fe02ddd348e449fd18d004555fe23385a5437fc5 280226 
libgtksourceview-3.0-0_3.2.3-1_amd64.deb
 050730273bba12703b9b82bbcff66429c510b8d73ab19ecf3e88649ae3bb9102 378094 
libgtksourceview-3.0-dev_3.2.3-1_amd64.deb
 2da2419eac6945d331027039aab34c42eb9519d0fa84528a76e3fa491e949825 104294 
gir1.2-gtksource-3.0_3.2.3-1_amd64.deb
Files: 
 cc29bd06c6ab7ea6b108f210d381e885 2776 libs optional gtksourceview3_3.2.3-1.dsc
 ebef871b40f145c5d09a5c94b6e5ec03 1215836 libs optional 
gtksourceview3_3.2.3.orig.tar.xz
 bd56907abc20925d5ea1315e826ccdbd 13431 libs optional 
gtksourceview3_3.2.3-1.debian.tar.gz
 430b2ea1dcefe93009da49cdd3f30c0a 1157260 libs optional 
libgtksourceview-3.0-common_3.2.3-1_all.deb
 bd8cce65a344b0e2c1fdc87c087dfb2c 194862 doc optional 
libgtksourceview-3.0-doc_3.2.3-1_all.deb
 2a2343c066a80825b9d284d5b4b712be 280226 libs optional 
libgtksourceview-3.0-0_3.2.3-1_amd64.deb
 42011b2a49fe32766ae3b2b28459d782 378094 libdevel optional 
libgtksourceview-3.0-dev_3.2.3-1_amd64.deb
 99ce98afd5cdd0a5ec07a2a670536a4e 104294 libs optional 
gir1.2-gtksource-3.0_3.2.3-1_amd64.deb

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

iQIbBAEBCAAGBQJOwutAAAoJEGrh3w1gjyLcpBUP9jz+6590y9KGdEuuESxMGuL+
dtAcJ3dIKlvZYeTUlXWfKQjzI43GvWUixaEOTM3vaIP3GZ/BNKkp107zVltZf4cR
BeSR0TYg6U03oN8y4BCuAf+BOtFGkIByI2NGObYVn9wRsdKyl6dbJ+AyhfP/8Fxn
EYPJqNcDycWDvg6m8oHOduo89EClqFFV51+U8ZGncK218aRye1KDemK2c1nb637u
j7Ta0gidUs+tk4NFd6luVp4fFoV7UQxVU2BdsVUoTqCbmbV4Mmi0GEiViUuC4KQN
FCUOj03KH0VGMwQmuol2jO4SCQyeAUM181vLWueNZ0k8C6vJgnq3HA2HCGFKvOGL
87LKZiaWvGIGJtGgTc8UOhk1ve1YuOqOd2mguUoJ8oZNokb24vzzF89/iolUOn6H
jqbGWG90/If63tE3wiyAMYTyUPRqdxHqAkhd57K3gOTlEvM+YsSvD1Sh/bQ0XUtL
vQgYBLvsiIGKp5/NH1/VU87518ru6F4RTabMyutxWhLzgQfyZeEk3x13wD+77cPs
tUBJJJfZhA+KVZIOD9HGkUeb1mmAXwVkMVZEBuE4kXCmbpSEeeCRgFJub7hrwSy5
gVFHRiOkWXs4N1JFq1liGt1xLxx3yMD64ANPay5sRh8cl6tnxWoWpzgVtXdx6AuH
MMvU7k39UnnH+KwcVio=
=6GGC
-END PGP SIGNATURE-


Accepted:
gir1.2-gtksource-3.0_3.2.3-1_amd64.deb
  to main/g/gtksourceview3/gir1.2-gtksource-3.0_3.2.3-1_amd64.deb
gtksourceview3_3.2.3-1.debian.tar.gz
  to main/g/gtksourceview3/gtksourceview3_3.2.3-1.debian.tar.gz
gtksourceview3_3.2.3-1.dsc
  to main/g/gtksourceview3/gtksourceview3_3.2.3-1.dsc
gtksourceview3_3.2.3.orig.tar.xz
  to main/g/gtksourceview3/gtksourceview3_3.2.3.orig.tar.xz
libgtksourceview-3.0-0_3.2.3-1_amd64.deb
  to main/g/gtksourceview3/libgtksourceview-3.0-0_3.2.3-1_amd64.deb
libgtksourceview-3.0-common_3.2.3-1_all.deb
  to main/g/gtksourceview3/libgtksourceview-3.0-common_3.2.3-1_all.deb
libgtksourceview-3.0-dev_3.2.3-1_amd64.deb
  to 

Accepted libjson-pp-perl 2.27200-2 (source all)

2011-11-15 Thread Dominic Hargreaves
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 21:23:41 +
Source: libjson-pp-perl
Binary: libjson-pp-perl
Architecture: source all
Version: 2.27200-2
Distribution: unstable
Urgency: high
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Dominic Hargreaves d...@earth.li
Description: 
 libjson-pp-perl - module for manipulating JSON-formatted data (Pure Perl)
Closes: 648880
Changes: 
 libjson-pp-perl (2.27200-2) unstable; urgency=high
 .
   [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
 .
   [ Salvatore Bonaccorso ]
   * debian/copyright: Replace DEP5 Format-Specification URL from
 svn.debian.org to anonscm.debian.org URL.
 .
   [ Dominic Hargreaves ]
   * Add diverts for /usr/bin/json_pp (and corresponding manpage) since
 perl 5.14 also ships these (Closes: 648880)
Checksums-Sha1: 
 b31271c8ea5ea6ab7e2c150096dfcfe4541774d7 1478 libjson-pp-perl_2.27200-2.dsc
 58af397e2664d16b57736f2f27729ebafae77ca8 2234 
libjson-pp-perl_2.27200-2.debian.tar.gz
 6f0203bec85380e2a202687562a41ab332ca2294 54248 
libjson-pp-perl_2.27200-2_all.deb
Checksums-Sha256: 
 8b3915d7f3a77fe594d83693ab193ad05299d0d169f2a7a2808d4b577f7b6eae 1478 
libjson-pp-perl_2.27200-2.dsc
 ad0886bbb374682bf9104dc9d3ffab89b90bf4a869037bbed26828b1213ffddf 2234 
libjson-pp-perl_2.27200-2.debian.tar.gz
 bf462da24aa322f936b90b3456800375ce6d3aec640eb63aed0d0113fe7e3bfe 54248 
libjson-pp-perl_2.27200-2_all.deb
Files: 
 82681bdacbb2e220fd45f9272962f918 1478 perl optional 
libjson-pp-perl_2.27200-2.dsc
 370f9d807a4bda8c9a244364c8a74923 2234 perl optional 
libjson-pp-perl_2.27200-2.debian.tar.gz
 59df994c1f531243436a424b023fc4a7 54248 perl optional 
libjson-pp-perl_2.27200-2_all.deb

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

iD8DBQFOwtiAYzuFKFF44qURAoJUAKCqetp3gTeIfBkdSLnm1eQrh5V5qQCgvnmL
SopQkg2LlJ+O5RERki9sZRA=
=Ug3C
-END PGP SIGNATURE-


Accepted:
libjson-pp-perl_2.27200-2.debian.tar.gz
  to main/libj/libjson-pp-perl/libjson-pp-perl_2.27200-2.debian.tar.gz
libjson-pp-perl_2.27200-2.dsc
  to main/libj/libjson-pp-perl/libjson-pp-perl_2.27200-2.dsc
libjson-pp-perl_2.27200-2_all.deb
  to main/libj/libjson-pp-perl/libjson-pp-perl_2.27200-2_all.deb


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



Accepted libtest-www-declare-perl 0.02-2 (source all)

2011-11-15 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 16 Nov 2011 00:07:07 +0100
Source: libtest-www-declare-perl
Binary: libtest-www-declare-perl
Architecture: source all
Version: 0.02-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 libtest-www-declare-perl - declarative testing module for web apps
Closes: 636271
Changes: 
 libtest-www-declare-perl (0.02-2) unstable; urgency=medium
 .
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
 .
   [ Ansgar Burchardt ]
   * debian/control: Convert Vcs-* fields to Git.
 .
   [ gregor herrmann ]
   * Use tiny debian/rules, and unset http_proxy for tests.
   * Switch to source format 3.0 (quilt).
   * Add patch perl_re.patch to handle changes in regexp stringification in
 perl 5.14. (Closes: #636271)
   * Switch to debhelper compatibility level 8.
   * Set Standards-Version to 3.9.2. remove version from perl build
 dependency.
   * Add /me to Uploaders.
   * debian/copyright: update formatting.
   * Fix hashbang in example script.
   * Set urgency to medium (RC bug, perl 5.14 transition).
Checksums-Sha1: 
 191da8da4da289e679541293ff0a5e4121fd8788 2288 
libtest-www-declare-perl_0.02-2.dsc
 c6bebd5a3f86c3946328e1713e36f6a9c036a908 3319 
libtest-www-declare-perl_0.02-2.debian.tar.gz
 341a30a1627abf12432bec6bd828c36dc3640629 12928 
libtest-www-declare-perl_0.02-2_all.deb
Checksums-Sha256: 
 e64c03d73e15534dd1e6590de6049df800ca5ca7b1ac7499cbf3e5f0335add9f 2288 
libtest-www-declare-perl_0.02-2.dsc
 39ec86bd2e6f8afac5d4acd9ec6f197451ceb0a086be53185d95fccc34afd776 3319 
libtest-www-declare-perl_0.02-2.debian.tar.gz
 21da58aa2b8fe6f57ebbf047f33ddc462ff4a925353b85d15bc1f95099cbc644 12928 
libtest-www-declare-perl_0.02-2_all.deb
Files: 
 60881a7c114b6e207bbf3f7c63b13250 2288 perl optional 
libtest-www-declare-perl_0.02-2.dsc
 1926a03f1849e996c72e03a86c1c8ca1 3319 perl optional 
libtest-www-declare-perl_0.02-2.debian.tar.gz
 55f6f658a9047c636d0704b418f057bb 12928 perl optional 
libtest-www-declare-perl_0.02-2_all.deb

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

iQIcBAEBCAAGBQJOwvERAAoJELs6aAGGSaoGorgP/1BB+WyX3DhbmyPE7kpYiqrO
TugTd74ZxKuT5Z/7aCws70yuukZ+y19lmcHrfY2fSxDSO5tmSbtObpUNTqGFF7bP
ieCiZ+GZa0PARbSsAu+Ui4e6CjpCMs+69/0agHNGxouXvccgGuGSI+eZUVfNJ7Vu
KFu8DJrSoyyMrAlyMnKrPFVOB3l0qGzBjSTP5VRJeUaXuSPkycvj106gCaYTw34h
onY6T+I6SRd3gAF5/Zka2m+s7ssr5Vf1hs/sxLu97/815ERiWrn91EZNElr4irVr
umeuFNOS5Dw2jdwTo1I6oMwxLtmSz++nxFOIxPW9v4FgYV6G+Hy2HuBzWWV2ovxU
XuL41u//zr9RhIRurAg3RIkLNHE8Q5SBLtC0Hpa1JRmLcIUj+OrYCum3HnVWnXKd
VAG+Ub+9Gwclfp7iRnYxOgTcY/btPzHjOxMjKq6m4ZmAR++ghcNEdUwYGFrdv3AR
xVwVe/ua3n00wzA5danGKx8AM6iQzNARg2GcJgv5OTSTcVayjBu/vDKJhAZmFcR9
pa+EEWQgsiSHh6i7fhCIpeYVJxoDvE3BKlQnUb9UJZeRISKFGIwRcZVUikGMy64W
+fJBHYAnv03SIe/BN9g0yaO4VRIaamXKNhysAWSsGrTxCHjWxWXiMfsH7WB1uKDE
Th75Uzy5/VgZYq/B5jvZ
=Fo/d
-END PGP SIGNATURE-


Accepted:
libtest-www-declare-perl_0.02-2.debian.tar.gz
  to 
main/libt/libtest-www-declare-perl/libtest-www-declare-perl_0.02-2.debian.tar.gz
libtest-www-declare-perl_0.02-2.dsc
  to main/libt/libtest-www-declare-perl/libtest-www-declare-perl_0.02-2.dsc
libtest-www-declare-perl_0.02-2_all.deb
  to main/libt/libtest-www-declare-perl/libtest-www-declare-perl_0.02-2_all.deb


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



Accepted libv8 3.4.14.21-5 (source amd64)

2011-11-15 Thread Jérémy Lal
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 23:07:20 +0100
Source: libv8
Binary: libv8-dev libv8-3.4.14.21 libv8-dbg
Architecture: source amd64
Version: 3.4.14.21-5
Distribution: unstable
Urgency: low
Maintainer: Debian Javascript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: Jérémy Lal kapo...@melix.org
Description: 
 libv8-3.4.14.21 - v8 JavaScript engine - runtime library
 libv8-dbg  - v8 JavaScript engine - debugging symbols
 libv8-dev  - v8 JavaScript engine - development files
Closes: 648506
Changes: 
 libv8 (3.4.14.21-5) unstable; urgency=low
 .
   [ Jakub Wilk ]
   * Add patch (taken from upstream VCS) to fix compatibility with ICU 4.8
 Closes: bug#648506.
 Thanks to Julien Cristau for the bug report.
Checksums-Sha1: 
 6ddd7fd8a4a6fbc856de7685857d2a9dbd56df63 1513 libv8_3.4.14.21-5.dsc
 eaa8c89cbdbedc707cef65c352cb6d998c002116 25982 libv8_3.4.14.21-5.debian.tar.gz
 2b9a98735e3cdb35d854dd9fa7563c2b1e810b7b 79526 libv8-dev_3.4.14.21-5_amd64.deb
 8d5098c635c351510a451f3af128982cedcecbd1 1383814 
libv8-3.4.14.21_3.4.14.21-5_amd64.deb
 272d6ef5d6940ec7d69221541f6668915fe9a063 22626620 
libv8-dbg_3.4.14.21-5_amd64.deb
Checksums-Sha256: 
 bc470103b353647a7c0a1bb9a8a87ab80599404c9fa1bbd942c32365a613dba7 1513 
libv8_3.4.14.21-5.dsc
 8748053d446268411024033a4e3ec198096eeb00ff1af836df65de4291a313aa 25982 
libv8_3.4.14.21-5.debian.tar.gz
 22bbe0c581b8e6bacc702d4fc0722581ba6bac5319a0a0af0d6fdc1050cab278 79526 
libv8-dev_3.4.14.21-5_amd64.deb
 59e69c0967ee2bea13ee1b01f51143b07753f72b0a6b51193cbeea29ee8080e7 1383814 
libv8-3.4.14.21_3.4.14.21-5_amd64.deb
 29e3b72ad7f80b793cdcf2cf47e01aad054873c371acc8654d4cd056051534e8 22626620 
libv8-dbg_3.4.14.21-5_amd64.deb
Files: 
 000aa61cffd4843c2f58e2091279386e 1513 libs optional libv8_3.4.14.21-5.dsc
 a0eca85b110bf73be31662286b65d96a 25982 libs optional 
libv8_3.4.14.21-5.debian.tar.gz
 c24b35f2723edbfe15b8f18a1803e1bd 79526 libdevel optional 
libv8-dev_3.4.14.21-5_amd64.deb
 a782c7b228098ace19e3ef411cfecc7e 1383814 libs optional 
libv8-3.4.14.21_3.4.14.21-5_amd64.deb
 4f8ea19226490cae3b931b64247480c9 22626620 debug extra 
libv8-dbg_3.4.14.21-5_amd64.deb

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

iEYEARECAAYFAk7C6cwACgkQDMRIEQdBQdyzTgCgnqeNx/Qrwlw0Zd94ga92UHCZ
dTYAoL/QFtdSniGYTegJM3A8gOq3PZzs
=j1sg
-END PGP SIGNATURE-


Accepted:
libv8-3.4.14.21_3.4.14.21-5_amd64.deb
  to main/libv/libv8/libv8-3.4.14.21_3.4.14.21-5_amd64.deb
libv8-dbg_3.4.14.21-5_amd64.deb
  to main/libv/libv8/libv8-dbg_3.4.14.21-5_amd64.deb
libv8-dev_3.4.14.21-5_amd64.deb
  to main/libv/libv8/libv8-dev_3.4.14.21-5_amd64.deb
libv8_3.4.14.21-5.debian.tar.gz
  to main/libv/libv8/libv8_3.4.14.21-5.debian.tar.gz
libv8_3.4.14.21-5.dsc
  to main/libv/libv8/libv8_3.4.14.21-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/e1rqthk-0003ii...@franck.debian.org



Accepted linux-container 1-1 (source all)

2011-11-15 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 14 Nov 2011 17:45:27 +0100
Source: linux-container
Binary: linux-container
Architecture: source all
Version: 1-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net
Changed-By: Daniel Baumann daniel.baum...@progress-technologies.net
Description: 
 linux-container - Linux containers userspace tools (container support package)
Changes: 
 linux-container (1-1) unstable; urgency=low
 .
   * Initial release, split out from lxc 0.7.5-8.
Checksums-Sha1: 
 fd4d48ff7b600cc06cd642f289762cdc907181c2 1130 linux-container_1-1.dsc
 a1c01cc0d6a04de9869d2e6f9f15c8337709e98b 14362 linux-container_1.orig.tar.gz
 bc3dc404d3405a83c08678e7b0dadbf8cb9bb7dd 7033 linux-container_1-1.debian.tar.gz
 00fcb0dc20e549f403a081199b04dcca93d27778 20512 linux-container_1-1_all.deb
Checksums-Sha256: 
 ecb78cadd0ea5bdefca98d4b522f41171220bdb7919af0b19df7c1a0dcff9fee 1130 
linux-container_1-1.dsc
 67fdfadeda312ead050c839c51a1e8aa1bba48eaa56120af4ecf05daa7264a8f 14362 
linux-container_1.orig.tar.gz
 096fa9742c9e309eb66425cf3ddd4c7629480cf04bdb5de01ea1c55fe75bf185 7033 
linux-container_1-1.debian.tar.gz
 ae6d8ec96490694407cb619c38350c14a61f3ddd7fc91344ed1da477872ea433 20512 
linux-container_1-1_all.deb
Files: 
 f852e5d4896a1bc3c994e7ee475ba6e2 1130 admin optional linux-container_1-1.dsc
 46516f332020ef08ca0a66a3e9ae64c4 14362 admin optional 
linux-container_1.orig.tar.gz
 50781e20573fecc1e8c9edd346e15df1 7033 admin optional 
linux-container_1-1.debian.tar.gz
 e62455393f167212af37d1279d348bf9 20512 admin optional 
linux-container_1-1_all.deb

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

iEYEARECAAYFAk7C4MkACgkQ+C5cwEsrK55FKQCgkGVq2MfB16UqCVby1kl/Z481
NxoAn18LTMIjv1QT4wEMavBlttMg+uF/
=WIVl
-END PGP SIGNATURE-


Accepted:
linux-container_1-1.debian.tar.gz
  to main/l/linux-container/linux-container_1-1.debian.tar.gz
linux-container_1-1.dsc
  to main/l/linux-container/linux-container_1-1.dsc
linux-container_1-1_all.deb
  to main/l/linux-container/linux-container_1-1_all.deb
linux-container_1.orig.tar.gz
  to main/l/linux-container/linux-container_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/e1rqtqp-0004da...@franck.debian.org



Accepted lxc 0.7.5-9 (source i386)

2011-11-15 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 15 Nov 2011 22:10:17 +0100
Source: lxc
Binary: lxc lxc-dbg lxc-dev
Architecture: source i386
Version: 0.7.5-9
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann daniel.baum...@progress-technologies.net
Changed-By: Daniel Baumann daniel.baum...@progress-technologies.net
Description: 
 lxc- Linux Containers userspace tools
 lxc-dbg- Linux Containers userspace tools (debug)
 lxc-dev- Linux Containers userspace tools (development)
Changes: 
 lxc (0.7.5-9) unstable; urgency=low
 .
   * Splitting out linux-container package into own source package.
Checksums-Sha1: 
 e678813989d397eeb81ce21b5a0a504a514d9d56 1232 lxc_0.7.5-9.dsc
 a5e9f582157d7c4be15e9e1a5b12df7119c9d11a 27258 lxc_0.7.5-9.debian.tar.gz
 3a7fbc03bc5d6e4f099419faae0df159a393f4bf 163516 lxc_0.7.5-9_i386.deb
 4f486120c18cecfca15c28f3c178b794a22ae624 171876 lxc-dbg_0.7.5-9_i386.deb
 315a06559e5c47069baedf2d4f51140983ff9ff7 16622 lxc-dev_0.7.5-9_i386.deb
Checksums-Sha256: 
 9fecbf6a7e9cd792a476acf229f2ea52cec309bc0d447d195dec4c4bf583119c 1232 
lxc_0.7.5-9.dsc
 e3a3200b0c0984c60c6f8cf46d0ffd5ec8a9454a2ce904f3406c87088dc13bef 27258 
lxc_0.7.5-9.debian.tar.gz
 5ad47de0df19af12db448e6f0011a323ef0a2a4a2ea74b30a634fb1aed3e642d 163516 
lxc_0.7.5-9_i386.deb
 6dc1aa227b1aac4cd1e7c40bf91c988790fdd6d353c973b4bae1ba7cde8ee22c 171876 
lxc-dbg_0.7.5-9_i386.deb
 1577d76f1576028f47ca75cf231a64c1e535dbd3415f41f4cc262fca74424ce8 16622 
lxc-dev_0.7.5-9_i386.deb
Files: 
 bb71571339570652c02b81c39c4bba42 1232 admin optional lxc_0.7.5-9.dsc
 fbcf15ca43b9f43f1ee057c592892bb7 27258 admin optional lxc_0.7.5-9.debian.tar.gz
 ff1c22f4145cd531fcb97c04cc12b41e 163516 admin optional lxc_0.7.5-9_i386.deb
 c28ed8f2cefbd21ebf9f3ca53823f499 171876 debug extra lxc-dbg_0.7.5-9_i386.deb
 966f14adbfa0d3b147e219aa1a96f72e 16622 libdevel optional 
lxc-dev_0.7.5-9_i386.deb

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

iEYEARECAAYFAk7C47MACgkQ+C5cwEsrK56zswCeJgKfjJ5Hb4iYWCxo/R8UrnRJ
GIUAoI7vAUZrBPKlJHsInf6g4AlHi5nU
=827/
-END PGP SIGNATURE-


Accepted:
lxc-dbg_0.7.5-9_i386.deb
  to main/l/lxc/lxc-dbg_0.7.5-9_i386.deb
lxc-dev_0.7.5-9_i386.deb
  to main/l/lxc/lxc-dev_0.7.5-9_i386.deb
lxc_0.7.5-9.debian.tar.gz
  to main/l/lxc/lxc_0.7.5-9.debian.tar.gz
lxc_0.7.5-9.dsc
  to main/l/lxc/lxc_0.7.5-9.dsc
lxc_0.7.5-9_i386.deb
  to main/l/lxc/lxc_0.7.5-9_i386.deb


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



Accepted mednafen 0.9.18-1 (source amd64)

2011-11-15 Thread Stephen Kitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sat, 12 Nov 2011 01:15:38 +0100
Source: mednafen
Binary: mednafen
Architecture: source amd64
Version: 0.9.18-1
Distribution: experimental
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Stephen Kitt st...@sk2.org
Description: 
 mednafen   - multi-platform emulator, including NES, GB/A, Lynx, PC Engine
Closes: 634461
Changes: 
 mednafen (0.9.18-1) experimental; urgency=low
 .
   * New upstream WIP version, adding PSX emulation (only on little-endian
 systems).
   * Update copyright information.
   * Refresh use-system-tremor.patch and use dh-autoreconf to handle all
 the autotools reconfiguration involved.
   * Fix debian/control uses hardcoded list of non-Linux architectures -
 qualify libasound2-dev dependency using [linux-any] instead of
 [!kfreebsd-i386 !kfreebsd-amd64 !hurd-i386] (closes: #634461).
   * Install .desktop file allowing file association, with known
 supported MIME types, as suggested by Damian Yarrick (LP: #886912;
 helps with #635538).
   * Simplify rules using dh 9 and enable hardening.
   * Build-conflict with autoconf2.13 which causes the build to fail.
   * Set DM-Upload-Allowed flag, as done by Piotr Ożarowski in 0.8.D.3-2.
Checksums-Sha1: 
 0d4fa5388afe2c2f21e422787ae1ed80f5951fbd 2237 mednafen_0.9.18-1.dsc
 6e3752f9b4794ed34ecb0e6239d6761a67947317 3561701 mednafen_0.9.18.orig.tar.bz2
 968a41da41fdfab7f1eed3263a55b95470de85b5 195190 mednafen_0.9.18-1.debian.tar.gz
 98ca0cba516a46e9c18c7313aafcb50339c60277 3070294 mednafen_0.9.18-1_amd64.deb
Checksums-Sha256: 
 5632aae40990aff16ddb3c9f465736657e924c2bf5133dc46d2142ccac412919 2237 
mednafen_0.9.18-1.dsc
 caf1d7be034e277a9e1bdc24625ede2974a085131eca4828716d58400c03bdc2 3561701 
mednafen_0.9.18.orig.tar.bz2
 90999abbdb97ffe484d2c9cb6f49713119cb0a1da672afb882f1f81faf7e8cef 195190 
mednafen_0.9.18-1.debian.tar.gz
 3d046e6b29ff33c39a3774c474ecbd4ae3086ae7ffce6e53ef9768db369e0d7c 3070294 
mednafen_0.9.18-1_amd64.deb
Files: 
 c619100e6c210bbb46ef5221fd6c108b 2237 games optional mednafen_0.9.18-1.dsc
 0327b3b0f8413f1ed446c4d8b9b897f0 3561701 games optional 
mednafen_0.9.18.orig.tar.bz2
 e0cee7d546db33a88949556e9818dc8f 195190 games optional 
mednafen_0.9.18-1.debian.tar.gz
 4fc210784aaf900ac7e031b7b52125b2 3070294 games optional 
mednafen_0.9.18-1_amd64.deb

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

iQIcBAEBCgAGBQJOwtXiAAoJEK728aKnRXZF+zoP/2K0hoegdn8+kv10t5KJ9v1L
4XvtuRJj/gofhWoSqf3hLie6KnJi+yciotWVHu9si+xTvjdh1GejKfRuJoaJHyuZ
RRvBS3yLGb6+U588NQwQajWIELFpVnPiKbPbzkZpOr0WrexxO2ITRKwDgEOFeuZv
mKDBUEU4a5Tmjup2w91ejb+iOAYzgjlHn5AwAzQIx/9imzdZB8hOS1x5RJLqk2Sc
ngK4PQ6i+L+FaXhxu1DUU+54FoCBnUO+WkzpdxatbK5Ceh120PfZ0N9s9NXXaRfy
GB8iF2i63GFmjxPux/fJ9g4BXf4UwPphVyDywc1mKDaWUqtXvNWpk8KNHfIRFdQM
HMLghMcSARi5E/WErYT53NifmY00qFXryHJwh1tIyS3K1c2OjON2JJqu9z2YnOnN
1w+95rR6/RIlpEwJjpDzlj+1s8rJnrdCFPeKczmajFTeGwC1sRKrMqv3auHCOpDc
ctu04Z73xH3r/Co/ydZ2B1BEKDWC1unAJjjCo+V1/EJJ1OKnVt6ds2n5WdLe1t63
bP5Wb35Wia9cek9F0uZ7RupdkcDRQcHKwiI5eozSIBBBfmrrR3HhvvBnBdaetQzc
k215JVnaXERaz7pXJFYd/J5icTW8dJDfVz07oyNHDDx8XRxpHaqgaylFfIJTM9pP
uxhkafD9CEMEEVyFP4r7
=Ezsa
-END PGP SIGNATURE-


Accepted:
mednafen_0.9.18-1.debian.tar.gz
  to main/m/mednafen/mednafen_0.9.18-1.debian.tar.gz
mednafen_0.9.18-1.dsc
  to main/m/mednafen/mednafen_0.9.18-1.dsc
mednafen_0.9.18-1_amd64.deb
  to main/m/mednafen/mednafen_0.9.18-1_amd64.deb
mednafen_0.9.18.orig.tar.bz2
  to main/m/mednafen/mednafen_0.9.18.orig.tar.bz2


-- 
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/e1rqtrl-00053h...@franck.debian.org



Accepted ploader 1.6.0-1.1 (source all)

2011-11-15 Thread Didier Raboud
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 15 Nov 2011 22:18:40 +0100
Source: ploader
Binary: ploader
Architecture: source all
Version: 1.6.0-1.1
Distribution: unstable
Urgency: low
Maintainer: Nicolas Roudaire nikro...@gmail.com
Changed-By: Didier Raboud o...@debian.org
Description: 
 ploader- Application to upload your pictures to your Piwigo gallery
Closes: 643489
Changes: 
 ploader (1.6.0-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Don't mix source format 3.0 (quilt) and manual usage of quilt:
 - Drop the --with quilt debhelper addon;
 - Don't rename the binary by moving it around in the build process, rather
   rename it after install;
 - Drop superfluous quilt Build-Depends.
 Closes: #643489.
Checksums-Sha1: 
 00de2b5f4bc3ef59cd18d69068cb6aae978e39bf 1525 ploader_1.6.0-1.1.dsc
 99dada23b0ae099887969c3eadd3222bc32fa6f7 4617 ploader_1.6.0-1.1.debian.tar.gz
 c5a1280386b956ba3a3d65e9d1527932ffdd0709 148940 ploader_1.6.0-1.1_all.deb
Checksums-Sha256: 
 a70e889bc32019d67b446959f8215b3903f293cc571d9804f6c344a374913087 1525 
ploader_1.6.0-1.1.dsc
 f01be3dbe16c935da2ef4fb8c9c29b933c75c24e20eb800f6760037ab1e29e76 4617 
ploader_1.6.0-1.1.debian.tar.gz
 5f7a95c7e5e4d34d325354c56c28736a6196f3e4a6d2f64a52d8669c734bf312 148940 
ploader_1.6.0-1.1_all.deb
Files: 
 851a14af7e0ecc04cc4473f9849d31f6 1525 utils optional ploader_1.6.0-1.1.dsc
 0fdbe09f76c7407bc124e0cc165ce51d 4617 utils optional 
ploader_1.6.0-1.1.debian.tar.gz
 e849fbc0e0105461eca5cdade27509f2 148940 utils optional 
ploader_1.6.0-1.1_all.deb

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

iQGcBAEBCAAGBQJOwtkeAAoJEIvPpx7KFjRVK4YMAIj+QwmYUFpiByAPsXiCH3Uw
HPoIpmOSfk2Fdo4ki3CK9KUlOE3oNOd8jhh5NlhXKbIDTr/eFFZff5Hi+g+HEiJs
+recJyvOm9RfVeoDQyw8JjJ5AIxOxYTob9DVFAQ+NA0ZxJfW0GDRpMpkPYtxca2U
ClNv2RXzsGahPd/nF0PLlLzKg8YHOkeUXL5i81gCd9MLxfzLJ8RFK/P5jocvom4v
CbqQpWP43eFFUsOxgSlpBn9Cj+PORK70/qdpKuganfg+FhY0y70jeZESmKp2qmS4
YqbDL6rhpjMZb3VV9kWsnC+ybdyfwtX8R/i9pYKCML8YVM9sd6aDMbRnA0TILPj0
PtoV2MhhltfpIjBx0o5luux/Win9ilUYffr/1g6ZreFrXk1x6MoZjCwNB//JgT4b
TOuKSJUozOCWxumRWhGDqRJzZlZZnjcXa2AKHRlkjWkcOa4ydfYS3DjdjHhcTxUh
FVGejLO8363GeSk3vj853nFJ0jDCHHHzrTF7ZzmyMg==
=HEIt
-END PGP SIGNATURE-


Accepted:
ploader_1.6.0-1.1.debian.tar.gz
  to main/p/ploader/ploader_1.6.0-1.1.debian.tar.gz
ploader_1.6.0-1.1.dsc
  to main/p/ploader/ploader_1.6.0-1.1.dsc
ploader_1.6.0-1.1_all.deb
  to main/p/ploader/ploader_1.6.0-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/e1rqtxb-0005kq...@franck.debian.org



  1   2   >