Re: Removing 2048 bit keys from the Debian keyrings

2014-09-02 Thread Andreas Tille
On Sun, Aug 31, 2014 at 11:07:43AM -0700, Stefano Zacchiroli wrote:
 On Sun, Aug 31, 2014 at 01:27:11PM +0100, peter green wrote:
  If you have signed someones old key is it considered responsible to
  sign their new key based on a transition statement signed by the old
  key? or is a new face-to-face meeting required? I've seen plenty of
  (sometimes conflicting) advice on signing keys of a person you have
  never signed keys for before but not much on the transition situation.
 
 This topic is in the realm of personal signing policies, so it's
 probably normal to have conflicting advice among us.

[posted something like this on debian-private but it should rather be
 in public]

Signing a new key according to a transition statement IMHO just supports
the I'm ranking higher in the signatures count competition.  I have
never signed any transition request since I'm really convinced about the
fact that GPG signing is not a matter of technically checking a
fingerprint and uploading a signature but rather learning to know your
fellow DDs and seeing what *person* is behind a certain ID.  Finally you
assign a key to a person and not only to its ID card which only proves
that the government of the country assumes that the person has this ID.
From my point of view our web of trust should be based on personal
contacts rather than technical documents.  So meeting this person again
and sign the new key is way more important than rather help the person
to regain the original signature count.

And yes, I know there are people who have trouble meeting a DD but I
have never met one of them (probably due to this fact) and so even this
argument is not valid in my case (and yes, I would consider helping out
in trouble if it would be *really* needed).
 
 In practice, this might become a fairly strict requirement, and I've
 keysigned on the basis of a transition statement only twice over the
 past 5 years. YMMV.

I had several chances to meet the people I met before in the last five
years and so there was no point for me to sign any transition statement.
I also never minded issuing a transition statement myself and I consider
my key resonably integrated into the web of trust even if it is not
featuring the number of signatures of my old key.

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: https://lists.debian.org/20140902080129.gd20...@an3as.eu



Bug#760262: ITP: ruby-kakasi-ffi -- A Ruby binding for KAKASI implemented with Fiddle/DL/FFI

2014-09-02 Thread NOKUBI Takatsugu
Package: wnpp
Severity: wishlist
Owner: NOKUBI Takatsugu k...@daionet.gr.jp

* Package name: ruby-kakasi-ffi
  Version : 1.0.1
  Upstream Author : Akinori MUSHA k...@idaemons.org
* URL : https://github.com/knu/kakasi_ffi
* License : BSD-2-clause
  Programming Lang: Ruby, C
  Description : A Ruby binding for KAKASI implemented with Fiddle/DL/FFI

ruby-kakasi-ffi is a replacement of ruby-kakasi. Former package was
obsolete, and the upstream site had closed (RAA).


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140902074135.27046.8541.reportbug@putia



Re: Bug#759849: multipath-tools: FTBFS: uxsock.c:20:31: fatal error: systemd/sd-daemon.h: No such file or directory

2014-09-02 Thread Ritesh Raj Sarraf

On Monday 01 September 2014 07:48 PM, Michael Biebl wrote:

In native init scripts, we did a lot of check before starting and
shutting down the daemon. Things like checking the root device, or
tiggering LVM Volume Group activitation. They were easily done in shell.

What would the systemd team recommend for it ?


Could you elaborate a bit more, why those are needed?
What is upstream doing about this?


The block storage has many components that work closely with one another.

Take an example, root fs on LVM on Multipath on iSCSI.

The flow for such a setup is to:
1) Start iSCSI and discover the LUNs
2) Detect and create mulitpath maps for matching LUNs in DM Multipath
3) Detect and Activate Volume Group out of the newly detected DM 
Multipath Physical Volumes

4) Mount the file system.

The same can be applied to the shutdown sequence. You want to have 
proper checks in place before initiating a shutdown of the service. One 
would argue that the service should not stop if it has active services.


Many of the services (mulitpath, iscsi, for example) have a 2 part 
component. One in the kernel and the other in userspace. The kernel 
space service will not terminate if any service is active. But the 
userspace is not so forgiving.


In open-iscsi, if you ask the daemon to shutdown, it will. If there are 
active sessions, the kernel component will not terminate the current 
sessions. But the userspace daemon will be shutdown. That means, that 
when there is the next state failure, open-iscsi will have no idea of 
determining that a LUN state has changed


Similar is the case with DM Multipath. The userspace DM Multipath daemon 
is responsible for polling and keeping an up-to-date status of the 
Device Mapper maps. If the userspace daemon is inactive, and underneath 
there is a fabric state change, there is no way to propagate that error 
to the upper layers.


These design issues, since they are part of the core storage stack, if 
triggered, leave you with a machine with no access to your root disk. 
Any process at that time, may get into a 'DI' process state or an 
immediate device failure. The only action then would be to hardware 
reset your machine.


This is why we do a lot of checks in the init scripts to warn the user.


Similar approaches were taken in RHEL (5 and 6) and SLES (10 and 11). 
I'm not sure what Red Hat or SUSE has chosen for their latest releases, 
as I don't work on those products any more.



My inclination is to ship both, the systemd service files and the init 
scripts, in their current form along with whatever limitations each may 
have, and let the user choose.



And by the way, can someone please shed some more light on Debian bug: 
760182


Per the bug report, there is no systemd support in d-i. Which then means 
that I need to disable systemd support ?



--
Ritesh Raj Sarraf | http://people.debian.org/~rrs
Debian - The Universal Operating System


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/540579e3.50...@debian.org



Re: Bug#759849: multipath-tools: FTBFS: uxsock.c:20:31: fatal error: systemd/sd-daemon.h: No such file or directory

2014-09-02 Thread Ritesh Raj Sarraf

On Tuesday 02 September 2014 12:46 AM, Christian Hofstaedtler wrote:

In native init scripts, we did a lot of check before starting and shutting
down the daemon. Things like checking the root device, or tiggering LVM
Volume Group activitation. They were easily done in shell.

What would the systemd team recommend for it ?

That probably depends on why you were doing these things in the
first place. It'd be my understanding that udev should take care
about most stuff, and for the root device, your initramfs-tools hook
should do it.


Yes. udev did take care of many things. But not all got covered by udev. 
Please see my other email for the problem.


--
Ritesh Raj Sarraf | http://people.debian.org/~rrs
Debian - The Universal Operating System


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/54057a72.8020...@debian.org



Re: Base binary packages using xz instead of gzip

2014-09-02 Thread Marco d'Itri
On Sep 01, Colin Watson cjwat...@debian.org wrote:

  If anybody really cares then I suggest that they add support for xzdec 
  to debootstrap.
 debootstrap has supported data.tar.xz since 2010.  The thing that's
 relevant here, which is outside our control, is whether the non-Debian
 systems from which one might be running debootstrap have xz-utils
 available.
I know, but if systems on which xz-utils is not easily available really 
exist then the interested parties could replace it with xzdec which is 
small and statically linked.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: Bug#759849: multipath-tools: FTBFS: uxsock.c:20:31: fatal error: systemd/sd-daemon.h: No such file or directory

2014-09-02 Thread Ritesh Raj Sarraf

On Tuesday 02 September 2014 03:00 AM, Michael Biebl wrote:

Also, please don't simply override the lintian warning [1]. It is there
for a reason.


[1]
http://anonscm.debian.org/cgit/pkg-lvm/multipath-tools.git/commit/?id=0783f2ec40f512adfda04c542c5ed38b53bf1247


Yes. After having talked to you, in the next upload, I'll apply the 
systemd service matching to the init script name.


--
Ritesh Raj Sarraf | http://people.debian.org/~rrs
Debian - The Universal Operating System


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



Re: Base binary packages using xz instead of gzip

2014-09-02 Thread Ondřej Surý
On Tue, Sep 2, 2014, at 10:24, Marco d'Itri wrote:
 I know, but if systems on which xz-utils is not easily available really 
 exist then the interested parties could replace it with xzdec which is 
 small and statically linked.

Is there such system or are we having an academic debate again?

Cheers,
-- 
Ondřej Surý ond...@sury.org
Knot DNS (https://www.knot-dns.cz/) – a high-performance DNS server


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/1409650489.3678407.162594529.173b5...@webmail.messagingengine.com



Re: Removing 2048 bit keys from the Debian keyrings

2014-09-02 Thread Matthias Urlichs
Hi,

Jakub Wilk:
 Do you have any non-joke documentation about signing responsibly?
 
Signing a key is equivalent to saying that you think that the key belongs
to a particular individual and/or identity.

Whether that means I regularly hang out with them at DebConf or
I met them in a keysigning queue last year, and their driver's license
from $STATE looked reasonably legit is up to you; there's a GPG option
(via the the *-cert-level options, see 'man gpg') to state how carefully
you did verify their identity, but ultimately it's up to you.

-- 
-- Matthias Urlichs


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140902102815.ge21...@smurf.noris.de



Re: Base binary packages using xz instead of gzip

2014-09-02 Thread Thorsten Glaser
On Tue, 2 Sep 2014, Ondřej Surý wrote:

 On Tue, Sep 2, 2014, at 10:24, Marco d'Itri wrote:
  I know, but if systems on which xz-utils is not easily available really
  exist then the interested parties could replace it with xzdec which is
  small and statically linked.

 Is there such system or are we having an academic debate again?

xz-utils are not very portable to old/weird systems.
I could imagine someone wanting to run debootstrap, which
can IIRC work with just sh and ar and tar, on FreeMiNT on
an Atari.

But even there, the recommended method of installing
Debian/m68k is currently to start from either a tarball
or an ext2fs filesystem image one can dd(1) to the HDD
(I even took care to generate it on MirBSD using ext2fs
revision 0 and no new features¹, so that other OSes with
extremely basic ext2fs support can read/write it, prior
to rebooting into it). Only problem with that is kernel
modules (if needed, one can always crosscompile a custom
initial kernel, though). But I’m sure the m68k porters
will want to work on getting d-i back, anyway.

So, I’d say that restricting the base system to gzip
is no longer necessary for jessie. (Even though the
idea to build a statically linked xzdec for the host
OS is hard, e.g. where to find a libc that works with
its old kernel in the Linux case, etc.) But do make
sure to keep it to xz -6, at worst -7, never -9.

① Apparently, modern Linux kernels do not manage to
  leave the filesystem alone in those cases, and
  always introduce features that some old OSes don’t
  support.

bye,
//mirabilos
-- 
[16:04:33] bkix: veni vidi violini
[16:04:45] bkix: ich kam, sah und vergeigte...


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/alpine.deb.2.11.1409021317420.22...@tglase.lan.tarent.de



Re: Possible abuse of dpkg-deb -z9 for xz compressed binary packages

2014-09-02 Thread Thorsten Glaser
On Tue, 2 Sep 2014, Changwoo Ryu wrote:

 In my quick experiments with some font packages, -Sextream -z9
 option still gives  ~4% smaller size than the default. IMO this is
 still significant for big font packages.

Maybe, but please stick to -Sextreme -z7 at most, nevertheless.

Thanks,
//mirabilos
-- 
Yes, I hate users and I want them to suffer.
-- Marco d'Itri on gmane.linux.debian.devel.general


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/alpine.deb.2.11.1409021323590.22...@tglase.lan.tarent.de



network access during package build (was Re: Bug#759762: ITP: libz-mingw-w64 -- compression library (targeting Windows))

2014-09-02 Thread Thorsten Glaser
On Mon, 1 Sep 2014, Adam Borowski wrote:

 Also, should we detect all other attempts to contact the outside network,
 and swat such builds with extreme prejudice?

Yes. These can be privacy breeches, licence violations (download
things that change what gets embedded into the packages), and
all other sorts of nasties. There may be no network access during
a Debian package build; the switchover is usually between installing
the B-D and extracting the source package, at most directly after
the latter.

(I’m aware that there is still *too* much “disable the network” in
pbuilder. Sorry for not having had the time to work on that. I’ll
try to do so shortly.)

bye,
//mirabilos
-- 
Sometimes they [people] care too much: pretty printers [and syntax highligh-
ting, d.A.] mechanically produce pretty output that accentuates irrelevant
detail in the program, which is as sensible as putting all the prepositions
in English text in bold font.   -- Rob Pike in Notes on Programming in C


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/alpine.deb.2.11.1409021325510.22...@tglase.lan.tarent.de



Re: Jessie without systemd as PID 1?

2014-09-02 Thread Thorsten Glaser
On Mon, 1 Sep 2014, Steven Chamberlain wrote:

 rejected.  I hope a Blend would be a more constructive approach.  I'm
 thinking sysvinit would be the easiest 'flavour' to implement for

Actually, I think it’s the hardest one.

All others will be task selections run after debootstrap.

Changing the init system in d-i would be done by passing
--include=sysvinit-core --exclude=systemd-sysv and things
like that (the exact set to be determined by people in
the know).

Oh, and afterwards ensure systemd is not re-added. The
prevent-systemd-* package set can do this in three steps,
although I don’t currently see even prevent-systemd-running
(Conflicts mostly with systemd-sysv) being accepted, so
you’d have to pregenerate some APT pinning configuration
and hope it holds.

bye,
//mirabilos
-- 
Yes, I hate users and I want them to suffer.
-- Marco d'Itri on gmane.linux.debian.devel.general


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/alpine.deb.2.11.1409021313070.22...@tglase.lan.tarent.de



Re: Possible abuse of dpkg-deb -z9 for xz compressed binary packages

2014-09-02 Thread Adam Borowski
On Tue, Sep 02, 2014 at 01:24:40PM +0200, Thorsten Glaser wrote:
 On Tue, 2 Sep 2014, Changwoo Ryu wrote:
 
  In my quick experiments with some font packages, -Sextream -z9
  option still gives  ~4% smaller size than the default. IMO this is
  still significant for big font packages.
 
 Maybe, but please stick to -Sextreme -z7 at most, nevertheless.

For any standardish font, taking any extra memory is a no-no.  You might be
running in a chroot on a 256MB RAM phone, etc.

On the other hand, for a 400MB game, not using -z9 is a pure waste of space.

-- 
// If you believe in so-called intellectual property, please immediately
// cease using counterfeit alphabets.  Instead, contact the nearest temple
// of Amon, whose priests will provide you with scribal services for all
// your writing needs, for Reasonable and Non-Discriminatory prices.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140902114530.ga11...@angband.pl



Re: Jessie without systemd as PID 1?

2014-09-02 Thread Ansgar Burchardt
On 09/02/2014 13:15, Thorsten Glaser wrote:
 Oh, and afterwards ensure systemd is not re-added. The
 prevent-systemd-* package set can do this in three steps,
 although I don’t currently see even prevent-systemd-running
 (Conflicts mostly with systemd-sysv) being accepted, so
 you’d have to pregenerate some APT pinning configuration
 and hope it holds.

Do you suggest to also add pinning configuration in order to prevent
sysvinit or upstart being installed accidently by default?

It's not in most users' interest to switch init systems without
intention, but could happen in unstable when dependencies are
temporarily not satifiable otherwise...

scnr,
Ansgar


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5405ac98.3040...@debian.org



Re: network access during package build (was Re: Bug#759762: ITP: libz-mingw-w64 -- compression library (targeting Windows))

2014-09-02 Thread Adam Borowski
On Tue, Sep 02, 2014 at 01:28:13PM +0200, Thorsten Glaser wrote:
 On Mon, 1 Sep 2014, Adam Borowski wrote:
 
  Also, should we detect all other attempts to contact the outside network,
  and swat such builds with extreme prejudice?
 
 Yes. These can be privacy breeches, licence violations (download
 things that change what gets embedded into the packages), and
 all other sorts of nasties. There may be no network access during
 a Debian package build; the switchover is usually between installing
 the B-D and extracting the source package, at most directly after
 the latter.
 
 (I’m aware that there is still *too* much “disable the network” in
 pbuilder. Sorry for not having had the time to work on that. I’ll
 try to do so shortly.)

Could you tell us what's this too much?

Here's how I would do it:
unshare --net
iptables rule on !127.0.0.0/8 and !::1 -j REJECT, if after the build the
rule's counter is non-zero we fail the build

-- 
// If you believe in so-called intellectual property, please immediately
// cease using counterfeit alphabets.  Instead, contact the nearest temple
// of Amon, whose priests will provide you with scribal services for all
// your writing needs, for Reasonable and Non-Discriminatory prices.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140902121305.ga14...@angband.pl



Re: Base binary packages using xz instead of gzip

2014-09-02 Thread Marco d'Itri
On Sep 02, Ondřej Surý ond...@sury.org wrote:

  I know, but if systems on which xz-utils is not easily available really 
  exist then the interested parties could replace it with xzdec which is 
  small and statically linked.
 Is there such system or are we having an academic debate again?
I am quite sure that this is an academic debate, this is why 
I recommended to continue using XZ.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Re: Possible abuse of dpkg-deb -z9 for xz compressed binary packages

2014-09-02 Thread Jonathan Dowland
On Tue, Sep 02, 2014 at 01:45:30PM +0200, Adam Borowski wrote:
 For any standardish font, taking any extra memory is a no-no.  You might be
 running in a chroot on a 256MB RAM phone, etc.
 
 On the other hand, for a 400MB game, not using -z9 is a pure waste of space.

They're all arch: all though, right, so in practice no buildds are actually
building these packages?


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140902130655.ga4...@bryant.redmars.org



Re: Jessie without systemd as PID 1?

2014-09-02 Thread Svante Signell
On Tue, 2014-09-02 at 13:15 +0200, Thorsten Glaser wrote:
 On Mon, 1 Sep 2014, Steven Chamberlain wrote:
 
  rejected.  I hope a Blend would be a more constructive approach.  I'm
  thinking sysvinit would be the easiest 'flavour' to implement for
 
 Actually, I think it’s the hardest one.
 
 All others will be task selections run after debootstrap.
 
 Changing the init system in d-i would be done by passing
 --include=sysvinit-core --exclude=systemd-sysv and things
 like that (the exact set to be determined by people in
 the know).
 
 Oh, and afterwards ensure systemd is not re-added. The
 prevent-systemd-* package set can do this in three steps,
 although I don’t currently see even prevent-systemd-running
 (Conflicts mostly with systemd-sysv) being accepted, so
 you’d have to pregenerate some APT pinning configuration
 and hope it holds.

It would be nice to have the same init system:sysv-core, as well as the
same default desktop:mate-desktop-environment (including accessibility
enhancements), for all arches: Linux, kFreeBSD and Hurd :-) If possible,
this could be an option in the advanced menu of the installer.



-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/1409663073.10679.18.ca...@g3620.my.own.domain



Re: Possible abuse of dpkg-deb -z9 for xz compressed binary packages

2014-09-02 Thread Henrique de Moraes Holschuh
On Tue, 02 Sep 2014, Jonathan Dowland wrote:
 On Tue, Sep 02, 2014 at 01:45:30PM +0200, Adam Borowski wrote:
  For any standardish font, taking any extra memory is a no-no.  You might be
  running in a chroot on a 256MB RAM phone, etc.
  
  On the other hand, for a 400MB game, not using -z9 is a pure waste of space.
 
 They're all arch: all though, right, so in practice no buildds are actually
 building these packages?

Extreme mode uses more CPU than the equivalent non-extreme mode during
*compression*.  Memory requirements are just a little higher in extreme
mode.  It changes nothing on the decompressor side.  It can produce a larger
compressed stream than the non-extreme mode.

Higher compression modes have MUCH higher memory requirements both for the
compressior and the decompressor.  For -z9, it is as bad as ~670MiB to
compress, and ~65MiB to decompress.  -z6 requires ~94MiB to compress, and
~9MiB to decompress.

Refer to the xz manpage for details.

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


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



Re: Possible abuse of dpkg-deb -z9 for xz compressed binary packages

2014-09-02 Thread Holger Levsen
On Dienstag, 2. September 2014, Jonathan Dowland wrote:
 They're all arch: all though, right, so in practice no buildds are actually
 building these packages?

yet.

:-)




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


Re: JavaScript usage

2014-09-02 Thread Mario Lang
Thorsten Glaser t.gla...@tarent.de writes:

 On Sun, 31 Aug 2014, Octavio Alvarez wrote:

 Why don't you use JavaScript? I also don't like enabling JavaScript in

 Because I use lynx as browser.

+1

-- 
CYa,
  ⡍⠁⠗⠊⠕


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/87zjei6s4a@fx.delysid.org



Re: network access during package build

2014-09-02 Thread Thorsten Glaser
On Tue, 2 Sep 2014, Adam Borowski wrote:

  (I’m aware that there is still *too* much “disable the network” in
  pbuilder. Sorry for not having had the time to work on that. I’ll
  try to do so shortly.)

 Could you tell us what's this too much?

#753944

 Here's how I would do it:
 unshare --net
 iptables rule on !127.0.0.0/8 and !::1 -j REJECT, if after the build the
 rule's counter is non-zero we fail the build

unsharing the network is already too much. I believe I just need
to start the loopback interface in the chroot, to fix most of
these, and maybe do something about /etc/hosts; see also Message
#91 there. There is no iptables inside the chroot either, besides
that’s just overkill (and the modules may not be loaded, etc).

bye,
//mirabilos
-- 
[16:04:33] bkix: veni vidi violini
[16:04:45] bkix: ich kam, sah und vergeigte...


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/alpine.deb.2.11.1409021605030.22...@tglase.lan.tarent.de



Re: Jessie without systemd as PID 1?

2014-09-02 Thread Thorsten Glaser
Svante Signell dixit:

 It would be nice to have the same init system:sysv-core, as well as the
 same default desktop:mate-desktop-environment (including accessibility
 enhancements), for all arches: Linux, kFreeBSD and Hurd :-) If possible,
 this could be an option in the advanced menu of the installer.

Right, but we need multiselect. For example, the user may want
to choose a desktop, an init system, and another option.

This is like with the Grml boot menu, which always annoys me
as I cannot select, for example, toram and nofb at the same
time without manually editing the command line. (And even with
nofb, sometimes I get more than 80x25… but that’s neither here
nor there.) We need additive choices.


On Tue, 2 Sep 2014, Ansgar Burchardt wrote:

 Do you suggest to also add pinning configuration in order to prevent
 sysvinit or upstart being installed accidently by default?

Probably. At least when the user made an active decision to
choose one init system during installation, no matter which
one they chose.

 It's not in most users' interest to switch init systems without
 intention, but could happen in unstable when dependencies are
 temporarily not satifiable otherwise...

Indeed.

 scnr,

Schulljung? :D

bye,
//mirabilos
-- 
«MyISAM tables -will- get corrupted eventually. This is a fact of life. »
“mysql is about as much database as ms access” – “MSSQL at least descends
from a database” “it's a rebranded SyBase” “MySQL however was born from a
flatfile and went downhill from there” – “at least jetDB doesn’t claim to
be a database”  ‣‣‣ Please, http://deb.li/mysql and MariaDB, finally die!


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/alpine.deb.2.11.1409021601110.22...@tglase.lan.tarent.de



Re: Removing 2048 bit keys from the Debian keyrings

2014-09-02 Thread Manoj Srivastava
On Tue, Sep 02 2014, Matthias Urlichs wrote:

 there's a GPG option (via the the *-cert-level options, see 'man gpg')
 to state how carefully you did verify their identity, but ultimately
 it's up to you.

That is not how I interpreted that option to mean.

,[ http://tools.ietf.org/html/rfc4880#section-5.2.3.13 ]
| 5.2.3.13. Trust Signature
| 
| 
|  (1 octet level (depth), 1 octet of trust amount)
| 
|  Signer asserts that the key is not only valid but also trustworthy at
|  the specified level.  Level 0 has the same meaning as an ordinary
|  validity signature.  Level 1 means that the signed key is asserted to
|  be a valid trusted introducer, with the 2nd octet of the body
|  specifying the degree of trust.  Level 2 means that the signed key is
|  asserted to be trusted to issue level 1 trust signatures, i.e., that
|  it is a meta introducer.  Generally, a level n trust signature
|  asserts that a key is trusted to issue level n-1 trust signatures.
|  The trust amount is in a range from 0-255, interpreted such that
|  values less than 120 indicate partial trust and values of 120 or
|  greater indicate complete trust.  Implementations SHOULD emit values
|  of 60 for partial trust and 120 for complete trust.
`

For a personal (non-work) GPG key, I am not sure I ever want to
 sign above a level 0, and thus give the key a right to sign on my
 behalf. Also, it indicates a statement of belief in someone's ability
 to make proper certifications (and avoid improper ones), in addition to
 a statement of belief that the identity of the keyholder is correctly
 stated. I have no idea how to assess the former, except for the few
 people I have had a technical conversation with about their key signing
 policies, and even then, there are few people whose beliefs and
 conventions align closely to mine.

Here is some more detail from the mailing lists:

,[ http://lists.gnupg.org/pipermail/gnupg-users/2005-May/025612.html ]
 | tsign is just like sign (or lsign) except that you are asked a few
 | more questions by GnuPG.  Think of tsign as a combination of a regular
 | signature plus the ownertrust.  This combines two different things
 | from the classic trust model into one signature.
 | 
 | First you are asked:
 | 
 |Please decide how far you trust this user to correctly verify other
 |users' keys (by looking at passports, checking fingerprints from
 |different sources, etc.)
 | 
 |  1 = I trust marginally
 |  2 = I trust fully
 | 
 | This is similar to the question you get asked when setting ownertrust.
 | What GnuPG is asking is not how much you trust the user, but how much
 | you trust the user to make good signatures.

| The next question is:
| 
|Please enter the depth of this trust signature.
|A depth greater than 1 allows the key you are signing to make
|trust signatures on your behalf.
| 
| The signature depth is how many levels deep can the power granted by
| this signature travel.  For example, a level of 1 means that the key
| you sign is valid for you (just like a regular signature), but also
| that the ownertrust for this key is automatically set to MARGINAL or
| FULL (depending on how you answered the first question).  A level of 2
| means that the key you sign is valid for you, and the ownertrust is
| automatically set, AND (assuming the trust made it to FULL) that this
| key can issue signatures up to level 1 on your behalf.  A level of 3
| means all that, plus the key can issue signatures up to level 2, etc.
| 
| You can think of a regular signature as a trust signature with a depth
| of 0.
| 
| The next question:
| 
|Please enter a domain to restrict this signature, or enter for none.
| 
| This allows you to restrict (by domain name) the power of the
| signature.  For example, let's say that you wanted to make a level 2
| signature on a CA key for a particular company.  You should be careful
| with making any level above 1, so you want to restrict this to that
| company.  By giving a restriction of companyname.com here, only
| signatures issued by the CA key on keys in companyname.com will take
| effect.
`


manoj
-- 
Have at you!
Manoj Srivastava sriva...@debian.org http://www.debian.org/~srivasta/  
4096R/C5779A1C E37E 5EC5 2A01 DA25 AD20  05B6 CF48 9438 C577 9A1C


signature.asc
Description: PGP signature


Request for help: #757168 gamera: FTBFS on several architectures

2014-09-02 Thread Daniel Stender

Control: tags -1 help

Hello,

I'm stuck with a Gamera assertion fail of tests/test_rle on several 
architectures. The failure isn't reproducing constantly.


I've been in contact with the upstream developer, and we think there is 
some problem related to color_ccs() [0].


3.4.1+svn1422 tries to make this function more robust, but there is 
again the same test failure like 3.4.1 produced it, running the test 
suite with python2.7-dbg.


3.4.1 failed on buildd's powerpc [1], but builds fine on a local Qemu 
boxed system [2]. The same is true for 3.4.1+svn1422 [3,4].


3.4.1+svn1422 also failed on several of buildd's i386 architectures [5], 
and that's also happening on a local test system [6].


Furthermore, 3.4.1 is also failing on a local Qemu box i386 [7], but 
builded fine within buildd [8].


Here's the relevant diff of the both source revisions:
$ diff gamera-3.4.1/include/plugins/gui_support.hpp
   gamera/include/plugins/gui_support.hpp
173241c241,242
174   color = *src  0x7;
175---
176   //color = *src  0x7;
177   color = size_t(*src) % COLOR_SET_SIZE;

Thank you very much,
Daniel Stender

[0] http://gamera.sourceforge.net/doc/html/color.html#color-ccs

[1] 
https://buildd.debian.org/status/fetch.php?pkg=gameraarch=powerpcver=3.4.1-1stamp=1408135833


[2] http://www.danielstender.com/buildlogs/gamera_3.4.1-1_powerpc.build

[3] 
https://buildd.debian.org/status/fetch.php?pkg=gameraarch=powerpcver=3.4.1%2Bsvn1422-1stamp=1409049581


[4] 
http://www.danielstender.com/buildlogs/gamera_3.4.1+svn1422-1_powerpc-20140827-1328.build


[5] https://buildd.debian.org/status/package.php?p=gamera

[6] http://www.danielstender.com/buildlogs/gamera_3.4.1+svn1422-1_i386.build

[7] http://www.danielstender.com/buildlogs/gamera_3.4.1-1_i386.build

[8] 
https://buildd.debian.org/status/fetch.php?pkg=gameraarch=i386ver=3.4.1-1stamp=1406844696


--
https://qa.debian.org/developer.php?login=debian%40danielstender.com
PGP key: 2048R/E41BD2D0
C879 5E41 1ED7 EE80 0F2E 7D0C DBDD 4D96 E41B D2D0



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5405f9dd.2060...@danielstender.com



Re: Removing 2048 bit keys from the Debian keyrings

2014-09-02 Thread Ansgar Burchardt
Manoj Srivastava sriva...@debian.org writes:
 On Tue, Sep 02 2014, Matthias Urlichs wrote:
 there's a GPG option (via the the *-cert-level options, see 'man gpg')
 to state how carefully you did verify their identity, but ultimately
 it's up to you.

 That is not how I interpreted that option to mean.

 ,[ http://tools.ietf.org/html/rfc4880#section-5.2.3.13 ]
 | 5.2.3.13. Trust Signature
 |  (1 octet level (depth), 1 octet of trust amount)
[...]
 ,[ http://lists.gnupg.org/pipermail/gnupg-users/2005-May/025612.html ]
  | tsign is just like sign (or lsign) except that you are asked a few
  | more questions by GnuPG.  Think of tsign as a combination of a regular
  | signature plus the ownertrust.  This combines two different things
  | from the classic trust model into one signature.

You looked at trust signatures, not at the --*-cert-level options. These
are unrelated to each other.

Ansgar


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/8561h6oruu@tsukuyomi.43-1.org



Re: Keysigning at Linaro Connect US (Burlingame, 15 - 19th September 2014)

2014-09-02 Thread Steve McIntyre
Will Newton said:
Hi all,

Due to the recent changes in keyring policy I need to get some
signatures on my 4096bit key. I'm going to be attending Linaro Connect
next month where I hope there should be a few DDs who I can either
track down individually in the hallways or if anyone else is in the
same situation as me we could organize a key signing session in one of
the hack rooms.

Yeah, there's likely to be plenty of DDs at Connect to help you
bootstrap a new key. I'll be honest and say I'd totally not realised
you were a DD - you kept it quiet! :-)

-- 
Steve McIntyre, Cambridge, UK.st...@einval.com
You raise the blade, you make the change... You re-arrange me 'til I'm sane...


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1xorxy-0005jc...@mail.einval.com



Re: Removing 2048 bit keys from the Debian keyrings

2014-09-02 Thread Jeremy T. Bouse
On 09/02/2014 12:28 PM, Manoj Srivastava wrote:
 On Tue, Sep 02 2014, Matthias Urlichs wrote:
 
 there's a GPG option (via the the *-cert-level options, see 'man gpg')
 to state how carefully you did verify their identity, but ultimately
 it's up to you.
 
 That is not how I interpreted that option to mean.
 
 ,[ http://tools.ietf.org/html/rfc4880#section-5.2.3.13 ]
 | 5.2.3.13. Trust Signature
 | 

Manoj,

I don't know how the *-cert-level options in gpg/gpg2 match up with
that section RFC480. Actually reading the sections in the man pages it
reads very differently.


 man gpg|gpg2
  The default to use for the check level when signing a key.

  0 means you make no particular claim as to how carefully
you verified the key.

  1 means you believe the key is owned by the person who
claims to own it but you could not, or did not  verify  the
  key at all. This is useful for a persona verification,
where you sign the key of a pseudonymous user.

  2 means you did casual verification of the key. For
example, this could mean that you verified the key fingerprint
  and checked the user ID on the key against a photo ID.

  3 means you did extensive verification of the key. For
example, this could mean that you verified the key  finger‐
  print with the owner of the key in person, and that you
checked, by means of a hard to forge document with a photo
  ID (such as a passport) that the name of the key owner
matches the name in the user ID on  the  key,  and  finally
  that you verified (by exchange of email) that the email
address on the key belongs to the key owner.

  Note  that  the  examples  given  above for levels 2 and 3
are just that: examples. In the end, it is up to you to
  decide just what casual and extensive mean to you.

  This option defaults to 0 (no particular claim).


From that my understanding is it is a means by which I as the signer of
a key can signify the verification taken to gain my signature on said
key. This can understanding can also be emphasized if you include a
*-policy-url which outlines your process and interpretation for others
to check if they wish to determine whether to trust or not the key with
the signature found on it.



signature.asc
Description: OpenPGP digital signature


Re: Possible abuse of dpkg-deb -z9 for xz compressed binary packages

2014-09-02 Thread Sebastian Andrzej Siewior
On 2014-09-02 14:08:57 [+0900], Changwoo Ryu wrote:
 dh_builddeb -- -Zxz -Sextreme -z9 has been introduced to the
 pkg-font team when dpkg-deb default is not xz.
 
 In my quick experiments with some font packages, -Sextream -z9
 option still gives  ~4% smaller size than the default. IMO this is
 still significant for big font packages.

I've been looking at the fonts packages and none of them is = 64MiB. I
may missed one. The largest I've found is fonts-droid with 15MiB. The
option -7 uses 16MiB of dictionary and should cover everything.
Repacking it with 0…9 +-e gives

 3628188 data.tar.xz.9
 3628188 data.tar.xz.8
 3628812 data.tar.xz.7
 3634224 data.tar.xz.9.e
 3634224 data.tar.xz.8.e
 3634224 data.tar.xz.7.e
 3634224 data.tar.xz
 3638448 data.tar.xz.5.e
 3638832 data.tar.xz.6
 3642496 data.tar.xz.6.e
 3661528 data.tar.xz.5
 5564728 data.tar.xz.3.e
 5566484 data.tar.xz.4.e
 5672672 data.tar.xz.4
 5734224 data.tar.xz.2.e
 5796076 data.tar.xz.1.e
 5997608 data.tar.xz.0.e
 6249836 data.tar.xz.3
 6471240 data.tar.xz.2
 6632380 data.tar.xz.1
 7008652 data.tar.xz.0
15329280 data.tar

For this particular case the default setting (-6) produce only a 4.5 KiB
larger archive compared to -9e.

Sebastian


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140902184224.ga23...@breakpoint.cc



calling maintainer scripts with a clean environment?

2014-09-02 Thread Evgeni Golov
Hi,

after reading #759590, I think it is time to consider calling maintainer 
scripts in a (slightly) cleaned environment.

Short background: there is a bug in eatmydata (#702711) which currently 
breaks gnutls28 using apps in sid (the mentioned #759590).

That wouldn't be too bad (noone runs their production servers with 
eatmydata), if the eatmydata LD_PRELOAD would not leak into running 
services because they are (re)started from maintainer-scripts which get 
the environment from the running apt.

There is an old, wont-fix bug in dpkg about this: #18567, the 
corresponding discussion on -devel [1] agreed, that overriding $PATH is 
an useful argument against just cleaning the whole environment and 
hardcoding $PATH to something general. Yet I think there are vars I'd 
like not to have inside my running services and also not during other 
tasks inside of maintainer-scripts. I think systemd already does this, 
but I'd love a more generic solution for the problem.

Thoughts, solutions, pitchforks?
Evgeni

[1] https://lists.debian.org/debian-devel/2002/10/msg00941.html

-- 
Bruce Schneier can read and understand Perl programs.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20140902190951.gh27...@dorei.kerker.die-welt.net



Bug#760314: RFH: zoneminder

2014-09-02 Thread Vagrant Cascadian
Package: wnpp
Severity: normal

Zoneminder maintenance has fallen behind; neither myself nor Peter
Howard seem to have enough time to maintain it properly. I no longer
use zoneminder at work. Another maintainer, ideally one who actively
uses zoneminder, is probably long overdue...


Homepage: http://www.zoneminder.com/

Description: Linux video camera security and surveillance solution
 ZoneMinder is intended for use in single or multi-camera video security
 applications, including commercial or home CCTV, theft prevention and child
 or family member or home monitoring and other care scenarios. It
 supports capture, analysis, recording, and monitoring of video data coming
 from one or more video or network cameras attached to a Linux system.
 ZoneMinder also support web and semi-automatic control of Pan/Tilt/Zoom
 cameras using a variety of protocols. It is suitable for use as a home
 video security system and for commercial or professional video security
 and surveillance. It can also be integrated into a home automation system
 via X.10 or other protocols.

It's written in Perl, C (maybe C++?), PHP and javascript. It's got a web
frontend, and stores events in a database backend.


There are at least two RC bugs fixed in VCS/experimental; haven't had
the time to do an upload or a good setup to test with, and another that
might be fixable with a newer upstream version, or at least downgraded
with some testing to verify it only applies to specific cameras.

VCS is in collab-maint:

  http://hg.debian.org/hg/collab-maint/zoneminder


Upstream has recently (well, the last year or so) gotten new developers,
and has been commenting on several of the bugs in Debian's bug tracking
system. Upstream VCS:

  https://github.com/zoneminder/zoneminder


live well,
  vagrant


pgpiy4sray08F.pgp
Description: PGP signature


Calling all git-loving Pythonistas

2014-09-02 Thread Barry Warsaw
Do you like working on Python packages but are using collab-maint (or other)
instead of the Debian Python team's repo because you prefer git over svn?  Do
you pine for the day when you can rejoin the DPMT or PAPT and still satisfy
your git cravings? :)

One of the decisions at Debconf14 is that the Debian Python team will
transition to git... eventually.  We're still in the learning, experimenting,
and discussing phase, so we're not yet ready to do a wholesale conversion.
But if you are currently using git to maintain your Python packages, we want
to hear from you!  I encourage you to re-engage with the team via the
debian-python@ mailing list, and help us effectively transition to git.

Some of the things we're now trying to decide include which of the various
popular regimes to adopt, e.g. gbp-pq, git-dpm, or dgit.  Other topics of
discussion are outlined in Stefano's summary of the DC14 conversations:

https://lists.debian.org/debian-python/2014/08/msg00159.html

There are other threads in the archives, so please do read up on our
discussions to date, and come over to the debian-python list to give us your
suggestions and feedback.

Cheers,
-Barry


signature.asc
Description: PGP signature


Re: Possible abuse of dpkg-deb -z9 for xz compressed binary packages

2014-09-02 Thread Changwoo Ryu
2014-09-03 3:42 GMT+09:00 Sebastian Andrzej Siewior sebast...@breakpoint.cc:
 On 2014-09-02 14:08:57 [+0900], Changwoo Ryu wrote:
 dh_builddeb -- -Zxz -Sextreme -z9 has been introduced to the
 pkg-font team when dpkg-deb default is not xz.

 In my quick experiments with some font packages, -Sextream -z9
 option still gives  ~4% smaller size than the default. IMO this is
 still significant for big font packages.

 I've been looking at the fonts packages and none of them is = 64MiB. I
 may missed one. The largest I've found is fonts-droid with 15MiB. The
 option -7 uses 16MiB of dictionary and should cover everything.
 Repacking it with 0…9 +-e gives
...
 For this particular case the default setting (-6) produce only a 4.5 KiB
 larger archive compared to -9e.

There are bigger fonts:

For fonts-nanum, the default is ~300 KiB 3.5% larger than -9e. And -9e
is not better than -8e.

25712640 data.tar
9015024 data.tar.xz.6
9012176 data.tar.xz.6.e
8867640 data.tar.xz.7.e
8707900 data.tar.xz.8.e
8707900 data.tar.xz.9.e

For fonts-nanum-eco, ~469 KiB 3.4% larger. -8e/-9e difference is only 4k.

57876480 data.tar
14499660 data.tar.6
14366496 data.tar.6.e
14244460 data.tar.7.e
14023408 data.tar.8.e
14019644 data.tar.9.e

-8e seems to be better choice than -9e in these cases.


--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAEe2ifUu2qee30ZWx=fwbtpzyuptszt553ys53gnwt8q4-5...@mail.gmail.com



Re: calling maintainer scripts with a clean environment?

2014-09-02 Thread Bob Proulx
Evgeni Golov wrote:
 after reading #759590, I think it is time to consider calling maintainer 
 scripts in a (slightly) cleaned environment.

Since I submitted Bug#759590 (however not the apt interaction aspect
of it) let me say that I consider the ability of inheriting the
environment for PATH and LD_PRELOAD to be a feature.  I would find it
a tragedy if the bug under discussion caused this feature to be
removed.

 That wouldn't be too bad (noone runs their production servers with 
 eatmydata), if the eatmydata LD_PRELOAD would not leak into running 
 services because they are (re)started from maintainer-scripts which get 
 the environment from the running apt.

There is a long chain of unintended consequences in this problem that
created a need for eatmydata.  I fear mentioning the chain because it
will reopen old wounds.  So I won't.

But I vote not to continue the chain of unintended consequences by
further modifying apt or dpkg.  The logical progression would be that
dpkg would get an environment file where these settings would be set
in order to accomplish the same result.  Because there is a need for
the capability.  If it ends up being prevented one way then it will
need to be enabled in another way.  In the end nothing would change
except that it would be more painful, more rigid, more fragile.

I see the bug that is affecting eatmydata plus gnutls28 to be a simple
bug like many others that we see.  It is not that big of a deal.  It
happened.  It was detected.  It has been partially debugged.  Anyone
affected has a workaround while we continue to pursue the details and
finish up.  I am confident it will conclude positively before release
of Jessie.  This only affects people wanting to use eatmydata.  Anyone
not wanting to use eatmydata is not using it and is not affected.

 There is an old, wont-fix bug in dpkg about this: #18567, the 
 corresponding discussion on -devel [1] agreed, that overriding $PATH is 
 an useful argument against just cleaning the whole environment and 
 hardcoding $PATH to something general. Yet I think there are vars I'd 
 like not to have inside my running services and also not during other 
 tasks inside of maintainer-scripts. I think systemd already does this, 
 but I'd love a more generic solution for the problem.

If an admin has made local changes then it only causes a local
problem.  It isn't a systematic problem that everyone will experience.
The majority of simple and default users will never see the problem.
That limits the scope of the issue.  It doesn't feel like a global
general Debian problem.  It feels very local and contained.

Only those with customized environments will be affected.  And of
course any of us with customized environments are doing so because
that is what we want.  We want those customized environments.  Trying
to keep us from having those customized environments won't prevent us
from having them because humans are clever and will find a way to do
what we want anyway.  It simply makes it more painful for us to have
them.

Therefore I think if an admin sets up a custom environment that this
environment should be used.  Or at least not actively prevented from
being used.

Bob


signature.asc
Description: Digital signature


Re: Reintroducing FFmpeg to Debian

2014-09-02 Thread Vittorio Giovara
On Fri, Aug 29, 2014 at 1:17 PM, Michael Niedermayer michae...@gmx.at wrote:
 also please dont remove ffmpeg-devel from the CC
 I had missed that you removed it so my reply went just to debian-devel
 full quote left below for ffmpeg-devel, no further inline comments

Sorry about that. Last time I tried having a serious conversation on
unified projects in that mailing list, I got emails whining about
personal things or mentioning that I should stop wasting anyone's
time and go back to cherry-picking. Interestingly enough, three
months later someone is now trying to set up a shared channel of
communication between projects, think about timing!

Anyway, I left all lists in CC, let's hope this time goes better.

 However there are other more practical problems. For example, FFmpeg
 merges patches daily and this over time has created a somewhat
 difficult to navigate git tree, it's enough to go back one year that
 you start having 4 or 5 layers of branching and bisecting is more
 complex than it needs it to be.

 The true history is complex, theres not a single linear chain of
 changes after the fork.

 The history is not a single linear chain of commits, the only way by
 which one can make it into one is by rebasing commits and making the
 actual (non linear) history harder to access

 And no this is not a neccesary thing to happen for a combined
 FFmpeg+Libav project

Well it is linear in Libav's tree and when accessing ffmpeg history
(with or without bisect) having to visually skip all the Merge commit
hash messages might be somewhat difficult to do, in my personal
opinion. Also not having rebased changes means that you can never ever
pick a random patch and know if it will apply as you have no way of
knowing if it comes from a branch or master.

Finally, I believe having a linear history is quite a strong
requirement from Libav side and there is absolutely no gain in
allowing merges. I didn't want propose to use Libav tree because it
sounded biased, but I see no other option if you'd prefer not to
recreate the tree from scratch.

 I don't think anyone would object to that, but there are of course
 many more problems to unwind. This might be quite long (and perhaps
 tedious) to discuss by email, so I would think that the best place
 to talk about a possible merge would be at the upcoming VDD in
 Dublin, where the whole group could meet, discuss problems, outline
 the new project policies and design goal and similar topics.

 git log | grep '^Author:' | tr '[:upper:]' '[:lower:]' | sed 's/.*//'| sort 
 | uniq -c | wc
 gives 1155
 now some of these are duplicates and some have just 1 commit in
 FFmpeg/Libav but still the maybe 10-20 or so FFmpegLibav developers
 who might be at VDD are quite far from the whole group and while i
 think discussing the Libav-FFmpeg split and ways to resolve it at VDD
 makes a lot of sense, quite litterally more than 90% of the developers
 wont be there. I also wont be there

This is a nice but misleading statistics. Everyone knows that you, as
ffmpeg leader, are the only one able to modify development polices
and set design goals of the project you are actually leading. It's a
pity you are not able to come, as if you had decided otherwise, we'd
have had 100% of the people necessary for the reunification to happen
(or at least to start).

 also iam quite confident that if theres a will to undo the split
 then the type of communication channel used is quite irrelevant and
 we can and will find a solution to reunify the projects.

Perhaps, however the same could be said from the opposite end, if you
are really interested in reunifying the split, you could just this
once actively attend to a face to face meeting with a relevant
percentage of the development team. Also I am not sure that email is
the best medium to discuss such delicate topics, and do not forget
that there is the bad precedent of the events of three years ago,
which all took place with email as medium.

So allow me to insist, please do come to VDD and let's discuss to find
a way to make things right for everybody.

Regards,
Vittorio


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/cablwns8u1s-mmuec+vnoph4dcmv5yuezand-n1c+tjinj7g...@mail.gmail.com



Bug#760338: ITP: acpi-call -- Kernel module that enables you to call ACPI methods

2014-09-02 Thread Raphaël Halimi
Package: wnpp
Severity: wishlist
Owner: Raphaël Halimi raphael.hal...@gmail.com

* Package name: acpi-call
  Version : 1.1.0
  Upstream Author : Michal Kottman
* URL : https://github.com/mkottman/acpi_call
* License : GPL-3+
  Programming Lang: C
  Description : Kernel module that enables you to call ACPI methods

 Kernel module that enables you to call ACPI methods by writing the method
 name followed by arguments to /proc/acpi/call.

 It allows you to tamper with your system and should be used with caution.

This package is needed by tlp/tpacpi-bat (see bug #711471, ITP for tlp) to
change battery (dis)charge thresholds on new ThinkPad models which don't
support tp-smapi anymore.

It may be useful for other purposes, though, but AFAIK, since bbswitch
superseded it for toggling NVIDIA Optimus cards, the main use of this kernel
module by the community is for setting battery thresholds.

tlp (or, more precisely, tpacpi-bat) - if and when available in Debian - will
need this kernel module for proper operation on new ThinkPad models; currently
it has some kind of automatic installation function for acpi_call kernel
module, but I think a an installation through Debian packages dependency system
and dkms would be more compliant with Debian standards.


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20140903021351.24088.47392.report...@arche.inside.sanctuaire.net



Re: Possible abuse of dpkg-deb -z9 for xz compressed binary packages

2014-09-02 Thread Christian PERRIER
Quoting Holger Levsen (hol...@layer-acht.org):
 On Dienstag, 2. September 2014, Jonathan Dowland wrote:
  They're all arch: all though, right, so in practice no buildds are actually
  building these packages?
 
 yet.
 
 :-)
 
 

At the time, we (font team) decided to go with z9, the fact that
packages were arch:all (and therefore that the memory cost of
compression had only an impact on the machine of the developer who
builds packages), was a strong argument to go with z9.

Of course, if we go to source only uploads for arch:all, we'll
reconsider this and eventually revert to default settings.

(still, this memory impact has never been one on the good old Dell
Poweredge 2650 that sits in my garage and builds most of the font
packages I upload. Of course, it is not a buildd that builds
hundreds of packages a day)


-- 




signature.asc
Description: Digital signature


Re: Bug#760338: ITP: acpi-call -- Kernel module that enables you to call ACPI methods

2014-09-02 Thread Evgeni Golov
On 09/03/2014 04:13 AM, Raphaël Halimi wrote:

 This package is needed by tlp/tpacpi-bat (see bug #711471, ITP for tlp) to
 change battery (dis)charge thresholds on new ThinkPad models which don't
 support tp-smapi anymore.
 
 It may be useful for other purposes, though, but AFAIK, since bbswitch
 superseded it for toggling NVIDIA Optimus cards, the main use of this kernel
 module by the community is for setting battery thresholds.
 
 tlp (or, more precisely, tpacpi-bat) - if and when available in Debian - will
 need this kernel module for proper operation on new ThinkPad models; currently
 it has some kind of automatic installation function for acpi_call kernel
 module, but I think a an installation through Debian packages dependency 
 system
 and dkms would be more compliant with Debian standards.

There is effort (by jak@) to get support for that into the kernel[1],
would this make acpi-call obsolete again?

[1] https://github.com/julian-klode/linux/commits/linux-3.14

Greets
Evgeni


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/5406a76c.8040...@debian.org



Accepted libcrypt-pbkdf2-perl 0.142390-1 (source all) into unstable

2014-09-02 Thread Salvatore Bonaccorso
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 02 Sep 2014 07:49:46 +0200
Source: libcrypt-pbkdf2-perl
Binary: libcrypt-pbkdf2-perl
Architecture: source all
Version: 0.142390-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Perl Group pkg-perl-maintain...@lists.alioth.debian.org
Changed-By: Salvatore Bonaccorso car...@debian.org
Description:
 libcrypt-pbkdf2-perl - Perl implementation of PBKDF2 password hash
Changes:
 libcrypt-pbkdf2-perl (0.142390-1) unstable; urgency=medium
 .
   * Update Vcs-Browser URL to cgit web frontend
   * Add debian/upstream/metadata
   * Imported Upstream version 0.142390
   * Add myself to Uploaders
   * Add Build-Depends-Indep on libtest-fatal-perl
   * Mention module name in long description
   * Add (Build-)Depends(-Indep) on libdigest-sha3-perl (= 0.22)
   * Mention SHA-3 in long description
   * Add myself to copyright holders for debian/* packaging
Checksums-Sha1:
 80ba3a4b6dacaf31a64d06c0cf563526390cfd97 2288 
libcrypt-pbkdf2-perl_0.142390-1.dsc
 4d3ebf8b973c503d31d8fbffb2d5970b688ef87f 16763 
libcrypt-pbkdf2-perl_0.142390.orig.tar.gz
 e8759c6dd6770c50d4df11576d010174c9ce390c 2120 
libcrypt-pbkdf2-perl_0.142390-1.debian.tar.xz
 444024277b6b315ba4f9b3828e3f517dc5f50437 25564 
libcrypt-pbkdf2-perl_0.142390-1_all.deb
Checksums-Sha256:
 b37bfc3b95cc8ad9cf64fd317977a0016ad9259adf376502d6d31f0f65b1afc5 2288 
libcrypt-pbkdf2-perl_0.142390-1.dsc
 b92a2f84fec74ff440f991cd5791966f1714359167dc49ac532a9e27b4bf41f2 16763 
libcrypt-pbkdf2-perl_0.142390.orig.tar.gz
 268bd11a67b9d858873024a4e0a0855150761981e7b368f644f168e0f185af4a 2120 
libcrypt-pbkdf2-perl_0.142390-1.debian.tar.xz
 9ebf9187c5e7219d140ad0f1f26f5fa9d91a14dc2d00e156eec9d0a79274dbc3 25564 
libcrypt-pbkdf2-perl_0.142390-1_all.deb
Files:
 82e98ffc931107d34affef723771f4c3 25564 perl optional 
libcrypt-pbkdf2-perl_0.142390-1_all.deb
 843b2a2cc8c6f3a658dc8ce9c3317039 2288 perl optional 
libcrypt-pbkdf2-perl_0.142390-1.dsc
 be0fd773f56ebea461b9b199d83aa754 16763 perl optional 
libcrypt-pbkdf2-perl_0.142390.orig.tar.gz
 6b24af97ef1cf3d74154aa52104eff7c 2120 perl optional 
libcrypt-pbkdf2-perl_0.142390-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUBVtsAAoJEAVMuPMTQ89ExDwP/j14OwkTOiLNn2xEgoiyIilN
O4XBSQbfHHaVFDyhVagA0ds2bop+7weM83IffqlDfRnU2XCFVRDiZyoRtfGk9uOZ
taxfR6H/RNEkpOon8iSPwZeQXc3OE4bhk5J5J759nOI0oU8A72IJP42I2Mv+4RkM
D/AWYD6IHL6BBH/9HLecI3Z0gWedsWLQ/JIkn4oAEWZOfWHVMKgkzhCLnHEOB1J+
EpKs8fZdhq1rruE2F7RZkYL7Nh4HTDzDBcruYJtaY7AjaPP2Nw0RrMdFM5bXoq/1
OrXe14n58p1IQldLYcfU5c1FzvZNzyjBHWCb+Gbz+Aww92o5DcrTXXBtIA1vnfkQ
xCOKUbfhmFMX2e2PCiX4kwovbDrDFMLeFkHOVHwfeRbsmPu3OH1OVjIzJJimKhkN
KQk/DcXOKoWx0k7oYB4VKehHEoTgbIWluuY3xUNGCClLZfXjK3IFpfyWBp33wng2
ayN3AxWRFzgtR0gTXt4tyFtyeB2BsHJdW086HcLOZ5Z8oFIpm6NrX9agO7fdySUr
ZfJ9ePHYntYFfiGCM8T6HMCsXjvyVWYf4w1D+nlFAdBuM2/tGmsKgUkx2FWeLKSC
9B/Y0DttHdbPVJ5eLn2kIbvx6cW+ueyPIE71VT6wzwXehhSYE/c0VOhDydMSVK6u
BBSHj6VQ7VrgUH/QN9/V
=B0yz
-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: https://lists.debian.org/e1xohco-0003ot...@franck.debian.org



Accepted python-biopython 1.64+dfsg-4 (source amd64 all) into unstable

2014-09-02 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 01 Sep 2014 15:59:30 +0200
Source: python-biopython
Binary: python-biopython python3-biopython python-biopython-doc 
python-biopython-sql python3-biopython-sql
Architecture: source amd64 all
Version: 1.64+dfsg-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description:
 python-biopython - Python library for bioinformatics (implemented in Python 2)
 python-biopython-doc - Documentation for the Biopython library
 python-biopython-sql - Biopython support for the BioSQL database schema 
(Python 2)
 python3-biopython - Python library for bioinformatics (implemented in Python 3)
 python3-biopython-sql - Biopython support for the BioSQL database schema 
(Python 3)
Closes: 743927 751277
Changes:
 python-biopython (1.64+dfsg-4) unstable; urgency=medium
 .
   * debian/patches/fix_test_problem_on_powerpc.patch: Patch provided by
 upstream to run test suite on PowerPC (thanks to Michiel de Hoon
 mjldeh...@yahoo.com)
 Closes: #751277
   * Install egg metadata
 Closes: #743927
   * Add samtools to Build-Depends + Recommends since it is checked in test
 suite
Checksums-Sha1:
 621d5abbb498eafd8e004d259ba57e9b6b802d76 2908 python-biopython_1.64+dfsg-4.dsc
 459abab80dc48d958a8f5d0dc22c03fe59f6ca5b 12296 
python-biopython_1.64+dfsg-4.debian.tar.xz
 e3e1edc24337fff090db9c6def51df6b18e6bd09 1164978 
python-biopython_1.64+dfsg-4_amd64.deb
 ea6a320a6bc4419af173ee7e2c6b93ef3065858a 1133068 
python3-biopython_1.64+dfsg-4_amd64.deb
 9065261a8f1e295bbd30cb9dae9353e9ddbf543f 9762900 
python-biopython-doc_1.64+dfsg-4_all.deb
 f372662646305890c73b296b88a99dc6c1d1a065 27580 
python-biopython-sql_1.64+dfsg-4_all.deb
 fdbd4f3b7117d0ed540989e2089f05cf39722f71 27646 
python3-biopython-sql_1.64+dfsg-4_all.deb
Checksums-Sha256:
 a8002b4243438f147c6acdbd805a134a00f418ccf27c1dfaba5d62f973297862 2908 
python-biopython_1.64+dfsg-4.dsc
 509c11669f518974ec8444deff028492dd7be720e7a05e6531f302a2cba2aafb 12296 
python-biopython_1.64+dfsg-4.debian.tar.xz
 17cc1602d710ebde8b2d5976649cd07f9a670832504d284fb7be2bb255b33597 1164978 
python-biopython_1.64+dfsg-4_amd64.deb
 e3b8ad51de511ac494122a98d8eb9f8321170cded295d855e0c1a03f94c2d4c5 1133068 
python3-biopython_1.64+dfsg-4_amd64.deb
 577620d023ae9dcba68374894b6fdc5dd588f1fbfbfa848d9d4fc13087dde467 9762900 
python-biopython-doc_1.64+dfsg-4_all.deb
 ed808e5b426bc97b05f84acc59d824f9ea3c3f8fd5c8fe56846935b09bc4843e 27580 
python-biopython-sql_1.64+dfsg-4_all.deb
 2d8865df6654de661117bc9a259c4685eccc39a14d4ec8ce357c3f99dae167a0 27646 
python3-biopython-sql_1.64+dfsg-4_all.deb
Files:
 53d91fba596cda35b1dff3f5eaccd9e4 1164978 python optional 
python-biopython_1.64+dfsg-4_amd64.deb
 424f7248295f49ed9bebb1112c1a50c3 1133068 python optional 
python3-biopython_1.64+dfsg-4_amd64.deb
 79b415de5c35b5226366abbcd2a91cd7 9762900 doc optional 
python-biopython-doc_1.64+dfsg-4_all.deb
 03ec3a5a00ed63ac86eaa04e72a1c54f 27580 python optional 
python-biopython-sql_1.64+dfsg-4_all.deb
 c8db1d719b5e1fc78c8ecec0e5464645 27646 python optional 
python3-biopython-sql_1.64+dfsg-4_all.deb
 4cbbfd6579cf5008e5294bdaafaf4b1f 2908 python optional 
python-biopython_1.64+dfsg-4.dsc
 65e12f505a8c22fe489bc9f4479029b5 12296 python optional 
python-biopython_1.64+dfsg-4.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBX02AAoJEFeKBJTRxkbRcwoQAJB/fk+u/gSXehuCTXZg01TE
nU36bpzowQBrcLS9mqy01h6NA3q/cifT4Q9ehbLluwjTf32OGjPq7V0c0ZC3wckZ
7XqlsLWHvLzYG9ofeKfw/2Bp5mCnn5i3LyR2gko3tu15zquCEAkR/vsZEntHDy4+
ssFu3KfbB3kxQ7tq4mRNxqGWx4ahOcWaSHStn0ro1Pd2dRQje548zOyQ0WM0XJPu
8E/B2rOaRXI5m36G97D4H8Gk01Qvub0dpIhHdVqH247/nDFe67B9czxdgCO2v9vj
By5zpCgj+67XFVH3OZ+tYL9BDeqGwMb3s9L+INveABNHqMqK4joTUXlCP0cvBGsz
RO/iJ91KxNpU3SJZLTXMKQfrUSnx/Hj8nO+ktoNVgQdfH00LAQhRyG6M6yh5IWgs
byksu00U6IYjAt6D7yQCRYpwm6koG+yZEzyJoAX9D2cOZAcdy/AgxQbRkoyQ1/UD
Tf7C6NgmSxW+tDCE//GAavR0BrRxZ/hpfgz2aeQevVQoUosSdNeVpqoFAIdegH+L
ozWsXyI0Vd3e8CXoRW9fRWM8A3kevwiYg8dIvJxHFh2vpP1cY01uaUHohebvvJjO
NBey75ENuAxQy55S7JkPHbQRIk09AGQLQaPIbWXrcvoSbR+VrkcbGpSUzQq5crSj
prJ/jhTdJgB03cMsRqeY
=MnQt
-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: https://lists.debian.org/e1xok2a-0002le...@franck.debian.org



Accepted rfc5766-turn-server 3.2.4.3-1 (source amd64) into unstable

2014-09-02 Thread Oleg Moskalenko
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 02 Sep 2014 01:16:16 -0700
Source: rfc5766-turn-server
Binary: rfc5766-turn-server
Architecture: source amd64
Version: 3.2.4.3-1
Distribution: unstable
Urgency: low
Maintainer: Debian VoIP Team pkg-voip-maintain...@lists.alioth.debian.org
Changed-By: Oleg Moskalenko mom040...@gmail.com
Description: 
 rfc5766-turn-server - TURN and STUN server for VoIP
Changes: 
 rfc5766-turn-server (3.2.4.3-1) unstable; urgency=low
 .
   * Sync to upstream 3.2.4.3
Checksums-Sha1: 
 df8c163f0112ab083cbbdaeab4f3895284625e24 1896 rfc5766-turn-server_3.2.4.3-1.dsc
 b056319eb99591769a334db4b4bee9cb12dc6af8 304654 
rfc5766-turn-server_3.2.4.3.orig.tar.gz
 2800d64ab30aa6cc5509973777f3b092a0cda6ee 9841 
rfc5766-turn-server_3.2.4.3-1.debian.tar.gz
 db9bc27f844cd992eb8d3c3f7ce0e564a5e1d04e 368470 
rfc5766-turn-server_3.2.4.3-1_amd64.deb
Checksums-Sha256: 
 bb17dcbf94c61532289e99d03b8b80f51a31d257f8afe633014e06a0b7cc5bee 1896 
rfc5766-turn-server_3.2.4.3-1.dsc
 78f0b1233a75b1eb7082f6702b14272d22b5b15b09ce28399234dbfd92b1e004 304654 
rfc5766-turn-server_3.2.4.3.orig.tar.gz
 039e478c101fa379837dc39d79c4de8f9104a9a0fe173e732f124dffcbf51987 9841 
rfc5766-turn-server_3.2.4.3-1.debian.tar.gz
 d0eb0a18e49e32c7aeecd0f4b58191659549bd7c71c59cb3664eefe2bcc284f1 368470 
rfc5766-turn-server_3.2.4.3-1_amd64.deb
Files: 
 8a211c28b2a80ce38cfd57c1b36b21a7 1896 net extra 
rfc5766-turn-server_3.2.4.3-1.dsc
 c3afa9963ce10b2c9833849c50e8cb3c 304654 net extra 
rfc5766-turn-server_3.2.4.3.orig.tar.gz
 226fa86f231d7f5c721fde4c5cfc0537 9841 net extra 
rfc5766-turn-server_3.2.4.3-1.debian.tar.gz
 a36cd737801847e371a77a3b1cfa6adb 368470 net extra 
rfc5766-turn-server_3.2.4.3-1_amd64.deb

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

iQEcBAEBCgAGBQJUBX3VAAoJEAMGIiRcHlm0idgIAL/Zfs5+GnGJYunYVMAkmBN8
dp9z/8TS2OMaoLQEjz+H9soQT7awFgYkOciUT6ag0X72fQKtYpIqQPzHzARkjTEP
3nmYkC9vj2H98N8dhSJYhoN9FWTEIHBK9KqXd8wVRHT1vMigf/Apl/vCds0YvFKy
ENSowtWRQ23G17POE5U9Rw/qLM71aED8S2x0XOziDuFrVt/cFgwizGMg9vAHOeZh
bfYjLEf3mysvcRv8FcrQvlHFmVEA478QqbVhxjcQIkvwIE85Wq7AFJ7nUgFSxe4V
YmAz5pbNwuUvD0L8LOr+ZM0X0+eIvknD9Porw5BoPB+/dvcTetE8yBR+sm+58ls=
=+7Dp
-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: https://lists.debian.org/e1xok2i-0002ot...@franck.debian.org



Accepted zutils 1.3-1 (source amd64) into unstable

2014-09-02 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 02 Sep 2014 03:34:06 +0200
Source: zutils
Binary: zutils zutils-dbg
Architecture: source amd64
Version: 1.3-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann m...@daniel-baumann.ch
Changed-By: Daniel Baumann m...@daniel-baumann.ch
Description:
 zutils - utilities for dealing with compressed files transparently
 zutils-dbg - utilities for dealing with compressed files transparently (debug)
Changes:
 zutils (1.3-1) unstable; urgency=low
 .
   * Merging upstream version 1.3.
Checksums-Sha1:
 2eeaa2a22b6eb04b0949950cb9e47925735ca27e 1870 zutils_1.3-1.dsc
 dc5787e27c80b61551327191872ba3be6275f7a6 41684 zutils_1.3.orig.tar.xz
 e16ead153a0f78653d5148dfaa4a2e5a76e51db7 3940 zutils_1.3-1.debian.tar.xz
 acd43ca335fd9b9de14d2654714aee3c294cedc2 611962 zutils_1.3-1_amd64.deb
 9c75bbf3a08af7f6de4d78804e08bc25d18cd535 816254 zutils-dbg_1.3-1_amd64.deb
Checksums-Sha256:
 7a4fda2d6373a75f0fe82d34b90ac5eb10a477ebc7854b0179f467606e7c11d7 1870 
zutils_1.3-1.dsc
 34a37b45b8da43a8b653d7046336eb10261070b2c2ccb73ced0541d6c44bf71e 41684 
zutils_1.3.orig.tar.xz
 18dad1a52a0fbf04ce51f0bd0ecb1164afba12b08a4c6258efd683936ba9b056 3940 
zutils_1.3-1.debian.tar.xz
 b752ae32c6e127e4c00b6715f81e8fd56024a6557ce0850334b7f088fb7d10e3 611962 
zutils_1.3-1_amd64.deb
 d6c2d8975164a099ce4462219ffc857c75713fa2cef2c34e250b6d8dc6dcde48 816254 
zutils-dbg_1.3-1_amd64.deb
Files:
 6f9d32648bd8779bdd5a1efa778c3d49 611962 utils extra zutils_1.3-1_amd64.deb
 6974a58ba3446b9f6193e3e9d615d3c2 816254 debug extra zutils-dbg_1.3-1_amd64.deb
 1a887417c0ecad1c3463352338cc9930 1870 utils extra zutils_1.3-1.dsc
 ecc629189f25d5833ed29ccb0238df08 41684 utils extra zutils_1.3.orig.tar.xz
 4647259573d424fc1bfcab991ff169df 3940 utils extra zutils_1.3-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUBVRUAAoJEFXPG/mGq7nH7YIP/AxojcFxaNhSN9NGS8IzuNRu
KXkApOmfweh0YiXiPVAe67r6u46A8duHJEUgSyt+pq9TCt0twWWZQJY+d5IDz58N
kpD0GngQYR+59ZyW9YfFmoLBl8cPOd1LLgc0deEf18GhfAJWgROtGQvkqzM3WnDe
MFElEXHCrehMtLoyhXQmQiJrI6gLGGvLTc1dsf9qtkfdqfREq7quSW9kV0LzKFye
aVSUO888i3XpEeRDOeLM5z27GrLC4PIkqMUL9aAPRVC0IvBTrKV39Xn1kxSHMPas
TD3BllelQwDUs6ACzXd/U/73XBX0WUbYWOLMEjKFC5RAbviNZWu0PIzrivfdmu4z
Yl9IKDrT0ZEegGT8qhLy+mI3IdP2STzcUGelBtXOmyczosOVHxbh6qP/wTi+/f6J
EmZfd8DcsMO33yq6IAWtEHJ0O+pnFlYCq48lKXnh5O7fAg5UyBw8eh4zIRRgySdE
UfwIE7Ry+rqmncuCzq0cksuqsK3JGFmsVjeVZZSEyMdbtyDa3dzWkczbAPeRDyG5
g7u7+qQR3I/dMalnO6VF4k/qSk8a3wIybRMaDfiQ3SN62RgK/y4NtCHgddBNU1ok
bRhfsMza0JTbv0j39JkCzl2NrKLU9wgQ5QrCrhKFaNOxsvsOlbNl14Xy+pM+1eCQ
2MNPpGKlETY1dei8Tv6P
=r4ie
-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: https://lists.debian.org/e1xokfv-00048x...@franck.debian.org



Accepted eso-midas 13.09pl1.4-1 (source amd64) into unstable

2014-09-02 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 10:50:42 +0200
Source: eso-midas
Binary: eso-midas
Architecture: source amd64
Version: 13.09pl1.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Astronomy Maintainers 
debian-astro-maintain...@lists.alioth.debian.org
Changed-By: Ole Streicher deb...@liska.ath.cx
Description:
 eso-midas  - European Southern Observatory Munich Image Data Analysis System
Changes:
 eso-midas (13.09pl1.4-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1:
 b9181f2663ab6deefcc9a5dc5b48d0327dae6dcd 2110 eso-midas_13.09pl1.4-1.dsc
 6020afc2268e502df4dbf5cce5b5fa6868a9d290 60751661 
eso-midas_13.09pl1.4.orig.tar.gz
 c6ca83257dbd628f57840ce5b7c960cc19eb1c41 8740 
eso-midas_13.09pl1.4-1.debian.tar.xz
 74694b225b93d507bd25dd13be85ad2fdda4d933 8271906 
eso-midas_13.09pl1.4-1_amd64.deb
Checksums-Sha256:
 1513b7c16a1d4c38371a6bda4bfb1048a160ec99205e1281ec4f17a4e2d32245 2110 
eso-midas_13.09pl1.4-1.dsc
 6b83d69f2f555d7cdf737a7649a41cc1532720ef7a1229f255bf99af346feaa0 60751661 
eso-midas_13.09pl1.4.orig.tar.gz
 2d799cc5cdd332c2abdac8d36a81aad5f872eb359d968ef44348ca5023d58b2d 8740 
eso-midas_13.09pl1.4-1.debian.tar.xz
 26f3c23ac10820da1a7f65605a7171d06376f8fa481104a3f75405a504f34db6 8271906 
eso-midas_13.09pl1.4-1_amd64.deb
Files:
 2b21fedf4de81da43da169addda9fce0 8271906 science optional 
eso-midas_13.09pl1.4-1_amd64.deb
 30c005d8fc6028c89f9223cb36b7d7dd 2110 science optional 
eso-midas_13.09pl1.4-1.dsc
 1ec4bf4730dc7f0d267c6865cdcdfe3e 60751661 science optional 
eso-midas_13.09pl1.4.orig.tar.gz
 f6f3891208c4007f4308aad84db951be 8740 science optional 
eso-midas_13.09pl1.4-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUBYZTAAoJEHEVr9B3ENz3/YsQAMqi27PqRd36hYLXZ+DY4uxn
dflz1vMj64lzQgwHtJRvzXmvw7recgp5I14UJ159cJMszvQ29HCVTi7uW8opNpL+
ts6Akb5f76LtPgsLBGmyLvLVEmztIxydq8M6+y/3lRScAx80RmENYpT9lozz+3mZ
PHYoMgZsuqgp/IHQzLzLLt0igVXHYWvp2GeZEsRbhX9i9OjJPZh9EgFbF//3oVWy
WTwWk/SpZBwONiHsfgLxMwBxSu8QMucYIdlPILGCS13durfplZNVfT1yUJR1AZEU
Yu1ELULTMjLnJI0Q+wEm4vzCwI+35OxCrCHGb5IkTaDomXIYDRBNgT9zFrx1MSO4
5hBGbwe6pKCuaTp1t1Sfaai8GSaIPHhjmnHWkpV3sZSfvzhQZ5cgmHpRsLyN7bWI
OcEKq+iDBqjrCRfArZLykKy5g65WKBKbb1T6AkWD5BOYQaTk+TCCWo1uAs6uuioM
WeBhxX6lOQOvSrnEahGjohwNB8TK5M1fgaXdu9fRj2UJx3K3ymFV8lid8g+hBe9N
XOKwXAfDrsKJyIg6M4xwA4ZaStl+yvvLBfLg08xXpeQq4jjdohR0A0fkbJwnimRT
M6VkzPzJ5RyRGQ+L3kLo6XYmV3mpW7Cjink6f1q12P18ZigQ/qHvJ31V618iTp8e
4xtX5YLlHqhCFHEVBhIG
=k8Ys
-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: https://lists.debian.org/e1xokuw-ve...@franck.debian.org



Accepted newsbeuter 2.8-1 (source amd64) into unstable, unstable

2014-09-02 Thread Nico Golde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Fri, 18 Apr 2014 08:37:43 +0200
Source: newsbeuter
Binary: newsbeuter newsbeuter-dbg
Architecture: source amd64
Version: 2.8-1
Distribution: unstable
Urgency: low
Maintainer: Nico Golde n...@debian.org
Changed-By: Nico Golde n...@debian.org
Description: 
 newsbeuter - text mode rss feed reader with podcast support
 newsbeuter-dbg - debugging symbols for newsbeuter
Closes: 733307 733347 745008
Changes: 
 newsbeuter (2.8-1) unstable; urgency=low
 .
   * New upstream release.
+ Initialize pubDate_to  to fix crash on localtime() (Closes: #733307).
   * Add -dbg package. Thanks Erik Werner! (Closes: #733347).
   * Update build dependencies to libjson-c-dev as json-c has dropped
 has dropped a compatibility layer from libjson0 to libjson-c2
 (Closes: #745008).
   * Drop json type patches, no longer required.
   * Bump standards version.
Checksums-Sha1: 
 e42d8c7e290da1068ad5534b0f6b29aa9a7cb49d 1888 newsbeuter_2.8-1.dsc
 de284124c840062941b500ffbd72e3f183fb2b61 431299 newsbeuter_2.8.orig.tar.gz
 044b2260e3834a86bddf0c13cb08bc0f40926eec 5560 newsbeuter_2.8-1.debian.tar.xz
 97a8c7a4588ee2c2901f2754f53eb0dae9097391 586712 newsbeuter_2.8-1_amd64.deb
 62861c761bf8f52d15d539db3dfa0294a2ad7028 5506060 newsbeuter-dbg_2.8-1_amd64.deb
Checksums-Sha256: 
 46956f4e0d61cd4c57eba12a94e03dbe669955359e81709229642d5527101214 1888 
newsbeuter_2.8-1.dsc
 c872a068ec7792680b11126230dff240dee72acdab8f153016ba5ef83c8a7804 431299 
newsbeuter_2.8.orig.tar.gz
 c7fcdc05a76d1a86eb832701543edef19b8320287a65977697a507490c5f5f8b 5560 
newsbeuter_2.8-1.debian.tar.xz
 09a2cf92ef5bdde54740e30d1b11b00b3e81072d6bf84fdf032a54291baf2470 586712 
newsbeuter_2.8-1_amd64.deb
 9259f3c1730ac9b9a15af628db3203274c68b38a0354171196d7b116e6a18387 5506060 
newsbeuter-dbg_2.8-1_amd64.deb
Files: 
 29ceae143e00bba46661bce58c5fd849 1888 net optional newsbeuter_2.8-1.dsc
 5d8f1a5eed700beccfeb512ae003613d 431299 net optional newsbeuter_2.8.orig.tar.gz
 ff0b0e6d3ad4457e7dd8ccb374d6677d 5560 net optional 
newsbeuter_2.8-1.debian.tar.xz
 d4b9fe3803221d3b5b0fdc536115654d 586712 net optional newsbeuter_2.8-1_amd64.deb
 f4098ed85e798fac31ae65364a183cb3 5506060 debug extra 
newsbeuter-dbg_2.8-1_amd64.deb

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

iQIcBAEBCgAGBQJTUM/6AAoJEM1LKvOgoKqqCkgP/iYuDAliDm6wJ40rxBKaYpVh
Dr8XrNnKQ49ZTk3eJ8FVGnQk2ENMdRg03WP4Kv3U6ysSSWl4TsKW3zjoQ63Qg28v
FbpShv09onbc6aZhGmid5augQHMLf4YaFRXi0q8k4JVscqMkBHz5m7ycv53xm7k9
CeQcNMqtW6XKplg7ydwvgSVz+xRflXEHX4ib2rwWSREBKAHgiePDjUJX84LvTakd
orRVRVlmZihbHAFIf76ATG95j1aUA3OnTqdSFiZcbsOWf/EDF+zdGkrGcQ6/tWZl
ymUiqdARPMMcBSa0fBy/wtwYJ0t8kJmFfzN0OPwA8JsUMnvsRVTYz3ngn/1fmlXN
gU16Wc1A6yAe2SSNwcfiJEFYtVrV/fvB6rrUHkrm4TdlFxT2mKcxvWwzuttaDRSs
2skHul3TB07aMMX8ho1B97Qc7VYSnyPt7Wi0yhyMJZaoYSCAzy7tB8w77TrwwTlD
EIiY2MhUfP0VUTrlRFXYnmNxeBboFVbfiGDKXG2APOZQE0ex9yI6JfeeoqS/6OkQ
nlxBp7DbwCZ9Oy+FfDPwGCSmlLMm9vSQJ0JgQhtomBjVpw+MLUsTnEoWnj1nRkPr
q+OvVNUsSrvw6t91ddxXE/YJbPwJISPmCB9cE805v1oKgyN1+YIkpuWQrTBvGVpA
ad1CqBxcVArLjRRIsa7x
=2uff
-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: https://lists.debian.org/e1xoksh-dg...@franck.debian.org



Accepted moc 1:2.5.0-1 (source amd64) into unstable

2014-09-02 Thread Elimar Riesebieter
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 01 Sep 2014 13:17:07 +0200
Source: moc
Binary: moc moc-ffmpeg-plugin
Architecture: source amd64
Version: 1:2.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Elimar Riesebieter riese...@lxtec.de
Changed-By: Elimar Riesebieter riese...@lxtec.de
Description:
 moc- ncurses based console audio player
 moc-ffmpeg-plugin - ncurses based console audio player - ffmpeg plugin
Changes:
 moc (1:2.5.0-1) unstable; urgency=low
 .
   * Update to svn r2670 which is the new stable release 2.5.0.
   * Assign Switch on/off play time percentage to CTRLp.
   * Refreshed opus patches.
   * Install NEWS as changelog.gz. It is now an up to date upstream changelog
 for 2.5.0.
   * Added pgpsigurlmangle to the watch file. Corrected URL in the watch file.
   * Adjusted copyright according to mocp --verion.
Checksums-Sha1:
 b1922035712fdfcffeca1ce278d7853c13977543 2368 moc_2.5.0-1.dsc
 10863fa74754ec688f5225478b9f7c29def36705 494380 moc_2.5.0.orig.tar.xz
 a59a2a5a84f6abf3ed305b183c5297d28034d403 105899 moc_2.5.0-1.debian.tar.gz
 b133dd250e908ea3bbdfb913d6a57daf9a4cafbf 251160 moc_2.5.0-1_amd64.deb
 74b2fd389af24ddb9e8ec79c4599c0b96f1f2251 34012 
moc-ffmpeg-plugin_2.5.0-1_amd64.deb
Checksums-Sha256:
 8064a8c7b9d7ebdce9adb30460a152d09ccaf338bdc092e673edce30ba0529a8 2368 
moc_2.5.0-1.dsc
 60df6ad38561d69ebd35f1345332659bfcfcf85a3aeba1ab365bc6827e677df0 494380 
moc_2.5.0.orig.tar.xz
 bc1782b18f44972966a42614469c3c153776a7bacae04ec13ce95b001122e2a4 105899 
moc_2.5.0-1.debian.tar.gz
 61cff5303c1f0d8e3202ea07ad73c9bef2710d8628df1ecb2b75830beeb7a389 251160 
moc_2.5.0-1_amd64.deb
 f82ebcfdc5496d6f214d45ea46d3676814e0a61d96fcf56264449e033a62d067 34012 
moc-ffmpeg-plugin_2.5.0-1_amd64.deb
Files:
 ae33030e783dc5c641decdf8e53be511 251160 sound optional moc_2.5.0-1_amd64.deb
 1ae96e13743cc082ada256ede9d9dbbd 34012 sound optional 
moc-ffmpeg-plugin_2.5.0-1_amd64.deb
 741b6d5e74ba5c9c0777e8738ca97f33 2368 sound optional moc_2.5.0-1.dsc
 7fcf0807acbcc68d9e4594f14e5a47cc 494380 sound optional moc_2.5.0.orig.tar.xz
 091036a8bbb692205a63359775fa0754 105899 sound optional 
moc_2.5.0-1.debian.tar.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUBZYdAAoJEM1LKvOgoKqq3HIQALbO1YzTups1BiYPFrZL055m
CquLExLNTTXnkKAh8yc6s2WvZQLDpnMBPbACiS+LKsvddP4DcJHWabIeGhYnXSHJ
4Wz1i1q025hgLdrkSjkYsWvMi53oREoMzfdtlDc/4XcMvZewk4vbX6n82mzmMLub
HRBpizHAskS0K5NYqgrA+MUfMyOofnzyzLmAIlqB2gRGEBmWLV641x5KpuiGvrUr
QSmvl684guqq9ujoW0eskzZZa1bTAP41+xtjLqOyeJP2F8MW/fNwCbVwPYRaHLjj
ZcBzl/hIoUFk1NH/R82xdhE906fhKQjkAMokM/5bjSq+epxKtgbyYOFD++VlSkeF
va6Hh0ulB+jS1lWTleByhqzuG4ZAXGpd4yXQUc57d+pZCmBxYU8IzFcf/4YB+vYm
InzgyUHT4dgXLFN9R5YLCrMDRHdoXBbJH7JPQpKzdQTFupJAs7ERtM0Fdt2saLWz
2EGIKBOkf7+iuiTadjnKeUBgXKhqZ6Hu1WDpG7IIN46SOFgU0tDEyfZsYkTlGnW7
SyaU+KGq5q6fsjSpa6JsCuUeg68B81H7sx4w09pfkX1dkX3LJyMRUc6OZGang6DZ
CmPfGAm5a9UQ9Pt6fykqnW3VpcAOuG8HGHf4twHCKRrpvhrh7p70jml1UogkjG10
OAver0uyvqH6cvIewq8D
=/KhU
-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: https://lists.debian.org/e1xolbr-0006dq...@franck.debian.org



Accepted nose 1.3.4-1 (source all) into unstable

2014-09-02 Thread Dmitry Shachnev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 14:00:40 +0400
Source: nose
Binary: python-nose-doc python-nose python3-nose
Architecture: source all
Version: 1.3.4-1
Distribution: unstable
Urgency: medium
Maintainer: Gustavo Noronha Silva k...@debian.org
Changed-By: Dmitry Shachnev mity...@debian.org
Description:
 python-nose - test discovery and running of Python's unittest
 python-nose-doc - documentation for discovery and running for Python's unittest
 python3-nose - test discovery and running for Python3 unittest
Changes:
 nose (1.3.4-1) unstable; urgency=medium
 .
   * New upstream bugfix release.
   * debian/patches/fix_constructor: drop, applied upstream.
   * Update my email address.
   * Update debian/copyright.
Checksums-Sha1:
 1897c7cc3a7e93bff248bbe1b86e91e621ac272d 2354 nose_1.3.4-1.dsc
 4d21578b480540e4e50ffae063094a14db2487d7 277488 nose_1.3.4.orig.tar.gz
 e4e6b3891b2fedae86c8e0b76510d66b586e4a8b 7684 nose_1.3.4-1.debian.tar.xz
 3a59d1ce31dc7382e6b1bfe537b5a3de1d4493b0 181330 python-nose-doc_1.3.4-1_all.deb
 dc7e6afc27530175173f3068665fdf590123c4ed 134184 python-nose_1.3.4-1_all.deb
 dfc86ebb22f42ed15965a48693fe3966c063d04a 131308 python3-nose_1.3.4-1_all.deb
Checksums-Sha256:
 c3bd7b8aad45bfaf55f0f6957880869c4cdc1d399a7245d6db17c4091f38f815 2354 
nose_1.3.4-1.dsc
 76bc63a4e2d5e5a0df77ca7d18f0f56e2c46cfb62b71103ba92a92c79fab1e03 277488 
nose_1.3.4.orig.tar.gz
 13faa2ab68b79ad7fb37c732bb0ebe1474594a4945513b0c8a9a45275a8f5c37 7684 
nose_1.3.4-1.debian.tar.xz
 009d68536987c2a9d57902f40bdab8bd9074e4579764478da26c0128484a8e80 181330 
python-nose-doc_1.3.4-1_all.deb
 832d36732f2dc645f53018343e8f97f8f00fd2e3c4a1f3a79efae7721e77ebeb 134184 
python-nose_1.3.4-1_all.deb
 ea1fda128fc2eeaf8a80032afce6243417ef29f347121bf106ff3c92506e873b 131308 
python3-nose_1.3.4-1_all.deb
Files:
 009f69bd83550e39739653f8e1ace66c 181330 doc optional 
python-nose-doc_1.3.4-1_all.deb
 465d0915a84a1790d6aebb7f66db7f3b 134184 python optional 
python-nose_1.3.4-1_all.deb
 8f2209bc2d64650968f092a66b59359d 131308 python optional 
python3-nose_1.3.4-1_all.deb
 7a585ced8b56f8071215d6b50d89222b 2354 python optional nose_1.3.4-1.dsc
 6ed7169887580ddc9a8e16048d38274d 277488 python optional nose_1.3.4.orig.tar.gz
 e1f36f5b65626d47d3dfab17d84b4030 7684 python optional 
nose_1.3.4-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBZs5AAoJEGAmk20vHIrgup0QAK/Y9UC2O9NZtqU9lwhC09DZ
DMFzvkRHRgdEyYZt0hlofw8rFsZRkUvuOFuKQzRm5qVRIi0+bP5wfhwAgDmsgpwB
A1NApCG3F6LYPhLa0K2G2j/iS2pkVEHzRweiChilMn8D0lJVL0usjgUKJCG7AkI+
+nk3hGH6/DBSyqpYU645Ex0Lhki8bk4F3MS40uR3hZdmEyat1lI6QuLQwJEiIofF
QRZMOKrz46aJxklejuGhHennGt/8gTLaWWWl4s45sSrdEHY5Jvlb6f9KNa+C/pTH
MKsTnk63OJJG4ljun4MEd4glJm4B35qkLGuN65015x+SEpzyuTdzNijQmk7PALUV
ioD/vm5UBt6GXPDaS5F9igaUPXGh2pWMrdYvfooN/whJICnzFcZXK8pFHV4KAPJx
FgsMNmlHc5IP+KPD4K81Smj8r0X4ualrDbvamulzuxg+nkV5B6gpDaqmz8NqLqtt
s9LYWnLBXD9OrF2fiSaTfDhvvkJHd7gOsGoPRZHinkJxhFbKrKLJgSeiwVOnXpna
Dto77A52OGNkKtcnPdWbww8VmA71lBPOxEan9wkvJc3gbEkKS1QbxdvqSya6Cjzi
q7vL5OIAuBNuiw2I/S1REm36GBYrkY8AIcabnfqME/irUAxAASZ3xqFOsL1ICy81
x8rOOHX6B8Hcb4Iasxkx
=uv0H
-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: https://lists.debian.org/e1xolpw-0002yy...@franck.debian.org



Accepted pangox-compat 0.0.2-5 (source amd64) into unstable

2014-09-02 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 12:37:51 +0200
Source: pangox-compat
Binary: libpangox-1.0-0 libpangox-1.0-dev
Architecture: source amd64
Version: 0.0.2-5
Distribution: unstable
Urgency: medium
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description:
 libpangox-1.0-0 - pango library X backend
 libpangox-1.0-dev - pango library X backend - development files
Closes: 755909
Changes:
 pangox-compat (0.0.2-5) unstable; urgency=medium
 .
   * Use dh-autoreconf during build to support newer architectures.
 Closes: #755909
Checksums-Sha1:
 9c8c35fe85b80be41b0f73dd8a710326d53aee8c 2180 pangox-compat_0.0.2-5.dsc
 3a28febcb2904321406fb775f6cfb1dbd393d9c7 3056 
pangox-compat_0.0.2-5.debian.tar.xz
 caaa8ef3f4c23f7791ea00f3a74abdf8f0e0e58c 42032 
libpangox-1.0-0_0.0.2-5_amd64.deb
 e471bf5f68930f97129461d969792e646347901e 42804 
libpangox-1.0-dev_0.0.2-5_amd64.deb
Checksums-Sha256:
 7565f09440227c0db066195acad244d3ed1157956d2ca8e1c540e69e7a6784f4 2180 
pangox-compat_0.0.2-5.dsc
 f3894c1a4d0a06d2962a312589b564edd648e3f96768914c1926e78d2e154313 3056 
pangox-compat_0.0.2-5.debian.tar.xz
 212e1bca0758f41cf4bb8b9ebf6836063e8b76795fee88593db74dd61e507782 42032 
libpangox-1.0-0_0.0.2-5_amd64.deb
 f662b87debc45aba2efa6c21f23860fbf31bc81d0f1f1b7b9a3d17dc62ad9ad7 42804 
libpangox-1.0-dev_0.0.2-5_amd64.deb
Files:
 0f21d2cc7f66a507acd5ce39a48dcbdb 42032 oldlibs extra 
libpangox-1.0-0_0.0.2-5_amd64.deb
 48c0f2f6a386c9347f0d8c29f79a7273 42804 libdevel extra 
libpangox-1.0-dev_0.0.2-5_amd64.deb
 2fac44160296e89dc874a95155f43842 2180 oldlibs extra pangox-compat_0.0.2-5.dsc
 ba37e2ac45ba552e501b56ccff6e7287 3056 oldlibs extra 
pangox-compat_0.0.2-5.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBZ54AAoJEGrh3w1gjyLcNZMP/jfEvf3xtsUePVBcViyNX+PR
9P4dn0NFVh2vVU8Zol7GTRN9CatbvkRAdRRl1twUqZzw3st9X6i7qAdWC8wZSK30
meYbhSxTErCL0GueC1P962mzNM3yCDBBiDNYY8vkUx3e6hoqNeFph9zms4lzg4jU
5xZyqmrv6aWPaqRnbzHGNAojSuwZIFEIgNGMGeBMBJ6v2VHqo5X3DUH0JgjMliFV
K5Wlh+aqyWJCOPAHEiGP/9bgZHSUBl7IJSZFNN0FU4N65JFD6SALubAD1xmmvDjG
P3rL7tY0xANDwgruvzxynBHdLrBwCPfLvqNBCZilBvFzBPI4292NkH3Q6UBstFme
nT+o5W6CIPSmNUkOjExqV4rxeeka4PfqWPW6TFLP36BJiPQKUkT+p/yYKAsOq/g4
sqthTV4EJpyz9EoOqC2JMADUO0SSmhkncph2cYyjLMNzT4BOp/LrFXWhm2r4DeqH
Hcs1P7vYh1cxXW6/WkKTWOMO5IevKn6ILu0hsI/uvSPmbdjrMCwRQoNkrCrxlmVQ
X5CgsJZm1/ePdlRq0Ih4PSNC0jyYpZX9QPJso7iT3Zw+iodqWYD1cOliyOGQU2nR
P/pRUzVInCcpjm3K/NOKN2SbMzScp0Xqmpa1kOreDJqniiakujXj7lreRCyBGm0Y
JJYE18o5KemS1hOP9yyd
=lg4D
-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: https://lists.debian.org/e1xoles-00072i...@franck.debian.org



Accepted faenza-icon-theme 1.3.1-1 (source all) into unstable, unstable

2014-09-02 Thread Rogério Brito
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 08 Dec 2013 16:09:46 -0200
Source: faenza-icon-theme
Binary: faenza-icon-theme
Architecture: source all
Version: 1.3.1-1
Distribution: unstable
Urgency: low
Maintainer: Rogério Brito rbr...@ime.usp.br
Changed-By: Rogério Brito rbr...@ime.usp.br
Description: 
 faenza-icon-theme - Faenza icon theme
Closes: 595106
Changes: 
 faenza-icon-theme (1.3.1-1) unstable; urgency=low
 .
   * Initial release, Closes: #595106.
   * Use non-native version string.
   * debian/source/format:
 + Declare the package source to be '3.0 (quilt)'.
   * debian/{compat,control}:
 + Bump debhelper dependency to 9.
   * debian/control:
 + Add a run of wrap-and-sort.
 + Remove excess capitalization from short description.
 + Wrap long description.
 + Mark me as the maintainer.
 + Conform to the policy, change Priority to optional from extra.
 + Add Vcs-* fields.
 + Verify that the package conforms to policy 3.9.5.
   * debian/copyright:
 + Change completely to Copyright Format 1.0.
 + Fix indentation with `cme fix dpkg`.
   * debian/dirs:
 + Remove unused directories.
   * debian/rules:
 + Vastly simply debian/rules with dh(1) style.
 + Simplify the rules file even more.
 + Remove executable permissions from non-programs.
 + Use xz compression for the binary package.
Checksums-Sha1: 
 18dcbb3012901646c04f56e630fe5d86f991b60f 1278 faenza-icon-theme_1.3.1-1.dsc
 9acfb7931482b4202d0e7ce158ccf030f7fc5d7b 24647057 
faenza-icon-theme_1.3.1.orig.tar.gz
 104ea1d8ea487950890cebff3df0133bb7d2957e 3632 
faenza-icon-theme_1.3.1-1.debian.tar.xz
 98ed38fb687175b853d2393d8fac3ed43f9d61d4 17148652 
faenza-icon-theme_1.3.1-1_all.deb
Checksums-Sha256: 
 b9de75af9fb03b10a279dc6c68a6eb73cb7a330a01a30051c2f6aefac0d7f18f 1278 
faenza-icon-theme_1.3.1-1.dsc
 afd1c32229989e4cf09733c1ce5f2a651e585d86f45e98e9de6e8813f15d0edc 24647057 
faenza-icon-theme_1.3.1.orig.tar.gz
 b19e59ce22bd648d9b32afa66d6ac4e562b87f61516c4b01813f211bce016050 3632 
faenza-icon-theme_1.3.1-1.debian.tar.xz
 680fc708b529bfdf0dcf9ecb58c00c226a6aed294533b4fe0bd4501f2311 17148652 
faenza-icon-theme_1.3.1-1_all.deb
Files: 
 e58da2e114da74f6709dbb2d1f803736 17148652 gnome optional 
faenza-icon-theme_1.3.1-1_all.deb
 34069038f11758e6c0fcf5624c5ba829 1278 gnome optional 
faenza-icon-theme_1.3.1-1.dsc
 b5339b70cbb821b583499e725957b150 24647057 gnome optional 
faenza-icon-theme_1.3.1.orig.tar.gz
 33b45c7a03dbb4e5b9b27ecd0305ff65 3632 gnome optional 
faenza-icon-theme_1.3.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlNaZcMACgkQOKCtW8rKsRipTwCffDfvOVYHGFCdUF1jW+wXXjAW
IogAoKIPre3gFuxPkvszrheF7KZ4fVzu
=gYHN
-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: https://lists.debian.org/e1xolol-0001kq...@franck.debian.org



Accepted cyassl 2.9.4+dfsg-1 (source amd64) into unstable, unstable

2014-09-02 Thread Felix Lechner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 09 Apr 2014 17:43:28 -0700
Source: cyassl
Binary: libcyassl5 libcyassl-dev libcyassl5-dbg
Architecture: source amd64
Version: 2.9.4+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Felix Lechner felix.lech...@gmail.com
Changed-By: Felix Lechner felix.lech...@gmail.com
Description: 
 libcyassl-dev - Development files for CyaSSL (Yet Another SSL) library
 libcyassl5 - CyaSSL (Yet Another SSL) library
 libcyassl5-dbg - Debug symbols for CyaSSL (Yet Another SSL) library
Closes: 598391
Changes: 
 cyassl (2.9.4+dfsg-1) unstable; urgency=low
 .
   * Initial release (Closes: #598391)
Checksums-Sha1: 
 6a0e3fdcc75c1b813b5cb601f52dc0424943dfb1 1525 cyassl_2.9.4+dfsg-1.dsc
 6fc7032619a0d64197d66fd168002faeeaa92ff0 1127725 cyassl_2.9.4+dfsg.orig.tar.gz
 2ea4a239d374d0e175723a649add69c8cb909bc4 7344 cyassl_2.9.4+dfsg-1.debian.tar.xz
 e7e3fc66108d261d110f28ecc2341b4bb4eb3076 195380 
libcyassl5_2.9.4+dfsg-1_amd64.deb
 4e7e6c7322635ce956bb7197eed64c7944dd9501 287132 
libcyassl-dev_2.9.4+dfsg-1_amd64.deb
 ce3a67f071f015f37c79e1cd5c9c54db95c2e420 18604 
libcyassl5-dbg_2.9.4+dfsg-1_amd64.deb
Checksums-Sha256: 
 6028e2af989338ac14f085c36791899ead3fdb51112d1a845a240d9856b9824b 1525 
cyassl_2.9.4+dfsg-1.dsc
 a9892add4539ce8852aa4c6b1a08ae067a5a89f9e7f666470f8271b1511850b5 1127725 
cyassl_2.9.4+dfsg.orig.tar.gz
 c543ef8ffe61505fc8ff613ed480aba9a87deccfce1028506e21aefdc37622b2 7344 
cyassl_2.9.4+dfsg-1.debian.tar.xz
 2192e7f2fe0d78487e8c3f30f9471ad10da94e908b40e9e44569e10809035f7a 195380 
libcyassl5_2.9.4+dfsg-1_amd64.deb
 5d2ac7d0b0fde5c1f23bdfb047a6d3b8a6e72dcde5ee65757239c87d0ec7215e 287132 
libcyassl-dev_2.9.4+dfsg-1_amd64.deb
 dc7bfb6d2193a1250e689a02a7887dfc770964b00cca732072f3a339b738c4d6 18604 
libcyassl5-dbg_2.9.4+dfsg-1_amd64.deb
Files: 
 898aa1ca1622f1e6fdea4e9fda07bba3 1525 libs optional cyassl_2.9.4+dfsg-1.dsc
 23be00f6a927fb4ee7df3dc2b1f4bf32 1127725 libs optional 
cyassl_2.9.4+dfsg.orig.tar.gz
 9b4ac3c2eebb2bd015e792dad492f08b 7344 libs optional 
cyassl_2.9.4+dfsg-1.debian.tar.xz
 c48e6a6a5a2a09af72666007f6c2e633 195380 libs optional 
libcyassl5_2.9.4+dfsg-1_amd64.deb
 15cf6416875ebfb03adb6260a8712e82 287132 libdevel optional 
libcyassl-dev_2.9.4+dfsg-1_amd64.deb
 bc6792fef361703a548e79bc2588e86e 18604 debug extra 
libcyassl5-dbg_2.9.4+dfsg-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQEcBAEBAgAGBQJTUU2KAAoJEFOMB2b0vLOOitEH/3asCtV2Zluq+bnssclrviE/
gUJT4rAY9dQj25Qk+rFS/LS3YWH2Kiliqj7gDVWVRIYcoXseqm2ZhojmGGcOxf4h
8XBtC01Ao/Jkwc7ahs9HZ7RJ1x1t9e8FhWvKnCBtAkcxxdgPzd36t+RQ1j2fcXmh
HEGN5sNhDG+przQhHRGUsbsEiRWhd8UhQvVyrGPtkVVL6Mhf7sxlI9TjpXk7N8D2
zKXKACYzvoAbhr4eC0OzV1n/d1bnZsJFyf4g0XxXkbgaJG2unVcCUGCszdNdOr9U
pblMFOZeIeNmOKduj5Li0GGZZFTMMFRx7yvasvrHnXkS4rNZD8modR7Zya5TyNI=
=w43l
-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: https://lists.debian.org/e1xolol-0001jx...@franck.debian.org



Accepted mediaelement 2.14.2+dfsg-1 (source all) into unstable, unstable

2014-09-02 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 01 Jan 2014 18:59:27 -0400
Source: mediaelement
Binary: libjs-mediaelement
Architecture: source all
Version: 2.14.2+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian JavaScript Maintainers 
pkg-javascript-de...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description: 
 libjs-mediaelement - HTML5 audio or video player with Flash and 
Silverlight shims
Closes: 733880
Changes: 
 mediaelement (2.14.2+dfsg-1) unstable; urgency=low
 .
   * Initial release (Closes: #733880)
Checksums-Sha1: 
 f37c429a1aea201b2d1bb79dcb511b77106dabbb 2138 mediaelement_2.14.2+dfsg-1.dsc
 19e5654b66a530e878344d7ca73d7e74e0ec0b00 536501 
mediaelement_2.14.2+dfsg.orig.tar.gz
 b296f9eac4b94b8b70036f0aec72edcba7716a0d 3448 
mediaelement_2.14.2+dfsg-1.debian.tar.xz
 19020d9724c9768299eb8692d5c4e471e4dba259 91974 
libjs-mediaelement_2.14.2+dfsg-1_all.deb
Checksums-Sha256: 
 9740b589874839b933073e82e3325f456635db50e0eb707512daadb94870baa8 2138 
mediaelement_2.14.2+dfsg-1.dsc
 13e1eb9d6be758f79fdd3cefa73c3d31997fb66359c8f734e77d3e36fe635252 536501 
mediaelement_2.14.2+dfsg.orig.tar.gz
 b865a4c0ca67a7d0c3957a11366a06120e82da99dbc11c121ee87858cc587b0b 3448 
mediaelement_2.14.2+dfsg-1.debian.tar.xz
 a0a80b7c5487503156319397757577ded28db1512103d9567220d7d1633913f4 91974 
libjs-mediaelement_2.14.2+dfsg-1_all.deb
Files: 
 91308bf78a7cfa573a3179a510cdaa96 91974 web optional 
libjs-mediaelement_2.14.2+dfsg-1_all.deb
 d4b84272b689540e00ee19dadf2ef2c1 2138 web optional 
mediaelement_2.14.2+dfsg-1.dsc
 ecd88c7e9e84ed8eb77f8ab1f3132b23 536501 web optional 
mediaelement_2.14.2+dfsg.orig.tar.gz
 7f4b1b5a893663232867ca256152ac74 3448 web optional 
mediaelement_2.14.2+dfsg-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTWXWZAAoJELgqIXr9/gnypAMQALf+8UsZpf/Vl0041JfuMxMK
8novTOFruiQmW+AsIRxPk9WcshddBe67turFp2mxtV0fdDToMYsAsBY1GA9+7W0I
0sD4qodv1YLD26POCE/PAvlrGZX8+BVdqvm0LamJi2aVJU+EB1C+2/VruUXxVSM8
1GI4YvNsL1lUmLfFVWsmDqiEOQBp386gzRZr0mlUeKCKoLWKvrjvNvxbOHc0X5ms
ixL2vKf3J1NYu0kpZlPuWcAvfVrthikNT0GJupsbBFTMBLSTKT2kmuVHhmRz+LMp
vFoCD4eITJx72xEex1FbCCiZxVQawDUOV+OSNsTQD/HufXXSGVXqiGnScXCvh5cP
swNNZH/eHb9D4PPm1sTWqcScf6/RxUVXOPHQPZYUxQU8h+TPw7Z11xlHzZpxXDJ5
U+cd3+J4mkJI3O/QOhgY8YarN1glHoCixR/oIqz2Ih4jT0ADgh/kgV2bjlJMtTc0
27PscmwxI1pyIy6xvBPczYvk0A0wVMUnYOp980pT76gEAwcFgSJ28PIg2K+6ETOs
VO54JcaMvnpQnuXII3a8HxKpmluHc70QKLoGpFaECl5mrvH8yjGAg1+Lx94OEy+j
QsNewoJTQt8DhEZTTDJcf9d21PpI/K/WaqDF6mgLXyRkaUXHg4We/uPOnnJwiGni
ehzFutPrkXzVj4R6eWeL
=Gnvv
-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: https://lists.debian.org/e1xolom-0001kx...@franck.debian.org



Accepted elasticsearch 1.0.3+dfsg-3 (source all) into unstable

2014-09-02 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 09:50:42 +0200
Source: elasticsearch
Binary: elasticsearch
Architecture: source all
Version: 1.0.3+dfsg-3
Distribution: unstable
Urgency: medium
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description:
 elasticsearch - Open Source, Distributed, RESTful Search Engine
Closes: 759736
Changes:
 elasticsearch (1.0.3+dfsg-3) unstable; urgency=medium
 .
   [ Tim Potter ]
   * Disable dynamic script execution to close CVE-2014-3120
 (Closes: #759736)
Checksums-Sha1:
 71bdc306c0249b8d79deea62cf2e71ddb9009dc2 1878 elasticsearch_1.0.3+dfsg-3.dsc
 7933fac789d163eed3fd63f375f9b0902b39eea4 8344 
elasticsearch_1.0.3+dfsg-3.debian.tar.xz
 d7cd62978da15b804e1eed9e135010f63752554c 10489026 
elasticsearch_1.0.3+dfsg-3_all.deb
Checksums-Sha256:
 7fbb6e55b81286ebd99cd6d2b11699d0ef5c9a28e83352e26817fbad07d690c0 1878 
elasticsearch_1.0.3+dfsg-3.dsc
 2765eb1d9a7e6af584f9bcdfcedd2d3fd1bbcc075b9239bb4c9813859d055af9 8344 
elasticsearch_1.0.3+dfsg-3.debian.tar.xz
 4d17289223ab04693fb25ba71fd4e3d2dba5060411186a013fa48e8dac6efa91 10489026 
elasticsearch_1.0.3+dfsg-3_all.deb
Files:
 8d8b82a8740025803e63c6bf37f25349 10489026 web optional 
elasticsearch_1.0.3+dfsg-3_all.deb
 e8742367fe14f4d44d9b18ce3b8342e8 1878 web optional 
elasticsearch_1.0.3+dfsg-3.dsc
 cb35f876a00f6e0fb954121b6d725050 8344 web optional 
elasticsearch_1.0.3+dfsg-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQFpAAACgkQUCgnLz/SlGhvlwCg2TCjoyTKeMqVtERK6HIUznk/
2DoAoLCJi2mQnAzEquwvQhvBzhcttbXr
=DsJk
-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: https://lists.debian.org/e1xom6p-0006yx...@franck.debian.org



Accepted gnat-gps 5.3-4 (source all) into unstable

2014-09-02 Thread Nicolas Boulenguez
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 00:20:03 +0200
Source: gnat-gps
Binary: gnat-gps gnat-gps-dbg gnat-gps-doc gnat-gps-common
Architecture: source all
Version: 5.3-4
Distribution: unstable
Urgency: medium
Maintainer: Ludovic Brenta lbre...@debian.org
Changed-By: Nicolas Boulenguez nico...@debian.org
Description:
 gnat-gps   - integrated development environment for C and Ada
 gnat-gps-common - integrated development environment for C and Ada (common 
files)
 gnat-gps-dbg - integrated development environment for C and Ada (debugging 
symbo
 gnat-gps-doc - integrated development environment for C and Ada (documentation)
Changes:
 gnat-gps (5.3-4) unstable; urgency=medium
 .
   * Built against packaged gnatcoll instead of embedded copy.
 Move /usr/bin/gnatinspect from gnat-gps to libgnatcool-sqlite-bin.
   * Remove unused sources from build_gps.gpr and debian/rules.
   * Replace get-orig-source target with detailed instructions in
 README.source. Give script used to merge_upstream_into_dfsg.
Checksums-Sha1:
 f983d71bc88fa3281eb0794bdcb44ef80e214873 2573 gnat-gps_5.3-4.dsc
 c71977984309233dade70833a8d165cba24923ad 24176 gnat-gps_5.3-4.debian.tar.xz
 d0d24f570f2e13f65a45ecccffcff18183db69d9 9079868 gnat-gps-doc_5.3-4_all.deb
 d15ecfe77acc88284d12501155d4e531dce14aff 1415490 gnat-gps-common_5.3-4_all.deb
Checksums-Sha256:
 e9cff6e5b7b084ffe76e94f20f3abb758219962e5e233e1a242aa1fb2d113d1f 2573 
gnat-gps_5.3-4.dsc
 826657cf7622ab1d0316927771d0a864edb51070dc6f6305d4bad9c5876244c1 24176 
gnat-gps_5.3-4.debian.tar.xz
 9e1fbf6bdd78b342772f50e8c165ac0657f1aaa068165e80389fb29a8359448e 9079868 
gnat-gps-doc_5.3-4_all.deb
 9acf4bd316321ed971a7073f54000c72f36f3183d724200358cdc583c5be96de 1415490 
gnat-gps-common_5.3-4_all.deb
Files:
 bffcc29b1ecd1f214bfdc2b9f1bf5b83 9079868 doc optional 
gnat-gps-doc_5.3-4_all.deb
 12b3a3b89430696a369f9d7b4b87b59d 1415490 devel optional 
gnat-gps-common_5.3-4_all.deb
 a36f1952e2ac455b851841887a89a04a 2573 devel optional gnat-gps_5.3-4.dsc
 4d32fe7810012ce600adc25e05c8c94a 24176 devel optional 
gnat-gps_5.3-4.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBaSPAAoJELUqnPRJDfyNNT8QAJeXuiQa8WyeCNfgwW069K03
Xkf+DL2OhLmhEishLSTY1j4fanBE6vvqru6mDBblL4JZoCbevU3zRqrT2h9HIglh
bQO7L3HfUrjOvsLIVf/qnzL30cOCW7yB3XZ1gsJUHRwDPGgAL/LHxrGMS5avMiWR
C/cEwnOQnRbFFfr5bI6RpQCXAVy49I25g/sGM4t3PPOakOeMlpf17r0zOcE+IFIF
vvlUUaN1UCUF9IWn1CdDP14PtuDfCsQLJKjSdTmI7SuX6ieZvUuRFkLUIGdCKH0f
cICy+Q3ITrNztm25NC3cwliKBOaQErZrjfZwoyGdUz+2WwQOVwujheKudtZEjBqD
r/M3yRicKSXvLHuiHX33VWYFlfWeYkiea3hOGFISJikYbE5e8wW1jt4aYezczIcQ
hx14l2/yIxujvS1vY4CbCvX1jIrGSMy4DImYesOHJXRt8aTIjMlOS7fVy4GPpp0c
gchABlfkXADtPp5ihzzOoB0F9sM3BMGQfK8zFBbhl6z6/fjpXGvkF4YzwO2Fe4VO
3/zXp9K0t6r0/AVMOxTDsNQPCj5s6WuQc5S3IdAf+llGusEni4u+ZB8C22lAHKvz
9fO1CLt15LhRoU9h2AeTELCVQ1jqhy8m4vCsO5DrExREifBkXHgzpscVDKIYcZ5n
0CrrtJs5Vf+0B+J7cHKX
=Vt8y
-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: https://lists.debian.org/e1xom76-0006eo...@franck.debian.org



Accepted wcstools 3.9.0+dfsg-1 (source amd64) into unstable

2014-09-02 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 11:15:07 +0200
Source: wcstools
Binary: wcstools libwcstools-dev libwcstools0
Architecture: source amd64
Version: 3.9.0+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Debian Astronomy Maintainers 
debian-astro-maintain...@lists.alioth.debian.org
Changed-By: Ole Streicher oleb...@debian.org
Description:
 libwcstools-dev - Handle the WCS of a FITS image (development files)
 libwcstools0 - Handle the WCS of a FITS image (shared library)
 wcstools   - Handle the WCS of a FITS image
Changes:
 wcstools (3.9.0+dfsg-1) unstable; urgency=low
 .
   * New upstream version
   * Change maintainer and VCS location to debian-astro
   * Change uploader's e-mail address.
Checksums-Sha1:
 84af27d96cd3b2544257d3cd07b25a759909d84b 2138 wcstools_3.9.0+dfsg-1.dsc
 19b5aa8ecb6a6ba764746191fecf1d5f26ac6bf5 1048667 
wcstools_3.9.0+dfsg.orig.tar.gz
 b9e11c70069e35e8990d39cfe30f2af954b8247a 12124 
wcstools_3.9.0+dfsg-1.debian.tar.xz
 4bfe5bbfbed7232e084f691a180f1bf0e00f515e 301046 wcstools_3.9.0+dfsg-1_amd64.deb
 e133cb6041051ffec778a546736ca4f42e58ec08 383852 
libwcstools-dev_3.9.0+dfsg-1_amd64.deb
 206549b5c4e7a1c898bf7dd1500e66551bcb1e55 325002 
libwcstools0_3.9.0+dfsg-1_amd64.deb
Checksums-Sha256:
 83e7b0b3d0112734c62b17d562cc432ae8ee574dcc7cfa6a1929c4eb1178fe17 2138 
wcstools_3.9.0+dfsg-1.dsc
 51ba676f634bcb98b32c569e545564f065cae0a6ccfe4a98cc33ea84b59494bf 1048667 
wcstools_3.9.0+dfsg.orig.tar.gz
 2ed1fd071f12563ea41febbddae8299ef314d26812c358716f721e81e2f65e47 12124 
wcstools_3.9.0+dfsg-1.debian.tar.xz
 54060902e238c6e2de6df773015aa7ecfc26913f41b830b1f56c9af4fd9c7b7e 301046 
wcstools_3.9.0+dfsg-1_amd64.deb
 e7c8c393f45f0c94451e0ed5389660571240940edf7918fbd03ee864b6c16ff5 383852 
libwcstools-dev_3.9.0+dfsg-1_amd64.deb
 8527f8a1170758457f2259fb45dc6e3d19b5b16df3cfc71c82a870e95bba9a80 325002 
libwcstools0_3.9.0+dfsg-1_amd64.deb
Files:
 29b09efdeabf1c6a9abbb5e5d446ef53 301046 science optional 
wcstools_3.9.0+dfsg-1_amd64.deb
 76b694fc995e9dcb03478e65d304a890 383852 libdevel optional 
libwcstools-dev_3.9.0+dfsg-1_amd64.deb
 32e7572d933a43bef69c44589139a663 325002 libs optional 
libwcstools0_3.9.0+dfsg-1_amd64.deb
 03bd53e4289509163c53b4d80a7d3366 2138 science optional 
wcstools_3.9.0+dfsg-1.dsc
 c2ae3bcf75869ce4aecb8deffe11726a 1048667 science optional 
wcstools_3.9.0+dfsg.orig.tar.gz
 8ac42cf8b35f265b8940aea4ab7b5508 12124 science optional 
wcstools_3.9.0+dfsg-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUBaUlAAoJEHEVr9B3ENz39jIP/jqq3AYFe09rNRB0VtIQNx5A
2DFPdqNLwFRQTkTNHZGU2qYVi/1yxWwgdv79Q8MKci99nKQnurdaqTwCn6KX7vxu
Jk9Ud7UsR1F3ApwZBBiK1dJNUxhWmtDvw9pii7Ixt1f6mqB/aX4umTybTVBbq8d/
968F5tO4YHNnB3aaL117TFLbhDi/eLoNnkbSbG5E0LtslhHrfWm2W9W/bpkizS+4
sobUKHf4+IvKW1WPDYRKZr5PS6fZTsRebh2fDHl4MEcGocXujWOTYRgPeroxqiZr
WDAyaKelK3vom5MATqUR3Fsf5o4AboGQxTJfABtHztePYPFZJEJCHDJiDEzJu1Nz
yODBI/XLWOLcSG0GazT5lzI5NVe+bSMlG1/9C+1KovhCovEIaKu5hkCkpdPsCaBp
Hq0f/N8b9j2gwmLtKFNT6LPzLrh8WpX8+wT4B8rLVwYHd0/iJnBCxnHFMKC2WORb
L5o2hJkJf2mk4/7xY0yjujExpv2ZmxQpM8ewR4nzkciGbo2LdcMfdjfZIToiSSme
x3cYt1NYalsJnRDmFG/ncOnvVjEsa4iUCqPvtHDtbt586Rc9WaJlNpUVeoxSz0Fv
zNBhdsoUxjG/gdWpK7JmFwsPapiFt1APrHok5VYQtdfxQynRp2NqWjinVu5YDm4f
B2g/iMoLBbzxFyvLC5lU
=L1pS
-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: https://lists.debian.org/e1xomzq-0007az...@franck.debian.org



Accepted openjpeg2 2.0.0-1 (source amd64 all) into unstable, unstable

2014-09-02 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Fri, 23 May 2014 18:23:37 +0200
Source: openjpeg2
Binary: libopenjpeg6-dev libopenjpeg6 libopenjpip6 libopenjp3d6 
libopenjpeg6-dbg openjpip-dec-server openjpip-viewer openjpip-server 
openjp3d-tools openjpeg-tools
Architecture: source amd64 all
Version: 2.0.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description: 
 libopenjp3d6 - JPEG 2000 image compression/decompression library
 libopenjpeg6 - JPEG 2000 image compression/decompression library
 libopenjpeg6-dbg - debug symbols for libopenjpeg6, a JPEG 2000 image library
 libopenjpeg6-dev - development files for OpenJPEG, a JPEG 2000 image library
 libopenjpip6 - JPEG 2000 Interactive Protocol
 openjp3d-tools - command-line tools using the JPEG 2000 - 3D library
 openjpeg-tools - command-line tools using the JPEG 2000 library
 openjpip-dec-server - tool to allow caching of JPEG 2000 files using JPIP 
protocol
 openjpip-server - JPIP server for JPEG 2000 files
 openjpip-viewer - JPEG 2000 java based viewer for advanced remote JPIP access
Closes: 738655
Changes: 
 openjpeg2 (2.0.0-1) unstable; urgency=low
 .
   * New upstream. Closes: #738655.
Checksums-Sha1: 
 eddcae8a6140a38cbaace42668ddc7de32147c12 2704 openjpeg2_2.0.0-1.dsc
 0af78ab2283b43421458f80373422d8029a9f7a7 1770392 openjpeg2_2.0.0.orig.tar.gz
 adfc11014970a17deae05994a858b158eba88d3b 12296 openjpeg2_2.0.0-1.debian.tar.xz
 f2591290d5d38fde8bf0c10383aa32a73b9f6a66 41548 
libopenjpeg6-dev_2.0.0-1_amd64.deb
 bf9afb2044ba70952bfe1e8b2e9d26cbd5ff 114526 libopenjpeg6_2.0.0-1_amd64.deb
 88d11d80f5571904287c97841f543594746fb783 63004 libopenjpip6_2.0.0-1_amd64.deb
 9852dccbcd73561f6430ae63e1e926cb5078f620 84238 libopenjp3d6_2.0.0-1_amd64.deb
 0108a28b6a9375efb8fee23b9ca497c41df2d634 979656 
libopenjpeg6-dbg_2.0.0-1_amd64.deb
 5bf433fb0cc40965b8fee6ab03ac0bc9c4465aa7 30780 
openjpip-dec-server_2.0.0-1_amd64.deb
 5800740a1ffb067a4d0e61566627aa7dad8eea42 50516 openjpip-viewer_2.0.0-1_all.deb
 60274edaff4710e8cf5e3a9bc47088047b9d3543 52352 
openjpip-server_2.0.0-1_amd64.deb
 c294d85c294971d6f527b76510e553c4224f664c 44868 openjp3d-tools_2.0.0-1_amd64.deb
 7d3166f756e9d074de3833df0a4ae5617175829f 79450 openjpeg-tools_2.0.0-1_amd64.deb
Checksums-Sha256: 
 f8c2867400d227f825ba2a9f323f777dfc6119af62cce86c12edf38aa87e1c75 2704 
openjpeg2_2.0.0-1.dsc
 334df538051555381ee3bbbe3a804c9c028a021401ba2960d6f35da66bf605d8 1770392 
openjpeg2_2.0.0.orig.tar.gz
 5689a7638d9b3b60947f1522a2479f5fd45685d6306e6508e8d9ef355a46102f 12296 
openjpeg2_2.0.0-1.debian.tar.xz
 cec94c1cb14e463b429dc471eac90f451a91cd50fed27b74e7da9ca4001b507a 41548 
libopenjpeg6-dev_2.0.0-1_amd64.deb
 139ca8186e732e8d9a058f00c41914045eb7176c25b31bb410cbdfe01efc0a0d 114526 
libopenjpeg6_2.0.0-1_amd64.deb
 569ce91f1d71ccc5e27bda9216a5d6e1c0832216773471fa7a31607a07c1c5b7 63004 
libopenjpip6_2.0.0-1_amd64.deb
 aa63e9a145704f7cc7c87081c28633b476ae5829f3f71617114abe5076b8ed77 84238 
libopenjp3d6_2.0.0-1_amd64.deb
 5ce0dbc515f213d9ecebe8b622bf010c46c1ef95ee32fcd457a35996fafa7064 979656 
libopenjpeg6-dbg_2.0.0-1_amd64.deb
 bb5ec9e7584a57a1aa7f6d90e4de6898dc8f2b9d9bf8db3256bb723c91bf38af 30780 
openjpip-dec-server_2.0.0-1_amd64.deb
 f60b56e2a39abc8df787cc7a4b202f7249e848cf733433ff624bfba7d8b21a89 50516 
openjpip-viewer_2.0.0-1_all.deb
 cd95520e8ab611598b5600d8471b98fc14ea75d0822623be56eb3b32d1d7e5eb 52352 
openjpip-server_2.0.0-1_amd64.deb
 4aa0bb5d775b206c6271c6e0a6511970e9e937ca59f41f97158585b9b0ee5bd5 44868 
openjp3d-tools_2.0.0-1_amd64.deb
 c9cdfe7d0b7c2aa7a142467c3e5489c4aac0d0413f827e031db03266f941c3c7 79450 
openjpeg-tools_2.0.0-1_amd64.deb
Files: 
 a36a9c41620e7f20890bce55064761fc 41548 libdevel extra 
libopenjpeg6-dev_2.0.0-1_amd64.deb
 9c875cdf517598fb07eef0facfc5f7f0 114526 libs extra 
libopenjpeg6_2.0.0-1_amd64.deb
 6b8e1faf1a229fce1f5bc6c945f03239 63004 libs extra 
libopenjpip6_2.0.0-1_amd64.deb
 33d00074f36d19031a15240ad0cf8495 84238 libs extra 
libopenjp3d6_2.0.0-1_amd64.deb
 abe6c0afb613c6796bb1e68b216a39b7 979656 debug extra 
libopenjpeg6-dbg_2.0.0-1_amd64.deb
 ba17cd8f755edfeb80208bbfee61380f 30780 graphics extra 
openjpip-dec-server_2.0.0-1_amd64.deb
 6d622b4b4f6f63ddd877a0c057786450 50516 graphics extra 
openjpip-viewer_2.0.0-1_all.deb
 d318dabda455bb5312759b9d0e752508 52352 graphics extra 
openjpip-server_2.0.0-1_amd64.deb
 aaf5963d803a57bf553088db2057541d 44868 graphics extra 
openjp3d-tools_2.0.0-1_amd64.deb
 dde6dbe63fb6ba276b950a1819d8013c 79450 graphics extra 
openjpeg-tools_2.0.0-1_amd64.deb
 5e2fd2c5d9c88ab8631e878eb5735245 2704 libs extra openjpeg2_2.0.0-1.dsc
 d9be274bddc0f47f268e484bdcaaa6c5 1770392 libs extra openjpeg2_2.0.0.orig.tar.gz
 0b320e5fed54b503bf942c26319b9a70 12296 libs extra 
openjpeg2_2.0.0-1.debian.tar.xz

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


Accepted python-googlecloudapis 0.9.30+debian1-1 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 30 Aug 2014 01:54:38 +0800
Source: python-googlecloudapis
Binary: python-googlecloudapis python3-googlecloudapis
Architecture: source all
Version: 0.9.30+debian1-1
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-googlecloudapis - collection of utilities for client-side tools - 
Python 2.x
 python3-googlecloudapis - collection of utilities for client-side tools - 
Python 2.x
Closes: 759722
Changes:
 python-googlecloudapis (0.9.30+debian1-1) unstable; urgency=low
 .
   * Initial release. (Closes: #759722)
Checksums-Sha1:
 5a8f8cc9ace823a25733e5fde58f132df74c433e 2438 
python-googlecloudapis_0.9.30+debian1-1.dsc
 6234d6d6020229af929bc0210d68e8447c6a8d60 91456 
python-googlecloudapis_0.9.30+debian1.orig.tar.xz
 bbe2e4ead558d4d42597383ec8c5052bdd521174 4296 
python-googlecloudapis_0.9.30+debian1-1.debian.tar.xz
 1874dc449239cd3a805f958e239ac25e4b175c17 95600 
python-googlecloudapis_0.9.30+debian1-1_all.deb
 9778d5de725b8550c9ae20480b1f3434a043747d 95330 
python3-googlecloudapis_0.9.30+debian1-1_all.deb
Checksums-Sha256:
 21be9c2c6f9e788af5a87adfab6052345b9622e1f7e0b61c5d3b176299f3b796 2438 
python-googlecloudapis_0.9.30+debian1-1.dsc
 5ca957bd9568ce2def9c4b756cb9a108aa03ff53e419ecd03eacc5aa30755480 91456 
python-googlecloudapis_0.9.30+debian1.orig.tar.xz
 4b64feeaf569b71c88246018ad906b132a25871931090d5ac74c52da67d02454 4296 
python-googlecloudapis_0.9.30+debian1-1.debian.tar.xz
 66b2824cf1ce81e4cd4e33e71d61db2029483232b66b905148ed6ddb1508347a 95600 
python-googlecloudapis_0.9.30+debian1-1_all.deb
 367f7e9e5cd053298ab9e35e211aa4dab2d281435fcf2e187bf2924eeeb8349a 95330 
python3-googlecloudapis_0.9.30+debian1-1_all.deb
Files:
 71ac7b2370c2ec298975377e638ff4d7 95600 python optional 
python-googlecloudapis_0.9.30+debian1-1_all.deb
 942a4a1eb884348fbd3866336ff71adf 95330 python optional 
python3-googlecloudapis_0.9.30+debian1-1_all.deb
 b638aad214842a7d53fd96585901aec1 2438 web optional 
python-googlecloudapis_0.9.30+debian1-1.dsc
 6a457591cbbe3db8fcf5f20862844c73 91456 web optional 
python-googlecloudapis_0.9.30+debian1.orig.tar.xz
 774c033893161cfe63fc8359455f6250 4296 web optional 
python-googlecloudapis_0.9.30+debian1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUAMVSAAoJENQWrRWsa0P+BpYP/A2VmEoqT8KfM5iyS7ZviL2u
y/shZ0Jbh2zRGjNitetG+71VQfU3MX6ls7dG9yPrId5MEzjzpXdpp3yPpTrMfksr
l90rwJZiHIHLRTbjhiC29qQwv8qHl1RHNEtvaCu/amiKHM+ErNnD33tpJA25BuYY
+Nc1270A+W3WINECWN+DzpXj7i8kfOoTUFLCSCFLx4fsLRKImrwml8cC1Ks5JWyG
HqwMKQSTypoBYkz2iSUxyKrsV4pZcsWYgBN314FSM14U5dNpWHN7dChDlclD+6na
0vzYiuKLV4DyjMYb+/g5uGCX1ZIlYs9BeMvfOBDaIUW8N5MHj3Jf7Vy0YVINVZ8d
KGOO5c/F8ra3bvZwJjiRjJjdsWAo8uNoT/oOaxvB8eaXjQtFqDLySvKMb9yQEqsY
1PFGok+dSG5dvdJBWaZMNIE+g185yO+uEJ/aXH4kERbt8Xqwl2Nw/2bZSeQ9Hk7l
1t1HuGoyh5TOt0sC5P+4iC1g2nbndpBKbTisAyd70ZuxooIHBZKaE1p+5QJ+Z5oa
g4c/yxmIiKBKucHi9gYoCLZkJKoyvHD8ChW3OSDjoDl+qHyIJXJ80oTvhGElxKtz
NXWBBgYMUFD63+7L2vmd5bbOyy63XVRCvKbDaY9QVuLmZyaLgxvYQTaPmlITy8Qd
VUeIWTgdAEWpzHbJ3LoO
=x2rv
-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: https://lists.debian.org/e1xomkp-0002vh...@franck.debian.org



Accepted pantheon-terminal 0.3.0.1-1~experimental1 (source amd64) into experimental, experimental

2014-09-02 Thread Shnatsel
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sat, 07 Jun 2014 01:31:46 +0400
Source: pantheon-terminal
Binary: pantheon-terminal pantheon-terminal-dbg
Architecture: source amd64
Version: 0.3.0.1-1~experimental1
Distribution: experimental
Urgency: low
Maintainer: Sergey Shnatsel Davidoff ser...@elementaryos.org
Changed-By: Sergey Shnatsel Davidoff ser...@elementaryos.org
Description:
 pantheon-terminal - Modern terminal from elementary project
 pantheon-terminal-dbg - Modern terminal from elementary project (debugging 
symbols)
Closes: 750773
Changes:
 pantheon-terminal (0.3.0.1-1~experimental1) experimental; urgency=low
 .
   * Initial release (Closes: #750773).
Checksums-Sha1:
 21e873052a7be60f68669c34a13bc4d641d84e13 2053 
pantheon-terminal_0.3.0.1-1~experimental1.dsc
 3dc3b5d991b54529b127c6de9e237e00f6024818 70931 
pantheon-terminal_0.3.0.1.orig.tar.gz
 7ebbd63f21241d3cf3dd36e09ead0fe1a8eb7bef 3324 
pantheon-terminal_0.3.0.1-1~experimental1.debian.tar.xz
 656b0630d1ac06c025b64bb4fbd5779d4e6a3edb 66106 
pantheon-terminal_0.3.0.1-1~experimental1_amd64.deb
 d723bae9c5b4d369f266ee45b21e57c8a38d29fb 78544 
pantheon-terminal-dbg_0.3.0.1-1~experimental1_amd64.deb
Checksums-Sha256:
 97b6cb0736ae213ca48f938b94ce97dadc4ad5daf8228cf2bb151e4902e26a76 2053 
pantheon-terminal_0.3.0.1-1~experimental1.dsc
 ea9718b409baa3ebdc175b5d51ed7825f0199e3c3de467a5f7bea6733bbe9a93 70931 
pantheon-terminal_0.3.0.1.orig.tar.gz
 76d6bf7c6c7ae23d52edf493616674108a23d375dbf7acd244c2519302244c59 3324 
pantheon-terminal_0.3.0.1-1~experimental1.debian.tar.xz
 5814fc97f758c3d9c71cc6abf888e3bb44c33f482dc641e1e818e25869728ce2 66106 
pantheon-terminal_0.3.0.1-1~experimental1_amd64.deb
 b61b6b0e1dcf75229828e644853823de79ad1e57d5937f358d111bebf6458431 78544 
pantheon-terminal-dbg_0.3.0.1-1~experimental1_amd64.deb
Files:
 59e29044e43fc66f30bddd6374005f2f 66106 x11 optional 
pantheon-terminal_0.3.0.1-1~experimental1_amd64.deb
 1c3de64ff8a2148045d415d993847615 78544 debug extra 
pantheon-terminal-dbg_0.3.0.1-1~experimental1_amd64.deb
 bfa75fb8f03ae1242ffa9e1fdefff70e 2053 x11 optional 
pantheon-terminal_0.3.0.1-1~experimental1.dsc
 70e09ceccb4f0bd8e0b9212cc7c61051 70931 x11 optional 
pantheon-terminal_0.3.0.1.orig.tar.gz
 0e455a8af9a1a77c4ed0d7f91a2cc0a8 3324 x11 optional 
pantheon-terminal_0.3.0.1-1~experimental1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJTkmsvAAoJEHQmOzf1tfkTj+cQAJPtA3ouqZamF8DwL2/UPooa
YYOKrdOc+h+QlXaqNwdnCgy0SHJdETIeF4rg6+aIT5z9TT2Od0pJhn9nj/iwIRAU
kenG/RQHUDID/Mx/VN+KYfdKua7ppzieYvcFRmIUP3a43VLC8xAyLO6vnC9BQk5j
bQbHip4k8qolDzcW+kQKFr9CEHkYT3Iyv0ae/f6sBKW/QU+VBtiCOWS2CRWJHhUW
Mk+aOvm3XmHQMnmwkkr7BdEAaEGrikirvwjjKafesO3StRLciiOpk16jx9LV2JZG
8Onsw+HbGvvF9PjP1fAKYRCr+8j0wtLZaGG2mtI8+JP7k93Dd/ARzadYG9eFmnMU
507xh1qLl/6JKR68jcaO2eaOm/lxCANC1Abrb/kgDvfPAKE22KQ53XSDP5n0CMko
WzQHTy+NcLIuTAiuFzZrEQJMlb04z2hJqVzXLh5+gprXm0CrWjM6cFP0ruWGf6Jj
n4u7sC4IHb70eGVPmLZda72bJ7l9pDaos1a5i/l+fJwVRg7sniwFjslv4bMmwdBa
EBVKepg7zfZwPgusPPiBMIuAaX2QO+YZEXGwk/ZSgbVqYCH1N3GZECnSlO8Xefg/
jbFSP4x/+uHhZZkbH2TRz1dZMgLscZoC54wA8UMmE6De9fETn6DUPUFEXIbCch7N
POKHMNUIFx5QuJcaEH+h
=/VUJ
-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: https://lists.debian.org/e1xomkp-0002vl...@franck.debian.org



Accepted mailgraph 1.14-13 (source all) into unstable

2014-09-02 Thread Jörg Frings-Fürst
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 09:13:07 +0200
Source: mailgraph
Binary: mailgraph
Architecture: source all
Version: 1.14-13
Distribution: unstable
Urgency: medium
Maintainer: Jörg Frings-Fürst deb...@jff-webhosting.net
Changed-By: Jörg Frings-Fürst deb...@jff-webhosting.net
Description:
 mailgraph  - RRDtool frontend for Mail statistics
Closes: 760196
Changes:
 mailgraph (1.14-13) unstable; urgency=medium
 .
   * debian/mailgraph.install
 - Add mailgraph.css to /usr/lib/cgi-bin (Closes: #760196)
Checksums-Sha1:
 4b87327de84c89085e57c877b2412b5e40731c21 1848 mailgraph_1.14-13.dsc
 44dcfed3b107631d0277dc281103911a67213abf 24336 mailgraph_1.14-13.debian.tar.xz
 81ed5bc5341cb682c72356d79cc27d595cea5ab6 33856 mailgraph_1.14-13_all.deb
Checksums-Sha256:
 55c54921fcbf22cc0f724e5d90b52dbeb89f7f0e49c67bcb5b18f1465560 1848 
mailgraph_1.14-13.dsc
 b83ff79ec63c6fad14cf9a04b6ee3e5229c63211827d2b3f836ed65d4a1f1afb 24336 
mailgraph_1.14-13.debian.tar.xz
 2fa78f18d0eeed66d4db787f524ab99f92e0c65c0c501c1b828794a368affa6a 33856 
mailgraph_1.14-13_all.deb
Files:
 aad7115bbddeeadde39addc093a91449 33856 admin extra mailgraph_1.14-13_all.deb
 9a994f877ace71fb71d2e4adcbcb3b9f 1848 admin extra mailgraph_1.14-13.dsc
 afdf84231339d0064d5bfe20c3b395cd 24336 admin extra 
mailgraph_1.14-13.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUBbCSAAoJEN5juccE6+nvT3UP/iJKHoEvEi+1bqTSGiRP7Rf5
ZD5Kx0CMj/wfXLAvmPp0hCa9iJc8Sgdx47NdHVLJzSEIbbo4rPnjnhqNEO9FJfJ/
59/WirI+ECFBbdSVpIWisYyFenp/CAVFornMhubjnuT+alQV+jFCcGtk7dkc9JAB
0p6DfK7TpV9JRfN4t1AhYkRAsTgNfO7oMzJ0jw7ehEEJQY+EcPKtUunmXipRIqo4
/KGtQiZyVwOVyEiqapXFl3sJ3U1OGBYD4Y3nkcebOfWU0vlAoZsEbCjbmRkBgBiM
bYt3G0zXqn/7aFYi/MvflycSmQSEKz7Zv0Eo6dak3FrI4C+3PDVgWpPvoWwqK9tl
rp3q5j2bAX1KQiOfWGzIvs+7J9o0z9TxXTm+owzioEJPvGhUBNGLf7GGzF6xJFvZ
rGeDbCyWk/Gh+FVlz0ZAztFeRS9SDesL37KzJIs38cA8/3caNeGghNkzEuMvs6DW
Nk8Ks22t9yFINmGlqmaHdQPNBboufQ//q1CSuFlp9aPjtOhXazSh8PfwA5XcrKNS
vmNpiVgK92SVpIGwPVo8tn0TTP/V3sbTEG94gytSaz4e1dcJ+h033RVmAMcdiZqF
uNOjoVzz0Tv7g1yvPTqtup4KdCInVs/3r1l9TBGsgOW4qj2yb+YP6JE2Mqz/A/Us
UMgCrgDWJ8Q3q6dFcgMW
=kkaR
-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: https://lists.debian.org/e1xomok-0003gt...@franck.debian.org



Accepted mozilla-noscript 2.6.8.40-1 (source all) into unstable

2014-09-02 Thread David Prévot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 01 Sep 2014 22:15:57 -0400
Source: mozilla-noscript
Binary: xul-ext-noscript
Architecture: source all
Version: 2.6.8.40-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Mozilla Extension Maintainers 
pkg-mozext-maintain...@lists.alioth.debian.org
Changed-By: David Prévot taf...@debian.org
Description:
 xul-ext-noscript - permissions manager for Iceweasel and Iceape
Changes:
 mozilla-noscript (2.6.8.40-1) unstable; urgency=medium
 .
   * Imported Upstream version 2.6.8.40, and upload to unstable
   * Refresh upstream changelog
   * Strip away garbage from patch
Checksums-Sha1:
 30d36156a9f4c4390314e71543b7d49d69629297 2105 mozilla-noscript_2.6.8.40-1.dsc
 d928cf8ab2b151711c0183c5f477b486c433e936 430752 
mozilla-noscript_2.6.8.40.orig.tar.xz
 6edca56431dd2aa50dc62f3192d5b0fc81ebebbe 120416 
mozilla-noscript_2.6.8.40-1.debian.tar.xz
 f469f947d7653eaa4c33eac655ce2a08b388effe 752748 
xul-ext-noscript_2.6.8.40-1_all.deb
Checksums-Sha256:
 6f7029afad20340e881d256e98eeba78a214357e76a5fba2bc54de5e527abc4d 2105 
mozilla-noscript_2.6.8.40-1.dsc
 8e4d1bd0c05ab8c01e9ba1542536a4fad3e818d4aec0a8b0153982753a919f38 430752 
mozilla-noscript_2.6.8.40.orig.tar.xz
 fed95ce5e21bfeeab29dcfb161599a589ff8cc676a0b0a0f1830417f4eb6ad23 120416 
mozilla-noscript_2.6.8.40-1.debian.tar.xz
 9dafa6d78204961cfb8a2e6a75038a837816e26ed4f7b469bf8beb96d39d3612 752748 
xul-ext-noscript_2.6.8.40-1_all.deb
Files:
 7971940916cd567eb234adc84f325ebf 752748 web optional 
xul-ext-noscript_2.6.8.40-1_all.deb
 d7a6d55b93df5ab5b6c93acc1fedb3dc 2105 web optional 
mozilla-noscript_2.6.8.40-1.dsc
 38819548fc2bf3a86fc356efe9d88670 430752 web optional 
mozilla-noscript_2.6.8.40.orig.tar.xz
 e9b4c133bc1bd3268070525fb1ff20bd 120416 web optional 
mozilla-noscript_2.6.8.40-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBSpeAAoJELgqIXr9/gny5ZkP/iL2kGdtqEc98mVQQSSZUY53
jGUY6kQxnOCcUu6Fiwfjiiy5WrEfrAkHuNgfxEDWO+hKTaHycbeXxf2A49gGGUHI
dJl6CeoQz2YCcluhRmxG/oGFsc1ZJEmRl5Y5xlgDyXqWqXWMQ5OJPHhTMNN2uJK7
xcvmU+4N+1E5/fF33p8WdAnjCpkNaRqsZAiYQC80i+JYur/h+BqbBcUAmY4o40Mv
sU0aef+OVEEikr0Dt/pucVRDaVEvVFE18DcplG2JtPtNtmCMnxEQUcYOA4U3v3ea
lYM+mGdVL0mthplE+34Rja9Z4itVcgr9/OUVGgXtATwPuFLyiSiGLqUvFPZc8AGB
35wXmXjxun7b4dWsl7V2CiNoSYxkqRrdRNig7omWHZHML0qLngGwnYC8/ZP726hp
5XSMr5TUxj70by1WgEywrFUBIF6k66JZoYOpGIr5KBgY8hMlxLdtPPeS3PAp0hLO
zC3tvGWs1ar7He6/RNZCcqbIdRyktS/dU5Sn1hxdWkINLsPWERweVd0BgOBGLuNS
gZ/NTM6sdIVI4UB+QyH2bh1Z+OGjPYHNmvTF1TKjgsmuMDSjKllmZ8eqybhqQi12
Iv7v1pR8OA99njyg/p1QQyPnwVrbcjV/wfewGC9vmrCJ3FsL6XPqtHmG1F2oG0NV
La+QrgyJYqtP/Av3E4Gn
=cTiy
-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: https://lists.debian.org/e1xonhj-0005uf...@franck.debian.org



Accepted pygrib 1.9.9-1 (source amd64 all) into unstable

2014-09-02 Thread Alastair McKinstry
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 01 Sep 2014 13:51:37 +0100
Source: pygrib
Binary: python-grib python3-grib python-grib-doc
Architecture: source amd64 all
Version: 1.9.9-1
Distribution: unstable
Urgency: medium
Maintainer: Alastair McKinstry mckins...@debian.org
Changed-By: Alastair McKinstry mckins...@debian.org
Description:
 python-grib - Python module for reading and writing GRIB files
 python-grib-doc - Documentation and examples for Python GRIB
 python3-grib - Python 3 module for reading and writing GRIB files
Closes: 760130
Changes:
 pygrib (1.9.9-1) unstable; urgency=medium
 .
   * New upstream release
   * Move to Standards-Version: 3.9.5.
   * Move python-grib-docs to section: doc
   * Fix spelling mistake in description.
   * python modules now depend on -dev versions of libraries they use.
 Closes: #760130.
Checksums-Sha1:
 9cbc51a749e5a9e183f3fe782c1dc709136d1873 1979 pygrib_1.9.9-1.dsc
 406ac9af5d522f67349136f35b8804920598a640 18826600 pygrib_1.9.9.orig.tar.xz
 5fa8374bdabbd7b78b6491644042f13e2702dbcf 9188 pygrib_1.9.9-1.debian.tar.xz
 52900854230109068daabca97b06bc196ee4afc5 176162 python-grib_1.9.9-1_amd64.deb
 0b2b168e6252e1aac720e6846351bb613f3c147d 174556 python3-grib_1.9.9-1_amd64.deb
 719ff64aee23b0b3d142abd040f9aa2c63dd430e 19110628 
python-grib-doc_1.9.9-1_all.deb
Checksums-Sha256:
 f0a30fef8520af079c2e43e30170a956b5554f5a8d08ac34d2edcb698b49e89b 1979 
pygrib_1.9.9-1.dsc
 787165c494acb8db41d2dc6f00386a0d1a5c6e552429727f6fd37b040ed3e69a 18826600 
pygrib_1.9.9.orig.tar.xz
 1106832825b66a27de711ffbfd4235a4c0b61b3ec10a63affd07045978e11f8a 9188 
pygrib_1.9.9-1.debian.tar.xz
 50f749520cdfcaa87f305668f4c86a961bbf0aff2d2b62ea4fccf72c30e4d28f 176162 
python-grib_1.9.9-1_amd64.deb
 c0c5050f878e57f80e0c5b88a3d23d021cde4a22b2f0432146128fb6e78cb391 174556 
python3-grib_1.9.9-1_amd64.deb
 364348a1050d1401e9fe05a2865963fecb666480c7f95dc00a6e61e39328ec1d 19110628 
python-grib-doc_1.9.9-1_all.deb
Files:
 956b5aa97d80d57a43170abb76321aa5 176162 python optional 
python-grib_1.9.9-1_amd64.deb
 ff4a2de69f9e9fcd168784dac05e643b 174556 doc optional 
python3-grib_1.9.9-1_amd64.deb
 a2a475c0d7c007dd639bf1891ba6922c 19110628 python optional 
python-grib-doc_1.9.9-1_all.deb
 9ed337767ab5fd1009f2b955953d81cb 1979 python optional pygrib_1.9.9-1.dsc
 d8fd7d0ded743ee163451b91253e1f8b 18826600 python optional 
pygrib_1.9.9.orig.tar.xz
 eb3cc903d088d1e03bb9ba9a797c1e6b 9188 python optional 
pygrib_1.9.9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBbX4AAoJEN9LdrZRJ3QsEbkQAJRH2LvIziXRw1VNh1NHNGLA
aJF10EBWSNzWSrZHPn7q7pz49p3PHiNcbQ/V8yNKxoWBCy5P0DEGO9wWXZt4eWdB
r6H94OAm/BiRWPZTXYJG9MkfbrVRRHeZI3k6L0BKEC4so0QZHR5mjaWOrxvLo41t
oEYBxzHw2btPNSG6IdNYWzWPhq1Gg6zVP8PE69sybmVDssd6QImaxp80Ssj/iyYH
+L/oxdNuT6VCMwDdTIlvMKz2BjPHvgsurNU3FKu+4CcF7tTwdAUBEnq0Mkkf75+L
1Z9uo5pJaah74JX87OIbb8bpiJIcePpeQ5OH4gqCVQm+yjjV5+Q2ZXsr2AKb7opX
gpp6yHRUGhjLp7p/wBzb1EHNAGGv56fU+wR2WYZWBp4Aapy2x6z8umgHz22SCBls
dSn1fQ012azv4FER7/tCYd3dg6Fq15iG3dqkCtHsYBTB68gsllMdBo3DV9j1I4wY
kwYJIWHFZdheRpoMF3h7ZQ/1aFmgZchEZpVKxlVICLLdopU9BzzwnsDs23TUQD90
ZopOivdBM2yaBW32C+uFsKujBlVuhmTfd3hkFrTqzM6gV47EUJ/+g/ljQZVRg5EA
TjlUcJUNqMheZy2wSbl2VIoOeoG/CAXkhro7QYyyjXDOAzH63JNYdEOMOAs0A2d3
mAkv2EYvKlHYwN2hUJXq
=o1gk
-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: https://lists.debian.org/e1xoniv-0006az...@franck.debian.org



Accepted openscenegraph 3.2.1-2 (source all amd64) into experimental

2014-09-02 Thread Alberto Luaces Fernández
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 01 Sep 2014 18:03:23 +0200
Source: openscenegraph
Binary: libopenthreads-dev libopenthreads20 libopenscenegraph-dev 
libopenscenegraph100 openscenegraph-doc openscenegraph openscenegraph-examples
Architecture: source all amd64
Version: 3.2.1-2
Distribution: experimental
Urgency: medium
Maintainer: Loic Dachary (OuoU) l...@debian.org
Changed-By: Alberto Luaces Fernández alua...@udc.es
Description:
 libopenscenegraph-dev - 3D scene graph, development files
 libopenscenegraph100 - 3D scene graph, shared libs
 libopenthreads-dev - Object-Oriented (OO) thread interface for C++, 
development files
 libopenthreads20 - Object-Oriented (OO) thread interface for C++, shared libs
 openscenegraph - 3D scene graph, utilities and examples (binaries)
 openscenegraph-doc - 3D scene graph, documentation
 openscenegraph-examples - 3D scene graph, examples (sources)
Closes: 757106 759593
Changes:
 openscenegraph (3.2.1-2) experimental; urgency=medium
 .
   * Fix FTBFS on FreeBSD.
   * Enabled multiarch.
 Thanks to Saikrishna Arcot (Closes: 759593)
   * Updated debian/copyright file to machine readable format 1.0, and
 addition of missing license from file AndroidExample/EGLview.java.
 Thanks to Thorsten Alteholz (Closes: 757106)
Checksums-Sha1:
 f30dcbb147c862ef9c0111c4c507862964325caf 2852 openscenegraph_3.2.1-2.dsc
 7a141a5d43f5e3735d6a5b02a13be3d9539e85ad 18912 
openscenegraph_3.2.1-2.debian.tar.xz
 dd8d7076c076feb9105b0bcf19656995195fe0d3 83312 
openscenegraph-doc_3.2.1-2_all.deb
 f3f577cc9a954db9d1e246e87a9a1fc810b8173c 466778 
openscenegraph-examples_3.2.1-2_all.deb
 a9e5cd56799ae8c7d78395188ac2c54ddf663ad9 19584 
libopenthreads-dev_3.2.1-2_amd64.deb
 22d037526da972d3f49f9b067c69cca18c1705b6 20462 
libopenthreads20_3.2.1-2_amd64.deb
 6c91dcdd96a92b88d449cffefcf1d6f5aab70056 451436 
libopenscenegraph-dev_3.2.1-2_amd64.deb
 d89b772999d3b1dd01a557f609a36c42f221c557 5649858 
libopenscenegraph100_3.2.1-2_amd64.deb
 5b47ed3341942e74f02f366f09636c9b974609dc 1619252 
openscenegraph_3.2.1-2_amd64.deb
Checksums-Sha256:
 a1a69cffd5e9f14c39d10ac3a66275264e8b9cd3e3dd83fde580ed5bcfb0fd82 2852 
openscenegraph_3.2.1-2.dsc
 e3d0f776640cb24de9cf0bd5f45a19c3ed5e6a359ffe17f17ee4230ca63de7c9 18912 
openscenegraph_3.2.1-2.debian.tar.xz
 35bdd43cde2847ddafb29720150197be5cfd4bd357339991fdd2a0eb24af7840 83312 
openscenegraph-doc_3.2.1-2_all.deb
 442fe8b8489702db64b47407d83c06c63e3028af5885d37a08c904e294fe6a47 466778 
openscenegraph-examples_3.2.1-2_all.deb
 38193819f5ec7940c89c23c2ebd62e8fcc15e5dd5a6db340d0072d80b8d323e9 19584 
libopenthreads-dev_3.2.1-2_amd64.deb
 8a21cef5c9374e658b6a75c15be71deb76b0031bb71851e076dd6c286ed6658e 20462 
libopenthreads20_3.2.1-2_amd64.deb
 7a22d77752fdb0098eb5eeb036ae3a8f02516f80970803990e67fb6dd3200f65 451436 
libopenscenegraph-dev_3.2.1-2_amd64.deb
 d8443ce5d8b77db9960df0c84a233b17dcac0bb919c6827ac39239439b2df6a3 5649858 
libopenscenegraph100_3.2.1-2_amd64.deb
 a7fe67359db7b5241f06089b50fbca43af3795b3bf468ef022876116b57223fd 1619252 
openscenegraph_3.2.1-2_amd64.deb
Files:
 673f8f950c1ea83d1b50cb9a7d8de0ad 83312 doc optional 
openscenegraph-doc_3.2.1-2_all.deb
 e9f7fe08f4ea03bd8afa5de525464b0c 466778 devel optional 
openscenegraph-examples_3.2.1-2_all.deb
 c790bc6ee15a1625612735d07b199900 19584 libdevel optional 
libopenthreads-dev_3.2.1-2_amd64.deb
 93f306476b49b515da767f7574b9f590 20462 libs optional 
libopenthreads20_3.2.1-2_amd64.deb
 2e461cc6b30fb0540c4347d182e907d3 451436 libdevel optional 
libopenscenegraph-dev_3.2.1-2_amd64.deb
 2dea55a5316636812c0b0d1172362615 5649858 libs optional 
libopenscenegraph100_3.2.1-2_amd64.deb
 579de9abcae11b541d9ce976b123af90 1619252 devel optional 
openscenegraph_3.2.1-2_amd64.deb
 03a1accdaff349a612ae253cd5ff9f1a 2852 devel optional openscenegraph_3.2.1-2.dsc
 3b426864cef9821e101e869308b1a008 18912 devel optional 
openscenegraph_3.2.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBbV2AAoJEJsua4J1LbA7WuYP/jp+mccbSr2vP7HpAhA6oE9d
1bqDmv8nhHvZnynnpnMNHnES/bcIEpEoIUt7UXfoBCufho0imP5ZAE8cG/+1R+u1
lrIntsKBQ1gd7db3iT0ByKBt1LuMRva7iI+d1yOisQcaz9gSZw/90/s9NMpq/S8f
9PEFLR7XQH2V5BncdL5HLQPedVEnbMZP8ng22wmKmbGAD/K3UA8eYKH4bFj7CZrS
y+/A+hw9r0a+UPI4Vw4dkJ+8wVVns5eX5KCZRk53VNUCCpuylUcawHULzKpWIAcl
2YOfiGTDaRN5kFdELI/FJiQGUpB167X9QZ/FWiAw6VqySDjnN/sWSmM+ZNdGc5YX
IihRt6PoHVqnZMid1q8bm7jqGgIz0QQ4U3IXXvx/2udbPYZfMGZTRt1vGfjmiKj6
fxFJCiiAmaWzQDTxRPBE42DOr+0IPAmN3rFtEXVewxlH0MO4KiPJS+b3k7xgnNX0
+ySsXQaNl2kSqnF2KDUPpGwo4JP6uxbEhLLMVSr7Gcf/Y103c26j9dARjkRUDq4H
odvuHqbGYt2q86lyfv8ckiWZOptZXmD2iIb2vsIcxGGlTa72QVfhH9AHpeR3C21v
JNVLr/dsi3GytnflRFNvqZgHVVL/0XKymFfu6MeJ9CBKdjGNY5oIz2GB/c0yfMcj
qZMJjl/GFA2dmHAx4yIW
=PnlU
-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: https://lists.debian.org/e1xonia-0006qh...@franck.debian.org



Accepted python-xstatic-angular-cookies 1.2.16.1-1 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 Aug 2014 17:32:28 +0800
Source: python-xstatic-angular-cookies
Binary: python-xstatic-angular-cookies python3-xstatic-angular-cookies
Architecture: source all
Version: 1.2.16.1-1
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-xstatic-angular-cookies - Angular JS Cookies XStatic support - Python 
2.x
 python3-xstatic-angular-cookies - Angular JS Cookies XStatic support - Python 
3.x
Closes: 757783
Changes:
 python-xstatic-angular-cookies (1.2.16.1-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #757783)
Checksums-Sha1:
 dd8f6253838f1f6c1d86bf01b75cbf128cf5ebce 2388 
python-xstatic-angular-cookies_1.2.16.1-1.dsc
 48855ca0cbecaef19cf4880148d4211c2c4e67a5 3728 
python-xstatic-angular-cookies_1.2.16.1.orig.tar.xz
 1e35cb131fd0d2e448b62da2b2e3e1b3153d45cb 3504 
python-xstatic-angular-cookies_1.2.16.1-1.debian.tar.xz
 ba760cd8ac8eef39d207e2ecac9922a5f9246de1 5028 
python-xstatic-angular-cookies_1.2.16.1-1_all.deb
 14110347900a38e4bafe3f1718d0ba7bb38aad54 4904 
python3-xstatic-angular-cookies_1.2.16.1-1_all.deb
Checksums-Sha256:
 ea3c80c8397caca757c327271c9f408a6cb92a7e4312f0d4af71ee44f09bb9a0 2388 
python-xstatic-angular-cookies_1.2.16.1-1.dsc
 9e4c78a23505a6dfbffdb38577271c978494a47b3c22e925d6dac47d790512e7 3728 
python-xstatic-angular-cookies_1.2.16.1.orig.tar.xz
 10b370e69e1273325cab13b6c8f6f8df888f56ac1dc5173619f8bb0a33e27bbe 3504 
python-xstatic-angular-cookies_1.2.16.1-1.debian.tar.xz
 0edf6bcfe0ee252a2656d6e8d408a25a2becb77242781117fff29b852b824ac0 5028 
python-xstatic-angular-cookies_1.2.16.1-1_all.deb
 af8e7ff3f3efb66341d1c4a96d50a3a1f837de747ed9a3be12e4359f9fbe3843 4904 
python3-xstatic-angular-cookies_1.2.16.1-1_all.deb
Files:
 4342792cac68744a46ffdf5817bf223c 5028 python optional 
python-xstatic-angular-cookies_1.2.16.1-1_all.deb
 e27563e973f20f27cb65978789f14209 4904 python optional 
python3-xstatic-angular-cookies_1.2.16.1-1_all.deb
 b9d9034aa7bdbe87a3beb60d93f99587 2388 python optional 
python-xstatic-angular-cookies_1.2.16.1-1.dsc
 592672e0c1230908bf3d76b2a5342aa7 3728 python optional 
python-xstatic-angular-cookies_1.2.16.1.orig.tar.xz
 fe8c7e0f755cffa082b88f0ad8386f11 3504 python optional 
python-xstatic-angular-cookies_1.2.16.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT6JyBAAoJENQWrRWsa0P+8KIQAJdr8cOCChNJ1zfrshjqfRot
xL7OFuRGS4N2CDbHTuvSTMbiLOg5YgOGaVBROihFqGK9nncGgo6UYLwLwebjBvMz
cNJxIa0o75tyLOuWVVqWBXCGo0csB8c9hnLKEeVlU+wInFjGOxuSKQLFPWGLpfT9
ML677L8RgSMmfdAacDxY7yjM00QZO1m7lOC0S6X9VLbdH8m00vj84YbSZ0k5WIsg
+j+DeOMp2jn5dTzoD+ObkqGOe0afW4ge/jTd0KQJ4EHfLjXEdjTDMEi364aoB6EY
pI9oHEd1FkzjzmwYbXZJS/68+V9QRRN2WkcV2fSk3iSEeiZJTh2YYRxPYKmAmJuC
1JbMjYFyUz08R6BEisuWWSvjhgLSIkc311rY6cPKekp6spqYZTHR0wKVnIOuIcoj
9ZCgUTu4dYUL+IE6UMeu9k15LGI6TK178dHJNCplxou3nG8+qYlVVYl2zKQCqG4a
fMJjk1BuZnhIxQc4675dm0NwYaKAzDGBoPbgcFSjbIeciIeszw9EdaIM9sB7JUDw
Vfsyyw/NC0FrceuBdBZYVpBapNy9ViG9Kvf6Sr2ip1RjMsXdaVMtgsPK/gGWNbeC
Axtl2iWNPSaaBNHnbr0iWRO94Tg+ZurbVpTkmbXEHsQEYWoytQ/A6KFYMctcBLel
Nr9Gce0IYH7XT75HJlu2
=5MT2
-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: https://lists.debian.org/e1xongs-0003mi...@franck.debian.org



Accepted python-admesh 0.98-1 (source amd64) into unstable, unstable

2014-09-02 Thread Anton Gladky
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Aug 2014 21:36:06 +0200
Source: python-admesh
Binary: python-admesh python3-admesh
Architecture: source amd64
Version: 0.98-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Anton Gladky gl...@debian.org
Description:
 python-admesh - Python bindings for the ADMesh (Python 2)
 python3-admesh - Python bindings for the ADMesh (Python 3)
Closes: 759354
Changes:
 python-admesh (0.98-1) unstable; urgency=medium
 .
   * Initial packaging. (Closes: #759354)
Checksums-Sha1:
 8b06e2a2a96cb8d0a593da9cb62f0ec21f02978a 2233 python-admesh_0.98-1.dsc
 8cdedfe4639399158154ef88544573f299c46f41 10564 python-admesh_0.98.orig.tar.gz
 c129ed9c0f88843bb908453809ab79d129fb9bd6 2780 
python-admesh_0.98-1.debian.tar.xz
 067223b95890dc39c39407d1e7a25e75b5ddfb7e 31656 python-admesh_0.98-1_amd64.deb
 3f4101723b59de156e6e7499914b19c6726a427d 30720 python3-admesh_0.98-1_amd64.deb
Checksums-Sha256:
 27820f42bf26c235620119d0d4d4786e311e14c0335f8401358ce4f440be5b62 2233 
python-admesh_0.98-1.dsc
 4c1ce9638f58dd8d07905c3e5c646873d1220b2c0bf6337831142735d4d3f6f4 10564 
python-admesh_0.98.orig.tar.gz
 ff630fcacce061c4cebc461b86f8aacc39c83e69db4c2e24a0f97969e47e60e9 2780 
python-admesh_0.98-1.debian.tar.xz
 c48773879446cd91fd386ba54d3160c8057a798a10879356a901bd20589c1774 31656 
python-admesh_0.98-1_amd64.deb
 389cfd5a8f67a847e1a715e7892128e8c9bc3c0802761b36428183f58bbf73ac 30720 
python3-admesh_0.98-1_amd64.deb
Files:
 cc930515b7e3285072e88f6a7e6b25d6 31656 python optional 
python-admesh_0.98-1_amd64.deb
 95497ed8298d7520328b3701b14e4248 30720 python optional 
python3-admesh_0.98-1_amd64.deb
 d384c430cd3d5d72d1e17e01568de885 2233 libs optional python-admesh_0.98-1.dsc
 d8cdbf38f70abc6127ae52eb650eab32 10564 libs optional 
python-admesh_0.98.orig.tar.gz
 077de08b298274caf32c00bd03468510 2780 libs optional 
python-admesh_0.98-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUAi9KAAoJENPhc4PPp/8G5/sP+gLTDomV0tU9cWOHfNb58m5f
17EREj39xjGVVDt+AErehZW5gurGbwxQ21cAXg1sp0SMcjyhAV6CQpZqEGavH9+a
Ik37FuIj48kTeGfmJGdZYnDDD5u6IDWWM/fSZhm+U74PoPo+z+iPDPh/wajsE8Ae
kv3yU1+gtiNL3uADTPWyTm5HgQBaNDiMNB5GsC5R8rdpNB+l5pSH30ZxJKLLm/s4
OcZ9CScYH+d7TUW+xPw+iEhGmuLQhQ0crH68PIc5YTskas91vd7FATcfVTmiyOHE
kq3jSDkR8Rm9pdcYsR0LW8mUaFOTgXRKByZFmVBOuECvVrB3XpKPZ4bsbc2VLGsv
YtNIiM5+1PuHdsQjBczuiHLyBa989BwDdspBCd//2Rj0xywkBwBRVvaot3TQRBbg
hVsRgizzMQ0YPDKZBP0f5jgYWQ+Dr4zQt4WDLVQau3uMTQxMwlzWbrDdg7jruZr2
3kB7F6JsC2c9qysarz/Rzhp3v1SJmmODsytgQ/Yy77BJ3Xee8nRRiNt0u1da4tl5
IY6g1ZIwBsavTtdLNendsaRwoCg75hq2WY3dko+WOc5v0jjR/skjJyYRQpsmkNYH
QQalw/nZ9y5z96l7HSsmV56ZUTUDOvO88edjTECLj6ZJrcXtOYU/HOEJQqKWzpz4
TcdeN76uEC1HRPXSLJQx
=Req5
-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: https://lists.debian.org/e1xongr-0003lz...@franck.debian.org



Accepted python-xstatic-angular-mock 1.2.16.1-1 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 Aug 2014 17:32:28 +0800
Source: python-xstatic-angular-mock
Binary: python-xstatic-angular-mock python3-xstatic-angular-mock
Architecture: source all
Version: 1.2.16.1-1
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-xstatic-angular-mock - Angular JS Mock XStatic support - Python 2.x
 python3-xstatic-angular-mock - Angular JS Mock XStatic support - Python 3.x
Closes: 757789
Changes:
 python-xstatic-angular-mock (1.2.16.1-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #757789)
Checksums-Sha1:
 49adbe44c9afbadf9678b9c16ea454504e2bd7de 2349 
python-xstatic-angular-mock_1.2.16.1-1.dsc
 c86d686f5329f7944c97e93fcfb8d01e5b956c06 16744 
python-xstatic-angular-mock_1.2.16.1.orig.tar.xz
 c770667d158ee6f58324606c087035f1fbebbe46 3492 
python-xstatic-angular-mock_1.2.16.1-1.debian.tar.xz
 d6101185014a22102f4eb2b4e47da1a58a419256 19884 
python-xstatic-angular-mock_1.2.16.1-1_all.deb
 b4ffa899565393abbd1754f16e715fdff714e423 19794 
python3-xstatic-angular-mock_1.2.16.1-1_all.deb
Checksums-Sha256:
 6c1e23f3fb819dce1765bf38b928dc76c64deee1469a0659c052e47c07a1e446 2349 
python-xstatic-angular-mock_1.2.16.1-1.dsc
 1db8597f4cc8d885a1d3da9a991694f7704b3489c1a2c4f8b4497a7d6194ea35 16744 
python-xstatic-angular-mock_1.2.16.1.orig.tar.xz
 b8840c8d260540891716f0b3905ddd79e352d301385cde3d27986d957f5cb52a 3492 
python-xstatic-angular-mock_1.2.16.1-1.debian.tar.xz
 d7ab7274a2a338f8a53be4d5653ec0154be2feffed39841ad630232a0163be93 19884 
python-xstatic-angular-mock_1.2.16.1-1_all.deb
 9dc81f22d4d843a0a2605615c7bc175936711344fab4c2e75cf66f05bb514623 19794 
python3-xstatic-angular-mock_1.2.16.1-1_all.deb
Files:
 69c5ced8b8b97ea873b9ba116b44cea4 19884 python optional 
python-xstatic-angular-mock_1.2.16.1-1_all.deb
 7e501c98343a86d4e2525770a625f45b 19794 python optional 
python3-xstatic-angular-mock_1.2.16.1-1_all.deb
 ae0afee8d57573005f01e6905d9db2e8 2349 python optional 
python-xstatic-angular-mock_1.2.16.1-1.dsc
 6d6d13d7bdb0646367b66e6fa1d122dc 16744 python optional 
python-xstatic-angular-mock_1.2.16.1.orig.tar.xz
 ab8ff33c419e3578e8a16734ad37adb2 3492 python optional 
python-xstatic-angular-mock_1.2.16.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT6KKqAAoJENQWrRWsa0P+QFAQAJBli8ZWfS8UOEa77hzPUnNH
YWuXK4ZYUBEcWCkKA5KCOjpnx6cLp0e+tp18BT8xJBWaWNVeTBoEULurOYrZLXFy
akkN7UGArxvJltSvzT90z7iy4qwxRpnMGbYHkXvHf+NdQQdUMx8HJ1WFOYJlaRq+
WL+zqx3kIxmEIzhdfryzseqarLUT/mLCOXrXwB1YI0S16VbZHjWplncppa5Md7c2
lupqx6+r5nNzGDFjSmYLcwB3JPL5xu60vsnvvHarhgNf8h2xnDl1VoeCmNZ3TJKt
GdD32imQ6t626gIfvtH7rtn3OZ0fdKWTKqtmQTBZOUqK8Tegcmp3LqQunOJQ5O1k
wZRw9wp4q5S0mkmcXCbzDnOhac7E4MxMdKivJL24L7LxKZyAdZpfdjZ98oqR04pm
7paK1Rmrl1hE0GEB4MD9ugRBEIDH4TC4meiEx3NAoFy+JT0+h7j5fcfJkRA//jHl
oYIQBYByW3NCnKYCqKsAaZ+A///RBnwxiyuXeRRf40yaNIeJ4nu48mwG3/TDZuOm
qck+/H0Lm/i9Y8C6XY7iX6HO9oPqoBsNmxK8NrmbGMV+Xox8W1+f3LpdJMXEJsjG
N4AtZNQWjmre6UnWwHNqLzh6hUqmISuxDM1W7880iZZ56Sio5kVG+r2Na5in+LbQ
06JGARFvTfGin1rwyWw9
=a17r
-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: https://lists.debian.org/e1xongt-0003ms...@franck.debian.org



Accepted python-hurry.filesize 0.9-1 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 24 Aug 2014 04:40:58 +0800
Source: python-hurry.filesize
Binary: python-hurry.filesize python3-hurry.filesize
Architecture: source all
Version: 0.9-1
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-hurry.filesize - human readable file sizes or anything sized in bytes - 
Python 2.x
 python3-hurry.filesize - human readable file sizes or anything sized in bytes 
- Python 3.x
Closes: 759019
Changes:
 python-hurry.filesize (0.9-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #759019)
Checksums-Sha1:
 5c56685984fb0a64dc4280504cf3f5d872f0f458 2176 python-hurry.filesize_0.9-1.dsc
 56cd5993be741b2c0ce43c7bb0d851223264f7c7 2810 
python-hurry.filesize_0.9.orig.tar.gz
 102e92de5128a3cbc46a50288bedf61617507336 2796 
python-hurry.filesize_0.9-1.debian.tar.xz
 fe7154091a3748c1af6a2ecfefa84722786e3c1a 5102 
python-hurry.filesize_0.9-1_all.deb
 dde169e655e5b2173a6d3f968940db2580785586 4998 
python3-hurry.filesize_0.9-1_all.deb
Checksums-Sha256:
 e21ddfdb835372e339f26b0e7734db8c9f51e57e07add15e61d4241b4350 2176 
python-hurry.filesize_0.9-1.dsc
 f5368329adbef86accd3bc9490522340bb79260455ae89b1a42c10f63801b9a6 2810 
python-hurry.filesize_0.9.orig.tar.gz
 4e041f30748dae07c8af03d0e7638cac0a1c152040cb829a3aadd7d67df00550 2796 
python-hurry.filesize_0.9-1.debian.tar.xz
 1cec58177956660f5cfc457e3014a9e043bf46b1fe47e0eb48e7b915d37524f1 5102 
python-hurry.filesize_0.9-1_all.deb
 7284fc18db2d7e9f9f187b7add94fccbfcfc916d931e8f1ea689c4eaf570e8f1 4998 
python3-hurry.filesize_0.9-1_all.deb
Files:
 de85d30743609ba1eaa8d4a4af9d0dcb 5102 python optional 
python-hurry.filesize_0.9-1_all.deb
 9e0590fbe0a94d7081bbb3158bad3377 4998 python optional 
python3-hurry.filesize_0.9-1_all.deb
 8a4ffd51f54eca57d6a487c874864d7e 2176 python optional 
python-hurry.filesize_0.9-1.dsc
 8549ccd09bb31b5ff1e8e8c1eacc7794 2810 python optional 
python-hurry.filesize_0.9.orig.tar.gz
 e1fdd9333088a4d2b66a6aa6d830b5c6 2796 python optional 
python-hurry.filesize_0.9-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT+QBKAAoJENQWrRWsa0P+cXUP/3EgT36b4vUynxiQKUNloFE5
aThly3qPI8bR+x9UtK1UX+CM/pMU43EWg8qv/XoZ69lKDn7Rf6aCMG+sRoGZO292
dz/4ic4lS0fOBxnXZCsD4IDsIcttwHDermFvLIbOUxCoUNa88cGANca75cfiX2D7
m+ev/tIzx3Gf0dz+N/0+mJZgH5hrkczqzmgXumWGE7x4EsEyzlmI13pYe6Xujhu5
F1pU39wuyMakxIjHc5you7WCJEeLXc44OW//fc9F3g1NLYbiVeBWKoAPsu4dpp/E
OP6i7xthT5ww6PWyUdJ/etm6hpl6UfZ4oSM0Swj/MychgKYScbxWPwApub7AWCjf
Y5ThEV6suIxyAsKZZoWL3DFlSPIyMrb+LHx0TXyLdD1QUpBiQfD752XVzfeFnnf5
5O6Ik09MhzpF4+pVxhioabC498Ei3Bnm62U+3vadApNBmMwMFGa0/TMk3DEZpDYq
8GXsYGxz67gXGvxolttvtkICei+ZAurCU0pMPA0h/K2xDqYQIqSxWPHyVdBhyzMU
4VcTPqCN+UIa+rxs3z6i4Cjxfywahsr9wvmCktiZ3r5RRd0y4ys3y43G1ERCMoaL
T/JO7R/et/n6hdPkUG1Al0DMcJlSRisxtZ+x8TTWBwDnWuzcwssf+Co4/p/c9QyR
bzaIyXeTIe7ejcIpiORM
=Gkh3
-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: https://lists.debian.org/e1xongs-0003m0...@franck.debian.org



Accepted python-xstatic-bootstrap-datepicker 0.0.0.1-2 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 14 Aug 2014 00:21:14 +0800
Source: python-xstatic-bootstrap-datepicker
Binary: python-xstatic-bootstrap-datepicker python3-xstatic-bootstrap-datepicker
Architecture: source all
Version: 0.0.0.1-2
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-xstatic-bootstrap-datepicker - Bootstrap-Datepicker XStatic support - 
Python 2.x
 python3-xstatic-bootstrap-datepicker - Bootstrap-Datepicker XStatic support - 
Python 3.x
Changes:
 python-xstatic-bootstrap-datepicker (0.0.0.1-2) unstable; urgency=medium
 .
   * Updated upstream VCS URLs.
Checksums-Sha1:
 56c754282ee09d3f4aded6ca1aea6185feebe6e9 2450 
python-xstatic-bootstrap-datepicker_0.0.0.1-2.dsc
 497f18564dc2b7513f59cafffb5bb2c73b5156b8 2784 
python-xstatic-bootstrap-datepicker_0.0.0.1-2.debian.tar.xz
 40e17f0dfd41556c5719f9efa2d2827ebf609876 4966 
python-xstatic-bootstrap-datepicker_0.0.0.1-2_all.deb
 1b5dcb3af143eade9c03469af674979bb0bc8df0 4776 
python3-xstatic-bootstrap-datepicker_0.0.0.1-2_all.deb
Checksums-Sha256:
 f2728222e0bcb39c73e70587dcfc0f4a701aca4adab0ef7af54bd14292523134 2450 
python-xstatic-bootstrap-datepicker_0.0.0.1-2.dsc
 cb2587bdca03eab8e4a961b0148a2e4c9dff5119950687cc409e35e299404496 2784 
python-xstatic-bootstrap-datepicker_0.0.0.1-2.debian.tar.xz
 5eeb74a323faaa3bb3d7b2cac9c34c23abe05043a5134914a5c06080d1b58f17 4966 
python-xstatic-bootstrap-datepicker_0.0.0.1-2_all.deb
 44e4d5706c43d4423ecc33a7094062067e531d0546fd7cd163af084c5ab16c2d 4776 
python3-xstatic-bootstrap-datepicker_0.0.0.1-2_all.deb
Files:
 71ee4f9e0ee46a661a4ec0e9f96f3db7 4966 python optional 
python-xstatic-bootstrap-datepicker_0.0.0.1-2_all.deb
 3c9909f41303193c906085f5bcaf0264 4776 python optional 
python3-xstatic-bootstrap-datepicker_0.0.0.1-2_all.deb
 69a27e6b34b7b32a90acc9d295dfdb66 2450 python optional 
python-xstatic-bootstrap-datepicker_0.0.0.1-2.dsc
 d201da04ced8922658207de64c45f912 2784 python optional 
python-xstatic-bootstrap-datepicker_0.0.0.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT65ECAAoJENQWrRWsa0P+am8P+weZI5FZAVyssc+jN8bGarla
1vz7PCQgz+xtNZOa9OCvXSwfIHOcdVQsTdqVtMypGMkwCDsP0LwH07DgdZTsItwx
WTKIeaehive4uwUeqAZQwt/liA4BDtmBn2RBYrvh6arOOMYe8NdU5K54W4xyRw6U
i/To7WnTWZefRTn/cmM+6ensRs3514zwHuaHI+Swm0HLzKSeWEc3WFfwuQEYi06U
n+3lLph1ttEKmBuCCZqeUbA9tQP7OWUN+m15K+0OUuZCgww7yMINT0nlOmtNjcoQ
BEYi+zykgQo2IZBIL1VW8/T7R7pvHSOJTQhmtJoBPd28/W0FU4JpjLZqrl9jhW9J
K925PdUZLVbFkhhQRVHaPTSNKCYF8iFkcPF8fIvHTddOWnabfDSVH/T5MIwoGVLU
GyYBqamTW7ZIKn0xETp6rknCHFMnA1A/65yyEvAr2oSoIwELak561tewvLNreHNj
sozhXPZIuYk6rYa8t7T4dwyCkTp6unY/o/eY79tY6HXJO9axU9Jga1OLdH5KNIml
VO4oGXORlsQoy5yJUKjh4QF8WigEX32vAuT6IvpAwx76INFinzsj5tfQAs7Kgpyl
NxPxMClmlRiKKE2s9O1okG4ijPq9xMnmn5Vzn9c+iedI9Y4ObHmEa0ykBhUmVbmt
mZvK2h2iU/6HuvGHF1FH
=8BSm
-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: https://lists.debian.org/e1xongu-0003nn...@franck.debian.org



Accepted python-xstatic-bootstrap-datepicker 0.0.0.1-1 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 11 Aug 2014 23:52:07 +0800
Source: python-xstatic-bootstrap-datepicker
Binary: python-xstatic-bootstrap-datepicker python3-xstatic-bootstrap-datepicker
Architecture: source all
Version: 0.0.0.1-1
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-xstatic-bootstrap-datepicker - Bootstrap-Datepicker XStatic support - 
Python 2.x
 python3-xstatic-bootstrap-datepicker - Bootstrap-Datepicker XStatic support - 
Python 3.x
Closes: 757824
Changes:
 python-xstatic-bootstrap-datepicker (0.0.0.1-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #757824)
Checksums-Sha1:
 52dd94905f8d17a7005db4cbcaa235ff0956971a 2451 
python-xstatic-bootstrap-datepicker_0.0.0.1-1.dsc
 94e9e475a1dad7c28bb021d9a0a186b48b0ce623 6744 
python-xstatic-bootstrap-datepicker_0.0.0.1.orig.tar.xz
 c972be12c7ca6be1d7217dc4564566f39ff0cff2 2752 
python-xstatic-bootstrap-datepicker_0.0.0.1-1.debian.tar.xz
 6de6b3f38325dbaf4a4340cfb249aaa3d01fff08 4902 
python-xstatic-bootstrap-datepicker_0.0.0.1-1_all.deb
 16d6c98d106ea04c3294f39cc300050191c2f44d 4726 
python3-xstatic-bootstrap-datepicker_0.0.0.1-1_all.deb
Checksums-Sha256:
 e56f82f25f811828bc065eb35051ab86e4ce67a14f89b4aa6ad8c9d5d44a 2451 
python-xstatic-bootstrap-datepicker_0.0.0.1-1.dsc
 d2a72cc5eebb9a12941f9aa2f2ce4b6346df5201ebab7e27a5d653fd6c0afef4 6744 
python-xstatic-bootstrap-datepicker_0.0.0.1.orig.tar.xz
 3fb9e2618f48eea28211651e4f503ae7d7521a3dc5fa7b19cfc8fb7b44b57c6d 2752 
python-xstatic-bootstrap-datepicker_0.0.0.1-1.debian.tar.xz
 c2598d55e677e63fa93b47cab773dc19201db4c3ea2134c5f88dd08ccf92d6f5 4902 
python-xstatic-bootstrap-datepicker_0.0.0.1-1_all.deb
 d1eb4d71403769676b9f0746972655f84f25d04efbe954db66d96505ddf7806a 4726 
python3-xstatic-bootstrap-datepicker_0.0.0.1-1_all.deb
Files:
 204f49795e36ddfd4b3a06fb043e761c 4902 python optional 
python-xstatic-bootstrap-datepicker_0.0.0.1-1_all.deb
 5c98f10e0b3fdb50b2556165a3be645d 4726 python optional 
python3-xstatic-bootstrap-datepicker_0.0.0.1-1_all.deb
 0f29f64a2ece416dbe0872b697c14068 2451 python optional 
python-xstatic-bootstrap-datepicker_0.0.0.1-1.dsc
 dd08ca7761643d72d142d49a1b9ca5f0 6744 python optional 
python-xstatic-bootstrap-datepicker_0.0.0.1.orig.tar.xz
 521767630c404cfee63030b734a8803e 2752 python optional 
python-xstatic-bootstrap-datepicker_0.0.0.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT6OvwAAoJENQWrRWsa0P+BtcP/3pOtm94a8FhNQgekIOk5OXx
bLLoRO4zwl/kMBViNlGj+2q0FrTiwL6oReQj7SAniZeYthuLMgZ9z9h4A3LUQ9OU
4wZua+6ThdkPP4OTklEOb/2qpEwOtEIjTQCpiqqhkVdcIE0/IAsFf9otzgSyOzdY
Y87uQqPThpmz8lRg811GtvOQo2z/djZj2uJ0yWiLAZvJL8PD25DPCs0FHGNxc/Jk
biPs2b/5YtlO08MaYpotY07ewzSyyl8JluegG1+IOfnS5ZgyhxAAoLBUsF9xHzWX
qJOv2AcH45mLSI3nEDLk/GC5shDb08S6PKWa1Hge4gv5Q6J5/JefoL5Pq+/HQW8m
P0s5h1s6QJ8Vl+aZv7hfke4EividLg9cmC6CCshw/tm/YjQqwi0A44r2OLrVnZTd
IF2b/XhXcJSu7oGMaxKhCqk3CdvIiQg1wOg+eTAcsS3QKa7uvO0Yx7tz6BaQ6qdG
bjOfxniCTxEwKX6ZdkdylZep8AI83qk/jlLjVdg5lvF9p8A8ZbumAFTZVV32vCwz
pHU0na190x0KhrLAZzKBzGD7c+u3MAEpbgJnE6y5yV9+IpFZITWzlZlh2v9J7F2E
Af2f2oVmAFAcWCI+iVcZoPsf3VY25x3Km/RkcnHM7S/IQH8mjcn/CdePUmuQOrau
2z7mhgPgJaSsbnWNW51x
=BGUt
-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: https://lists.debian.org/e1xongu-0003ns...@franck.debian.org



Accepted python-xstatic-angular-cookies 1.2.16.1-2 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 13 Aug 2014 23:34:43 +0800
Source: python-xstatic-angular-cookies
Binary: python-xstatic-angular-cookies python3-xstatic-angular-cookies
Architecture: source all
Version: 1.2.16.1-2
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-xstatic-angular-cookies - Angular JS Cookies XStatic support - Python 
2.x
 python3-xstatic-angular-cookies - Angular JS Cookies XStatic support - Python 
3.x
Changes:
 python-xstatic-angular-cookies (1.2.16.1-2) unstable; urgency=medium
 .
   * Updated upstream VCS URLs (now on Stackforge).
Checksums-Sha1:
 f30347a31662919ed27850225db520d03b408ea2 2387 
python-xstatic-angular-cookies_1.2.16.1-2.dsc
 669360026820e499524a5ebc3a1914dda9427836 3544 
python-xstatic-angular-cookies_1.2.16.1-2.debian.tar.xz
 aca6a2a2dc90fda4649bfe75d1e1b41456beb102 5092 
python-xstatic-angular-cookies_1.2.16.1-2_all.deb
 d34623e03278cb1971851ab7eb7bc4e41baca057 4976 
python3-xstatic-angular-cookies_1.2.16.1-2_all.deb
Checksums-Sha256:
 556b0976776064a921cf3611631f11a3afdc3f0f0fd284261a11580554868b51 2387 
python-xstatic-angular-cookies_1.2.16.1-2.dsc
 2d7f8fe6eec547ff6640cece5801e533e655e627695e1b4d9cfbed43167507ff 3544 
python-xstatic-angular-cookies_1.2.16.1-2.debian.tar.xz
 7c6a57d4f7ca9a99cfef32af1cd51d7a6f4d11e2587f125b8ad03a8d6bb7aef0 5092 
python-xstatic-angular-cookies_1.2.16.1-2_all.deb
 1e5d1f34101f7ec02893f78867b5106c516403852af6e90686ac14586ea69207 4976 
python3-xstatic-angular-cookies_1.2.16.1-2_all.deb
Files:
 3272592999592358b9fa1f14ec042e71 5092 python optional 
python-xstatic-angular-cookies_1.2.16.1-2_all.deb
 bbcac6fa1aa3167e0595204dfc022426 4976 python optional 
python3-xstatic-angular-cookies_1.2.16.1-2_all.deb
 fcb0bb7a253d05cb94d2c8b166c59bd6 2387 python optional 
python-xstatic-angular-cookies_1.2.16.1-2.dsc
 982674f2de31f9f551d238b56e8ecb88 3544 python optional 
python-xstatic-angular-cookies_1.2.16.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT64ZbAAoJENQWrRWsa0P+iwgP/i4tbdZ8O8Yof2vMAeoH4JLR
hLk7llrhyRT0ch2k/JDYVrpgD2Hf20fI7s7ZQmGnnkawtJ+YhYRpTCTEqNezYh6d
eKnIes750MNTUSI7wzpQ/tfsMCtRoUNe9jN7nn5xwNZR83OTDcUApNDsXEv1jaym
iAwUVQG8OeM5BHpkkAlshWUYRxfqeplkSLf5o1eVsOH75OfnVYeL7rG/CHeQ99fN
I+sWmK9G0qRrN7yzc8hH4jRmhKfSlHIfqJ31m0iLB5mdy80WNIGzRI+cgmCUfPyq
Ms4ju4g5TCBiBZYhpFk+g4Yj2Exu8Tg6WhcoaOWFbE5Ge+UHNqJOYm7DRvYATwE/
8GURvG3Jw/KR7MyUBIvz11Y9n3bLTHVPHEBYIJWznGUxOdutmnlYob+VQhmRmoqv
ncoAetWHnC6w5UbLrlYOuLW3xjRotYvEbblyzqsVHQnwYQsUH3EpYSXEmk/U+kFH
AqOXH/JQncSdz1yOp3jsBmqYl+smmznkiyuT6jDdWW3xPDbUqe9ngl0hXPmD4kEM
J+pm3iUE+0G12nCJRjvmZfFQAfG+ybufy2MD+IUUE31HQix8Gwj+n3wp7tDUPF8I
m6fnUUCJ4gihrLL0Lm5c4SseKNOWHP+pHRtE/m1JQYqZEpkofS/+B7+PD6ipO9Fa
iLbWjkT+bagh9IhxlmHF
=weOW
-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: https://lists.debian.org/e1xongt-0003md...@franck.debian.org



Accepted python-xstatic-angular-mock 1.2.16.1-2 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Thu, 14 Aug 2014 00:03:11 +0800
Source: python-xstatic-angular-mock
Binary: python-xstatic-angular-mock python3-xstatic-angular-mock
Architecture: source all
Version: 1.2.16.1-2
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-xstatic-angular-mock - Angular JS Mock XStatic support - Python 2.x
 python3-xstatic-angular-mock - Angular JS Mock XStatic support - Python 3.x
Changes:
 python-xstatic-angular-mock (1.2.16.1-2) unstable; urgency=medium
 .
   * Updated upstream VCS URLs.
Checksums-Sha1:
 021f784bf5659255a5f67190ea43b9ff81addbf5 2348 
python-xstatic-angular-mock_1.2.16.1-2.dsc
 4b137dbc1e4cbd5dfcfadb05a08b169b03ec0685 3532 
python-xstatic-angular-mock_1.2.16.1-2.debian.tar.xz
 b967f8bb08d8de19d90a664158ee36fe83cb9782 19952 
python-xstatic-angular-mock_1.2.16.1-2_all.deb
 69cb66ef74a7e9e57c334512cd85acd0e2be7db6 19830 
python3-xstatic-angular-mock_1.2.16.1-2_all.deb
Checksums-Sha256:
 9d69879a2d735e9296d79968eb4d7ca30a9ef7117298d37532fad3b9b4c1f73d 2348 
python-xstatic-angular-mock_1.2.16.1-2.dsc
 313da73617dbc80d3999a349681455cef6703d8271f811d7af5f0c1437df5abc 3532 
python-xstatic-angular-mock_1.2.16.1-2.debian.tar.xz
 e602cbef37d65c926f4d505295ee9a6625ddac61f7bd324514d0711b975f3e90 19952 
python-xstatic-angular-mock_1.2.16.1-2_all.deb
 f60b0f4a0f59297930b424d4a37c3ef77f395ce21d0947897f6a9cd91feeb61e 19830 
python3-xstatic-angular-mock_1.2.16.1-2_all.deb
Files:
 8724874180c57351ae86c682d5e16e0d 19952 python optional 
python-xstatic-angular-mock_1.2.16.1-2_all.deb
 f04f0c15ac20e79ac2b9f25c72729557 19830 python optional 
python3-xstatic-angular-mock_1.2.16.1-2_all.deb
 bd7fe7160a937d91e792568277378ad8 2348 python optional 
python-xstatic-angular-mock_1.2.16.1-2.dsc
 4084a0a117d7c6047bdea39748abaf3a 3532 python optional 
python-xstatic-angular-mock_1.2.16.1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT64yEAAoJENQWrRWsa0P+zcQP/28BzrMVopQARLpUlPVpNVUi
CSXUcrvMVHKGHZYHDu/zgViS0krq1G2aKYT0ox8R/2DI1xafnJ6J5M21VzNxnRfs
BYenBlzs0MkQSL4PqRqzkVnTD+THNWV4dfajzqjkTP3ReuFrTI51KzdeO8yRnssB
A8/XV+nxoVXhEeD6BT7el54PlJlr97J4H2eLV+lTw0puYFyeu2maFzX8DAJACesn
YvsfqJfBaVNLAh9LDpvLiRMj+s3ihbS8/9OfsdZBm8JG/pk6V4Ma06fJuW7+mH0M
pQsndyrRmXYCjokOQsn6AFqCP47y70P2X8xN4iu2H9T8sZB7FSLylqnkOjed2pHL
tMC6XdlCazXlhLSxC0Rc7u1cpU7tgIn/ly8LqRsyaLAjjEr/QM4PL/0If0FbCpMQ
QoeyHl3IOYL6F/fKCjrG0hduWzMjXV2gK/yDMn/Lpxr9+vbFdMGW0qp356Fm9Irg
YMZV32LTP5InYs68qpjHmoCPdKk6tq5FglKtlvyBFfHQT2VmgGadC1Iyhror2ThS
Xj3NuIDOZeu1kEGxxt7O2TLaU/J7SmmGGoryIJYyhU+vmSjROkqjIbw00fpCLv0v
rJsH59kyFCJ9J/vipjBUb/Act5pYMTOYNLHB1uTCmCslecBwHJR2aQlRKAz9Yo3A
H0VpUQctfRzT7DwV3GSn
=Aien
-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: https://lists.debian.org/e1xongt-0003nd...@franck.debian.org



Accepted python-xstatic-jquery.quicksearch 2.0.4.1-1 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 17 Aug 2014 14:50:20 +0800
Source: python-xstatic-jquery.quicksearch
Binary: python-xstatic-jquery.quicksearch python3-xstatic-jquery.quicksearch
Architecture: source all
Version: 2.0.4.1-1
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-xstatic-jquery.quicksearch - jQuery.quicksearch XStatic support - 
Python 2.x
 python3-xstatic-jquery.quicksearch - jQuery.quicksearch XStatic support - 
Python 3.x
Closes: 758402
Changes:
 python-xstatic-jquery.quicksearch (2.0.4.1-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #758402)
Checksums-Sha1:
 f94e45544c24d23adef2010bd6e253c4c76b942f 2411 
python-xstatic-jquery.quicksearch_2.0.4.1-1.dsc
 3946c6da2086c57d91462f7264627b2764c681d1 5760 
python-xstatic-jquery.quicksearch_2.0.4.1.orig.tar.xz
 393aa6ee855427144d478b10c1fe702e01a731d9 3716 
python-xstatic-jquery.quicksearch_2.0.4.1-1.debian.tar.xz
 9b36099e87ad4271e57b90104cf8bac0b62d1f14 8862 
python-xstatic-jquery.quicksearch_2.0.4.1-1_all.deb
 581240a086c7a9ac2ee062623f278dc97df123cb 8756 
python3-xstatic-jquery.quicksearch_2.0.4.1-1_all.deb
Checksums-Sha256:
 a2540ca36a12de7181d0b98bac0d43608e70aa3df5dd369c9a602d177f2fd3fb 2411 
python-xstatic-jquery.quicksearch_2.0.4.1-1.dsc
 cf3b2466dcda9bfb42be83edfdf459cbaeff7b5e98266f8ea0a28d42e546ca7c 5760 
python-xstatic-jquery.quicksearch_2.0.4.1.orig.tar.xz
 bf975ddc7ad2bb30a8755e63d8764ef0dc7352b23a9afde6a9a0881b8af6381b 3716 
python-xstatic-jquery.quicksearch_2.0.4.1-1.debian.tar.xz
 8266861c6a4802d0345b13bacc480d31fe342b1fb8db1eff4d563a2512e521f8 8862 
python-xstatic-jquery.quicksearch_2.0.4.1-1_all.deb
 19f9ecb65bfa3f5ee27c37a00bb1a9d0c92b69d214078424c8404fc5cf6afbcb 8756 
python3-xstatic-jquery.quicksearch_2.0.4.1-1_all.deb
Files:
 455c91bc3c4dcc06d051920be83f5230 8862 python optional 
python-xstatic-jquery.quicksearch_2.0.4.1-1_all.deb
 f62869cc9f5cd3786d4e108dc84216dc 8756 python optional 
python3-xstatic-jquery.quicksearch_2.0.4.1-1_all.deb
 ce8bdcb127d86389f150fd3eed1e2dfd 2411 python optional 
python-xstatic-jquery.quicksearch_2.0.4.1-1.dsc
 976caf965e83db7717c8f3a682c22d0d 5760 python optional 
python-xstatic-jquery.quicksearch_2.0.4.1.orig.tar.xz
 b802eff37a97fede13cf5e1bbd5df4fb 3716 python optional 
python-xstatic-jquery.quicksearch_2.0.4.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT8GrFAAoJENQWrRWsa0P+14AP/2KK8B55hyi9sUEIHZ+R9U8o
2OTjeSDGqpTiQoKbBfPZ8hHkBtG7SmhNByew34AnV5oatHYtDOzRvWLlq6Hsaqw2
44jBeRVYCjALVoJKu23x4ONUiR408CIh3XDDyMXQQ9Rf0DlBzXIb5/xGeFawEs7I
Q2ESHLNXHj1rTHP1YR8beUZ/6E1XjY5pXUVO5hshdp/+T1ALkHIoGTXbpAOB2vmp
JIWNUD5PB+XvMekyElEN+y8PLxjDdLYI1TB80YhTR0Om7TIgQ9g2muBe+iqTGVRT
pVTFtTG8Pbl4+OPeX6MZiyiFNyx3E1wMye+47XvtFDZpqBH+MrVid3S0m7w7KnKD
q3K0W7s6MvedARLdO3U6oG/ZAOBusJEa7XWovab27/uqf2AzFZFJ/YVyopINDtoG
uKP0ww46n4jkzjzg94Lmo9Dx2FqsY1KJVKhYgtwqPHMs8MxKoVkJWXosiVA1Z+wg
a5+Hh9LP51gptiJ4SLp9e/k5Oeihe2Rz0loUJGLeakiD9yrf2y0XzGivFRUdcC97
oLRkdww9kTPt31e4pXTbolic/EFlEzvvor9jwWHH3IoDsMQm8zBC5ijLQNsDDcRW
aov5lh/Mgxc3eJkMcuJVIo5lhWJWGjLFZ8vCbb9Nct7/3XMZR1+09/y1Xwat5O0B
7NZQCy+34FDnvgauksw9
=oTdJ
-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: https://lists.debian.org/e1xongv-0003on...@franck.debian.org



Accepted python-xstatic-jquery-ui 1.10.1.1+debian+dfsg1-1 (source all) into unstable, unstable

2014-09-02 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 15 Aug 2014 16:43:57 +0800
Source: python-xstatic-jquery-ui
Binary: python-xstatic-jquery-ui python3-xstatic-jquery-ui
Architecture: source all
Version: 1.10.1.1+debian+dfsg1-1
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 python-xstatic-jquery-ui - JQuery UI XStatic support - Python 2.x
 python3-xstatic-jquery-ui - JQuery UI XStatic support - Python 3.x
Closes: 760104
Changes:
 python-xstatic-jquery-ui (1.10.1.1+debian+dfsg1-1) unstable; urgency=medium
 .
   * Initial release. (Closes: #760104)
Checksums-Sha1:
 672fbd2fe535fd1f737a6ffd4dc58739b9c8a82e 2368 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1.dsc
 b2ca2d9efb5dc290c0173def9c3348b86bb8bb57 2020 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1.orig.tar.xz
 75d2474f9e1d5e42f498adee93c43e4742a439cd 3340 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1.debian.tar.xz
 f053dd28dd33e27c6cd38c5f2fdb33a2a17c8251 4814 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1_all.deb
 c44ed392db98ff22eae9690ff45d2b5a4b96c196 4678 
python3-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1_all.deb
Checksums-Sha256:
 0dd7cee8f3be41cdf3e79fbde76146ff9e6b61493e7eb7d8787b3dfe02fad963 2368 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1.dsc
 db2e316a967955840d34eb5cf73ef1d70dda79873226e504e64b298f8767b889 2020 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1.orig.tar.xz
 1c897f62e647c7f0ea9df002cdde5927e82e784c849858de0df7becafe2c87e2 3340 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1.debian.tar.xz
 d8742e5d343223421cb5ef3a402c3dcef27d1073260e0485846f760fdb39a15c 4814 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1_all.deb
 584522fef6cc243a3788f0f48cf5a5cea6d7db0de9d182a91ab595a572d70f59 4678 
python3-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1_all.deb
Files:
 b65322d050d9014ef4055de6abaf6565 4814 python optional 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1_all.deb
 960b1f0946bf0fcc0cbd1af6612a904e 4678 python optional 
python3-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1_all.deb
 883bba0c7a3c9de03dde04a83512c967 2368 python optional 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1.dsc
 0eaa17e9e1f1258a36398c50aed75c88 2020 python optional 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1.orig.tar.xz
 c1aa7baaab8bc973ca90c84c3e66508e 3340 python optional 
python-xstatic-jquery-ui_1.10.1.1+debian+dfsg1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUA3V1AAoJENQWrRWsa0P+sT4P/i20NIHGXQM4RClXeOLPlVri
BL5D2PcXMCfk7qRYFQhE+eIvty86ovTm3tIRWWkOdZU8EbqCs2UyTX6gG9bGYl5v
OwpDwu2flMbs0CjoYc6DbR2TQD4VNjTdrCTbmCM6WyGm/zADI3b9iDPh1GUiThG7
jQL4UF1FzKLHSSG7UHkKr1IW1AQdcvPw+eXmkfWRPG3DFcvxNPW+PP18HeAQ3meJ
nKflMmtDzyFsRJhHfQYRiXxM/ODMifZy5Qsmi1AZFZPIDtaiBxmCwLQItloU/NFw
MZOEr+0/wOKG0/rysunQ0TQBNRAj8Af3JFmLzBdB9N/1n5v1WZRONCB6tj1XZ9wy
m2ZXTX3PgVeWOx6zmM+n2/siVwvXzSEHOV5AKjatYymPbp5aNo4W8LkaLdkQeXpo
N86I+gY8/EkNPreSzGDwT/s8H9YyDmj4RpQHApqRjHn+ATOo35+fBoKzlOUVzHYF
Yit1TMGmCugKsDpB/vbO4YvKnar8HfPKa+pMspPmZChfDNatKIBq6ydmNPOgdPVD
b+aQNYajxmI/mM2EeJNwp6uxqm9oyDmp3KsMhFT8PYpE1OVJKTUrRH0kAvOg3Qri
So2cOJ3izAWVPgX7hmY299U6p54u4QghfXFf5rj2NUMLv/xMmXRS2ITzef5vGNT0
qwBsFdJ4HIGgLycXnZWK
=zLYf
-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: https://lists.debian.org/e1xongu-0003o2...@franck.debian.org



Accepted sitesummary 0.1.16 (source all) into unstable

2014-09-02 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 15:24:13 +0200
Source: sitesummary
Binary: sitesummary sitesummary-client
Architecture: source all
Version: 0.1.16
Distribution: unstable
Urgency: high
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description: 
 sitesummary - Generate site summary of submitting hosts (server part)
 sitesummary-client - Generate site summary of submitting hosts (client part)
Changes: 
 sitesummary (0.1.16) unstable; urgency=high
 .
   * Implement workaround for the failing installation when apache and
 sitesummary is installed at the same time, and apache is unpacked
 but not yet configured when the sitesummary postinst is running
 (bug #760084).
Checksums-Sha1: 
 f7425336f8cd274b8fb4efac82ffd97409406b41 1199 sitesummary_0.1.16.dsc
 297075180741d84f2426631e301c4fad429cde63 74381 sitesummary_0.1.16.tar.gz
 2fb0690997df8a52313701e6675bf51deb117ea7 51980 sitesummary_0.1.16_all.deb
 03cc338533edcac6ea78c3be1a422a16b5cc6d2a 38378 
sitesummary-client_0.1.16_all.deb
Checksums-Sha256: 
 0030196ec61d39dc35c60002bfca57daa1fa66775900e347619a82edb5f8320b 1199 
sitesummary_0.1.16.dsc
 110dae68ad410c1381c64f9fed709077e15771194da3a0bd1750c6f53d0e89b6 74381 
sitesummary_0.1.16.tar.gz
 3f11787533f120d66616b0cf56865b43d3fd53fea67f3a6756e5e1a82eb11d65 51980 
sitesummary_0.1.16_all.deb
 5864d7ea45b2ae4c1ef2a889a4b1d5ec416cf5030a827708295023d0c7620422 38378 
sitesummary-client_0.1.16_all.deb
Files: 
 09059d578fb580b0eb3e574a3a35272f 1199 misc optional sitesummary_0.1.16.dsc
 74b80afe667bc1f4fc42e1edcd4aca3f 74381 misc optional sitesummary_0.1.16.tar.gz
 5deb6e44344b250ca674c0108fd06dba 51980 misc optional sitesummary_0.1.16_all.deb
 2ead6e0ad579099d0cfcda8cec8f40aa 38378 misc optional 
sitesummary-client_0.1.16_all.deb

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

iD8DBQFUBcUt20zMSyow1ykRAptlAKDW1fp7grDy5lnmt3z++CestSyNMwCg56wX
spxsDF5VggXU8975BwJmMdA=
=nhp5
-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: https://lists.debian.org/e1xoodz-0007vb...@franck.debian.org



Accepted fex 20140902-1 (source all) into unstable

2014-09-02 Thread Kilian Krause
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 17:17:28 +0200
Source: fex
Binary: fex fex-utils
Architecture: source all
Version: 20140902-1
Distribution: unstable
Urgency: medium
Maintainer: Kilian Krause kil...@debian.org
Changed-By: Kilian Krause kil...@debian.org
Description:
 fex- web service for transferring very large files
 fex-utils  - web service for transferring very large files (utils)
Changes:
 fex (20140902-1) unstable; urgency=medium
 .
   * New upstream release: 20140902
 - fup: upload status bar waits longer, until $timeout
 - fex_cleanup: use wget for new release dedection
   * Add suid fex for fac and tools (fex_cleanup, fexwall, logwatch) as those
 should always be run as user fex
   * Bump compat to 9 and increase Standards-Version to 3.9.5
   * User fex shall have a valid shell - update to /bin/sh if default system
 user (/bin/false)
   * Add new tools: afex, asex, fbm
   * Add fexwall utility to fex package
Checksums-Sha1:
 e6eca67942b5c4288ee0d414431bac78c79722b1 1235 fex_20140902-1.dsc
 a6ad3711f31ac5830f66c477458a9b35142beff1 315177 fex_20140902.orig.tar.gz
 2dabd9a90e1ab1b04241d2aa18dff460e8642031 22812 fex_20140902-1.debian.tar.xz
 5f4e02a4542461d1f078ce27b197ae87e11639ab 275530 fex_20140902-1_all.deb
 cb95d6b06b093c232ea34e9ee0a5a8bc97a45a2d 61024 fex-utils_20140902-1_all.deb
Checksums-Sha256:
 e9ed8e69d81c903779987d6ead37843dc6dbf09f642febb8f88efed2870170f3 1235 
fex_20140902-1.dsc
 b49c155fb11bd38f87c6ec5c3ab3f487f893f3beb841c3af7792bb6ec5334e79 315177 
fex_20140902.orig.tar.gz
 7f5ebb5fb4922af2002256510f006b1d50eaca5b3863f58f93ddac8aef79 22812 
fex_20140902-1.debian.tar.xz
 f7880813b8def918cafad71cbc0d1787ed8de1f9d6bf154171d27abcb903aa26 275530 
fex_20140902-1_all.deb
 38573d34c3b4f83bfa23475b83b0ba360acb14df4c635ca3fa90198103e27d2e 61024 
fex-utils_20140902-1_all.deb
Files:
 b3d2c9b0d5c8f7570a059dc1d61baabd 275530 non-free/web optional 
fex_20140902-1_all.deb
 12155f9878029727cbe1e5cfdf435c76 61024 non-free/web optional 
fex-utils_20140902-1_all.deb
 6a3051c42565a49a51b44ec417f384f9 1235 non-free/web optional fex_20140902-1.dsc
 04c991fa51bf2300fb4ebdfd2a181afd 315177 non-free/web optional 
fex_20140902.orig.tar.gz
 155871b5fdd70640babe6b18702ac2a8 22812 non-free/web optional 
fex_20140902-1.debian.tar.xz

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

iD8DBQFUBeAQvdkzt4X+wX8RAnuhAJ429SXsr5XwqVxWJ8uFhYhmAHu6BACff5Kx
gL3QCXZhzguNmxmPcoRnoFE=
=ylm3
-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: https://lists.debian.org/e1xoq6g-0004tu...@franck.debian.org



Accepted seqan 1.4.1+dfsg-2 (source amd64 all) into unstable

2014-09-02 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 01 Sep 2014 22:54:54 +0200
Source: seqan
Binary: seqan-apps seqan-dev
Architecture: source amd64 all
Version: 1.4.1+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description:
 seqan-apps - C++ library for the analysis of biological sequences
 seqan-dev  - C++ library for the analysis of biological sequences (development
Closes: 752558 759978
Changes:
 seqan (1.4.1+dfsg-2) unstable; urgency=medium
 .
   * Do proper manipulation of build options (thanks for the hint to
 Etienne Millon m...@emillon.org)
 Closes: #759978, #752558
Checksums-Sha1:
 789244a2d72da7854dcb958b21cfafce4803cfd0 2113 seqan_1.4.1+dfsg-2.dsc
 46449009824f48702b5a11a8e94ef2f15cdd9a05 8508 seqan_1.4.1+dfsg-2.debian.tar.xz
 52e39232469b87172297fb1302d559f401a24b71 7486764 
seqan-apps_1.4.1+dfsg-2_amd64.deb
 6a55875fba301946a063e8228e1f68f58a419fdd 2615626 seqan-dev_1.4.1+dfsg-2_all.deb
Checksums-Sha256:
 fc551d0ddf15efc13742e86c73e639eed9777dc6f78e1cac5d90310859f69dff 2113 
seqan_1.4.1+dfsg-2.dsc
 b17449b13aa56f19645bfea66ead4792857ea34fb2ba93f95f0dab59f110a629 8508 
seqan_1.4.1+dfsg-2.debian.tar.xz
 b48f5d76669f68059d42dbce799274e9a2eb5a67276a0132e6e4450ccd82c27a 7486764 
seqan-apps_1.4.1+dfsg-2_amd64.deb
 1aa4cf4c56cb9283505b373bcb600aba7072cfd277840ad44b1b499e7f27a2f2 2615626 
seqan-dev_1.4.1+dfsg-2_all.deb
Files:
 94372a1b5097557c75d74e0d1830b814 7486764 science optional 
seqan-apps_1.4.1+dfsg-2_amd64.deb
 0bfb73b1b414bff3b672f135a4f69760 2615626 libdevel optional 
seqan-dev_1.4.1+dfsg-2_all.deb
 fe550743b64ce03381023e9ff9870e77 2113 science optional seqan_1.4.1+dfsg-2.dsc
 5a1aaf26657a343075111723766d3560 8508 science optional 
seqan_1.4.1+dfsg-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUBd9XAAoJEFeKBJTRxkbRew8P/1eEw707CoJXyqgq8FW/rYVq
luBDmw2EgXBqXBEi3GUJNXCtBI0/mUYh98WzKGN72oNawwntp5W+bUw8XMt1AYFh
osm0Wb7nlM6NVzUOJeGhn9JoSd/MvIh4aOVqT0XDwcpsQjdNDWhqL0uFYaKyi/Tx
v+mFrQ1YSxjKBXzCQC2wJcXScvljPZPXGHUyYcA/nn9M5A2DP4OYB8KFgo+E92eX
H3gDXJgQdP8nlIgxxWT6GYAJJsrH6U5ni+f/hTDjZyadbpXdNY3WlC/YTp7Diwk7
69L+tKCZRseFtiVWPh5vbswM7EkmaaecOBI/09ydJLGa0ZtkemUP+sB8quPnh76a
tTLlIUiMhrXZ4DfJhDncwzGzct4KESDOV9y6WbMMsMDpqBZakKlPNfDB1jEYawnS
v6dnuEA6Yj1yZNbvsvSf9B/ufN79UROxGQPAv6wq/McdhpGfcDE2Kq4j/HxdloRf
bii3vrj9kvR3IfMfrXD+WN21FEOsfNlODYchZEq+VGdDOtpWuxZ53Rt/y+oSM34q
MyBrAHumgSFxrBIXuXgGPQKDWtuaiZcJeN24w0P4FZTqNPywUcxsSZBJeq/coZNi
/GxiJVEvK49y/hzUvx8aCd/Nv7+MNy2JmUj4BvIFUwL5UKWh+SUv7kHlVYcW7I+e
oiBCCkXquMAH4BUbvCAw
=T+I7
-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: https://lists.debian.org/e1xor2e-0003ot...@franck.debian.org



Accepted torbrowser-launcher 0.1.4-1 (source) into unstable

2014-09-02 Thread Ulrike Uhlig
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 09:20:39 +0200
Source: torbrowser-launcher
Binary: torbrowser-launcher
Architecture: source
Version: 0.1.4-1
Distribution: unstable
Urgency: high
Maintainer: Anonymity Tools Debian Maintainers 
pkg-anonymity-to...@lists.alioth.debian.org
Changed-By: Ulrike Uhlig u...@451f.org
Description:
 torbrowser-launcher - helps download, update and run the Tor Browser Bundle
Changes:
 torbrowser-launcher (0.1.4-1) unstable; urgency=high
 .
   [ Ulrike Uhlig ]
   * New upstream version.
 - take into account URL change for downloading TBB
Checksums-Sha1:
 69e763a31996ea64ab9b558ba11b4b41d06606f7 2190 torbrowser-launcher_0.1.4-1.dsc
 0f213c76dc5af5db75210c6e0363dc9991cd271e 216135 
torbrowser-launcher_0.1.4.orig.tar.gz
 9edadddc506bdb1a514c4c98b7feff15deb6c9e2 5928 
torbrowser-launcher_0.1.4-1.debian.tar.xz
Checksums-Sha256:
 b21ea1b42fdf9ddeeb54101650dd4c4c8a59a1b02bc2f3d4a53442dc21f0bdf9 2190 
torbrowser-launcher_0.1.4-1.dsc
 b18dc5c3cc92b2dfef62e9c8832f36d0d9911eb96b8cc57feee23fc1b7ede8fb 216135 
torbrowser-launcher_0.1.4.orig.tar.gz
 7a4c87706d895a720d04a9c743f93b90d543063698dffb68fc87b25ef4e5ad14 5928 
torbrowser-launcher_0.1.4-1.debian.tar.xz
Files:
 5aa6fa4fccd861bee31d42e2d2803b36 2190 contrib/python optional 
torbrowser-launcher_0.1.4-1.dsc
 f178c9f023ff1174611c0d4ca8efcebb 216135 contrib/python optional 
torbrowser-launcher_0.1.4.orig.tar.gz
 d85cb009565c7a641d652c145d6558bc 5928 contrib/python optional 
torbrowser-launcher_0.1.4-1.debian.tar.xz

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

iQIVAwUBVAXvqgkauFYGmqocAQgyDQ/+JyJCFCFt4L2RsYrgK5L11py2BeSkJ5nH
2tJ3mmlG4LQ2ONFhdnlQKBl4aPj9Ts+jA1QUaGez81PwfJhZqLR72x50tsHnT9xi
lx2BbhYjYlBGYMSliDDig3aQ4Ps8x7gOtASXtM5WDARevARqGOaTYuMsq0dp2rD5
xr2gQPxQcqm+nPzTQu6/hceGQ2QuFBXnZX3iwUnElPgF4veODKVQPCd+sSq59OeR
8bdkWPJVllVnY5tMEMtVVTihsYp9ufhM4VIT5tJ9ci8F+knSug+sTVDMeTkcJTEF
qdfK5DNFGtMe0N2i5WVxrxNyoq982EaFDBFCT74AM1W0jUXm7EiZgFWG7zKgSyLy
yPYqLq4z8QBGHgcOnG/VbYIxXuEM2uJqtN2EAPcZ2mytn29PEFySPYRAZqs8qtDS
XeTd8lQA9pvyks/uFquyA7elk3J6RgN5VVgvyQiPY+ovo2bcTADUKMKPDvT+5NUf
CVubQmTSa9n7+MTw2ry7/Qu75iUlIaF05Xt/xgk1tiwnS7i/7Q8wppnxPwpuE+DA
a0KBPqatB7oPvAPi7fH6I09DOrEgiM5sUofqZVq8G1aLiwWTFIpheD9kVQpFViOr
2YbxUgGR3gKGdT0UPegQCmTL8G9ISMZW/Cgq3puVsZIaSf07UPobTmSnoAaKPx1T
FJMKQKNik60=
=6UEP
-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: https://lists.debian.org/e1xor2s-0003qn...@franck.debian.org



Accepted tracker 1.0.4-1 (source amd64 all) into unstable

2014-09-02 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 18:24:02 +0200
Source: tracker
Binary: tracker libtracker-sparql-1.0-0 libtracker-sparql-1.0-dev 
libtracker-sparql-doc libtracker-miner-1.0-0 libtracker-miner-1.0-dev 
libtracker-miner-doc libtracker-control-1.0-0 libtracker-control-1.0-dev 
libtracker-control-doc gir1.2-tracker-1.0 tracker-utils tracker-gui 
tracker-extract tracker-miner-fs tracker-dbg
Architecture: source amd64 all
Version: 1.0.4-1
Distribution: unstable
Urgency: medium
Maintainer: Michael Biebl bi...@debian.org
Changed-By: Michael Biebl bi...@debian.org
Description:
 gir1.2-tracker-1.0 - GObject introspection data for Tracker
 libtracker-control-1.0-0 - library to control/monitor tracker miners
 libtracker-control-1.0-dev - library to control/monitor tracker miners - 
development files
 libtracker-control-doc - library to control/monitor tracker miners - API 
documentation
 libtracker-miner-1.0-0 - tracker data miner library
 libtracker-miner-1.0-dev - tracker data miner library - development files
 libtracker-miner-doc - tracker data miner library - API documentation
 libtracker-sparql-1.0-0 - metadata database, indexer and search tool - library
 libtracker-sparql-1.0-dev - metadata database, indexer and search tool - 
development files
 libtracker-sparql-doc - metadata database, indexer and search tool - API 
documentation
 tracker- metadata database, indexer and search tool
 tracker-dbg - metadata database, indexer and search tool - debugging symbols
 tracker-extract - metadata database, indexer and search tool - metadata 
extractors
 tracker-gui - metadata database, indexer and search tool - GNOME frontends
 tracker-miner-fs - metadata database, indexer and search tool - filesystem 
indexer
 tracker-utils - metadata database, indexer and search tool - commandline tools
Changes:
 tracker (1.0.4-1) unstable; urgency=medium
 .
   * New upstream release.
Checksums-Sha1:
 b38b65ab45345a256e9a7fd1db8cbd0841cf1a90 3773 tracker_1.0.4-1.dsc
 6a3dfff9a8554e76b3352e6f6c213a9e8968f8ea 6169216 tracker_1.0.4.orig.tar.xz
 e330ec117d75560c3fff4eaeb2542f52d2957237 18648 tracker_1.0.4-1.debian.tar.xz
 70c884ca097b7c98e276400879a1deed9608d795 860602 tracker_1.0.4-1_amd64.deb
 d846c180b306b4478db5040b87027902a02b5b84 595632 
libtracker-sparql-1.0-0_1.0.4-1_amd64.deb
 d4231d0635eb40f57f6864023a9d1c579993040e 319318 
libtracker-sparql-1.0-dev_1.0.4-1_amd64.deb
 e9b3cda090b7f232aa09bfabbb8873e2aad25eae 1612164 
libtracker-sparql-doc_1.0.4-1_all.deb
 8b9b988b9c53135fcb3b17238c6b124be1251d11 374050 
libtracker-miner-1.0-0_1.0.4-1_amd64.deb
 680d11f7880895641ab9f359c4db0e2f03f37884 327188 
libtracker-miner-1.0-dev_1.0.4-1_amd64.deb
 b07f4476d639515a45f53201eb6bfd49abc26b79 340838 
libtracker-miner-doc_1.0.4-1_all.deb
 cbe40c69ab63d71108c946ff4aa827c2fb53cc39 320940 
libtracker-control-1.0-0_1.0.4-1_amd64.deb
 28336eab76b5f4b74a7221415081890c21ab2023 317188 
libtracker-control-1.0-dev_1.0.4-1_amd64.deb
 26386c1b316f20010ce2fad4fcfa223be6be7414 324062 
libtracker-control-doc_1.0.4-1_all.deb
 575c8117dbcbb22262706a4ab1de722c349a6852 318744 
gir1.2-tracker-1.0_1.0.4-1_amd64.deb
 171b97d4df6aa96968a859052715190878070798 346384 tracker-utils_1.0.4-1_amd64.deb
 52a15930672a0b2e3507cb1fa8abbbaebeae84b9 425810 tracker-gui_1.0.4-1_amd64.deb
 6ab15d8ba234483f9434551abc3adb18ad058594 414250 
tracker-extract_1.0.4-1_amd64.deb
 458b718875389f6bdfc6328643a7e778b08b1080 354932 
tracker-miner-fs_1.0.4-1_amd64.deb
 02b43ce2fe16dca713e18d4413bb3d5ab02e1f5b 2293758 tracker-dbg_1.0.4-1_amd64.deb
Checksums-Sha256:
 b1b8f270cfc19cc17aaee1a4bf79aef1e75a2d5bbc07f4bdf91395e052c5f385 3773 
tracker_1.0.4-1.dsc
 cd9d0ebb2f09b581b3da607aeca96ec770ba1548c98f541dc3428bc945ff9886 6169216 
tracker_1.0.4.orig.tar.xz
 4b1809a4b1e241de60f2af21b11664f91cdf13405ec78dfff0a6773e384ebbdb 18648 
tracker_1.0.4-1.debian.tar.xz
 482f2ca4d9b25c237611bd924f5780c9d8a4e1bdae67a3d49e69e00e2c9e4089 860602 
tracker_1.0.4-1_amd64.deb
 4bb0e22b0e989fb1b9d989c6568426171e4e010783b6848b53e153a68d04d3fd 595632 
libtracker-sparql-1.0-0_1.0.4-1_amd64.deb
 66ac68ee574bbda4022bb5e511b3defd8374702fe25e0ed44f6c3aabbf51d105 319318 
libtracker-sparql-1.0-dev_1.0.4-1_amd64.deb
 0697cc96af51ce32e20a64ab2de339437088bae1fc8f748e8c4c6ec8a0dcf7c0 1612164 
libtracker-sparql-doc_1.0.4-1_all.deb
 a9a956a189eccfd79216e80f8b75231a7af1f0ba1e54485ea0bc188719678c78 374050 
libtracker-miner-1.0-0_1.0.4-1_amd64.deb
 fb2338203fceb1235689aadfe63bd71000a04da72d25936cc063ea6000364d0d 327188 
libtracker-miner-1.0-dev_1.0.4-1_amd64.deb
 2b99fb2a8c15a58403ad15b81a2f81728281d88c66b735148d9ecd5a6118bf18 340838 
libtracker-miner-doc_1.0.4-1_all.deb
 d48cdaa35878f605e1903dc9e5b9c4be636c134ae9a7142efec4cbff35350674 320940 
libtracker-control-1.0-0_1.0.4-1_amd64.deb
 f1a3bf3b75742b78672bbf06053b142789ba54159b04924abfe4cab875561387 317188 
libtracker-control-1.0-dev_1.0.4-1_amd64.deb
 6673a4fc927380a163972c580e7710f85582991867a6283874673d4d962b7cd8 324062 

Accepted upower 0.99.1-3 (source amd64 all) into unstable

2014-09-02 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 18:50:37 +0200
Source: upower
Binary: upower upower-doc libupower-glib3 libupower-glib-dev 
gir1.2-upowerglib-1.0
Architecture: source amd64 all
Version: 0.99.1-3
Distribution: unstable
Urgency: medium
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Martin Pitt mp...@debian.org
Description:
 gir1.2-upowerglib-1.0 - GObject introspection data for upower
 libupower-glib-dev - abstraction for power management - development files
 libupower-glib3 - abstraction for power management - shared library
 upower - abstraction for power management
 upower-doc - abstraction for power management - documentation
Changes:
 upower (0.99.1-3) unstable; urgency=medium
 .
   * debian/tests/build: Drop up_client_get_can_suspend() call, this got
 dropped in this upstream version.
   * Add upstream patch to fix test suite crash if there is no session bus.
   * Add upstream patch to fix test suite for Python 3.4.
   * Add upstream patch to split test suite into smaller independent tests.
   * Add missing umockdev test dependencies so that the upstream test suite
 actually runs.
Checksums-Sha1:
 d58d3d7762c32821efbca88d22b25a20bf595896 2630 upower_0.99.1-3.dsc
 d12f26fb8dfee4594858101bb293981d4d20c612 14008 upower_0.99.1-3.debian.tar.xz
 93927c616cb50f24320c07ea4ff9b106f047ffb9 88218 upower_0.99.1-3_amd64.deb
 5cd785f31d2f678e8350910d2542e0055e9e2f09 40694 upower-doc_0.99.1-3_all.deb
 af7ae10c4346554733a676cf114ecc50fb5689c2 46990 
libupower-glib3_0.99.1-3_amd64.deb
 58ffeb12f40d72dce896c7e3f694c455989d6d21 65196 
libupower-glib-dev_0.99.1-3_amd64.deb
 aba5630e393a655b687868e910383806b47c2c83 16120 
gir1.2-upowerglib-1.0_0.99.1-3_amd64.deb
Checksums-Sha256:
 82be0fe9ccc7951cfcc9db7353acf34202c171add117ec3502e5c2b084960d1e 2630 
upower_0.99.1-3.dsc
 5d42e488a37c85f04ccb1d8c38f217e84456dacc7edbc7f6f62ba0fa41f81065 14008 
upower_0.99.1-3.debian.tar.xz
 29071c0910c07b4f12be21252844ed418ca2f1624b42d4114bd452de0becf744 88218 
upower_0.99.1-3_amd64.deb
 3be29f811f542bd0f3d6264bd2dd0cc8e84675cc96b5a8564961d439c3c13c37 40694 
upower-doc_0.99.1-3_all.deb
 82441d0f944779e730d1a8ec8aa1eb2c9320ee56e75c1fe3f53ac577b19ff7e5 46990 
libupower-glib3_0.99.1-3_amd64.deb
 dc5e0156d079946d89a34d8d4b1e0bf87378584ef25cc7787027e3a0cf62ff4b 65196 
libupower-glib-dev_0.99.1-3_amd64.deb
 10295ace70e757d6ad76f8948c69e940ca231753327cdcc181c54cfda07f16d3 16120 
gir1.2-upowerglib-1.0_0.99.1-3_amd64.deb
Files:
 9375344548d8bba3c2a96fab6d31fd23 88218 admin optional upower_0.99.1-3_amd64.deb
 10c71da553732c89926954714e3f439d 40694 doc optional upower-doc_0.99.1-3_all.deb
 a4f1377b36c2553fb579016ca330e68e 46990 libs optional 
libupower-glib3_0.99.1-3_amd64.deb
 08f69207755cab42e47f84bdea7fadd1 65196 libdevel optional 
libupower-glib-dev_0.99.1-3_amd64.deb
 3159ee8e0f7ba8a295f606c48e9ee72d 16120 introspection optional 
gir1.2-upowerglib-1.0_0.99.1-3_amd64.deb
 12cf49e958f3418eda30e5b24f5e1de4 2630 admin optional upower_0.99.1-3.dsc
 494c5c8d4a751b53a600d427963c1430 14008 admin optional 
upower_0.99.1-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBfYAAAoJENFO8V2v4RNHHjwP/jJBGEKQKya7zbmdWnf40cYR
M3MtQpWHk6Bb2W9KLRwU+UK3dWyXxXp0SBTI2kcKkoyAxd1JFVkkeOyWVVkxwmL0
jqFWepHkAKN2aA4VG5yWkgBgMBwUiFsiViqtJfz3firvzhz7EWc2C2R5eAXKuz4f
wDJxVfBmoP+IXvn7xhUfwj5uzAnn+3Gs6qKgCgRLFiYbZZMBPl3wqnLRLfCDwgLF
PXusT9KN2cqpL6uaE38MdI1sxfT48/hfLqeDm2qO11H1jTccAa0IrEWYlNZmHR3i
Jz2XzBKagAincqFaOmj1nIOa7sYFXZ5tXCCJMo2ITkNfZijfKsJ4cVYknQQLnosQ
y1f0Vk0CRx3FBKU4qZW4LbVvaSfVnjZCYLkfv0PCh2bKhgMhpNXy5SugXLrklSKq
9RBPn4U6PTNX8tluw+4sgOlCVpsW77tqnu0sdzygFW93xuwO0NSmDtVc7o8YaUxE
xaROmuUuIc9AwnVRaLNWY/pCuoNSkrTH77IQPISVpKezeV7GlgqpSl1G3OfptRKF
I7ZjvZ18YEHSrVr4VC3EmkLICbWbMHYs/0RxNMI8/8W9avijdOTCiOnLoRZwo3bZ
N+mhbTnaOaTNBU2on7XTrWTWbgQEKb+DdKSaKy6mgx2qsyUKF1mO2V7hdxlJi5Px
lWyVBJlbIyYca/fNn8Xl
=rp5U
-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: https://lists.debian.org/e1xorvs-0007s3...@franck.debian.org



Accepted mugshot 0.2.5-1 (source all) into unstable

2014-09-02 Thread Jackson Doak
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 17:10:26 +1000
Source: mugshot
Binary: mugshot
Architecture: source all
Version: 0.2.5-1
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Jackson Doak nosk...@ubuntu.com
Description:
 mugshot- lightweight user-configuration application
Changes:
 mugshot (0.2.5-1) unstable; urgency=medium
 .
   * New upstream release.
 - Fix: mugshot fails to start for some users (LP: #1353530)
Checksums-Sha1:
 247e9c566e092638ed704e649c01267ec84d5a49 1992 mugshot_0.2.5-1.dsc
 a1c267ef6ad83024a529cad23d63db74515c1722 100621 mugshot_0.2.5.orig.tar.gz
 7fed5b08455c862dbefba60a375b5023ca8a1b77 2316 mugshot_0.2.5-1.debian.tar.xz
 5539fbea5518a6186195171c6e15a52c136738e8 53878 mugshot_0.2.5-1_all.deb
Checksums-Sha256:
 a1a8ccf06a6e30cce7f6ce6da5c7880ad687bd13eae4130f87660602b5ab056c 1992 
mugshot_0.2.5-1.dsc
 b071811ed4995514f50328efb59751238e113705b20a8f73a481e9b40ebfc98b 100621 
mugshot_0.2.5.orig.tar.gz
 4d19ba58bdf06484323b76d002e852d763f3e12cae46c2058c90c79c9702b670 2316 
mugshot_0.2.5-1.debian.tar.xz
 5aa410193139320ea2ac4bc1294941254220c670eb02a503b4ebc3c2f2b1fbfd 53878 
mugshot_0.2.5-1_all.deb
Files:
 2485ca9f7a4ad00f4a07391e001db025 53878 python optional mugshot_0.2.5-1_all.deb
 54581a209d7511c4b4ee9c579cf427ce 1992 python optional mugshot_0.2.5-1.dsc
 11a5e5aac8ed876bc50ebd937fb450ab 100621 python optional 
mugshot_0.2.5.orig.tar.gz
 71af4758d2666ba61fcf136735f84e88 2316 python optional 
mugshot_0.2.5-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUBf9HAAoJEGAmk20vHIrgAtMQAL6SJPbrypXsGxeZ0UjTAzUg
EbTEnAZXiM9ycnaBHDuWns016ThHeCrsMECys0DspFDKSkxNazgtbKUhO0yDgCfA
un0WHlVa0WP3W9kKomn1ZO5HDbkhT8wRC2dUZ6+wczdn5kuU+yRR/fBZyZ21Y2tP
XvAAGK+8z32kelzoqQF45WL+2IIrtj8+hIhRL5PZtlRhItCKAnM0SfkhM4Si3Kwp
eDlHU2AgKO0vWC/QfibpWBOxzm/JwMcQVpZKx32nPvTU8uYyVVyd56oQeQLNwuHv
NDVqIM36ifqThTEjIEfvL68wdG7NtHOTq3LVIPG5tfhCJebngGrkSpHf1cnkcsk5
QVMTohg307Jfjne9Y+3iQg8mY6Uucy/9SOXhZ4nAGCwL2SE8TiAiv9wz+vpAkNyi
CKDXEy3H6Ew8W8xlkgZWPyR2/hB058yFj7n62Na1srvBESpgLN2/5TyJo5/piCR8
RDXfo2gWFiiqiOg6FuiIz4ZVYVfb0TFZDxrlIedUPAiCXnzYXOEsYZhOhpsEYDQt
ynzA0aVxybYLOJpuai0Y6fbS9zde0LSu3xmkpCNUg8+XmC1SafW/GdT5g+PMKYU4
bWsEhMxBqTsU4UpH6kwtbF1AZrmKzcfihhameiyM40EfBRr0iXPgn641e6pe4ml9
L3M0FRFBomU5VD1TLD4x
=xqmT
-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: https://lists.debian.org/e1xosce-0004i8...@franck.debian.org



Accepted haproxy 1.5.4-1 (source amd64 all) into unstable

2014-09-02 Thread Vincent Bernat
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 19:14:38 +0200
Source: haproxy
Binary: haproxy haproxy-dbg haproxy-doc vim-haproxy
Architecture: source amd64 all
Version: 1.5.4-1
Distribution: unstable
Urgency: high
Maintainer: Debian HAProxy Maintainers 
pkg-haproxy-maintain...@lists.alioth.debian.org
Changed-By: Vincent Bernat ber...@debian.org
Description:
 haproxy- fast and reliable load balancing reverse proxy
 haproxy-dbg - fast and reliable load balancing reverse proxy (debug symbols)
 haproxy-doc - fast and reliable load balancing reverse proxy (HTML documentatio
 vim-haproxy - syntax highlighting for HAProxy configuration files
Changes:
 haproxy (1.5.4-1) unstable; urgency=high
 .
   * New upstream version.
 + Fix a critical bug that, under certain unlikely conditions, allows a
   client to crash haproxy.
   * Prefix rsyslog configuration file to ensure to log only to
 /var/log/haproxy. Thanks to Paul Bourke for the patch.
Checksums-Sha1:
 098c8edcd6659f1b86752b39df6e47295f1793ba 2224 haproxy_1.5.4-1.dsc
 3387f1038128fb3291fff8be9b94808e32cc0f8d 1336140 haproxy_1.5.4.orig.tar.gz
 59811a76e13fade48ec40d0a19772c9013c128e7 34080 haproxy_1.5.4-1.debian.tar.xz
 10ff1f3b01da223cd001e5462fd7b227c1f8b7e9 634940 haproxy_1.5.4-1_amd64.deb
 e5eb84e2e47cf596b8ce4d6d22ca7a5f576a8fb8 1663596 haproxy-dbg_1.5.4-1_amd64.deb
 a323a5386a01f4245dcadd6838bc1c70c6fc89b8 264758 haproxy-doc_1.5.4-1_all.deb
 07d6f381eb07bb23f7a2fa532d868fbaa64afd1c 97674 vim-haproxy_1.5.4-1_all.deb
Checksums-Sha256:
 498e1d73b7779949ab6408b73c72a7de176a9465da74d49b442660398ba4 2224 
haproxy_1.5.4-1.dsc
 75056ca5b9121b193d383ba4ebc6e5a3782c537a7499db80fce8d6d5fd265e10 1336140 
haproxy_1.5.4.orig.tar.gz
 bc00f50541c06a9fab900ba48054b39ec1c5bbf0340ffe799502c02f8b2b82d3 34080 
haproxy_1.5.4-1.debian.tar.xz
 41fba41affd357a0e527686f28a8d9b5fd5e48831d0cc850c3bf1cd5930b1618 634940 
haproxy_1.5.4-1_amd64.deb
 73eecf8991b4fed31f8796ba1f83ba7d56228a9bb0be7c5638e204f59d7f57cf 1663596 
haproxy-dbg_1.5.4-1_amd64.deb
 926cb22791bd8ca126f2410cfd97576089634b30c77fcf5b5e07b4a14aa45f45 264758 
haproxy-doc_1.5.4-1_all.deb
 7e7f08b40778f23e033b39c58b1ac9543cb27c3bae80b33ce97a05b1ca448a7f 97674 
vim-haproxy_1.5.4-1_all.deb
Files:
 ee1d0d2ed03fbc8699bc6ae0b7b8d44b 634940 net optional haproxy_1.5.4-1_amd64.deb
 5ed76141f9729e02760fed45552c5d4c 1663596 debug extra 
haproxy-dbg_1.5.4-1_amd64.deb
 a3ff97c61755750c0e0ce94a3adfa842 264758 doc extra haproxy-doc_1.5.4-1_all.deb
 8779448523296d3ca02826b002f79ea6 97674 net optional vim-haproxy_1.5.4-1_all.deb
 576918f50991ecd09ffddf0518ca564f 2224 net optional haproxy_1.5.4-1.dsc
 b027035bfd8f28326634f802c3447a34 1336140 net optional haproxy_1.5.4.orig.tar.gz
 ff173267ad84bfd9aad2e83af87a83fb 34080 net optional 
haproxy_1.5.4-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBf52AAoJEJWkL+g1NSX53H4P/jIkh8dTVnjtuBCtxyM1XDEL
8ZNwT4YvPUDF/Qspvd2w1ht9tYyFP1AkjgbhlBbwbXh0HTwFn/nm2rf327ubEXTb
efJW8PyKCmtopV401L3EGn/zFmsOCgg1R1PZE91fZQSaE42Y0vd0imLvmgzsAvUH
eaM7dOF3r0vUu03/Wx5oGjElG5x6Bf+dyw9FWXsPeFeC5pwMb1+Bd2z6HWnrMef/
ytAJaUeaRw+JQ5bHKkEhpdJRJN47AgzspM+7T694Vx3/NPGjzZmjUP3+PBMWbJo3
GrUBnXDZEL3ShPieXAxZNcq0yOaEgJJw7yScJZyTDaVfY5nfoNQJgrVmpgQj7h8i
4iOnvY/R6lCqOyF1EY8GGspLJQGUJ+hF22aB+VKB+hjHGSTBSGE8KWba/B3QBCYN
vh2kHHnDiKq86qbEoIPCOIVp5Gef5A1rRYRutlUZVj18e36bWQncDZ7uevY8ygQG
dqvqRAqHVX9BM2EmIq2mlejBg7XmnerbZN4vp0XoZvYi5hQJitA3BXuvFGKrcsrz
0tE5gkb8xsi4czwsQbSpPXDIazfd9VYF5Cc1JP9ebw+IHBkhCmIKLvAui94obZ7X
xD+CGeQZ1Hfbd9y2SZ+gT1lCbgU948PWLuBNm6Lqnkqq4xyPOCwSt3HHNmT3KkaN
62KCZzQHhvGrfcWbHK0p
=pRTj
-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: https://lists.debian.org/e1xoscw-0004g6...@franck.debian.org



Accepted network-manager 0.9.10.0-2 (source amd64) into unstable

2014-09-02 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 19:40:17 +0200
Source: network-manager
Binary: network-manager network-manager-dev libnm-glib4 libnm-glib-dev 
libnm-glib-vpn1 libnm-glib-vpn-dev libnm-util2 libnm-util-dev 
network-manager-dbg gir1.2-networkmanager-1.0
Architecture: source amd64
Version: 0.9.10.0-2
Distribution: unstable
Urgency: medium
Maintainer: Utopia Maintenance Team 
pkg-utopia-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description:
 gir1.2-networkmanager-1.0 - GObject introspection data for NetworkManager
 libnm-glib-dev - network management framework (GLib interface)
 libnm-glib-vpn-dev - network management framework (GLib interface)
 libnm-glib-vpn1 - network management framework (GLib VPN shared library)
 libnm-glib4 - network management framework (GLib shared library)
 libnm-util-dev - network management framework (development files)
 libnm-util2 - network management framework (shared library)
 network-manager - network management framework (daemon and userspace tools)
 network-manager-dbg - network management framework (debugging symbols)
 network-manager-dev - network management framework (development files)
Closes: 760186
Changes:
 network-manager (0.9.10.0-2) unstable; urgency=medium
 .
   * Use default compression for binary packages.
   * Enable Network Team driver support. This is an optional feature which
 requires the teamd daemon provided by libteam-utils.
   * Cherry-pick upstream commit to fix Wi-Fi section of nmtui connect list
 in non-UTF-8 locales. (Closes: #760186)
Checksums-Sha1:
 2804add752216964ceee6b4f0fa49c1b5de6bf09 3422 network-manager_0.9.10.0-2.dsc
 3043d3019567f47678c9ed66273894aa527ff497 37892 
network-manager_0.9.10.0-2.debian.tar.xz
 2710ff6a109413c7ebd073ab418ba7840d581310 1435780 
network-manager_0.9.10.0-2_amd64.deb
 0be358b8235a3d10d6ff5f4a90b819f054f06c5c 286478 
network-manager-dev_0.9.10.0-2_amd64.deb
 d22c8240b9f0a3ecca44eb229bc08f6e1bc0cf91 315902 
libnm-glib4_0.9.10.0-2_amd64.deb
 1f83590bb70623bb113143730df939aabf8be9d7 426280 
libnm-glib-dev_0.9.10.0-2_amd64.deb
 48d898c101e1bfd7b7208125a179cc8722680544 244302 
libnm-glib-vpn1_0.9.10.0-2_amd64.deb
 f0b23c7f3672c12efce954d8ca6350b0e18d8a2a 235918 
libnm-glib-vpn-dev_0.9.10.0-2_amd64.deb
 b40272d214a438f257fe4ec553c46d69ba6177c1 364228 
libnm-util2_0.9.10.0-2_amd64.deb
 9d1a231c9698e034b7e864faa229940c089a0af1 419816 
libnm-util-dev_0.9.10.0-2_amd64.deb
 a22b3ba0fbda466dcff3a1d7d37a9a85237e262f 2863166 
network-manager-dbg_0.9.10.0-2_amd64.deb
 28248ef5d46fa44b22dcf3276bb4fae114c70af5 269826 
gir1.2-networkmanager-1.0_0.9.10.0-2_amd64.deb
Checksums-Sha256:
 6bd348fc2df57987e5bfc528a07d6624ba7205eea0c3c1fe4769d83a608c3f48 3422 
network-manager_0.9.10.0-2.dsc
 ef5a9e051837f212022f1f5dc76b640eb4e769828d3b331c5d8f4c32b44212b6 37892 
network-manager_0.9.10.0-2.debian.tar.xz
 fa166421d02406b68809c7c08da35b9150f76d3ad90918940ad3c781cf64 1435780 
network-manager_0.9.10.0-2_amd64.deb
 cec67ffbae99e790030637c39894df9d0f3b7d14372e240828caa47b785f09c2 286478 
network-manager-dev_0.9.10.0-2_amd64.deb
 8bf04b015dfc253a43c49bfef9072e9d3a83cdefb156635f2236efc3fc357470 315902 
libnm-glib4_0.9.10.0-2_amd64.deb
 a71ce513737a41bd1e3688985ffcf8418ae4ce2cd2ee7e5051fdc798cb244d64 426280 
libnm-glib-dev_0.9.10.0-2_amd64.deb
 ef5e499620f224405727bdfe836b9c008c274239ff43def6846f5cd87d56aa52 244302 
libnm-glib-vpn1_0.9.10.0-2_amd64.deb
 806cd821ba36a323d2790d7f03a3c5d965da0a1177ebf7c916157c51822c55af 235918 
libnm-glib-vpn-dev_0.9.10.0-2_amd64.deb
 5fa765cbceca611b3cf74d10469f692613b52727782c8db562709622afe8be44 364228 
libnm-util2_0.9.10.0-2_amd64.deb
 f5718cf5fcf819a4a452e306a317a42102e1415dc49bab534290ae89400f701e 419816 
libnm-util-dev_0.9.10.0-2_amd64.deb
 183570207b862531cb812d7f363fca4081dac26592b05df37483aedb3d058366 2863166 
network-manager-dbg_0.9.10.0-2_amd64.deb
 acb05ff1977b7d5e758f9f10338911a5db4f0566d9fcc5b298e98743a5055986 269826 
gir1.2-networkmanager-1.0_0.9.10.0-2_amd64.deb
Files:
 945023ac2821c2a89d5a7c91c70e4c3b 1435780 net optional 
network-manager_0.9.10.0-2_amd64.deb
 7b2f2e7ab17ee8fefbbad7b0eff79116 286478 devel optional 
network-manager-dev_0.9.10.0-2_amd64.deb
 3b9934a0b3be4a9ef121da1dba9616b5 315902 libs optional 
libnm-glib4_0.9.10.0-2_amd64.deb
 3b6f732fecb369b1c4b066738342f817 426280 libdevel optional 
libnm-glib-dev_0.9.10.0-2_amd64.deb
 c250b222556fdcfbee945074563b0578 244302 libs optional 
libnm-glib-vpn1_0.9.10.0-2_amd64.deb
 025d521320958a3b2469eb22013b012f 235918 libdevel optional 
libnm-glib-vpn-dev_0.9.10.0-2_amd64.deb
 13bdeafada7997b998cd3a5083f894ca 364228 libs optional 
libnm-util2_0.9.10.0-2_amd64.deb
 ee78490a10fd557499fce91ab7aa6c5a 419816 libdevel optional 
libnm-util-dev_0.9.10.0-2_amd64.deb
 2a8ec33402ef64a9db63d3ff3e3766e5 2863166 debug extra 
network-manager-dbg_0.9.10.0-2_amd64.deb
 5dce864122ebec8263f6add6b078e598 269826 introspection optional 

Accepted s3cmd 1.5.0~rc1-2 (source all) into unstable

2014-09-02 Thread Mikhail Gusarov
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 02 Sep 2014 19:45:02 +0200
Source: s3cmd
Binary: s3cmd
Architecture: source all
Version: 1.5.0~rc1-2
Distribution: unstable
Urgency: low
Maintainer: Mikhail Gusarov dotted...@debian.org
Changed-By: Mikhail Gusarov dotted...@debian.org
Description:
 s3cmd  - command-line Amazon S3 client
Closes: 534733 669002 718673 750561 754301
Changes:
 s3cmd (1.5.0~rc1-2) unstable; urgency=low
 .
   * Add missing python-dateutil, python-magic dependencies
 (Closes: #754301, #718673).
   * debian/patches/do-not-loop-in-rb.patch. New patch (Closes: #750561).
   * debian/patches/return-non-zero-code-from-put-command. New patch
 (Closes: #669002).
   * debian/patches/manpage-sync-checks.patch. New patch (Closes: #534733).
Checksums-Sha1:
 f4e5db64bb07aadc4f6328011b3311963465aa5f 1964 s3cmd_1.5.0~rc1-2.dsc
 aeededbf82ab39ee85b56682245cf0017c1d74f7 6780 s3cmd_1.5.0~rc1-2.debian.tar.xz
 5b9e444d273294e0a9fe5e6fca85c838a6a3161c 75666 s3cmd_1.5.0~rc1-2_all.deb
Checksums-Sha256:
 e0320317c1005da012060d2a9cbeb234a239e3aa128b442145efe14acf04d294 1964 
s3cmd_1.5.0~rc1-2.dsc
 52e87f0cb95c41a0c052f86ea732f9f10675cc928278d3d945564476f3e0 6780 
s3cmd_1.5.0~rc1-2.debian.tar.xz
 9735ddd5c52a894e9112f23bd5168b33a0b6857a30fb3f95d2cc62d54891ba6a 75666 
s3cmd_1.5.0~rc1-2_all.deb
Files:
 d7a06194b9582f45889d191417ed2108 75666 utils optional s3cmd_1.5.0~rc1-2_all.deb
 d03e63eec2db4dd95826161e9453407d 1964 utils optional s3cmd_1.5.0~rc1-2.dsc
 22ca1321aa9bcdc1c9270884db44c432 6780 utils optional 
s3cmd_1.5.0~rc1-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG/MacGPG2 v2.0.22 (Darwin)

iQIcBAEBCgAGBQJUBgMtAAoJEJ0g9lA+M4iI0coQAMRTI/5bGUaTuSJL8/AEIlL5
rWziFDWT6aeZpBnusZthviC6kBb/Bfv+pVVNK3ZlGBtMxgglIEdPLkMG+Epc3iL4
Fo1DKGG+Zy0uK9b9kwkdnP1xZvfrvg+TjnK3lNLPdv75c8SnOggV2f6fdKI+mfce
DcOtOXIPQR3lUOUVtJcXklFio4AtqWAVdwHNXkXqULSk67rzyxyBHSbmFX0zQujt
BDBTkhOhQ0SCEAUp/dZcejwwEDrOBH5jpwRuqF6ibgUcI3CekpaG+nM4OTg+YHYZ
1UGe6ONbh4k+mleSQqP/EIe9jQVr2f7j0f4WQxWrprmulBfUiznG3vowF85S+66j
nyZlBAiGcBLdSSAXqftfl+/PRzTpF5LGRRFE+QRObEzl8/qj8K27M5iusiN4Pz69
gAJkFZRm9ZvBn9vA+jIBvFi/tWVXAcegcli5AdozJjwuLHgCCOjGcLgF1dZeGdQT
qxhBgk2vTJQNbrql2y6zGG0F1k61Xei10L0yY/Yhf1Z2ZBpEOxhsH2zn7ZfxTWqH
V70eh6EuQeV8syFac1Ue2+tM4Iu+oBFXBK/K2ssYBI5JYmQ/Ss5/TMfi+MrlxWy1
LEMHZY1UDPDAc8O5C966nIwYS1n/6pi1BJr0j+XDGCviMTYEYcc0/Cgppu2D10G4
1AkxfuvTeD+Hd2J/UZ+u
=Wwyr
-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: https://lists.debian.org/e1xosr1-0006i1...@franck.debian.org



Accepted newsbeuter 2.8-2 (source amd64) into unstable

2014-09-02 Thread Nico Golde
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 02 Sep 2014 12:15:52 +0200
Source: newsbeuter
Binary: newsbeuter newsbeuter-dbg
Architecture: source amd64
Version: 2.8-2
Distribution: unstable
Urgency: low
Maintainer: Nico Golde n...@debian.org
Changed-By: Nico Golde n...@debian.org
Description:
 newsbeuter - text mode rss feed reader with podcast support
 newsbeuter-dbg - debugging symbols for newsbeuter
Closes: 760269
Changes:
 newsbeuter (2.8-2) unstable; urgency=low
 .
   * Add missing copyright statements for filter/Parser.frame,
 filter/Scanner.frame, and test/lemon.h (Closes: #760269).
   * Add version to GPL path in copyright file.
Checksums-Sha1:
 bf69980139a2302ed84489322411f1a1acaf0fc2 1885 newsbeuter_2.8-2.dsc
 1fbdca302cec38c9c74b188610a44bee5c8d 6288 newsbeuter_2.8-2.debian.tar.xz
 91dbb84143b9c71cc73aae93bf8239138c10b1fd 604306 newsbeuter_2.8-2_amd64.deb
 0f0057b6816b7b6d3f015399800e8312ce37831c 5792018 newsbeuter-dbg_2.8-2_amd64.deb
Checksums-Sha256:
 cf41d048ce2ec2eccbb95717fe4a9097117ab8cacfb555c31ec3bb0e0cbf8f5d 1885 
newsbeuter_2.8-2.dsc
 7bc7887655b8fe51eb53bbf42be000288c754a5f6227208488ad48082c255f7b 6288 
newsbeuter_2.8-2.debian.tar.xz
 094c7681a1892b830f689f16c3a1337dbdade3d4bc009a8482536d4f9d4b0f19 604306 
newsbeuter_2.8-2_amd64.deb
 175e17bf04fd46874aef6e9d836264f563af2d3970fd08c57e97c03c25b24b38 5792018 
newsbeuter-dbg_2.8-2_amd64.deb
Files:
 6e742daa6322a09e06725a5c2660 604306 net optional newsbeuter_2.8-2_amd64.deb
 993db39461606f6134c7fb95a6f4ea65 5792018 debug extra 
newsbeuter-dbg_2.8-2_amd64.deb
 7c828f20f671a9222164868906ea21c6 1885 net optional newsbeuter_2.8-2.dsc
 4c5eafc10e67931277599b9ca0631df4 6288 net optional 
newsbeuter_2.8-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUBgyoAAoJEM1LKvOgoKqqQhoP/0TF+o8HnbFHWcQtvkr99reU
3/V/T8hI6qHc05xsy52kCAGF6J2MZSjej7mpzPBZq+hw2LJOiQzjwv5BzgLDojCL
/caFIvcl0EJmYmPcewcyzuoqUhtXVZE3g5XCDQ6weiEOHVETDQfNPomre2LADlj7
Xf6QyVNLtJ4hELm1bwjNBwsynwurrBUikb8r+x8ZNZZHojJD5Tm/FrEj0MFYrz6C
rRNF3tI1oi75GvMJ3FnW0wM4JrV1bHP945/UnHaYNOi6/GSwwXfLStTC+7Fq29o9
HAnnsSi1MMr8B9som1XYwAVCuZj0pyxESxYFuuE2EsAH7AotbvTeiIiqIujvPqpi
pcvL7o9K2MGRurgtRPKjK1IsIawBah7mByRR85IcFxYk/PyT9W2nkxcmwXLgUJbD
2OtzVWpqD4vOXR8qMiLcuMSStsOTFAKJZJ9TK/lyIJhNPbHL6MKQtN13klb0OBAD
1asSsqybjDlVqDIaJmsmZ+RgPQh+zF2rcskbOXmQOSqpiu/dEbJNHAhPU1LXnPGo
lZl4GA1ktslbznnjDW7IyH/cpu9ZJlCWe6O4T32AW96M8xxb2w6zXm0VdTkQXBPb
nEYjvCfPz1g2klQinDsR4Z+TLNEEa5ESqnpylZUneqVipwzOh7JKc4v6G9q7Bhyv
XSivJ14CVwJIPbEUdZYD
=cYEa
-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: https://lists.debian.org/e1xot8l-00030u...@franck.debian.org



Accepted libphonenumber 6.3~svn698-2 (source all amd64) into unstable

2014-09-02 Thread Daniel Pocock
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 20:47:56 +0200
Source: libphonenumber
Binary: libphonenumber6-java libphonenumber6-dev libphonenumber6
Architecture: source all amd64
Version: 6.3~svn698-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Daniel Pocock dan...@pocock.pro
Description:
 libphonenumber6 - parsing/formatting/validating phone numbers
 libphonenumber6-dev - parsing/formatting/validating phone numbers - 
development files
 libphonenumber6-java - parsing/formatting/validating phone numbers - java
Changes:
 libphonenumber (6.3~svn698-2) unstable; urgency=medium
 .
   * Add patches for JDK 1.5 build.
Checksums-Sha1:
 a68c7363c45b476f12e96a0ca2cbdc4f30eaf894 2772 libphonenumber_6.3~svn698-2.dsc
 1de06d2fa6eb57f306f453db6f2b963ef4751eea 6920 
libphonenumber_6.3~svn698-2.debian.tar.xz
 1ecbbe9056e0335cd6891f0d34bf8552473fbd96 1794290 
libphonenumber6-java_6.3~svn698-2_all.deb
 e8263ed5e0cbd9416ddca8a0cca10986fa98e3b7 1045096 
libphonenumber6-dev_6.3~svn698-2_amd64.deb
 6ed9bb92f308633e63487f8abb7fe4003671e162 1177486 
libphonenumber6_6.3~svn698-2_amd64.deb
Checksums-Sha256:
 87349b66c6ebfee35e8494ebbd6b5f23a8a5e560a0f8ebd501a18697aa256d69 2772 
libphonenumber_6.3~svn698-2.dsc
 683a5d998a9f88865f846d79ec64886bf0fc3a6741e44d5f6a476270b3b0ae4f 6920 
libphonenumber_6.3~svn698-2.debian.tar.xz
 3c59b1a23ae36cfd729c8163b989feb33449f49af9680709fe11e8ca5d4b5278 1794290 
libphonenumber6-java_6.3~svn698-2_all.deb
 228b0e3831093455f39550edb9a11c6a822cef08611a53428dcf82a6a459a409 1045096 
libphonenumber6-dev_6.3~svn698-2_amd64.deb
 73ec530e0ec480eaea892b1a7f30e03cf3e5d54faafae025e6f6a3f3e9be9495 1177486 
libphonenumber6_6.3~svn698-2_amd64.deb
Files:
 e11e99212480cfbfebbdc0fe3b93da1f 1794290 java optional 
libphonenumber6-java_6.3~svn698-2_all.deb
 2dcf191c6ca4fea36d96a27de6c7ea83 1045096 libdevel optional 
libphonenumber6-dev_6.3~svn698-2_amd64.deb
 6dc869616d25bd5db39a4942d5d7c91c 1177486 libs optional 
libphonenumber6_6.3~svn698-2_amd64.deb
 5dc0ec351ae71c72220a55d5e6c2b1d9 2772 libs optional 
libphonenumber_6.3~svn698-2.dsc
 12565a7f3b48febdd453757c8eff59c9 6920 libs optional 
libphonenumber_6.3~svn698-2.debian.tar.xz

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

iQIcBAEBCAAGBQJUBhNiAAoJEGxlgOd711bEHfMQAID9uJr+rjXLBORSHDhVX+Bl
9ifOk+3q6HUl5ZZfzW614YSQh/wyk5DJ/krAV39+CCbu1mEZhwtiebl35maFWqBY
fAPm+3n6zST5YVwI9qI+Mk31tMFcJj6YBLc4oIv6vApicj5KCr0WZFe+8dK7tiwx
RVr9Gq32Emcii+vgLGNtxbGXacgR9PawFnj8UKoWoF4tE9lcJRamSz3aScKIWIEa
+4jGs+8RIUMxz4x3WX6p8LlIQi7gJzOax4+vmJBGsUnlhGG/ZGGT7vZUffs5L5GB
gHYqEeB2gAYFq6lDK3eC46rR4eCLkUP87ENkUNJIUAsdtIvssZDVUeLL9nDL+aXA
IJnfIhLbrKhFx04HWzGbEF9Y5HHAE8+z6CU/BCVQ6LNsR+6N70mrCSG9ZD9m2+US
N6TkcfPSz7wu65bX41xKeRI/Ctq7if3ohJCKtPgJirh8ZSnsFni7aDlxZyoY6ZUc
w4djmJHcnWabg8JXhiAS1Lhf0a0SSzxSlaQ2/JDT+8Lu6GdRiZhBRsdYcqQ0NxOG
mNJIA4r4ZDWGZQgApBP9NdsZD/8mlBUykw1MKcVOllCz5VWZxniHvV6JI3PO998q
IDG0HDyzubUrqxArzaF9F1PWszIDPesRQU+gkwmXfFlJ7Q2DKwRp7ruNRc9NSNjT
ohxA8Um8PwVr5F0e8/C2
=1RM/
-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: https://lists.debian.org/e1xotbj-0006dx...@franck.debian.org



Accepted ircd-irc2 2.11.2p3~dfsg-2 (source amd64) into unstable

2014-09-02 Thread Kilian Krause
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 21:12:49 +0200
Source: ircd-irc2
Binary: ircd-irc2
Architecture: source amd64
Version: 2.11.2p3~dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Kurt Roeckx k...@roeckx.be
Changed-By: Kilian Krause kil...@debian.org
Description:
 ircd-irc2  - The original IRC server daemon
Changes:
 ircd-irc2 (2.11.2p3~dfsg-2) unstable; urgency=medium
 .
   * Pass CPPFLAGS as CFLAGS to make sure build system will not ignore them
Checksums-Sha1:
 de0f5103820670874227458a628f388095ca5ea5 1330 ircd-irc2_2.11.2p3~dfsg-2.dsc
 3a899364e5703e9a6bdc4b18325c9461aa75788b 21784 
ircd-irc2_2.11.2p3~dfsg-2.debian.tar.xz
 fd3e481c339826ea8404a8650722b78207a70240 428192 
ircd-irc2_2.11.2p3~dfsg-2_amd64.deb
Checksums-Sha256:
 381ac94bb22b31abec3133b35c195aa35103eed716acaa7788428c8543403bd2 1330 
ircd-irc2_2.11.2p3~dfsg-2.dsc
 8a1e9663f7a535533b4e0100524664819303738efde23a7f57566d359beb796c 21784 
ircd-irc2_2.11.2p3~dfsg-2.debian.tar.xz
 158a1b986ecce2aef90c6fb303640a12f278d1a58eb84089bae7a4c326c470f9 428192 
ircd-irc2_2.11.2p3~dfsg-2_amd64.deb
Files:
 8f925321ecc54df9ac6085b25033c0b8 428192 net optional 
ircd-irc2_2.11.2p3~dfsg-2_amd64.deb
 fbd0d770dd5f703433139dc2b240cbea 1330 net optional 
ircd-irc2_2.11.2p3~dfsg-2.dsc
 ea6a9a21f87d37810274f765b171d621 21784 net optional 
ircd-irc2_2.11.2p3~dfsg-2.debian.tar.xz

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

iD8DBQFUBheBvdkzt4X+wX8RAn0nAJ4uFkcoL21zn4jgWieNnx5z6+EVxgCbB/yW
yR/WpK4zbRkeG0BGLStR1oM=
=r3DF
-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: https://lists.debian.org/e1xotq0-0008mh...@franck.debian.org



Accepted avifile 1:0.7.48~20090503.ds-16 (source all i386) into unstable

2014-09-02 Thread PaulLiu
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 03 Sep 2014 01:20:38 +0800
Source: avifile
Binary: libavifile-0.7-common libavifile-0.7c2 libavifile-0.7-dev 
libavifile-0.7-bin
Architecture: source all i386
Version: 1:0.7.48~20090503.ds-16
Distribution: unstable
Urgency: low
Maintainer: Ying-Chun Liu (PaulLiu) paul...@debian.org
Changed-By: Ying-Chun Liu (PaulLiu) paul...@debian.org
Description:
 libavifile-0.7-bin - toolkit for libavifile
 libavifile-0.7-common - toolkit for libavifile
 libavifile-0.7-dev - development header files for libavifile
 libavifile-0.7c2 - shared libraries for AVI read/writing
Closes: 760067
Changes:
 avifile (1:0.7.48~20090503.ds-16) unstable; urgency=low
 .
   * Make libavifile-0.7-common binNMU version safe. (Closes: #760067)
Checksums-Sha1:
 c25d43a3aecbd2cdf9091c7f26ecaeeb7371a8da 2245 avifile_0.7.48~20090503.ds-16.dsc
 d0b94461d16eb493656d06498603a59eeb680043 28368 
avifile_0.7.48~20090503.ds-16.debian.tar.xz
 bec4d7112ad746807e757fa5f8afe61ab17a81db 83916 
libavifile-0.7-common_0.7.48~20090503.ds-16_all.deb
 340b8ba40d4e18da106bb986d2af116d78f57202 331994 
libavifile-0.7c2_0.7.48~20090503.ds-16_i386.deb
 78c43b8ccdca14420707f44016d300c960d7 46740 
libavifile-0.7-dev_0.7.48~20090503.ds-16_i386.deb
 2c8029087127456fba20c550f18faa1321ff9ae3 21728 
libavifile-0.7-bin_0.7.48~20090503.ds-16_i386.deb
Checksums-Sha256:
 5e0f6cdad0242002eb4485f9d2de44e1c2cef545ba5b023f918e34d37ddb3df7 2245 
avifile_0.7.48~20090503.ds-16.dsc
 6642acab6e7a4c46e08fdab7b51ba06a124a7d92b97e265aa0048b3c614f2afa 28368 
avifile_0.7.48~20090503.ds-16.debian.tar.xz
 b3e69de681b8d4b7d25007bdf5ead8116a0db9b7d3bb32726a9340769f5a40d5 83916 
libavifile-0.7-common_0.7.48~20090503.ds-16_all.deb
 29ccad833b4eca0ad79f2b3646cb4c351508d7b8e33d18b0547a580013c65fd7 331994 
libavifile-0.7c2_0.7.48~20090503.ds-16_i386.deb
 873daedc0874272525ddcfe5f1b54b6c1ecc9a4cf2c84e82150f80d6a973ecd0 46740 
libavifile-0.7-dev_0.7.48~20090503.ds-16_i386.deb
 a8f1470ebe0ecb7648f9c27f1d660a6de78bfd4e93b0ff1bd46ea3b5986855a8 21728 
libavifile-0.7-bin_0.7.48~20090503.ds-16_i386.deb
Files:
 e4985cdde25941b25dfac0668178284d 83916 misc optional 
libavifile-0.7-common_0.7.48~20090503.ds-16_all.deb
 a80a7f8918f43e8f2ca6802be664b006 331994 libs optional 
libavifile-0.7c2_0.7.48~20090503.ds-16_i386.deb
 5b12b7bc8ec6304a21ed90354f16eebd 46740 libdevel optional 
libavifile-0.7-dev_0.7.48~20090503.ds-16_i386.deb
 25d56ccb7f121b1cc1421873cb04f3fe 21728 misc optional 
libavifile-0.7-bin_0.7.48~20090503.ds-16_i386.deb
 6d4d74995608715d76bcd844d5fa98fa 2245 libs optional 
avifile_0.7.48~20090503.ds-16.dsc
 86ead8eb847a3d0c0c02548bd5d85faa 28368 libs optional 
avifile_0.7.48~20090503.ds-16.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUBgu+AAoJEEQXP6E9BYiIBMQP/Rn+Qw4sfExL7pjEMzlD8l5F
DilV/H4rsov82v5zsri55tiz4Moi1yodWFCgL98W1V4J4vkwcBU5clZHxgYcUkvy
O8eIouijI2NP5k254BEOf6p9Ng5WYZ8MlHS4g/GmX6EmIOJ74Ld6yIxswQ0wT3B6
U8cacMnUkg+0F3a6R0IBTzCltkIsHh3u+pQTQs6ce1A7xemyMyQE1AI50B6EABWn
mZMpa5ZvuyLPn/QqTUZ3NU989LVL68UgDaz/RK5Z6LL8saSujG5ynlg3OpPp3639
ze8q/Am/UBWVeK/P9XkWhGsNMxfAf+a+02SYVBBBZZPrcC9ip6i5nyUWrU0rDcvU
TXmFPJFFNihe4NhpdkHZk/jZ29q+ksV1dtkgRUuVhMBFw4gOGGebuGgl7jD8V6/T
a8vIDdiDF74cxQvg2RiCp1M3XlCabGGEBu1sD8ZxHU6X/Wy/P1YUwqt88qnfazaP
aCxZxEghkMTcy/nD12QrwI+cqzgXLjEnnftAfWwuLHjSSCeOKlDClFAMVeveaFg2
/MpK66Y4p+SIaSxFrvVSLEWQpXkK8jzRXSiVngmH1P6nhRlWMELro0VDv1ii/Sls
/pC86hBsN65B0c9TjBwYcsHZkB5nLjXVvdfmpY7IiaYHQLfvg/nese0AGWUcEpNl
kD+VNSb316m9SYL2HbkM
=Vtmv
-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: https://lists.debian.org/e1xou4c-0001db...@franck.debian.org



Accepted caribou 0.4.13-2 (source all amd64) into unstable

2014-09-02 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 21:27:18 +0200
Source: caribou
Binary: libcaribou0 libcaribou-common libcaribou-dev gir1.2-caribou-1.0 
libcaribou-dbg caribou caribou-antler libcaribou-gtk-module 
libcaribou-gtk-module-dbg libcaribou-gtk3-module libcaribou-gtk3-module-dbg
Architecture: source all amd64
Version: 0.4.13-2
Distribution: unstable
Urgency: medium
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description:
 caribou- Configurable on screen keyboard with scanning mode
 caribou-antler - Configurable on screen keyboard with scanning mode
 gir1.2-caribou-1.0 - GObject introspection for the Caribou library
 libcaribou-common - Configurable on screen keyboard with scanning mode - 
common files
 libcaribou-dbg - Configurable on screen keyboard - library (debug symbols)
 libcaribou-dev - Configurable on screen keyboard - library (development)
 libcaribou-gtk-module - Configurable on screen keyboard with scanning mode 
(GTK+ 2.0 modu
 libcaribou-gtk-module-dbg - Configurable on screen keyboard with scanning mode 
- module
 libcaribou-gtk3-module - Configurable on screen keyboard with scanning mode 
(GTK+ 3.0 modu
 libcaribou-gtk3-module-dbg - Configurable on screen keyboard with scanning 
mode - module
 libcaribou0 - Configurable on screen keyboard with scanning mode - library
Closes: 733555
Changes:
 caribou (0.4.13-2) unstable; urgency=medium
 .
   * Use dh-autoreconf during build to support new architectures like ppc64el.
 Closes: #733555
Checksums-Sha1:
 69c8ae81e6f907273b3c8127bf0977cc10ea6de6 3206 caribou_0.4.13-2.dsc
 f208a8f58787ed48a0dc81950b098e52d2123161 5344 caribou_0.4.13-2.debian.tar.xz
 e116b1194a6af5ad002c701d9536763830bbf490 10238 
libcaribou-common_0.4.13-2_all.deb
 637a96826a3e4922ea0e4c1bab0e3d74953f65e3 17752 caribou-antler_0.4.13-2_all.deb
 049a506ffb18bd35d88e435889d78aa01456ee02 46166 libcaribou0_0.4.13-2_amd64.deb
 8ba831303bf4991980bfe342a3ae117c69adbb35 16984 
libcaribou-dev_0.4.13-2_amd64.deb
 9cf2a737347a9d8501c88e64187d29cf7f4ce78f 12340 
gir1.2-caribou-1.0_0.4.13-2_amd64.deb
 2b25dacfe319055bf59bb589abe89e91ca4e40c5 152186 
libcaribou-dbg_0.4.13-2_amd64.deb
 42c3604be74d2236877ac3bec708ee2b98935769 81316 caribou_0.4.13-2_amd64.deb
 be0b467c801dfb63d6065a8a6c963e079dbd44a6 18628 
libcaribou-gtk-module_0.4.13-2_amd64.deb
 97f416d2a1cefff9ee543f1b1b61e6812a86d50d 43982 
libcaribou-gtk-module-dbg_0.4.13-2_amd64.deb
 4992f0bd9f9a90c9c38f79357ba22d6cfda2b3df 18588 
libcaribou-gtk3-module_0.4.13-2_amd64.deb
 226ff2934987c5f6d67e029a325cc278021b095c 37160 
libcaribou-gtk3-module-dbg_0.4.13-2_amd64.deb
Checksums-Sha256:
 33dab660312db34260f71f203adcf6eb6f3ebc4a44ec9ff1dd3085a22fa3e0bd 3206 
caribou_0.4.13-2.dsc
 f8325daf966e017b68418dd479a394039c591acc6e54327d17dfca980d88b7dd 5344 
caribou_0.4.13-2.debian.tar.xz
 8a775b3463c3d1d3b46f0ce076c3a73ec70dc528bc5268160e81f7abaf2457e0 10238 
libcaribou-common_0.4.13-2_all.deb
 73db2e632b74972b9c2ed92f3b91585f1c12dcf1d8fab4728f0aafcaed587667 17752 
caribou-antler_0.4.13-2_all.deb
 f2cf50c38ddf0878ab3d9a9b4450a91c8973ae1b155a07fa3303ba0011b2ac42 46166 
libcaribou0_0.4.13-2_amd64.deb
 cea53a82208da678bb9179dc2383eae71f0aed42e62aa5b331713e636d21a984 16984 
libcaribou-dev_0.4.13-2_amd64.deb
 2256123b6207de3ae8c5c999063ba3c40fd64f4da743d52370b621c6efae9e0e 12340 
gir1.2-caribou-1.0_0.4.13-2_amd64.deb
 1d9c0b2636609d88413db5079a8af1ff2be53be373877cd4163edba4c2aee4c2 152186 
libcaribou-dbg_0.4.13-2_amd64.deb
 4ba8e671ab9e3ec7a183255a6f62ea461a0ea462b94eb254cdb4cbaa03341939 81316 
caribou_0.4.13-2_amd64.deb
 eb8e3c4f6f66b2555b1aa4f6fb5e9c81e03cb8d8f6fbf6e3f13ba7dd0dd9d1b5 18628 
libcaribou-gtk-module_0.4.13-2_amd64.deb
 31be90a248e847619802c66221673c1cb45da088021e037614ae76f71c93272e 43982 
libcaribou-gtk-module-dbg_0.4.13-2_amd64.deb
 a0d915497a8065bc15f9645d00bd8bb8f8e9fcfb54718251aaa87c4a7a62d71f 18588 
libcaribou-gtk3-module_0.4.13-2_amd64.deb
 87e467f68d952d6a9535ab559cb62021148bfb38c67e5c2c937ce9226c528d44 37160 
libcaribou-gtk3-module-dbg_0.4.13-2_amd64.deb
Files:
 a62e0887dc42fafc2acae15378192009 10238 libs optional 
libcaribou-common_0.4.13-2_all.deb
 5ae6cf01ca1be6ddb0a5b8801df37a36 17752 gnome optional 
caribou-antler_0.4.13-2_all.deb
 42a9c8fb20cc35dbce6cc9e88b76dd11 46166 libs optional 
libcaribou0_0.4.13-2_amd64.deb
 4722478053fa8b668ec40c7f9f5e0da4 16984 libdevel optional 
libcaribou-dev_0.4.13-2_amd64.deb
 2a9ffa763afd02c3aa49155011ce5de3 12340 introspection optional 
gir1.2-caribou-1.0_0.4.13-2_amd64.deb
 7ea62e89ae50c7c55dd9ac4d1ce25994 152186 debug extra 
libcaribou-dbg_0.4.13-2_amd64.deb
 a90abf33ad8d1fc7e8c81ae824fe20d3 81316 gnome optional 
caribou_0.4.13-2_amd64.deb
 6a2b2ee126cd78a54365a316d68d86a3 18628 libs optional 
libcaribou-gtk-module_0.4.13-2_amd64.deb
 9041070a0cde415f2c5786f8506330f7 43982 debug extra 
libcaribou-gtk-module-dbg_0.4.13-2_amd64.deb
 788da4084337fcdf1561d5b227c5435c 

Accepted emacspeak 40.0+dfsg-3 (source all amd64) into unstable

2014-09-02 Thread Paul Gevers
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 21:25:56 +0200
Source: emacspeak
Binary: emacspeak emacspeak-espeak-server
Architecture: source all amd64
Version: 40.0+dfsg-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Accessibility Team debian-accessibil...@lists.debian.org
Changed-By: Paul Gevers elb...@debian.org
Description:
 emacspeak  - speech output interface to Emacs
 emacspeak-espeak-server - espeak syntesis server for emacspeak
Changes:
 emacspeak (40.0+dfsg-3) unstable; urgency=medium
 .
   * piuparts.debian.org reports that files are left after purge.
 No longer create /root/.gnupg during installation of the package. This
 is achieved by binding GNUPGHOME to a temporary directory during
 bytecode compilation (implementation in debian/emacsen-install).
   * Strip spurious spaces from this changelog
   * Add d/emacsen-compat to allow emacsen-common to correctly determine
 that emacspeak is an add-on (prevents an error message).
Checksums-Sha1:
 5788d14d80c359885e3da56a80f9c8599d32c612 1769 emacspeak_40.0+dfsg-3.dsc
 f09f1431a00a78fae03743f505400ecb946566fc 46680 
emacspeak_40.0+dfsg-3.debian.tar.xz
 43aede4a3e50c74d5c6902d05e56a26b462e 3906194 emacspeak_40.0+dfsg-3_all.deb
 9abb59fabc07e8ecd9ec0d30df9316456310f1b5 39052 
emacspeak-espeak-server_40.0+dfsg-3_amd64.deb
Checksums-Sha256:
 8fca58128be55f8a4d03ee707ce059693686674dd1a270d03ad701dcdf11c806 1769 
emacspeak_40.0+dfsg-3.dsc
 a559b5f8d0128e9309109760fc4c636a250f4f5dfdae3375463f8c9f7c60cbb5 46680 
emacspeak_40.0+dfsg-3.debian.tar.xz
 70e989dbd4d347d11abbfcf3887d77603b2a4f60402600fa1ecb0f761f516374 3906194 
emacspeak_40.0+dfsg-3_all.deb
 23a7c741f4a3976ad98fa39ef132c36e4863ab5119ab4966d840a6374167d797 39052 
emacspeak-espeak-server_40.0+dfsg-3_amd64.deb
Files:
 4ae119b0fcbd144fb586565fcddf6e25 3906194 editors optional 
emacspeak_40.0+dfsg-3_all.deb
 256acec8505ae6c4b751b715658458d5 39052 editors optional 
emacspeak-espeak-server_40.0+dfsg-3_amd64.deb
 1033da3e54a6e6617ef4e601e940810d 1769 editors optional 
emacspeak_40.0+dfsg-3.dsc
 13594809d9d8f6eb0c46918ab49c8312 46680 editors optional 
emacspeak_40.0+dfsg-3.debian.tar.xz

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

iQEcBAEBCAAGBQJUBh2WAAoJEJxcmesFvXUKTrQIAI2ILY2b/EfD8Jj1KvZu8X/y
zk6Uk2doTiY8r06ewAb6Nvpyz8umGJSvaPHjMmLY/9BQ+pahKE9SJ4Q4w3Fj4OUd
5D0GNt7RpngsKjhImPrYfpWsol/IDx3kkIMK/S5TzIGxSfYtBCCVrP6U4xEBkW6j
fgsETE8F3LppDrn0lH5CTypjshK9ud7KFvE6XERLlwgeSgsuD7btqHwjx7604Ziw
8uVZbeiMqfuxDjrI8HwAUNoXFyy42PjTx2qiOR1/tidK4MOP0DhJ2KhzL4wdAywo
UzGDfBxmhbugGnOCLVAlL03r/owdB7avLvF//AGjkvde4x8N4dZKq7s4pVZ7QBM=
=Zfkk
-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: https://lists.debian.org/e1xou4c-0001s0...@franck.debian.org



Accepted antigrav 0.0.3-6 (source amd64) into unstable

2014-09-02 Thread Vincent Fourmond
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 22:49:32 +0200
Source: antigrav
Binary: antigravitaattori
Architecture: source amd64
Version: 0.0.3-6
Distribution: unstable
Urgency: low
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Vincent Fourmond fourm...@debian.org
Description:
 antigravitaattori - Multiplayer flying saucer racing game
Closes: 752014
Changes:
 antigrav (0.0.3-6) unstable; urgency=low
 .
   [ Evgeni Golov ]
   * Correct Vcs-* URLs to point to anonscm.debian.org
 .
   [ Vincent Fourmond ]
   * Use dh-autoreconf to get rid of build problems on new architectures
 (closes: #752014)
   * Bump to recent standards, no need for changes
   * Now using system tinyxml (and not the embedded copy)
   * Refreshed patches
Checksums-Sha1:
 2f060dbaa40a361a44e147eca1ac4c50297b0b5f 1461 antigrav_0.0.3-6.dsc
 ceb105819724a0fcc4296547afff111002300e3f 6788 antigrav_0.0.3-6.debian.tar.xz
 73a5cde1b78df801a4a2eae4407a648fba3f993a 1375528 
antigravitaattori_0.0.3-6_amd64.deb
Checksums-Sha256:
 f8aa9369a3cdc1d843d10d3348ad915e426368903d58e58f5b9bb3763bd0d5e7 1461 
antigrav_0.0.3-6.dsc
 47d4c20ef964ee998cda07f508d9953e09bb25af38002bde48e56645eb970b84 6788 
antigrav_0.0.3-6.debian.tar.xz
 e52e2fa8b46a0cfd398640b4cf787763090c11d416baccc5c3b05c8a122424d5 1375528 
antigravitaattori_0.0.3-6_amd64.deb
Files:
 c0c8d79d3ff1864e0c7e5662d6dabaa0 1375528 games optional 
antigravitaattori_0.0.3-6_amd64.deb
 e145f99d4453a94033c73c39cf978dc6 1461 games optional antigrav_0.0.3-6.dsc
 a049e7f9c0f8fba81e53861deb989f2b 6788 games optional 
antigrav_0.0.3-6.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQGLiAACgkQx/UhwSKygsqepQCfQ0bDWBApGh8mQpxAzQcuCV81
InQAn0q4PyS3vN5M4daM5bNeE9KUlFIk
=htio
-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: https://lists.debian.org/e1xovew-0003w8...@franck.debian.org



Accepted freemedforms-project 0.9.2-1 (source all amd64) into unstable

2014-09-02 Thread Eric Maeker
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 31 Aug 2014 20:53:29 +0200
Source: freemedforms-project
Binary: freemedforms-project freemedforms-theme freemedforms-i18n 
freemedforms-common-resources freemedforms-emr-resources freemedforms-freedata 
freemedforms-emr-doc-en freemedforms-emr-doc-fr freediams-doc-en 
freediams-doc-fr freemedforms-libs freemedforms-emr freediams
Architecture: source all amd64
Version: 0.9.2-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Eric Maeker eric.mae...@gmail.com
Description:
 freediams  - pharmaceutical drug prescription and interaction manager
 freediams-doc-en - FreeDiams English documentation
 freediams-doc-fr - FreeDiams French documentation
 freemedforms-common-resources - common data for the FreeMedForms project 
applications
 freemedforms-emr - electronic medical record manager
 freemedforms-emr-doc-en - FreeMedForms EMR English documentation
 freemedforms-emr-doc-fr - FreeMedForms EMR French documentation
 freemedforms-emr-resources - data for the FreeMedForms EMR
 freemedforms-freedata - free extra-data for the FreeMedForms project
 freemedforms-i18n - translations of the FreeMedForms project
 freemedforms-libs - common libs for the FreeMedForms project
 freemedforms-project - FreeMedForms project
 freemedforms-theme - theme for the FreeMedForms project
Closes: 760236
Changes:
 freemedforms-project (0.9.2-1) unstable; urgency=low
 .
   [ Eric Maeker ]
   * New upstream
   * debian/rules:
 - Correcting subproject build
   * debian/*lintian-overrides:
 - updating to 0.9.2 build
   * debian/upstream/*;debian/watch
 - Source code is now hosted on sourceforge
 - Upstream gpg-pub-key for the pgpsigurlmangle option
   * debian/*doc*;debian/control
 - Correcting typos
   * debian/*doc-base*;debian/*links
 - Correcting doc-base packages content
 - Removing symlinks
   * debian/control:
 - Updating build dependencies to the new libquazip-dev
   Closes: #760236
 .
   [ Andreas Tille ]
   * cme fix dpkg-control
   * Fix capitalisation of language names in descriptions
   * Do not Conflicts with version freemedforms-emr-resources
Checksums-Sha1:
 75678a91db0342cf93afeb81a2276c99a63892e0 3150 freemedforms-project_0.9.2-1.dsc
 a96d09d396abf48c67277b24112ef855313eeda6 18197734 
freemedforms-project_0.9.2.orig.tar.gz
 7c707e95f9e8e91157651ed3f9c2c4c539be6c8c 21156 
freemedforms-project_0.9.2-1.debian.tar.xz
 55a6359f0dc5d67744d20709e3459e75db125fd2 7714 
freemedforms-project_0.9.2-1_all.deb
 f43ca703c84ef5cb75b0a2d9c4e62b36e755a000 2409172 
freemedforms-theme_0.9.2-1_all.deb
 35a63d165ad20614d7bbfb2b62b3a9910f5ec7a6 117324 
freemedforms-i18n_0.9.2-1_all.deb
 bfd8ec7b4db21ed27ed0da39adfb6dfe74a22fb4 549108 
freemedforms-common-resources_0.9.2-1_all.deb
 ed8dfce0a496284cff06bc2396a906747aa3f6b5 1631806 
freemedforms-emr-resources_0.9.2-1_all.deb
 7910349d1448be2dc3b80049f9aa38ff692d219b 2335922 
freemedforms-freedata_0.9.2-1_all.deb
 5ae36421779628a2c0cd4f5d6d5f4e23c0524821 8294 
freemedforms-emr-doc-en_0.9.2-1_all.deb
 b31584da97f857ee8998cfe6d24d0125e1fc7c26 8298 
freemedforms-emr-doc-fr_0.9.2-1_all.deb
 43d98066d16ed821ecc335c9360d5903e24d6797 8420 freediams-doc-en_0.9.2-1_all.deb
 4687268597ba573a6a1902d8c6817c5a808f9eae 8422 freediams-doc-fr_0.9.2-1_all.deb
 7fbfdebb148783a8865a868825ae9110834e5c99 832188 
freemedforms-libs_0.9.2-1_amd64.deb
 4f52851d30ba70ecfce5be8ec259154344614fee 3074270 
freemedforms-emr_0.9.2-1_amd64.deb
 0953077e8800eec8af7e4eb1e197207c28e5815b 1188130 freediams_0.9.2-1_amd64.deb
Checksums-Sha256:
 73386074449c38c0a8f3d45ed1121d826bf9a66c6f468bd72e5eb58fd014f61c 3150 
freemedforms-project_0.9.2-1.dsc
 935d0230a34136d73e1162c3d0f3856fae11baf63ff5600bf612a3541cc10a13 18197734 
freemedforms-project_0.9.2.orig.tar.gz
 a5d1f7317c7485ad34a7cf8c25ea33980e1a34abcb3a1b6780469af5de2081c5 21156 
freemedforms-project_0.9.2-1.debian.tar.xz
 e0f92550755009aa179d63da0fcb8a3fe6dbd43fd213af6f73a995707b305ac7 7714 
freemedforms-project_0.9.2-1_all.deb
 cf1f5da3c92a2f9d4d601a214e8ce70ff54a0d59f64d8dc01da1694ffbd91333 2409172 
freemedforms-theme_0.9.2-1_all.deb
 a1d5c1ed189ef00be62cd094ecf654b4dd687c03e7ddd80ac972c69fb6e296e1 117324 
freemedforms-i18n_0.9.2-1_all.deb
 a62bb072dbf213881c02feb12420806c3d89d28097bf44f5dd269858b40452ea 549108 
freemedforms-common-resources_0.9.2-1_all.deb
 c9a676cc4a86689631c652e0fe91d79eb2f7c3b75753ad94bec46c435ce0c841 1631806 
freemedforms-emr-resources_0.9.2-1_all.deb
 a0df2fad32da60d942db67c95302c508fa93c9910ccf867746fdee3192a642c8 2335922 
freemedforms-freedata_0.9.2-1_all.deb
 d5ff0c04c87b0dabc2ee0e866f46f5db70c30d96779af7db0efed2d43fcdc72e 8294 
freemedforms-emr-doc-en_0.9.2-1_all.deb
 f70094ae894190203f6f114f0c32f0a0637a1407f4fc8838f65096397fe6 8298 
freemedforms-emr-doc-fr_0.9.2-1_all.deb
 4cc1af4875ebfcf4d246c314d0f2f165c4dbaee2bddfbe36ee219dba3c4b1d0e 8420 

Accepted netcf 1:0.2.3-4.1 (source amd64) into unstable

2014-09-02 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Thu, 28 Aug 2014 22:21:48 +0200
Source: netcf
Binary: netcf libnetcf-dev libnetcf1 libnetcf1-dbg
Architecture: source amd64
Version: 1:0.2.3-4.1
Distribution: unstable
Urgency: medium
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description:
 libnetcf-dev - development library and headers for netcf
 libnetcf1  - cross-platform network configuration library
 libnetcf1-dbg - cross-platform network configuration library
 netcf  - programs for the netcf library
Closes: 755777
Changes:
 netcf (1:0.2.3-4.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Use dh-autoreconf to fix FTBFS on ppc64el (Closes: #755777)
Checksums-Sha1:
 cceef6238b5fb4fd19a93a64b6536dfe3be33fe2 1475 netcf_0.2.3-4.1.dsc
 893c72c30d6fd2e1dd3b0e5098ab63eb95a69fb0 7660 netcf_0.2.3-4.1.debian.tar.xz
 1e0e5dbbf6e033754e519ca9863b89d62e4ecd49 18230 netcf_0.2.3-4.1_amd64.deb
 3038f24d85cbbed2255cb55a05cfcb3e6a4b081f 39360 libnetcf-dev_0.2.3-4.1_amd64.deb
 d63a675ff3ea3b5c2e041f5f5d8deaf7f680ca97 45110 libnetcf1_0.2.3-4.1_amd64.deb
 8263de48a14e11ca49e8dd1280bfea7e8557159d 96944 
libnetcf1-dbg_0.2.3-4.1_amd64.deb
Checksums-Sha256:
 f317eac12f4db3909990d709749feaa72abe659f1e3a5a62578e56d8edabec3a 1475 
netcf_0.2.3-4.1.dsc
 043ffaa64c7675fe4eeedbb415e6b1da8f0479403a3aa8323b297a064c9a248f 7660 
netcf_0.2.3-4.1.debian.tar.xz
 e233f46f6466d1c228055ad70a877204b398cd0873fad6a20dd7b6c410972879 18230 
netcf_0.2.3-4.1_amd64.deb
 0c2c638bf0a5ba9384fc441bc848d8dd5dc4f4946fdf63fb5697013fe9a7c7ec 39360 
libnetcf-dev_0.2.3-4.1_amd64.deb
 3c52eef3c78e41a8794f44a172b4d65957eed0f6efc13fea967eab31b02bf2b4 45110 
libnetcf1_0.2.3-4.1_amd64.deb
 a53391e2954d8d62ace67fdbaa36f9799c31852fecb2373d72ceb34e3d0ef0da 96944 
libnetcf1-dbg_0.2.3-4.1_amd64.deb
Files:
 9b51859d3be90f2e299052a3974999ad 18230 admin extra netcf_0.2.3-4.1_amd64.deb
 a411b09f1ab8f5dee33fa277da8cfe2b 39360 libdevel extra 
libnetcf-dev_0.2.3-4.1_amd64.deb
 f65c0af91f777545b36540d4d57d9544 45110 libs extra libnetcf1_0.2.3-4.1_amd64.deb
 55a9a20dcb597ec13c837d036832450d 96944 debug extra 
libnetcf1-dbg_0.2.3-4.1_amd64.deb
 b4b72c89ac051f0a397d5055505fdfbd 1475 libs extra netcf_0.2.3-4.1.dsc
 1faeb37ef4d21368263a0a9b932e0b36 7660 libs extra netcf_0.2.3-4.1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlP/kC0ACgkQUCgnLz/SlGglxwCgu2QMC20M18GNp2DU2BjpaaSm
w1IAnRYNgBcSpikO8+EazmkDolEjAcok
=BGjL
-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: https://lists.debian.org/e1xovim-0004hc...@franck.debian.org



Accepted octave-odepkg 0.8.4-2 (source amd64) into unstable

2014-09-02 Thread Thomas Weber
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 02 Sep 2014 19:43:08 +
Source: octave-odepkg
Binary: octave-odepkg
Architecture: source amd64
Version: 0.8.4-2
Distribution: unstable
Urgency: low
Maintainer: Debian Octave Group pkg-octave-de...@lists.alioth.debian.org
Changed-By: Thomas Weber twe...@debian.org
Description:
 octave-odepkg - solve differential equations and initial value problems in 
Octave
Closes: 759741
Changes:
 octave-odepkg (0.8.4-2) unstable; urgency=low
 .
   [ Thomas Weber ]
   * debian/control: Use canonical URLs in Vcs-* fields
 .
   [ Rafael Laboissiere ]
   * Bump to Standards-Version 3.9.5, no changes needed
   * debian/patches/correct-fflags-for-f77.patch: New patch (Closes: 759741)
 .
   [ Sébastien Villemot ]
   * Uploaders: set as Rafael Laboissiere.
Checksums-Sha1:
 d1920ffa603b655ab0628079856e386b7cd7006b 2006 octave-odepkg_0.8.4-2.dsc
 4a3c8bb434f3959ba5272639636595515b0d5e68 5540 
octave-odepkg_0.8.4-2.debian.tar.xz
 54893078cf6b27abf3851529efb72e3a8d52903e 337368 octave-odepkg_0.8.4-2_amd64.deb
Checksums-Sha256:
 4210b44370af7d1ddb75e28b6036865a13b3cd45ab065bb9d576a97d4c95b59d 2006 
octave-odepkg_0.8.4-2.dsc
 a9e210370288542da54c6a6f8cdd20494740f904b3ce3e3d236aebf5822aa813 5540 
octave-odepkg_0.8.4-2.debian.tar.xz
 1399d2c40211d4c54f7ab0bed848bc95ed9f0019fb60bf9c20b0edf5aebc012b 337368 
octave-odepkg_0.8.4-2_amd64.deb
Files:
 69aecc972c65df6986f89d5ba9dbcb3f 337368 math optional 
octave-odepkg_0.8.4-2_amd64.deb
 b435610d6f398c325647750077e5e838 2006 math optional octave-odepkg_0.8.4-2.dsc
 45705463acaec4228588c0f09b429902 5540 math optional 
octave-odepkg_0.8.4-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUBiWqAAoJEMf/k4scGj5J70wP/Req7RHeX0Fjw4E0RVpU+/YA
OFWz3lJPn5v9oftcNIuqD9Y17IbhIJxNLqfkbHFO08vZ9v92SN8b8khFRM0HQV/C
z6m50STwMaerDiq7bepci9dbfBY476seg4SuVfRFmxsgcUMmdJSJOZYBFRgrOWwW
2hhcZojbdfS6fQEYp7OLNmTSt3IRXgMl5Lr02c7U9EnpDxXVm6MZQ83J3RGnlX5w
oC9fs9kMAT4izWM6CuTRZOhSNVWV1fGNBBZyyfkRqbnLV/BHUCK5gODRK9UxjL0d
bGFF8uLikPYejPnScCFEYfhH14cE+UQdlThUW3arG2eeb/wsPVNebe70gEilpuQf
CeDFXhNpujg1Crour2oGhlHwAUsgcygejyp+FpeC0GR/hoQg/YrnbIUF2N8XSHGT
LgNJN4RXTv8XMauCKzhROgHU0fytRyJw5hfPOS+iDP/FDAWOkQgXz3GuBNKqL9OD
9h6vBT7jO6NUwnVg7m7g27LYFrPgJYd2ugBjde9QkQmfyBTtKhAqLU4gNIcPCFUJ
EJz5nGYGLGIePosxg7FDRuOjLhyAMSnk0lwLMxan566HT3La6SNaW/O/WndfsTdT
moZFDk0WYgtVT8lWtRn/qDzKFQ3v1ii/SVPWNyyLeNDYVSFDEXhKbRrX22O7XDQm
z0VAlyesS+Jr0OrEHPyE
=j+/q
-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: https://lists.debian.org/e1xovix-0004km...@franck.debian.org



Accepted pyspf 2.0.10-1 (source all) into unstable

2014-09-02 Thread Scott Kitterman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 15:48:20 -0400
Source: pyspf
Binary: python-spf python3-spf spf-tools-python
Architecture: source all
Version: 2.0.10-1
Distribution: unstable
Urgency: medium
Maintainer: Scott Kitterman sc...@kitterman.com
Changed-By: Scott Kitterman sc...@kitterman.com
Description:
 python-spf - sender policy framework (SPF) module for Python
 python3-spf - sender policy framework (SPF) module for Python 3
 spf-tools-python - sender policy framework (SPF) tools for Python
Changes:
 pyspf (2.0.10-1) unstable; urgency=medium
 .
   * New upstream release
   * Add Breaks: tumgreyspf ( 1.36-4.1~), which should have been there since
 2.0.8
Checksums-Sha1:
 1e8f57b2d158793b7abfb01ba9d32deb940ed081 2101 pyspf_2.0.10-1.dsc
 c1676438c324cd790563a4998ec1c335e9397d04 62890 pyspf_2.0.10.orig.tar.gz
 2df17e986ef63b95c0e7dd0959c8252bca7627a7 12609 pyspf_2.0.10-1.diff.gz
 81753726a7d45bd2bd085f90669f521e5251a943 61812 python-spf_2.0.10-1_all.deb
 de0c1c4b2c1ad81783676207de7f17cdf13ad70d 61904 python3-spf_2.0.10-1_all.deb
 08555697a055fa2a333d30ac3db30e71e2a64e4a 22252 
spf-tools-python_2.0.10-1_all.deb
Checksums-Sha256:
 adb62870f3f7d59b2686704ac1bb3b6b91c5a2fb36999359adb775d50da08541 2101 
pyspf_2.0.10-1.dsc
 0a3be1cc1915649ed8960a1b8add4110379c3c348e98e642a53f69d028709de8 62890 
pyspf_2.0.10.orig.tar.gz
 d3c357f580adce4cfcae3412d3580a66a58e652a0c3b23bdcfc6c3a396446099 12609 
pyspf_2.0.10-1.diff.gz
 8501d248b5c948913c54e35717b43c35fbb2c77af1ec8d9b39c570088f5d5a19 61812 
python-spf_2.0.10-1_all.deb
 7c56060d93884b674cbb3cb33090c5a6abeb1e4396a832fac65e542c75cf27e7 61904 
python3-spf_2.0.10-1_all.deb
 47f5715e241b0d71a206af88fe8781e68c63507476157f9b162c62cfe276a7c4 22252 
spf-tools-python_2.0.10-1_all.deb
Files:
 eafe537758a148c16cc9685effac9bf0 61812 python optional 
python-spf_2.0.10-1_all.deb
 b7b541f98b172eb6effbd04e7d675b2d 61904 python optional 
python3-spf_2.0.10-1_all.deb
 6ac88a274f71965e1a452870488c00c7 22252 python optional 
spf-tools-python_2.0.10-1_all.deb
 cf862dda7a7331c570f1cd209279212d 2101 python optional pyspf_2.0.10-1.dsc
 da958beeff04b8c64afd19cda3cc825a 62890 python optional pyspf_2.0.10.orig.tar.gz
 568ef54981d34b2055f92e97725e36e1 12609 python optional pyspf_2.0.10-1.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBiHPAAoJEHjX3vua1Zrx6IEP/3BwqdTimnbwZYDklvhv4j7g
6tsclZfp0xJSRCHLQ6V6WuI2NsZekKV2pNF2PT9e/IrG9UBEVfafdXSM8x1cOX2w
i6AzU7EeUJF1nUZPj1MfD8g9SFNwGGN2EjpdEZPz/Oi3Elhplyo3dwapJ4v+Zhnc
zjsFbDFSbqHKyX9fbYgi/9fFljL1XNoFzpSCcWoH6SSMosT+Dxf98TTiDMa65/WS
ENd8bZq+TJUmzyognO/CfCJZb5/LdecWPbuhnHkBYhs29WcYnxyusah2ijo9SL9R
gbEhO8eQcXSWVGyWsVw9gwIwGqYtZEgwFQtmUjpjOaiKLHQ8tTndUWml60q4OBEf
66eTrlmw56Gb9iCfKzZpaT89E8rTgD0fVN3mknnzo21Bc9bADtbuyDwLU010WyC+
SUZvvOE4LBWHHi4ugzGQpo8BGNYI9EYraSF+IFgiVAPFL9Fy0ZinExnchdV4yvWQ
7kwj7uU0xwzX6jzmYnBAkRLOCNPXZ9niinT/FTec+UMwTjtlgDm8N3FpDMqmKNT3
Jf/n/WjJrjB96EIijPL5HtVVj8TPXAemt6VKe2i6aP0hIB+SpAbTt2I6FXgdiBnI
fzeIHlhvR8jsLsnm83tVzJ7ROBa0z0E1BfT3gzPYaNCA/LJ98O8VGyHjL3dDEacT
QQKQwwUTb9f0tqFeBvkR
=62ML
-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: https://lists.debian.org/e1xovii-0004xp...@franck.debian.org



Accepted ruby-backports 3.6.0-3 (source all) into unstable

2014-09-02 Thread Jérémy Bobbio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 02 Sep 2014 19:37:14 +
Source: ruby-backports
Binary: ruby-backports
Architecture: source all
Version: 3.6.0-3
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Jérémy Bobbio lu...@debian.org
Description:
 ruby-backports - backports of new features for older versions of Ruby
Changes:
 ruby-backports (3.6.0-3) unstable; urgency=low
 .
   * Revert the previous change and instead add the missing Build-Depends
 on ruby-test-unit. Thanks Cédric Boutillier for the proper fix.
Checksums-Sha1:
 a26564a7a89ed9f9ccca2c3df1bc1a81389eaf80 2071 ruby-backports_3.6.0-3.dsc
 7982b6bf3bd8bc3789db902f4e064932a7678a33 6571 
ruby-backports_3.6.0-3.debian.tar.gz
 f35d2a85bc71e0e798ee210b3df48c87fad64cd8 69690 ruby-backports_3.6.0-3_all.deb
Checksums-Sha256:
 d8fcbc74ddf152244ff6bc17393b454cb3db3621d6bb305e43bc874ffae4f53f 2071 
ruby-backports_3.6.0-3.dsc
 ae1d2cb5b47dc41102d6946a3f310d07784b071b290dbd92d7aeaf83b431d43a 6571 
ruby-backports_3.6.0-3.debian.tar.gz
 1343e23e221de64ad2aca615e0ad5d8cdc6e9d92fb1bfa1538adb448fed87d9d 69690 
ruby-backports_3.6.0-3_all.deb
Files:
 2d815e6ad159b6b73ddda256836da6e3 69690 ruby optional 
ruby-backports_3.6.0-3_all.deb
 919f588dfdd4d1f06845427c204bbefd 2071 ruby optional ruby-backports_3.6.0-3.dsc
 c7f0abdf0f3ee52321b493c6a59c9cec 6571 ruby optional 
ruby-backports_3.6.0-3.debian.tar.gz

-BEGIN PGP SIGNATURE-

iQIcBAEBCgAGBQJUBh1UAAoJEEAsIlA9Nuk2XewP/21nLEghdwrZ8PPHP0GrdwO4
XuV7sEM5ynau8pfC0DgkjbMUFqsbEnWu6O3mIr9qrFg7ALFk+TTtKO2tHnnfRB/V
kdYGWcm1PY8NQEZjMgGHu0akvSwyrOPe7UKJ/iAnax7Kj1DtQOlqi1mWfRSY3Yxp
zzQbMfzp8QL23CivQyna9k9XWuva7L3crcGIgaziUALaD/W99c8ksJxzMTxuDsZx
3cAMpVC8MNoVdKUEcUxh77ruU6HSluMLl4RpysdYuzMAvL7DzkdnMItor0MfgswH
IeEMF0YVvSqRIP7+NEskqf8l3soY5nrdAQUjNEFBRq4s99PdT6rfDtfG+jjMXDSy
2uuZkATAc4qE3ZRBSG6sh1Lx5zPNglJM6UScYSocBIi5toE0C72AOJU4g0jp8QV/
fdq2jpC/5KbcdPylhDBJwrFyBk92jRMNk5o8cUbusMfz2we8PPibNWHkyZ6GB4eK
ehKG5zFYNb3HFwh4nmGP8OU3/QsYSWSg19powf4zvs67OhWHzT4wWhdFt+kzeJny
Gn8o4RH59ha2OuEcTzY1sfxAF7OTtNJpTwZFYq1BaHoplnLvOEiMYHzxSd45v2j7
i6t/85bYjLbFDndloFXh9VlQVAzSKb6A7N3H+eJmaj7PAoM2nplvVfBDlgnBz4X4
SDsdGDvWpOP+CDc6JL6U
=VLRE
-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: https://lists.debian.org/e1xoviq-0004e3...@franck.debian.org



Accepted gdl 3.12.0-1 (source all amd64) into unstable

2014-09-02 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 23:03:11 +0200
Source: gdl
Binary: libgdl-3-dev libgdl-3-5 libgdl-3-common libgdl-3-doc libgdl-3-dbg 
gir1.2-gdl-3
Architecture: source all amd64
Version: 3.12.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description:
 gir1.2-gdl-3 - GObject introspection data for the GDL library
 libgdl-3-5 - GNOME DevTool libraries
 libgdl-3-common - GNOME DevTool libraries - common files
 libgdl-3-dbg - GNOME DevTool libraries - debug files
 libgdl-3-dev - GNOME DevTool libraries - development files
 libgdl-3-doc - GNOME DevTool libraries - documentation
Changes:
 gdl (3.12.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * Bump Standards-Version t 3.9.5.
Checksums-Sha1:
 cdccc12c9ba20652664ecd61021a6517730d8969 2445 gdl_3.12.0-1.dsc
 6b2c0d8dcd7b978788e05d9cef59dac7ab7bef97 527944 gdl_3.12.0.orig.tar.xz
 c8a62b512e9f1f02f6ecc4fb4250e6d3f1b393a2 5816 gdl_3.12.0-1.debian.tar.xz
 d3b8c1c524dd699677f32d8b77fd14020d06d777 151358 
libgdl-3-common_3.12.0-1_all.deb
 6163bd50559c39ffa372e820bbccd0c9b80ec815 68972 libgdl-3-doc_3.12.0-1_all.deb
 9ebe790070227e3f532a0fb305f9c4b18210cf6e 52292 libgdl-3-dev_3.12.0-1_amd64.deb
 901342f8adde9411ec372d5c5ccd5d171d993465 98296 libgdl-3-5_3.12.0-1_amd64.deb
 3577e52dcceeadde85b0fa8e963a643bf5f00a08 214676 libgdl-3-dbg_3.12.0-1_amd64.deb
 83f9229322cfeab44e871a1af62cd9d85c9d01f1 37214 gir1.2-gdl-3_3.12.0-1_amd64.deb
Checksums-Sha256:
 5732f5297d0401396b1b82e851a4e75aa8452fefb48f827ff920172218838a4a 2445 
gdl_3.12.0-1.dsc
 4770f959f31ed5e616fe623c284e8dd6136e49902d19b6e37938d34be4f6b88d 527944 
gdl_3.12.0.orig.tar.xz
 cd8fd592c7945eff18387b6a884cd7390047baa16c089766887158491dfd4c5c 5816 
gdl_3.12.0-1.debian.tar.xz
 f641b747c796ee8a6f7cacb954c2d717fcb28da568b1baceb2a1097fb76cb371 151358 
libgdl-3-common_3.12.0-1_all.deb
 1bc4f9b2a88c5b5c187e956a16fd6b8aa9b4eb1ec3d58d1ff5ddf9f40d4fd7e0 68972 
libgdl-3-doc_3.12.0-1_all.deb
 ab6089ae9ad22965fc1e373c3bd8497f0ceb0a6b28903f16d1704a405b9d1112 52292 
libgdl-3-dev_3.12.0-1_amd64.deb
 81e6b2423d8b8a667327d3a24f3af303a51719eb0dd9111360def57cb44994f6 98296 
libgdl-3-5_3.12.0-1_amd64.deb
 e0f5fac3e293e45383140a70cc377feb1cf576c0d27d1c13e0f89060ec220c90 214676 
libgdl-3-dbg_3.12.0-1_amd64.deb
 2f8337526bb86413899069bbca7d948ee5f176bd8b00bf5e9b8bf4bc1a72b4d3 37214 
gir1.2-gdl-3_3.12.0-1_amd64.deb
Files:
 8347896f701b220d24d08c360cd49d35 151358 gnome optional 
libgdl-3-common_3.12.0-1_all.deb
 616b671e0e8e24655fc56612aa80d5ca 68972 doc optional 
libgdl-3-doc_3.12.0-1_all.deb
 c0d96d2a4fa3b01bafd84a86119af12c 52292 libdevel optional 
libgdl-3-dev_3.12.0-1_amd64.deb
 84b357d6b5601f64ca11eaa4993b8554 98296 libs optional 
libgdl-3-5_3.12.0-1_amd64.deb
 7c2953380f1ad05b8632df39bddf1747 214676 debug extra 
libgdl-3-dbg_3.12.0-1_amd64.deb
 78dd3571917b79082d76d734d34a774d 37214 introspection optional 
gir1.2-gdl-3_3.12.0-1_amd64.deb
 7d16647029edace0c5f0a321df9a4b6c 2445 libs optional gdl_3.12.0-1.dsc
 e36701e5f0f2eeac2504375fe46aa478 527944 libs optional gdl_3.12.0.orig.tar.xz
 a5811a3b11cd22fc987734ef415d2868 5816 libs optional gdl_3.12.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBjEMAAoJEGrh3w1gjyLcG2kP/0JoD9B1/uP45Rs3yH8j1WcL
qJ3JGwDr+cQZFqeIJw8MqveJHbT1RR44L6gHn7VnFzRjDuHRPK3zoDwI2wWZ2vOn
VUFkIeql8rYKKE8m1gOX4SgT2aKScnu6Ktf2vZfwy3ngXW1wCSUMM3ICsPHJ6U2+
OXLta8pFVmMnqSnrMViqLov4yROd2marIrm0KGiNdxYJyGGHlC2YqZp4kLiRFxcu
/jZVRUpbTj0yHfy5QGt+I0gUUSdw/KL6vo0ApRpZukENtzpzBhLicRnjqa1xB9au
nbtXrJgZYHnTLlrBTKeZS/KOrwEFeSu57TcKoJefkv8WljoBkGenYktl63w4GD64
X76ihozjv116bNuRTOqjWbB1Il6btT0nLRY+xj6rokbio01K6J4vg7EzpeKjxdKD
h+1YRzT13BV6aosgtiHQN59SPnomkXEsHwwKP4GTTzHOrcjAcugKwZlpqOge17ca
W7fxZDu9+T6WDzmFg+mjF/shIlDnYkOhUrfBSMERSSCeAZ+VmNxd2eJRA+SqtvW4
BihXXKfwi2GDBZN3T4nS0u42MaFekqPKvuO9zb7v9SDYhrAuIwkz2MFjKoIUh1EA
1q8c4xbGvdbAAIypykRmBmQJAx5WWEVxlGlF/Lk+Rb8XMGBDh6MoHR74YpMQCAmh
QOcN0vpYiJ4q5ZUI7uEb
=S3Pe
-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: https://lists.debian.org/e1xovtg-0006c4...@franck.debian.org



Accepted libguestfs 1:1.27.35-1 (source amd64 all) into experimental

2014-09-02 Thread Hilko Bengen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 01 Sep 2014 18:25:38 +0200
Source: libguestfs
Binary: guestfsd libguestfs-dev libguestfs0 libguestfs-gfs2 libguestfs-hfsplus 
libguestfs-jfs libguestfs-nilfs libguestfs-reiserfs libguestfs-rescue 
libguestfs-rsync libguestfs-xfs libguestfs-zfs libguestfs-tools libguestfs0-dbg 
python-guestfs python3-guestfs libguestfs-perl libguestfs-ocaml 
libguestfs-ocaml-dev erlang-guestfs libguestfs-java ruby-guestfs 
libguestfs-gobject-1.0-0 libguestfs-gobject-dev gir1.2-guestfs-1.0 lua-guestfs 
golang-guestfs-dev
Architecture: source amd64 all
Version: 1:1.27.35-1
Distribution: experimental
Urgency: medium
Maintainer: Hilko Bengen ben...@debian.org
Changed-By: Hilko Bengen ben...@debian.org
Description:
 erlang-guestfs - guest disk image management system - Erlang bindings
 gir1.2-guestfs-1.0 - guest disk image management system - GObject 
introspection files
 golang-guestfs-dev - guest disk image management system - Golang bindings
 guestfsd   - Daemon to access to guest virtual machine through virtio serial
 libguestfs-dev - guest disk image management system - development headers
 libguestfs-gfs2 - guest disk image management system - GFS2 support
 libguestfs-gobject-1.0-0 - guest disk image management system - GObject 
bindings
 libguestfs-gobject-dev - guest disk image management system - GObject 
development headers
 libguestfs-hfsplus - guest disk image management system - HFS+ support
 libguestfs-java - guest disk image management system - Java bindings
 libguestfs-jfs - guest disk image management system - JFS support
 libguestfs-nilfs - guest disk image management system - NILFS v2 support
 libguestfs-ocaml - guest disk image management system - OCaml bindings
 libguestfs-ocaml-dev - guest disk image management system - OCaml development 
files
 libguestfs-perl - guest disk image management system - Perl bindings
 libguestfs-reiserfs - guest disk image management system - ReiserFS support
 libguestfs-rescue - guest disk image management system - virt-rescue 
enhancements
 libguestfs-rsync - guest disk image management system - rsync support
 libguestfs-tools - guest disk image management system - tools
 libguestfs-xfs - guest disk image management system - XFS support
 libguestfs-zfs - guest disk image management system - ZFS support
 libguestfs0 - guest disk image management system - shared library
 libguestfs0-dbg - guest disk image management system - debug symbols
 lua-guestfs - guest disk image management system - Lua bindings
 python-guestfs - guest disk image management system - Python bindings
 python3-guestfs - guest disk image management system - Python 3 bindings
 ruby-guestfs - guest disk image management system - Ruby bindings
Closes: 752017 754615 755109
Changes:
 libguestfs (1:1.27.35-1) experimental; urgency=medium
 .
   * New upstream development version
   * Added virt-p2v
   * Updated symbols file
   * Picked patches from unstable branch
 - Removed dependency on legacy iproute package (Closes: #752017)
 - Don't attempt to run make quickcheck on all architectures.
   (Closes: #754615)
 - Fixed the code that extracts dependencies from
   .../guestfs/supermin.d/packages-* lists. This should also take care of
   the iproute legacy package. (Closes: #752017)
 - Don't hardcode /usr/lib/perl5 in libguestfs-perl.install
   (Closes: #755109)
 - Added patch that disables --dtb on armel
 - Fix module-init-tools build-dependency
 - Added architecture-specific dependencies for arm64, ppc64el
 - Added libc-bin to essential packages expression
Checksums-Sha1:
 aa9f0b71721c01261bb3b65c5dfe4795d62a089e 5257 libguestfs_1.27.35-1.dsc
 40e37831ae26eba888fe2e73f99cef29b8987a07 12287617 
libguestfs_1.27.35.orig.tar.gz
 fa49bbeec645e41129913c3c69381715467192f6 25744 
libguestfs_1.27.35-1.debian.tar.xz
 952659bb2ae6ecba5816134a0eb81ec0f6d8a656 846354 guestfsd_1.27.35-1_amd64.deb
 69637f4fb1bf59bc93ada69ebd06a56d539b5cbe 1484506 
libguestfs-dev_1.27.35-1_amd64.deb
 5061e38bccafac542522b459974a09f0611af8a9 2263512 
libguestfs0_1.27.35-1_amd64.deb
 c5a16bd294ba1563207ecd46f40081a748cef2e0 674198 
libguestfs-gfs2_1.27.35-1_amd64.deb
 94adbf517c63aff9ede244c518df6b7fe7dcd7f2 674162 
libguestfs-hfsplus_1.27.35-1_amd64.deb
 43395caa5e8f3111b8b05ec65ab58bf4a3104e2f 674166 
libguestfs-jfs_1.27.35-1_amd64.deb
 de5095a25c6b9c22468198d64ad96dde6ff011e7 674176 
libguestfs-nilfs_1.27.35-1_amd64.deb
 098f4386c25caf860aa6ddcdfcbfda242b830ce2 674170 
libguestfs-reiserfs_1.27.35-1_amd64.deb
 ad7f236768ab14f8a969205eed0a6db7eedce0e3 674246 
libguestfs-rescue_1.27.35-1_amd64.deb
 cab6b85451773410d2664713626c76f3262eb22f 674166 
libguestfs-rsync_1.27.35-1_amd64.deb
 2271dc278c3228cf6e2f2a3148914620b1d998ae 674168 
libguestfs-xfs_1.27.35-1_amd64.deb
 9c5ca65e8da98d65fe19058b93e592db8eec7fc4 674166 
libguestfs-zfs_1.27.35-1_amd64.deb
 64bcadb2c74c3085981c63b29706721a2dfe154c 2952274 

Accepted ghex 3.10.1-1 (source amd64) into unstable

2014-09-02 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 23:17:59 +0200
Source: ghex
Binary: libgtkhex-3-0 libgtkhex-3-dev ghex
Architecture: source amd64
Version: 3.10.1-1
Distribution: unstable
Urgency: low
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description:
 ghex   - GNOME Hex editor for files
 libgtkhex-3-0 - GNOME Hex editor for files (shared library)
 libgtkhex-3-dev - GNOME Hex editor for files (development headers)
Changes:
 ghex (3.10.1-1) unstable; urgency=low
 .
   [ Jeremy Bicha ]
   * Don't build-depend on scrollkeeper
 .
   [ Michael Biebl ]
   * New upstream release.
   * Bump Standards-Version to 3.9.5.
   * Update homepage URL.
Checksums-Sha1:
 221f7f2e6b1c071986216fbc68bcc54290549107 2243 ghex_3.10.1-1.dsc
 f7bafd4f0e8374064810af75f21a257f02b8bbb5 1424308 ghex_3.10.1.orig.tar.xz
 b3e245284e8021bd8de583bc48bfdaad855c71de 6936 ghex_3.10.1-1.debian.tar.xz
 d6eab8595666a23d5a2fdbe2aa0b2069f9f0f5e1 36818 libgtkhex-3-0_3.10.1-1_amd64.deb
 2a2118b170b51bfacf1f19a31510a26e818451a7 12556 
libgtkhex-3-dev_3.10.1-1_amd64.deb
 42731048c7c89a1e5227ca010bfba4633c5a9197 1095978 ghex_3.10.1-1_amd64.deb
Checksums-Sha256:
 99baa467005cb9c639d6a15fda3ec13217f30201c9f3c2f56c2fe858a4709715 2243 
ghex_3.10.1-1.dsc
 34b66cb5c84410c420df72f229d25aee5979e58048a246ed719b046f0c241132 1424308 
ghex_3.10.1.orig.tar.xz
 663d5b61f1e21e4e4ed4a40f6c6fec9f13bfa61ef5898f5a6b5eb6c5d5856899 6936 
ghex_3.10.1-1.debian.tar.xz
 f43cee7163c29c76ce36ff9c5d1b76f621c32af15c24a91bde75ad41eea2c779 36818 
libgtkhex-3-0_3.10.1-1_amd64.deb
 5561daee5d16c2a2bb24a9e3716880e9b735b80b615d9688df5daa62efa9c0b6 12556 
libgtkhex-3-dev_3.10.1-1_amd64.deb
 353710fe261ea3f28c7684cbf2da55f514ebf45036d1cd879d148b410fd7f76b 1095978 
ghex_3.10.1-1_amd64.deb
Files:
 05d1cc7431b6ff080c6a797ec31e2d0f 36818 libs optional 
libgtkhex-3-0_3.10.1-1_amd64.deb
 f756cf5c12655bc22a30273cbef7e92a 12556 libdevel optional 
libgtkhex-3-dev_3.10.1-1_amd64.deb
 17b95bb396455e529611c48cd2e17bc9 1095978 gnome optional ghex_3.10.1-1_amd64.deb
 36b6802d869a23b52418d208f79fe4a0 2243 gnome optional ghex_3.10.1-1.dsc
 bcd5af85a8e127da29257c9ca6aad5ee 1424308 gnome optional ghex_3.10.1.orig.tar.xz
 c61811199dc187673aeb54c04ccff4ea 6936 gnome optional 
ghex_3.10.1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBjRbAAoJEGrh3w1gjyLcwrUP/1yNzpu06A8PJiZXLPAn/7Y9
311dH5mRdZ28IUGs/AuWMwV7tEXOSS7+QhwaF7SzkmJPCQ8CkNXWATt/zunUJIXe
3o3MtGditaiS/qq4uEVbCbVkpFTEA7JpxtAZHitm4XjsqFSd+FtV7he+tqpw94n+
NiF5RRcdwDY7E6D6ORyvVajjvjT5cToyvpKN9eVR0rtckiFEwZAN6rg/kYmA95sL
j+3Kje86hHHbm6YD6OvKGBk6wIEJvMs4F9x5GNRLrbNiNLKS0Ci30DtW2Prj1jxS
FAY8qG59FDJhbXd+WCbxtPJwHqkrue2a3AYsEEB6ooBsagtP2cgKSHKM3gYGT8s1
ab3r8ajDRpK0+kqxwIoCPW6DpD8RG/9+3Hztv7gQVqrdMn8/xTsieZBqvUlpLkDY
W+o75uVdKUTHMpAt5A9XLxXKmCocaSUAc7UxDgQSSDGgnCNgKw16uAB0BiKNA3ih
bmvCpw890SB5rW7+isB6TlxJQvXcZW0LFYpVMlBi5F0c/Ei3uuj28UrgF/OqHQeZ
Jz3bfY4JECj3haNfbFImiWisPVgZ+B3Od/RySNGpThDYhBgTgKrQ0ZVrpk2kKa1x
/lvPLuf4YUkfT4grJzO0zqxshWWMDaevq2ykMM05X/WgvPXrpVBnyxbX+QF8isKL
s/1wZJLqJrHwgEwjhcgF
=vy51
-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: https://lists.debian.org/e1xovi5-0008mt...@franck.debian.org



Accepted gtkmm-documentation 3.12.0-1 (source all) into unstable

2014-09-02 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 23:30:59 +0200
Source: gtkmm-documentation
Binary: gtkmm-documentation
Architecture: source all
Version: 3.12.0-1
Distribution: unstable
Urgency: medium
Maintainer: Deng Xiyue manphiz-gu...@users.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description:
 gtkmm-documentation - Documentation of C++ wrappers for GLib/GTK+
Changes:
 gtkmm-documentation (3.12.0-1) unstable; urgency=medium
 .
   * New upstream release.
   * Bump Standards-Version to 3.9.5.
   * Bump Build-Depends on libgtkmm-3.0-dev and libglibmm-2.4-dev as per
 configure.ac.
   * Switch from gnome-doc-utils to yelp-tools.
Checksums-Sha1:
 8d9f7a5a4c94e05bae0f63996c66d2b60087f9a0 2253 gtkmm-documentation_3.12.0-1.dsc
 2a982862fb292ac809188102359863b540dc3de5 1954220 
gtkmm-documentation_3.12.0.orig.tar.xz
 86e8cb8b8b329bb90490da1494afc7207436e2c9 4940 
gtkmm-documentation_3.12.0-1.debian.tar.xz
 904891d6074741f81a2fdf99b0dc524b05d66b65 1355864 
gtkmm-documentation_3.12.0-1_all.deb
Checksums-Sha256:
 8423c1a660fccb92a8924637b84828754b647ac3d3e09a6847aa6a0b3f799e9a 2253 
gtkmm-documentation_3.12.0-1.dsc
 ecb00e3e1d4109cc042abf2ab6ba0c7a9a7c4297cfbd646de245195faba46095 1954220 
gtkmm-documentation_3.12.0.orig.tar.xz
 94e409087b0b0d63e2c033497481e5d5a0ca15fd5531b15b59c57087832d33c6 4940 
gtkmm-documentation_3.12.0-1.debian.tar.xz
 ec7f00d7a16447a41825785eb5810535a4e4ff649c520e11f6e22b567234f702 1355864 
gtkmm-documentation_3.12.0-1_all.deb
Files:
 01180414a410f49740d925fd8ccb5290 1355864 doc optional 
gtkmm-documentation_3.12.0-1_all.deb
 120a635101bb0661fb28836c37947cdc 2253 doc optional 
gtkmm-documentation_3.12.0-1.dsc
 fb0a65cac0b80b4b104a1dd7cb3f2172 1954220 doc optional 
gtkmm-documentation_3.12.0.orig.tar.xz
 00bafa64b17f5eb252021a4926aee33a 4940 doc optional 
gtkmm-documentation_3.12.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBjefAAoJEGrh3w1gjyLcHIAP/1kL7jeKOmxuMFOmkF2EdOge
3OYRlpNe8DPMTgvNEdhKkurSW4LW9Tttpojp8DhEcS7ZfmSwtY/AOAiuMwXDfE/Y
aRln2o6DPSjWhUhG/RSxoTex+YAcZstpzZ5U69OMBrQMJYuwoipF89QTaR474Mdy
9AFg2TXs9zpP7hYtoNUVDP7Y+m8CE8dyDz+l0uIhemmfES2Owitb4bEYNxJFJNIH
nUW0Quf78sMJL4/1ZQCLGp1is4XbKWnABpCmwaLm1hb3vZG6AzURhsg8J9OtE7Gp
f309wXb/DOfAiQspI/cG/gVOS3UuWvX1mAQBMgjRp+c3wi6ZmgG5Wo8KodMdCWA6
gnUekWcyADgmZqEeQ8ZVxvGrTlMFyEOSSKTwoDQTmZpZjkjLn/W1+/jvYJmRwE+Z
9bol9KMhwCoS9V5MNaXU/QrCNZt0rFpQg043XP7w7tjPSPazk3nhb9bL7W3ti3EJ
a24cu8zJsa5AbohLtKgL3ZHev4cDHzNhHVKABZEIQTu/tMHBst48exHOhVbQX895
ILckr2/QUHaoGhSzp5d08lBz01dROnmyB8TnJdwMROBkaTGbzhqnUZMI+deRw6uY
J58lNvR6+aAUwMFZn9MFwZBukGEiEwwRrpxoxXOQDVdAFiS4y7/XhihZHZeeRyu9
Y98DCpStrtlrMYKCK+fa
=Moyo
-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: https://lists.debian.org/e1xovwn-0001be...@franck.debian.org



Accepted python-numpy 1:1.9.0~rc1-1 (source amd64 all) into experimental

2014-09-02 Thread Julian Taylor
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 02 Sep 2014 21:28:36 +0200
Source: python-numpy
Binary: python-numpy python-numpy-dbg python3-numpy python3-numpy-dbg 
python-numpy-doc
Architecture: source amd64 all
Version: 1:1.9.0~rc1-1
Distribution: experimental
Urgency: medium
Maintainer: Debian Python Modules Team 
python-modules-t...@lists.alioth.debian.org
Changed-By: Julian Taylor jtaylor.deb...@googlemail.com
Description:
 python-numpy - Numerical Python adds a fast array facility to the Python 
languag
 python-numpy-dbg - Fast array facility to the Python language (debug extension)
 python-numpy-doc - NumPy documentation
 python3-numpy - Fast array facility to the Python 3 language
 python3-numpy-dbg - Fast array facility to the Python 3 language (debug 
extension)
Closes: 749195
Changes:
 python-numpy (1:1.9.0~rc1-1) experimental; urgency=medium
 .
   * New upstream release candidate
 - added support for or1k (Closes: #749195)
   * debian/{rules,python-numpy-doc.install,python-numpy.manpages}:
 f2py documentation moved to same tree as the rest
   * debian/python{,}3-numpy.install:
 oldnumeric and numarray have been removed
   * drop upstream applied ppc64el_cpu_config.patch
Checksums-Sha1:
 42d2249f21d74f2f1edab6d7db6c2dd6f541ed25 1961 python-numpy_1.9.0~rc1-1.dsc
 2b77e45610a6843c946da0c9b8f2d2190d3264c2 3968693 
python-numpy_1.9.0~rc1.orig.tar.gz
 712d9cb2c816f0c8360a308d1c22dc312b5c4782 138780 
python-numpy_1.9.0~rc1-1.debian.tar.xz
 a46cadbde0aec8f5d34cabec95e1ffa28d39a418 1650894 
python-numpy_1.9.0~rc1-1_amd64.deb
 2b90d5b0b1775f7f56d95fad047c8110ca3569c1 3161454 
python-numpy-dbg_1.9.0~rc1-1_amd64.deb
 58da55b9922da15c108092230c4574456e6d902a 1647428 
python3-numpy_1.9.0~rc1-1_amd64.deb
 7d5ace74e2e3490ef3f9b23ea446af7c5a6407f1 3855956 
python3-numpy-dbg_1.9.0~rc1-1_amd64.deb
 be26eb8ac6a0547dfafe48ad191e89842dc71f61 3937880 
python-numpy-doc_1.9.0~rc1-1_all.deb
Checksums-Sha256:
 bfeca450f64273381a10fa7010a53ce8bfda8b3f4f7266f1ad56d24198a20f93 1961 
python-numpy_1.9.0~rc1-1.dsc
 278e0f9a35a47256d2a479e0e85c356fd3d2d034d6a511a1efed35295d29aec4 3968693 
python-numpy_1.9.0~rc1.orig.tar.gz
 fe69159a39fabf48314c5fc629ea06e13376fb04086f0dedab423555ef0f69d4 138780 
python-numpy_1.9.0~rc1-1.debian.tar.xz
 82a40d1fe2335895233a982be3070caef83c8211e04eb7b0c3d4b7b2cd1d4a80 1650894 
python-numpy_1.9.0~rc1-1_amd64.deb
 e80f7cee480338d22c4d6088f0b99903b21c3fe1a29edd230d834fdff76d13d3 3161454 
python-numpy-dbg_1.9.0~rc1-1_amd64.deb
 2d7af6879fc4a06e238fe33adb3b729dac36436fd248fe639206c436b9907444 1647428 
python3-numpy_1.9.0~rc1-1_amd64.deb
 f7fac6e3511ddc80ba9e2090de0c7117fdd311599826e11b14ee1e1703b05cc8 3855956 
python3-numpy-dbg_1.9.0~rc1-1_amd64.deb
 0927768e08f445398f690c2cdcbd92d5b17559de0427685d497d8b4b74967dcb 3937880 
python-numpy-doc_1.9.0~rc1-1_all.deb
Files:
 5298380fb47b46aedaca492b7551268e 1650894 python optional 
python-numpy_1.9.0~rc1-1_amd64.deb
 68dba4431f96d6ba0ee1e03a70b23b66 3161454 debug extra 
python-numpy-dbg_1.9.0~rc1-1_amd64.deb
 c95c4fe47f524e714e4faf5f62c254c7 1647428 python optional 
python3-numpy_1.9.0~rc1-1_amd64.deb
 c7ef324ff4e0ea729d08b083cdfca7c1 3855956 debug extra 
python3-numpy-dbg_1.9.0~rc1-1_amd64.deb
 8f4f44a7539a9c4573ccaa1a66037d57 3937880 doc optional 
python-numpy-doc_1.9.0~rc1-1_all.deb
 819b940bd2a1063a0727113af9fd10fe 1961 python optional 
python-numpy_1.9.0~rc1-1.dsc
 fe4a2b5415c3826d7fd8f849c6f67929 3968693 python optional 
python-numpy_1.9.0~rc1.orig.tar.gz
 bc44e45503cca1a63681d2f37137f816 138780 python optional 
python-numpy_1.9.0~rc1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQGN88ACgkQAukwV0RN2VBnlgCdH0uNkTg5YDjqXLyiV02LaoGR
lTIAniLoKbq3Kp7v611t4eXxUgC8OTi4
=tSZJ
-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: https://lists.debian.org/e1xovxw-0002ln...@franck.debian.org



Accepted krb5 1.12.1+dfsg-8 (source all amd64) into unstable

2014-09-02 Thread Benjamin Kaduk
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 02 Sep 2014 16:57:47 -0400
Source: krb5
Binary: krb5-user krb5-kdc krb5-kdc-ldap krb5-admin-server krb5-multidev 
libkrb5-dev libkrb5-dbg krb5-pkinit krb5-otp krb5-doc libkrb5-3 
libgssapi-krb5-2 libgssrpc4 libkadm5srv-mit9 libkadm5clnt-mit9 libk5crypto3 
libkdb5-7 libkrb5support0 libkrad0 krb5-gss-samples krb5-locales libkrad-dev
Architecture: source all amd64
Version: 1.12.1+dfsg-8
Distribution: unstable
Urgency: high
Maintainer: Sam Hartman hartm...@debian.org
Changed-By: Benjamin Kaduk ka...@mit.edu
Description:
 krb5-admin-server - MIT Kerberos master server (kadmind)
 krb5-doc   - Documentation for MIT Kerberos
 krb5-gss-samples - MIT Kerberos GSS Sample applications
 krb5-kdc   - MIT Kerberos key server (KDC)
 krb5-kdc-ldap - MIT Kerberos key server (KDC) LDAP plugin
 krb5-locales - Internationalization support for MIT Kerberos
 krb5-multidev - Development files for MIT Kerberos without Heimdal conflict
 krb5-otp   - OTP plugin for MIT Kerberos
 krb5-pkinit - PKINIT plugin for MIT Kerberos
 krb5-user  - Basic programs to authenticate using MIT Kerberos
 libgssapi-krb5-2 - MIT Kerberos runtime libraries - krb5 GSS-API Mechanism
 libgssrpc4 - MIT Kerberos runtime libraries - GSS enabled ONCRPC
 libk5crypto3 - MIT Kerberos runtime libraries - Crypto Library
 libkadm5clnt-mit9 - MIT Kerberos runtime libraries - Administration Clients
 libkadm5srv-mit9 - MIT Kerberos runtime libraries - KDC and Admin Server
 libkdb5-7  - MIT Kerberos runtime libraries - Kerberos database
 libkrad-dev - MIT Kerberos RADIUS Library Development
 libkrad0   - MIT Kerberos runtime libraries - RADIUS library
 libkrb5-3  - MIT Kerberos runtime libraries
 libkrb5-dbg - Debugging files for MIT Kerberos
 libkrb5-dev - Headers and development libraries for MIT Kerberos
 libkrb5support0 - MIT Kerberos runtime libraries - Support library
Closes: 750041 758288 759954 760149
Changes:
 krb5 (1.12.1+dfsg-8) unstable; urgency=high
 .
   [ Benjamin Kaduk ]
   * Break old versions of libraries that consume libkrb5support0, which
 had its export symbol list change in 1.12 without the dependencies
 changing to reflect that.  Closes: #758288, Closes: #760149
   * Fix the documentation build by explicitly mapping krb5.hin as a C file.
 Closes: #759954
 .
   [ Jelmer Vernooij ]
   * Provide -L and -I flags from pkg-config files. Closes: #750041
Checksums-Sha1:
 ebe186e7482c3c29559a556bdf93c108b8898273 3157 krb5_1.12.1+dfsg-8.dsc
 5f666f47d07d320e6ddc339d8bd1626f6110a9e7 102024 
krb5_1.12.1+dfsg-8.debian.tar.xz
 a05733ba45ece24d4afd9eda71376c91ccef0997 4686370 krb5-doc_1.12.1+dfsg-8_all.deb
 a9ceb575ac66327128b3283077b7e8f33f72ce48 2647314 
krb5-locales_1.12.1+dfsg-8_all.deb
 073b8bf10d788f4a468ed3213fa14d69b2cf97fe 136002 
krb5-user_1.12.1+dfsg-8_amd64.deb
 c8cd2683344759cf5a2ae990cfe4277acdf1465a 207242 
krb5-kdc_1.12.1+dfsg-8_amd64.deb
 1b151c00cd73676a217a209c170c7d0762dbdcf0 109584 
krb5-kdc-ldap_1.12.1+dfsg-8_amd64.deb
 397ce8ae271b5a188e2fbfa69866f4e81419a1cb 114674 
krb5-admin-server_1.12.1+dfsg-8_amd64.deb
 300c4b53574d6891b4dd6fc75b5771aa20d0d2d8 140758 
krb5-multidev_1.12.1+dfsg-8_amd64.deb
 73a0bcf682f452686794813feb0387a5a3280364 44252 
libkrb5-dev_1.12.1+dfsg-8_amd64.deb
 848b93de9eac88f67c24f323d084c8cc4ea2fe86 1421894 
libkrb5-dbg_1.12.1+dfsg-8_amd64.deb
 72dcc00f25bcd3309d6615a627984097d9e9cdb3 82464 
krb5-pkinit_1.12.1+dfsg-8_amd64.deb
 97c55f77572732a791b70477466250a53aebcfd0 46886 krb5-otp_1.12.1+dfsg-8_amd64.deb
 fcdd10c62768f5bc056da68ffa07d82100dd3354 301434 
libkrb5-3_1.12.1+dfsg-8_amd64.deb
 1c628122d6e050534d76d024200a0e57d70a02e4 149538 
libgssapi-krb5-2_1.12.1+dfsg-8_amd64.deb
 bb327b42599e90778775d0892e7141bb2e3f8bdb 85104 
libgssrpc4_1.12.1+dfsg-8_amd64.deb
 a5d0ddaf331f72612ad2882b1b90c9adbebd6c09 81688 
libkadm5srv-mit9_1.12.1+dfsg-8_amd64.deb
 ec8d6e4e6a1ab015c6c3a69685d85e881144f8dc 67066 
libkadm5clnt-mit9_1.12.1+dfsg-8_amd64.deb
 9801a4775b61b2f91d25d4a674895bfe4fb0353e 112568 
libk5crypto3_1.12.1+dfsg-8_amd64.deb
 0606187bcb694e7cc09efcd952b6cdbda447c74f 67126 
libkdb5-7_1.12.1+dfsg-8_amd64.deb
 942378dfa783d18dd5937e8f333ae3875cb9efb7 57700 
libkrb5support0_1.12.1+dfsg-8_amd64.deb
 5cafdff9a0efaa259d40150c8a6a766920713240 51330 libkrad0_1.12.1+dfsg-8_amd64.deb
 4cc6cbe9fc7fb449e0e3b5fb66ca65d3eda224af 54532 
krb5-gss-samples_1.12.1+dfsg-8_amd64.deb
 5b362121407795aae1493dc89fa3f8e466581df1 41726 
libkrad-dev_1.12.1+dfsg-8_amd64.deb
Checksums-Sha256:
 c99402a629147df1b5a2eb0d2f0816dca314b43d9994a032b838551396fa1cc4 3157 
krb5_1.12.1+dfsg-8.dsc
 8b59a398a9b323be73eb9936aa08104f43af4c4847d09fcc845fcb1fad6ccffe 102024 
krb5_1.12.1+dfsg-8.debian.tar.xz
 3839c1e4eed2015222a59c17d374a96f942e0de608c6fe4ba6a9a103c4e2ecfb 4686370 
krb5-doc_1.12.1+dfsg-8_all.deb
 92234e6cad4dc9074935addc8f37f0a32015be347407f5aee07473ec6105068e 2647314 
krb5-locales_1.12.1+dfsg-8_all.deb
 e5be4c79f53ed7f07d0cf08763deba5f2bcb3c37588b07013bf3bac14f6cf5e8 

Accepted clutter-gtk 1.5.4-1 (source all amd64) into unstable

2014-09-02 Thread Michael Biebl
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Wed, 03 Sep 2014 00:06:35 +0200
Source: clutter-gtk
Binary: libclutter-gtk-1.0-0 libclutter-gtk-1.0-dev libclutter-gtk-1.0-dbg 
libclutter-gtk-1.0-doc gir1.2-gtkclutter-1.0
Architecture: source all amd64
Version: 1.5.4-1
Distribution: unstable
Urgency: medium
Maintainer: Debian GNOME Maintainers 
pkg-gnome-maintain...@lists.alioth.debian.org
Changed-By: Michael Biebl bi...@debian.org
Description:
 gir1.2-gtkclutter-1.0 - GObject introspection data for the GTK+ Clutter library
 libclutter-gtk-1.0-0 - Open GL based interactive canvas library GTK+ widget
 libclutter-gtk-1.0-dbg - Open GL based interactive canvas library GTK+ widget 
(debug files
 libclutter-gtk-1.0-dev - Open GL based interactive canvas library GTK+ widget 
(development
 libclutter-gtk-1.0-doc - Open GL based interactive canvas library GTK+ widget 
(documentati
Changes:
 clutter-gtk (1.5.4-1) unstable; urgency=medium
 .
   * New upstream release.
   * Bump Standards-Version to 3.9.5.
   * Bump Build-Depends on libclutter-1.0-dev to (= 1.18) as per configure.ac.
Checksums-Sha1:
 d5b9d56431f00400e925c7fce710e2ef9e5d12d5 2582 clutter-gtk_1.5.4-1.dsc
 9b678d37b602349cff323923f1a8d5e825acb4d6 313196 clutter-gtk_1.5.4.orig.tar.xz
 cc298a6c733a6af5d81c1d60c2c3feaba7e5fbfb 4884 clutter-gtk_1.5.4-1.debian.tar.xz
 7901f86e35726afdaf2804f58f9347aeb2072701 25134 
libclutter-gtk-1.0-doc_1.5.4-1_all.deb
 a1ae3d4205c384ce310ba38e44d6b76bcd7e243c 27158 
libclutter-gtk-1.0-0_1.5.4-1_amd64.deb
 ca4eae5b641045217f5ed4fdf2a8e41c272e9684 30860 
libclutter-gtk-1.0-dev_1.5.4-1_amd64.deb
 2e0f422615154ba0fc73eb62acc86663e49bfa53 72184 
libclutter-gtk-1.0-dbg_1.5.4-1_amd64.deb
 d43f2afa635deba1d5fc17b7438232a4f78c927e 11056 
gir1.2-gtkclutter-1.0_1.5.4-1_amd64.deb
Checksums-Sha256:
 11ebd4047de8d2558605033a4003a0263eb1e7ff7f41150529e2da4d390556b5 2582 
clutter-gtk_1.5.4-1.dsc
 db9c710ea3970620278c58d0bc522018353a75c83ac6ad60e272d2532533e772 313196 
clutter-gtk_1.5.4.orig.tar.xz
 0b9c4c7ffe2620d2914442b1b3d710ecd41707d1abca4e39bc699af36f74b207 4884 
clutter-gtk_1.5.4-1.debian.tar.xz
 662d9a92c54245f3d7baf407432c6fefdf5a92dbed4bd3908dbcaec6dbd14dac 25134 
libclutter-gtk-1.0-doc_1.5.4-1_all.deb
 7c39d3f68cbf50ff666ff917e4759826aaa67d5aedf97cf70de91cfa061b221e 27158 
libclutter-gtk-1.0-0_1.5.4-1_amd64.deb
 2d7a36078ef15ca754c81b8e8f5975b475816239dee42bfaddd9cfb1178198b3 30860 
libclutter-gtk-1.0-dev_1.5.4-1_amd64.deb
 1812bb236faa77c52195890594e63406e7a2f5455d5c58cd1eb9dffcc185a43e 72184 
libclutter-gtk-1.0-dbg_1.5.4-1_amd64.deb
 32cf41bf4b7aa7148f0a7379c115111492e8860b7f3006c9060a39900fda10c7 11056 
gir1.2-gtkclutter-1.0_1.5.4-1_amd64.deb
Files:
 a876bdfdf65adecb805918c4a5bbebaf 25134 doc optional 
libclutter-gtk-1.0-doc_1.5.4-1_all.deb
 e0cde73b143fd3bc6dead7bbac853cc9 27158 libs optional 
libclutter-gtk-1.0-0_1.5.4-1_amd64.deb
 5f9e32ca7205389cc0a13f33ab2b3d3f 30860 libdevel optional 
libclutter-gtk-1.0-dev_1.5.4-1_amd64.deb
 ca3f275d8f59a97f5f8490d99431ccea 72184 debug extra 
libclutter-gtk-1.0-dbg_1.5.4-1_amd64.deb
 2971f633b5331a7cb71b1dd8e2d1f58a 11056 introspection optional 
gir1.2-gtkclutter-1.0_1.5.4-1_amd64.deb
 74e7f01d545eae7e2f5518b5c7390e11 2582 libs optional clutter-gtk_1.5.4-1.dsc
 7623247ca3a0d37621091783cf9cdc61 313196 libs optional 
clutter-gtk_1.5.4.orig.tar.xz
 30926a182cd7274d1e3f5ecc26117d19 4884 libs optional 
clutter-gtk_1.5.4-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUBkAjAAoJEGrh3w1gjyLcBfAQAIlDNUAKJ7D0OJ5Kh+CIV3Y3
60xkgZXZUfuQXsp4lgHf5ioF6iaEJj1u+c12mvniIPeBo1zH9CIM+KIOkUiBl4R4
G4PvIu8kAuhKjtISTgRZK8FQpTjhZ82GUWRdz5xddKbc7TFVrfTQx39p+0KTuoAO
U2MmWL/FGDf50Nrwvrc4miAhivPRycvCA3ksZRKgg1rFGAwm6eo7qSXXQpBzYA3T
iPmaGZUBnJalChQlfb+1XWHr6eLLc3Q7rukxL1rabQRC3cLdl3oSfUfyL1FpcxnC
CkAjp98pIbplmf7TlSfZ4AHZI3W0aCUbmlNknLMriyvNAfDQys4GXZjG/K4bQCXy
vkRzKs9W3zus0NnKNO0BzKzBzvQZltXAGdru4/bOKOHkIEqvaWAh8VoTDxQRsaeX
qGgRDWpktcxtuh4+YWRGhr0Qqq+sY9aNiFydew6Aawz2TF/XpiwCJnvNNo5UqW3w
yWmTM/CMQ3MAYpi5R6NbbGzpnnKvaxVQsNNPfoz1qH14V6k72olTgQB2tAEj+veI
chGpALYaVtihq6Cw5wTThbau+LqEqabKDBp1pKnrz2DVRAVXKFodqVrBYEObVgia
jcCW8eIeyWSLezCAIao++9e6SAYz6yb/AkGxUcVIi+9OZXgYVkwwJW2qjWdN1L0o
CIkOhf1hFxRRFOJveW97
=LLnf
-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: https://lists.debian.org/e1xowps-000658...@franck.debian.org



Accepted xapian-core 1.2.18-1.1 (source all amd64) into unstable

2014-09-02 Thread Aurelien Jarno
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 02 Sep 2014 16:12:09 +0200
Source: xapian-core
Binary: libxapian22 libxapian22-dbg libxapian-dev xapian-tools xapian-doc 
xapian-examples
Architecture: source all amd64
Version: 1.2.18-1.1
Distribution: unstable
Urgency: medium
Maintainer: Olly Betts o...@survex.com
Changed-By: Aurelien Jarno aure...@debian.org
Description:
 libxapian-dev - Development files for Xapian search engine library
 libxapian22 - Search engine library
 libxapian22-dbg - Debugging symbols for the Xapian Search engine library
 xapian-doc - Core Xapian documentation
 xapian-examples - Xapian simple example programs
 xapian-tools - Basic tools for Xapian search engine library
Closes: 746238 757155
Changes:
 xapian-core (1.2.18-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload with maintainer permission.
   * Build using dh-autoreconf.  (Closes: #746238, #757155).
Checksums-Sha1:
 4cf6d7957d837eefb3d3f3cb25ebe285dd7549df 2195 xapian-core_1.2.18-1.1.dsc
 3a37c0784b0a5e54496d2eee52722a49bf488640 16228 
xapian-core_1.2.18-1.1.debian.tar.xz
 dd31001573bbbadfabb3050b336c6e4b03057708 2022876 xapian-doc_1.2.18-1.1_all.deb
 7009899e1bab4c24bac7bc8990695abf88bc692a 994746 
libxapian22_1.2.18-1.1_amd64.deb
 b431c7859022ebf52a79c42eb3f15758bb3d89b4 5588212 
libxapian22-dbg_1.2.18-1.1_amd64.deb
 f12203a1d1651d0cd624f6db81b8bcbe7059f170 1184814 
libxapian-dev_1.2.18-1.1_amd64.deb
 672078499fb9603bf606ab88cf4ade7a078f299c 465204 
xapian-tools_1.2.18-1.1_amd64.deb
 b6334fee50c7bcb9fc9b6cf05df6d55d7b73a84d 402536 
xapian-examples_1.2.18-1.1_amd64.deb
Checksums-Sha256:
 27a7aee6a8676e771003a362169e3ae4771f60ef2121e4e62887995be5f059aa 2195 
xapian-core_1.2.18-1.1.dsc
 7b28b8ffc335c97f5a6552887f5025fda7cc5fc2fd378e70108a5c2a7d3e36d8 16228 
xapian-core_1.2.18-1.1.debian.tar.xz
 4b43330337d193544c2042246f37fd0f53ccab1f73f159e99870f8b8a9920c74 2022876 
xapian-doc_1.2.18-1.1_all.deb
 8b47c8152d5d5d4e615055a3c01594f6be95f93c64408d0e8c8470e085a5187d 994746 
libxapian22_1.2.18-1.1_amd64.deb
 088e05af1d70208f1a821944d24fa4d1359174be48443b277dcb95680a74 5588212 
libxapian22-dbg_1.2.18-1.1_amd64.deb
 60db9057c8e14f2d98ee4ee22201571d9a0a9a73610ced22164303234082ea6f 1184814 
libxapian-dev_1.2.18-1.1_amd64.deb
 944381abc2d753bb971db95ccc3fc3ffee718d48dae6fb5bc89e099faf297c00 465204 
xapian-tools_1.2.18-1.1_amd64.deb
 4b041fa6babce6297b9a068d775e96742b26cb7d2f88b9c9f9aa6a91f8c7ad8c 402536 
xapian-examples_1.2.18-1.1_amd64.deb
Files:
 cf01a7969556685d855de63e585dee78 2022876 doc optional 
xapian-doc_1.2.18-1.1_all.deb
 6d7006dc7372d0dfa0820e239fc6685c 994746 libs important 
libxapian22_1.2.18-1.1_amd64.deb
 010ac536c05aac07f0898f2146d9aaec 5588212 debug extra 
libxapian22-dbg_1.2.18-1.1_amd64.deb
 a7fbb26c9d075278411508ac95727a96 1184814 libdevel optional 
libxapian-dev_1.2.18-1.1_amd64.deb
 89b8f4fb8707965534013a3e21c49795 465204 utils optional 
xapian-tools_1.2.18-1.1_amd64.deb
 a38aa1e3b1238281ee25754b6c062712 402536 doc optional 
xapian-examples_1.2.18-1.1_amd64.deb
 72ef5139b0768ac09be7f553ce843da8 2195 libs important xapian-core_1.2.18-1.1.dsc
 dc91d0f1e29ce2c55d1a00ebecb641c0 16228 libs important 
xapian-core_1.2.18-1.1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVAZAIrqceAYd3YybAQivVg//SIFsyDdxXC7CAZwuRpZJEU63rNfdbcjn
mI+7zbE3vFITI0wo1U77wrLc7pRB9PfEH5dHc0e5lYlDIyniaRAmr0MYHHNJQjvw
020rkcIB9EmPlSx4Hr3WYqW0mkJKxm43l+z8b9WfCkBwdH3sEmJ0uLGNjs8x02/7
KDuT3buHR+wuwiyOymvIAqmsjhDdUOVv1I42UtBV7+dSBn2R8tXcdwYe7tJSz1i+
LGQEtKUtxiS0PlPhTdVvKSeYwijYB7aQNOYOeArZYMeHd2PsDLBzWxJcy+NbkNYw
7NDmcaw6gbikrzMGZLXUeBzpulkFBH11KJOfN3VZiorWO4W5DYe6qq5fZSNbl+9q
mBY7tA65ZZu3860vH40ufm+57tlaFfCscFu3Cmp3nDk/TVQrpWBtcymKQ1fCwxGi
uOHiusOhrDt5Ly8f24hj4zJUyxA/DpKdzjuyNURxwgLQySVwkG36zQNmSePF5New
mhsAttBen+4T3wb1yjnSWFbtNUPB5pFzoR42l7Wcv7qzJc2esfyu9QF3JhtuzuzZ
o0pHFyciSOM8anMboe/s7sJ/6qJwYSnbQXOcRm6NXt4rslPKRkVD9ohzVhpyoL/b
z9VIBM8mUvSMnWVqA/G/i3aIP/JYsRIPb7YJPyHZy/TIQr1K9qBK9R0QuIlVC3Ge
tN//tP9q5+0=
=EDen
-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: https://lists.debian.org/e1xowr1-0006kj...@franck.debian.org



  1   2   >