Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Wouter Verhelst
On Sun, Aug 19, 2012 at 07:59:00PM -0400, Chris Knadle wrote:
 The first suggestion I have is to look at Wouter Verhelst's 'ipcfg' project
 [1],

Thanks :-)

 which he gave a talk about on the last day of DebConf12 [2], and which is
 currently a work-in-progress, thus making it a good time for this kind of
 input. His plan for the project addresses many of the typical complaints about
 NM, as well as other network managers, and I think he's got some very
 interesting ideas and thoughts about the problems you've described.

It's nowhere near ready yet, however. Last week was the first time I
managed to do anything on ipcfg since debconf (hey, I have a life, too).

_Maybe_ I'll get this to a somewhat working state for Jessie, but that's
by no means certain.

-- 
The volume of a pizza of thickness a and radius z can be described by
the following formula:

pi zz a


-- 
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/20120820065624.ga4...@grep.be



Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Wouter Verhelst
On Sun, Aug 19, 2012 at 11:17:26AM +0900, Charles Plessy wrote:
  - In Squeeze, using default configurations, files with .php in their name
such as foo.php.jpeg are executed as PHP scripts by the Apache web 
 servers
runing PHP scripts through php5-cgi.

Maybe that's because it's expected they would be PHP scripts emitting
JPEG files, not plain JPEG files? This seems like a feature to me, not a
bug. Why was support for that removed?

-- 
The volume of a pizza of thickness a and radius z can be described by
the following formula:

pi zz a


-- 
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/20120820070213.gb4...@grep.be



Re: Minified javascript files

2012-08-20 Thread Thomas Goirand
On 08/19/2012 09:49 PM, Vincent Bernat wrote:
 As for
 verification, having the source next to the minified version does not
 guarantee anything about the minified version

Right, which is why we should build from source (eg: minify ourselves
the javascript libs).

 all the more that we
 don't have currently in Debian Wheezy a reliable minifier.
   

This is the first time I read this. have you tried yui-compressor?
Isn't it good enough?

Thomas


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



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Stephan Seitz

On Sun, Aug 19, 2012 at 07:59:00PM -0400, Chris Knadle wrote:

Related note: I likewise repeatedly have confusion over how to deal with
testing Network Status from within shell scripts for doing operations that
require network access.  As a for instance a common suggestion for keeping
GPG keys up to date is to set a 'gpg --referesh-keys' operation as a cron job,
which doesn't make sense to do if the device the script is run on is offline,


And how do you want to do this check? Even if ethtool says, the interface 
is up, this doesn’t mean, your DSL router has a WAN connection running.  
And if it has, it doesn’t mean you can reach the keyserver.


So you can use something like „fping -q keyserver”, if the keyserver is 
pingeable. Any other check is not really usefull.


Stephan

--
| Stephan Seitz  E-Mail: s...@fsing.rootsland.net |
| Public Keys: http://fsing.rootsland.net/~stse/keys.html |


signature.asc
Description: Digital signature


Re: Enabling uupdate to simply remove files from upstream source (Was: Minified javascript files)

2012-08-20 Thread Andreas Tille
On Mon, Aug 20, 2012 at 12:32:28AM +0200, Jonas Smedegaard wrote:
  Well, uscan makes some use of system so this could work - but I hoped
  for a more Perl-ish solution (similar to the rfc822 reader in
  python-debian).
 
 Is this Perl-ish enough for you?:

:-)
 
 #!/usr/bin/perl -w
 use Parse::DebControl;
 use feature say;
 $okformat = 
 qr'http://www.debian.org/doc/packaging-manuals/copyright-format/1.0';
 $parser = new Parse::DebControl(1);
 $data = $parser-parse_file($ARGV[0], {
 discardCase=1,
 singleBlock=1,
 });
 die unless ($data-{format} =~ m{^$okformat/?$});

# needs checking whether such field exists ...
if ( $data-{files-excluded} ) {

 foreach (grep {/\//} split /\s+/, $data-{files-excluded}) {
 say 'dir: '.$_;
 };
 foreach (grep {/^[^\/]+$/} split /\s+/, $data-{files-excluded}) {
 say 'file: '.$_;
 };

}

 Replace say... with calls to find ... -delete.

Thanks.  Yes, that's Perl-ish? ;-)

I'm just waiting for Ansgar whether he really wants to have this as
external tool or whether this could be safely included into uscan as a
patch.

Kind regards

 Andreas.


-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120820072810.ga17...@an3as.eu



Re: Minified javascript files

2012-08-20 Thread Thomas Goirand
On 08/20/2012 03:23 AM, Simon Josefsson wrote:
 I believe differences like that are not important, compare how gcc
 generate different binaries each time depending on parameters etc.
 However, if a minified file is shipped that cannot be re-created at all
 (due to no minifier) I don't think shipping source for the file is the
 only problem.  Both source code and the tools needed to generate output
 forms is needed for users to be able to use a modified version of the
 program.

 /Simon
   
If it's that hard to produce a minified version, then shouldn't
we use the normal version? How much speed-up do we really
get anyway (my wild guess: not much...)?

Thomas


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



Re: Minified javascript files

2012-08-20 Thread Thomas Goirand
On 08/20/2012 03:34 AM, Vincent Bernat wrote:
 Other minifiers (like yui-compressor) are considered not
 reliable enough.
Sorry that I asked you about this before reading this.

So, could you tell in what way yui-compressor isn't considered
not reliable enough? Does it crash? Or does it produce bad
minified scripts? In which case: in what way bad?

Thomas


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



Re: Enabling uupdate to simply remove files from upstream source

2012-08-20 Thread Andreas Tille
Hi,

On Mon, Aug 20, 2012 at 12:10:19AM +0200, gregor herrmann wrote:
   I use ~dfsg by default, ~dfsg1 and bumping numbers for multiple 
   repackagings, and only +dfsg when the repackaging happens after a 
   non-repackaged version was released into Debian.
   
   Reason for this is that there is a slight chance upstream may re-release 
   same upstream version repackaged to fix a purely tarball-related issuem 
   and I would then have room for using that proper version instead of 
   using epoch or add a bogus .0 to the version.
  
  This was also my initial idea when firt proposing ~dfsg.  On the other
  hand:  I would *really* want to have upstream adding a new version number
  to the cleaned up release.  It is just (uhmm, find your own word here)
  if people release the same named file with different content.  So I do
  not see great harm if we would settle with +dfsg.  Gregor, could you give
  better reasons than Jonas for +dfsg?  
 
 Well, I see Jonas' point but I haven't encountered it yet in my
 experience; and often repackaging happens after detecticting that
 it's needed, in which case +dfsg seems more logical.

I confirm that this case seems the more probable case to my experience.
I also agree that a configurable suffix would be interesting but my main
focus is currently the implementation of the deletion process and the
configurable suffix could be added as an additional feature later.
 
   That initial test by Gregor makes me worry if Debian::Copyright parser 
   might be too strict: Writing should be strict but parsing relaxed - 
   Copyright file format with undefined fields added should *not* be 
   treated as broken. Perhaps there are other surprises waiting to happen 
   :-/
 
 Yup, I was just the first that came to my mind.
  
  Could anybody say something about this?
 
 Next guess:
 
 Dpkg::Control::Hash - parse and manipulate a block of RFC822-like fields
 (libdpkg-perl)

How would you compare this to Jonas solution using

  use Parse::DebControl;

?  I'm to inexperienced with these tools to weight pros and cons.
 
Kind regards

   Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120820073934.gb17...@an3as.eu



Re: Minified javascript files

2012-08-20 Thread Marco d'Itri
On Aug 20, Thomas Goirand z...@debian.org wrote:

 If it's that hard to produce a minified version, then shouldn't
 we use the normal version? How much speed-up do we really
No.

 get anyway (my wild guess: not much...)?
Very important, anybody who deals with web scalability knows that 
javascript minification is one of the first and easier steps you take to 
improve performance.

The current situation is just sad, and it reflects quite badly on the 
viability on Debian as a serious OS.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#685363: ITP: impressive-editor -- Editor for Impressive presentation tool

2012-08-20 Thread 魏銘廷
Package: wnpp
Severity: wishlist
Owner: Yao Wei (魏銘廷) m...@lxde.org

* Package name: impressive-editor
  Version : 0.0.1
  Upstream Author : Yao Wei (魏銘廷) m...@lxde.org
* URL : https://github.com/medicalwei/impressive-editor
* License : GPL-2
  Programming Lang: Python
  Description : Editor for Impressive presentation tool

This is my personal project.

Impressive is a convenient presentation tool, but it must use command
line to launch and is very difficult to configure slides. I was asked by
a Impressive user to make this frontend, and they want to pack this
application to their educational distro (named EzGo) based on Ubuntu.

Thanks,
Yao Wei


-- 
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/20120820084406.10856.83600.report...@ossf-z600.iis.sinica.edu.tw



Re: Bug#684396: ITP: openrc -- alternative boot mechanism that manages the services, startup and shutdown of a host

2012-08-20 Thread Gergely Nagy
Charles Plessy ple...@debian.org writes:

 Le Sun, Aug 19, 2012 at 11:13:23PM +0200, Gergely Nagy a écrit :
 Michael Biebl bi...@debian.org writes:
 
  If those ports need a GR to silence any criticsm regarding those ports,
  then something is going seriously wrong.
 
 I've yet to see said criticism.

 In the absense of regression tests, we distribute thousands of packages that
 nobody knows if they work or not, because nobody ever used them.

That's not a criticism against the port, but a criticism against
packages not having tests. It is by no means the fault of the port that
packages are not properly tested, as that applies to every single one of
them.

 Then one day they happen to fail to build, or regression tests are implemented
 and crash, and suddenly the maintainer has to take care of development issues
 that are not supported upstream nor by the porters.

If neither upstream, nor porters care about a particular package, that
means there are very little use of having it on that port, and one
should consider changing the Architecture line to exclude the failing
port.

That's about a minute of work + an RM request for that port: another
minute or two. I don't think this is a bad thing, or something *any*
maintainer should find troublesome.

 We need to take this specialisation into account, be proud of what
 our ports bring to their users, and be more open-minded about ignoring
 combinations of softwares and architectures that were never designed
 to work together.

Indeed.

 There is a simple heuristic to detect such cases, it is when the only help a
 maintainer receives is guidance on how to ask for a login on the porter box 
 and
 fix the package himself.  If neither upstream, the users and the porters care,
 then we need to provide to the maintainer some ways to ignore issues without
 having to spend time on requesting architecture-specific archive
 removals, etc.

What's wrong with requesting arch-specific removals? It doesn't take a
lot of time, perhaps at the other end. But then, such removal requests
are - judging by a quick glimpse of bugs-dist - aren't all that common
to warrant special treatment of any kind.

-- 
|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/87fw7im0ag@luthien.mhp



Re: Bug#685186: IA64 (Itanium) Wheezy, ELILO installation failed, patch proposal

2012-08-20 Thread Steve McIntyre
Julien Cristau wrote:
On Sun, Aug 19, 2012 at 17:07:00 +0200, Stephan Schreiber wrote:

 The failed command is in debian/elilo.sh:
 
 fstype=vfat
 
 mount -t $fstype -o
 codepage=437,iocharset=iso8859-1,rw,noexec,umask=077$loop $boot
 $TMP/bootstrap.$$
 what is perfect to mount an EFI system partition - much better than UTF-8.
 
 A mount -t vfat -o codepage=437,iocharset=iso8859-1 needs the kernel
 modules nls_iso8859-1, nls_cp437, vfat, fat.
 
 I ran the installer again. After the ELILO error message I tried
 lsmod
 on the shell; the most importand lines that it reported were:
 nls_cp437
 vfat
 fat
 nls_utf8
 
 The nls_iso8859-1 module was not loaded.
 
 The existing fat-modules-3.2.0-3-itanium-di.udeb includes the
 following modules:
 nls_utf8.ko
 nls_cp437.ko
 fat.ko
 vfat.ko
 
 There isn't a nls_iso8859-1.ko.
 

 bwh 'iocharset=iso8859-1' is a bug; Linux standard character encoding
   is UTF-8
 bwh for filenames, at least
 bwh So, assign to whatever contains the debian/elilo.sh script

So reassigning to elilo.

Ah, OK. I saw this while getting elilo to work for amd64/efi too, and
assumed it was working ok on ia64. :-)

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
Google-bait:   http://www.debian.org/CD/free-linux-cd
  Debian does NOT ship free CDs. Please do NOT contact the mailing
  lists asking us to send them to you.


-- 
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/e1t3p4u-0003u7...@mail.einval.com



Re: can we (fully) release-goal decommissioning of trolls

2012-08-20 Thread Josselin Mouette
Le dimanche 19 août 2012 à 19:26 +0200, Christoph Anton Mitterer a
écrit : 
 1) In parts it has some security issues.
 - At least the default setting seems to be that any user can connect to
 any network.

This is untrue. Any *physically logged on* user can connect to any
network. For a desktop system this is clearly a reasonable default, and
it can be modified through PolicyKit.

 - At least the network connections from /etc/network/interfaces are
 exported to the normal user, even if that user cannot read that file.

This is also untrue. By default NM does not look at all at /e/n/i.

 2) NM's design seems to be wrong.
 AFAIU (I didn't look into too much depth, though), NM is based on the
 design idea, that it replaces all network management and configuration
 from the respective distros.

This is a reasonable choice, given that most distros have very basic or
nonexistent network configuration (/etc/sysconfig/network-scripts
hahaha) and those who have a decent one were not designed for high level
integration.

 So when NM brings up a connection, it does not simply invoke some e.g.
 ifscheme wlan0-myHomeNet
 ifup wlan0
 but directly invokes wpa_supplicant.
 
 That's IMHO quite awful, as you loose all the proper integration of
 ifupdown by gaining nothing.

Because storing passphrases in the keyring is “nothing”. Because having
per-user networking priorities is “nothing”. (The list could be very
long.)

 Moreover it complicates the code, as now NM needs to come with its
 own /e/n/interfaces parsers (which will everytime the something changes
 there)

Mostly irrelevant. They are disabled by default because doing so is
broken by design.

 In my opinion, NM should:
 - export any connections from the real canonical places
 (e.g. /etc/network/interfaces, /etc/vpnc/*, /etc/ppp/peers/*
 and /etc/chatscripts/*, /etc/ipsec.conf and /etc/ipsec.d/*, etc. pp.)

No.

 - only if a user doesn't find something there, a per user connection
 configuration should be set up.

Only interfaces not already managed by /e/n/i are started up by NM. How
is what you propose better?

 - I know, NM supports system wide configuration, too, but IMHO that
 should be dropped altogether and NM should also not try to edit the real
 canonical configuration.

Yeah sure, let’s replace a proper and global system configuration that
you can setup with the same GUI as per-user configuration with a bunch
of parsers that will always fail to do one of the 200 things they have
to manage. Weren’t you the one complaining about broken parsers 10 lines
earlier?

Haven’t people learned ANYTHING about disasters such as webmin?

 3) ifupdown integration is really bad

Which is why it is disabled by default. Not that it hurts much.

 Well this is similar to (2).
 a) NM (AFAIU) doesn't really use ifupdown for controlling, it merely
 parses /etc/network/interfaces

Which is bad design, as you pointed out yourself. And which is why this
feature should remain DISABLED.

 b) barely nothing from /etc/network/interfaces is supported, some bugs
 I've noticed:
   - the dns-* options from resolvconf don't work at all
   - wireless connections aren't exported if wpa-key-mgmt is not set
 (which there should be no need to in many cases), and for WPA-EAP it
 seems to generally not work.
   - the same is the case with many advanced options (ap_scan, etc. pp.)

If you want to fix this broken set of features that is not enabled by
default, send patches.

 c) when NM is running, I cannot use ifup foo / ifdown foo / ifconfig
 parameters... well I can.. but then everything gets really messed up

So what? What actual problem does it cause?

 d) when I disable wireless in NM it really blocks it, so I can't use it
 with ifupdown. Now one can rfkill unblock then... but why? and even if
 one does...NM seems to get confused again.

Same question as c).

 4) upstream more or less doesn't want to support these scenarios...

Of course, because *as you pointed out yourself*, the idea of parsing
system configuration is stupid and leads to bugs.

 Already many months ago, I've opened a Debian bug, that some /e/n/i
 connections are simply not shown by NM.
 Given that this is actually an upstream issue, I've reported this (and
 most other problems I've mentioned before, especially the poor ifupdown
 integration but also the ideas about adding support for all the
 canonical configurations) upstream.
 I guess the conclusion is: this won't be implemented.
 
 It seems the desired scenario for NM is that /e/n/i is empty 

Yes. This is actually what happens on usual setups (one interface, DHCP
without any special options) upon NM installation.

 and
 everything is handled Apple™ like: hide-everything, don't support
 advanced setups.

Indeed it is not possible to support any combination of advanced setup
with a pre-defined set of configuration options accessible from a GUI.
Thank you, Captain Obvious.

 So,... at least I want to continue our wonderful ifupdown and also the
 other native tools (ppp, 

Re: Bug#684396: ITP: openrc -- alternative boot mechanism that manages the services, startup and shutdown of a host

2012-08-20 Thread Philipp Kern
On Mon, Aug 20, 2012 at 10:32:07AM +0200, Gergely Nagy wrote:
 If neither upstream, nor porters care about a particular package, that
 means there are very little use of having it on that port, and one
 should consider changing the Architecture line to exclude the failing
 port.
 
 That's about a minute of work + an RM request for that port: another
 minute or two. I don't think this is a bad thing, or something *any*
 maintainer should find troublesome.

That's untrue. An RM request might have far reaching consequences. It can mean
that another package gets uninstallable, which then requires editing its
Build-Dependency list if it can be built on the target architecture without it.
And that might trickle down to many packages. AFAIK that's basically the
approach the GNOME maintainers use and it means that despite the package not
being tested (and possibly used) at all on those architectures, you need to
carry on a lot of excludes for that port and possibly cripple the platform.

Of course, if GNOME is unused one could just remove it completely from those
ports, but I doubt that your approach of it's just a minute of work to RM it
is welcomed. (Well, the maintainers would probably like it, as long as there
won't be bugs claiming that you have to support that port because it's a Debian
port in testing.)

Kind regards
Philipp Kern


signature.asc
Description: Digital signature


Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Chris Knadle
On Monday, August 20, 2012 03:29:05, Stephan Seitz wrote:
 On Sun, Aug 19, 2012 at 07:59:00PM -0400, Chris Knadle wrote:
 Related note: I likewise repeatedly have confusion over how to deal with
 testing Network Status from within shell scripts for doing operations that
 require network access.  As a for instance a common suggestion for
 keeping GPG keys up to date is to set a 'gpg --referesh-keys' operation
 as a cron job, which doesn't make sense to do if the device the script is
 run on is offline,
 
 And how do you want to do this check? Even if ethtool says, the interface
 is up, this doesn’t mean, your DSL router has a WAN connection running.
 And if it has, it doesn’t mean you can reach the keyserver.
 
 So you can use something like „fping -q keyserver”, if the keyserver is
 pingeable. Any other check is not really usefull.

Basically you've got the idea of what I'm doing.

~/bin/gpg-refresher
---
# (this setting pulled in from a config file)
PING_LOCATION=www.yahoo.com  #(actual location should = keyserver location)
#
ping -c 3 $PING_LOCATION  /dev/null
if [ $? -ne 0 ]; then
  exit
fi
gpg --refresh-keys -o - 21 | fgrep -v -e requesting key \
  -e  not changed -e Total number processed:  -e  unchanged:  \
  -e  keys processed so far -e  next trustdb check due at \
  | egrep -v -e refreshing .* keys from  \
  -e key .* not found on keyserver \
  -e ^gpg: depth: .* -e  trust model$


  -- Chris

--
Chris Knadle
chris.kna...@coredump.us
GPG Key: 4096R/0x1E759A726A9FDD74


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


Re: Bug#684396: ITP: openrc -- alternative boot mechanism that manages the services, startup and shutdown of a host

2012-08-20 Thread Josselin Mouette
Le samedi 18 août 2012 à 17:40 +0200, Marc Haber a écrit : 
 On Fri, 10 Aug 2012 00:50:43 +0200, Josselin Mouette j...@debian.org
 wrote:
 Please explain again why we should cripple the Linux port for the sake
 of toy ports?
 
 Because Debian prides itself in being Universal regarding ports and
 architectures. It is a real pity that we still have members who didn't
 understand this.

Silly me. I thought Debian prided itself in being universal regarding
usage. Of course we should prioritize universality in terms of technical
details, not in terms of being useful. I stand corrected.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-


--
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/1345459275.5401.33.camel@tomoyo



Re: choice in core infrastructure decisions (Re: Bug#684396: ITP: openrc -- alternative boot mechanism)

2012-08-20 Thread Josselin Mouette
Le samedi 11 août 2012 à 15:38 -0400, Chris Knadle a écrit : 
 systemd may seem better in /most/ cases because it does have some nice 
 features, but I don't think it's better in *all* cases.  systemd doesn't 
 allow 
 shutdown/reboot from within KDE4

In the beginning, ConsoleKit didn’t allow shutdown/reboot from within
KDE4.

Maybe one of the KDE maintainers will remind us how many lines did the
patch measure, but ISTR it’s less than 10.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-


--
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/1345459472.5401.34.camel@tomoyo



Re: Enabling uupdate to simply remove files from upstream source

2012-08-20 Thread James McCoy
On Mon, Aug 20, 2012 at 09:39:34AM +0200, Andreas Tille wrote:
 On Mon, Aug 20, 2012 at 12:10:19AM +0200, gregor herrmann wrote:
  Next guess:
  
  Dpkg::Control::Hash - parse and manipulate a block of RFC822-like fields
  (libdpkg-perl)
 
 How would you compare this to Jonas solution using
 
   use Parse::DebControl;

Using Dpkg::Control::Hash would be preferable since we're already using
that library in devscripts.

Cheers,
-- 
James
GPG Key: 4096R/331BA3DB 2011-12-05 James McCoy james...@debian.org


signature.asc
Description: Digital signature


Re: Enabling uupdate to simply remove files from upstream source

2012-08-20 Thread Andreas Tille
On Mon, Aug 20, 2012 at 07:03:58AM -0400, James McCoy wrote:
 On Mon, Aug 20, 2012 at 09:39:34AM +0200, Andreas Tille wrote:
  On Mon, Aug 20, 2012 at 12:10:19AM +0200, gregor herrmann wrote:
   Next guess:
   
   Dpkg::Control::Hash - parse and manipulate a block of RFC822-like fields
   (libdpkg-perl)
  
  How would you compare this to Jonas solution using
  
use Parse::DebControl;
 
 Using Dpkg::Control::Hash would be preferable since we're already using
 that library in devscripts.

This would be an argument but if I do in the source of devscripts

$ find . -type f -exec grep -H Dpkg::Control \{\} \;
./debian/changelog:+ Parse dpkg's status file using Dpkg::Control.
./Devscripts/PackageDeps.pm:use Dpkg::Control;
./Devscripts/PackageDeps.pm:while (defined($ctrl = Dpkg::Control-new(type 
= CTRL_FILE_STATUS))
./Devscripts/Packages.pm:use Dpkg::Control;
./Devscripts/Packages.pm:while (defined($ctrl = Dpkg::Control-new())
./Devscripts/Packages.pm:while (defined($ctrl = Dpkg::Control-new(type = 
CTRL_FILE_STATUS))
./scripts/debi.pl:use Dpkg::Control;
./scripts/debi.pl:my $ctrl = Dpkg::Control-new(name = $changes, type = 
CTRL_FILE_CHANGES);
./scripts/mk-build-deps.pl:use Dpkg::Control;
./scripts/mk-build-deps.pl: my $ctrl = Dpkg::Control-new(allow_pgp = 1, 
type = CTRL_UNKNOWN);
$ find . -type f -exec grep -H Parse::DebControl \{\} \;
./scripts/debchange.pl: require Parse::DebControl;
./scripts/debchange.pl: $lpdc_broken=couldn't load Parse::DebControl: $@;
./scripts/debchange.pl: my $parser = Parse::DebControl-new;
./scripts/debchange.pl: my $parser = new Parse::DebControl;


both are used (admittedly the usage statistics Dpkg::Control vs
Parse::DebControl is 4:1).  May I asume that the intention of your
remark was that you want to get rid of Parse::DebControl inside
devscripts or was you just not aware of its usage.  I'm totally unbiased
because I did not used any of both - just want to make an educated
choice.

Kind regards

   Andreas.

-- 
http://fam-tille.de


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120820112253.ge19...@an3as.eu



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Bjørn Mork
Christoph Anton Mitterer cales...@scientia.net writes:
 On Sun, 2012-08-19 at 19:41 +0200, Marco d'Itri wrote:
 NM, as a design goal, is not supposed to be able to manage every 
 possible configuration.
 Well but then it shouldn't be kind of a default package.

No it shouldn't.  And it isn't either.  gnome-core is not default.

 And yes, I
 know, strictly speaking it's neither required nor essential.
 But as I mentioned before, more and more uses it... and one usually
 get's it already with gnome-core.

Except for GNOME, what other unrelated packages depends on NM?

The GNOME dependencies are deliberately broken to bring in as much cruft
as possible, but GNOME is neither required nor default so what's the
problem?  Why do you install gnome-core if you don't want the resulting
package mess?

 And to be honest, I don't think that it's impossible that NM would
 integrate well with ifupdown (and the others).

I believe it already does.  Any problems with this integration should be
reported as bugs.

Neither NM nor ifupdown is currently capable of dealing with every
possible networking setup (NM fails on complex static configurations,
ifupdown fails on dynamic stateful configurations).  And I expect this
is how it will be for the foreseeable future.  At least that's how I
understand the current scopes of those packages.

Debian need *both*, and any efforts in this area should be put into
making them interoperate.

Never mind wireless lan where you've got a well defined kernel API.  Try
to configure a modern 3G/LTE modem using ifupdown, and you will see the
usefulness of a framework like NM and it's companion ModemManager. Yes,
there are of course bugs and missing features. But let's fix them then.
NM upstream is very active and easy to co-operate with.

And before someone asks: There won't be any standard wireless
extensions for wan connections. That sort of thing is just not
considered appropriate for the kernel anymore. Drivers export the device
native control channel(s), and leave the rest of the job for userspace
libraries.  This means that you will need something like ModemManager,
oFono or similar to provide a common device independent application
interface.


Bjørn


--
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/871uj1kegq@nemi.mork.no



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Stephan Seitz

On Mon, Aug 20, 2012 at 01:08:53PM +0200, Bjørn Mork wrote:

Never mind wireless lan where you've got a well defined kernel API.  Try
to configure a modern 3G/LTE modem using ifupdown, and you will see the


Is this something different from an UMTS usbstick? I plug it in, get 
a /dev/ttypUSB0 and do a „pon umts”. No need for NM and Co.


Stephan

--
| Stephan Seitz  E-Mail: s...@fsing.rootsland.net |
| Public Keys: http://fsing.rootsland.net/~stse/keys.html |


smime.p7s
Description: S/MIME cryptographic signature


Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Marco d'Itri
On Aug 20, Stephan Seitz stse+deb...@fsing.rootsland.net wrote:

 On Mon, Aug 20, 2012 at 01:08:53PM +0200, Bjørn Mork wrote:
 Never mind wireless lan where you've got a well defined kernel API.  Try
 to configure a modern 3G/LTE modem using ifupdown, and you will see the
 Is this something different from an UMTS usbstick? I plug it in, get
Often they are, you can learn way more than you ever wanted to know 
about this by quickly looking at the modemmanager sources. Next?  
-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Steven Chamberlain
On 20/08/12 08:02, Wouter Verhelst wrote:
 On Sun, Aug 19, 2012 at 11:17:26AM +0900, Charles Plessy wrote:
  - In Squeeze, using default configurations, files with .php in their name
such as foo.php.jpeg are executed as PHP scripts by the Apache web 
 servers
runing PHP scripts through php5-cgi.
 
 Maybe that's because it's expected they would be PHP scripts emitting
 JPEG files, not plain JPEG files? This seems like a feature to me, not a
 bug. Why was support for that removed?

Yes it's possible some people rely on that behaviour, e.g. serving JPEG
data from PHP scripts named like foo.php.jpeg.

But some sites accept file uploads with arbitrary names, perhaps
expected to be a JPEG image, but actually named bar.php.jpeg and
containing malicious server-side PHP which they could execute from the
browser.

If that behaviour is changed, then where the PHP preprocessor was
previously invoked because of the detected MIME type, it would now serve
up the source code instead (leading to information disclosure).

I imagine the 'safest' way to handle this is to preserve the original
behaviour, still recognising *.php* as PHP scripts, but deny access to
(through ACLs or a dummy handler) files containing .php. in their
name, unless the filename actually ends in .php

/If/ that could work, it would limit any disruption to the two cases
where it might be a security issue.

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
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/50322951.30...@pyro.eu.org



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Bjørn Mork
Stephan Seitz stse+deb...@fsing.rootsland.net writes:
 On Mon, Aug 20, 2012 at 01:08:53PM +0200, Bjørn Mork wrote:
Never mind wireless lan where you've got a well defined kernel API.  Try
to configure a modern 3G/LTE modem using ifupdown, and you will see the

 Is this something different from an UMTS usbstick?

No.

 I plug it in, get a
 /dev/ttypUSB0 and do a „pon umts”. No need for NM and Co.

Sure. But you didn't actually configure the device here, did you?  And
you didn't notice that the device fell back from LTE to UTMS.  Or that
it suddenly started roaming to the network on the other side of the
border. Etc.

You didn't even notice that the connection failed because the PIN code
was wrong.  Or did you?  OK, then your chat script has started looking
like a small ModemManager application...

Oh, yeah, and of course /dev/ttyUSB0 wasn't the AT port.  It was the
QCDM port so the chat script just timed out.

The connections provided by these devices are dynamic by nature, and
they typically have management protocols supporting notifications from
device to host.  You may of course ignore this and state that the device
works in a static configuration, but most users will want some
monitoring daemon allowing them to make intelligent decisions based on
current available devices and networks.  A little like what
wpa_supplicant does for wireless LANs. That's what ModemManager
provides.

But yes, if „pon umts” is enough for you then you don't need NM (or even
ifupdown - pppd and vim will do).

By modern 3G/LTE modem I mean a device supporting CDC MBIM or a vendor
specific management protocol like QMI.  The firmware of most of these
devices will export a basic AT command set and support PPP on one or
more serial ports, but that only supports a very limited usage pattern
IMHO.  And when it comes to LTE, also limited speed.  Some vendors
implement AT commands for initiating NDIS connections, but these are
exceptions and are likely to go away over time as more and more devices
get a intented for Windows 8 label or somthing like that.  And it
didn't work with your pon in any case.


Bjørn


--
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/87pq6liwmw@nemi.mork.no



Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Ondřej Surý
Hi all,

[multiple messages from d-d and d-r merged together]

 I am also concerned that a *simple* solution to restore the old
 behaviour in a secure way is not provided: maybe php5-cgi should install
 a sensible default configuration in /etc/apache2/conf.d/ ?

I have prepared new update for PHP based on comments from d-d. The
commit is here:

http://anonscm.debian.org/gitweb/?p=pkg-php/php.git;a=commit;h=72eef08994f65b227103509617652d7c0bf0587a

To sum the changes:

- create dummy php5_cgi module, which has the required configuration inside
- enable this module if upgrading from anything older than 5.4.4-5
- the module is not enabled on fresh installs (user has to enable it manually)
- update NEWS.Debian to:

php5 (5.4.4-5) unstable; urgency=low

 Please be aware that the mime-types package dropped non-standard
 definitions for PHP that might affect any systems using PHP 5 running
 as CGI or FastCGI.  Following definitions were dropped:

  application/x-httpd-phpphtml pht php
  application/x-httpd-php-source phps
  application/x-httpd-php3   php3
  application/x-httpd-php3-preprocessed  php3p
  application/x-httpd-php4   php4
  application/x-httpd-php5   php5

 The php5-cgi package mitigates any known issues by creating a (dummy)
 apache2 module php5_cgi with a configuration containing handlers for
 all previously defined extensions.  Even though we believe that this
 configuration should keep your PHP scripts interpreted, it might be a
 good idea to check your apache2 site-wide configuration and also any
 specific PHP configuration for websites running on your system.

 As far as we know definitions from the mime-types packages are not
 used in any other webserver included in Debian, but it might affect
 any application which relies on system MIME types to interpret PHP
 files.

 -- Ondřej Surý ond...@debian.org  Wed, 15 Aug 2012 10:31:31 +0200

- Update the README.Debian to match current state.

I will upload this change as part of 5.4.6-1 upload to Debian experimental
and if everything is ok, I'll merge it back to 5.4.4-5 targeted to
unstable-testing.

 As far as the mime-support package is concerned, I think that we reached the
 consensus that we will not add the entries back, and that the consequences 
 will
 be documented in the php5-cgi package's NEWS file and in the release notes.

I agree on that, even though I think that PHP should have it's own
mimetype definition (same as python or perl, e.g. application/x-php,
but let's keep this discussion out of this issue, since it's something
different).

 I guess we could consider that for a very specific, low-popcon package.
 But knowingly interrupting upgrades for a well-known problem, on a very
 high number of systems? I'm not sure that's appropriate. Quite the
 opposite, actually.

I believe that update that I just did should solve any backwards
compatibility issues. (Crossed fingers... have to do thourough testing
first, I tend to make mistakes from time to time.)

 Many of the users of php5-cgi will be doing so because they are using other
 web servers. The discussion in #674089 seems to mainly revolve around
 Apache. How does this affect other web servers?

I am not aware of any other (Debian shipped) web server which uses
system-wide mime-types.  At least both nginx and lighttpd don't depend
on system mime types for interpreting PHP files (both use extension
based definitions).

  - In Squeeze, using default configurations, files with .php in their name
such as foo.php.jpeg are executed as PHP scripts by the Apache web 
 servers
runing PHP scripts through php5-cgi.

Charles, did you test that or you base that claim on Christoph's
mails?  I have just tested both php5-cgi in standard configuration as
recommended in README.Debian and this claim doesn't seem to be true:

$ wget -q -O - http://localhost:8080/index.php
bar
$ wget -q -O - http://localhost:8080/index.php.jpeg
?php echo 'foo'; ?

Also Apache2 documentation is very clear on that issue:
See http://httpd.apache.org/docs/2.2/mod/mod_mime.html#multipleext

 If more than one extension is given that maps onto the same type of 
 meta-information, then the one to the right will be used, except for 
 languages and content encodings. For example, if .gif maps to the MIME-type 
 image/gif and .html maps to the MIME-type text/html, then the file 
 welcome.gif.html will be associated with the MIME-type text/html.

However there could be a problem when you use MIME-type and handler
together (which we *don't* use):

 Care should be taken when a file with multiple extensions gets associated 
 with both a MIME-type and a handler. This will usually result in the request 
 being handled by the module associated with the handler.

 Maybe that's because it's expected they would be PHP scripts emitting
 JPEG files, not plain JPEG files? This seems like a feature to me, not a
 bug. Why was 

Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Jon Dowland
On Mon, Aug 20, 2012 at 12:58:42AM +0200, Christoph Anton Mitterer wrote:
 But if anyone would lobby that (release goal: default to CGI/FCGI),
 they'd have definitely my support :)

A bit late for wheezy, do you mean for +1?


-- 
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/20120820130646.GA28685@debian



Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Charles Plessy
Le Mon, Aug 20, 2012 at 02:57:10PM +0200, Ondřej Surý a écrit :
 
 I have prepared new update for PHP based on comments from d-d. The
 commit is here:
 
 http://anonscm.debian.org/gitweb/?p=pkg-php/php.git;a=commit;h=72eef08994f65b227103509617652d7c0bf0587a

Hi Ondřej,

many thanks for this work.

 Charles, did you test that or you base that claim on Christoph's
 mails?  I have just tested both php5-cgi in standard configuration as
 recommended in README.Debian and this claim doesn't seem to be true:
 
 $ wget -q -O - http://localhost:8080/index.php
 bar
 $ wget -q -O - http://localhost:8080/index.php.jpeg
 ?php echo 'foo'; ?

I did not test, and was trusting from http://bugs.debian.org/589384, which
requested the removal of the PHP media types for Wheezy, that the problem was
still present in some configurations.

Good to see that we are heading towards a solution anyway.

What shall I do with #674089 ?  I can reassign it to php5-cgi so that your next
upload closes it, or do we still need release notes ?

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/20120820133509.gb6...@falafel.plessy.net



Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Wouter Verhelst
On Mon, Aug 20, 2012 at 01:10:57PM +0100, Steven Chamberlain wrote:
 On 20/08/12 08:02, Wouter Verhelst wrote:
  On Sun, Aug 19, 2012 at 11:17:26AM +0900, Charles Plessy wrote:
   - In Squeeze, using default configurations, files with .php in their 
  name
 such as foo.php.jpeg are executed as PHP scripts by the Apache web 
  servers
 runing PHP scripts through php5-cgi.
  
  Maybe that's because it's expected they would be PHP scripts emitting
  JPEG files, not plain JPEG files? This seems like a feature to me, not a
  bug. Why was support for that removed?
 
 Yes it's possible some people rely on that behaviour, e.g. serving JPEG
 data from PHP scripts named like foo.php.jpeg.
 
 But some sites accept file uploads with arbitrary names, perhaps
 expected to be a JPEG image, but actually named bar.php.jpeg and
 containing malicious server-side PHP which they could execute from the
 browser.

Don't Do That Then(TM).

There are APIs for many server-side languages, including PHP, that allow
you to generate a filename for something a user uploads. If you rely on
the name as specified by a user, you not only invite this kind of
problems, but also directory traversals and similar things. Scripts not
using those APIs are buggy scripts, plain and simple. Fixing those bugs
should happen in the script, not by mucking about with the default
webserver configuration.

The right solution to this problem is instead to write your upload
scripts so that they
- Store uploads in a directory which is served by the webserver, but
  without allowing any kind of script execution (i.e., Options
  -ExecCGI and similar things for other scripting environments and/or
  webservers)
- Use a server-generated filename, and throw away whatever the user
  sent. If you do still need the user-specified filename for some weird
  reason, then store it in a database.

Alternatively, you could only allow trusted users to upload files (but
obviously, that isn't always a solution).

Writing secure code for the web is hard; fixing that isn't really
possible. Now if some change were to make it possible to improve
security without unnecessarily impacting things that actually matter,
then I'd be all for it. But in this case, I'm not sure the benefits
outweigh the costs.

[...]
-- 
The volume of a pizza of thickness a and radius z can be described by
the following formula:

pi zz a


-- 
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/20120820133551.gb7...@grep.be



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread martin f krafft
also sprach Paul Wise p...@debian.org [2012.08.20.0154 +0200]:
 Please take over the netconf project and start implementing that
 design in C,

Or get it working properly with Python, make use of the simplicity
of interpreted languages until the design is actually proven to
work, and then rewrite it…

-- 
 .''`.   martin f. krafft madduck@d.o  Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems
 
quantum mechanics: the dreams stuff is made of.


digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/sig-policy/999bbcc4/current)


Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Ondřej Surý
On Mon, Aug 20, 2012 at 3:35 PM, Charles Plessy ple...@debian.org wrote:
 Charles, did you test that or you base that claim on Christoph's
 mails?  I have just tested both php5-cgi in standard configuration as
 recommended in README.Debian and this claim doesn't seem to be true:

 $ wget -q -O - http://localhost:8080/index.php
 bar
 $ wget -q -O - http://localhost:8080/index.php.jpeg
 ?php echo 'foo'; ?

 I did not test, and was trusting from http://bugs.debian.org/589384, which
 requested the removal of the PHP media types for Wheezy, that the problem was
 still present in some configurations.

Ah, I see; it gets executed when there is no know handler or mime-type
for second extension.

E.g. index.php.jpeg works as expected (e.g. returning PHP source
code), index.php.blubb but gets executed. I don't think there's any
harm in disabling php.foobar and php.blubb files.

 Good to see that we are heading towards a solution anyway.

 What shall I do with #674089 ?  I can reassign it to php5-cgi so that your 
 next
 upload closes it, or do we still need release notes ?

I think we still might need release notes, but it needs to be updated
based on final impact of changes we have done. I am not sure if the
information about filename.php.unknown-mime-type is worth release
notes or just NEWS file in PHP. My guess would be latter, but opinions
may vary.

Also I am not happy that we make these changes so late in release
cycle, but I guess we now have to find a way how to cope with them and
still make release team happy. I think the changes I have done are
least intrusive, but again opinions may vary.

O.
-- 
Ondřej Surý ond...@sury.org


--
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/caljhhg8dd+nv2uvgjbvrtubdna3m+o1afo0bqylyfpqkhuj...@mail.gmail.com



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Ben Hutchings
On Mon, 2012-08-20 at 00:04 +0200, Andrew Shadura wrote:
 Hello,
 
 On Sun, 19 Aug 2012 19:32:03 +0100
 Ben Hutchings b...@decadent.org.uk wrote:
 
   3) ifupdown integration is really bad
   ifupdown is really a good framework, it offers hooks and and is
   properly integrated in many packages.
 
  ifupdown *was* a good framework, but Linux moved on.  ifupdown doesn't
  know anything about interface state.
 
 Why should it? It's a configuration tool, not a monitoring one. If
 monitoring is needed, a different tool can be developed which would
 perfectly integrate into ifupdown... but nobody has needed that yet?
[...]

What I mean is that this still happens:

# ifup eth0
...
# ifconfig eth0 down
# ifup eth0
ifup: interface eth0 already configured

People talk about how ifupdown works well with other configuration
tools, unlike Network Manager.  But it doesn't, it only knows how to
undo the configuration specified in /etc/network/interfaces.

Ben.

-- 
Ben Hutchings
The most exhausting thing in life is being insincere. - Anne Morrow Lindberg


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


Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Steven Chamberlain
On 20/08/12 14:35, Wouter Verhelst wrote:
 On Mon, Aug 20, 2012 at 01:10:57PM +0100, Steven Chamberlain wrote:
 Yes it's possible some people rely on that behaviour, e.g. serving JPEG
 data from PHP scripts named like foo.php.jpeg.

Sorry, I was wrong.  For extensions like .jpeg with a known MIME type it
does not work.  So, people are unlikely to be relying on this effect.

http://lists.debian.org/caljhhg8dd+nv2uvgjbvrtubdna3m+o1afo0bqylyfpqkhuj...@mail.gmail.com


 But some sites accept file uploads with arbitrary names, [...]
 
 Don't Do That Then(TM).

Yes I very much agree...

 [...] write your upload scripts so that they
 - Store uploads in a directory which is served by the webserver, but
   without allowing any kind of script execution (i.e., Options
   -ExecCGI and similar things for other scripting environments and/or
   webservers)

I believe -ExecCGI would work for php5-cgi but not for
libapache2-mod-php5 (whose handler relies on MIME types).  To protect
against that, I notice our drupal6 packages create an .htaccess file in
the file uploads directory, with:

 SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006

(Advisory is at https://drupal.org/files/sa-2006-006/advisory.txt )

That also shows what a persistent problem this has been in the LAMP
webserver stack for many years.  I really hope FastCGI/FPM is an
opportunity to put this right, among other things.

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org


-- 
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/503245be.8040...@pyro.eu.org



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Mike Hommey
On Mon, Aug 20, 2012 at 02:51:27PM +0100, Ben Hutchings wrote:
 What I mean is that this still happens:
 
 # ifup eth0
 ...
 # ifconfig eth0 down
 # ifup eth0
 ifup: interface eth0 already configured
 
 People talk about how ifupdown works well with other configuration
 tools, unlike Network Manager.  But it doesn't, it only knows how to
 undo the configuration specified in /etc/network/interfaces.

ifupdown should be the only way to configure network interfaces. Debian
should get rid of NM, ifconfig, ip, and all the other heretic programs
that break ifupdown.

Mike


-- 
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/20120820142118.ga22...@glandium.org



Re: choice in core infrastructure decisions (Re: Bug#684396: ITP: openrc -- alternative boot mechanism)

2012-08-20 Thread Adam Borowski
On Mon, Aug 20, 2012 at 12:44:32PM +0200, Josselin Mouette wrote:
 Le samedi 11 août 2012 à 15:38 -0400, Chris Knadle a écrit : 
  systemd may seem better in /most/ cases because it does have some nice 
  features, but I don't think it's better in *all* cases.  systemd doesn't 
  allow 
  shutdown/reboot from within KDE4
 
 In the beginning, ConsoleKit didn’t allow shutdown/reboot from within
 KDE4.
 
 Maybe one of the KDE maintainers will remind us how many lines did the
 patch measure, but ISTR it’s less than 10.

The version in wheezy is crawling with race conditions that make
shutdown/reboot attempts randomly fail, seemingly on any desktop environment
(I reproduced this on Gnome 3, XFCE, Mate, didn't try KDE).  The fail
message claims shutdown is not allowed because multiple users are logged in.

I investigated the problem, and it turns out it would be pretty hard to fix,
certainly not in a matter of 10 lines.  Currently, a shutdown/reboot
sequence:
* sends signals to your processes in the session (tty ones get SIGHUP)
* sends a request over dbus to consolekit
* if any process in the session is setuid/setgid and still alive, consolekit
  responds with a failure
* a window asking for root's password is spawned; cancelling it will spawn
  ANOTHER message box claiming shutdown is not allowed (which was already
  mentioned in the root password question)

I see no obvious way to fix this -- merely waiting a bit longer is not going
to help as there's no bound on how long processes take to die on a
sufficiently loaded system[1].  And you can't tell a process that merely
takes some time to die from one like wget that handles the signal and
continues.  One idea would be to display the authentication box but keep
repeatedly requesting shutdown while the box is up.


[1]. Especially ex-Windows users assume that a on a barely responsive
system, a shutdown attempt is more likely to succeed than trying to find and
kill the offender; in a GUI and for non-technical users that's not entirely
without merit.  And then, the shutdown attempt will be hit by this race.

-- 
Copyright and patents were never about promoting culture and innovations;
from the very start they were legalized bribes to give the king some income
and to let businesses get rid of competition.  For some history, please read
https://en.wikipedia.org/wiki/Statute_of_Monopolies_1623


signature.asc
Description: Digital signature


Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Bernd Zeimetz
On 08/20/2012 01:54 AM, Paul Wise wrote:
 Please take over the netconf project and start implementing that
 design in C, that would be much more productive than any new thread
 about the current and previous deficiencies of NetworkManager.

Or just file bugs against ifupdown, the (new) upstream seems to be
pretty active these days.

-- 
 Bernd ZeimetzDebian GNU/Linux Developer
 http://bzed.dehttp://www.debian.org
 GPG Fingerprint: ECA1 E3F2 8E11 2432 D485  DD95 EB36 171A 6FF9 435F


-- 
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/503259b9.1040...@bzed.de



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Ben Hutchings
On Mon, Aug 20, 2012 at 04:21:18PM +0200, Mike Hommey wrote:
 On Mon, Aug 20, 2012 at 02:51:27PM +0100, Ben Hutchings wrote:
  What I mean is that this still happens:
  
  # ifup eth0
  ...
  # ifconfig eth0 down
  # ifup eth0
  ifup: interface eth0 already configured
  
  People talk about how ifupdown works well with other configuration
  tools, unlike Network Manager.  But it doesn't, it only knows how to
  undo the configuration specified in /etc/network/interfaces.
 
 ifupdown should be the only way to configure network interfaces. Debian
 should get rid of NM, ifconfig, ip, and all the other heretic programs
 that break ifupdown.

Unfortunately they are needed by ifupdown itself.  So instead we need
to have a mechanism in the kernel to refuse network configuration
that's not done by a child process of ifupdown.  Then you will have
to put all network configuration in ifupdown hook scripts.  Routing
daemons will not be supported, but they only cause confusion anyway.

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/20120820155253.gf29...@decadent.org.uk



Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Marco d'Itri
On Aug 20, Wouter Verhelst w...@uter.be wrote:

  But some sites accept file uploads with arbitrary names, perhaps
  expected to be a JPEG image, but actually named bar.php.jpeg and
  containing malicious server-side PHP which they could execute from the
  browser.
 Don't Do That Then(TM).
I see that you are not in the web hosting business. g
Millions of web sites do this, so now matter how a bad practice this is 
(and I agree that it is) we need to do everything possible to work 
around insecure web sites.
Also, we are talking about PHP: if educating developers were possible, 
they would not use PHP in the first place.

 The right solution to this problem is instead to write your upload
 scripts so that they
True. But you do not dictate solutions to the 16 year old webmaster 
who happens to be the cousin of your customer.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#685421: ITP: xul-ext-fullscreen -- Fullscreen theme for iceweasel

2012-08-20 Thread Mike Gabriel
Package: wnpp
Severity: wishlist
Owner: Mike Gabriel mike.gabr...@das-netzwerkteam.de

* Package name: xul-ext-fullscreen
  Version : 1.0.4
  Upstream Author : Lewis Vail i...@technologyservicegroup.com
* URL : https://addons.mozilla.org/de/firefox/addon/fullscreen/
* License : MPL-1.1
  Programming Lang: Mozilla/XUL Extension/Theme
  Description : Fullscreen theme for iceweasel

This theme hides all menus and tool bars so that you are always in full screen
mode. It was designed for use on a touch screen kiosk and by its nature limits
user functionality. This theme is not recommended for standard desktop use as
it becomes very difficult to navigate the web with it.
.
If you happen to install this and want to remove or disable it,
press [CTR] + [Shift] + A to get to the Add-on page.


-- 
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/20120820175027.20701.25170.report...@minobo.das-netzwerkteam.de



Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Stefan Fritsch
On Monday 20 August 2012, Ondřej Surý wrote:
 Ah, I see; it gets executed when there is no know handler or
 mime-type for second extension.
 
 E.g. index.php.jpeg works as expected (e.g. returning PHP source
 code), index.php.blubb but gets executed. I don't think there's any
 harm in disabling php.foobar and php.blubb files.

There is also the case that the extensions after .php are known to 
Apache but are not associated with mime types or handlers. For 
example, there are extensions like .de and .en which cause the 
Content-Language header to be set, extensions for setting the charset 
(e.g. .utf8) and extensions for setting the content-encoding (none 
configured by default).

I don't know how often this is actually used together with php. 
Setting the Content-* headers in the php script seems saner to me.

  Good to see that we are heading towards a solution anyway.
  
  What shall I do with #674089 ?  I can reassign it to php5-cgi so
  that your next upload closes it, or do we still need release
  notes ?
 
 I think we still might need release notes, but it needs to be
 updated based on final impact of changes we have done. I am not
 sure if the information about filename.php.unknown-mime-type
 is worth release notes or just NEWS file in PHP. My guess would be
 latter, but opinions may vary.

Maybe add just a small paragraph that the configuration of the 
extensions has changed and php users should read the NEWS file?

Cheers,
Stefan


--
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/201208202012.47643...@debian.org



Re: Bug#684396: ITP: openrc -- alternative boot mechanism that manages the services, startup and shutdown of a host

2012-08-20 Thread Ben Hutchings
On Mon, Aug 20, 2012 at 12:41:15PM +0200, Josselin Mouette wrote:
 Le samedi 18 août 2012 à 17:40 +0200, Marc Haber a écrit : 
  On Fri, 10 Aug 2012 00:50:43 +0200, Josselin Mouette j...@debian.org
  wrote:
  Please explain again why we should cripple the Linux port for the sake
  of toy ports?
  
  Because Debian prides itself in being Universal regarding ports and
  architectures. It is a real pity that we still have members who didn't
  understand this.
 
 Silly me. I thought Debian prided itself in being universal regarding
 usage. Of course we should prioritize universality in terms of technical
 details, not in terms of being useful. I stand corrected.
 
Quite.  I tend to assume that most people working on Debian do so
either because it's fun or, less commonly, because they are paid to do
so (or sometimes both).  Some area of work that is intellectually or
materially rewarding for one developer may not be for others.

I don't think we should expect other developers to spend any large
amount of time to help with our own pet projects, except in so far as
they benefit 'our users and the free software community', which I take
to mean collective interests (i.e. numbers matter).  Right now, most
package maintainers can provide more benefit to more users by working
on bugs that affect x86, than by spending that same time investigating
even the most serious problems on some other architecture.  Of course
they should not stand in the way of porters and should be ready to
answer questions and apply reasonable patches.

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/20120820171257.gg29...@decadent.org.uk



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Noel David Torres Taño
Have you all minded that there are several *different* use cases?

* Laptop user going here and there, sometimes with Wireless, sometimes with 
cable, sometimes with USB stick
* Desktop user with home ADSL
* Server with several connections

Each use case has its own needs, and its own best tools.

No ifupdown nor NM will fit them all, ever.

Regards

Noel Torres
er Envite


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


Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Christoph Anton Mitterer
On Mon, 2012-08-20 at 09:02 +0200, Wouter Verhelst wrote:
 Maybe that's because it's expected they would be PHP scripts emitting
 JPEG files, not plain JPEG files? This seems like a feature to me, not a
 bug. Why was support for that removed?
I think that's really wrong style then...

Content generated by PHP files should have it's Content-Type header (and
others) set from within PHP.

The bug (which is a security problem) overweights the feature here,
IMHO.


Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Re: Minified javascript files

2012-08-20 Thread Vincent Bernat
 ❦ 20 août 2012 09:33 CEST, Thomas Goirand z...@debian.org :

 Other minifiers (like yui-compressor) are considered not
 reliable enough.
 Sorry that I asked you about this before reading this.

 So, could you tell in what way yui-compressor isn't considered
 not reliable enough? Does it crash? Or does it produce bad
 minified scripts? In which case: in what way bad?

It is not used anymore and is therefore less tested and less
trustworthy.

 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=679665
-- 
panic(Detected a card I can't drive - whoops\n);
2.2.16 /usr/src/linux/drivers/net/daynaport.c


pgp5Yi3ZboYYa.pgp
Description: PGP signature


Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Christoph Anton Mitterer
On Mon, 2012-08-20 at 14:06 +0100, Jon Dowland wrote:
 On Mon, Aug 20, 2012 at 12:58:42AM +0200, Christoph Anton Mitterer wrote:
  But if anyone would lobby that (release goal: default to CGI/FCGI),
  they'd have definitely my support :)
 A bit late for wheezy, do you mean for +1?
Yeah,... of course not for wheezy ;-)


Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Re: Enabling uupdate to simply remove files from upstream source

2012-08-20 Thread gregor herrmann
On Mon, 20 Aug 2012 09:39:34 +0200, Andreas Tille wrote:

  Dpkg::Control::Hash - parse and manipulate a block of RFC822-like fields
  (libdpkg-perl)
 How would you compare this to Jonas solution using
   use Parse::DebControl;
 ?

Not sure how official my use of Dpkg::Control::Hash is, so maybe
better stick to Jonas' proposal :)

Cheers,
gregor
 
-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT  SPI, fellow of the Free Software Foundation Europe
   `-   NP: Funny Van Dannen: Ich bin nicht mehr ping


signature.asc
Description: Digital signature


Re: Minified javascript files

2012-08-20 Thread Vincent Bernat
 ❦ 20 août 2012 09:31 CEST, Thomas Goirand z...@debian.org :

 I believe differences like that are not important, compare how gcc
 generate different binaries each time depending on parameters etc.
 However, if a minified file is shipped that cannot be re-created at all

 (due to no minifier) I don't think shipping source for the file is the
 only problem.  Both source code and the tools needed to generate output
 forms is needed for users to be able to use a modified version of the
 program.

 /Simon
   
 If it's that hard to produce a minified version, then shouldn't
 we use the normal version? How much speed-up do we really
 get anyway (my wild guess: not much...)?

See:

$ ls -lh jquery* 
-rw-r--r-- 1 bernat users 247K août  20 20:52 jquery.js
-rw-r--r-- 1 bernat users  81K août  20 20:52 jquery.js.gz
-rw-r--r-- 1 bernat users  93K août  20 20:53 jquery.min.js
-rw-r--r-- 1 bernat users  37K août  20 20:52 jquery.min.js.gz

A 44KB difference is pretty important for mobile users (which have poor
bandwidth and poor latency which makes bandwidth available at the
beginning of a TCP connection low).
-- 
Make sure your code does nothing gracefully.
- The Elements of Programming Style (Kernighan  Plauger)


pgpZw9FPcdckX.pgp
Description: PGP signature


Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Stephan Seitz

On Mon, Aug 20, 2012 at 02:19:19PM +0200, Bjørn Mork wrote:

Stephan Seitz stse+deb...@fsing.rootsland.net writes:

On Mon, Aug 20, 2012 at 01:08:53PM +0200, Bjørn Mork wrote:

Never mind wireless lan where you've got a well defined kernel API.  Try
to configure a modern 3G/LTE modem using ifupdown, and you will see the

Is this something different from an UMTS usbstick?

[Good explanation snipped]

Thank you very much.


But yes, if „pon umts” is enough for you then you don't need NM (or even
ifupdown - pppd and vim will do).


Right, that is enough for me. I use the UMTS stick only in the holidays 
about three weeks each year. And I’m glad I will get GPRS in the Austrian 
mountains. Different LED colours show me the kind of connection.


It seems I have to be careful if I have to buy a new one.

Stephan

--
| Stephan Seitz  E-Mail: s...@fsing.rootsland.net |
| Public Keys: http://fsing.rootsland.net/~stse/keys.html |


smime.p7s
Description: S/MIME cryptographic signature


Re: Possible release note for systems running PHP through CGI.

2012-08-20 Thread Christoph Anton Mitterer
Hi Ondřej.

On Mon, 2012-08-20 at 14:57 +0200, Ondřej Surý wrote:
 http://anonscm.debian.org/gitweb/?p=pkg-php/php.git;a=commit;h=72eef08994f65b227103509617652d7c0bf0587a
- You mention in the README.Debian now, that no other webserver likely used 
/etc/mime.types.
Wasn't there someone who meant lighthttp was also using it?

- I like the changes to the wording of the PHP 5 CGI and Apache HTTP
Server section.

- Where you write: add the mentioned configuration block to one or more
virtual sites. ... you may even refine that to add the mentioned
configuration block to one or more virtual hosts or directories.

- Where you write: It's advised to not mixmatch mod_php and php5-cgi
in the same is that intended, that php5-fpm is missing?


To the rules:
- They seem ok for a security point of view.
- When using FilesMatch, one can slightly optimise the subpatterns, by
placing ?: after the (, e.g.
.+\.ph(?:p[345]?|t|tml)$
- At the places where you Deny, one might perhaps add Satisfy All
again. It's All per default, but if one has set that to Any in main
server context, your deny-intention might geht ineffective again.


 I agree on that, even though I think that PHP should have it's own
 mimetype definition (same as python or perl, e.g. application/x-php,
 but let's keep this discussion out of this issue, since it's something
 different).
+1 on that.


 I am not aware of any other (Debian shipped) web server which uses
 system-wide mime-types.  At least both nginx and lighttpd don't depend
 on system mime types for interpreting PHP files (both use extension
 based definitions).
Ah ok,... so ignore my question from above... :)


  If more than one extension is given that maps onto the same type of
 meta-information, then the one to the right will be used, except for
 languages and content encodings. For example, if .gif maps to the
 MIME-type image/gif and .html maps to the MIME-type text/html, then
 the file welcome.gif.html will be associated with the MIME-type
 text/html.
Right, the others already pointed out in the meantime, what can
still happen.
I guess we should be largely safe of all this now.



Cheers,
Chris.


smime.p7s
Description: S/MIME cryptographic signature


Re: can we (fully) release-goal decommissioning of trolls

2012-08-20 Thread Stephan Seitz

On Mon, Aug 20, 2012 at 12:38:07PM +0200, Josselin Mouette wrote:

It seems the desired scenario for NM is that /e/n/i is empty

Yes. This is actually what happens on usual setups (one interface, DHCP
without any special options) upon NM installation.


Well, until some weeks ago I never had a desktop system (even at work) 
with DHCP, simply because the Linux system are developer systems with 
different VLAN interfaces. At home my systems have static IPs as well.



“wonderful” ifupdown… I guess some of us around here have other words to
describe it.


Maybe. For me NM was always a PITA, I always got better results with 
ifupdown. It is not perfect, certainly, but it works very well for me.



10 years ago, we had people complaining about ORBit. Then later they
complained about D-Bus and pmount. Recently it was about PulseAudio. Now


Well, Pulseaudio has its problems (you can ask the MythTV guys what they 
think of it). It never really worked for me with MythTV. And if you only 
have one audio device, chances are high that you don’t need it anyway.



they don’t want to see their precious 30-year-old systemv and ifconfig
crap replaced.


Well, if it isn’t broken, don’t fix it. There seem to be enough people 
who don’t have any problems with your „systemv and ifconfig crap”, no 
matter how old. And they are not interested in getting new buggy software 
for the core system by force.
So if you think, you need something new, fine, make it. But don’t break 
other people’s setup.



These people are the disease. They are toxic to the community and tend


Why, thank you. I think that these people are a disease who are always 
trying to drag down Linux to Windows level and are forcing their software 
crap on others, because they think it is so good that every one has to 
use it. And I would wish those people would go away to Windows. There 
they can play with shiny new software which doesn’t really work.


Stephan

--
| Stephan Seitz  E-Mail: s...@fsing.rootsland.net |
| Public Keys: http://fsing.rootsland.net/~stse/keys.html |


smime.p7s
Description: S/MIME cryptographic signature


Re: Bug#684396: ITP: openrc -- alternative boot mechanism that manages the services, startup and shutdown of a host

2012-08-20 Thread Russ Allbery
Philipp Kern pk...@debian.org writes:

 Of course, if GNOME is unused one could just remove it completely from
 those ports, but I doubt that your approach of it's just a minute of
 work to RM it is welcomed. (Well, the maintainers would probably like
 it, as long as there won't be bugs claiming that you have to support
 that port because it's a Debian port in testing.)

It probably works okay for the kind of packages that Charles is primarily
talking about, though (scientific computing packages written by scientists
rather than software developers that have probably never been run upstream
on a non-Intel processor and are usually leaf packages or, if not leaf,
only depended on by other packages with a similar profile).

We don't have a particularly good way of handling this situation right now
other than one-off work on each package that may need to be treated
unusually.  It's a bit difficult for the maintainer to determine the
implications for the dependency graph, and there isn't any good way to
exclude all packages in a particular class from a particular architecture.
We have some architectures where I really doubt that anyone is using them
for anything other than a server (s390, for instance), and (modulo cases
where it makes sense to run such software as part of a remote session on a
shared-user system) we don't have a good way of easily flagging local
desktop software that probably doesn't make a lot of sense in that
context.

That said, we do get value from porting that software to all
architectures, even if it's unlikely anyone would want to run it there.
Several of those architectures have unusual features that have later
turned up in mainstream architectures, and the earlier porting efforts
have given Debian a huge leg up.  For example, our 64-bit porting was
mostly already done by the time that amd64 became a popular architecture,
thanks to other architectures that people would have considered obscure.

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


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



Re: can we (fully) release-goal decommissioning of trolls

2012-08-20 Thread Josselin Mouette
Le lundi 20 août 2012 à 21:35 +0200, Stephan Seitz a écrit : 
 These people are the disease. They are toxic to the community and tend
 
 Why, thank you. I think that these people are a disease who are always 
 trying to drag down Linux to Windows level

Thanks for this excellent example of the behavior I described.  With
“down to Windows level” you must think you have hit the trigger of the
ultimate bazooka to shut people up, don’t you?

We’re no longer in 1995.  For some pieces of the system, “down to
Windows level” would be quite an improvement.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-


--
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/1345502867.5401.38.camel@tomoyo



Re: Bug#684396: ITP: openrc -- alternative boot mechanism that manages the services, startup and shutdown of a host

2012-08-20 Thread Josselin Mouette
Le lundi 20 août 2012 à 18:12 +0100, Ben Hutchings a écrit : 
 I don't think we should expect other developers to spend any large
 amount of time to help with our own pet projects, except in so far as
 they benefit 'our users and the free software community', which I take
 to mean collective interests (i.e. numbers matter).  Right now, most
 package maintainers can provide more benefit to more users by working
 on bugs that affect x86, than by spending that same time investigating
 even the most serious problems on some other architecture.  Of course
 they should not stand in the way of porters and should be ready to
 answer questions and apply reasonable patches.

I say amen to all of that.  Unfortunately, we’re soon reaching the point
where supporting some architectures will be way beyond “reasonable
patches”.

-- 
 .''`.  Josselin Mouette
: :' :
`. `'
  `-


--
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/1345503028.5401.40.camel@tomoyo



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Paul Wise
On Mon, 2012-08-20 at 09:18 +0200, martin f krafft wrote:

 Or get it working properly with Python, make use of the simplicity
 of interpreted languages until the design is actually proven to
 work, and then rewrite it…

Ah, I thought it was further along than that.

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Re: Enabling uupdate to simply remove files from upstream source

2012-08-20 Thread Guillem Jover
Hi!

On Mon, 2012-08-20 at 20:50:31 +0200, gregor herrmann wrote:
 On Mon, 20 Aug 2012 09:39:34 +0200, Andreas Tille wrote:
   Dpkg::Control::Hash - parse and manipulate a block of RFC822-like fields
   (libdpkg-perl)
  How would you compare this to Jonas solution using
use Parse::DebControl;
  ?
 
 Not sure how official my use of Dpkg::Control::Hash is, so maybe
 better stick to Jonas' proposal :)

That module is version = 1.00, so it's a stable and public interface
that can be used by third party code w/o worrying about backward
incompatibilities.

thanks,
guillem


-- 
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/20120821013758.ga13...@gaara.hadrons.org



Re: can we (fully) fix/integrate NetworkManager (preferred) or release-goal its decommissioning

2012-08-20 Thread Ben Hutchings
On Mon, 2012-08-20 at 02:07 +0200, Christoph Anton Mitterer wrote:
 Hey Ben.
 
 
 On Sun, 2012-08-19 at 19:32 +0100, Ben Hutchings wrote:
  To allow users to connect to the NetworkManager daemon they have to be in 
  the
  group netdev.
 Like Vincent already pointed out, CK allows it, too.

Oops, yes, good point.

 In principle nothing speaks generally against either of the two, but I
 guess both of them are just intended towards who is allowed to connect
 to networks; either by being member of the group, or by being locally
 logged on (CK).
 But when I e.g. put WPA credentials into /e/n/interfaces and made the
 file specifically readable by root and user foo only, then it still
 exports that connection to all other users (e.g. being logged on
 locally; at least per default).
 
 
  The capability to *use* credentials is separate from the capability to
  *read* the credentials.
 Well nevertheless, both can be dangerous already, can't it?

Of course.

 Even if it just allows me to use (i.e. connect to) some WLAN but not
 giving me the actual key, I might be able to access some resources
 there, that ought to be secure.

This is also true if you can run a process on the machine while that
WLAN connection is up.  Because the capability to use a network
connection that's already up is another thing again...

  (Also, the design choice to read credentials from a file that is world-
  readable by default is incredibly stupid, and you may wish to report
  bugs on the packages that do that.)
 I don't exactly understand what you mean :)

I'm saying that reading credentials from /etc/network/interfaces is
probably a bug.  In the 'bug' script for Linux kernel packages we have
this filter:

  # Hide passwords/keys
  awk '$1 ~ /key|pass|^wpa-(anonymous|identity|phase|pin|private|psk)/ { 
gsub(., *, $2); }
   $1 == ethtool-wol { gsub(., *, $3); }
   !/^[[:space:]]*\#/ { print; }
  ' /etc/network/interfaces 3

I can't remember quite how I came up with this list... I assume the
wpa-* fields were previously used by wpa_supplicant hooks, but that
doesn't seem to be the case any more.  wireless-tools still uses
wireless-key{1,2,3,4}.  For ethtool-wol (wake-on-LAN) there is an
optional 'SecureOn password' for Magic Packet mode.  This is a little
bit different from the others but I probably should still add the option
to read it from a separate file.

[...]
  ifupdown *was* a good framework, but Linux moved on.  ifupdown doesn't
  know anything about interface state.
 What exactly do you mean by state?

ifupdown records whether an interface has been brought up using a
particular configuration (referenced by name).  If you change the state
using anything other tool, it has no idea.  If the driver reports a
change of state, it doesn't react.  If you change or remove the
configuration, it doesn't even know how to bring the interface down
again!  (That last one should be fixable, by storing the configuration
along with the 'up' state file.)

Pretty much all it does is to run a pre-defined 'up' or 'down' sequence.
Even once it can reliably report failure, I suspect it won't know how to
roll back.

 But anyway,.. it doesn't seem as if it would go away anytime soon,...
 and NM is AFAICS surely not a powerful enough replacement.

Not yet, no.

  It doesn't know whether hooks
  succeeded and it can't check for failures because that would be an
  incompatible change (#547587).
 Sometimes one have to break compatibility ;-)

Yes, and I absolutely support this change.  It's just a shame that it's
taken such a long to be recognised as necessary.

[...]
  I would really like to see Debian developers working to improve Network
  Manager so it can replace ifupdown.  For example, improving the command
  line interface and support for various types of software devices.
  Unfortunately, I don't have the spare time to make much of a
  contribution to that myself.  (I do install ifupdown hooks as part of
  ethtool, so I'll have to think about those.)
 If all that ever happens,... fine (though I like ifupdown and personally
 don't see the need for replacing it),... but it's surely a long road to
 it and has the big disadvantage that we (Debian) are then more or
 less bound to what NM (and other distros) do.
 Sometimes it's good of course, having homogeneous frameworks across
 distros,... but this can also be bad.

By the same token, we should have our own kernel, C library, etc.

Ben.

-- 
Ben Hutchings
The most exhausting thing in life is being insincere. - Anne Morrow Lindberg


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


Re: can we (fully) release-goal decommissioning of trolls

2012-08-20 Thread Thomas Goirand
On 08/21/2012 06:47 AM, Josselin Mouette wrote:
 For some pieces of the system, “down to
 Windows level” would be quite an improvement.
   
Are you suggesting that we replace the start menu by a Sokoban game?

Sorry, couldn't resist... :)

Thomas


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



Accepted libregexp-grammars-perl 1.021-1 (source all)

2012-08-20 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 20 Aug 2012 08:21:01 +0200
Source: libregexp-grammars-perl
Binary: libregexp-grammars-perl
Architecture: source all
Version: 1.021-1
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description: 
 libregexp-grammars-perl - Perl module to add grammatical parsing features to 
Perl 5.10 rege
Changes: 
 libregexp-grammars-perl (1.021-1) unstable; urgency=low
 .
   * Imported Upstream version 1.021
Checksums-Sha1: 
 f1762a51f17b3f10ddf752e3088c084f30ac0dc0 2147 
libregexp-grammars-perl_1.021-1.dsc
 4f1b8f1787d2155b1be4adb5b1f405bf55ee1173 251769 
libregexp-grammars-perl_1.021.orig.tar.gz
 d6611c29204d458c961448b51c22c6570ab06ddb 2692 
libregexp-grammars-perl_1.021-1.debian.tar.gz
 ce1dba7342afd97f0c75bbd515eebe2c0a549564 287972 
libregexp-grammars-perl_1.021-1_all.deb
Checksums-Sha256: 
 74f12b92fca72b26519e112ef5d48792a73089a0b1f03b882342300d8e3d7e5c 2147 
libregexp-grammars-perl_1.021-1.dsc
 d2f9bdbc7da37e787077f7abfdd4217db8b5e0a838a3f4ff8dfe423840b2417a 251769 
libregexp-grammars-perl_1.021.orig.tar.gz
 83f6b8894be81773e291380fb4da1a18a2be8959710db8189cb1420f02e63456 2692 
libregexp-grammars-perl_1.021-1.debian.tar.gz
 0a79d22447fb49bb4d87ad88ef7f85bf9aa2bf5b8f882312917a819ed1f61e59 287972 
libregexp-grammars-perl_1.021-1_all.deb
Files: 
 8f3444d74aa4f9a099cd6a0c07820c8d 2147 perl optional 
libregexp-grammars-perl_1.021-1.dsc
 6d09cd8c12f638e8e8e5e3dd586c3b8c 251769 perl optional 
libregexp-grammars-perl_1.021.orig.tar.gz
 882dc0da3fd648fa642e503684b8 2692 perl optional 
libregexp-grammars-perl_1.021-1.debian.tar.gz
 be82a791fdd0264e821c726668cf73b9 287972 perl optional 
libregexp-grammars-perl_1.021-1_all.deb

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

iQIcBAEBCgAGBQJQMdgYAAoJEHidbwV/2GP+G/cP/3RY6KU9QcLRH6UHcr6Gyla6
tXj5yHhWcQkOYEi5ZpQk2gCCiSkwqro3m7jaQ0r+XDI+QNcwFjRGY6TgsIjUkqx1
T1Ntu3d5fbAURRpujLNF3rIQw8I3myN2gCqLyNEqRSyOamVBE5mPRnN5wfxonhaB
tyGG/tETsETjqtYXU/lAw82qMBu9RFlh0hcTpK6TFua8j6bl8bJs7ALgyBDKo0Lg
L4BUpxNvXtO3nkycS9nvJbIFyJvIcN/Shfg0zqyu/dhaIMizlOw0fJHocAtfDw34
K40E5jE8zp0iXOLckJIQRPfddPKXDy0gjVGs1RbcDZIwBMM3konG7s+6N2R+JxzY
oZD1SiJMMWrq1uYzQ8ACIRnk+yuwj/kBwEZ27ENZcfoAnzNwiUq2/KacjOuJ3UQI
ceakWNSx6jkYGDdUuNqg+C0JGPv5woPhSOAnSnCmzADc/2c4N9Gx7PUl9tkseLWq
6su0rBMlCYU55mauJavkbsqsjnj6uUf5ERTrTzWBmNrj/sylXWa0dBBUGI5GMOwV
rX1KYq5KikGG8Xzwl3QI6zvOQGryjH1yvwIM+k47wnMCqWtcJKIhhZIWiKqcce0p
uCFFbxllTxfU8jxLPg4IwRwkeBslC2TiTYS1DLFntvSEcFeLDzlhnU1DvW4WEN1c
Jl9wr9XJbFp2oY0V1113
=7/yx
-END PGP SIGNATURE-


-- 
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/e1t3lxs-0007ir...@franck.debian.org



Accepted iputils 3:20101006-2 (source i386)

2012-08-20 Thread noahm
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 Aug 2012 21:31:38 -0700
Source: iputils
Binary: iputils-ping iputils-tracepath iputils-arping iputils-clockdiff
Architecture: source i386
Version: 3:20101006-2
Distribution: unstable
Urgency: low
Maintainer: Noah Meyerhans no...@debian.org
Changed-By: no...@debian.org
Description: 
 iputils-arping - Tool to send ICMP echo requests to an ARP address
 iputils-clockdiff - Measure the time difference between networked computers
 iputils-ping - Tools to test the reachability of network hosts
 iputils-tracepath - Tools to trace the network path to a remote host
Closes: 601147 628893 683324
Changes: 
 iputils (3:20101006-2) unstable; urgency=low
 .
   * Fix RFC 4620 node info queries in ping6 (Closes: 683324)
   * Fix regression in ping* causing audible notifications to always
 be enabled when flood pinging (Closes: 601147)
   * Flush stdout when processing truncated ping* replies
 (Closes: 628893)
   * Use dpkg-buildflags to set build flags.
   * Add build-arch and build-indep rules in debian/rules
   * Bump standards compliance to 3.9.3.1
Checksums-Sha1: 
 9677d47eaacec3a487073f6570aeb75e0a3f6cb7 1369 iputils_20101006-2.dsc
 7fc7df206bce82b96684c967936e212a015f29f2 11747 iputils_20101006-2.debian.tar.gz
 7f4fb982c9877cc5cd0844743c937171c2d58b4c 58124 iputils-ping_20101006-2_i386.deb
 4fc2dfcd84b300a82692c780ccce1a9eadcee421 32324 
iputils-tracepath_20101006-2_i386.deb
 b5c71a27070bf2796608557772f53670f38a2699 24484 
iputils-arping_20101006-2_i386.deb
 d896627b3d4c0203b963b5c87bd1ac9df242dd7a 23184 
iputils-clockdiff_20101006-2_i386.deb
Checksums-Sha256: 
 2df5ff1b01f9cf1e59a99bfe75974205f64216af920e017029d9aa01bf6391d2 1369 
iputils_20101006-2.dsc
 6837287deb3d41aebbe5646230df580664101d84fef9b40f3400d5902d8e6f08 11747 
iputils_20101006-2.debian.tar.gz
 5a77b69d2a0eff064d44c0416b8cc0158b9ecd3d9789d8a56d056542bc633ce9 58124 
iputils-ping_20101006-2_i386.deb
 b8030f14adbd6f1f286f254aa300316b16c21dcc53b3421123054cd4ec3b3b75 32324 
iputils-tracepath_20101006-2_i386.deb
 8f1c1d272ccf078026da55d3e6b54791acd15f90061359fb0bd4c34ea67ae0f1 24484 
iputils-arping_20101006-2_i386.deb
 44271b8f1d5fb5933f8efab3226831fb36a52d020514f4eb365a66d39c10c118 23184 
iputils-clockdiff_20101006-2_i386.deb
Files: 
 aaceae74a024aa3757c586a75c221881 1369 net extra iputils_20101006-2.dsc
 4c1bb4e370db5f8cac055b21bb36c1dc 11747 net extra 
iputils_20101006-2.debian.tar.gz
 2153b9693e286395ad2e0b14c3997cb8 58124 net important 
iputils-ping_20101006-2_i386.deb
 41f4b75c3043a5dbb69bde76f372ecf2 32324 net optional 
iputils-tracepath_20101006-2_i386.deb
 6700ee714efd3ac74dc4a5a77a6158d9 24484 net extra 
iputils-arping_20101006-2_i386.deb
 8e289ac18be7a3d4d38278683770067f 23184 net extra 
iputils-clockdiff_20101006-2_i386.deb

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

iD8DBQFQMeRZYrVLjBFATsMRAuNmAJ4n2vs7EaHE+RJ3DyBuoN3qOITBTgCgiFMZ
TVg2tFXlJXaXEddSNkbxEAw=
=KlQ4
-END PGP SIGNATURE-


-- 
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/e1t3mtu-0004xo...@franck.debian.org



Accepted lbzip2 2.2-1 (source amd64)

2012-08-20 Thread Mikolaj Izdebski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 07:29:04 +0200
Source: lbzip2
Binary: lbzip2
Architecture: source amd64
Version: 2.2-1
Distribution: unstable
Urgency: low
Maintainer: Mikolaj Izdebski zurg...@gmail.com
Changed-By: Mikolaj Izdebski zurg...@gmail.com
Description: 
 lbzip2 - fast, multi-threaded bzip2 utility
Closes: 582476 645999 673378
Changes: 
 lbzip2 (2.2-1) unstable; urgency=low
 .
   * New upstream release:
 - limited memory allocation, closes: #645999,
 - improved bzip2 compatibility, closes: #582476,
 - fixed several other minor bugs, closes: #673378.
   * debian/control:
 - drop version requirements on autotools,
 - bump Standards-Version to 3.9.3.
   * debian/copyright:
 - remove comment about maintainers involved in creation of the package,
 - update to reflect new upstream version.
   * debian/rules: execute Bourne shell scripts with sh instead of perl.
   * debian/compat: Bump to 9.
   * debian/watch: Use github.com directly instead of githubredir.
Checksums-Sha1: 
 b72d0a1cdb85a3a080a637459a44577b13f25a92 1169 lbzip2_2.2-1.dsc
 6493d360c52d695d4749d836b1e5ec98f43dfade 134040 lbzip2_2.2.orig.tar.gz
 25ea3b2f1cd628e953140890bad6de3288d3f1f2 5352 lbzip2_2.2-1.debian.tar.bz2
 6d5cc52d4207063b64da751324929c4e9127f254 79960 lbzip2_2.2-1_amd64.deb
Checksums-Sha256: 
 5f608fc31e0ced441fde050cce46a692091a7502ed24abef98f07fa3091b13de 1169 
lbzip2_2.2-1.dsc
 4cb0e50f2fac1dfe12ab3bdc759abdc0227f9dacdd1bba507b37eecbe8666c8a 134040 
lbzip2_2.2.orig.tar.gz
 c4238ae4f9fd65dae16827b441fc2d7e8a251f3d1d39ba6360602a5a3dea070e 5352 
lbzip2_2.2-1.debian.tar.bz2
 7fcc9b05249b56b0a444e8c26812df86f7920c561a1ad065b223e432977acf7a 79960 
lbzip2_2.2-1_amd64.deb
Files: 
 b324105c2f18959ff83454e3d258afe3 1169 utils extra lbzip2_2.2-1.dsc
 8fe777a8405027ac33bf43095504d796 134040 utils extra lbzip2_2.2.orig.tar.gz
 3e78576e933cf8cde911039ce7cef2a5 5352 utils extra lbzip2_2.2-1.debian.tar.bz2
 46c7bd6d1850a82b1f6bf6323d56b7cd 79960 utils extra lbzip2_2.2-1_amd64.deb

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

iEYEARECAAYFAlAyDYcACgkQMDatjqUaT92kZACdFjTW6N5gLNjQQfxF63u/CgFh
AJsAn1mWBvzypoJUrJcLqj3UYVfe2UDx
=/VCd
-END PGP SIGNATURE-


-- 
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/e1t3p3b-0001rm...@franck.debian.org



Accepted katoob 0.5.9.1-4 (source i386)

2012-08-20 Thread Mohammed Sameer
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 13:26:35 +0300
Source: katoob
Binary: katoob
Architecture: source i386
Version: 0.5.9.1-4
Distribution: unstable
Urgency: low
Maintainer: Mohammed Sameer msam...@debian.org
Changed-By: Mohammed Sameer msam...@debian.org
Description: 
 katoob - A Gtk2 light weight multilingual BiDi aware text editor
Closes: 652519
Changes: 
 katoob (0.5.9.1-4) unstable; urgency=low
 .
   * Added fix_save_perms.patch (Closes: #652519)
Checksums-Sha1: 
 2d37cc0e73dd7eef59ba055b3e3907025b25e698 1310 katoob_0.5.9.1-4.dsc
 2b4992ba50c7f3b5336f5cc425637dc0f95968a5 7445 katoob_0.5.9.1-4.debian.tar.gz
 9d021f10a979423d8848e54c32fa6faebc97d770 404400 katoob_0.5.9.1-4_i386.deb
Checksums-Sha256: 
 57a330427867c74d61bfe17ac87b0e1df588582c09ce31559bc78b749f421660 1310 
katoob_0.5.9.1-4.dsc
 12fa66822039cf5bc9218f7453f8e523e25c376de0ee84b641e201f2b5c61b27 7445 
katoob_0.5.9.1-4.debian.tar.gz
 8a155154a4f4da3f268c578e4342595c40771a6d297d2d88862e52678212b0da 404400 
katoob_0.5.9.1-4_i386.deb
Files: 
 1877ccde9cdfffeb75762c9a3af58669 1310 text optional katoob_0.5.9.1-4.dsc
 61c26853fc7d943fb8afea2453885820 7445 text optional 
katoob_0.5.9.1-4.debian.tar.gz
 9564c0aac24a5fd840b004e86ce96441 404400 text optional katoob_0.5.9.1-4_i386.deb

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

iD8DBQFQMhc7y2aOKaP9DfcRAmovAJ4n3SiExINY31nhcS65V/JGDJfC1ACfbwea
lXTQOtR/aCQlPQ5p8KryLK8=
=Vk3r
-END PGP SIGNATURE-


-- 
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/e1t3pkk-0005pt...@franck.debian.org



Accepted rmpi 0.6-1-1 (source i386)

2012-08-20 Thread Dirk Eddelbuettel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 05:18:07 -0500
Source: rmpi
Binary: r-cran-rmpi
Architecture: source i386
Version: 0.6-1-1
Distribution: unstable
Urgency: low
Maintainer: Dirk Eddelbuettel e...@debian.org
Changed-By: Dirk Eddelbuettel e...@debian.org
Description: 
 r-cran-rmpi - GNU R package interfacing MPI libraries for distributed computing
Changes: 
 rmpi (0.6-1-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 e9fa31dda38d26d797a326ffbe76e5d9bda69479 1013 rmpi_0.6-1-1.dsc
 eeec7c35a8aebdf17bac06c9680c5e171c3dd0bc 92977 rmpi_0.6-1.orig.tar.gz
 8d70a37ac82ef3de8a7455fd85b4b60304de95f3 3288 rmpi_0.6-1-1.diff.gz
 80c95fe8af84d7c10cb0fdac14695a040a99a562 197278 r-cran-rmpi_0.6-1-1_i386.deb
Checksums-Sha256: 
 65745178349ac41225bbeb7f508ac4f1a9a25b79bac49c523f9ee9e146bc558a 1013 
rmpi_0.6-1-1.dsc
 7c726745a6a36aac5f5e0a20e44cb16ef51eb91b10c0e524aa7ba7b5a1f3d772 92977 
rmpi_0.6-1.orig.tar.gz
 83fb368b8a0e17e3ad7de4bb2545f77bbd77d0945f4de6eafeca1eddd0072b90 3288 
rmpi_0.6-1-1.diff.gz
 5bca3c04efa68486c6db73d555e35cbc9c26f61c68a5db7894e1fe461718e401 197278 
r-cran-rmpi_0.6-1-1_i386.deb
Files: 
 f59f4443e23d10234d296371269baaf3 1013 gnu-r optional rmpi_0.6-1-1.dsc
 07a8227bf5013f9fb7b8f2481f1a87c1 92977 gnu-r optional rmpi_0.6-1.orig.tar.gz
 0ca2527ab84e4ce263aa93d4dfaa5ee5 3288 gnu-r optional rmpi_0.6-1-1.diff.gz
 16340fcb150c6f7115cf32c9dcd5200c 197278 gnu-r optional 
r-cran-rmpi_0.6-1-1_i386.deb

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

iD8DBQFQMg8TCZSR95Gw07cRAjnfAJwLpAREAg1A0gKCB3Xh/0yRPlnxtgCeKghv
/6ToxhF7cAfqdCZm4hEmGLk=
=e3Jw
-END PGP SIGNATURE-


-- 
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/e1t3pzl-qf...@franck.debian.org



Accepted uwsgi 1.2.3+dfsg-3 (source all amd64)

2012-08-20 Thread Janos Guljas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 12:32:43 +0200
Source: uwsgi
Binary: uwsgi uwsgi-dbg uwsgi-core uwsgi-plugins-all 
uwsgi-infrastructure-plugins uwsgi-app-integration-plugins uwsgi-plugin-admin 
uwsgi-plugin-cache uwsgi-plugin-carbon uwsgi-plugin-cgi uwsgi-plugin-echo 
uwsgi-plugin-erlang uwsgi-plugin-fastrouter uwsgi-plugin-fiber 
uwsgi-plugin-graylog2 uwsgi-plugin-greenlet-python uwsgi-plugin-http 
uwsgi-plugin-jvm-openjdk-6 uwsgi-plugin-jwsgi-openjdk-6 uwsgi-plugin-logsocket 
uwsgi-plugin-lua5.1 uwsgi-plugin-nagios uwsgi-plugin-ping 
uwsgi-plugin-probeconnect uwsgi-plugin-probepg uwsgi-plugin-psgi 
uwsgi-plugin-pyerl-python uwsgi-plugin-pyerl-python3 uwsgi-plugin-python 
uwsgi-plugin-python3 uwsgi-plugin-rack-ruby1.8 uwsgi-plugin-rack-ruby1.9.1 
uwsgi-plugin-rpc uwsgi-plugin-rrdtool uwsgi-plugin-rsyslog uwsgi-plugin-signal 
uwsgi-plugin-symcall uwsgi-plugin-syslog uwsgi-plugin-ugreen 
libapache2-mod-uwsgi libapache2-mod-uwsgi-dbg libapache2-mod-ruwsgi 
libapache2-mod-ruwsgi-dbg python-django-uwsgi-admin python-uwsgicc 
python-uwsgidecorators
 python3-uwsgidecorators
 uwsgi-extra
Architecture: source all amd64
Version: 1.2.3+dfsg-3
Distribution: unstable
Urgency: low
Maintainer: Janos Guljas ja...@resenje.org
Changed-By: Janos Guljas ja...@resenje.org
Description: 
 libapache2-mod-ruwsgi - uwsgi module for Apache2 (mod_Ruwsgi)
 libapache2-mod-ruwsgi-dbg - debugging symbols for Apache2 mod_Ruwsgi
 libapache2-mod-uwsgi - uwsgi module for Apache2 (mod_uwsgi)
 libapache2-mod-uwsgi-dbg - debugging symbols for Apache2 mod_uwsgi
 python-django-uwsgi-admin - Django application for administering uWSGI server
 python-uwsgicc - uWSGI control center
 python-uwsgidecorators - module of decorators for elegant access to uWSGI API 
(Python)
 python3-uwsgidecorators - module of decorators for elegant access to uWSGI API 
(Python 3)
 uwsgi  - fast, self-healing application container server
 uwsgi-app-integration-plugins - plugins for integration of uWSGI and 
application
 uwsgi-core - fast, self-healing application container server (core)
 uwsgi-dbg  - debugging symbols for uWSGI server and it's plugins
 uwsgi-extra - fast, self-healing application container server (extra files)
 uwsgi-infrastructure-plugins - infrastructure plugins for uWSGI
 uwsgi-plugin-admin - admin plugin for uWSGI
 uwsgi-plugin-cache - cache plugin for uWSGI
 uwsgi-plugin-carbon - carbon plugin for uWSGI
 uwsgi-plugin-cgi - CGI plugin for uWSGI
 uwsgi-plugin-echo - echo plugin for uWSGI
 uwsgi-plugin-erlang - Erlang plugin for uWSGI
 uwsgi-plugin-fastrouter - fastrouter plugin for uWSGI
 uwsgi-plugin-fiber - fiber loop engine plugin for uWSGI
 uwsgi-plugin-graylog2 - graylog2 plugin for uWSGI
 uwsgi-plugin-greenlet-python - greenlet plugin for uWSGI (Python)
 uwsgi-plugin-http - HTTP server plugin for uWSGI
 uwsgi-plugin-jvm-openjdk-6 - Java plugin for uWSGI (OpenJDK 6)
 uwsgi-plugin-jwsgi-openjdk-6 - JWSGI plugin for uWSGI (OpenJDK 6)
 uwsgi-plugin-logsocket - logsocket plugin for uWSGI
 uwsgi-plugin-lua5.1 - Lua WSAPI plugin for uWSGI (Lua 5.1)
 uwsgi-plugin-nagios - Nagios plugin for uWSGI
 uwsgi-plugin-ping - ping plugin for uWSGI
 uwsgi-plugin-probeconnect - probeconnect plugin for uWSGI
 uwsgi-plugin-probepg - probepg plugin for uWSGI
 uwsgi-plugin-psgi - Perl PSGI plugin for uWSGI
 uwsgi-plugin-pyerl-python - pyerl plugin for uWSGI (Python)
 uwsgi-plugin-pyerl-python3 - pyerl plugin for uWSGI (Python 3)
 uwsgi-plugin-python - Python WSGI plugin for uWSGI
 uwsgi-plugin-python3 - Python 3 WSGI plugin for uWSGI
 uwsgi-plugin-rack-ruby1.8 - Rack plugin for uWSGI (Ruby 1.8)
 uwsgi-plugin-rack-ruby1.9.1 - Rack plugin for uWSGI (Ruby 1.9.1)
 uwsgi-plugin-rpc - RPC plugin for uWSGI
 uwsgi-plugin-rrdtool - rrdtool plugin for uWSGI
 uwsgi-plugin-rsyslog - rsyslog plugin for uWSGI
 uwsgi-plugin-signal - signal plugin for uWSGI
 uwsgi-plugin-symcall - symcall plugin for uWSGI
 uwsgi-plugin-syslog - syslog plugin for uWSGI
 uwsgi-plugin-ugreen - uGreen plugin for uWSGI
 uwsgi-plugins-all - all available plugins for uWSGI
Changes: 
 uwsgi (1.2.3+dfsg-3) unstable; urgency=low
 .
   * Remove `name` option from start-stop-daemon as master process is
 changing its name on reloads. Thanks Andreas Motl for the patch.
Checksums-Sha1: 
 f1098b0cf0ebec0342c05164b4cdf7844593638d 5035 uwsgi_1.2.3+dfsg-3.dsc
 ef45b4789eb2e85b7cc79fadf67701475933bb8f 37962 uwsgi_1.2.3+dfsg-3.debian.tar.gz
 ec0953293278d1657d6271ca829c1257f3fa436e 16328 
python-django-uwsgi-admin_1.2.3+dfsg-3_all.deb
 74c394916f764d0788c62d0c2f3daffbf7561dc1 31622 
python-uwsgicc_1.2.3+dfsg-3_all.deb
 0667c89b3628e6e47b0cfc647c582820895714ee 16148 
python-uwsgidecorators_1.2.3+dfsg-3_all.deb
 8d70e211078acbe72d69d03d9358c73acc433e6f 16098 
python3-uwsgidecorators_1.2.3+dfsg-3_all.deb
 0b0daf8cbaf8346f22ed03d8a0194448b32f572a 49938 uwsgi-extra_1.2.3+dfsg-3_all.deb
 91e38dff3e8f044d4af7eb7f244398e20d9bf84f 28088 uwsgi_1.2.3+dfsg-3_amd64.deb
 

Accepted ruby-merb-haml 1.1.3-2 (source all)

2012-08-20 Thread Tollef Fog Heen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 19 Aug 2012 19:24:04 +0200
Source: ruby-merb-haml
Binary: ruby-merb-haml libmerb-haml-ruby libmerb-haml-ruby1.8
Architecture: source all
Version: 1.1.3-2
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Tollef Fog Heen tfh...@debian.org
Description: 
 libmerb-haml-ruby - Transitional package for ruby-merb-haml
 libmerb-haml-ruby1.8 - Transitional package for ruby-merb-haml
 ruby-merb-haml - Plugin library for Merb that provides access to ruby-haml
Closes: 685317
Changes: 
 ruby-merb-haml (1.1.3-2) unstable; urgency=low
 .
   * Add missing depends on ruby-haml.  Closes: #685317.
Checksums-Sha1: 
 270dab0ed53735f398390d0b96af76196547ab9e 2221 ruby-merb-haml_1.1.3-2.dsc
 43ec85d3a0de3d25f50876b7381855baf41ad367 3682 
ruby-merb-haml_1.1.3-2.debian.tar.gz
 3addea26683d3fa797cd07ce3b40faf96fe9e0ad 8160 ruby-merb-haml_1.1.3-2_all.deb
 75354d5b195e1ac888395a73da0a107e2d95bd62 2492 libmerb-haml-ruby_1.1.3-2_all.deb
 7d35af872eef31025de0f4d98cb5967f5e5a9dc0 2500 
libmerb-haml-ruby1.8_1.1.3-2_all.deb
Checksums-Sha256: 
 5ee1b00e5eb790db5b843715b68373c0f16b1ff181fdd0e774b145363d95010a 2221 
ruby-merb-haml_1.1.3-2.dsc
 69fcc64e291f533ebfd946490759cd6ca7249bdd6c55efb21bfa032ae6aec920 3682 
ruby-merb-haml_1.1.3-2.debian.tar.gz
 ca1538d19eadcee64b98574d629eec452f4d0dfb55fe767f7cdc596a17545d92 8160 
ruby-merb-haml_1.1.3-2_all.deb
 eea12eb812c161070a9af767157ace86db5412d0608c908ab5f6c53f7f3bfab6 2492 
libmerb-haml-ruby_1.1.3-2_all.deb
 92d4477b7ce0f6b3fda45ffa6a968769dda31e77ec4c5897cd8aa0b8a851616b 2500 
libmerb-haml-ruby1.8_1.1.3-2_all.deb
Files: 
 a54b50b35e3c61c814dea3425c68069d 2221 ruby optional ruby-merb-haml_1.1.3-2.dsc
 c6cf02e648afe14c4d4f699e05ce8831 3682 ruby optional 
ruby-merb-haml_1.1.3-2.debian.tar.gz
 84cea4a4857409feed774e67271ad64c 8160 ruby optional 
ruby-merb-haml_1.1.3-2_all.deb
 2ea93f175c5b16d14ab9c89b0f54d8ab 2492 oldlibs extra 
libmerb-haml-ruby_1.1.3-2_all.deb
 78f52f611ee2d5879e1e81c14f43125b 2500 oldlibs extra 
libmerb-haml-ruby1.8_1.1.3-2_all.deb

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

iQIcBAEBAgAGBQJQMSPZAAoJELZaSHHKGdcXXwMQAMWly7iOZObiIL2Zj4pQr/XS
gkmPww8PoCE2kMHgM7PLHUZapv0ykuM04h5AhXu/sLI/1sbtm3GGTs+e+Br7q81J
gTcHI2eC+9iw4oTHN/2fMQVPRz456F/Q4MnDSGTs82Zq7ArGcNGIj23QbUpl0Xf3
6K64ooV8JQLjqMxLU/xnpnt0xF4fA7U+azb/mvAD5aeTKvrfVpXZ+u/G+v+lLu19
HCRSeNxlkDbnZAN2WfUYxQQuCscA9wVc2gLirdf0T7ojUWRcwaLh3jlqcvYenKYW
rcOdoAXS1avjzIerzZZH9M7t/54Cb3301Cv9LE83VHiuA0XMpp6XF4ilX6yxl7bX
EAeb7m2vsVYbQORe+qY06l4rrLA8C3APfrZ1TanvBP31gVl6rzk3+Vn2VCX2ih6S
duuz73/NB55+uYH46nK27WFO6m/IMy2Czsm489swGZHueoPrmUWEWLjRnQ2XiNyk
Y/v5dovLaRFtfRUcOoFTEf+fXltw31Y5UqU9KXobmRcSsiy+edxuhmjagEZ0j/V/
tMI/8kLsN8NM+aDbZV++BZnClZYozAp4xQh9x+MTC0y6MqXYp6XVas9YYfJBDnYu
z1C8VD43yTKM4CBwDcynLuRTyr+Ee/TPaxxC+QFAIU1K/kOrwPG/qqPqPyHZvGgz
w4aQbPMfvdECoDUj9M88
=RpzI
-END PGP SIGNATURE-


-- 
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/e1t3r9r-0001vw...@franck.debian.org



Accepted openblas 0.2.3-1~exp1 (source amd64)

2012-08-20 Thread Sébastien Villemot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 12:18:07 +
Source: openblas
Binary: libopenblas-base libopenblas-dev
Architecture: source amd64
Version: 0.2.3-1~exp1
Distribution: experimental
Urgency: low
Maintainer: Debian Science Team 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Sébastien Villemot sebastien.ville...@ens.fr
Description: 
 libopenblas-base - Optimized BLAS (linear algebra) library based on GotoBLAS2
 libopenblas-dev - Optimized BLAS (linear algebra) library based on GotoBLAS2
Closes: 673061
Changes: 
 openblas (0.2.3-1~exp1) experimental; urgency=low
 .
   * New upstream release
 + Kills threads when unloading the library (Closes: #673061)
Checksums-Sha1: 
 9dd8a8cd1acb659dc150f8f319541a8118d273f5 2210 openblas_0.2.3-1~exp1.dsc
 668f7c0390449570737176d72d43dfc5347f86f3 3236430 openblas_0.2.3.orig.tar.gz
 23acc4f9ba7a81bb844b004ecb77e0a111d52520 8440 
openblas_0.2.3-1~exp1.debian.tar.gz
 0de79882c83f586e18b0358524becc61cc45eba8 4132274 
libopenblas-base_0.2.3-1~exp1_amd64.deb
 535da92e15c09d8c095ef23580e6d3c8649bcacb 4755330 
libopenblas-dev_0.2.3-1~exp1_amd64.deb
Checksums-Sha256: 
 19eed0e55eb04bb1b33203c74986539748c2fd06719bcc194521e4272d27932f 2210 
openblas_0.2.3-1~exp1.dsc
 b9c10675a0c4b6b6adc4b0461749d6ec2d81f1498727935b9e38ec71a565a43e 3236430 
openblas_0.2.3.orig.tar.gz
 6a71b62f0d30774ba2893eb4dd7ec89416d7a07b975ca358e7b4f964f64b008f 8440 
openblas_0.2.3-1~exp1.debian.tar.gz
 ff217fe2596dfa7f079d334e0f6a0357a5f2af2b24f06ac798b2b1f95d68ace2 4132274 
libopenblas-base_0.2.3-1~exp1_amd64.deb
 5821b9fba66391f5c2d6eb236f6dc7186c612bc67130a9defb25cd85c4db302d 4755330 
libopenblas-dev_0.2.3-1~exp1_amd64.deb
Files: 
 a1a4012150539b42afd7448bf9b199bd 2210 devel optional openblas_0.2.3-1~exp1.dsc
 a2caf573196786fb99ccd29f738ab71a 3236430 devel optional 
openblas_0.2.3.orig.tar.gz
 c56c96c280cd82dcf29cacdc0a5f0e21 8440 devel optional 
openblas_0.2.3-1~exp1.debian.tar.gz
 0fd5d6815a62caa52783f9304db6364e 4132274 libs optional 
libopenblas-base_0.2.3-1~exp1_amd64.deb
 946e1c59bd41c61af7919a85d17fb76b 4755330 libdevel optional 
libopenblas-dev_0.2.3-1~exp1_amd64.deb

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

iQIcBAEBCAAGBQJQMi2wAAoJECzs6TUOzr5KCIoQAIvnKl0i1BRTOp1I8CYDpVH4
RKd8sClZEojgSjoGRCFSlvwq5dphINNpZnGsKYTqcD2BSSR+3yUCQk6rtdI99+iR
3IMh7uofD5vQc46Wlz1S+j41cfuwyEqsc8H8MY0D3K6vTXoXNjPp4kHNqjZwbTtu
n6x5aFriaKewl2lgfryRFfwOJiGzg1vb8eHGLsnG8XlHxPOvDCd3MrwdP9MC+s32
aWJSFsHYpjAsQ4byZvX8ShNLxsyDYmDSYp/kXbZlFvQb/4tpwbzqkQUpWu82DRek
p1RoPMP8jkXbCfLW00e9wKk36jxdrNSRkwp+XkOhSZr3u7qy8onklS6shL/pYASG
wqXSCq8YmO9PDXsrDzAKqmnQLp9KE2pTmVV5qyRAzCxZVjpuizRaJxq1T9NaXGvC
LiCm24p7O87MG27d9HsZRb3TyUOc6VLR/uRHvxhniCQyc4DEjMJhyPt71OvwpdxA
42/0DRl6ngOpxQ2z0/Mp5wNbvkgdXBKg3UIUcuOKIgyNY4+XVHaDtBmLafvnzgEa
H85t5F7kXtLzETq2EmUwuKXzDie9VVjZfeXfZ1a2DUB20id67z42KyunnWM0WpnZ
yUUlUWi1dRYb1jWC/dPa7XWw+DsXwNHooDO5lXCNlxOdXsESsBpX0Qa4daHrakes
dp3UB0ftGEbsRv8ejWcN
=2Ncj
-END PGP SIGNATURE-


-- 
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/e1t3roj-00063j...@franck.debian.org



Accepted mp3val 0.1.8-2 (source amd64)

2012-08-20 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 15:03:14 +0200
Source: mp3val
Binary: mp3val
Architecture: source amd64
Version: 0.1.8-2
Distribution: experimental
Urgency: low
Maintainer: Sandro Tosi mo...@debian.org
Changed-By: Sandro Tosi mo...@debian.org
Description: 
 mp3val - program for MPEG audio stream validation
Closes: 669611
Changes: 
 mp3val (0.1.8-2) experimental; urgency=low
 .
   * debian/control
 - add Vcs-{Browser, Git} fields
 - bump Standards-Version to 3.9.3 (no changes needed)
 - add misc:Depends
   * debian/{control, rules}
 - switch to dh sequencer
   * Switch to '3.0 (quilt)' source format; Closes: #669611
   * debian/rules
 - use hardening flags
Checksums-Sha1: 
 8d64cad0776544b8b97e7e2827e87d7c68c3dcc8 1218 mp3val_0.1.8-2.dsc
 68f30c232b084b6a2f0b8fb926259b6973c140ad 4184 mp3val_0.1.8-2.debian.tar.gz
 d90981132ef1d339682e9b06749f2d719477380b 22206 mp3val_0.1.8-2_amd64.deb
Checksums-Sha256: 
 52226d11dc15e62a938b7f0bfb78f1b092442d0af11a54d10498f3bf8656c31e 1218 
mp3val_0.1.8-2.dsc
 68097f6a792795a3f0a7d4a9500efdb95eda6d4740748f99bc14440062f7f932 4184 
mp3val_0.1.8-2.debian.tar.gz
 0098938e5412ea1934a2fbb8a8be55dd2fa37c24f0cf399a5728c5987133abcd 22206 
mp3val_0.1.8-2_amd64.deb
Files: 
 21bb71ddf904649d0b1a3f60a8dc5db3 1218 sound optional mp3val_0.1.8-2.dsc
 0513d85bd508aa18074854ca6e9a2cf7 4184 sound optional 
mp3val_0.1.8-2.debian.tar.gz
 13a9f5d4893baa76aaf07d1d73562d7d 22206 sound optional mp3val_0.1.8-2_amd64.deb

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

iEYEARECAAYFAlAyNeIACgkQAukwV0RN2VBnOgCgm/XErLVlQ6COjCCc+z+dGsQc
niIAmwef0dUHJsPNq2xVtgyKA6dbRqTT
=LVQ4
-END PGP SIGNATURE-


-- 
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/e1t3rrp-0006cq...@franck.debian.org



Accepted cups-filters 1.0.22-1 (source amd64)

2012-08-20 Thread Till Kamppeter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 14:53:42 +0200
Source: cups-filters
Binary: libcupsfilters1 libfontembed1 cups-filters libcupsfilters-dev 
libfontembed-dev
Architecture: source amd64
Version: 1.0.22-1
Distribution: experimental
Urgency: low
Maintainer: Debian CUPS Maintainers pkg-cups-de...@lists.alioth.debian.org
Changed-By: Till Kamppeter till.kamppe...@gmail.com
Description: 
 cups-filters - OpenPrinting CUPS Filters
 libcupsfilters-dev - OpenPrinting CUPS Filters - Development files for the 
library
 libcupsfilters1 - OpenPrinting CUPS Filters - Shared library
 libfontembed-dev - OpenPrinting CUPS Filters - Development files for font 
embed libr
 libfontembed1 - OpenPrinting CUPS Filters - Font Embed Shared library
Changes: 
 cups-filters (1.0.22-1) experimental; urgency=low
 .
   * New upstream release
  - pdftopdf filter replaced by new QPDF-based filter from Tobias
Hoffmann's Google Summer of Code project. The former Poppler-based
pdftopdf duplicated a lot of Poppler's code. The old filter is
still in the package as pdftopdf.old with source code in
filter/pdftopdf.old. It will be removed in a later release.
  - bannertopdf: Page duplication routine fixed.
  - bannertopdf: Fixed invalid output of a direct stream object.
  - Added most recent contributors to AUTHORS and COPYING files.
   * debian/control: Added build dependency on libqpdf-dev.
   * debian/copyright: Updated for the addition of the new pdftopdf filter.
Checksums-Sha1: 
 4499ebb8b6dfd74d4dbef206cdb6e4ed30b5ab45 2625 cups-filters_1.0.22-1.dsc
 d6e48c5fb464ca55a9bed9f057cc6fb769bcbde9 1192354 
cups-filters_1.0.22.orig.tar.bz2
 631b78de7d8797e1693cd8673a3944ce204c9804 40516 
cups-filters_1.0.22-1.debian.tar.gz
 564fffcc59b1f3bc0a1a61e1ea648b767f43efb1 81712 
libcupsfilters1_1.0.22-1_amd64.deb
 3f4372ea5a22e58a95e43d106dcee47c5adea2f2 55266 libfontembed1_1.0.22-1_amd64.deb
 8aeda3559dadeb32551b4faf67a1412772cf0af2 406684 cups-filters_1.0.22-1_amd64.deb
 7e885f3083c9863577b71391e5455bd756ea30ca 91768 
libcupsfilters-dev_1.0.22-1_amd64.deb
 1eb833dcc61e34aaa819da49dfc598df5e97500f 60688 
libfontembed-dev_1.0.22-1_amd64.deb
Checksums-Sha256: 
 c57d81be442a2dfd28f3d30dbfbd806f23f898b2b9b446d133a06fba9e56247b 2625 
cups-filters_1.0.22-1.dsc
 74f635ab2ec025e3dea920b19bb5249a0958618a8ec55b739058c964c3692578 1192354 
cups-filters_1.0.22.orig.tar.bz2
 13908597e57a428611b7f1f8320d2811ec13d9345d3dc4f10bcad4500ece047a 40516 
cups-filters_1.0.22-1.debian.tar.gz
 b1a67981c975bc06f54f122f400afbd196366ed494b637d76cc7c974653126c5 81712 
libcupsfilters1_1.0.22-1_amd64.deb
 8bbde85bd2f5b6f334033cc444f208fe7e7a7dcc16c77809a6aff6a533d8f3d8 55266 
libfontembed1_1.0.22-1_amd64.deb
 ee3f7aecf79de636eeeaf4c4e901b7a52c20202f184f33b3024ef2d76a76f8fd 406684 
cups-filters_1.0.22-1_amd64.deb
 e79cfc2509a838d922a6abc1658052246cd59de6b4fc70a8ff6a803a012cddff 91768 
libcupsfilters-dev_1.0.22-1_amd64.deb
 87800bca3b4b55336644a8a335556340f6eb27e89e49daa74edd380e83c3de53 60688 
libfontembed-dev_1.0.22-1_amd64.deb
Files: 
 710f192867677f13632079bb97f2716a 2625 net optional cups-filters_1.0.22-1.dsc
 c8bb251dbce6f74a59dc3b27ec94e631 1192354 net optional 
cups-filters_1.0.22.orig.tar.bz2
 af70a1f3a5e27618e2e1e398eb6c06c0 40516 net optional 
cups-filters_1.0.22-1.debian.tar.gz
 f3771f30db14be0f190b2b002ef19b66 81712 libs optional 
libcupsfilters1_1.0.22-1_amd64.deb
 da33a42f090274f95fe527427c947665 55266 libs optional 
libfontembed1_1.0.22-1_amd64.deb
 42552efd16d5f6a54fea9da799ae9b66 406684 net optional 
cups-filters_1.0.22-1_amd64.deb
 9b24d62b8d45e848cde472fdf8f92cfa 91768 libdevel optional 
libcupsfilters-dev_1.0.22-1_amd64.deb
 2756e882d597b43914602f3a7787350d 60688 libdevel optional 
libfontembed-dev_1.0.22-1_amd64.deb

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

iQIcBAEBCAAGBQJQMjV5AAoJEPmIJawmtHufTTgP/2vpWAXq3MgH5OYU9B03sXlA
7U+Xo8/iReFeSnJCvhRamMeWU59EUREUbKnjFtFY2mvrig2GNiSkqBO2tIlodBnR
/FYBCfsKaOvjIjZy3GXviOjQJCElTO12ycQ7ZECQiNzxydCGzAmGCSi1dptM6fOx
FB/+DlUWuxLlDuEbNP3T9RfbHdYZqtHs7Wq4DFLgHJv1564kzPBiWohrUJswysQf
dnmdOQmc9GPe+MLXtyVg/eXRFn3bq1fJotY+PEvlkD7I3Z2PeyhzxJGja3ntSAjJ
0rHhC69RRT2a/S8Ni8slnhv2yRcJwOzqEQkHNVjgaj/gmkqUS65uIcBbp3tvRqig
olgr2KXTo0Vy8aHdwrF24rRupCdFSrxeaTuD3gJTFoGHtEbkpA88iCsxeM0gngdN
uDtIYu30iQC46Yda3v6UAlh1OQt52cViSQzN1E2l2VkWu2aH+8oKEKnNP9fkaRLe
D6Mz0Mg7OrJGsPp44KlO0NmvDJae/dEvmCa+ldfPfaGeVxvy7LkT5EoOMPSDD3ym
kcNQLF8TlwXfxjaEZqfSKPCao/yULrnRtumv2gKBlAbMtpFaHjaDyeCnvBQ0pM4r
OhPLtCqzQcSRhbtXxqXMiENkMpXbvkhaAa/vUacaicnQC9R/+PD27uuqVAiUKeZD
Bx8iotB3w2XUgT9yi7cj
=t32c
-END PGP SIGNATURE-


-- 
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/e1t3rrm-0006bg...@franck.debian.org



Accepted graphicsmagick 1.3.16-1.1 (source amd64 all)

2012-08-20 Thread gregor herrmann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 18 Aug 2012 15:08:57 +0200
Source: graphicsmagick
Binary: graphicsmagick libgraphicsmagick3 libgraphicsmagick1-dev 
libgraphicsmagick++3 libgraphicsmagick++1-dev libgraphics-magick-perl 
graphicsmagick-imagemagick-compat graphicsmagick-libmagick-dev-compat 
graphicsmagick-dbg
Architecture: source amd64 all
Version: 1.3.16-1.1
Distribution: unstable
Urgency: low
Maintainer: Daniel Kobras kob...@debian.org
Changed-By: gregor herrmann gre...@debian.org
Description: 
 graphicsmagick - collection of image processing tools
 graphicsmagick-dbg - format-independent image processing - debugging symbols
 graphicsmagick-imagemagick-compat - image processing tools providing 
ImageMagick interface
 graphicsmagick-libmagick-dev-compat - image processing libraries providing 
ImageMagick interface
 libgraphics-magick-perl - format-independent image processing - perl interface
 libgraphicsmagick++1-dev - format-independent image processing - C++ 
development files
 libgraphicsmagick++3 - format-independent image processing - C++ shared library
 libgraphicsmagick1-dev - format-independent image processing - C development 
files
 libgraphicsmagick3 - format-independent image processing - C shared library
Closes: 683284
Changes: 
 graphicsmagick (1.3.16-1.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * [SECURITY] Fix CVE-2012-3438: apply patch from upstream repo:
 
http://graphicsmagick.hg.sourceforge.net/hgweb/graphicsmagick/graphicsmagick/rev/d6e469d02cd2
 coders/png.c: Some typecasts were inconsistent with libpng-1.4 and
 later.
 (Closes: #683284)
Checksums-Sha1: 
 b9e2178a3e08032b171a20f9d3f3a4b069aaf5a3 2631 graphicsmagick_1.3.16-1.1.dsc
 224322db69e3c2ea7ff75e87cdd546e8d1878418 159080 
graphicsmagick_1.3.16-1.1.diff.gz
 58f06875141cc9108be344a14b3166766891b81e 1029270 
graphicsmagick_1.3.16-1.1_amd64.deb
 f09702a6ea974da8c76b3126768c36e93a08a0f9 1319926 
libgraphicsmagick3_1.3.16-1.1_amd64.deb
 4b2ab72edd7e6006b5379a17698f136aae439087 1815114 
libgraphicsmagick1-dev_1.3.16-1.1_amd64.deb
 c17694a8e7f292b755fd4506166939281d428730 152838 
libgraphicsmagick++3_1.3.16-1.1_amd64.deb
 4b7e222016ad1e125774b258d6aae7cbac05dce9 404920 
libgraphicsmagick++1-dev_1.3.16-1.1_amd64.deb
 17bb8a4429f2dcebff533d3185de8931a3e3e272 81778 
libgraphics-magick-perl_1.3.16-1.1_amd64.deb
 d6c59a308c21b200e1863f51cd6c3521379c5b69 3259936 
graphicsmagick-dbg_1.3.16-1.1_amd64.deb
 d8864b1bcdb593e868e95c709712180c71612078 15934 
graphicsmagick-imagemagick-compat_1.3.16-1.1_all.deb
 0fc07df33fdf62429550d48b4ba0860e35fc6a80 19526 
graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all.deb
Checksums-Sha256: 
 cfe2f45f3728c1c7902385e3c2ce8bf3dd65bd6a458865bad9b80e7d8025fc8d 2631 
graphicsmagick_1.3.16-1.1.dsc
 0103133d738608d087724f5c8bf8f04638f9a46be0741d185dc26463d0d2b1f8 159080 
graphicsmagick_1.3.16-1.1.diff.gz
 fff8e02dec29797face632b95ad319df101f52ae3f95ac8e4f8898afbf3aabb8 1029270 
graphicsmagick_1.3.16-1.1_amd64.deb
 9db0e50d550d786157e407f9bd82f87e14797428eb51cbe7dabe256b6ba5c99d 1319926 
libgraphicsmagick3_1.3.16-1.1_amd64.deb
 91391440b3a25b0ffac1e37a1d4d20416632fa9fed3e9b99caaa4153e6cf3e26 1815114 
libgraphicsmagick1-dev_1.3.16-1.1_amd64.deb
 b11b0c1f8a4aa84906afd5e37e5d95431d2447bbf0209cb1446e429458d90412 152838 
libgraphicsmagick++3_1.3.16-1.1_amd64.deb
 538929f48cd0c0e36d9815dba3d07333db092da3fd36b2ffb068c90c625c3dff 404920 
libgraphicsmagick++1-dev_1.3.16-1.1_amd64.deb
 78f42f63703bff932c4696d03882fd7fa794773be47d0f50405c370c01274106 81778 
libgraphics-magick-perl_1.3.16-1.1_amd64.deb
 a11a98eda512f6830e868d0f7f9d3462a6b665234cc95aa1041d97f2158bd491 3259936 
graphicsmagick-dbg_1.3.16-1.1_amd64.deb
 e668ea9a38776ff0881e05bdf58568896f91c8231978df42e678228fc4d95fc1 15934 
graphicsmagick-imagemagick-compat_1.3.16-1.1_all.deb
 2e3f415658aa0e33bebb484f47d8669af52e14ca0eed6516184ee3d40718d6a9 19526 
graphicsmagick-libmagick-dev-compat_1.3.16-1.1_all.deb
Files: 
 6fde843563e9bc3ddb8c59ff230c478f 2631 graphics optional 
graphicsmagick_1.3.16-1.1.dsc
 fbbe469f5af36c13c6ee291e9653b8c0 159080 graphics optional 
graphicsmagick_1.3.16-1.1.diff.gz
 73f93e72a106fa6f7106cf18e86f663b 1029270 graphics optional 
graphicsmagick_1.3.16-1.1_amd64.deb
 0e9a0f6fb975b861038e8c795a5c9bd9 1319926 libs optional 
libgraphicsmagick3_1.3.16-1.1_amd64.deb
 358c9a99a5ec67ccfbe3b121407f661d 1815114 libdevel optional 
libgraphicsmagick1-dev_1.3.16-1.1_amd64.deb
 fc56a8a1d2ead73bc3d842612cd2fa7e 152838 libs optional 
libgraphicsmagick++3_1.3.16-1.1_amd64.deb
 57d8825472bb1e680f53e4ff716b9838 404920 libdevel optional 
libgraphicsmagick++1-dev_1.3.16-1.1_amd64.deb
 f108935082f0b3fb41c5efc07512236f 81778 perl optional 
libgraphics-magick-perl_1.3.16-1.1_amd64.deb
 7af9126779a8a63254905af906c18815 3259936 debug extra 
graphicsmagick-dbg_1.3.16-1.1_amd64.deb
 532860ecf86bd62a4fcd48fc6b78ce40 15934 graphics extra 
graphicsmagick-imagemagick-compat_1.3.16-1.1_all.deb
 

Accepted iptables-persistent 0.5.6 (source all)

2012-08-20 Thread Andreas Rütten
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 02 Aug 2012 22:50:05 +0200
Source: iptables-persistent
Binary: iptables-persistent
Architecture: source all
Version: 0.5.6
Distribution: unstable
Urgency: low
Maintainer: Jonathan Wiltshire j...@debian.org
Changed-By: Andreas Rütten andreasruet...@gmx.de
Description: 
 iptables-persistent - boot-time loader for iptables rules
Closes: 679840
Changes: 
 iptables-persistent (0.5.6) unstable; urgency=low
 .
   * [6b6358] Instead of checking on modules, test a working iptables more
 directly (Closes: #679840)
   * [1db63c] Remove dependency on kmod
Checksums-Sha1: 
 29b3d320482d278fa9cebd7628abb16cb56e73b7 1675 iptables-persistent_0.5.6.dsc
 7d78c249de1d59e6170fb99095cd45ce7ad8b4c3 13028 iptables-persistent_0.5.6.tar.gz
 38603f83c92394a14713a569bb225323b58b9257 10236 
iptables-persistent_0.5.6_all.deb
Checksums-Sha256: 
 1ca22cf3c0fbba21f0f3c91c9f06d787562e19d2f9877886a5f84bb97f575a5e 1675 
iptables-persistent_0.5.6.dsc
 5204c5e718a2fdf9ef7248f169152cf10a8f37e301ca88d1ac78ee8233aa8f98 13028 
iptables-persistent_0.5.6.tar.gz
 e355e1957b226d26d8f4ef16ef579e95a64f3e9e0ed1ef331370babfe926cae4 10236 
iptables-persistent_0.5.6_all.deb
Files: 
 ea82795b7e1477df5a41ce0d72960f40 1675 admin optional 
iptables-persistent_0.5.6.dsc
 e1be2d7b55ff6330bbeddf4b250a9553 13028 admin optional 
iptables-persistent_0.5.6.tar.gz
 e8a439d51bd48c98f98f4db74a8c45f3 10236 admin optional 
iptables-persistent_0.5.6_all.deb

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

iQIcBAEBAgAGBQJQMkXZAAoJEFC7AtTIpr9hlLQP+wb0hIoC7yU33Tnrl7qhx6PE
MqHFlUEHI+sWWjkijBCYyP6MdiCWUqwKVqyBN2/k8jWXY+ZiRYz6EKZGGKdyw877
XIPLv+nv+lSG3RAjnQXaZEiyAw7XNPztr5MI5kH2g5eFpDhIRhimnPt27o+aNMi6
4nd3i6rlwDXTlatCodQaxgTgJrQQPobXPNnzUET1ub+kXzG/fOPWnhxrNJrpLK52
c+Bkcn1WlSeaR99QxiSlmZ7fKUlQXALN+qX9g+Ev3k+v7V2ISw6nXCSQGIzHyPpb
v3lxGXQ75p8oqCuIM4ZQ+FHs7rMg2OJ2cdRTm07A/OiIBLDkOYPBZo8+KTW9Ymjw
kkIQK148NeklpwU5owNLoux8YHKq8SKZhW+XsSB0NEkB3Ewts0nqIzm5EojOqZo1
kE+W3URiQn61nFXnxrSfRsnf49a8K6QT9tGdCrL43fUhPRac3wcAjlcfKoQDhPgy
sucZncsNFWslUFFAQEbupA+5h8jmZEes8gpjLgcbtktC3kP/qbo7ZVMQWRs58jUj
rqNNjRD/80XK49X9cIUit9Hh4hdfgzI5igHjgdcQyPTEci//S9QZtEprVZEGuWcj
cEu8t+fBN3916jXnQDWRwcI4z7qP1F/diXchjBCuHyroiMH9R1Xcu5Rbh9ktG2Mv
LNszCvjT3cXA9Zex9Imy
=7DwR
-END PGP SIGNATURE-


-- 
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/e1t3th1-00060n...@franck.debian.org



Accepted nuitka 0.3.24+ds-1 (source all)

2012-08-20 Thread Kay Hayen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 18 Aug 2012 21:19:17 +0200
Source: nuitka
Binary: nuitka
Architecture: source all
Version: 0.3.24+ds-1
Distribution: unstable
Urgency: low
Maintainer: Kay Hayen kayha...@gmx.de
Changed-By: Kay Hayen kayha...@gmx.de
Description: 
 nuitka - Python compiler with full language support and CPython compatibil
Closes: 682145 682146 683090
Changes: 
 nuitka (0.3.24+ds-1) unstable; urgency=low
 .
   * New upstream pre-release.
   * Detect the absence of g++ and gracefully fallback to the
 compiler depended on. (Closes: #682146)
   * Changed usage of temp files in developer scripts to be
 secure. (Closes: #682145)
   * Added support for DEB_BUILD_OPTIONS=nocheck to skip the
 test runs. (Closes: #683090)
Checksums-Sha1: 
 e5a22b015258ed9fb66124d1dbcac6c1254959a0 1432 nuitka_0.3.24+ds-1.dsc
 0a929f5b44d9be38ca331f0aa9fcafc31e2e3169 331482 nuitka_0.3.24+ds.orig.tar.gz
 0e29d35f57c7c62fe1cc66d37ad80774ff4190ee 6225 nuitka_0.3.24+ds-1.debian.tar.gz
 bea26593f1ca861e597b1ca56c201bddba7a83ed 343174 nuitka_0.3.24+ds-1_all.deb
Checksums-Sha256: 
 2b6722d480617646752543426f7e2e32370245e9a6f1f391332a1b4e63fada0e 1432 
nuitka_0.3.24+ds-1.dsc
 0bfc049b162b97eac0ba0554d67cf1f8c075da49f3fa705679617338491478fd 331482 
nuitka_0.3.24+ds.orig.tar.gz
 24df494eb337aceca641ea5becc979021cdd1a3dcf46d1bda2d143c9834025d0 6225 
nuitka_0.3.24+ds-1.debian.tar.gz
 fd2d23af251fef53970263de57bdbdb9d45c83dedb6bbd497168f39ad245d498 343174 
nuitka_0.3.24+ds-1_all.deb
Files: 
 ef87f7ddbf39b1be33d597431ab82ff1 1432 python optional nuitka_0.3.24+ds-1.dsc
 0e376fcacb55c939f43ad1df06f280b3 331482 python optional 
nuitka_0.3.24+ds.orig.tar.gz
 56180c5c898bea74432598308eefbe6b 6225 python optional 
nuitka_0.3.24+ds-1.debian.tar.gz
 c5f38809316b4915b047a01aa122c2ab 343174 python optional 
nuitka_0.3.24+ds-1_all.deb

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

iEYEARECAAYFAlAySskACgkQjRFFY3XAJMhtBACglYdyyFUeyebWyo+Ra0MBJcn7
vSQAn0SPdFE3UdAi0F4wZj6akyR8n1jI
=q/ov
-END PGP SIGNATURE-


-- 
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/e1t3th9-00062l...@franck.debian.org



Accepted x-tile 2.2.1-2 (source all)

2012-08-20 Thread Ricardo Mones
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 15:47:42 +0200
Source: x-tile
Binary: x-tile
Architecture: source all
Version: 2.2.1-2
Distribution: unstable
Urgency: low
Maintainer: Ricardo Mones mo...@debian.org
Changed-By: Ricardo Mones mo...@debian.org
Description: 
 x-tile - tile selected windows in different ways
Closes: 685386
Changes: 
 x-tile (2.2.1-2) unstable; urgency=low
 .
   * debian/control
   - Fix binary dependencies: add python-gconf, python-gtk2 and remove
 unused ${shlibs:Depends} (Closes: #685386)
   - Add Vcs headers pointing to git.debian.org
Checksums-Sha1: 
 9345fe1cf11e9253f5e4ac46de1ebfc935aaa48b 1197 x-tile_2.2.1-2.dsc
 610f31661655e90ecc1523bc1492312baccf4493 2800 x-tile_2.2.1-2.debian.tar.gz
 ae108d0e6d4961cf53204f4beac05d5f956f74c8 133030 x-tile_2.2.1-2_all.deb
Checksums-Sha256: 
 99b5410bc11efad5ee8689df8279c4ab3b3bf6babd4ccfff52f725c31c9185bf 1197 
x-tile_2.2.1-2.dsc
 391b2f256357db6ac81e62d4f8384b0a8ca5ba98a0f83b00db733774d4b58822 2800 
x-tile_2.2.1-2.debian.tar.gz
 e9b5af9473ad014a263f8c270dd0a7ca6d83b539352e9ede076a626c29051e31 133030 
x-tile_2.2.1-2_all.deb
Files: 
 2b79825a3b29e3276adff07a15b10e42 1197 x11 optional x-tile_2.2.1-2.dsc
 6bfeb38ab5cde291fa12496db518b4bb 2800 x11 optional x-tile_2.2.1-2.debian.tar.gz
 6b185bc913e91cd7c85ec4620a98623b 133030 x11 optional x-tile_2.2.1-2_all.deb

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

iEYEARECAAYFAlAyR6wACgkQLARVQsm1XayF0ACeL2TUQDgu+ScMXlhSClRMYqu2
0bUAoJ7XKEtRpXTFdHwx9D0BnDImxj8a
=MdQP
-END PGP SIGNATURE-


-- 
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/e1t3the-00063y...@franck.debian.org



Accepted vclt-tools 0.1.3-1 (source all)

2012-08-20 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 17:43:19 +0200
Source: vclt-tools
Binary: vclt-tools
Architecture: source all
Version: 0.1.3-1
Distribution: experimental
Urgency: low
Maintainer: Patrick Matthäi pmatth...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 vclt-tools - Collection of tools to create and manipulate VCLT playlists
Changes: 
 vclt-tools (0.1.3-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 35f5a1c8ccebddfd132cb455ed1d1d5a6f382233 1723 vclt-tools_0.1.3-1.dsc
 8584c6b624c45f458dda2273b2cae4ec46a5e4c3 19682 vclt-tools_0.1.3.orig.tar.gz
 8272b0e6a840f30504a7557c68cf833616f44db2 2529 vclt-tools_0.1.3-1.debian.tar.gz
 23cca072a7ab1c3f32a81a0d87277766b405ab33 8934 vclt-tools_0.1.3-1_all.deb
Checksums-Sha256: 
 d72b846cd85ba967ab864590de259900a66b6f908c7db2338853c6b877b65ad1 1723 
vclt-tools_0.1.3-1.dsc
 99977fd15336888c0d4828b58327e06e87eb1cd5741df668bca69095a7b27eff 19682 
vclt-tools_0.1.3.orig.tar.gz
 86a7eb776104642b70e7f46927ee6505c0f05bff29838f9614b8725f6c570efe 2529 
vclt-tools_0.1.3-1.debian.tar.gz
 fb286f770f979491484ed39e5af5939d9c7b66ad6e156027c297af5158571493 8934 
vclt-tools_0.1.3-1_all.deb
Files: 
 73ca71aface7fcda85f5132b16735cf9 1723 sound optional vclt-tools_0.1.3-1.dsc
 8a0bd0ea1834633043f700f129626058 19682 sound optional 
vclt-tools_0.1.3.orig.tar.gz
 5153d9b173793c154aa9a599df69367b 2529 sound optional 
vclt-tools_0.1.3-1.debian.tar.gz
 a465715466a84b171ba5664486f1b4d1 8934 sound optional vclt-tools_0.1.3-1_all.deb

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

iQIcBAEBCAAGBQJQMlwaAAoJEBLZsEqQy9jkvnAP/26QgyaCN5AEEZUZxKXAlkLS
9Eeh63jEAH31Q2e3/2z//z/EflsSjGyBHlfLHlHGEY2pn1gVnnvH7WOtzqKl1nZT
lWivFTH7FUPi0TmSeGfshUfdyKZ9MbDitdddsLgu1ujBiFNrhhOQVTsL485IrjOx
To+hZyQdRYJMnpixEXx4XNSCysB+HiMWwpVL60X/fwerCpMO//gxULeUGvTQgETg
Mf2ymnptXYTkTkrIg2AFFfOs6itViN21IIue4u7SCYshc3lcqpbhoMAunEWGGiew
Oa1T0+/HJyglV792TQtTtmAAB2JwuA3nxQQv2ZNtm9HQR48Pnd0UtBT7JS4aGwlC
4Zz3Fr7qO3RbNNDaxld2f8/S7enFFz2BBJWGAj8VDXoFAeLQaiWvatrHs5BAIWrY
bvuvy5eCXj1d7TBjgr6Cz0P1REFNDrs7DulhBVR+PiUg84VGuMHWdJjq5GPNPBuH
SYrz9+Zhj67mMBZva1mQhURjJSKQfk9IxF1PZFR3WTLr/genI95r67nypeQ4zOZk
AkkAg9c96tBbBjaywLZ3du5Pqb+wbUfKaXch5PCKp0Q4ykyPQEQpvdZCCEniWTXy
UwlbIlCx2B3G7VqQAHdIFNyVUi+r/1w7JQ67jx8SekpRO19HKJMWxkEyKGGngDB/
8bwSJoX/NQrbDeiwG947
=tDFZ
-END PGP SIGNATURE-


-- 
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/e1t3ur2-0005zh...@franck.debian.org



Accepted geoip-database-contrib 1.8 (source all)

2012-08-20 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 18:05:59 +0200
Source: geoip-database-contrib
Binary: geoip-database-contrib
Architecture: source all
Version: 1.8
Distribution: unstable
Urgency: low
Maintainer: Ludovico Cavedon cave...@debian.org
Changed-By: Patrick Matthäi pmatth...@debian.org
Description: 
 geoip-database-contrib - GeoLite binary database (downloader)
Closes: 684500 685385
Changes: 
 geoip-database-contrib (1.8) unstable; urgency=low
 .
   * Redirect STDOUT in cronjob to /dev/null.
 Closes: #684500
   * Add Slovak debconf translation.
 Closes: #685385
Checksums-Sha1: 
 8787b2a02b44f8f3c014c1621563a77148a2052f 1731 geoip-database-contrib_1.8.dsc
 057dee299abe9ed5cf1a28c1011ce91ec1557f7f 12240 
geoip-database-contrib_1.8.tar.gz
 d4cb433cabe10b65cc46f2d8d3990c30302d5886 10406 
geoip-database-contrib_1.8_all.deb
Checksums-Sha256: 
 64c289b73662b136b837b0103a950ff8c2b3fe2e77a07b6d15a6c8517b1d9e6d 1731 
geoip-database-contrib_1.8.dsc
 0e39ab72a4ff12ff000b0b78396f44e3b9d5ce3399e355ca1a9b13c385547d5f 12240 
geoip-database-contrib_1.8.tar.gz
 793436cb2d070dc342d27d2ed7ad5204e776d35ca7f7d8a8ea14fa6b7b442682 10406 
geoip-database-contrib_1.8_all.deb
Files: 
 8cc37c41cbd974e7adf994f6cf3f3175 1731 contrib/net optional 
geoip-database-contrib_1.8.dsc
 bcd6fe42eafaa5d9acdc330aef411d20 12240 contrib/net optional 
geoip-database-contrib_1.8.tar.gz
 7dc6b56548671b6e7e41087a675786fc 10406 contrib/net optional 
geoip-database-contrib_1.8_all.deb

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

iQIcBAEBCAAGBQJQMmEaAAoJEBLZsEqQy9jktykP/27eUuOq/Cdp0xys6cKlqhtd
/AaU7e2V9QLlgQse37AEZzxjn4NecIJo075w654fUFusQsg8yKSagXSb1BIII/wD
Td/NyLgzrmaLQw8IN+POWzl9592/VDyNBJF+rR0Os0TAqEJ+ZZH+F10FXlin0Esh
b+uMaMfiSvG/L06RnabR2rqUXNWvynVAJjuIqAbYEUMUggJPHvuftx3ypjJHakRO
WjTe+Tc8/Wvh5wo9PbELxvHv3xsLAg4CDqQ54LYtEp06brbnOSKUwa9fLEnNUnay
5w0ybB4mqunKlocSEhvFrnuEhLNFqaq7dbC5glpXYI7kTCiTuossb4mOT7z9A5Op
eOPecCVMGm2kq21yTJpO5vAdG4M9YzttT/lEZgw6slH8LgaPVTUrNbTUP9bgSWe9
scuqDXxGS3IXLEuo7pefIK3IhYvfV1KlZ9NQCQg/09nEMD5VLONwgCVPogakbGOi
kpDP4QFQ20ttqerpXdo/nYRyVFIm38gYm15Yo6/KmnE0z9H5mHRal7L0a5AP5CIA
z3lT40swz2J5EyLRbpg7EZoIt9zhUSuB4oAMFd29hWTSFleCT8DT7BXjgz2buSqz
SbzEClp7JnY0E/48j6C7W862jtCplv2SLx2y472MfjgG1MhOgQ5RhaDvJgn7Bl4y
fbfpRXfLHNb/GGfPnZyv
=zjN7
-END PGP SIGNATURE-


-- 
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/e1t3ufx-s4...@franck.debian.org



Accepted libdmtx 0.7.4-1 (source all i386)

2012-08-20 Thread Roberto Lumbreras
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 17:34:19 +0200
Source: libdmtx
Binary: libdmtx0a libdmtx-dev libdmtx-utils
Architecture: source all i386
Version: 0.7.4-1
Distribution: unstable
Urgency: low
Maintainer: Roberto Lumbreras ro...@debian.org
Changed-By: Roberto Lumbreras ro...@debian.org
Description: 
 libdmtx-dev - Data Matrix barcodes (development files and static libraries)
 libdmtx-utils - transitional package for dmtx-utils
 libdmtx0a  - Data Matrix barcodes (runtime library)
Changes: 
 libdmtx (0.7.4-1) unstable; urgency=low
 .
   * New upstream version. Source split in two tarballs: libdmtx and
 dmtx-utils (new package); libdmtx-utils becomes a transitional package
 for dmtx-utils.
Checksums-Sha1: 
 f4ad4108f9da2282a7a103c1c0c8604c60302926 1179 libdmtx_0.7.4-1.dsc
 016282df12c4046338b9ff73f3d8b39f023bae16 303176 libdmtx_0.7.4.orig.tar.bz2
 13aa7343606b434cd0afa5094b04e0c7cb750f5e 5006 libdmtx_0.7.4-1.debian.tar.gz
 8253e7ea0cacad7bc51737c730d672b3bf80e4c3 2810 libdmtx-utils_0.7.4-1_all.deb
 cfff76ea4f3d0a521d9ebdfb5b86ea0b76277bcd 60812 libdmtx0a_0.7.4-1_i386.deb
 6a6e80df5233c45967ec291a3f1e85fa35f24ecc 57592 libdmtx-dev_0.7.4-1_i386.deb
Checksums-Sha256: 
 70b799314ed9db5917d0db6fd87bfce86469b966ae5387f9097670359d0bec87 1179 
libdmtx_0.7.4-1.dsc
 b62c586ac4fad393024dadcc48da8081b4f7d317aa392f9245c5335f0ee8dd76 303176 
libdmtx_0.7.4.orig.tar.bz2
 e7d8647193f954817658755ef7bcf3b0ca55d551efdfa40e4a0e5a814eeb3056 5006 
libdmtx_0.7.4-1.debian.tar.gz
 e6c1f95c139217416965347ffeda601387c53605c908c16e8c0771c93c45f4fa 2810 
libdmtx-utils_0.7.4-1_all.deb
 a86818b1bfea20765ee73567ac03ade64bfc2cd58308b160ab2aa26d50d9fb2e 60812 
libdmtx0a_0.7.4-1_i386.deb
 d7401d7a27cf524786bc691740ba5a040171b4739ad5171011545e7c449f67b6 57592 
libdmtx-dev_0.7.4-1_i386.deb
Files: 
 2f16942ef9ef72961f147f6ce2c1ab7a 1179 libs optional libdmtx_0.7.4-1.dsc
 d3a4c0becd92895eb606dbdb78b023e2 303176 libs optional 
libdmtx_0.7.4.orig.tar.bz2
 40a3b233d698a56bcf7852fa9c67b00d 5006 libs optional 
libdmtx_0.7.4-1.debian.tar.gz
 a550202bd06e0e5e4f6cb564077ad61b 2810 oldlibs extra 
libdmtx-utils_0.7.4-1_all.deb
 405e5c276dd704741ada016ad122650a 60812 libs optional libdmtx0a_0.7.4-1_i386.deb
 172ce95a43b55e0df8507559215d9b2c 57592 libdevel optional 
libdmtx-dev_0.7.4-1_i386.deb

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

iD8DBQFQMl/RfIEQE/XJcI0RAiceAJ95JquEPYTy99+1zsQO3rvqIrknaQCfXgtw
ddlSaoj3k3a5VBoK8az5+6Q=
=jgIL
-END PGP SIGNATURE-


-- 
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/e1t3ufb-t6...@franck.debian.org



Accepted ruby-net-http-persistent 2.7-2 (source all)

2012-08-20 Thread Gunnar Wolf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 09 Aug 2012 18:47:53 -0500
Source: ruby-net-http-persistent
Binary: ruby-net-http-persistent
Architecture: source all
Version: 2.7-2
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: 
 ruby-net-http-persistent - Manages persistent connections using Net::HTTP
Closes: 684421
Changes: 
 ruby-net-http-persistent (2.7-2) unstable; urgency=low
 .
   * Skip the tests that require network connectivity to pass (Closes:
 #684421)
Checksums-Sha1: 
 0a5abd31f91f4808c5ae6735c913e99a33e1af60 2188 
ruby-net-http-persistent_2.7-2.dsc
 83b93200c90d908a586dee6881cf6838ee4de00d 3175 
ruby-net-http-persistent_2.7-2.debian.tar.gz
 7efe040d5e6baf583291551f955c105e3c0d7041 18656 
ruby-net-http-persistent_2.7-2_all.deb
Checksums-Sha256: 
 f0ac5ede63feec55f7fca173b68446134a27403f3130c85934d106237a91ee3f 2188 
ruby-net-http-persistent_2.7-2.dsc
 14fd66f19a21646a47fbef36d0b7df73703984a82f5c5a7629d402a8a2e7ea55 3175 
ruby-net-http-persistent_2.7-2.debian.tar.gz
 cdde0f156d5bf517ff6685fab8ee082e633f7052c05067ef3a5ab8b6a432281d 18656 
ruby-net-http-persistent_2.7-2_all.deb
Files: 
 ffa94042d3f2190bc499a86bb3af4e49 2188 ruby optional 
ruby-net-http-persistent_2.7-2.dsc
 4105832c2ef1ed9e80de535d63190902 3175 ruby optional 
ruby-net-http-persistent_2.7-2.debian.tar.gz
 87559dfc610de08d755cc8fe12e215f9 18656 ruby optional 
ruby-net-http-persistent_2.7-2_all.deb

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

iQIcBAEBCAAGBQJQMneeAAoJEGc6A+TB25IffHAP/iVDXuoZR0m8ssQDzpi/YjYl
XbrzfirKMcaKSOEPhWk2sKKdUWuZ4bbE6Yve1BDQ7PE5hmFHrah/FZErLWa5J86q
nkFxLIX6AydMqeVDjOLh1HW8YVZatYx93/glnIwLYixwm5Clij2qAXBcVtIqGKHy
7eZulBc7w2P6Q3+4ugMm2DAFfVlRaoJpickWxMYR71aeG53x55p0etEggxJgK+5T
seJJcSAHGKhgzUQjE8TWVCPFmqRwmTZKgaoXQ2583TifMFocHGRtSB8OEFufiSdF
/YsPxiaYTTZ/3ZK5zGRHwwfxx84ib+Be4fE2LCtS/JtjP0W0lO/+ZnO8xZQMWHpq
BQ1Ya1BpibfDNJPYq6VsoxyY+xngQcxZK0jNZkY1E5uHU8iUXd90zj0p/VQF7bhr
5fxvyqTZeZZ04cos3/n6QJAgIlLgfT4LpGzQN/iUz3UO5hfeIN1SEj6QncR3pdax
LqNJBmBWKtu95feeRHaPExORlgCVez5XJEqn8HoHHAf8U5iKqEY00psqSFG3bDKM
qptC+3mXq3safG3eFuUkXUCS9oRYzyZLweUkxie1GrFKLChdN5tjYSydIHHWtco0
/eJBBE3hUA1o+cvHCfXrKeRUuJon1ykw70G0HP1XgxP8yoskFW4obXo285ntA7yA
ykrYWQmXhd7Pe7OGfCE/
=lIgp
-END PGP SIGNATURE-


-- 
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/e1t3wjc-0008wn...@franck.debian.org



Accepted tarantool 1.4.7+20120820-1 (source all i386)

2012-08-20 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 20 Aug 2012 21:42:21 +0400
Source: tarantool
Binary: tarantool-common tarantool tarantool-dbg tarantool-client 
tarantool-client-dbg libtarantool1 libtarantool1-dbg libtarantool-dev 
libtarantoolnet1 libtarantoolnet1-dbg libtarantoolsql1 libtarantoolsql1-dbg 
libtarantoolrpl1 libtarantoolrpl1-dbg
Architecture: source all i386
Version: 1.4.7+20120820-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 libtarantool-dev - high performance key/value storage server
 libtarantool1 - high performance key/value storage server
 libtarantool1-dbg - high performance key/value storage server
 libtarantoolnet1 - high performance key/value storage server
 libtarantoolnet1-dbg - high performance key/value storage server
 libtarantoolrpl1 - high performance key/value storage server
 libtarantoolrpl1-dbg - high performance key/value storage server
 libtarantoolsql1 - high performance key/value storage server
 libtarantoolsql1-dbg - high performance key/value storage server
 tarantool  - high performance key/value storage server
 tarantool-client - high performance key/value storage server
 tarantool-client-dbg - high performance key/value storage server
 tarantool-common - high performance key/value storage server
 tarantool-dbg - high performance key/value storage server
Changes: 
 tarantool (1.4.7+20120820-1) unstable; urgency=low
 .
   * New snapshot (fixed tuple:transform crash).
Checksums-Sha1: 
 cdc5e46bb6d899068fe7cfd9942173573f30749c 2218 tarantool_1.4.7+20120820-1.dsc
 46a97cb9b54a761bd11d8fba572a9ca093994324 2172469 
tarantool_1.4.7+20120820.orig.tar.gz
 6a69b220d64b57e53bd2491dbe1e4044d8a0dff8 13852 
tarantool_1.4.7+20120820-1.debian.tar.gz
 d2cc6dcd6dc0314e62aa54a17ed9f8326dd13ece 21818 
tarantool-common_1.4.7+20120820-1_all.deb
 784ffebcbbec104ce59cfbbf5783970504e13c8e 446678 
tarantool_1.4.7+20120820-1_i386.deb
 1c316bf5d47ceab04551d5dcf896be5b25b9cf91 1158120 
tarantool-dbg_1.4.7+20120820-1_i386.deb
 94e4a300e8f9e37a8a8efd0ca3cfcf03ca65d760 53322 
tarantool-client_1.4.7+20120820-1_i386.deb
 74f101f36caf6df559342354e91549541c83fd88 94998 
tarantool-client-dbg_1.4.7+20120820-1_i386.deb
 36a563c421a885ef680b3acd56f61e60fab24e94 20002 
libtarantool1_1.4.7+20120820-1_i386.deb
 790a535841a7605855ccc43bea90f7d645e4ad3c 32016 
libtarantool1-dbg_1.4.7+20120820-1_i386.deb
 3080a54d0f3a06340c5c060b6e83e31cd84d7913 53324 
libtarantool-dev_1.4.7+20120820-1_i386.deb
 263cfa81b5e5f585b3130d975fb91a800de22a9c 17050 
libtarantoolnet1_1.4.7+20120820-1_i386.deb
 9c4e44bed905d2efb4c233c862d1819c1d301670 25082 
libtarantoolnet1-dbg_1.4.7+20120820-1_i386.deb
 52fada69c2a960a7287e2f1c180fe5e529b2935d 17718 
libtarantoolsql1_1.4.7+20120820-1_i386.deb
 3cf2230fe0496e078b27cd78af4fc42e953be6b3 27452 
libtarantoolsql1-dbg_1.4.7+20120820-1_i386.deb
 9d5adb157846425122efb190a9cff08e3c87ce49 24314 
libtarantoolrpl1_1.4.7+20120820-1_i386.deb
 17077924adeedb577fd5aae9879070b0ce3ff864 21660 
libtarantoolrpl1-dbg_1.4.7+20120820-1_i386.deb
Checksums-Sha256: 
 a9d2343a40ef93b362710eca77b268e48c3ac4c8debd2bb3de75379f532eed88 2218 
tarantool_1.4.7+20120820-1.dsc
 9341caa8b3731c473e6024147f2d87f3db20c50ebb6e9fa40eb9b739a901cebc 2172469 
tarantool_1.4.7+20120820.orig.tar.gz
 17f0c2d1d44cdda86961ce4f3ab313abb04131389a425ef96f854496a94298f3 13852 
tarantool_1.4.7+20120820-1.debian.tar.gz
 336e7554e00555b84f224c05a1efcac9b2955c53b765b7047dc0e698ce89905c 21818 
tarantool-common_1.4.7+20120820-1_all.deb
 c9d2167f12e772d0feed88734034fd4627f342933f15578e14694b871ffbb187 446678 
tarantool_1.4.7+20120820-1_i386.deb
 fd26b70e2507c6dc005bc171703ad8761688be495ff958643b08b42f19399b25 1158120 
tarantool-dbg_1.4.7+20120820-1_i386.deb
 aa12786954a10dc5876970c8c6cf04ece0d5cbde73b64b8ff5896dd7491e6ebf 53322 
tarantool-client_1.4.7+20120820-1_i386.deb
 9d6202064102ca1ecf343990178eec18404675019c51f1a3cce64b47681e780d 94998 
tarantool-client-dbg_1.4.7+20120820-1_i386.deb
 b7fef737ab4b333d901d1b17a3148643b5bf59060668ff8c5772b8c913e908c4 20002 
libtarantool1_1.4.7+20120820-1_i386.deb
 10efd657d91ebdcbc44ff0a248b341b9c4a81d42dbbad2697de25a1192f83ed8 32016 
libtarantool1-dbg_1.4.7+20120820-1_i386.deb
 17e94493e9b1599a7fa18e93ee307498d01e260f369c484ae54e361700a294e5 53324 
libtarantool-dev_1.4.7+20120820-1_i386.deb
 4f6df283547735de95b37d851ed53c4a85ec88af35f2f9ad5dbdb42e24b6f211 17050 
libtarantoolnet1_1.4.7+20120820-1_i386.deb
 8028de74880f866473f21038670218aa34eaf3411549a1f48397b93e379cd7d0 25082 
libtarantoolnet1-dbg_1.4.7+20120820-1_i386.deb
 41e520a8ae88bbb90c222b3df56d7c9da4b4a0b5a602dcdf1a37cf057a8e45b4 17718 
libtarantoolsql1_1.4.7+20120820-1_i386.deb
 3761d51b521ee27e9f376e43f9465ce72d7715779b43d08566f93ab587d2bb43 27452 
libtarantoolsql1-dbg_1.4.7+20120820-1_i386.deb
 54c9f9236ba9d1acc9e3b308f7129cfa05b800edcecaf3989d04dd44aa840c8f 24314 
libtarantoolrpl1_1.4.7+20120820-1_i386.deb

Accepted vera++ 1.1.1-2 (source amd64)

2012-08-20 Thread Vincent Hobeïka
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 12:22:32 +0200
Source: vera++
Binary: vera++
Architecture: source amd64
Version: 1.1.1-2
Distribution: unstable
Urgency: low
Maintainer: Vincent Hobeïka vincent.hobe...@gmail.com
Changed-By: Vincent Hobeïka vincent.hobe...@gmail.com
Description: 
 vera++ - Programmable verification and analysis tool for C++
Closes: 685168
Changes: 
 vera++ (1.1.1-2) unstable; urgency=low
 .
   * Hardening flags fix (Closes: #685168).
Checksums-Sha1: 
 ade586068c5c248089e564b4af56b0723fa88ad2 1131 vera++_1.1.1-2.dsc
 36b739d56be08a02b24e841a3a11894e51739058 7476 vera++_1.1.1-2.debian.tar.gz
 806dfbfd305c8be165f20e66a6b768291cae48a4 148704 vera++_1.1.1-2_amd64.deb
Checksums-Sha256: 
 dc290b2706a8f1902df45d11f17fdc8c024c2232a0379e348f0e378693283eba 1131 
vera++_1.1.1-2.dsc
 78e904364a01e0c8742ad7849ddb9a45d8356d9b85c812bc81899034410a 7476 
vera++_1.1.1-2.debian.tar.gz
 0ca278b7b69c8aa5b158d949cca8cc7e21f7a7e5a69970add0315360c08987c2 148704 
vera++_1.1.1-2_amd64.deb
Files: 
 2703cf0208d686eae44ccc08790e 1131 devel extra vera++_1.1.1-2.dsc
 b2dd3e7b55f4c6807f035facfc139587 7476 devel extra vera++_1.1.1-2.debian.tar.gz
 3b4ac06d38c0abbb4b9f0cc77e8b3927 148704 devel extra vera++_1.1.1-2_amd64.deb

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

iEYEARECAAYFAlAyeCEACgkQ02K2KlS5mJCPZQCfbdHFh0tCU5opWzrMXNZhrRx2
gaIAn1Xfqy/H6WZ1N+E4HZVej8EfwuK+
=XWLZ
-END PGP SIGNATURE-


-- 
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/e1t3wjp-7k...@franck.debian.org



Accepted eucalyptus 3.1.0-7 (source all amd64)

2012-08-20 Thread Brian Thomason
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 16:04:03 +
Source: eucalyptus
Binary: eucalyptus-common eucalyptus-sc eucalyptus-cloud eucalyptus-walrus 
eucalyptus-java-common eucalyptus-cc eucalyptus-nc eucalyptus-gl 
eucalyptus-admin-tools python-eucadmin
Architecture: source all amd64
Version: 3.1.0-7
Distribution: unstable
Urgency: low
Maintainer: Debian Eucalyptus Maintainers 
pkg-eucalyptus-maintain...@lists.alioth.debian.org
Changed-By: Brian Thomason brian.thoma...@eucalyptus.com
Description: 
 eucalyptus-admin-tools - Elastic Utility Computing Architecture - admin CLI 
tools
 eucalyptus-cc - Elastic Utility Computing Architecture - Cluster controller
 eucalyptus-cloud - Elastic Utility Computing Architecture - Cloud controller
 eucalyptus-common - Elastic Utility Computing Architecture - Common files
 eucalyptus-gl - Elastic Utility Computing Architecture - Logging service
 eucalyptus-java-common - Elastic Utility Computing Architecture - Common Java 
package
 eucalyptus-nc - Elastic Utility Computing Architecture - Node controller
 eucalyptus-sc - Elastic Utility Computing Architecture - Storage controller
 eucalyptus-walrus - Elastic Utility Computing Architecture - Walrus (S3)
 python-eucadmin - Elastic Utility Computing Architecture - python-eucadmin
Changes: 
 eucalyptus (3.1.0-7) unstable; urgency=low
 .
   * Fixed lintian error that was somehow re-introduced on last upload
 - Using (= ${source:Version}) rather than (= ${binary:Version}) on python
   packages
Checksums-Sha1: 
 ca521feca1adf37a85a8bdd288bee6b7b4917c7e 4975 eucalyptus_3.1.0-7.dsc
 867a82b3a7b18fbdc7be25c72ee2c7827617f404 28627 eucalyptus_3.1.0-7.debian.tar.gz
 80ba018a32eb8d19202614f49bda1bd01bb2b2f8 20144 
eucalyptus-admin-tools_3.1.0-7_all.deb
 6bd692621f0a3961765b5375e193f5fa89b92463 32154 python-eucadmin_3.1.0-7_all.deb
 7581e39ee4bb3284a5c6b533d406296269def48c 216796 
eucalyptus-common_3.1.0-7_amd64.deb
 4ef95285cc486705a04a9049a7ee72ea7e6c0816 15710 eucalyptus-sc_3.1.0-7_amd64.deb
 483293a31d8da30080ffe1940a0b7865e023d22c 12822 
eucalyptus-cloud_3.1.0-7_amd64.deb
 4c6df33f442dc979a25738d262da7e6c2df1a164 10090 
eucalyptus-walrus_3.1.0-7_amd64.deb
 44bfae4fecb979e579856470a815f2779f6ce229 5192026 
eucalyptus-java-common_3.1.0-7_amd64.deb
 65061c05c9a07e58a3566398773ba519c5b6c89e 2141386 
eucalyptus-cc_3.1.0-7_amd64.deb
 51e556fcc551f6c658ff81bebb84ed9d0302db73 641130 eucalyptus-nc_3.1.0-7_amd64.deb
 5372662c944b29dd1ceeb1d929c5b99cab615a59 95594 eucalyptus-gl_3.1.0-7_amd64.deb
Checksums-Sha256: 
 56753cb8876edf9a7d8c82161fda2b1a322dbd5e63e2cf9df1d61f81fdba5782 4975 
eucalyptus_3.1.0-7.dsc
 6f0f988f55d58a0a1affad70016b25d7420f3533f696a42daf2751f4b92b08d7 28627 
eucalyptus_3.1.0-7.debian.tar.gz
 35b3a73c4a77a67f05bb0d88d50f0276108df5ca12ec81af0dd7af55759cdf63 20144 
eucalyptus-admin-tools_3.1.0-7_all.deb
 a84eb8dab6c0bf608f281fc7fa6b8fbfffec4d7a1b398a0d72c1cfcf575970ee 32154 
python-eucadmin_3.1.0-7_all.deb
 e2d3e6e55168ff6e5091b5a6702540d196a4a9303a87e1a52e26d6b1a5089685 216796 
eucalyptus-common_3.1.0-7_amd64.deb
 ad22dc8a69de0c05b02a5e22cd316655bd25c80a301d338a2ba44f5065daf45e 15710 
eucalyptus-sc_3.1.0-7_amd64.deb
 28d2cebd7f5c2d526eb302a64d741dc6e8835937ba06d498850e3f82499a808b 12822 
eucalyptus-cloud_3.1.0-7_amd64.deb
 1e0db7a8a00cd0167c111fe72f3fc177417cf28701b88e449feb30ceda7b836e 10090 
eucalyptus-walrus_3.1.0-7_amd64.deb
 f4f29a314d7eae60dcfce647660e12a61befde2a738e55f0cd6cef9b906cc73f 5192026 
eucalyptus-java-common_3.1.0-7_amd64.deb
 91e06d7d644421799e5d0f9ec052e55d754b6221a1d7edc370359cb39355c579 2141386 
eucalyptus-cc_3.1.0-7_amd64.deb
 1046c56fded05d528abd8132871b0a1d109a5060b3d5554b6edb284d1ab7806b 641130 
eucalyptus-nc_3.1.0-7_amd64.deb
 ef2b664c7cec79b78d63f3059cf57c063e82d66e3f9605383beaad5d4ffcccd4 95594 
eucalyptus-gl_3.1.0-7_amd64.deb
Files: 
 19dd406eeb9c146ac9eb527b72bccf42 4975 admin extra eucalyptus_3.1.0-7.dsc
 90acb326402bcb8c47537424023004f8 28627 admin extra 
eucalyptus_3.1.0-7.debian.tar.gz
 5ecab26073fb880cde8f0ed8c209c542 20144 admin extra 
eucalyptus-admin-tools_3.1.0-7_all.deb
 2647f4fb44b05e2ff450834609cc60b7 32154 python extra 
python-eucadmin_3.1.0-7_all.deb
 7da8ac14f5117b8b9ca0e1ea6d6ea414 216796 admin extra 
eucalyptus-common_3.1.0-7_amd64.deb
 0f2c70866e6da9ed601e25fcc15461f6 15710 admin extra 
eucalyptus-sc_3.1.0-7_amd64.deb
 7a9138301a29b79421707420ce809189 12822 admin extra 
eucalyptus-cloud_3.1.0-7_amd64.deb
 9fc7baa8d689a918b46e6131a4160a71 10090 admin extra 
eucalyptus-walrus_3.1.0-7_amd64.deb
 a48918bcc7a93703e3e7f3789dfa40ae 5192026 admin extra 
eucalyptus-java-common_3.1.0-7_amd64.deb
 40d299a32b8c6006d08ea31339d1e32e 2141386 admin extra 
eucalyptus-cc_3.1.0-7_amd64.deb
 dda28bf67c70a7d2a746b419e77be172 641130 admin extra 
eucalyptus-nc_3.1.0-7_amd64.deb
 62da98e541ddaf32391e64d41b0198e0 95594 admin extra 
eucalyptus-gl_3.1.0-7_amd64.deb

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


Accepted libdr-tarantool-perl 0.22-1 (source amd64)

2012-08-20 Thread Dmitry E. Oboukhov
-BEGIN PGP SIGNED MESSAGE-
Hash: RIPEMD160

Format: 1.8
Date: Mon, 20 Aug 2012 21:19:44 +0400
Source: libdr-tarantool-perl
Binary: libdr-tarantool-perl
Architecture: source amd64
Version: 0.22-1
Distribution: unstable
Urgency: low
Maintainer: Dmitry E. Oboukhov un...@debian.org
Changed-By: Dmitry E. Oboukhov un...@debian.org
Description: 
 libdr-tarantool-perl - perl driver for Tarantool
Changes: 
 libdr-tarantool-perl (0.22-1) unstable; urgency=low
 .
   * Prebuild tuple packages (so it doesn't use AUTOLOAD anymore).
Checksums-Sha1: 
 c92be99439801c9f2d103fad3bdd30eed3c9c368 1363 libdr-tarantool-perl_0.22-1.dsc
 797652fb73a25a387dd7bef6e727b257b542abbf 36384 
libdr-tarantool-perl_0.22.orig.tar.gz
 5836d2924b9fab411806b0d386179ddd99e0ef58 2435 
libdr-tarantool-perl_0.22-1.debian.tar.gz
 d7b685cd7a82e8d5ab0473e2d31b9b6ac8f597fa 63262 
libdr-tarantool-perl_0.22-1_amd64.deb
Checksums-Sha256: 
 30083b7a3db4bbdc946e6caa3ac909f8541e50e46767b4be863c19fe4f3e562c 1363 
libdr-tarantool-perl_0.22-1.dsc
 3734842a5e89ca4b5f6ff6f82ed349397885ab798da6ca2777f330692c54d8d8 36384 
libdr-tarantool-perl_0.22.orig.tar.gz
 3d5a95d58fcb161c34fdabb2c9cdc8029e69b8a212932eb0018b157a0a3d3ddd 2435 
libdr-tarantool-perl_0.22-1.debian.tar.gz
 e91709e86c99b52970ebd9d2999ab203c69fdc67e95226c4df27b2acdfe90678 63262 
libdr-tarantool-perl_0.22-1_amd64.deb
Files: 
 2f69ed0028488eefc66172308f197804 1363 perl extra 
libdr-tarantool-perl_0.22-1.dsc
 d60c61721b45d6849195a7133f31bb70 36384 perl extra 
libdr-tarantool-perl_0.22.orig.tar.gz
 f091c8f2ea5e8c9ec630cda1d5f5d6df 2435 perl extra 
libdr-tarantool-perl_0.22-1.debian.tar.gz
 8aab54688cee8f90965844250f73fb99 63262 perl extra 
libdr-tarantool-perl_0.22-1_amd64.deb

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

iEYEAREDAAYFAlAycfkACgkQq4wAz/jiZTdMBgCfe9U72xcoRWcHGYNJnj0diUwD
IvkAoK9P6T7hDjq56S8C06Yl7BjYViTs
=mfh3
-END PGP SIGNATURE-


-- 
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/e1t3vql-00018p...@franck.debian.org



Accepted eucalyptus 3.1.0-8 (source all amd64)

2012-08-20 Thread Brian Thomason
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 12:55:23 -0400
Source: eucalyptus
Binary: eucalyptus-common eucalyptus-sc eucalyptus-cloud eucalyptus-walrus 
eucalyptus-java-common eucalyptus-cc eucalyptus-nc eucalyptus-gl 
eucalyptus-admin-tools python-eucadmin
Architecture: source all amd64
Version: 3.1.0-8
Distribution: unstable
Urgency: low
Maintainer: Debian Eucalyptus Maintainers 
pkg-eucalyptus-maintain...@lists.alioth.debian.org
Changed-By: Brian Thomason brian.thoma...@eucalyptus.com
Description: 
 eucalyptus-admin-tools - Elastic Utility Computing Architecture - admin CLI 
tools
 eucalyptus-cc - Elastic Utility Computing Architecture - Cluster controller
 eucalyptus-cloud - Elastic Utility Computing Architecture - Cloud controller
 eucalyptus-common - Elastic Utility Computing Architecture - Common files
 eucalyptus-gl - Elastic Utility Computing Architecture - Logging service
 eucalyptus-java-common - Elastic Utility Computing Architecture - Common Java 
package
 eucalyptus-nc - Elastic Utility Computing Architecture - Node controller
 eucalyptus-sc - Elastic Utility Computing Architecture - Storage controller
 eucalyptus-walrus - Elastic Utility Computing Architecture - Walrus (S3)
 python-eucadmin - Elastic Utility Computing Architecture - python-eucadmin
Changes: 
 eucalyptus (3.1.0-8) unstable; urgency=low
 .
   * Really fixed lintian error this time
Checksums-Sha1: 
 6f0b504b6ef08aa3ad0554c98797130514e3b39c 4975 eucalyptus_3.1.0-8.dsc
 00a5716fa980c3a0b8e9c3d0728d630b6ff5a8a3 28616 eucalyptus_3.1.0-8.debian.tar.gz
 611004879bf4f0f3c8da41b7a5b34b3d43419417 20174 
eucalyptus-admin-tools_3.1.0-8_all.deb
 1fb30f277b18894506eee19d70109ffe55a6e65a 32180 python-eucadmin_3.1.0-8_all.deb
 cd10f2fff657195c6e460e647fd94026989918b2 216822 
eucalyptus-common_3.1.0-8_amd64.deb
 c228330e32aabb1eb7b470fed0d0ff15798ed1b3 15736 eucalyptus-sc_3.1.0-8_amd64.deb
 1a816db32489938168fb1c9a559f0a8bd00cb2f6 12846 
eucalyptus-cloud_3.1.0-8_amd64.deb
 33eeafca5d891294cb63c9c33594811daa744e51 10122 
eucalyptus-walrus_3.1.0-8_amd64.deb
 37f074cda0af15f40281d8c78ac294dfec98545f 5191170 
eucalyptus-java-common_3.1.0-8_amd64.deb
 a5855039120041694fbb2bcb686ce70b183694ce 2141406 
eucalyptus-cc_3.1.0-8_amd64.deb
 4daa28151d0d107c28f0721631d752c6c18c1529 641142 eucalyptus-nc_3.1.0-8_amd64.deb
 679201438a11eca4304a14e3feb727f3b26f5f38 95614 eucalyptus-gl_3.1.0-8_amd64.deb
Checksums-Sha256: 
 efd2cc0c59db957fbafe9ce3212d8b3abfd4a688b574d902c258230e5fa32e1b 4975 
eucalyptus_3.1.0-8.dsc
 df38fee5b40e369d1a6760db983fa9716cf2cfab4a8222f79c2158a3dc5d2828 28616 
eucalyptus_3.1.0-8.debian.tar.gz
 644ba45fbd6e8d7276b9fb23fe9a2b861e9561a379477006d9ca76be65462468 20174 
eucalyptus-admin-tools_3.1.0-8_all.deb
 362e3f7c2192283e0a9680f16090bbddb3ab4c7545788784fbca39705c7837b8 32180 
python-eucadmin_3.1.0-8_all.deb
 9b2365528286f16db2ef1492c8c7d56ae12ebaec8e4d458985db2205d8c03079 216822 
eucalyptus-common_3.1.0-8_amd64.deb
 22a60ba78787f13636c84cf4370cc132d3145a30fc90b49ce7be4b7ebd1cb579 15736 
eucalyptus-sc_3.1.0-8_amd64.deb
 0598249ba90fdd823c12b76105b422422e735aeab0b40f99c2f21a3f7be8eb71 12846 
eucalyptus-cloud_3.1.0-8_amd64.deb
 cdcd4dee02058a267bbb543e50d56b2666553de9acc1d1b4d54f47d2c54c79cc 10122 
eucalyptus-walrus_3.1.0-8_amd64.deb
 f4b25f07d1d64839759df7356b65daa9d01709b09ede2d1f85c524003505d0ea 5191170 
eucalyptus-java-common_3.1.0-8_amd64.deb
 95af0eac5418d9842a5e765ec91eda865a825a1d149a6a618525a594bc53079e 2141406 
eucalyptus-cc_3.1.0-8_amd64.deb
 59f01ba449d7397b121dcff05bb371e101db4ae31f55285af11d53b05064749f 641142 
eucalyptus-nc_3.1.0-8_amd64.deb
 b7420bd93cb357156c5ab7b84c49d4e52d497dd6e7bad8e03ed9a1c49a82146f 95614 
eucalyptus-gl_3.1.0-8_amd64.deb
Files: 
 5042a4e41bc8051a343d3860252e4c79 4975 admin extra eucalyptus_3.1.0-8.dsc
 6acdb60426a436f5ef5d79a7b6bd5770 28616 admin extra 
eucalyptus_3.1.0-8.debian.tar.gz
 aedf3c5b52a8579165dbfc2a2edd4dc1 20174 admin extra 
eucalyptus-admin-tools_3.1.0-8_all.deb
 8f5fbf9c215d078c32a8d4c7295fa3a5 32180 python extra 
python-eucadmin_3.1.0-8_all.deb
 7c072510b7f3b08553398b81239abdcb 216822 admin extra 
eucalyptus-common_3.1.0-8_amd64.deb
 3425ec01ec16d9d9634fee0405e6f533 15736 admin extra 
eucalyptus-sc_3.1.0-8_amd64.deb
 2524accc5594c412a9454b682bdc330b 12846 admin extra 
eucalyptus-cloud_3.1.0-8_amd64.deb
 7720eef33d2916a43faaee5eaff5be16 10122 admin extra 
eucalyptus-walrus_3.1.0-8_amd64.deb
 87e40787becfab888c978a10c521b99f 5191170 admin extra 
eucalyptus-java-common_3.1.0-8_amd64.deb
 23a02097912d3ee649b844bb5ca84c9f 2141406 admin extra 
eucalyptus-cc_3.1.0-8_amd64.deb
 d6e74670a2110b673c9030b6ad93f0a4 641142 admin extra 
eucalyptus-nc_3.1.0-8_amd64.deb
 41bfa33206da9a5cb532a5f39e14fc6d 95614 admin extra 
eucalyptus-gl_3.1.0-8_amd64.deb

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

iQIcBAEBAgAGBQJQMnDnAAoJEJJYp5hRP4bNwo4P/RdeEL2nLHl+O8gwjLibZOMu
0cCEBxCWlu1xJCQatYQCv1r8bUrw63u0jyH0WmeYQpbyFzQlIlV5CSX+nmnYREPi

Accepted coq 8.4dfsg-1 (source amd64 all)

2012-08-20 Thread Stéphane Glondu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 20 Aug 2012 18:33:45 +0200
Source: coq
Binary: coq coqide coq-theories libcoq-ocaml libcoq-ocaml-dev
Architecture: source amd64 all
Version: 8.4dfsg-1
Distribution: experimental
Urgency: low
Maintainer: Debian OCaml Maintainers debian-ocaml-ma...@lists.debian.org
Changed-By: Stéphane Glondu glo...@debian.org
Description: 
 coq- proof assistant for higher-order logic (toplevel and compiler)
 coq-theories - proof assistant for higher-order logic (theories)
 coqide - proof assistant for higher-order logic (gtk interface)
 libcoq-ocaml - runtime libraries for Coq
 libcoq-ocaml-dev - development libraries and tools for Coq
Changes: 
 coq (8.4dfsg-1) experimental; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 71cd0545debf2b1e353050e38f24ca9d21a58fac 2308 coq_8.4dfsg-1.dsc
 5523bbcf9a2be3d014bd5675dd50b61fb2826022 3520127 coq_8.4dfsg.orig.tar.gz
 7e0be632e05f35a62a129051854f3b04027df9c3 16914 coq_8.4dfsg-1.debian.tar.gz
 6d34210a6d6d45bfaed02f0bfe984651dd49a120 6049498 coq_8.4dfsg-1_amd64.deb
 9470d0edf5ee0bb0f5c301281d641b26dd334975 1064982 coqide_8.4dfsg-1_amd64.deb
 199ff280eef4b2ee3d1107c059fb112e499adc3a 66323632 
coq-theories_8.4dfsg-1_all.deb
 cce2e585542f9ceaddecd332d70443b2ecfdab59 2252960 
libcoq-ocaml_8.4dfsg-1_amd64.deb
 da3841bd582d9b84687ae06609e17141cefbb2ec 5783616 
libcoq-ocaml-dev_8.4dfsg-1_amd64.deb
Checksums-Sha256: 
 78687958a8f91e83d4be752685e903642bb3db93f26a6e4103b55a90f61e77bd 2308 
coq_8.4dfsg-1.dsc
 661e44b5355d36487ffd6e92a7cf707973c04c27348bc9f66b286bfeabd253f1 3520127 
coq_8.4dfsg.orig.tar.gz
 14b6d0719d6f595f5972d8f63e503e50c5cc20971d5c044b69efdb05f3d62eb4 16914 
coq_8.4dfsg-1.debian.tar.gz
 6c971f523dbd4d091bb3389ea51e33252c36cdcd40d7d13f32a80803d12e6c12 6049498 
coq_8.4dfsg-1_amd64.deb
 0010a9d4a4ab6c6638c808a5f0e2ed00fda3e47b400dc8d2e3116a5dbd4deedf 1064982 
coqide_8.4dfsg-1_amd64.deb
 fd0d96a36e6cdd525794f4f5839b4eefb913b13e74931219f60975d1b732a3a3 66323632 
coq-theories_8.4dfsg-1_all.deb
 218db793e564b85bfdb08fefdbec17e2ca76352f3c03b67cddf2a24726c6a878 2252960 
libcoq-ocaml_8.4dfsg-1_amd64.deb
 91dcce9c66851d4643f5b75115a9a3ed32aa7cbbccf8e13f2a97273d4432e96b 5783616 
libcoq-ocaml-dev_8.4dfsg-1_amd64.deb
Files: 
 887a7a9011901e2b58808e0a400f734b 2308 math optional coq_8.4dfsg-1.dsc
 70c313a0fc9bc0e6e29efef4955fba66 3520127 math optional coq_8.4dfsg.orig.tar.gz
 4c519b62810ddbfc764ccfe6bd2420f9 16914 math optional 
coq_8.4dfsg-1.debian.tar.gz
 3ed9e0554c09578ca748cf43af70b393 6049498 math optional coq_8.4dfsg-1_amd64.deb
 0a52d0e1e2fc2a0b47d0eae29bbb 1064982 math optional 
coqide_8.4dfsg-1_amd64.deb
 cb0bf648fec1a75f8f990fdd1e84229f 66323632 math optional 
coq-theories_8.4dfsg-1_all.deb
 dc32d60d662ec181b4ebab3ffcb11624 2252960 ocaml optional 
libcoq-ocaml_8.4dfsg-1_amd64.deb
 6cbc11274984c214fd26cac514884c1b 5783616 ocaml optional 
libcoq-ocaml-dev_8.4dfsg-1_amd64.deb

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

iQIcBAEBCgAGBQJQMmovAAoJEHhT2k1JiBrT5gYP/iMU38JM4QQqwOcEDgpqvsuC
++ciemdzri+pjLgnS2HHGoRwwWIhYxz9eWQccnKNzhTLGht2MF841sXj33WWsEhg
cVgtWmEftWoLuEIQ1oCdHbspwZGiP0/Bm1Aq7Z3s+G2C/IUWtdGx2uqvlq7kBfUr
Jbn0dRZLAMoEyWHXLvZpAjGJgBlvN793goC+nNTZR/gdES4g4m2p+pWe6W0/5cBt
lVDY9ZB0IT+opAliEW1bOTNaRrG+el0s+JyoqHyNXrUbfe8kGgqtA6y6yD3CNYvR
seaw+iJqtTcLSlj+1O53UWAEWigfU4hD9aC2CzqBM8EJmJX8MknahXLU6tzQ+lbT
Qg7Y9yTqyXxZ2NFjgzl7+I/5gh85eUAoMKOCYmVMY9rdzsglCGrOZc9G7Ycg4c5J
FNGYQ3ZyVrOfNPSnF5SsP4D0ZL6WBNkq6wuRwAT8Vz4jUBZz2VDeq7xMW0nKyPuY
fqV3WRX+uiOgnf0urEwwOA4YR9kNs02nGN8HUbP+hMLVjtnHiE/Ah5K2U8bE57TB
rVC551NtI2ltAmZ7CgLskiGY0eiHlc/4jU0RvXrPdTqeLdN29aKD4YoBbRAwSAWN
DPNU2lL8/OGhYXGCubN3L5kGBukkPiM4OzJVl5dZeHOXFhwEP10X9u+qXoKSceoB
8p1zYaSX9M7HUOgXQfsX
=/yGU
-END PGP SIGNATURE-


-- 
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/e1t3vnb-0003zn...@franck.debian.org



Accepted python-x2go 0.2.0.9-1 (source all)

2012-08-20 Thread Mike Gabriel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 09:21:59 +0200
Source: python-x2go
Binary: python-x2go python-x2go-doc
Architecture: source all
Version: 0.2.0.9-1
Distribution: unstable
Urgency: low
Maintainer: X2Go Packaging Team pkg-x2go-de...@lists.alioth.debian.org
Changed-By: Mike Gabriel mike.gabr...@das-netzwerkteam.de
Description: 
 python-x2go - Python module providing X2Go client API
 python-x2go-doc - Python module providing X2Go client API (documentation)
Changes: 
 python-x2go (0.2.0.9-1) unstable; urgency=low
 .
   * New upstream version.
   * /debian/control:
 + Explicitly name client-side printing feature of X2Go.
 + Bump python build dependency to 2.6.6-14.
 + Be more accurate about dependency for python-gevent.
 + Fix typo (corrected: bandwidth) in long descriptions.
Checksums-Sha1: 
 369f9ddde96dbf583e1934006ed9a0e5724c2745 2148 python-x2go_0.2.0.9-1.dsc
 35d04278cbc390ddd6c2678eb5e46a1dc57accc6 176083 python-x2go_0.2.0.9.orig.tar.gz
 1b72b65aec79d705017b3145de2e66d9f2498a6d 24212 
python-x2go_0.2.0.9-1.debian.tar.gz
 d6a7dc1373568c65eb10ae023fc6e1476bb28512 169684 python-x2go_0.2.0.9-1_all.deb
 ae336cec69b3350d9fbb14bf817739f3abe4a8a8 825944 
python-x2go-doc_0.2.0.9-1_all.deb
Checksums-Sha256: 
 51098d4c055d8d81e81803dc0fd7fcb4f5b3e9d1687db787ed24361ead31176f 2148 
python-x2go_0.2.0.9-1.dsc
 921370705c7c7010b5f5bb82d4c41ddafc27936004011435c283354ac28b86ef 176083 
python-x2go_0.2.0.9.orig.tar.gz
 e07d525f7c9eaea216fe3fd98b346585d18e940f8509b940e97b2083c169b8cc 24212 
python-x2go_0.2.0.9-1.debian.tar.gz
 f8129380790142e238a1e3c08c2784d931ccc631c4fa66e03f537a3589e6da78 169684 
python-x2go_0.2.0.9-1_all.deb
 5d0bdbc5a9e3c6f61c9b11a50a5ccb8fb7716de136f888ef6a9296ebed524f31 825944 
python-x2go-doc_0.2.0.9-1_all.deb
Files: 
 4825ec7f0caf13a3934ba13bbf45b3a6 2148 python optional python-x2go_0.2.0.9-1.dsc
 443ff7c3f092b686fd4da768404fd296 176083 python optional 
python-x2go_0.2.0.9.orig.tar.gz
 0b3a211dd5767e91893b1d5cf4dd95fe 24212 python optional 
python-x2go_0.2.0.9-1.debian.tar.gz
 93b4a32c954ecc29b96b076c47f907fb 169684 python optional 
python-x2go_0.2.0.9-1_all.deb
 b906c19f127a4cc050ed1acbffe23dff 825944 doc optional 
python-x2go-doc_0.2.0.9-1_all.deb

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

iQIcBAEBCAAGBQJQMnweAAoJEKtkX0BihqfQiNwP/RPyIDIbNgwaikfbWQcGuOcC
sfqhTugqEIwa9qMyMONXJvvBhY7wpLXxtj4dTvrPKOuR7bsmu6xZY2BJvwFnQmfb
EZfzG43CyQiMyBsWCyDiZUE+hIBxfhSKvdr16vE4/smvpqjLTigbb74BzsMVHtxE
yi9f0CGx9jamdi4vFV24f5nVqvNJP9Vyh8RQhXyX3/8UhCAywJ91dJwLBKGeuoc5
9ySE5SstEtLz3sTz1j/FhHWiRl4Ymv2KU4oTFJ51kpW456fXKJfUdaRgkLwasxQu
jIDmF3qmD19LBJVS3YVevIujn3uFi0CjB5cmMC0AQaknDRfrZWu0DARveXEINPBg
5Xr7W+uaj7mrmCQLpjNslC/ZXcAvMy57DkfWWml2lly/UWyoPLGuX4Zcsa5GAgQT
sM2ajhA85EzmnoF4FvWuyYfAtxI5pS9+wJu6o7KHNStg4YZ7bIqMS78eYiFmaAte
/CcGFbFBNDeo8ktAcOqAzlUcR8dY5Iepc46p+UE4ONZBOxqlD4bIr4vrj/ymWmAJ
ug4DJptxATpkYcoJySLh/Kdcb3CVyyZVdzo8MD0oaKuUfPwF8bZDXELC4FXF3pU9
T19RWrsRgHN4ye39pNcaRPCNdXTLVfXsbpbI/0v+fqVWoQbtaD3zK+0SRb9tFxJZ
gzH/gIRGxZj/sNW6gKO1
=hjHb
-END PGP SIGNATURE-


-- 
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/e1t3wxk-00030l...@franck.debian.org



Accepted pyhoca-cli 0.2.0.4-1 (source all)

2012-08-20 Thread Mike Gabriel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 09:08:31 +0200
Source: pyhoca-cli
Binary: pyhoca-cli
Architecture: source all
Version: 0.2.0.4-1
Distribution: unstable
Urgency: low
Maintainer: X2Go Packaging Team pkg-x2go-de...@lists.alioth.debian.org
Changed-By: Mike Gabriel mike.gabr...@das-netzwerkteam.de
Description: 
 pyhoca-cli - Command line X2Go client written in Python
Closes: 684734
Changes: 
 pyhoca-cli (0.2.0.4-1) unstable; urgency=low
 .
   * New upstream release. (Closes: #684734).
   * /debian/control:
 + Versioned Build-Depends on python (= 2.6.6-14~).
 + Add ${python:Depends} to Depends.
 + Fix typo (corrected: bandwidth) in long description.
Checksums-Sha1: 
 9198cb9af83d96d3f74499fe382ca5aab441aaa1 2053 pyhoca-cli_0.2.0.4-1.dsc
 fbfc8a6854e9d742cf989b94c970e3249a5c7fc0 39686 pyhoca-cli_0.2.0.4.orig.tar.gz
 bae4cd11c3420667be36467d333bb11916aca9a9 15479 
pyhoca-cli_0.2.0.4-1.debian.tar.gz
 9db3827c7714ce6e386d1e7137a0b727add9e9d6 34134 pyhoca-cli_0.2.0.4-1_all.deb
Checksums-Sha256: 
 87d98011f3190add1231e7534877a0381b7dc27a9dc4ebb176e4846be55a5430 2053 
pyhoca-cli_0.2.0.4-1.dsc
 f90f55394a629ef8798086933360bd5cfd29aea04de540ca75beb13a654e92e7 39686 
pyhoca-cli_0.2.0.4.orig.tar.gz
 ef3586e2abc2e1dd0b953096a15322dab79bf04021381255d34d1eecdb9d2f8c 15479 
pyhoca-cli_0.2.0.4-1.debian.tar.gz
 33aab708cc1f5eaf524638c0450b791a5461dd9e8c6579d0358c429788973b6a 34134 
pyhoca-cli_0.2.0.4-1_all.deb
Files: 
 85c94fc37f302450bd9a19202ee20c92 2053 python optional pyhoca-cli_0.2.0.4-1.dsc
 b2456243c9398425747beb49d02d9372 39686 python optional 
pyhoca-cli_0.2.0.4.orig.tar.gz
 83c282ec0de538360f70a83389d163c6 15479 python optional 
pyhoca-cli_0.2.0.4-1.debian.tar.gz
 905c8391db3408900a4ed485d19e6b88 34134 python optional 
pyhoca-cli_0.2.0.4-1_all.deb

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

iQIcBAEBCAAGBQJQMn70AAoJEKtkX0BihqfQCtMP/3chhzVPTsoVDZPrO4ZcsFOS
yxClIG/VmwO57v65ofJHqad+uMYP1QK16FhKWShKx2RPBPRjAfYxLlUS57Qdf3d3
qeM9daMxM7gze05a5ngmI204hIO1JKMAoXpRo4c2N4SABPMxgSAMLPPThfjZK7zh
YgiQKLiBwMaDiw/tCWCpNTG22iIGnOahaklgCanKrzO4On1ODapfhjGYaw2hD69/
NkaKTVdnq0G3RYKhfSej04RPf/f/O+ckay4tkeu0cuWxaqPPCf2EEgtUEXFGki8r
4TPNDfpqCP1beQE6fqyrPyEPWvBwy8JO1UEXlkvFbecEnnORYhib7x6mTFHASM5n
tAZtu7jChW22esmGXg0QI5TXZi+jGrw2JpoezmwX+/Z2pnC1k84dVoZfGgFKiLK8
p6PVmenHr0vNy4Ilc/RA80hp1uneeVBE+6A3fy6OmcoxIXQaddf/2W0mUcYt93Hn
tw2e2xDiCEOM2++NP6z59dif+L7ibWZ7OS0MxBxmzH0kryBPrC5yUJ5ALAs+8llX
C7637DpTtUfWqAqt9NtmDNTJQ3thHdFnKiSixnBrqexachfNp2xGu9dleqanixvs
0iWF6MFZVZJOxCCvyzDEuW27HyRlA8AtTXH7ApCE3zWAwvlRwp1dblVzXiOgXKwE
mldKinz84n5T5ZKUcec+
=B/jB
-END PGP SIGNATURE-


-- 
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/e1t3wmd-0006jh...@franck.debian.org



Accepted gcl 2.6.7-102 (source all i386)

2012-08-20 Thread Camm Maguire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 17:33:26 +
Source: gcl
Binary: gcl gcl-doc
Architecture: source all i386
Version: 2.6.7-102
Distribution: unstable
Urgency: high
Maintainer: Camm Maguire c...@debian.org
Changed-By: Camm Maguire c...@debian.org
Description: 
 gcl- GNU Common Lisp compiler
 gcl-doc- Documentation for GNU Common Lisp
Changes: 
 gcl (2.6.7-102) unstable; urgency=high
 .
   * Fix hash key distribution bug, bitvector equal bug
   * distinguish car position in equal-hash of lists
Checksums-Sha1: 
 ea2deef8d490b7339b5b65d2b739ac499a649b5e 1182 gcl_2.6.7-102.dsc
 01c875815e9a663b43324ebef35c0c34a38b875b 5199064 gcl_2.6.7-102.debian.tar.gz
 ae3db3cfd52ddccf4da900484558a0302e1093fc 609688 gcl-doc_2.6.7-102_all.deb
 b63ccc60c359ecef6c3b9c5ad4a058d8430e9d95 23744544 gcl_2.6.7-102_i386.deb
Checksums-Sha256: 
 7a40a0e62f355425064ca9623de749e1d328966d28a471bcc42a88352b46e893 1182 
gcl_2.6.7-102.dsc
 084f2fad76936d20ac0687dfeec0fad669e0dffb7f73d410afa3bcfc62852f53 5199064 
gcl_2.6.7-102.debian.tar.gz
 228a60fe8507486d345f91adb4cb9a46a5d146c3cb042eeea39babd2a8983b4b 609688 
gcl-doc_2.6.7-102_all.deb
 ddc10e5062076585ef67478fa7530faab72ba63ebc4b05baa18444ae8946594f 23744544 
gcl_2.6.7-102_i386.deb
Files: 
 29c4b13909fbd8a474f0a251fdeb1072 1182 lisp optional gcl_2.6.7-102.dsc
 09b747fea3b0b991b55a25c7e5c92b42 5199064 lisp optional 
gcl_2.6.7-102.debian.tar.gz
 6d979cf834a8e7cf0c21644139077844 609688 doc optional gcl-doc_2.6.7-102_all.deb
 af39c285f5cece2e553f3e4e5cff1b19 23744544 lisp optional gcl_2.6.7-102_i386.deb

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

iEYEARECAAYFAlAyf7wACgkQczG1wFfwRdyXDQCfaMsvBmYdCGzTPyEXs6O2JJ/q
gzUAn2KJSb7dzzZCVu7yGfaocQA6Rh3X
=x5Vg
-END PGP SIGNATURE-


-- 
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/e1t3xtq-0001st...@franck.debian.org



Accepted icedove-l10n 1:10.0.6-1 (source all)

2012-08-20 Thread Christoph Goehre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 21:23:12 +0200
Source: icedove-l10n
Binary: icedove-l10n-all icedove-l10n-ar icedove-l10n-ast icedove-l10n-be 
icedove-l10n-bg icedove-l10n-bn-bd icedove-l10n-br icedove-l10n-ca 
icedove-l10n-cs icedove-l10n-da icedove-l10n-de icedove-l10n-el 
icedove-l10n-en-gb icedove-l10n-es-ar icedove-l10n-es-es icedove-l10n-et 
icedove-l10n-eu icedove-l10n-fi icedove-l10n-fr icedove-l10n-fy-nl 
icedove-l10n-ga-ie icedove-l10n-gd icedove-l10n-gl icedove-l10n-he 
icedove-l10n-hu icedove-l10n-id icedove-l10n-is icedove-l10n-it icedove-l10n-ja 
icedove-l10n-ko icedove-l10n-lt icedove-l10n-nb-no icedove-l10n-nl 
icedove-l10n-nn-no icedove-l10n-pa-in icedove-l10n-pl icedove-l10n-pt-br 
icedove-l10n-pt-pt icedove-l10n-rm icedove-l10n-ro icedove-l10n-ru 
icedove-l10n-si icedove-l10n-sk icedove-l10n-sl icedove-l10n-sq icedove-l10n-sr 
icedove-l10n-sv-se icedove-l10n-ta-lk icedove-l10n-tr icedove-l10n-uk 
icedove-l10n-vi icedove-l10n-zh-cn icedove-l10n-zh-tw
Architecture: source all
Version: 1:10.0.6-1
Distribution: unstable
Urgency: low
Maintainer: Christoph Goehre ch...@sigxcpu.org
Changed-By: Christoph Goehre ch...@sigxcpu.org
Description: 
 icedove-l10n-all - All language packages for Icedove (meta)
 icedove-l10n-ar - Arabic language package for Icedove
 icedove-l10n-ast - Asturian language package for Icedove
 icedove-l10n-be - Belarusian language package for Icedove
 icedove-l10n-bg - Bulgarian language package for Icedove
 icedove-l10n-bn-bd - Bengali language package for Icedove
 icedove-l10n-br - Breton language package for Icedove
 icedove-l10n-ca - Catalan/Valencian language package for Icedove
 icedove-l10n-cs - Czech language package for Icedove
 icedove-l10n-da - Danish language package for Icedove
 icedove-l10n-de - German language package for Icedove
 icedove-l10n-el - Greek language package for Icedove
 icedove-l10n-en-gb - English (Great Britain) language package for Icedove
 icedove-l10n-es-ar - Spanish (Argentina) language package for Icedove
 icedove-l10n-es-es - Spanish (Spain) language package for Icedove
 icedove-l10n-et - Estonian language package for Icedove
 icedove-l10n-eu - Basque language package for Icedove
 icedove-l10n-fi - Finnish language package for Icedove
 icedove-l10n-fr - French language package for Icedove
 icedove-l10n-fy-nl - Frisian language package for Icedove
 icedove-l10n-ga-ie - Irish (Ireland) language package for Icedove
 icedove-l10n-gd - Gaelic (Scottish) language package for Icedove
 icedove-l10n-gl - Galician language package for Icedove
 icedove-l10n-he - Hebrew language package for Icedove
 icedove-l10n-hu - Hungarian language package for Icedove
 icedove-l10n-id - Indonesian language package for Icedove
 icedove-l10n-is - Icelandic language package for Icedove
 icedove-l10n-it - Italian language package for Icedove
 icedove-l10n-ja - Japanese language package for Icedove
 icedove-l10n-ko - Korean language package for Icedove
 icedove-l10n-lt - Lithuanian language package for Icedove
 icedove-l10n-nb-no - Bokmaal (Norway) language package for Icedove
 icedove-l10n-nl - Dutch language package for Icedove
 icedove-l10n-nn-no - Nynorsk (Norway) language package for Icedove
 icedove-l10n-pa-in - Punjabi (India) language package for Icedove
 icedove-l10n-pl - Polish language package for Icedove
 icedove-l10n-pt-br - Portuguese (Brazil) language package for Icedove
 icedove-l10n-pt-pt - Portuguese (Portugal) language package for Icedove
 icedove-l10n-rm - Romansh language package for Icedove
 icedove-l10n-ro - Romania language package for Icedove
 icedove-l10n-ru - Russian language package for Icedove
 icedove-l10n-si - Sinhala language package for Icedove
 icedove-l10n-sk - Slovak language package for Icedove
 icedove-l10n-sl - Slovenian language package for Icedove
 icedove-l10n-sq - Albanian language package for Icedove
 icedove-l10n-sr - Serbian language package for Icedove
 icedove-l10n-sv-se - Swedish (Sweden) language package for Icedove
 icedove-l10n-ta-lk - Tamil language package for Icedove
 icedove-l10n-tr - Turkish language package for Icedove
 icedove-l10n-uk - Ukrainian language package for Icedove
 icedove-l10n-vi - Vietnamese language package for Icedove
 icedove-l10n-zh-cn - Chinese (China) language package for Icedove
 icedove-l10n-zh-tw - Chinese (Taiwan) language package for Icedove
Closes: 684925
Changes: 
 icedove-l10n (1:10.0.6-1) unstable; urgency=low
 .
   * [e6589aa] Imported Upstream version 10.0.6 (Closes: #684925)
Checksums-Sha1: 
 6ce79e9c0c30e9534b77d84cd21d4bd931af36b5 5161 icedove-l10n_10.0.6-1.dsc
 a867bf6b57d88d89ac796ae65865bbedb53b0b1b 12629762 
icedove-l10n_10.0.6.orig.tar.gz
 b2fb9f2c10b4c65a029abb2b055448133be76dd4 18300 
icedove-l10n_10.0.6-1.debian.tar.gz
 3d16ce8b062d1b0089c3e99db714957681b02e0f 7426 icedove-l10n-all_10.0.6-1_all.deb
 9c6a5f44d7f885eb7870c855b598586fa61b4e3e 395024 
icedove-l10n-ar_10.0.6-1_all.deb
 

Accepted gobject-introspection 1.33.9-1 (source all amd64)

2012-08-20 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 22:16:23 +0200
Source: gobject-introspection
Binary: libgirepository-1.0-1 libgirepository1.0-dev libgirepository1.0-doc 
gobject-introspection gir1.2-glib-2.0 gir1.2-freedesktop
Architecture: source all amd64
Version: 1.33.9-1
Distribution: experimental
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 gir1.2-freedesktop - Introspection data for some FreeDesktop components
 gir1.2-glib-2.0 - Introspection data for GLib, GObject, Gio and GModule
 gobject-introspection - Generate interface introspection data for GObject 
libraries
 libgirepository-1.0-1 - Library for handling GObject introspection data 
(runtime library)
 libgirepository1.0-dev - Library for handling GObject introspection data 
(development file
 libgirepository1.0-doc - Library for handling GObject introspection data 
(documentation)
Changes: 
 gobject-introspection (1.33.9-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 1deae49fe219dff7d4cbfee03d00275f63960981 2703 
gobject-introspection_1.33.9-1.dsc
 e0cd739b464c14fa9e968e96d4bef40889e3a9a1 1083824 
gobject-introspection_1.33.9.orig.tar.xz
 12b9de0c8b93a7346e663af8e45fbf2c3691d63a 17488 
gobject-introspection_1.33.9-1.debian.tar.gz
 3ab8b48d299497e390f06108b7bf2442cac993a8 201286 
libgirepository1.0-doc_1.33.9-1_all.deb
 66f653dad467d1b9927c278352756f600f790ecc 109138 
libgirepository-1.0-1_1.33.9-1_amd64.deb
 fe1e64414cfc37c028c2ad4729a91596fd06362c 796506 
libgirepository1.0-dev_1.33.9-1_amd64.deb
 1e3d52046ae3227a4bbd8e729cc89175530c4e94 302500 
gobject-introspection_1.33.9-1_amd64.deb
 80b2cb7e828d9effa606f72c6a617503d420b417 174934 
gir1.2-glib-2.0_1.33.9-1_amd64.deb
 5fd6f6a5badca6c8f70ece90df7ca1662a3b4b5e 21682 
gir1.2-freedesktop_1.33.9-1_amd64.deb
Checksums-Sha256: 
 0a78e2b6eba6ffe87f90f93d2b7786587b69844627389743a436439f6834439e 2703 
gobject-introspection_1.33.9-1.dsc
 4d8283bcbf30f78e13e2d085a8be9a41a8b197a22ad48dc913e6ea7bec3fe8b0 1083824 
gobject-introspection_1.33.9.orig.tar.xz
 79b8a2e404d604caf6395299023c8413625f1877452221932a516273e8882c3d 17488 
gobject-introspection_1.33.9-1.debian.tar.gz
 dc3306237fe17a1b7bac52a799cd85973079670542d101211247ed3f373e0aba 201286 
libgirepository1.0-doc_1.33.9-1_all.deb
 a2d937c52f6ec07ed064fd130befb36fafbddade1d8157bc899a9f5903f12f63 109138 
libgirepository-1.0-1_1.33.9-1_amd64.deb
 a8b66409480ef968638b403123b957dbd9a2b1584f825cfeae6e0e01c161ac81 796506 
libgirepository1.0-dev_1.33.9-1_amd64.deb
 5d0564a2949c8290f3bfaddb5a3e57336d35da95693b2db96f947aa654e00b00 302500 
gobject-introspection_1.33.9-1_amd64.deb
 1d0670a3e921c2ade444dfe63ed27d01ef665d7bfc2571de04b9cebbdb2a4160 174934 
gir1.2-glib-2.0_1.33.9-1_amd64.deb
 0d7927ce97d7995d2a9e655737327f48d92d20cbfcd126c0d30625953a2d40b1 21682 
gir1.2-freedesktop_1.33.9-1_amd64.deb
Files: 
 4f4ddf5390092441fa4180ad4959e74f 2703 devel optional 
gobject-introspection_1.33.9-1.dsc
 7c91b720ec076822bd25d19c986d88ce 1083824 devel optional 
gobject-introspection_1.33.9.orig.tar.xz
 7f69896fa9cb6ca45e89d81ea8a423ee 17488 devel optional 
gobject-introspection_1.33.9-1.debian.tar.gz
 05d1f1c43f025962eb41ac133c35abcd 201286 doc optional 
libgirepository1.0-doc_1.33.9-1_all.deb
 7c6c1bacb220f5d0335ae73657bc2ab0 109138 libs optional 
libgirepository-1.0-1_1.33.9-1_amd64.deb
 11aa6cdb63cb044292df5fda90473d85 796506 libdevel optional 
libgirepository1.0-dev_1.33.9-1_amd64.deb
 e4d36788142b948a4d5bc0391f0a811b 302500 devel optional 
gobject-introspection_1.33.9-1_amd64.deb
 2f76397a9fe4d6a02420e4b92f75cf50 174934 introspection optional 
gir1.2-glib-2.0_1.33.9-1_amd64.deb
 645fa01097fee44f791c42c8f3e13ef7 21682 introspection optional 
gir1.2-freedesktop_1.33.9-1_amd64.deb

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

iQIcBAEBCAAGBQJQMpwkAAoJEPmIJawmtHufsZsP/2tezjepvLovrwAX5M1U/sz/
leIelfEiMTLojlvnMHq7Mgg5tiF2fdI1AgGolUZAM3s4Ncm3TviiVMTNnK3Ximld
ULAK0Y/EbKgWV3lcYOEwch1L3cn5kQ8IY4dO5GgNeb4H8oSP035Q/vAoz+FnqUh5
rhoV1eJByYNBk9WxfsaFbWWalZoW6vFp4sOVOU+c5FyQiKMrwjJnbYkueCYNX1NW
8Rq1lHueFjngxgGJRd6mDvHlelzejpLsgaY7IF9H+HkGUVys7DF2DjwldCeA0au5
PmQUCwpD5kmoBRVKxP4EIgQT+iAJqqVdUWZwqsh+jgJOEkAs1SiHbOpRrPCHqBx7
4VQTe6Bt3uHlJ9xgSUL3iSbQLl7gr1GvXaKG/FBOX6KJVWTjGprB9IMHnlomP3w5
Mfi3P93HZzaRiHJibIsSu6Ffh0AozYZuWcPfeXGuQt1nhLby+3+qx5O4yOpOw6si
KcifbS+NpM5dwgGzhtZVq1wVw/MgzV+61TBfLfv4tVGsNZmagfmFwpVvFeloRl8d
xqVAzuXG3c5X74xWZulBfZQmgaSF8F7ZZhnXOkaF9WESOiOHaI9fRM8BXXrBbmmS
mtrAyFEPUeFwR6EtS0xY6DDJCH6xGH+3Lz/4Yd2SwDHpaHYQMvbEqnsiVBXvISlR
kTyAmRNGXMV3jyFUiyb5
=QXxB
-END PGP SIGNATURE-


-- 
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/e1t3yth-5v...@franck.debian.org



Accepted maxima 5.28.0-1 (source all i386)

2012-08-20 Thread Camm Maguire
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 18:45:39 +
Source: maxima
Binary: maxima maxima-src maxima-test maxima-doc xmaxima maxima-emacs 
maxima-share
Architecture: source all i386
Version: 5.28.0-1
Distribution: unstable
Urgency: low
Maintainer: Camm Maguire c...@debian.org
Changed-By: Camm Maguire c...@debian.org
Description: 
 maxima - Computer algebra system -- base system
 maxima-doc - Computer algebra system -- documentation
 maxima-emacs - Computer algebra system -- emacs interface
 maxima-share - Computer algebra system -- extra code
 maxima-src - Computer algebra system -- source code
 maxima-test - Computer algebra system -- test suite
 xmaxima- Computer algebra system -- x interface
Changes: 
 maxima (5.28.0-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1: 
 ef4d58790da40ac1331b27dcf94cff3d1e1c8759 1460 maxima_5.28.0-1.dsc
 52d7dad4681711a6ead73b72835b177107363b9c 27312348 maxima_5.28.0.orig.tar.gz
 4993b2010250704e9530d3d6923baf32b938f991 1805034 maxima_5.28.0-1.debian.tar.gz
 2256cf5ac2127168dfbe4c3297cbd645c943ba86 1287264 maxima-src_5.28.0-1_all.deb
 3119f18b2bc37e8d42f03af6469979610d32f336 305994 maxima-test_5.28.0-1_all.deb
 df69bd0b85d5dea13785c078983cdd6e656cf8d5 4280228 maxima-doc_5.28.0-1_all.deb
 d12a8c8be6b4919ba3e967671ec1aa6852846ab2 118716 maxima-emacs_5.28.0-1_all.deb
 b3ec430f47548952aeefca2b582d71f2698d35e1 5230128 maxima-share_5.28.0-1_all.deb
 09b1540204b8f66da34c0b3bcd691a88d413b747 9708898 maxima_5.28.0-1_i386.deb
 1f8ab91ef6a681fe964c6293fde926f409ca66f2 393424 xmaxima_5.28.0-1_i386.deb
Checksums-Sha256: 
 38e9c01be347b936a871001cc56d2721842d761377296d239f290f533d9a0bd3 1460 
maxima_5.28.0-1.dsc
 d73e925f0116ba361bf4390c80e24d4fa763f647cc1fc4cc06bbf40ceb3facda 27312348 
maxima_5.28.0.orig.tar.gz
 5acce2c6fa4c1628c5d3791f889ab95376295bf932032f3a1d0f99fb2ce98334 1805034 
maxima_5.28.0-1.debian.tar.gz
 0080eb625760c9b94b0cc14dbf8760192ba828f9552336b9cce8709f34faedb5 1287264 
maxima-src_5.28.0-1_all.deb
 6efc019009a9d363f4a0b06e96989f9e7536ee3e2e2e68c9867a840432bc2680 305994 
maxima-test_5.28.0-1_all.deb
 cbe4c30fc9f588ce7cb6b04aa591d3a2f678d7194ed005f85b18868114831a7e 4280228 
maxima-doc_5.28.0-1_all.deb
 954eeccb0148b7d791cfd40bfb83f2253ff9919d96d4658e633bf052fc8bbb8b 118716 
maxima-emacs_5.28.0-1_all.deb
 f55644c46a71b116e776a37123b56f71d024c3fea02e1d5e730f7b3e8743d6f0 5230128 
maxima-share_5.28.0-1_all.deb
 bcb4cadf5e949b365815fd144fcb3078a48a1e9dba114d66222506eb3c3410a6 9708898 
maxima_5.28.0-1_i386.deb
 58f4b83f3e8dcd980f0b206ee16595809d5adef70ad6718f624d036529fd24c6 393424 
xmaxima_5.28.0-1_i386.deb
Files: 
 397cc48033da7699ba4aae80b387cfdf 1460 math optional maxima_5.28.0-1.dsc
 de12d5081194325f0336abef263e7263 27312348 math optional 
maxima_5.28.0.orig.tar.gz
 7d95b31e1ff9753c36b5a819dffc8f11 1805034 math optional 
maxima_5.28.0-1.debian.tar.gz
 eea75305241765762feafdf5787012a3 1287264 math optional 
maxima-src_5.28.0-1_all.deb
 d261903b143bc638d6fd301aef8af59f 305994 math optional 
maxima-test_5.28.0-1_all.deb
 8121b5e217b66e5f154e1e7cb52b2238 4280228 doc optional 
maxima-doc_5.28.0-1_all.deb
 ab23e73634f40bd9da5623f1ff75e742 118716 math optional 
maxima-emacs_5.28.0-1_all.deb
 0cdbeac4fb709f5743c83f14e3cc6d83 5230128 math optional 
maxima-share_5.28.0-1_all.deb
 d427c847d67dec2598bdaa197bd8e4ed 9708898 math optional maxima_5.28.0-1_i386.deb
 532fa1c678298b60480e4e6e02ec0334 393424 math optional xmaxima_5.28.0-1_i386.deb

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

iEYEARECAAYFAlAyiaEACgkQczG1wFfwRdz5vwCcCsAAzr5cIrI58jceSe8CWOlT
w4EAn3B9+nXR+zc24rVawZOLp7mAE+TH
=30uI
-END PGP SIGNATURE-


-- 
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/e1t3yts-8r...@franck.debian.org



Accepted pegasus-wms 4.0.1+dfsg-8 (source amd64 all)

2012-08-20 Thread Mats Rynge
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 13:30:44 -0700
Source: pegasus-wms
Binary: pegasus-wms pegasus-wms-doc
Architecture: source amd64 all
Version: 4.0.1+dfsg-8
Distribution: unstable
Urgency: low
Maintainer: Mats Rynge m...@rynge.net
Changed-By: Mats Rynge m...@rynge.net
Description: 
 pegasus-wms - Scientific workflow management system for Condor
 pegasus-wms-doc - Scientific workflow management system for Condor - data files
Changes: 
 pegasus-wms (4.0.1+dfsg-8) unstable; urgency=low
 .
   * Improved the fix for a Python 2.7.3 problem where urlparse does not have
 an attribute named uses_query anymore. The problem was reported in bug
 #682148. The previously applied fix still printed a one line debugging
 message, which with this upload, is now removed.
Checksums-Sha1: 
 7e8a161580a502a0be671eca2a74270cc90591d5 1442 pegasus-wms_4.0.1+dfsg-8.dsc
 8f60620b06e32b7caf419e5494ae8f0cf357474c 78484 
pegasus-wms_4.0.1+dfsg-8.debian.tar.gz
 4020eb79ac726d9eb6491354b8a44bb90f1e3c29 2692254 
pegasus-wms_4.0.1+dfsg-8_amd64.deb
 e297eba62728b13319ebfa8a23ce91383e6a55b2 19248640 
pegasus-wms-doc_4.0.1+dfsg-8_all.deb
Checksums-Sha256: 
 895717ef927143205bd8f6b912fe45fbb0c50643cca2d7f37dbcb3221d1a89cc 1442 
pegasus-wms_4.0.1+dfsg-8.dsc
 938adcb00997c4e2877abc9fc16e5d1b79ed3a500bba46bd1e90a04ebd9ba439 78484 
pegasus-wms_4.0.1+dfsg-8.debian.tar.gz
 5ed97c8dd64090b9d3c3966bdf83ad0d0f305e4368093b26fac02c1b45948a03 2692254 
pegasus-wms_4.0.1+dfsg-8_amd64.deb
 ea860a22a750f3de8e14264f8b4a3f9451b5be37f1f822f3d0c735fc8c913ac7 19248640 
pegasus-wms-doc_4.0.1+dfsg-8_all.deb
Files: 
 dfb6b099a3888b279bdec64d130d121c 1442 science optional 
pegasus-wms_4.0.1+dfsg-8.dsc
 4feab7cabec121868dff360a9b8d08bf 78484 science optional 
pegasus-wms_4.0.1+dfsg-8.debian.tar.gz
 67bd6ec84785de1504b6cbfda2f52ba6 2692254 science optional 
pegasus-wms_4.0.1+dfsg-8_amd64.deb
 79b74ef9d6e63fa3a87dff5ba5d75eb0 19248640 doc optional 
pegasus-wms-doc_4.0.1+dfsg-8_all.deb

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

iEYEARECAAYFAlAyoKAACgkQ7jqfAoHCpKxIGwCfTcEefhUaLfzTyF2Xypwq9ji0
uzMAn3iQk5DOzELtrlqqHyJILLsgPfH7
=ktxP
-END PGP SIGNATURE-


-- 
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/e1t3z7n-0005ia...@franck.debian.org



Accepted bleachbit 0.9.3-1 (source all)

2012-08-20 Thread Luca Falavigna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 23:05:43 +0200
Source: bleachbit
Binary: bleachbit
Architecture: source all
Version: 0.9.3-1
Distribution: experimental
Urgency: low
Maintainer: Luca Falavigna dktrkr...@debian.org
Changed-By: Luca Falavigna dktrkr...@debian.org
Description: 
 bleachbit  - delete unnecessary files from the system
Changes: 
 bleachbit (0.9.3-1) experimental; urgency=low
 .
   * New upstream release.
   * debian/patches/no_X.patch:
 - Removed, applied upstream.
   * debian/bleachbit.xpm:
 - Convert to the new icon.
Checksums-Sha1: 
 251bcc46be2cfdda2d9194681dc6f4ba64a27871 2008 bleachbit_0.9.3-1.dsc
 8eeaf55324fbb9d868c108b8e818f716c07b0b30 649794 bleachbit_0.9.3.orig.tar.gz
 cf3e64425b94e3fc55415aae8c4bbeb121e10989 10190 bleachbit_0.9.3-1.debian.tar.gz
 694dff66322d774dd3bb7f0c5e52485cb0084809 346728 bleachbit_0.9.3-1_all.deb
Checksums-Sha256: 
 8a194a09f21d7c87bf2268fe41c924c3eb61611eae42c4cbd45b207c139aedfa 2008 
bleachbit_0.9.3-1.dsc
 584d78423b1912d16ffe644d1ca74fc1539b75b9820936ac614c4255c8214396 649794 
bleachbit_0.9.3.orig.tar.gz
 2964c9d1408f2ff293f1f4a6934692cc1fa8b761cff7ec7d1fb46c5ee44a3268 10190 
bleachbit_0.9.3-1.debian.tar.gz
 0b5e785299d4e38861fa71df1dc7abde5cd50aba09e03554e56f92308ab2f20a 346728 
bleachbit_0.9.3-1_all.deb
Files: 
 ebc9177d90e38bd1365f963caef5c710 2008 admin optional bleachbit_0.9.3-1.dsc
 4695a15d070658451c228c01c977a259 649794 admin optional 
bleachbit_0.9.3.orig.tar.gz
 edcb3f83aeeac67e701add494c3f87a7 10190 admin optional 
bleachbit_0.9.3-1.debian.tar.gz
 642c469aa51ad18ee505d7d3866761d0 346728 admin optional 
bleachbit_0.9.3-1_all.deb

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

iQIcBAEBCAAGBQJQMqeyAAoJEEkIatPr4vMfp+QP/ivh8SXmqmbYVTVNh/qfUgWf
6mTtMceU4LUSvJlE2WK307rkx4q3cz/Hqk7rAoyoHwDXshD4YxfzVc4YdgpNrSXs
oqwxi0NHeLJB+rv83tkjaRPAkI+lQHk35B5SIzE2cIWSCW8AGpFlMXmPT/3X5NZD
fyPj7R942UyHYoYv0rRBv40H7EN6FsWbrBmWAWYkUnFtBWCL6UuQ3W842VbF7EQD
WQJm79tk2D4JSVjeGKQruPAzEmYHyEf2rxqc3ck2k8h/d1joFBJutG2/lHCvwgg0
j6na9OWmEmvGpx+sDmCrcm2msnZoYBpBfhijTUCGpTsJzejxkmV49qvdf01yafw4
2z1sWlCfKHFq4wq2usqSq9LmTsLq9Xh0lg1dym1CooJIWtVj3XUlkQFGxffw/A5G
hD6/NzWgxykKykt4E2y2lUC/kQFIJ8/06JS/HqAE880ErAYF9vFvnxSNB0AQfhMj
SkYh6tkXFdLFeI4oXwFpNauZZrfwhqZD6MOqpiHKlqry+QX6nlkKgGpTy/C6j6ar
PxOMrSh880ZFtSwe7y1zo+UNVUAUnbQMb9CUQpKSWDdPkv89igG517MG89BfHPiQ
B0mG0MOV47BpZTzPhWj5AadTNvj4j9+SfXgiZXaLIlySZAo+VyPCWrS3cCuHo9gS
PQ2//D1BOBoAawrG/USD
=ujrP
-END PGP SIGNATURE-


-- 
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/e1t3zlu-0008cn...@franck.debian.org



Accepted dispmua 1.6.9-1 (source all)

2012-08-20 Thread Christoph Goehre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 23:00:05 +0200
Source: dispmua
Binary: xul-ext-dispmua icedove-dispmua
Architecture: source all
Version: 1.6.9-1
Distribution: unstable
Urgency: low
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: Christoph Goehre christoph.goe...@gmx.de
Description: 
 icedove-dispmua - display Mail User Agent extension for Icedove (transitional 
packa
 xul-ext-dispmua - display Mail User Agent extension for Icedove
Changes: 
 dispmua (1.6.9-1) unstable; urgency=low
 .
   * [2d810dd] Imported Upstream version 1.6.9
   * [4b53ff7] rebuild patch queue from patch-queue branch
 modified patches:
 - display-correct-symbol-for-Icedove.patch
 obsolete patches (fixed upstream):
 - 0002-support-Icedove-8.patch
   * [0858ae0] bump up standards version to 3.9.3
Checksums-Sha1: 
 e0582524c5285de99398b4f8d6739ae0b3377cc6 2134 dispmua_1.6.9-1.dsc
 e1ad7edb5cee944ed2e73a0a513add7c23899697 3263601 dispmua_1.6.9.orig.tar.bz2
 7a1dbd0e967f982e4b43ea1e541e0919d43caeb8 4344 dispmua_1.6.9-1.debian.tar.gz
 284fcc3236a180920490b7803d2e35f43d31a102 3393952 
xul-ext-dispmua_1.6.9-1_all.deb
 d99cb8bdeab6fdfa14965987b94cfdef84f21e4e 7526 icedove-dispmua_1.6.9-1_all.deb
Checksums-Sha256: 
 e9b9b099341c50af2d6ffe5ee1b1f219d7f4cac66359598a6453e7ad69b075e3 2134 
dispmua_1.6.9-1.dsc
 85e8520332b4f3b54c86f6bf61df8dee577e89753c1981543685dd7d8f8082ac 3263601 
dispmua_1.6.9.orig.tar.bz2
 cd13ee75408e0e71e163f048db7559027cb6d089767edfe0b2d9129431513fca 4344 
dispmua_1.6.9-1.debian.tar.gz
 fbe5383da467b0c94b46e4c1344089a5516c8b234fe3bf21c03447ec18f2cc41 3393952 
xul-ext-dispmua_1.6.9-1_all.deb
 883c4e5335b53c21911794557a607d36e1204cd1b166620b2a24b35cb3f8c94c 7526 
icedove-dispmua_1.6.9-1_all.deb
Files: 
 e5a5646d4115f0cf1b42f7e0d18c0229 2134 mail optional dispmua_1.6.9-1.dsc
 8037e4d2bc0d174bc2998858d0b78933 3263601 mail optional 
dispmua_1.6.9.orig.tar.bz2
 6be488d26809fff59dbbac6488aecf4e 4344 mail optional 
dispmua_1.6.9-1.debian.tar.gz
 fe2bd3cdc3baac46d712c60f36a1522a 3393952 mail optional 
xul-ext-dispmua_1.6.9-1_all.deb
 e044d08bc511cc33ea557ccff2fba07e 7526 oldlibs extra 
icedove-dispmua_1.6.9-1_all.deb

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

iQIcBAEBCAAGBQJQMqcgAAoJECbjyHWnRCDvT6oP/jrexw3vrir+R2zxBWWMbai4
Qs2Cf5fEOB9xAAmCqXmiZ1DrKBphigKcgnqA8o4NYPMAmo9kd9e/yYBGPQIbll5x
ihria0n8Ig5fY8SrDIrEdGqZT13TDoUgTJ4fTX/be0GdL44o4uiolltNtn0418KE
VAKcS320s1FqUxU8xZYjjJwMz4OZcKP5k7uGnd7f9ZinikcsLCxAZMCSXeJ6c4O/
aD81fVufE51Jd2UClZKJDJR4mpqhVl0q4DdTJfFsEWQ529lGmJI0VI6A42p/QhYI
JuWuYVm08RFcuoN/ozF5YHkVQkltOcuI2AM6qMjuH64jYC1ukTydSTWWPDsJSnF8
YRWVuvTD4YDMTIRnGcI4lDpqSLEjW0rCHtwUeWSpVJZXMdBfmbVjfdre8S2/V5xB
I+yR0B7DQeg3dqnVy1sVPXQr/hIfB3muwu4LPdVT81fvGQtE7d8I1lWE+3m/U+Pe
anDBQ+W3V6WCo9VnvUQs7UqVEdCW7jG1hcprTvuhJfAFOp86QIHGEhFmosq29U99
Yuk2WP5wXLlJDbpG006HfmpsFLhfF/tVIkCucZy94sAnaXDhk9vL2ieg8QSHBYIJ
nq8Z93KG2jLdHtIkIZJGgY4frcRRD6iHhqwFIH+fWPXUkdUyxT0YHVFbhu1rkEHy
f/1IehWENMVtGkWGLzMX
=LD4v
-END PGP SIGNATURE-


-- 
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/e1t3zly-0008da...@franck.debian.org



Accepted gcc-4.6 4.6.3-9 (source all amd64)

2012-08-20 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 13:13:45 +0200
Source: gcc-4.6
Binary: gcc-4.6-base gcc-4.6 gcc-4.6-multilib gcc-4.6-plugin-dev gcc-4.6-hppa64 
gcc-4.6-spu g++-4.6-spu gfortran-4.6-spu cpp-4.6 gcc-4.6-locales g++-4.6 
g++-4.6-multilib libmudflap0-4.6-dev gobjc++-4.6 gobjc++-4.6-multilib gobjc-4.6 
gobjc-4.6-multilib libobjc3 libobjc3-dbg lib64objc3 lib64objc3-dbg lib32objc3 
lib32objc3-dbg libn32objc3 libn32objc3-dbg gfortran-4.6 gfortran-4.6-multilib 
libstdc++6-4.6-dev libstdc++6-4.6-pic libstdc++6-4.6-dbg lib32stdc++6-4.6-dbg 
lib64stdc++6-4.6-dbg libn32stdc++6-4.6-dbg libstdc++6-4.6-doc 
gcc-4.6-soft-float gcc-4.6-source
Architecture: source all amd64
Version: 4.6.3-9
Distribution: unstable
Urgency: medium
Maintainer: Debian GCC Maintainers debian-...@lists.debian.org
Changed-By: Matthias Klose d...@debian.org
Description: 
 cpp-4.6- GNU C preprocessor
 g++-4.6- GNU C++ compiler
 g++-4.6-multilib - GNU C++ compiler (multilib files)
 g++-4.6-spu - SPU cross-compiler (C++ compiler)
 gcc-4.6- GNU C compiler
 gcc-4.6-base - GCC, the GNU Compiler Collection (base package)
 gcc-4.6-hppa64 - GNU C compiler (cross compiler for hppa64)
 gcc-4.6-locales - GCC, the GNU compiler collection (native language support 
files)
 gcc-4.6-multilib - GNU C compiler (multilib files)
 gcc-4.6-plugin-dev - Files for GNU GCC plugin development.
 gcc-4.6-soft-float - GCC soft-floating-point gcc libraries (ARM)
 gcc-4.6-source - Source of the GNU Compiler Collection
 gcc-4.6-spu - SPU cross-compiler (preprocessor and C compiler)
 gfortran-4.6 - GNU Fortran compiler
 gfortran-4.6-multilib - GNU Fortran compiler (multilib files)
 gfortran-4.6-spu - SPU cross-compiler (Fortran compiler)
 gobjc++-4.6 - GNU Objective-C++ compiler
 gobjc++-4.6-multilib - GNU Objective-C++ compiler (multilib files)
 gobjc-4.6  - GNU Objective-C compiler
 gobjc-4.6-multilib - GNU Objective-C compiler (multilib files)
 lib32objc3 - Runtime library for GNU Objective-C applications (32bit)
 lib32objc3-dbg - Runtime library for GNU Objective-C applications (32 bit 
debug sy
 lib32stdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 lib64objc3 - Runtime library for GNU Objective-C applications (64bit)
 lib64objc3-dbg - Runtime library for GNU Objective-C applications (64 bit 
debug sy
 lib64stdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 libmudflap0-4.6-dev - GCC mudflap support libraries (development files)
 libn32objc3 - Runtime library for GNU Objective-C applications (n32)
 libn32objc3-dbg - Runtime library for GNU Objective-C applications (n32 debug 
symbo
 libn32stdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 libobjc3   - Runtime library for GNU Objective-C applications
 libobjc3-dbg - Runtime library for GNU Objective-C applications (debug symbols)
 libstdc++6-4.6-dbg - GNU Standard C++ Library v3 (debugging files)
 libstdc++6-4.6-dev - GNU Standard C++ Library v3 (development files)
 libstdc++6-4.6-doc - GNU Standard C++ Library v3 (documentation files)
 libstdc++6-4.6-pic - GNU Standard C++ Library v3 (shared library subset kit)
Closes: 680022
Changes: 
 gcc-4.6 (4.6.3-9) unstable; urgency=medium
 .
   * Update to SVN 20120820 (r190530) from the gcc-4_6-branch.
 - ARM: Set vector type alignment to 8 bytes.
 - Fix PR target/33135 (SH), PR rtl-optimization/53908 (wrong code),
   PR middle-end/53433, PR middle-end/38474, PR middle-end/53790,
   PR c++/52988 (wrong code), PR fortran/51758.
 .
   [ Aurelien Jarno ]
   * Add patches/ada-ppc64.diff to fix GNAT build on ppc64.
   * powerpc64: fix non-multilib builds.
 .
   [ Matthias Klose ]
   * Update the Linaro support to the 4.6-2012.08 release.
   * spu build: Move static libraries to version specific directories.
 Closes: #680022.
 .
   [ Thibaut Girka ]
   * Fix cross compilers for 64bit architectures when using
 DEB_CROSS_NO_BIARCH.
Checksums-Sha1: 
 f3b58662d87a8cef8dc1c606fd21da1805b3a895 4528 gcc-4.6_4.6.3-9.dsc
 6af039f63d046375aefbbd8113187237df7e4285 1003106 gcc-4.6_4.6.3-9.diff.gz
 9ac6a9478b6294e00456a0f38698c6e820a97c8f 58018936 
gcc-4.6-source_4.6.3-9_all.deb
 5a8fcafeef279c3451908632284c18492db0ba54 3710354 
libstdc++6-4.6-doc_4.6.3-9_all.deb
 174d9827b0e4c18e0327d48164b1bdc9deb82923 2628786 
gcc-4.6-locales_4.6.3-9_all.deb
 339898943ab7d89b1ad1de244869d1c23a066e81 140556 gcc-4.6-base_4.6.3-9_amd64.deb
 1c71bba2f583b413ade9e70e461d722849bc8ba0 4827116 cpp-4.6_4.6.3-9_amd64.deb
 b36983521e36f73f591953cc5168e24f078717c8 126306 
libmudflap0-4.6-dev_4.6.3-9_amd64.deb
 0a670b600953e7a0a5f027b1d2b84151a535c642 868 
gobjc++-4.6-multilib_4.6.3-9_amd64.deb
 19e107c2615075044c73e2cef73fc9e7911c5a53 5177452 gobjc++-4.6_4.6.3-9_amd64.deb
 c96d3347fc5b1c0dcbbb660999cb113e79707d54 200382 
gobjc-4.6-multilib_4.6.3-9_amd64.deb
 dd011c3a94ad186fec9d41d5d35299d8c0b2a403 5031604 gobjc-4.6_4.6.3-9_amd64.deb
 c5224e8fc73fc5d8cc036cec6f42fcbce5175aed 184870 libobjc3_4.6.3-9_amd64

Accepted boinc-app-seti 6.12~svn1385-3 (source amd64)

2012-08-20 Thread Steffen Moeller
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 23:11:29 +0200
Source: boinc-app-seti
Binary: boinc-app-seti boinc-app-seti-dbg
Architecture: source amd64
Version: 6.12~svn1385-3
Distribution: unstable
Urgency: low
Maintainer: Debian BOINC Maintainers pkg-boinc-de...@lists.alioth.debian.org
Changed-By: Steffen Moeller moel...@debian.org
Description: 
 boinc-app-seti - SETI@home application for the BOINC client
 boinc-app-seti-dbg - debug symbols for SETI@home
Changes: 
 boinc-app-seti (6.12~svn1385-3) unstable; urgency=low
 .
   * Correcting for previous dependency on libs of BOINC 7.0.33.
Checksums-Sha1: 
 455c0459da7b0688e0115e1b958a3f9df6c56d4a 2232 boinc-app-seti_6.12~svn1385-3.dsc
 6d5fe129b6aecac93f2d00ae44d13ecd4dab9ddb 15717 
boinc-app-seti_6.12~svn1385-3.debian.tar.gz
 693792357e17ca3559771eca6e05ae1a0d824f65 380936 
boinc-app-seti_6.12~svn1385-3_amd64.deb
 a4e43e96e3b43c868a04fd5de0214c1431ac5836 2304278 
boinc-app-seti-dbg_6.12~svn1385-3_amd64.deb
Checksums-Sha256: 
 ad64c44c7c971a33e6dcf22b46e266d6acab794dfff1d8532d14f9a1db5671d6 2232 
boinc-app-seti_6.12~svn1385-3.dsc
 9df0f4bb70e0e8eefe8827de86878c9c5df7448d2492322a9a82a65cebb371bf 15717 
boinc-app-seti_6.12~svn1385-3.debian.tar.gz
 4386aba5100202a06194a5d88c7cceb417aedd18bfc7598b33a9343fd311b6fa 380936 
boinc-app-seti_6.12~svn1385-3_amd64.deb
 134700d6beef66f41391bfec8d0ea6c9ad20da6d9dc277c19cfe31debf573cea 2304278 
boinc-app-seti-dbg_6.12~svn1385-3_amd64.deb
Files: 
 80a8569eb37f9893ae7c5f3148bd823d 2232 science extra 
boinc-app-seti_6.12~svn1385-3.dsc
 5a9f65089493c4ac3b5db54151d3adce 15717 science extra 
boinc-app-seti_6.12~svn1385-3.debian.tar.gz
 00aec147acafee936bcfae5bf579cc4c 380936 science extra 
boinc-app-seti_6.12~svn1385-3_amd64.deb
 135ab71b2e906cad45e67a2029123108 2304278 debug extra 
boinc-app-seti-dbg_6.12~svn1385-3_amd64.deb

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

iQIcBAEBAgAGBQJQMq4uAAoJEC/YvtrAIO7R34MP/j+pSGcnn8RAT5I4FH5jVMvK
FN3N5HDuCDLqj5lv/bxHiU05O87nKlHwGEDTZcoQ79zDeyI1FkOTzgmyQKMXQHgw
g7z3JPQXQMphhHUa5meB9mg5FFIdNuQzxpUSBx/G0bsMHLd7WQ2DCiiQa1yGZRyU
RSptAwlhnUpVtVH9II1XhfwmZxDF6YsQjEb40h7lYbLU252ks9MOvMr1ztdKv6wt
eNaEwBlVZJ09XHomLNcHFOiHEvv7FQWFk6zdjnC7JGOTRG7QuYYxlH7ZAOxK9XLa
RzKNfgQUGd7IrOmHtdOtAxOQdbeU0jXlFnhkTfm8dONN1Dlu2GbcWbjCS1gkucN2
Zb3YFlafltBpM3IwgfIUiFk0lpDAy/+uCd24i54GHQY7m2FhDbD+a7N3q3efEkVR
gLd9bTi5bco6XagPXRFZ8XIkWFSoG4UfgSTD03aTzyzb/RiYKk+6tupUxPltjSCr
8yqRBac5z6jAFimkrC5aJY8W8ZGQ75E8tmrWlo+LwE/59ofZzUQbX8vMjnvm8bx5
rU95Yj7MkQw1syO5+y2sVS7ddhFWY+5T+ExqRyTgRHE0swdboIFDjtF8EXwdyHWF
JBQELucSywqjASIDeL3iMxCcsH05GvdPBTcbRK4Jhm/qIbP7ho0Db18ody88fc1q
8HrcDRTuWfuK8UQmGPAl
=I/tQ
-END PGP SIGNATURE-


-- 
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/e1t3zoz-0006np...@franck.debian.org



Accepted pygobject 3.3.90-1 (source amd64 all)

2012-08-20 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 23:23:43 +0200
Source: pygobject
Binary: python-gi python3-gi python-gi-cairo python-gi-dbg python3-gi-dbg 
python-gi-dev python-gobject python3-gi-cairo python-gobject-dbg 
python-gobject-dev
Architecture: source amd64 all
Version: 3.3.90-1
Distribution: experimental
Urgency: low
Maintainer: Josselin Mouette j...@debian.org
Changed-By: Martin Pitt mp...@debian.org
Description: 
 python-gi  - Python 2.x bindings for gobject-introspection libraries
 python-gi-cairo - Python Cairo bindings for the GObject library
 python-gi-dbg - Python bindings for the GObject library (debug extension)
 python-gi-dev - development headers for GObject Python bindings
 python-gobject - Python 2.x bindings for GObject - transitional package
 python-gobject-dbg - Python 2.x debugging modules for GObject - transitional 
package
 python-gobject-dev - Python 2.x development headers for GObject - transitional 
package
 python3-gi - Python 3 bindings for gobject-introspection libraries
 python3-gi-cairo - Python 3 Cairo bindings for the GObject library
 python3-gi-dbg - Python 3 bindings for gobject-introspection libraries (debug 
exte
Changes: 
 pygobject (3.3.90-1) experimental; urgency=low
 .
   * New upstream release.
Checksums-Sha1: 
 c5f8e798ab33ad5e7e112c50ce8398e247b2a3c3 2956 pygobject_3.3.90-1.dsc
 9b8a93dfbd97111c8417746332045c5cd44cdfde 596936 pygobject_3.3.90.orig.tar.xz
 d67ac5e070b593e00480c1a9deadea26c24009f9 16748 pygobject_3.3.90-1.debian.tar.gz
 032022679cf4b3f74d31dbf799bd98802546d8e2 558338 python-gi_3.3.90-1_amd64.deb
 d6f6c480ebc60c22fe9c70475fbb41459beccedd 386798 python3-gi_3.3.90-1_amd64.deb
 f68ad80411ecacfe55bcd4ad8afaf672689457b0 188416 
python-gi-cairo_3.3.90-1_amd64.deb
 dbc8e022c64ec5a804dea3252eea1729f133251a 1773274 
python-gi-dbg_3.3.90-1_amd64.deb
 2aa43b519386d798f1641ffae8e178b178f1e67b 1061454 
python3-gi-dbg_3.3.90-1_amd64.deb
 598a38e06d4e9b6e6d9b93d1670974ba48ab8949 202646 
python3-gi-cairo_3.3.90-1_amd64.deb
 7b162fbd52eac250631a1d79a5a6481b99fce2c2 192372 python-gi-dev_3.3.90-1_all.deb
 227e3fc43236eace9c30f3bfeac0ed78e5b3214c 184894 python-gobject_3.3.90-1_all.deb
 c330bb928dbfca0e4bd179e95783af36811506a6 184912 
python-gobject-dbg_3.3.90-1_all.deb
 d24328c543d22ae15e597bc989743e567befab2a 184908 
python-gobject-dev_3.3.90-1_all.deb
Checksums-Sha256: 
 44a6921d7bff2cb01bdf3c9a9b7cb021bb3715a9c627920f63db428504dabb47 2956 
pygobject_3.3.90-1.dsc
 1985d5fa97214b019cad4cf9965146aaf8f34e38b7a98b76d90efe46cb9611a9 596936 
pygobject_3.3.90.orig.tar.xz
 05c310bb81dfaf217512c67c808a02fa85354b27adef23b3fc90dd07a1c87485 16748 
pygobject_3.3.90-1.debian.tar.gz
 4c1c704d79c758317a91d394d14fa96ba1318a7ab845f6276aa56255cd4d44e4 558338 
python-gi_3.3.90-1_amd64.deb
 bb0e8fdef98f0358eda3a6373c25e1893aec48afde1b380e5fbb08fdefb6bc7d 386798 
python3-gi_3.3.90-1_amd64.deb
 160f0a887a52fd93ffce704ed18ff1a6e7e14924cfdcb15d3853a9c259727585 188416 
python-gi-cairo_3.3.90-1_amd64.deb
 4e942f759a5a644d2720b3e4cf80f570df153b1a9234fb9d27db3c524227f81e 1773274 
python-gi-dbg_3.3.90-1_amd64.deb
 47e5584904504d64748976cef601527593f4def576f2e81079ef59fcf14cf095 1061454 
python3-gi-dbg_3.3.90-1_amd64.deb
 74cd66c5d67ec56ceb9704f1c51a74cd6d6fd912224e47c9689fbd978e99f069 202646 
python3-gi-cairo_3.3.90-1_amd64.deb
 7db8eed2dd2e770ca5498deb37b9defca032338d12eedd9a402e69fa63fcb89c 192372 
python-gi-dev_3.3.90-1_all.deb
 70c3910fe4db0374c3cb42375fe1e1caecce7e9271a84f81e317474b60fae60c 184894 
python-gobject_3.3.90-1_all.deb
 e98354d7963707332c43c927ed9c71d1710025cc98b64919fee495cc1746257d 184912 
python-gobject-dbg_3.3.90-1_all.deb
 57b796b3942f0e459e9df56ad9022d4074c5fe5bc73e9577fcc24c185de1c890 184908 
python-gobject-dev_3.3.90-1_all.deb
Files: 
 1c969baf1ccf89e8cb4bd428549bb03f 2956 python optional pygobject_3.3.90-1.dsc
 a56cb2f383e4b405462034ae052dc0ae 596936 python optional 
pygobject_3.3.90.orig.tar.xz
 3bee70914d6c5782b1875a9a97ff0f65 16748 python optional 
pygobject_3.3.90-1.debian.tar.gz
 dc7445b76db33f6cc5055bff84cda38a 558338 python optional 
python-gi_3.3.90-1_amd64.deb
 70c686351a61f85706c1dd8dcbaee311 386798 python optional 
python3-gi_3.3.90-1_amd64.deb
 9c509f2366063506a8049b555207970d 188416 python optional 
python-gi-cairo_3.3.90-1_amd64.deb
 53314c4b9dc225d3f508a25e3e0921a4 1773274 debug extra 
python-gi-dbg_3.3.90-1_amd64.deb
 68e1121ab8cd43816c3099d39299e2d8 1061454 debug extra 
python3-gi-dbg_3.3.90-1_amd64.deb
 4f7bfb563bab47483daf30e9eefe7514 202646 python optional 
python3-gi-cairo_3.3.90-1_amd64.deb
 69511e5a4826042f302f10f29532a48d 192372 python optional 
python-gi-dev_3.3.90-1_all.deb
 2e2eb948d7cdbce96e60ba6964e4cd67 184894 python optional 
python-gobject_3.3.90-1_all.deb
 d8aab25356813c778d5679c970b85bbc 184912 debug extra 
python-gobject-dbg_3.3.90-1_all.deb
 c55d5fb3e301722ab4effd82471a11bf 184908 python optional 
python-gobject-dev_3.3.90-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 

Accepted snoopy 1.8.0-5 (source amd64)

2012-08-20 Thread Zed Pobre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 17:29:26 -0400
Source: snoopy
Binary: snoopy
Architecture: source amd64
Version: 1.8.0-5
Distribution: unstable
Urgency: low
Maintainer: Zed Pobre z...@debian.org
Changed-By: Zed Pobre z...@debian.org
Description: 
 snoopy - execve() wrapper and logger
Closes: 685370
Changes: 
 snoopy (1.8.0-5) unstable; urgency=low
 .
   * Add Slovak Debconf translation (closes: #685370)
Checksums-Sha1: 
 3e5caefd2fef857b22312d8eafe9c5773426af2a 1797 snoopy_1.8.0-5.dsc
 5bb323c909a951598366cc6b4c60a2af24edf2f4 13884 snoopy_1.8.0-5.debian.tar.gz
 0e5adf0060a0371c2470d274bc2b5894889e980f 14634 snoopy_1.8.0-5_amd64.deb
Checksums-Sha256: 
 e9aca8453b4b43c81c4a33a2160e7482e945ad5e4734defaf7fcce4c7f75282c 1797 
snoopy_1.8.0-5.dsc
 aed1894ad3169b4c305807e386bfb3283ac0df05233b1c00e83e0897195907e9 13884 
snoopy_1.8.0-5.debian.tar.gz
 715cd12392eb2b81d9be40ba4f2da1e01a10a5e1d202757abc72ea5258eb229b 14634 
snoopy_1.8.0-5_amd64.deb
Files: 
 96d57355765e3a0d7a1c334d334fd303 1797 admin optional snoopy_1.8.0-5.dsc
 3f4f57e32ef161647defd5275173380f 13884 admin optional 
snoopy_1.8.0-5.debian.tar.gz
 144ac1961185220088cd918467578bb6 14634 admin optional snoopy_1.8.0-5_amd64.deb

-BEGIN PGP SIGNATURE-

iQIcBAEBCAAGBQJQMqzTAAoJEEj0fFjWHGKDP/8QAKzlpWCidpFyijKGgUDjx5mh
3cWHL5fUTapgkZXekA8j4ROXZ34DpZwrSlCyljZyXJ9OJawQVtIRNzNq+gOgbRjr
cnaStOTbU1+LMD4me2p1XAHcSpDOb2MsogPF8cOwLTzkiRgJBFNWnNCr/KVNdSTh
6V4wx1fiGRaXMFfM1fym1ojz1aM99Jm+8tuFkHymnkuB7XzLWmfn4d/Wzm+/MpLc
L8ywfTEzUvs38HaoiMN3ul7y+rSs8aOnwkllRFwxEVLMRR6dEdkoLKUtbk10oI2O
szFywg6gvJ9zyyqHc+3atkZfSUsuAaEMSAq81uw2dpd0+pUUs3Q2ColZ1NqYl5y2
XR6dmQdftIrSgv3P+sRcl8+oIF1CBXJoW8egHFSGl/SXeJNgSyW5f3k+SOquSdIF
ezingnsHupsI18+0fpR4np8dYpnP1zuRZchRd4qeUv5C824xV5iHpv4D89y6Qpyg
Ll4VhGxpwmMkHOT/j5g0HiHLcBPcFXnGUtvOLU8MzbEXHi/wNHyzvu/HFK2F+JwZ
vMJZ/2pBtYugPph2P7Yr3EEYVvdSY04dCsTyywH9GP9w4q9He6cz7tLMo+RB0Ve0
ZwyKh3PnYu1mUpvE9h/awShBnYZUMToeYshKcY99DmznA8HbxS9r28yzALV+5nsO
skzICk3jfoX3eAUlesMa
=ozVF
-END PGP SIGNATURE-


-- 
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/e1t3zpd-0006z1...@franck.debian.org



Accepted scons 2.2.0-1 (source all)

2012-08-20 Thread Luca Falavigna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 23:26:43 +0200
Source: scons
Binary: scons
Architecture: source all
Version: 2.2.0-1
Distribution: experimental
Urgency: low
Maintainer: Luca Falavigna dktrkr...@debian.org
Changed-By: Luca Falavigna dktrkr...@debian.org
Description: 
 scons  - replacement for make
Closes: 579337
Changes: 
 scons (2.2.0-1) experimental; urgency=low
 .
   * New upstream release.
 - New documentation for custom Decider functions (Closes: #579337).
   * debian/patches/remove_stale_files.patch:
 - Refresh for new upstream release.
   * debian/compat:
 - Bump compatibility level to 9.
   * debian/control:
 - Bump Standards-Version to 3.9.3, no changes required.
Checksums-Sha1: 
 224564a4f22f67cd8cc17ef0597c622d97fa5052 1868 scons_2.2.0-1.dsc
 b48b71926f707aa3a802081bfd9b0ef45c3b0fdf 591836 scons_2.2.0.orig.tar.gz
 4e417c45f1d26715ab41a12b3c9fbe821fbbdcea 6752 scons_2.2.0-1.debian.tar.gz
 4ffe62e9158166c47dbf690a2b210bf550f53a5e 599428 scons_2.2.0-1_all.deb
Checksums-Sha256: 
 f3b45ef53a2ae2610608f36e7a72e0661ca353a5301dd08615a77947ea3eca0a 1868 
scons_2.2.0-1.dsc
 f7fcd11a7af7ec13d587a2f7cf14a92e3223eea64bf078454a9856ec0ab465b9 591836 
scons_2.2.0.orig.tar.gz
 ce004cdd822017c51274d71db7d34ae00ec5c1632bbd69bd30b9ae9fddbf39cd 6752 
scons_2.2.0-1.debian.tar.gz
 dc4d3888023277790440f6500336b1a105594d50f40d80da5faf53f6fc15f188 599428 
scons_2.2.0-1_all.deb
Files: 
 6f48fd8f89ec1a86949a1bf843c5777e 1868 devel optional scons_2.2.0-1.dsc
 f737f474a02d08156c821bd2d4d4b632 591836 devel optional scons_2.2.0.orig.tar.gz
 509170ee0e403135801823f7172bf00e 6752 devel optional 
scons_2.2.0-1.debian.tar.gz
 a7c439c2b9fccb79eb7f6b58436c4a35 599428 devel optional scons_2.2.0-1_all.deb

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

iQIcBAEBCAAGBQJQMrJrAAoJEEkIatPr4vMfx/wP/1nlLw7mEAjEopNnRt3kpDBO
0K0yHuSjpT0tUNOCT+ddl5c0R/XIXEKVQBTwFUgvGpG1XmVDaZYLKbAKdhASn7WT
tXz73UeZwn5cKXQ+sJYUQvlFoKFkWH9c3+NyjWEEbiocaQAn9L1h5fWVBbP3CyIK
ixoHIMYPa0LkV6ZFD8mFkZL+Ha8GBLD88mH1FLbC6xo+UIrhMsBa/WbSmzMlkEiH
B6sJ5SCWjsF8vhGpTkRo6a2gYkycB1c7JH7B8XFeH0XnNYrv3yNnT0RXT6zCdADZ
a5YCVyR28QuWtZU1ZOfy9sfZ5N8MqUDNUDQmVdrpdrzEZt3FrLTF4WRSGevp2bkt
j+L8lPwE3o9GUVBvoDtKwyp0wo9UiV2hDMDXZ1nFcxbBwKY90qYuN2FN9MTLQP6F
37CQ0cii5awq/irMqccqgCYnu2y7HuRdd70c/mg1D+iIZNnxqVZHedbTRblUSzoI
vEA9gTdJSorcRypageYoQouvZpTSbHM3T+cErXbwKRG2v1oexfinJShUbuDraRrn
39GpdZLPiXaKe4YIkuj6cdacRJRVXtFm0QirPSqeSwusl4Q5TrKnIGbgwqxCcQGl
2vSuFCm4hJpohjVD3AeO1/fpRhqUOOQR74PQwxORbLM9H4K9vSzqC8RBusegtgjI
lS99XY9sMEiI1wC2ofzv
=QvhE
-END PGP SIGNATURE-


-- 
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/e1t3a3x-0003gm...@franck.debian.org



Accepted scons-doc 2.2.0-1 (source all)

2012-08-20 Thread Luca Falavigna
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 23:50:21 +0200
Source: scons-doc
Binary: scons-doc
Architecture: source all
Version: 2.2.0-1
Distribution: experimental
Urgency: low
Maintainer: Luca Falavigna dktrkr...@debian.org
Changed-By: Luca Falavigna dktrkr...@debian.org
Description: 
 scons-doc  - Documentation for SCons, a replacement for Make
Changes: 
 scons-doc (2.2.0-1) experimental; urgency=low
 .
   * New upstream release.
   * debian/patches/no_remote_dtd.patch:
 - Removed, no longer needed.
   * debian/patches/unicode.patch:
 - Removed, applied upstream.
   * debian/compat:
 - Bump compatibility level to 9.
   * debian/control:
 - Add docbook-xml to Build-Depends-Indep field.
 - Bump Standards-Version to 3.9.3, no changes required.
Checksums-Sha1: 
 de8129ea6f14d052f39843dbda0b324422a0729c 1963 scons-doc_2.2.0-1.dsc
 d334d13715f695d8ec4828f98891fa79ad05cdb4 1490662 scons-doc_2.2.0.orig.tar.gz
 a24095e0a3b7122d75d47d80f5fc06645800f530 3293 scons-doc_2.2.0-1.debian.tar.gz
 642303b4b53818c384116a8ce2ff09f8203e92bd 2456526 scons-doc_2.2.0-1_all.deb
Checksums-Sha256: 
 e16ee31cd110e331dd6679b7d3ff3bfe05ab55e58aa9f9138980c6b0812dd844 1963 
scons-doc_2.2.0-1.dsc
 729093b9b80534820ac102c4d6bf8fe720dffa1421bf834432237e14f46e281d 1490662 
scons-doc_2.2.0.orig.tar.gz
 aeb4548fad1880b912f5a26f4a59d3582b0be41e82b983a517d7652dcfd2647d 3293 
scons-doc_2.2.0-1.debian.tar.gz
 da795e30f0f0ceed1d53cd4694f895528e4a38b911167d8d586a80bc2cffc5da 2456526 
scons-doc_2.2.0-1_all.deb
Files: 
 6eb6e161399962cff25f7ab1bb427bae 1963 doc optional scons-doc_2.2.0-1.dsc
 83301784533dba5de596ac38075c1ff9 1490662 doc optional 
scons-doc_2.2.0.orig.tar.gz
 2ed55807aa184b835cb1f74e49a413b5 3293 doc optional 
scons-doc_2.2.0-1.debian.tar.gz
 46d8c0fb47238a5dd89a894fa27b8629 2456526 doc optional scons-doc_2.2.0-1_all.deb

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

iQIcBAEBCAAGBQJQMrJrAAoJEEkIatPr4vMfaJ8QAIv2AHjKs3qSY9gTW0LLTY7F
ZfgQbDXVaoJyA+AhYkdfdp8YH6BW+aAb93WuAm26o8m7qJ0HiJpizQRsJeisAGbF
fwSPyufcpJcQxrZlY7TwEMsSfnLom56bHz+tQNaFnMBOZ7V/pz+LfG/avQ3EENha
5HzCnQUntweEq9pLLOSxLOP1zmnl0O6t0qzGMP9QXIKm2g6QpAoknMCVSx+9FlAQ
xPZkQh250t2Fg9Yk9zILJ8Pm/ymzZpN8MdctumCR71SFkqbvFKlCodmObBo4rHTi
HO32KDAcG0hxn/1ntrxDa0kK5QKxieDta6eXHAbqHYZVgZFE0VL8cOCDauRQwOQ+
Gv8b/d1wOVrkxR6yt4PbqGahzoHp6ERcdiD7rYmvioMwxV1AU51ETCopthE7Cm4O
AZC1lunbY7MzFvTznNmtWHCWAseGfbMgtaNFOkr5HB46nThNdsR1wa2d6t1Gn9aU
buh3O1Bxbi7FrIzoHl8CI6Nae1vD3Tbxo94M3zSqVO5l5pOypzcFZhFN6ARnbNXM
suTcwBNO0uGl7WE1Mbnfo4INRGsKtGLjI2ZuJgMSXgL0/yDLCdBgt1xDf+NWeYD2
aUE3OHd4ytoQuTHIiy7jPG8RtZwIOF4pRMEIR3P66jxcm37HGAupIkNXtaqjpuPJ
fk5IHlahDKYK4Pcq3GdC
=l6nL
-END PGP SIGNATURE-


-- 
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/e1t3a40-0003h9...@franck.debian.org



Accepted localechooser 2.44 (source i386)

2012-08-20 Thread Colin Watson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 20 Aug 2012 23:24:57 +0100
Source: localechooser
Binary: localechooser
Architecture: source i386
Version: 2.44
Distribution: unstable
Urgency: low
Maintainer: Debian Install System Team debian-b...@lists.debian.org
Changed-By: Colin Watson cjwat...@debian.org
Description: 
 localechooser - choose language/country/locale (udeb)
Changes: 
 localechooser (2.44) unstable; urgency=low
 .
   * Fix accidentally-combined Dutch and Dzongkha entries in languagelist.
 .
   [ Updated translations ]
   * German (de.po) by Holger Wansing
Checksums-Sha1: 
 59fa70df1dd11e9d8cd7947f7cdf9c8ed21985fa 1742 localechooser_2.44.dsc
 ca2d6166bd383e8a41413061c7a6f409be9bef93 209398 localechooser_2.44.tar.gz
 75d8cb0399fbc5f69d0300a52e6719890259ceaf 274250 localechooser_2.44_i386.udeb
Checksums-Sha256: 
 640e1457912cb9226eb40dfb5296dd1e078998b69851d58ec1e4824569b9ad43 1742 
localechooser_2.44.dsc
 90f09bd1bf8042c605ecaf02f24567db74a877d22c9ae86fb3c4f150601e503a 209398 
localechooser_2.44.tar.gz
 a2da4edeb9bf83bf5d4d22aee9435705f4fced0f7ba494de90b60c4970e5644d 274250 
localechooser_2.44_i386.udeb
Files: 
 d72acf9d01d9b8a795e8dcaf4dc0aca6 1742 debian-installer optional 
localechooser_2.44.dsc
 b76db8dd316011967a0a52c84015cb47 209398 debian-installer optional 
localechooser_2.44.tar.gz
 f3233a68351b8c40abe77716c96f06f9 274250 debian-installer optional 
localechooser_2.44_i386.udeb

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

iQIVAwUBUDK8rTk1h9l9hlALAQiYwg/5AUrVQaiSZCWhjv93M3wZ3qIM0ANikNfj
z0R36hJJlg/ThSghoQE7XFhLiEMEgMKKi/pFM8I7tmqk8xPtbp4Jse5RniN4/QKK
6Mvp6mV+33GvHM9HXwuJArKrfnbiDEpE5YIAzb7QCrJicUPd/SyLAclcuvUjF/0u
k03UruccmtRFXKgTzpr6uwNEOtIpmnJGUcTUIVMnJgzmenlF1dAko+kSmsLHob0j
QhcjTkvBWT69Kn/rsXPe5e8qvwL6czC4YlVU8K9PNQbFel+/jcWV+zoAZxvp8HZO
JhtHMFl5rMCHqEXd9JvGITSQdbZl1WMFkbUaiyJP54jWk8QHGjjox0rPaGsyWygu
HUB7si32IeAkF+UQCIz5zFOf5t4kjQhmS1vgzmBXue08zH7FVZlJzgo5u0+UCX0I
8V8RVo6oObydiKHb5eWdCGGPfL2QbeJGcd0tyBjdEZrZog0WM3aMzUE0VkYW23ev
te3VqOSZ7AvNhYo9IJRudF7g0WXpcTMb+c89B6PR1pcpbJkgORF2Iy+LppMSoOsF
o7um0Ch5GPYlElIso/1n0AdNeGlaVLZ9NUsSXIXdLylwciZz9cTw0HjY8xq3kPJp
DLVVGZPi1sTuJ9tFgFhKfi4BtsjuEiYxBzCCmiEfoWW18tv0hU9OPn1yB85VVCqv
JR3aCLcRDfc=
=J4FW
-END PGP SIGNATURE-


-- 
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/e1t3al0-0007lt...@franck.debian.org



Accepted shogun 1.1.0-6 (source all amd64)

2012-08-20 Thread Soeren Sonnenburg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Jun 2012 22:52:04 +0200
Source: shogun
Binary: libshogun11 libshogun-dev shogun-doc-en shogun-doc-cn shogun-dbg 
shogun-python-modular shogun-lua-modular shogun-ruby-modular 
shogun-java-modular shogun-csharp-modular shogun-python-static 
shogun-cmdline-static shogun-r-static shogun-elwms-static
Architecture: source all amd64
Version: 1.1.0-6
Distribution: unstable
Urgency: low
Maintainer: Soeren Sonnenburg so...@debian.org
Changed-By: Soeren Sonnenburg so...@debian.org
Description: 
 libshogun-dev - Large Scale Machine Learning Toolbox
 libshogun11 - Large Scale Machine Learning Toolbox
 shogun-cmdline-static - Large Scale Machine Learning Toolbox
 shogun-csharp-modular - Large Scale Machine Learning Toolbox
 shogun-dbg - Large Scale Machine Learning Toolbox
 shogun-doc-cn - Large Scale Machine Learning Toolbox
 shogun-doc-en - Large Scale Machine Learning Toolbox
 shogun-elwms-static - Large Scale Machine Learning Toolbox
 shogun-java-modular - Large Scale Machine Learning Toolbox
 shogun-lua-modular - Large Scale Machine Learning Toolbox
 shogun-python-modular - Large Scale Machine Learning Toolbox
 shogun-python-static - Large Scale Machine Learning Toolbox
 shogun-r-static - Large Scale Machine Learning Toolbox
 shogun-ruby-modular - Large Scale Machine Learning Toolbox
Closes: 682166
Changes: 
 shogun (1.1.0-6) unstable; urgency=low
 .
   * Fix error occurring on package upgrades (Closes: #682166)
Checksums-Sha1: 
 75face6769266def1eca8b51cb0509d875a12723 3158 shogun_1.1.0-6.dsc
 49923e084ddd71aa47c9b723275b2483de2087e2 19459 shogun_1.1.0-6.debian.tar.gz
 54ea43809edc5a43c33197409500a5e6f19817ae 18376322 shogun-doc-en_1.1.0-6_all.deb
 40b5824161d28d1b9f983de526b884f0fafb7a76 575426 shogun-doc-cn_1.1.0-6_all.deb
 3f730519695bc15e58a227806816151cbddb3f38 1605082 libshogun11_1.1.0-6_amd64.deb
 12ca6df2d75ecff5065500436af908347aed0521 2786908 
libshogun-dev_1.1.0-6_amd64.deb
 e457b4865d16005c90054233233311fb2cec4f8c 11851022 shogun-dbg_1.1.0-6_amd64.deb
 49ca5465ebac20f4ae57e327a669b94822bf43c1 5889528 
shogun-python-modular_1.1.0-6_amd64.deb
 97a73d9d584eebd8a1e629b67b1db63b4af5efee 2588270 
shogun-lua-modular_1.1.0-6_amd64.deb
 7ca6dbd86a8a1b8d32eec789c4df99d91429a1fb 1964560 
shogun-ruby-modular_1.1.0-6_amd64.deb
 a0cb95e2e69f203a073dc85bca7ea15527ec2f36 2238986 
shogun-java-modular_1.1.0-6_amd64.deb
 76a82f2ac4d6ed7cca9923f20b7f56ae7e67359b 1505468 
shogun-csharp-modular_1.1.0-6_amd64.deb
 f44dfd57651cdafeeab44e2f704b219a7f3da654 68236 
shogun-python-static_1.1.0-6_amd64.deb
 19a719c4e6597e27c189a883285eb7dc533f4a06 47876 
shogun-cmdline-static_1.1.0-6_amd64.deb
 c418e30188f48462afc7dd59c947c94974e34e3f 68364 
shogun-r-static_1.1.0-6_amd64.deb
 2b42062c16272c865d6fac30fad099d40bbcc482 64266 
shogun-elwms-static_1.1.0-6_amd64.deb
Checksums-Sha256: 
 014d8be9d07651d6d34063ae0bb6aced1a23e999f391a4e2bc06b18dcd19d638 3158 
shogun_1.1.0-6.dsc
 a17b1047bccf72385d718295fafc990376f35078bd4f0049e412ce9ce4d43013 19459 
shogun_1.1.0-6.debian.tar.gz
 ec53865e767adcfe275f4037b02b5b66d492d1c0885e6ec671fa2d384bb4ddfa 18376322 
shogun-doc-en_1.1.0-6_all.deb
 f19c5cb5ea52e9caaba8172376ffc4f5b3454e4fc7bb4428f02fa5c8d9eff0f1 575426 
shogun-doc-cn_1.1.0-6_all.deb
 8e89e1e2dffd652b54edd271d15f155ad17620b172b3279099283c57d7172410 1605082 
libshogun11_1.1.0-6_amd64.deb
 4dd3e5556d1ee199272e5c06847308b426bbc86649bf3a0c625b3e291fc27f9f 2786908 
libshogun-dev_1.1.0-6_amd64.deb
 b4872e352e6f9e105c3821c8b08d7d45ed512bc289b3ccac22189d81e8a89107 11851022 
shogun-dbg_1.1.0-6_amd64.deb
 c65e7d6cc9a849e68a8cfaed8f56b1371ca30eeb1538c2c2ef5b4707cd6fcaf1 5889528 
shogun-python-modular_1.1.0-6_amd64.deb
 866301e9aa72fbf12b6b3ccc65ebf50b98691a83ef41fa0f0fdf08537b58f361 2588270 
shogun-lua-modular_1.1.0-6_amd64.deb
 7f4623ec07228925b123a870a552338bfcc98891484afbb6baccf49d3b6d519a 1964560 
shogun-ruby-modular_1.1.0-6_amd64.deb
 8a2452292e181cb8b93103d76a5255a8c81621c620655afc6a870e397a494157 2238986 
shogun-java-modular_1.1.0-6_amd64.deb
 7ec1b8ef7b3619271ab9a0ed4375ac1a021625f9a037b230fe95f2a7b2805a3e 1505468 
shogun-csharp-modular_1.1.0-6_amd64.deb
 f50adefc990932655f2badf8025d62ad979d7d01ea3311dfc9e42d0c2e373cf8 68236 
shogun-python-static_1.1.0-6_amd64.deb
 e29e81436da4c55ea571ac8c31f44174ccf72cec8e1cafd03ffa72d3fc7df6d8 47876 
shogun-cmdline-static_1.1.0-6_amd64.deb
 d08e5a0e818e3cc8745f9d5f1fee5f37c9bc623c970357ac9df042b96fa88340 68364 
shogun-r-static_1.1.0-6_amd64.deb
 3844870dee6a07398dc1f8f3b7c42c3de5b23bbd9f9e93ef9659b5e3d857b175 64266 
shogun-elwms-static_1.1.0-6_amd64.deb
Files: 
 154ef716bff7941c37dcd43d18a0154f 3158 science optional shogun_1.1.0-6.dsc
 ab9688c3c5a4672f6bbff4029b7f8185 19459 science optional 
shogun_1.1.0-6.debian.tar.gz
 0ba3f8fba02258f8037a753d2ec7a0b1 18376322 doc optional 
shogun-doc-en_1.1.0-6_all.deb
 2a076efde13148ebb8c175f93973766e 575426 doc optional 
shogun-doc-cn_1.1.0-6_all.deb
 d4a6fb3aec36035e9a3b2180a87978ae 1605082 libs 

Accepted apt-listchanges 2.85.12~exp1 (source all)

2012-08-20 Thread Sandro Tosi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 21 Aug 2012 01:20:55 +0200
Source: apt-listchanges
Binary: apt-listchanges
Architecture: source all
Version: 2.85.12~exp1
Distribution: experimental
Urgency: low
Maintainer: Sandro Tosi mo...@debian.org
Changed-By: Sandro Tosi mo...@debian.org
Description: 
 apt-listchanges - package change history notification tool
Closes: 573013 678311
Changes: 
 apt-listchanges (2.85.12~exp1) experimental; urgency=low
 .
   [ Julien Cristau ]
   * [022b79c] apt-listchanges: debconf passthrough frontend for use with
 packagekit; Closes: #678311
 .
   [ Sandro Tosi ]
   * [7bbe068] don't show changes only for packages configured early; thanks to
 Zack Weinberg for the patch; Closes: #573013
Checksums-Sha1: 
 486bc1b67edc2ceeb6fba9d93b32aeed8cf3 1135 apt-listchanges_2.85.12~exp1.dsc
 0efe709f8c83d909306787cdd8d82fae87f42285 88564 
apt-listchanges_2.85.12~exp1.tar.bz2
 3928b82a09ae331d167b0a97c467d291ba94f9ff 89522 
apt-listchanges_2.85.12~exp1_all.deb
Checksums-Sha256: 
 997099915c36269db82e84f052e3192df2b26e1202b8135b495c3364d2e08f64 1135 
apt-listchanges_2.85.12~exp1.dsc
 dcd9101233cd2534232255052e2a7573d9a8676dd6f2af4639af6e1eca8aede3 88564 
apt-listchanges_2.85.12~exp1.tar.bz2
 45427e1888dab4ebc7a65c85c04b74da01e7e85d3d2bbbe457d0df911ca6453f 89522 
apt-listchanges_2.85.12~exp1_all.deb
Files: 
 80eb0b5a7c016e2ce231bff09fd08f4a 1135 utils standard 
apt-listchanges_2.85.12~exp1.dsc
 4d6376ff4ad979e87a4e2a0c81de8490 88564 utils standard 
apt-listchanges_2.85.12~exp1.tar.bz2
 d74783820e45cd486501824c97acd6f5 89522 utils standard 
apt-listchanges_2.85.12~exp1_all.deb

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

iEYEARECAAYFAlAyx/UACgkQAukwV0RN2VD/4ACghQ+ObqWU+a7a1na0bLt9j/6B
BL0AnjsKk590tt/PZKZk6FY1fl6PVyqk
=/bsg
-END PGP SIGNATURE-


-- 
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/e1t3bsx-0002l9...@franck.debian.org



Accepted lbzip2 2.2-2 (source amd64)

2012-08-20 Thread Mikolaj Izdebski
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 20 Aug 2012 18:59:20 +0200
Source: lbzip2
Binary: lbzip2
Architecture: source amd64
Version: 2.2-2
Distribution: unstable
Urgency: low
Maintainer: Mikolaj Izdebski zurg...@gmail.com
Changed-By: Mikolaj Izdebski zurg...@gmail.com
Description: 
 lbzip2 - fast, multi-threaded bzip2 utility
Closes: 685418
Changes: 
 lbzip2 (2.2-2) unstable; urgency=low
 .
   * debian/rules: Add a working build-arch target, closes: #685418.
Checksums-Sha1: 
 472608c026e9af07d82afe5fcd13ed7750a6f2a3 1169 lbzip2_2.2-2.dsc
 c58e9c7d64f609f0c64fba624646a3d07df2f215 5373 lbzip2_2.2-2.debian.tar.bz2
 98c897e5267808c1dc48b1164b84593fe4c331b2 80098 lbzip2_2.2-2_amd64.deb
Checksums-Sha256: 
 4c175c3abb21edea56d692c0df25d0bf6095fe4ac3a4f79e5942855a5108f146 1169 
lbzip2_2.2-2.dsc
 8e934105272f9bebb95eda4cbe859f754e5fa9283cc4f53ed7d6765465f9bded 5373 
lbzip2_2.2-2.debian.tar.bz2
 ecb484bb354c050b442828dad94e902bb814a6e65c34b70e0bd2c11109601174 80098 
lbzip2_2.2-2_amd64.deb
Files: 
 d63ec0b15b2231c49583fb4f80f381fa 1169 utils extra lbzip2_2.2-2.dsc
 586f36bbbdb29b56efc2660e4094a2e1 5373 utils extra lbzip2_2.2-2.debian.tar.bz2
 b4fd66a626683e97d45fa197bbd794c6 80098 utils extra lbzip2_2.2-2_amd64.deb

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

iEYEARECAAYFAlAyzYsACgkQMDatjqUaT92VLwCgkcymCDYG1kqAXAoncejK/SMN
Bk0AoIJ8nSsQPCOG18DZLQRAfKS+hw0B
=o3rg
-END PGP SIGNATURE-


-- 
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/e1t3bvz-0002sa...@franck.debian.org



Accepted json-c 0.10-1 (source amd64)

2012-08-20 Thread fabien boucher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 17 Aug 2012 16:40:10 +
Source: json-c
Binary: libjson0 libjson0-dev libjson0-dbg
Architecture: source amd64
Version: 0.10-1
Distribution: unstable
Urgency: low
Maintainer: fabien boucher fabien.dot.bouc...@gmail.com
Changed-By: fabien boucher fabien.dot.bouc...@gmail.com
Description: 
 libjson0   - JSON manipulation library - shared library
 libjson0-dbg - JSON manipulation library - debug symbols
 libjson0-dev - JSON manipulation library - development files
Closes: 684058
Changes: 
 json-c (0.10-1) unstable; urgency=low
 .
   * New upstream release (Closes: #684058)
   * Change watch file to target on github json-c repository.
   * Add patch fixing compilation warning in tests/test_printbuf.c.
   * Update to standards-version 3.9.3.0.
   * Update copyright information.
Checksums-Sha1: 
 45c584a28c537a0858272266754b3968dd12b685 1146 json-c_0.10-1.dsc
 1b5f36f3b630f9981daf1018f800b487a0edb8a2 389230 json-c_0.10.orig.tar.gz
 eb4663d9d59ae02782e0bedddf248933083da172 3609 json-c_0.10-1.debian.tar.gz
 51cddeaa00fcd3ad96250b2effb85675c798ac47 23974 libjson0_0.10-1_amd64.deb
 9e5635e7b389bbcdbdc5f006337b4e76b810298c 93256 libjson0-dev_0.10-1_amd64.deb
 a10e8c37c4cc6798639937c96d47e23aa65bb8c9 35888 libjson0-dbg_0.10-1_amd64.deb
Checksums-Sha256: 
 c35fb1a6a1828616db91666b5da2b721d1c4254284bf9d2038504078aacef8f3 1146 
json-c_0.10-1.dsc
 6601f2882a9f69644591d1edd3832c90169e0bc45dff18494a892ad4efe82f59 389230 
json-c_0.10.orig.tar.gz
 471f51a999eb161a9c5f4c9eebbb5b526246815f757172bc766af60d57881003 3609 
json-c_0.10-1.debian.tar.gz
 4946e5687fa0fd700eb6fbe8c15701ad9e7eaa3e6ba4ccce31f9ae5138863608 23974 
libjson0_0.10-1_amd64.deb
 09c5fdfc05c2623c4b22a9afeef5f4c2443044d71468e9210bf4b547cac30aac 93256 
libjson0-dev_0.10-1_amd64.deb
 8df560a53d3db8cfe659db9b0eb48f48ea41348aac5fd2b9c9a239fd746d3f02 35888 
libjson0-dbg_0.10-1_amd64.deb
Files: 
 0e6f9a10890efe2ca969b6b2b9b381d8 1146 libs extra json-c_0.10-1.dsc
 2e8d1db2d3457274bcc3ae8a5fc8ca2b 389230 libs extra json-c_0.10.orig.tar.gz
 bce74f1baf30bcce2b7b9efd23b52d2b 3609 libs extra json-c_0.10-1.debian.tar.gz
 f496516d48ad63731dcdbc45f3eec6ea 23974 libs extra libjson0_0.10-1_amd64.deb
 9490b82f3ce3c20355236d9d88c82b03 93256 libdevel extra 
libjson0-dev_0.10-1_amd64.deb
 04bf70f38a28df6e5c3157c3c6a7e01c 35888 debug extra 
libjson0-dbg_0.10-1_amd64.deb

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

iEYEARECAAYFAlAzHAsACgkQKFvXofIqeU5ukQCgseagY4I0FwnCXp1051KSLTzb
KykAn3Zn1nzS3KFSBd3bMapvlvxKLAtZ
=ANoy
-END PGP SIGNATURE-


-- 
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/e1t3hjs-00082b...@franck.debian.org



  1   2   >