Re: Bug#757941: static linking: alternatives for glibc?

2014-10-07 Thread Paul Wise
On Tue, Oct 7, 2014 at 1:58 PM, Michael Tokarev wrote:

 apps becomes huge in size

I wonder if LTO would help with the size issues, theoretically all the
code from the static glibc that isn't used by busybox-static would be
stripped out of the resulting binaries.

-- 
bye,
pabs

https://wiki.debian.org/PaulWise


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/CAKTje6GSXuq5xuM92anbNW=d9lzfu2spef+1a7og4n3u+uw...@mail.gmail.com



Re: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Russell Stuart
On Fri, 2014-10-03 at 09:20 -0700, Russ Allbery wrote:
 Russell Stuart russell-deb...@stuart.id.au writes:
  I looks to me like you are re-writing history.
 
 I'm not sure how you meant this, but to note, this sentence made me very
 sad, since it felt like you believe I'm being intentionally dishonest with
 you.  I'm really not, although I'm not sure how to convince you of that.

You convinced me I was wrong a few sentences later.

 I thought that's what you were getting at when talking about
 testing

Not really.  I'm about documentation reflecting reality.  Think of
putting an electrical component whose documentation says its 200 degrees
on a motherboard, only to find it fails at 190.  When you ask why, is
well we design it for 200, but only test it to 180 a satisfying
answer?

You have convinced me that in this case it's going to have to be that
way, so my prejudices notwithstanding.  I've rationalised the pain away
by deciding it's no so bad as any competent programmer could see that is
it only tested to 190 regardless of what the standards say.

 Oh!  I didn't realize or internalize that you were proposing switching the
 default shell to posh from dash.  Yes, that would certainly improve our
 compliance with Policy considerably.

It's attractive because makes Policy more relevant - but only because of
that.  Now that I think about it, switching pbuilder to posh would be
almost as good.  Any additional pain would not be worth the effort.

If Debian was going to switch to another shell, I'd vote for the one in
busybox.  That's because on desktop machines it doesn't matter, but on
embedded architectures it does - and they use busybox.  So switching to
busybox would extend Debian's reach.

 If the speed is comparable

Here are two benchmarks.  I did others. These demonstrate the extremes:

$ time dash -c 'i=0; while [ $i -lt 1000 ]; do echo -n; i=$(($i + 
1)); done'
real0m16.695s
user0m16.684s
sys 0m0.000s
$ time posh -c 'i=0; while [ $i -lt 1000 ]; do echo -n; i=$(($i + 
1)); done'
real0m41.899s
user0m41.872s
sys 0m0.000s
$ time busybox sh -c 'i=0; while [ $i -lt 1000 ]; do echo -n; 
i=$(($i + 1)); done'
real0m27.938s
user0m25.160s
sys 0m2.760s
$ time bash -c 'i=0; while [ $i -lt 1000 ]; do echo -n; i=$(($i + 
1)); done'
real1m7.971s
user1m7.928s
sys 0m0.000s

$ time dash -c 'x=aaa; t() { local x=$1; echo $x; }; 
while [ ${x%b} = ${x} ]; do y=; while :; do z=${x#b}; [ $z != $x ] || 
break; y=a$y x=$z; done; x=$(t ${y}b${x#a}); done'
real0m1.577s
user0m0.204s
sys 0m0.500s
$ time posh -c 'x=aaa; t() { local x=$1; echo $x; }; 
while [ ${x%b} = ${x} ]; do y=; while :; do z=${x#b}; [ $z != $x ] || 
break; y=a$y x=$z; done; x=$(t ${y}b${x#a}); done'
real0m2.232s
user0m0.316s
sys 0m0.536s
$ time busybox sh -c 'x=aaa; t() { local x=$1; echo $x; 
}; while [ ${x%b} = ${x} ]; do y=; while :; do z=${x#b}; [ $z != $x ] 
|| break; y=a$y x=$z; done; x=$(t ${y}b${x#a}); done'
real0m2.104s
user0m0.284s
sys 0m0.516s
$ time bash -c 'x=aaa; t() { local x=$1; echo $x; }; 
while [ ${x%b} = ${x} ]; do y=; while :; do z=${x#b}; [ $z != $x ] || 
break; y=a$y x=$z; done; x=$(t ${y}b${x#a}); done'
real0m4.849s
user0m0.892s
sys 0m0.740s
$

It looks like moving to dash sped Debian up a little.


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


configuration files, ownership and dpkg-statoverride

2014-10-07 Thread Paul Gevers
Hi,

I am looking into dbconfig-common RC bug 720517 [1] and I was wondering
what the general idea is of maintainer scripts changing the permissions
and/or owners of configuration files and the use of dpkg-statoverride. I
myself find it unacceptable that updating a package changes the
permissions/owners of a configuration file without asking, even when I
have not documented that fact with dpkg-statoverride. At least that is
how I read policy 10.7.3 [2].

Do other people find it sensible that you need to document this fact
with dpkg-statoverride? In other words, is it ok to change permissions
and ownership as done by dbconfig-common if you didn't?

Paul

[1] https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=720517
[2] https://www.debian.org/doc/debian-policy/ch-files.html#s10.7.3



signature.asc
Description: OpenPGP digital signature


Re: Bug#757941: static linking: alternatives for glibc?

2014-10-07 Thread Julian Taylor
On 07.10.2014 08:07, Paul Wise wrote:
 On Tue, Oct 7, 2014 at 1:58 PM, Michael Tokarev wrote:
 
 apps becomes huge in size
 
 I wonder if LTO would help with the size issues, theoretically all the
 code from the static glibc that isn't used by busybox-static would be
 stripped out of the resulting binaries.
 

this is already the case with regular static linking, you don't need LTO
to remove unused code, the compiler only uses those objects from that
archive that are required to resolve all symbols.


-- 
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/543397bc.6020...@googlemail.com



Weak c++ symbols refresher needed

2014-10-07 Thread Mathieu Malaterre
Hi,

I am starring at bug #758572. Basically OP reports that `cmake` is
underlinked, which is a serious issue as per policy. However when
reading the details it appears that this is a c++ weak symbol (AFAIK
no weak default definition is available). This weak symbol is
generated by default by gcc when using part of the STL (See
#758572#13).

So I would be tempted to simply close the bug as invalid, since weak
symbol without default definition should not be an issue. However OP
reports that it makes `cmake` fails using a custom `libcurl`.

Could someone please remind me in which case weak symbols (no weak
default definition) can trigger an undefined behavior at runtime ?

Thanks.


-- 
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/CA+7wUszr9uQ-Ab9O8_GHGFkYpf==7iubeugfwa10xpsquit...@mail.gmail.com



Re: Weak c++ symbols refresher needed

2014-10-07 Thread Chow Loong Jin
On Tue, Oct 07, 2014 at 09:37:48AM +0200, Mathieu Malaterre wrote:
 Hi,
 
 I am starring at bug #758572. Basically OP reports that `cmake` is
 underlinked, which is a serious issue as per policy. However when
 reading the details it appears that this is a c++ weak symbol (AFAIK
 no weak default definition is available). This weak symbol is
 generated by default by gcc when using part of the STL (See
 #758572#13).
 
 So I would be tempted to simply close the bug as invalid, since weak
 symbol without default definition should not be an issue. However OP
 reports that it makes `cmake` fails using a custom `libcurl`.
 
 Could someone please remind me in which case weak symbols (no weak
 default definition) can trigger an undefined behavior at runtime ?

I think UB is only triggered if something attempts to use the symbol. Is cmake 
pulling in
another library that uses libpthread but doesn't link it in?

-- 
Kind regards,
Loong Jin


signature.asc
Description: Digital signature


Bug#764325: ITP: ddate -- convert Gregorian dates to Discordian dates

2014-10-07 Thread Sebastian Schmidt
Package: wnpp
Severity: wishlist
Owner: Sebastian Schmidt y...@yath.de

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

* Package name: ddate
  Version : 0.2.2
  Upstream Author : Jeremy Johnson mpyt...@gnu.ai.mit.edu
* URL : https://github.com/bo0ts/ddate
* License : Public Domain
  Programming Lang: C
  Description : convert Gregorian dates to Discordian dates

Displays the Discordian date of a given date. The Discordian calendar
was made popular by the Illuminatus! trilogy by Robert Shea and Robert
Anton Wilson.

ddate is no longer included in util-linux 2.25 so some fellow pope
decided to fork the code on github.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIVAwUBVDOtdvhx3EthBlqjAQhNtRAAvqXRRXSqCKvlx/UXQFipeb/vViW1AT2e
RQWK8JL9p3frEZl7KZfWVrPoJVpvmV3jr5iO2Ui9gRZBNPpvHS1dQiizZFGUSBt2
/Qv2zff7ogWkK+Qh/cGupT2RaW7rNJqs8jm8d/jLCfCLhhjrWjrC+UxIpwvIxhEd
AWsLOnrUWg8M15czVtXzNxuadKCp3grojFEpVNStletrC5b60v3Kl02+qW1Usf/g
YyrCpL0hGVITY2PagrvcpUN3pZAVKRppKYMiSRh4dvugLaFqLi+k2A3/j/qYg89X
BsG8WIoe50YsV0PXTV8/3KiRhC5oj/xQ79/WMQ8YW+cqoKPiUHzxcYgP8xiQpiB4
Ox7sBDQI9k0Pi6hSfUJUqTXuYVFupDonswtkMLD9ZQgLRUeT1vXgJ0CjAlAtjces
sVU01SK0BmCPVtnYStq4gIrHa4faY4xWHoOR8ktlFoErPw0CK0XL2AjEmDfk7UY7
MXBiu5btBcx6ZiHZCPxOnCQ9xFtVFX74dHsgA13XTjHjFaGgHsMFny68H2hAwFW/
13t1xA9kHcGnWN+FzgP2Jv558pXvREJlQwZPbQqY2axeCHb//6pSas4UhHgr7T5v
To2+i2+PoaITbi1j1PdIvl8AV/1lC+ygw4aanYP7MIj74XmrfuMbp5TC5xVpggy/
Ih7VzpLUcsc=
=k5mj
-END PGP SIGNATURE-


-- 
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/20141007090811.28363.33185.report...@moniac.lan.yath.de



Re: dgit and upstream git repos

2014-10-07 Thread Ian Jackson
Enrico Zini writes (dgit and upstream git repos):
 This is my scenario: I'm the upstream developer, I have an existing git
 repo with all the project history, and I'd like to be able to git push
 to debian using dgit.
 
 I ran dgit fetch, I ran git checkout -b dgit/sid dgit/dgit/sid and
 all was fine.
 
 When I had my new upstream version ready, however, and tried to merge it
 into the dgit branch, I realised that my development branch did not
 contain ./configure, Makefile.in and other autogenerated stuff, while
 the dgit branch of course did.

Right.

Since dgit is a way of editing the Debian archive using git, you
obviously have to have the actual complete contents of the Debian
package in your dgit git trees.

It appears that you want the Debian package to contain a different set
of files to the upstream git history.  I think this is a bad idea and
I have a rant about the meaning of `source code' which I will write at
the end of this message.

But nevertheless, doing this with dgit is easy.

 If anyone is working in a similar scenario and has a handy workflow
 with dgit, can you please tell me how you do things?

I think you can do what you want like this:

  dgit fetch sid
  git checkout -b dgit/sid dgit/dgit/sid
 # equivalent to   git checkout dgit/sid   I think
  git reset --hard upstream
  git merge -s ours dgit/dgit/sid
  git clean -xdff
  ./autogen.sh
  git add .
  git commit -sm 'Add autogenerated files'
  ed debian/changelog
  dgit push

This assumes that your `upstream' branch has debian/ files.  If it
doesn't then you will need to do something more complicated.  One way
is this:

  git checkout -b dgit/sid dgit/dgit/sid
  git merge -s ours upstream-tag-corresponding-to-this-debian-version
  git merge upstream
  ./autogen.sh
  git commit -asm 'Update autogenerated files'



On `source code': I think everyone should have the same definition of
`source code' for git as for tarballs.

That means either:

 1. configure, Makefile.in, etc. are supplied in both.  If you edit
configure.ac, you run autogen.sh and commit the result.  This
works perfectly fine and I work this way with many of my own
projects.  In the Xen project (which I work on during my day job)
we even commit flex and bison output because some of our
contributors are using old distro releases with prehistoric
versions.

A disadvantage is that sometimes you see a conflict in configure
(or another autogenerated file), but you can always solve them
with ./autogen.sh so it's never a problem.  And you see diffs to
configure etc. in your VCS history.

The advantage is that people on deficient operating systems, who
may not have the necessary version of autoconf or whatever, can
still build your package from git.  This is quite important if you
want to be able to take bug reports and code contributions from
such people!  You can hardly say `pls try latest tip' if they
can't build it.

 2. None of the autogenerated files are in git or the tarball.  The
INSTALL file doesn't say `./configure  make  make install';
it says `./autogen.sh  ./configure ...'.  debian/rules always
runs ./autogen.sh.

The advantage is that everyone is always building the package
fully from the ultimate source code.  The disadvantage is that
your build-dependencies now always include the latest and greatest
autoconf or automake or whatever, or you have to delay using new
features in your build infrastructure until all your downstreams
and contributors have finally stopped using Centos 5.


Thanks,
Ian.


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



Re: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Thorsten Glaser
On Sat, 4 Oct 2014, Russ Allbery wrote:

  If we were to decide that #309415 should be fixed in policy (and hence
  posh), then it should be done by requiring support for the obsolescent

The problems with posh and dash are also the sheer number of bugs
in corner cases, which the more actively developed shells fix.

posh inherited all bugs from pdksh which I fixed in mksh, partially
by rewriting the parser… so it had to be restarted from newer code.

dash, well, just ugh.

tglase@tglase:~ $ cat x
a='space divded  argument
here'
IFS=\  ; set -- $a
IFS= ; q=$* ; nq=$*
printf '%s\n' $* $* $q $nq
[ $q = $nq ]  echo =true || echo =false
tglase@tglase:~ $ dash x
spacedivdedargument
here
spacedivdedargument
here
spacedivdedargument
here
spacedivdedargument
here
=true
tglase@tglase:~ $ ksh93 x
spacedivdedargument
here
space
divded
argument
here
spacedivdedargument
here
spacedivdedargument
here
=true

  It's already fixed:

  * ‘test’, if implemented as a shell built-in, must support ‘-a’ and ‘-o’
  as binary logical operators.

 Yeah, that's been there for a while.  They were too widely used, so
 although they're really confusing, we decided not to pick that fight.

Yeah, but Md is an arsehole anyway and requires printf to be
a /bin/sh builtin instead of just adding /usr/bin to $PATH,
especially now that the initrd mounts /usr already anyway,
and CTTE decided to rather offend me than Md because he is
maintainer of the more important packages, or those where
it’s hard to find someone else for.

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.1410071459300.23...@tglase.lan.tarent.de



Re: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Neil McGovern
On Tue, Oct 07, 2014 at 03:03:05PM +0200, Thorsten Glaser wrote:
 Yeah, but Md is an arsehole anyway and requires printf to be
 a /bin/sh builtin instead of just adding /usr/bin to $PATH,
 especially now that the initrd mounts /usr already anyway,
 and CTTE decided to rather offend me than Md because he is
 maintainer of the more important packages, or those where
 it’s hard to find someone else for.
 

Thorsten,

Could you please keep your tone more civil? Personal attacks on fellow
project members and conspiracy theories does nothing to further your
technical arguments - in fact it makes me more likely to dismiss any
valid point you may have.

Neil
-- 


signature.asc
Description: Digital signature


Re: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread The Wanderer
On 10/07/2014 at 02:39 AM, Russell Stuart wrote:

 On Fri, 2014-10-03 at 09:20 -0700, Russ Allbery wrote:

 Oh!  I didn't realize or internalize that you were proposing
 switching the default shell to posh from dash.  Yes, that would
 certainly improve our compliance with Policy considerably.
 
 It's attractive because makes Policy more relevant - but only because
 of that.  Now that I think about it, switching pbuilder to posh would
 be almost as good.  Any additional pain would not be worth the
 effort.

Speaking as an uninvolved but interested observer, I though this
(switching the shell people use to build and test their packages, and
nothing else) was what you were proposing in the first place.

-- 
   The Wanderer

The reasonable man adapts himself to the world; the unreasonable one
persists in trying to adapt the world to himself. Therefore all
progress depends on the unreasonable man. -- George Bernard Shaw


0x3428326B.asc
Description: application/pgp-keys


signature.asc
Description: OpenPGP digital signature


Re: configuration files, ownership and dpkg-statoverride

2014-10-07 Thread Ian Jackson
Paul Gevers writes (configuration files, ownership and dpkg-statoverride):
 I am looking into dbconfig-common RC bug 720517 [1] and I was wondering
 what the general idea is of maintainer scripts changing the permissions
 and/or owners of configuration files and the use of dpkg-statoverride.

The user should not be expected or required to use dpkg-statoverride
on configuration files (whether they are dpkg-managed conffiles or
maintainers-script-managed).  chmod/chown should be sufficient.

  I myself find it unacceptable that updating a package changes the
 permissions/owners of a configuration file without asking, even when
 I have not documented that fact with dpkg-statoverride. At least
 that is how I read policy 10.7.3 [2].

I think you are right.  But I don't see anyone disputing this.
Also I don't see in your references an explanation from anyone as to
why dbconfig-common does this.

Ian.


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



Re: dgit and upstream git repos

2014-10-07 Thread Matthias Urlichs
Hi,

Ian Jackson:
 On `source code': I think everyone should have the same definition of
 `source code' for git as for tarballs.
 
I beg to differ. Not in principle, but because tarballs and git trees
target different groups of users.

I expect people who use my git trees to have a reasonably-recent system
which has a reasonably-current copy of autotools installed.

I expect no such thing from people who download a tarball onto CentOS 5
(or Solaris for that matter). They want sh ./configure  make to
work. (So do I, if/when I download a tarball, for that matter.)

The source code, as in the thing I work with when I want to change
the behavior of the program, is the git archive. It's not the tarball,
and it's empharically not anything produced by autotools.
(I really really don't like cluttering git trees with non-source.)

I no longer regard tarballs as source, strictly speaking. They're an
inconvenient (to me) way to package a bunch of files that can be used
to produce+install an executable.

-- 
-- 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/20141007150126.gb3...@smurf.noris.de



Re: Bug#757941: static linking: alternatives for glibc?

2014-10-07 Thread Matthias Urlichs
Hi,

Julian Taylor:
 this is already the case with regular static linking, you don't need LTO
 to remove unused code, the compiler only uses those objects from that
 archive that are required to resolve all symbols.
 
… remove _some_ unused code. Lots of code the linker pulls in from gcc will
never be called. For instance, it doesn't _know_ that none of your printf
statements contain '%f', so it adds the heap of code required to print
floats regardless.

-- 
-- 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/20141007151707.gc3...@smurf.noris.de



Re: dgit and upstream git repos

2014-10-07 Thread Russ Allbery
Ian Jackson ijack...@chiark.greenend.org.uk writes:

 On `source code': I think everyone should have the same definition of
 `source code' for git as for tarballs.

I understand why you feel this way, particularly given the tools that
you're working on, but this is not something I'm going to change as
upstream.  Git does not contain generated files, and the tarball release
does, because those two things are for different audiences.  Including the
generated files in Git generates a bunch of churn and irritating problems
on branch merges for no real gain for developers.  Not including them
makes it impossible for less sophisticated users to deploy my software
from source on older systems on systems that do not have Autoconf and
friends installed for whatever reason.  Both of those are real use cases I
regularly encounter, and having different contents in Git and the release
tarball solves both use cases quite well, with only a minor and
easily-automated inconvenience for packaging tools.

I say this not to pick a fight, since it's totally okay with me that you
feel differently, but to be clear that, regardless of preferences, the
reality that we'll have to deal with is that upstreams are not going to
follow this principle.  I know I'm not alone in putting my foot down on
this point.

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


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/871tqjew96@hope.eyrie.org



Re: dgit and upstream git repos

2014-10-07 Thread Daniel Pimentel (d4n1)
2014-10-07 12:01 GMT-03:00 Matthias Urlichs matth...@urlichs.de:

 Hi,

 Ian Jackson:
  On `source code': I think everyone should have the same definition of
  `source code' for git as for tarballs.
 
 I beg to differ. Not in principle, but because tarballs and git trees
 target different groups of users.

 I expect people who use my git trees to have a reasonably-recent system
 which has a reasonably-current copy of autotools installed.

 I expect no such thing from people who download a tarball onto CentOS 5
 (or Solaris for that matter). They want sh ./configure  make to
 work. (So do I, if/when I download a tarball, for that matter.)

 The source code, as in the thing I work with when I want to change
 the behavior of the program, is the git archive. It's not the tarball,
 and it's empharically not anything produced by autotools.
 (I really really don't like cluttering git trees with non-source.)

 I no longer regard tarballs as source, strictly speaking. They're an
 inconvenient (to me) way to package a bunch of files that can be used
 to produce+install an executable.

 --
 -- 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/20141007150126.gb3...@smurf.noris.de




-- 
Msc. Daniel Pimentel (d4n1 http:/www.d4n1.org)


Your behaviour on Debian lists

2014-10-07 Thread Cyril Brulebois
Thorsten Glaser t.gla...@tarent.de (2014-10-07):
 Yeah, but Md is an arsehole anyway and requires printf to be
 a /bin/sh builtin instead of just adding /usr/bin to $PATH,
 especially now that the initrd mounts /usr already anyway,
 and CTTE decided to rather offend me than Md because he is
 maintainer of the more important packages, or those where
 it’s hard to find someone else for.

I can't believe I'm reading this.

Such a toxic behaviour is very much not welcome on Debian lists, or
anywhere within the Debian project.

Please apologize and never do that again.

But since that isn't the first time (see May 2014), and since you don't
seem to care about your fellow developers, it might be worth considering
leaving the project entirely.

KiBi.


signature.asc
Description: Digital signature


Fwd: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Thorsten Glaser
Forwarding a bit of my answer on this. I don’t know what to
think about how this criticism immediately raises responses
like the two I already got, yet the other person in question
is allowed to disrespect his fellow DDs and just ignore the
fixes for real-world, although minority, problems.

I deliberately used an extremely few insulting word for this
but I don’t know how to else express it. And I do not believe
in staying quiet if it can’t be politely expressed, because,
let’s face it, the real world *is* full of shit, no matter
where you look at.

-- Forwarded message --
[…]

This is not “vitriol”, if I understand that word right, but a
somewhat coloured but nevertheless true description of facts.
I have been repeatedly backed up, in private, about this issue
by other DDs, but Md’s decision to actively break other shells
even when a workaround or even proper fix is pointed out to him
is destructive yet CTTE-backed. There are no words to describe
this…

bye,
//mirabilos
-- 
 Why don't you use JavaScript? I also don't like enabling JavaScript in
 Because I use lynx as browser.
+1
-- Octavio Alvarez, me and ⡍⠁⠗⠊⠕ (Mario Lang) on debian-devel


--
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.1410071803380.23...@tglase.lan.tarent.de



Re: Your behaviour on Debian lists

2014-10-07 Thread Ondřej Surý
On Tue, Oct 7, 2014, at 18:00, Cyril Brulebois wrote:
 Thorsten Glaser t.gla...@tarent.de (2014-10-07):
  Yeah, but Md is an arsehole anyway and requires printf to be
  a /bin/sh builtin instead of just adding /usr/bin to $PATH,
  especially now that the initrd mounts /usr already anyway,
  and CTTE decided to rather offend me than Md because he is
  maintainer of the more important packages, or those where
  it’s hard to find someone else for.
 
 I can't believe I'm reading this.
 
 Such a toxic behaviour is very much not welcome on Debian lists, or
 anywhere within the Debian project.
 
 Please apologize and never do that again.
 
 But since that isn't the first time (see May 2014), and since you don't
 seem to care about your fellow developers, it might be worth considering
 leaving the project entirely.

As I have witnessed several such behaviour myself on the debian lists,
and tg is only person I do have in my killfile, I am strongly seconding
this.

Ondrej
-- 
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/1412702339.4184912.176218889.3758c...@webmail.messagingengine.com



Re: Fwd: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Matthias Urlichs
Hi,

Thorsten Glaser:
 I deliberately used an extremely few insulting word for this

You should have deliberated a bit more, then.

The only acceptable concrete value for 'extremely few' is Zero.

-- 
-- 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/20141007174130.gd3...@smurf.noris.de



Re: Weak c++ symbols refresher needed

2014-10-07 Thread Bastian Blank
On Tue, Oct 07, 2014 at 04:23:54PM +0800, Chow Loong Jin wrote:
 On Tue, Oct 07, 2014 at 09:37:48AM +0200, Mathieu Malaterre wrote:
  I am starring at bug #758572. Basically OP reports that `cmake` is
  underlinked, which is a serious issue as per policy. However when
  reading the details it appears that this is a c++ weak symbol (AFAIK
  no weak default definition is available). This weak symbol is
  generated by default by gcc when using part of the STL (See
  #758572#13).

No, he shows that using a different libcurl makes ld.so barf.  He
provides no evidence that the weak symbol is the reason for this.

  Could someone please remind me in which case weak symbols (no weak
  default definition) can trigger an undefined behavior at runtime ?
 I think UB is only triggered if something attempts to use the symbol. Is 
 cmake pulling in
 another library that uses libpthread but doesn't link it in?

No, this is perfectly valid.  Weak symbols are initialized to zero if no
definition is found.

Bastian

-- 
Those who hate and fight must stop themselves -- otherwise it is not stopped.
-- Spock, Day of the Dove, stardate unknown


-- 
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/20141007174834.ga21...@mail.waldi.eu.org



Re: Bug#720517: configuration files, ownership and dpkg-statoverride

2014-10-07 Thread Paul Gevers
On 07-10-14 15:40, Ian Jackson wrote:
 Also I don't see in your references an explanation from anyone as to
 why dbconfig-common does this.

I you mean with why: why is it implemented this way than that is
exactly the question that I am asking myself looking at the code, if you
mean why does dbconfig-common change the ownership of cactis
configuration file than the answer is that you can tell dbconfig-common
in your maintainer scripts what the (I expected initial) ownership
should be. dbconfig-common than sets the ownership on every update of
the package where it is called, except when dpkg-statoverride is set.

I am trying to come up with a patch against dpkg-statoverride that sets
the ownership and permissions upon creation, but not upon updates.

Paul




signature.asc
Description: OpenPGP digital signature


Bug#764391: ITP: usbrelay -- USB HID relay driver

2014-10-07 Thread Jan Dittberner
Package: wnpp
Severity: wishlist
Owner: Jan Dittberner ja...@debian.org

* Package name: usbrelay
  Version : 0.0+git9b40688e
  Upstream Author : darrylb123
* URL : https://github.com/darrylb123/usbrelay
* License : to be clarified
  Programming Lang: C
  Description : USB HID relay driver

a small utility to control USB HID based relays that can be used for home
automation or other switching needs. The devices are available from several
sources and are able to handle up to 10A 250VAC.

An example application are USB controlable power switches. I use such a
switch to control the power supply of an external hard disk drive for backup
purposes.

I filed a ticket in upstreams bugtracker to clarify the licensing situation
[1].

[1] https://github.com/darrylb123/usbrelay/issues/6


-- 
Jan Dittberner - Debian Developer
GPG-key: 4096R/558FB8DD 2009-05-10
 B2FF 1D95 CE8F 7A22 DF4C  F09B A73E 0055 558F B8DD
http://portfolio.debian.net/ - http://people.debian.org/~jandd/


signature.asc
Description: Digital signature


Re: Fwd: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Adam Borowski
On Tue, Oct 07, 2014 at 07:41:30PM +0200, Matthias Urlichs wrote:
 Thorsten Glaser:
  I deliberately used an extremely few insulting word for this
 
 You should have deliberated a bit more, then.
 
 The only acceptable concrete value for 'extremely few' is Zero.

I'd say losing patience is quite understandable in this case: tg took his
time to investigate a bug, provided a patch yet had it rudely ignored,
despite 1. the bug having nasty effects (unbootable system if you try to
change your /bin/sh), 2. being (then) a violation of a must clause of
the policy.

-- 
// 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/20141007193038.ga19...@angband.pl



Re: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Thorsten Glaser
On Tue, 7 Oct 2014, Adam Borowski wrote:

 change your /bin/sh), 2. being (then) a violation of a must clause of
 the policy.

To be fair: my bug wasn’t about -a and -o, but about the printf builtin
which Policy is silent about. Some shells do have a builtin printf,
most don’t. printf(1) lives in /usr/bin, and Md’s init script set the
$PATH explicitly to /bin:/sbin yet still used printf(1), which, for a
POSIX sh script, is probably sensible anyway. He “just” barricaded all
three or four ways I could come up to fix this for the users.

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.1410072133250.9...@tglase.lan.tarent.de



Re: Fwd: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Matthias Urlichs
Hi,

Adam Borowski:
  The only acceptable concrete value for 'extremely few' is Zero.
 
 I'd say losing patience is quite understandable in this case

Probably. However, the context of this thread was not at all about a
maintainer who refused to apply a perfectly sensible patch. Getting
confronted with language like that, out of the blue, is no longer
something I'm willing to accept here.

A decade or so ago, this kind of thing was regarded as normal on our
mailing lists. We mostly-succeeded in civilizing the place, and frankly I
like them much better that way.

Slippery slope, and all that.

-- 
-- 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/20141007200909.gf3...@smurf.noris.de



Re: Bug#720517: configuration files, ownership and dpkg-statoverride

2014-10-07 Thread Henrique de Moraes Holschuh
On Tue, 07 Oct 2014, Paul Gevers wrote:
 I am trying to come up with a patch against dpkg-statoverride that sets
 the ownership and permissions upon creation, but not upon updates.

This really doesn't look like a good idea.  In fact, it may well introduce
very confusing and likely dangerous behavior.

Anyway, are you sure dpkg-statoverride is the correct tool for your usecase
in the first place?

If you want to set ownership and permisions upon creation but not on
updates, this is should not be a job for the statoverride database.  The
debconf database or an ucf-managed config file under /etc somewhere seems
much better suited to store information only to be used at creation time, at
least in the general case.

The dpkg-statoverride database is in the _job_ of *clobbering* permission
and ownership information of filesystem objects, and it is very security
sensitive.

It is not there only to handle local customization, either: it is an
essential component of the internals of the debian packaging system when
dealing with security-sensitive filesystem objects that need to be created
or replaced while a package is unpacked.  You often need to interact with
the statoverride database in preinst, so that files will be created/replaced
atomically by dpkg with the already correct ownership and permission
information.

This logic applies to anything that uses it.  When something is registered
through dpkg-statoverride, it must be managed through dpkg-statoverride.
Directly changing those permissions in the filesystem is *unsupported* in
the sense that they are _expected_ to be clobbered the next time that file
is modified by the packaging system (and that includes maintainer scripts).

I really don't think it is wise to mess with this basic assumption.  If it
is invalid for your usecase, it most likely means you are using the wrong
tool for the job.

BTW: the statoverride databased has to be queried by dpkg for every
filesystem object it has to create/replace while unpacking _any_ package.


Anyway, if you're still going to use dpkg-statoverride anywhere the local
admin might rightfully expect permission/ownership changes to stick, I
suggest you seriously consider taking a heavy-handed approach to ensure the
local admins *know* they have to go through dpkg-statoverride to change the
permissions and ownership information of those filesystem objects.

-- 
  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/20141007212301.gb3...@khazad-dum.debian.net



Re: Fwd: bash exorcism experiment ('bug' 762923 763012)

2014-10-07 Thread Charles Plessy
Le Tue, Oct 07, 2014 at 06:07:19PM +0200, Thorsten Glaser a écrit :
 
 I deliberately used an extremely few insulting word for this
 but I don’t know how to else express it. And I do not believe
 in staying quiet if it can’t be politely expressed, because,
 let’s face it, the real world *is* full of shit, no matter
 where you look at.

So basically, you are using the passive-aggressive argument that you did your
best regarding avoiding insults, but it was unavoidable because the other
person really deserves insults.  And you do this about a decision taken in
2009, from which you had ample time to get over.

On this mailing list, you went as far as calling for murder, and regularly
insulting others.

I hope that next time you will get at the very least banned from posting on
this list for a few weeks.

Cheers,

-- 
Charles Plessy
Debian Med packaging team,
http://www.debian.org/devel/debian-med
Tsurumi, Kanagawa, Japan


-- 
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20141007221631.ga1...@falafel.plessy.net



Enlightenment DR19 - Maintainers?!

2014-10-07 Thread Martinx - ジェームズ
Hey guys!

I'm wondering here... Where are the E19 packages for Debian?! :-P

I'm so tired of Gnome, Unity, KDE, XFCE, LXDE, Network Manager... hh!!
  :-)

So, why not make a *near to perfect* E19 packages for Debian (or Ubuntu)?
Using Econnman by default, Terminology and etc... ???

Right now, I'm using E19 compiled by hand, using my script (forked):

https://gist.github.com/tmartinx/86adc8f33b12f163028b#file-nineteen-2-sh

Also, I tried this PPA:
https://launchpad.net/~niko2040/+archive/ubuntu/e19?field.series_filter=trusty
but, it is too different from original Debian packages...

Lets make a Debian spin based on E19?!

Can't wait to try E-Wayland-Only!=D

Cheers!
Thiago


Re: Enlightenment DR19 - Maintainers?!

2014-10-07 Thread Paul Tagliamonte
On Wed, Oct 08, 2014 at 12:26:07AM -0300, Martinx - ジェームズ wrote:
Hey guys!

And gals!

I'm wondering here... Where are the E19 packages for Debian?!     :-P

You tell us!

I assume you're related to the recent reddit thread? If so, hi! Welcome!
If not, also hi! Welcome!

I'd suggest contacting the maintainers of e17 and seeing if they want to
work with you. There's also an Alioth group, I think!

[snip]

Can't wait to try E-Wayland-Only!    =D

Sounds awesome!

Cheers!
Thiago
 
 References
 
Visible links
1. https://gist.github.com/tmartinx/86adc8f33b12f163028b#file-nineteen-2-sh
2. 
 https://launchpad.net/~niko2040/+archive/ubuntu/e19?field.series_filter=trusty

Cheers,
  Paul

-- 
 .''`.  Paul Tagliamonte paul...@debian.org  |   Proud Debian Developer
: :'  : 4096R / 8F04 9AD8 2C92 066C 7352  D28A 7B58 5B30 807C 2A87
`. `'`  http://people.debian.org/~paultag
 `- http://people.debian.org/~paultag/conduct-statement.txt


signature.asc
Description: Digital signature


Accepted ceilometer 2014.1.3-2 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 05 Oct 2014 14:21:44 +0800
Source: ceilometer
Binary: python-ceilometer ceilometer-common ceilometer-collector ceilometer-api 
ceilometer-agent-compute ceilometer-agent-central ceilometer-alarm-evaluator 
ceilometer-alarm-notifier ceilometer-agent-notification
Architecture: source all
Version: 2014.1.3-2
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 ceilometer-agent-central - OpenStack efficient metering counters system - 
central agent
 ceilometer-agent-compute - OpenStack efficient metering counters system - 
compute agent
 ceilometer-agent-notification - OpenStack efficient metering counters system - 
agent notification
 ceilometer-alarm-evaluator - OpenStack efficient metering counters system - 
alarm evaluator
 ceilometer-alarm-notifier - OpenStack efficient metering counters system - 
alarm notifier
 ceilometer-api - OpenStack efficient metering counters system (API service)
 ceilometer-collector - OpenStack efficient metering counters system - 
collector service
 ceilometer-common - OpenStack efficient metering counters system - common files
 python-ceilometer - OpenStack efficient metering counters system - Python 
libraries
Changes:
 ceilometer (2014.1.3-2) unstable; urgency=medium
 .
   * Mangling upstream rc and beta versions in watch file.
   * Using templated init, upstart and systemd scripts from
 openstack-pkg-tools = 13.
   * Removed all debian/*.logrotate, using only one in the -common package.
   * Standards-Version is now 3.9.6 (no change).
   * Fixed duplicate short description.
   * Removed d3 from debian/copyright.
Checksums-Sha1:
 01463432de91259913b190b686b0d784ce161bd6 4155 ceilometer_2014.1.3-2.dsc
 dde281492a3eb3f303eb746b25bb9e81fbd8bb59 32392 
ceilometer_2014.1.3-2.debian.tar.xz
 d0b972c62f1ed59a2be5c7f4b268c0be595e8fab 334476 
python-ceilometer_2014.1.3-2_all.deb
 e6096c25b39e0c842e625dcde962c4aec78411bf 27128 
ceilometer-common_2014.1.3-2_all.deb
 8c4c5d9530a77bbdc4c43a0b7a8e5a03eddce5a6 8812 
ceilometer-collector_2014.1.3-2_all.deb
 9067bd7c81f53409034a24abb9af2c0ad8ccad09 24834 
ceilometer-api_2014.1.3-2_all.deb
 815ef0e6545e10eeb5a680b4390aeb1b05f891dd 8746 
ceilometer-agent-compute_2014.1.3-2_all.deb
 f3ed166efe34a6cfa58850d434b452617e3b26b8 8750 
ceilometer-agent-central_2014.1.3-2_all.deb
 472240ff826a85b63cd221ed16f2f98d3928705e 8420 
ceilometer-alarm-evaluator_2014.1.3-2_all.deb
 454fcb719ec08d91f9c36a45bf894dfc19b97336 8420 
ceilometer-alarm-notifier_2014.1.3-2_all.deb
 fa5ee521ce9f181669faf0fe988c47fe1158caad 8414 
ceilometer-agent-notification_2014.1.3-2_all.deb
Checksums-Sha256:
 355a6040e1fb77212949b5e59dcaef9fe2c00d9241dd9a8d013453d4a00382af 4155 
ceilometer_2014.1.3-2.dsc
 85c9fd1be4f19002151c00836cb2e69febe4125d4da3bd7171a7818c32f74c1d 32392 
ceilometer_2014.1.3-2.debian.tar.xz
 da502aa0b4d63bc3a97e439181adf5e4934b9a0cd39e654eabf41aab14087b1e 334476 
python-ceilometer_2014.1.3-2_all.deb
 3d28f319801e4a4c6287a499b89ba87818ac70916911c6e2d91a0c5b1cca4b93 27128 
ceilometer-common_2014.1.3-2_all.deb
 b14ddd455ba3ac200d8cb637743fcb08a1c312481e5bd33eb9d0d4d6c38f77fd 8812 
ceilometer-collector_2014.1.3-2_all.deb
 444b22188be14853d41efca151940536b343c78d5a6e362b9707a56c544adc0d 24834 
ceilometer-api_2014.1.3-2_all.deb
 d98a47c651dc067e489ccd490706f80891699c1fb3c588973a982b6a4ff0fd71 8746 
ceilometer-agent-compute_2014.1.3-2_all.deb
 a9bf625ca3bf9b430a8eb4cb60921ef753b0f62757793918758e35e18726509e 8750 
ceilometer-agent-central_2014.1.3-2_all.deb
 2db17f9e4c91c3850e492ec5c4d04082c8eee907c7f7568489f7e58aedddb4a9 8420 
ceilometer-alarm-evaluator_2014.1.3-2_all.deb
 18f3a2d91f9edf6d94f2d0622bf57575a19c3f7dbc85cdb056bc95b5f7fcb58a 8420 
ceilometer-alarm-notifier_2014.1.3-2_all.deb
 a565fc191137cfcbcd46d0410ffdb67b7573dbd52eaa6f4b27782046971a91cf 8414 
ceilometer-agent-notification_2014.1.3-2_all.deb
Files:
 87efa6d92d5a6dd6c0cd20d290477573 4155 web optional ceilometer_2014.1.3-2.dsc
 190802c3086d6d1b2393bb2343407ece 32392 web optional 
ceilometer_2014.1.3-2.debian.tar.xz
 405b14a9ae1ba35f20e46cb5c6835a87 334476 python optional 
python-ceilometer_2014.1.3-2_all.deb
 e96bcdf9269cec657647e60d3fb67680 27128 web optional 
ceilometer-common_2014.1.3-2_all.deb
 0a88fbe04a39a607a3772bc00490a10d 8812 web optional 
ceilometer-collector_2014.1.3-2_all.deb
 e31a88f0f910de3ec09ffe5afa223942 24834 web optional 
ceilometer-api_2014.1.3-2_all.deb
 940bfdf456e81e648df7e7769b89a72c 8746 web optional 
ceilometer-agent-compute_2014.1.3-2_all.deb
 243c1807bf118c12c7141d7318fc7d53 8750 web optional 
ceilometer-agent-central_2014.1.3-2_all.deb
 ffd8a33fcecd54cfccd9d4dcc3f8838b 8420 web optional 
ceilometer-alarm-evaluator_2014.1.3-2_all.deb
 8f9c6ae7d9f25874b35a3c676e0dc6cb 8420 web optional 
ceilometer-alarm-notifier_2014.1.3-2_all.deb
 f4effe1a83f6d138d3dd1be0dac2398d 8414 web optional 

Accepted openstack-pkg-tools 15 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 13:42:53 +0800
Source: openstack-pkg-tools
Binary: openstack-pkg-tools
Architecture: source all
Version: 15
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 openstack-pkg-tools - Tools and scripts for building Openstack packages in 
Debian
Changes:
 openstack-pkg-tools (15) unstable; urgency=medium
 .
   * Uploading to unstable.
Checksums-Sha1:
 b1a1dcd7e92583cd32965bf18d6c91b6093bbc8e 1764 openstack-pkg-tools_15.dsc
 d38959ba93a9090d4d8abb4147ae2a2f290b368d 12100 openstack-pkg-tools_15.tar.xz
 9edade220eb65d72354a253512f10520296afd1a 12898 openstack-pkg-tools_15_all.deb
Checksums-Sha256:
 3720d8c519c9fa8e10d3c7e8ba435adbe5178324ec479c7ded33716b1b56e90a 1764 
openstack-pkg-tools_15.dsc
 f158c872ed0532eaf37f86dfda2df88272ac9119b2717a61fa9a3d4f591da3d8 12100 
openstack-pkg-tools_15.tar.xz
 06920fe37b65857f82eb1f24abef6d2a94159f7ac442ec5426dee36f5dae38ee 12898 
openstack-pkg-tools_15_all.deb
Files:
 4e265e4d4a2ea4cacbe42bc86576d81c 1764 devel extra openstack-pkg-tools_15.dsc
 cdf611c4891c866c342ccab71bed88cc 12100 devel extra 
openstack-pkg-tools_15.tar.xz
 0ac6604628f89324d284b753f574a6bb 12898 devel extra 
openstack-pkg-tools_15_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM3+kAAoJENQWrRWsa0P+icwP/j45MtBCy64bUl2IiOR0aRV+
r88pf84H+ozjRPYdjDUthRR3BA3ZIS8sJ9wZ/NzYAgu0Y+aiMjN4rx7cX9Xo4/Wi
B2/QCZtKLeSwLXA2TIiv3J/cc13IsaBqHhcDe2gqi7b0jkLeog2q1F+L+IlCsIKT
OxI9Hi9ow+sMY3eOv0OpxQYLS5HG8hQ4+Izdof27oShDRIb60rND4ton+WQ5Rlw3
PX3tXfe11JM2poi+kZC5zBblwJdWHdzCCigsZLgClht/B3uB22MMvotmK2Dood+z
2Hr7ezJ0y7KqmYvhzCnLzoQ3/Lt8zhMSMzfwZE2QGASspeWtXZQ3ODM6XPqDl5BN
T/360OfQ+Ze7zIaa3VuuW6lw0NyHAi2R6DLs/WHL8as2oTjjxsa14QPXzCd7+u97
1Ga38qL4vr/Gy9JDjaLRVS6pFOb8Wri52nChvIMGbtBYc2W8m4nh2fYDyUr/eQQp
cebYo3d4vt0aLi8JhKA5ndRC6O8Ie8aSLQb29YDCHuh/Lj5GVKcNvrMljpM6WEf6
wSgxaBJGsnkypOuqLwku9IQrlvo8Cwyk9VpYm7NxITBfdO7pOPs0MoCrwjUnyUgd
Ot0q2z+3MsaiXKdJgi6L+7Ra9kluGc/I5jUXyxi28jRsU3IqOuP0rSiRLo2bD980
TVo1l7MtKwQ7ockFCYn/
=boum
-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/e1xbnso-0003jw...@franck.debian.org



Accepted debian-edu-config 1.808 (source all) into unstable

2014-10-07 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 07:59:27 +0200
Source: debian-edu-config
Binary: debian-edu-config debian-edu-config-gosa-netgroups
Architecture: source all
Version: 1.808
Distribution: unstable
Urgency: high
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description: 
 debian-edu-config - Configuration files for Skolelinux systems
 debian-edu-config-gosa-netgroups - netgroups plugin for GOsa²
Changes: 
 debian-edu-config (1.808) unstable; urgency=high
 .
   * Fix typo in cf.apt breaking the installation.
Checksums-Sha1: 
 b8458b9ce7390250fc53f9418ed64b943b1007cd 1347 debian-edu-config_1.808.dsc
 eb7790d483b04c238afbdd4e27f01b4bf63d91b8 541091 debian-edu-config_1.808.tar.gz
 5152f3b9fd14d27d9916f6621f1737c5ca592ec2 425978 debian-edu-config_1.808_all.deb
 de260434b5ae20b7db8302d8e55eeb8456846cc9 128612 
debian-edu-config-gosa-netgroups_1.808_all.deb
Checksums-Sha256: 
 2bab99268821feffaa39fc420a8b44aa7cecdd0fc83f0fa09ea3d0653ce966fd 1347 
debian-edu-config_1.808.dsc
 272c1523fd4903170cf4caa57b551e715351092c1ed27c7e8cbc445fb9045315 541091 
debian-edu-config_1.808.tar.gz
 00b694255e65fea131f5028118f2eaa4e5b1a66c71e4ae4d99a412328ca3596e 425978 
debian-edu-config_1.808_all.deb
 be178d7a11bc3825c1f46f735f408bdc4d75feb94bad5ba38203c094db319a3d 128612 
debian-edu-config-gosa-netgroups_1.808_all.deb
Files: 
 3ee578ec64fe363d5ac3d12a002e1e3f 1347 misc extra debian-edu-config_1.808.dsc
 8b6c5d7421efbbd27495a19e52db2386 541091 misc extra 
debian-edu-config_1.808.tar.gz
 f5c3e63b3446ba9efec8748233fed6d5 425978 misc extra 
debian-edu-config_1.808_all.deb
 a02cade33814b19b86e0ac46c04f0d51 128612 misc extra 
debian-edu-config-gosa-netgroups_1.808_all.deb

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

iD8DBQFUM4Fr20zMSyow1ykRAqjSAJ44YJ2uJLcXunVxBy5zy6ZbwApb8gCbBk7q
POivv0iJaVq4z/IfPXBKrDk=
=tMsG
-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/e1xbo6v-0004vk...@franck.debian.org



Accepted libkexiv2 4:4.14.1-1 (source amd64 all) into unstable

2014-10-07 Thread Pino Toscano
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 08:33:12 +0200
Source: libkexiv2
Binary: libkexiv2-11 libkexiv2-data libkexiv2-dev libkexiv2-dbg
Architecture: source amd64 all
Version: 4:4.14.1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Pino Toscano p...@debian.org
Description:
 libkexiv2-11 - Qt like interface for the libexiv2 library
 libkexiv2-data - Qt-like interface for the libexiv2 library -- data files
 libkexiv2-dbg - Qt-like interface for the libexiv2 library -- debugging symbols
 libkexiv2-dev - Qt-like interface for the libexiv2 library -- development files
Closes: 763991
Changes:
 libkexiv2 (4:4.14.1-1) unstable; urgency=medium
 .
   * New upstream release.
   * Backport few upstream patches (basically a KDE/4.14 branch pull):
 - backport commit 25ad41274d0f4084554794ee91e183accfce781f to fix
   out-of-bounds crashes when handling metadata; patch
   upstream_Prevent-crash-if-index-if-out-of-QList-range.patch.
   (Closes: #763991)
 - backport commit 6b680149626a8b8b5524656ab4b2d9a4ce6cfbae to bump the
   version to 2.3.2, so library users (e.g. digikam) can know this version
   has the above fix; patch upstream_bump-the-version-to-2.3.2.patch.
 - backport commit 1af638424c3bc55e5ceac5f4ac6f48ee47f407a7 to avoid useless
   change requests when no actual changes were done; patch
   upstream_If-edited-and-previous-strings-are-empty-do-nothing.patch.
   * Update install files (related to the version change).
Checksums-Sha1:
 14f9d66184c21c650cf332f82548002813bfd0e9 1633 libkexiv2_4.14.1-1.dsc
 6c4461d309253c6615e375493bbae8a50c0c1b5f 136156 libkexiv2_4.14.1.orig.tar.xz
 521cdc7a6b56b1c93b815bf759b8711758ed6280 8812 libkexiv2_4.14.1-1.debian.tar.xz
 8f1085df0936d0cd22adbe1b0fc31491e6b2cd1c 216928 libkexiv2-11_4.14.1-1_amd64.deb
 22396bd76b618fa2db9155a5176ccea5fac83f6b 67356 libkexiv2-data_4.14.1-1_all.deb
 2accecfbba774768e39834af31a86babc2c371ce 22582 libkexiv2-dev_4.14.1-1_amd64.deb
 2a06d451a4b67bf986419b3bfac0c83970dccbde 2006442 
libkexiv2-dbg_4.14.1-1_amd64.deb
Checksums-Sha256:
 1b9f4ee11d2ad80b9e90671f41eaca2da2e494275d577830423b6900249efdd8 1633 
libkexiv2_4.14.1-1.dsc
 5366b0fa37674bdfce81e706c64b7730b3d3c205829d24f55221b062c1e92b3a 136156 
libkexiv2_4.14.1.orig.tar.xz
 c6c297829054e7a56dc8a533da3076b3b419e793efdfe0ce3668f00809c60f44 8812 
libkexiv2_4.14.1-1.debian.tar.xz
 ff33eb0b3c5234124d7b6b00d54948c9885630c8b4868713892a236dca806ac3 216928 
libkexiv2-11_4.14.1-1_amd64.deb
 ed597e50c73d575d95682aa114fec65900393f017728de6d88ae1ad47122500a 67356 
libkexiv2-data_4.14.1-1_all.deb
 789ef43b4b26c3e2f7f4e5d50cb003fdc888bbcc128f1a13655e2c4b490b987d 22582 
libkexiv2-dev_4.14.1-1_amd64.deb
 d457fa316afe67f87e517fb5501aa927d602a704f7e7daa4264d556f0a000698 2006442 
libkexiv2-dbg_4.14.1-1_amd64.deb
Files:
 068e50fe61c916f75db1ee7af8140c96 1633 kde optional libkexiv2_4.14.1-1.dsc
 69ec5c37992a3530e648bee944b47481 136156 kde optional 
libkexiv2_4.14.1.orig.tar.xz
 8532e2be2453c19fc88a95cb4e98d997 8812 kde optional 
libkexiv2_4.14.1-1.debian.tar.xz
 cc4723f9ebc968639e23a7491f9d5dcb 216928 libs optional 
libkexiv2-11_4.14.1-1_amd64.deb
 a1e0d58150369e103f6614237d9ab9f3 67356 kde optional 
libkexiv2-data_4.14.1-1_all.deb
 6d997bbce5d241206866aa0f618134f7 22582 libdevel optional 
libkexiv2-dev_4.14.1-1_amd64.deb
 5901a0e49128274a7d76b979bf8239c1 2006442 debug extra 
libkexiv2-dbg_4.14.1-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iD8DBQFUM4rrTNH2piB/L3oRAuTHAJsF9I30S0tJJZMmMcDAe0FePSWdKgCfRASx
fDwRdTG9gg0/wldKgQPdebs=
=8LhR
-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/e1xbozh-af...@franck.debian.org



Accepted florence 0.6.2-1 (source amd64) into unstable, unstable

2014-10-07 Thread Jérémy Bobbio
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 06 Oct 2014 12:46:29 +0200
Source: florence
Binary: florence libflorence-1.0-1 libflorence-1.0-dev
Architecture: source amd64
Version: 0.6.2-1
Distribution: unstable
Urgency: low
Maintainer: Jérémy Bobbio lu...@debian.org
Changed-By: Jérémy Bobbio lu...@debian.org
Description:
 florence   - extensible and scalable virtual keyboard for X
 libflorence-1.0-1 - extensible and scalable virtual keyboard for X
 libflorence-1.0-dev - extensible and scalable virtual keyboard for X
Closes: 735919 764139
Changes:
 florence (0.6.2-1) unstable; urgency=low
 .
   * New upstream release:
 - Implement a floating icon for desktops with no systray. (Closes: #764139)
   * Fix Section to be x11. Thanks Dylan Thurston. (Closes: #735919)
   * Update Build-Depends.
   * Split the package now that upstream ships a shared library.
   * Update debian/copyright.
   * Bump Standards-Version to 3.9.6, no changes required.
Checksums-Sha1:
 2fcaa97f28a086b0192206c8c1f98cb14420146f 2162 florence_0.6.2-1.dsc
 db763ffd5e2eb65096daa27f0e4b221cea7d1014 1073200 florence_0.6.2.orig.tar.bz2
 6afbc4725fc26c595671be9c5a93691e9d5ad9a2 5956 florence_0.6.2-1.debian.tar.xz
 83844699e7c0ef29e0e6f6663317bacad3dbcd67 649568 florence_0.6.2-1_amd64.deb
 e546ff495af061897b8900bfabd8eff3b9c68771 9788 
libflorence-1.0-1_0.6.2-1_amd64.deb
 068a7c35a24b12adea8bb0c7ec71c61cbb467680 9332 
libflorence-1.0-dev_0.6.2-1_amd64.deb
Checksums-Sha256:
 25e96d592cff1df15f22b1db7f2dd304c58a229caecd843f482d06398425de2e 2162 
florence_0.6.2-1.dsc
 185ce805be5e5ef7cb42cd1f5abc93ab30b949651f04d37457e40022f98802f3 1073200 
florence_0.6.2.orig.tar.bz2
 fa4effbd6b8cf761bc5a3dac787c675e33270f988275b95e21eb7da7ccee0b49 5956 
florence_0.6.2-1.debian.tar.xz
 eaf771a42a53e04f9b89a78c0b440176ad2864314a6866076f48e4b9157a4062 649568 
florence_0.6.2-1_amd64.deb
 22807d80874bc0f51445cb3dc4909cb9ce8faed6cee33e697f965f1b6cbdec8a 9788 
libflorence-1.0-1_0.6.2-1_amd64.deb
 93c088f4acebae121afcf12f91d81d0d26d64f7ab8542712c0874c75eb0f6b17 9332 
libflorence-1.0-dev_0.6.2-1_amd64.deb
Files:
 2421aa43632c64b097a323636ede7674 649568 x11 optional florence_0.6.2-1_amd64.deb
 0e7343d013483322a30f071a05c3d539 9788 libs optional 
libflorence-1.0-1_0.6.2-1_amd64.deb
 e5faad2febe10f1a03647cf536495274 9332 libdevel optional 
libflorence-1.0-dev_0.6.2-1_amd64.deb
 9c2858b142d81f78eb5f06c2d2205e4d 2162 x11 optional florence_0.6.2-1.dsc
 7d715eab321b8bebc1f6708482a01aa6 1073200 x11 optional 
florence_0.6.2.orig.tar.bz2
 50d0afaf5e30e9162d321949d3e65837 5956 x11 optional 
florence_0.6.2-1.debian.tar.xz

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

iQIcBAEBCAAGBQJUMnfKAAoJEEAsIlA9Nuk2hfsP+wevqcLm+sy5rCNVDJ82m9ZC
Z887uPUR7OsvoS3Q8fjIFG6qIGVBtfktKhwddHlbEyD8b8gvEcfFwTL51Mh3Az2f
rnm2adL9BH62/U1z0bhlflYT2wW0v0mZOWIk18Kn00UTmY5zo3UpqTExjVRsO9rF
ANR9QiuBYKrAxIEHS3GXVlzB0si7frAEt9gFJ0wYpXUhNiVLLkppVojiYrz8RQwX
HRLoHiV7wgGbQytFKf7uzps0AFXw0XXP8uUhnlO6Q4YV2SP47305sgbjmb/k1VeU
FFWl7kHqktxOleyEfmOGDy53hqaamWuGNgxFmUdniAtUNq0To9dWOjBxVM+Gs+UI
1hzeM58tOdtjxviI3hYdmujy4hFFtQC4a630QaXnhfQ/1lMc6MXiJF9Tqc9jQc+x
HKt11UP4kcs1ZG0ySjU/cq3Li1fymFBuOx97T3F/SPXuZoRcKNRVnQ7+USvkmilW
iHnZMIjDi7gs+TN5JcpqbJP4C5mRlbLDFNqDdkI5VS16xcG06MZ6OmAag+BAXh8U
8xLJ52YMGMb/rRjLSb0wvNGc5Y2whUgzYPeKboXF2UjodS8EAOabYR6X1LGVFHm5
HFHLBHhXXHngtYVEpLgp/P+JUFsHth1QHS/y1hDqhAE/uCgxNtMp9VwZVBHKUStN
kHYDIfp7RjrQLvMYVs1U
=RB1l
-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/e1xbokh-00026b...@franck.debian.org



Accepted ceilometer 2014.2~rc1-2 (source all) into experimental, experimental

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 00:49:22 +
Source: ceilometer
Binary: python-ceilometer ceilometer-common ceilometer-collector ceilometer-api 
ceilometer-agent-compute ceilometer-agent-central ceilometer-alarm-evaluator 
ceilometer-alarm-notifier ceilometer-agent-notification ceilometer-agent-ipmi
Architecture: source all
Version: 2014.2~rc1-2
Distribution: experimental
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 ceilometer-agent-central - OpenStack efficient metering counters system - 
central agent
 ceilometer-agent-compute - OpenStack efficient metering counters system - 
compute agent
 ceilometer-agent-ipmi - OpenStack efficient metering counters system - IPMI 
agent
 ceilometer-agent-notification - OpenStack efficient metering counters system - 
agent notification
 ceilometer-alarm-evaluator - OpenStack efficient metering counters system - 
alarm evaluator
 ceilometer-alarm-notifier - OpenStack efficient metering counters system - 
alarm notifier
 ceilometer-api - OpenStack efficient metering counters system (API service)
 ceilometer-collector - OpenStack efficient metering counters system - 
collector service
 ceilometer-common - OpenStack efficient metering counters system - common files
 python-ceilometer - OpenStack efficient metering counters system - Python 
libraries
Changes:
 ceilometer (2014.2~rc1-2) experimental; urgency=medium
 .
   * Mangling upstream rc and beta versions in watch file.
   * Added missing binaries.
   * Now packaging ceilometer-agent-ipmi.
   * Using templated init, upstart and systemd scripts from
 openstack-pkg-tools = 13.
   * Fixed upstream files gone in debian/copyright.
   * Standards-Version is now 3.9.6 (no change).
Checksums-Sha1:
 f6ca4ecad91471220144bca53097421e8b144d80 4479 ceilometer_2014.2~rc1-2.dsc
 e6a260ae9e7c890c2bcf38e3ffd54d53c81bec09 19284 
ceilometer_2014.2~rc1-2.debian.tar.xz
 882d0586ec50bd99ea8f9f492b95f675443c27d7 332160 
python-ceilometer_2014.2~rc1-2_all.deb
 3d967992259ce47e5567c2c56a2828a32de11b75 27536 
ceilometer-common_2014.2~rc1-2_all.deb
 0b7ef756022d38a6db23ccdbf3115d96a00d9dc5 8146 
ceilometer-collector_2014.2~rc1-2_all.deb
 1210449ae1f210058581f7983fe8f039a0ae4147 24180 
ceilometer-api_2014.2~rc1-2_all.deb
 8137694a99410085aa6d5026698214f4e634de7a 8074 
ceilometer-agent-compute_2014.2~rc1-2_all.deb
 bf7277e8b07c2e29065f4380779997be039b5a96 8070 
ceilometer-agent-central_2014.2~rc1-2_all.deb
 d13eebda39d6e13282988ab43ec4ee05d712ff20 7758 
ceilometer-alarm-evaluator_2014.2~rc1-2_all.deb
 c91a0d1d887df64339f687c8f92b1342ddadca12 7758 
ceilometer-alarm-notifier_2014.2~rc1-2_all.deb
 586db784decdf1c1543737dd9ce78cbebc016d09 7758 
ceilometer-agent-notification_2014.2~rc1-2_all.deb
 36a98b0995890c43deb4c990e38d7f8f6cf7c68d 7778 
ceilometer-agent-ipmi_2014.2~rc1-2_all.deb
Checksums-Sha256:
 ca2b4048befb1d6e873028314f6f18a1da606e3b4934ffa479c90e30c1cba340 4479 
ceilometer_2014.2~rc1-2.dsc
 e06aae11d47c67ffde59e4797e0797f2e4c8f47f53219d00e98ff6602675f07f 19284 
ceilometer_2014.2~rc1-2.debian.tar.xz
 ea8b9b298e3807521d1438257de700b81ca06e796eb2dd4dded8a0b87859d3e0 332160 
python-ceilometer_2014.2~rc1-2_all.deb
 4becd647331190b5cfcaf5985f5edf6571a79a7a54f0f333e28b6a81fbf5c7d1 27536 
ceilometer-common_2014.2~rc1-2_all.deb
 850b53df399283f8a657c43a879c45b8650f29f81e946c54742ddff53962a9e5 8146 
ceilometer-collector_2014.2~rc1-2_all.deb
 1daaa6c6174d83689a4c29ba407eb3a23a11287428081d157df76a6743ca08ad 24180 
ceilometer-api_2014.2~rc1-2_all.deb
 afea10887a77838b380352057175b2423c76026bb3e611d1aca80ca012481947 8074 
ceilometer-agent-compute_2014.2~rc1-2_all.deb
 b5cc9d57c88c38561b71a7c1c6376386ff57ddb6de85e2880c3ec9b9c41bc7fb 8070 
ceilometer-agent-central_2014.2~rc1-2_all.deb
 c9e87ea3245fe7c0d63a6472eff810acc3f593c96999e3ff1c0ce22612aadffa 7758 
ceilometer-alarm-evaluator_2014.2~rc1-2_all.deb
 dc78a99104914c9462bf038c54a87f68bf869ec8817df1fd5426c03e0c00b0f5 7758 
ceilometer-alarm-notifier_2014.2~rc1-2_all.deb
 0f5dfb3f111ce6941baa5d07abdaafddce2344315001bff6b3dea2365d94323f 7758 
ceilometer-agent-notification_2014.2~rc1-2_all.deb
 e48cb36c8824acb8409fce611010c19c255bc76ec5cabe372ef4f38e477df5a8 7778 
ceilometer-agent-ipmi_2014.2~rc1-2_all.deb
Files:
 1b6da55a5d468c698dd08e08d06b6664 4479 web optional ceilometer_2014.2~rc1-2.dsc
 60cc0b6dbc73a3a494106053925a2176 19284 web optional 
ceilometer_2014.2~rc1-2.debian.tar.xz
 a2797977262a67f316e719621f2434a6 332160 python optional 
python-ceilometer_2014.2~rc1-2_all.deb
 260190bd7fee3cc16cd2a3bcab1afcc5 27536 web optional 
ceilometer-common_2014.2~rc1-2_all.deb
 7fd8e074d561503aed334891015c443c 8146 web optional 
ceilometer-collector_2014.2~rc1-2_all.deb
 842cb2cf7aa0a2b9ad3371ea4695ec81 24180 web optional 
ceilometer-api_2014.2~rc1-2_all.deb
 47c912188fb9f48a502499e7a22ac081 8074 web optional 
ceilometer-agent-compute_2014.2~rc1-2_all.deb
 

Accepted xbmc 2:13.2+dfsg1-2 (source all amd64) into unstable, unstable

2014-10-07 Thread Balint Reczey
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Mon, 06 Oct 2014 22:42:34 +0200
Source: xbmc
Binary: xbmc xbmc-bin xbmc-dbg xbmc-eventclients-common xbmc-eventclients-dev 
xbmc-eventclients-wiiremote xbmc-eventclients-j2me xbmc-eventclients-ps3 
xbmc-eventclients-xbmc-send xbmc-addons-dev
Architecture: source all amd64
Version: 2:13.2+dfsg1-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Balint Reczey bal...@balintreczey.hu
Description:
 xbmc   - XBMC Media Center (arch-independent data package)
 xbmc-addons-dev - XBMC Media Center (Addons Dev package)
 xbmc-bin   - XBMC Media Center (binary data package)
 xbmc-dbg   - XBMC Media Center - debug symbols
 xbmc-eventclients-common - XBMC Media Center (Event Client Common package)
 xbmc-eventclients-dev - XBMC Media Center (Event Client Dev package)
 xbmc-eventclients-j2me - XBMC Media Center (Event Client J2ME package)
 xbmc-eventclients-ps3 - XBMC Media Center (Event Client PS3 package)
 xbmc-eventclients-wiiremote - XBMC Media Center (Event Client WII Remote 
support package)
 xbmc-eventclients-xbmc-send - XBMC Media Center (Event Client XBMC-SEND 
package)
Closes: 742896 745060 750199 750603 763627
Changes:
 xbmc (2:13.2+dfsg1-2) unstable; urgency=medium
 .
   * Provide debug symbols in a separate package (Closes: #763627)
   * Always pass --enable-debug to configure to generate debug symbols
   * Fix XBMC's VDPAU API usage with patch from Libav
 (Closes: #750199, #742896, #745060, #750603)
Checksums-Sha1:
 0f7f30172b72c193f7f0ad8aa1545d40924ff89b 4271 xbmc_13.2+dfsg1-2.dsc
 8206887da32d0ddfd06b0eb5fd59b623143281c0 75992 xbmc_13.2+dfsg1-2.debian.tar.xz
 c5ac1a367c26fd9fcce324b033d3c740b9b27086 16908380 xbmc_13.2+dfsg1-2_all.deb
 e6e558d7ca653f8b42308aed637ff678ed0e2748 7102750 
xbmc-bin_13.2+dfsg1-2_amd64.deb
 36ced3145243a82f9aeaa162152e2949dba770db 76957352 
xbmc-dbg_13.2+dfsg1-2_amd64.deb
 36b870c52440d4cdd9d3478060bdc6601aaeba57 53740 
xbmc-eventclients-common_13.2+dfsg1-2_all.deb
 54f2e1aaf030630434c2248499d603f337a6a4e7 39940 
xbmc-eventclients-dev_13.2+dfsg1-2_all.deb
 a4b0600803f5560a92b3739b8fb8ac611f92b666 52560 
xbmc-eventclients-wiiremote_13.2+dfsg1-2_amd64.deb
 f4723fd12fa9b3b9c0b055cb18d1e0c7b1d3b54a 33686 
xbmc-eventclients-j2me_13.2+dfsg1-2_all.deb
 e55e7cc24889f627cabcacd4af9a32f22589e6ef 34116 
xbmc-eventclients-ps3_13.2+dfsg1-2_all.deb
 f0a467e3d88c0c3105e5792945b5612d5b110902 32976 
xbmc-eventclients-xbmc-send_13.2+dfsg1-2_all.deb
 feee4105057ee1b9966e17534246de51c8e41c48 52396 
xbmc-addons-dev_13.2+dfsg1-2_all.deb
Checksums-Sha256:
 64ca6b709caeecb15a80065cc20fa6fddfa3f168663ce3b3c8ba4be972893927 4271 
xbmc_13.2+dfsg1-2.dsc
 55da19c99b66467d68813192b5589abbc981aed6804fc03953b0fe286e196286 75992 
xbmc_13.2+dfsg1-2.debian.tar.xz
 3c6f68813719ddda53668275e04ee220df90d062b5ae3398bc4c1b4e925695a5 16908380 
xbmc_13.2+dfsg1-2_all.deb
 6cf4561e7cf35140bcd74388cc91a8364761ec28ccd4a5ca6a50a09f3c2acaa9 7102750 
xbmc-bin_13.2+dfsg1-2_amd64.deb
 06b0ddce782f1369dbd135791a25390ecce36732a0a108d2b4dd71c8bfe7b481 76957352 
xbmc-dbg_13.2+dfsg1-2_amd64.deb
 8a6fff61a8ca24213656136681b967ee709c8065e2064af321822ed01b5c5376 53740 
xbmc-eventclients-common_13.2+dfsg1-2_all.deb
 eff9b3a26059e0c8a41e344d53f0595d50e187272501310f99cc42f8f4e050db 39940 
xbmc-eventclients-dev_13.2+dfsg1-2_all.deb
 72e8426df12a66fff28cb426101574862cc350c119fc9b167be3f97a5559badb 52560 
xbmc-eventclients-wiiremote_13.2+dfsg1-2_amd64.deb
 f3305931066953d612ae7af75850e73f1c43fc9a05a8a3f7a6b40120ae6dfac3 33686 
xbmc-eventclients-j2me_13.2+dfsg1-2_all.deb
 dda9427fdcbda6672ddd0242598cac142f2096f995906eccb738542103b04797 34116 
xbmc-eventclients-ps3_13.2+dfsg1-2_all.deb
 3cbff277f7a0ae6e6976e243de69a27a1154c062f5b0b4668741bfea9a274819 32976 
xbmc-eventclients-xbmc-send_13.2+dfsg1-2_all.deb
 3c0ef0a3cc499a86fe07a8ed50bee19c874798f3360cf3ab7666d374f08208a2 52396 
xbmc-addons-dev_13.2+dfsg1-2_all.deb
Files:
 ecf94a8e7f3798cd77a0a62ced832b7d 4271 video optional xbmc_13.2+dfsg1-2.dsc
 1bbbd0f7078be5681ad44a65805732d6 75992 video optional 
xbmc_13.2+dfsg1-2.debian.tar.xz
 46cd82aa2b66424585c39755687fca95 16908380 video optional 
xbmc_13.2+dfsg1-2_all.deb
 ebe1c65adfa94ccb15ca843b47027746 7102750 video optional 
xbmc-bin_13.2+dfsg1-2_amd64.deb
 288de46eeb807358dcfcfc6e5506495a 76957352 debug extra 
xbmc-dbg_13.2+dfsg1-2_amd64.deb
 91b4d42ee78c31a3ecf5cd37246513fe 53740 video optional 
xbmc-eventclients-common_13.2+dfsg1-2_all.deb
 8d1ebdd0d515fb7f88da266e8d78012f 39940 libdevel optional 
xbmc-eventclients-dev_13.2+dfsg1-2_all.deb
 e3ed00028d9d9a5058b9081fea3a508b 52560 video optional 
xbmc-eventclients-wiiremote_13.2+dfsg1-2_amd64.deb
 a7e3e6be9e7035da6ee3408ab39a565a 33686 video optional 
xbmc-eventclients-j2me_13.2+dfsg1-2_all.deb
 3aaa3b3d4243161391b2e1ffbf3b8bd0 34116 video optional 
xbmc-eventclients-ps3_13.2+dfsg1-2_all.deb
 9f0ffaf3dc2f6ce0df32775622196d57 32976 

Accepted yaggo 1.5.4-1 (source all) into unstable, unstable

2014-10-07 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 06 Oct 2014 12:13:09 +0200
Source: yaggo
Binary: yaggo
Architecture: source all
Version: 1.5.4-1
Distribution: unstable
Urgency: low
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description:
 yaggo  - generate command line parser using getopt_long
Closes: 764211
Changes:
 yaggo (1.5.4-1) unstable; urgency=low
 .
   * Initial release (Closes: #764211)
Checksums-Sha1:
 f6d5816063c580afc9a49e5501a45baf0275cf8a 1918 yaggo_1.5.4-1.dsc
 fc31de9ef3d0d0bdc2f01ebeea05b612bf1f7847 41093 yaggo_1.5.4.orig.tar.gz
 c676faa330cccb6af1e0019f8477ef79449cfcec 1624 yaggo_1.5.4-1.debian.tar.xz
 8369ef6f70b0d61b8c53ff4776be2e65d01e1079 17630 yaggo_1.5.4-1_all.deb
Checksums-Sha256:
 593471fa9d860df7a9d17383929dcd94085a35b28bcf779fb83ff39c5674e197 1918 
yaggo_1.5.4-1.dsc
 c3932394b67a73c441a4ab0f0ef195136400e66d3f69fe1440af0f5063deaed7 41093 
yaggo_1.5.4.orig.tar.gz
 662ed2d8eb536eb353b20c785eaa7a813769dc222f8a2ba4a4d92b5c6a23aee0 1624 
yaggo_1.5.4-1.debian.tar.xz
 536291f7ddb35750c64d6f981bd1855ce722815ef650dd15e2d2705a4bb29e18 17630 
yaggo_1.5.4-1_all.deb
Files:
 6d40ddcd27956dbd88af567a9a8f42fa 1918 misc optional yaggo_1.5.4-1.dsc
 38a032bf3635ecfb0575a33cfaafafb0 41093 misc optional yaggo_1.5.4.orig.tar.gz
 f461895abf5ce49d4865f34d121ae0e2 1624 misc optional yaggo_1.5.4-1.debian.tar.xz
 896d91c95db1e083681f83b1a690ee54 17630 misc optional yaggo_1.5.4-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUMwRUAAoJEFeKBJTRxkbR6zIP+wTXi5AtF940+qePnuXYz24v
Jkh2yrOPUt8ydwf+5G5CaO7uH8TlPdFcP8oX4Wt0R+AyX+FQBJpChMj3Sl5WSMe2
RpA/gvm2i14c6ypT3TCfUpiFk3nNKyZHac3BbgVLTfheQSN2tYyc0NGUvbh7m4FZ
0MhvYu4u2s+q4uvAlHdtmAZaACfmz7eUgQiAcmxlCZ0M0el6H9nMK3I7dMLu4uiN
f5STItZX1umImmDhj48X7ysJEDfcwZzfk4psf0ibDRUvLRt4cFvQYxGdCEdY2kkO
aBrVvoz0NVOX2QY6efVrO4b9XRN2x6ibL+ylXncOgrHoGUMsHh7cbb/DlD9qmzjU
MW8rPptpG0vejg1036m2DV93bfmA+L8JSaT//i5DVMNwPm/sqZ0IhZwpnB2upCoO
NtlxT446UR0f2Af39YCpuqB/H3uIASEaS6QuqGf3OY6RAEPa5Xwhybud1MAzzIIa
L428+MhEbYHAHDlt/nxItyDKTLtYxyM8chYi9XSEYVInI776pq9vIAjOikGwh9Du
NDTwzXnQGRIMHTWK0OUBjUGiAEsJzwenfJbmC565BzH4bZ+cZvTdo29g9FFuV3FI
DdFli4HLxNo0IqDadh403YxC08RjC2ilbWzpAPwCit8TdNJq+iunId3KKNG6zqkd
+VBBTxmxucFly8+qSmjQ
=HeYJ
-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/e1xbokl-00028j...@franck.debian.org



Accepted grib-api 1.12.3-1 (source amd64) into experimental, experimental

2014-10-07 Thread Enrico Zini
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 06 Oct 2014 14:58:41 +0200
Source: grib-api
Binary: libgrib-api0 libgrib-api-dev libgrib-api-tools
Architecture: source amd64
Version: 1.12.3-1
Distribution: experimental
Urgency: medium
Maintainer: Enrico Zini enr...@debian.org
Changed-By: Enrico Zini enr...@debian.org
Description:
 libgrib-api-dev - GRIB decoding/encoding software library (development)
 libgrib-api-tools - GRIB decoding/encoding software (utilities)
 libgrib-api0 - GRIB decoding/encoding software library
Closes: 746454
Changes:
 grib-api (1.12.3-1) experimental; urgency=medium
 .
   * New upstream version
  - grib_api has an official soname now!
   * Updated Homepage. Closes: #746454
 Thanks: Aníbal Monsalve Salazar ani...@debian.org
   * Updated Standards-Version, no changes required
Checksums-Sha1:
 bd0876076a5cc10fbc5161a9670791d469e039a1 2094 grib-api_1.12.3-1.dsc
 2764b262c8f081fefb81112f7f7463a3a34b6e66 14638304 grib-api_1.12.3.orig.tar.gz
 1dd111df6439e76039fd97194e43fc4f3980b6db 8556 grib-api_1.12.3-1.debian.tar.xz
 f4f0ccbc0416aba12423ce547a2deb45b7bf7959 949930 libgrib-api0_1.12.3-1_amd64.deb
 c705772d31a2a5100bd458dd6a0f5d7ccba28e51 372118 
libgrib-api-dev_1.12.3-1_amd64.deb
 be7c23d80ba3dcdd638b0b3861aed26b0e47c054 105668 
libgrib-api-tools_1.12.3-1_amd64.deb
Checksums-Sha256:
 fe50c28c3817e0cedfacabc59a26ca1e59c63cb9414cfe922e6a644584da4754 2094 
grib-api_1.12.3-1.dsc
 2d4b05432c981dcc2b59607d50eeb214afedc394491354e4222123050cc4576c 14638304 
grib-api_1.12.3.orig.tar.gz
 7230ceb9244b9106c34d2aef6d37fd1c508a791dcb0584d0c0d89900ef1b03be 8556 
grib-api_1.12.3-1.debian.tar.xz
 e288d177aafc534de0668b0cd05093bec7f0b0f8f5a6ceb8745bbe4e6eb0b990 949930 
libgrib-api0_1.12.3-1_amd64.deb
 b8188ea881aedb56f1b6fbd5fe9b29bd7b15edfcb33c1f9bd63115cef597d606 372118 
libgrib-api-dev_1.12.3-1_amd64.deb
 5641c3fa5c67308c2f58c82c7f94ed3ae6554ce946112555b57153dbb83d1bbf 105668 
libgrib-api-tools_1.12.3-1_amd64.deb
Files:
 5e819afd93e0e8ecb9f64a0b9d822281 2094 libdevel optional grib-api_1.12.3-1.dsc
 584f60702aeed70330cca42d13b96889 14638304 libdevel optional 
grib-api_1.12.3.orig.tar.gz
 38caebebfa14b3259e34445a738e4a5b 8556 libdevel optional 
grib-api_1.12.3-1.debian.tar.xz
 26cf14bf568c707e4aa2e45f77070682 949930 libs optional 
libgrib-api0_1.12.3-1_amd64.deb
 e8ebe01d3f0f74e5832298db780d46d7 372118 libdevel optional 
libgrib-api-dev_1.12.3-1_amd64.deb
 b1003e2758282312697fe1e130cfd6ef 105668 utils optional 
libgrib-api-tools_1.12.3-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUMpcLAAoJEAPWVoyDcnWpdcQP/2y8kHMTZktftNcyoxG6397T
qN8zkb8x1q0Qu2z8bLkLK75i9Pr0uoXd8kJIqmu5cCdJNmtDZ3BNxgpEbSXJmfsL
31WADiPHzU/iBeD1NEPAMSI2DBXYEodDcQkf6nozIlZ0L+H7F4A1UBWGjMQF21jy
czQ1QMHhNpEZE8Ebu1amJPPgbHjIijtbJRtyq0/n6bk3/V4/VKthVWYTmfeaEvRe
uGfLAXU4H0DKF3OKEy2CH2SkSZDDFS9JdkHvv1vTgDXEjh/HUudk34gV0xCrTDUG
BxoCx+MjuJ7yWMLOydbiGmNRAmSc97SFfA7A7T+13jLQZKuVm6xxoAf9dxWuF8v1
E0VjF7aKofXWN2mIioCGpoiX5dXYAhTW5J68zZxQ8dMW0eNRVDucPRaRJFrHvSWe
3vq+B3CzmSZyL/Nwq0tHqdzKBuZhlsktqb7XWyQjj4v8hzwlgZL2hOM+4bGCqDwg
bvi8S8OP8MzJ9AX2PQrw19n58/bAqAMWWGi21cipbkbxPBWSe407Rbaur4Z/xSJa
JQiW3j+1oaT+v1enfKNk0MzdguDYy16XoEnympzWw7pKNLSFRzpp/7d3J6hEG6hy
iKynW/ub4vQDDUdGhhj7VkgDRpPJtOAK3SGqWm3KQnfwy5mMP1WBd7InQjbPWNdE
+v0iaELMUBEYT+IEuKaA
=mkXc
-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/e1xboki-000270...@franck.debian.org



Accepted davical 1.1.3.1-1 (source all) into unstable

2014-10-07 Thread Florian Schlichting
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 08:44:50 +0200
Source: davical
Binary: davical davical-doc
Architecture: source all
Version: 1.1.3.1-1
Distribution: unstable
Urgency: medium
Maintainer: Davical Development Team davical-de...@lists.sourceforge.net
Changed-By: Florian Schlichting f...@debian.org
Description:
 davical- PHP CalDAV and CardDAV Server
 davical-doc - PHP CalDAV and CardDAV Server - technical documentation
Changes:
 davical (1.1.3.1-1) unstable; urgency=medium
 .
   * fix a critical typo in htdocs/always.php
Checksums-Sha1:
 dd4b663f320bef9373322208e73d477b4eb25021 2017 davical_1.1.3.1-1.dsc
 1153f739911829bf67aab7c3d195d8cc02429d68 2452200 davical_1.1.3.1.orig.tar.xz
 d5f79112a7b3aa525fd2485ce169ba8f5eb87ae8 11028 davical_1.1.3.1-1.debian.tar.xz
 24f2c698cf997f32774304dd8447401ee075438d 338676 davical_1.1.3.1-1_all.deb
 1f3fc1546e64fdac0f92d2bddeedb2d32a75ee09 1157632 davical-doc_1.1.3.1-1_all.deb
Checksums-Sha256:
 4e02f0fbca0957c6ffa90ce3d8149386d00eea20a009e213e9deaf3f79a74aee 2017 
davical_1.1.3.1-1.dsc
 eef1fc64596476b753f426b8a9511e1f5ab5f1d21d7d29f141a059e277bd3939 2452200 
davical_1.1.3.1.orig.tar.xz
 039c5d6fb81d36c9aa0bb12b62c1587bc37f282333859f02ed7bff4a091f2fd9 11028 
davical_1.1.3.1-1.debian.tar.xz
 ea8646dc9f19b0ad45779aa0eb7ef2c101cd83e10ad84cd221d6481bb8b196d0 338676 
davical_1.1.3.1-1_all.deb
 70f71af1386761c880826e1e6adf84b577028b8ecaa96612eaa050946dc99b6d 1157632 
davical-doc_1.1.3.1-1_all.deb
Files:
 26c3d9d582198757de2a5732aebd6eb3 2017 web extra davical_1.1.3.1-1.dsc
 a9029f10f19acbe3e0d06c5da848e9ff 2452200 web extra davical_1.1.3.1.orig.tar.xz
 a8c94dcfebfb03bdf4de6636769ea735 11028 web extra 
davical_1.1.3.1-1.debian.tar.xz
 cf682819baf46c333ddf89cac2006259 338676 web extra davical_1.1.3.1-1_all.deb
 dfd22ddaf343d1f2ef320e8d9a2c01d2 1157632 doc extra 
davical-doc_1.1.3.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM42uAAoJEBKXO25y3Ae1IB8P/1LZRStWx7RbMzrekX+Sx5Jc
1ZF+UoWGb/xZmpn4yLj1qx3MucXiNH2240AofcfVPyA5LvxBe7FoNAuNXA6/z9Cd
tlhCeVf3vpGz+VRoErIeNeFqQjSFOpmH9QD/hge7L1ifgazvHgBGf+6V+GcF5bn3
1S5UvotS6VZRxj8HP6w+WfmEpmHPCBGxXxzr4E4FzlOY3GRjK16ZQVMsjHNPQeCg
R61rS1lyi0J2d/KT5DHuF1+KifXBzMBMDky8YVxm9Y1tRbD9igu8lrsMNK5ESujY
onom93XwdBj0P4CKunbVkdZRh1PGNs+iICLEz98AXwBq7Wr8Gmivhd0zGTJ3LsOz
vIylTfc6RnJjh+PCYIdba7VSVWq0s8PhfBJ7HuIUEftprjEZvBEcqR3a51xKmM4H
DkXZUfO+B7u7aK23vw9LxQxpXPMS4sfXqy4g+t4Rn3S59f4zyngcfirjChwWN1Ps
sJUEyaqihqCltng0gGPpLaqMot/c++R2YOiNaTSm9pfpRvYFiTXodU4njFDag0oz
RFM+An740TSkLyx/s8W8huunZTOd/QBbONHIzAT8+jHZSkoZx+DQeKDb0zoWq8pi
vntIBh59lp9kOKiJTQ+CETG6vvrWcl21AVhCe5Y93AaW+qxrJITulr7DRxYSD4ll
gyb1dTS8jgeFRKuflS6m
=j82l
-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/e1xboo6-0002hm...@franck.debian.org



Accepted drpython 1:3.11.4-1.1 (source all) into unstable

2014-10-07 Thread Olly Betts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sun, 21 Sep 2014 11:46:02 +
Source: drpython
Binary: drpython
Architecture: source all
Version: 1:3.11.4-1.1
Distribution: unstable
Urgency: medium
Maintainer: William Vera bi...@billy.com.mx
Changed-By: Olly Betts o...@survex.com
Description:
 drpython   - simple and customizable editor for the Python language
Closes: 758954
Changes:
 drpython (1:3.11.4-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * New upstream release:
 - Update and refresh patches.
 - Drop patch FileDialog, incorporated upstream.
 - Needs --buildsystem=python_distutils passing to dh because there's now
   a 'Makefile' in the top level of the source tree.
 - Needs python-wxgtk3.0 as a build dependency.
 - Now need to build documentation from source (new BD python-sphinx).
   * Update for wxPython 3.0 (Closes: #758954):
 - New patch: wxpython3.0.patch
   * Update from python-support to dh-python.
   * debian/watch: Fix to allow for slightly different naming of upstream source
 code zip files.
Checksums-Sha1:
 de22a0647e9289a87694b356853ec6420ef74137 1803 drpython_3.11.4-1.1.dsc
 65101fb686c96ca4fcacab908100ac653fcba09c 423408 drpython_3.11.4.orig.tar.xz
 6db42b6690989d98ec4f71e3e0390968e6a9ff3f 12600 
drpython_3.11.4-1.1.debian.tar.xz
 49700636aad51e3eba253f1c558c8cd5e5bc7fef 371952 drpython_3.11.4-1.1_all.deb
Checksums-Sha256:
 ca0a3c265cd8b56ab18bd24dc939d57ba4585c220ab97ed981fcdda7b81d33c8 1803 
drpython_3.11.4-1.1.dsc
 84265aa93ce2354e8ddb05a32ec7761ab59f202a30804fb1fcbfd838b19b747a 423408 
drpython_3.11.4.orig.tar.xz
 9d7ae3e5081e5cd284d1e7a64eb5e210ba13d22e374135254599b66bee762ffe 12600 
drpython_3.11.4-1.1.debian.tar.xz
 f5149e37fca4c210d4f6da81b0bc35acc2cfad4d95db898110c51693c63df68d 371952 
drpython_3.11.4-1.1_all.deb
Files:
 df49422433863c6e5d4a219bd2a67fc6 371952 devel optional 
drpython_3.11.4-1.1_all.deb
 ccbbe5be6972bde112e04395cd6b08d6 1803 devel optional drpython_3.11.4-1.1.dsc
 a73e7b500399f6bcc79a55f461416090 423408 devel optional 
drpython_3.11.4.orig.tar.xz
 e5db21982679c569799902cb1b0e10d1 12600 devel optional 
drpython_3.11.4-1.1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM447AAoJEBgUewc7rSsHGCwQAMpGoiSiREZ+et4beL9N2Xyc
2gzlLDvEJ34ZD5vMdxLQxPn/4pa8wGCTUxpUUiGN8S9tWqcY8eC9utc32BDjkdx7
GM/Ad+8rdDWAGIJ1kKwaVwpmuxVCpJqwO3J6/XN5YTv0ivHQz0xgpfTojL0qsPiZ
H2M5UuqhOmy3XKFeXCq/OyBFuyMjsCZv296yXwY1Rrw5Xpv4oCKaNcUqSCyajce1
qju1uD9GyVZVjWSuyVBFAFZLIzeGgc+o8+lBi+pw6Bah3WYkWKcuAYMeC7KBpOTD
YnTgya01lPi3I9Plr5qxDIxRrBkAPi6fALufIYJnq00gLHrTHiV/ezo0QNsnGXOb
Fm9Y1D6lXlc6Yo6JVmSYWDBQ92yLbGcDdHaOoeZ8cuBKKhlCKCPVZt6TDfx90Vwy
GLwHtBxsPw8YWsk4mqM0GfD63PoKz4G7wqXYzCgTryjjwpW97C44FgkR+admdVk7
kIH6GLDJIDnBLoeFq3016fYXa6e3RYfLtenlpNqBwpmzzbom4SUKKJueTw688fSW
DFzD+U5RZGzVsY/WXzyufl6zNyt6mmXQjmlAGTKqm3Fx+6GZYjBvEF4ukPF2dcP5
4Ehs8K8/JX4He7NxHgV4uI+vYLvmg06oQ2C+7+X/g+ormA5m33OCg71YbDQ3PMKb
xdOgmzl+0dV2ooJfDZg2
=5j62
-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/e1xboof-0002k2...@franck.debian.org



Accepted mayavi2 4.3.1-3.1 (source) into unstable

2014-10-07 Thread Olly Betts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 06:40:35 +
Source: mayavi2
Binary: mayavi2
Architecture: source
Version: 4.3.1-3.1
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Olly Betts o...@survex.com
Description:
 mayavi2- scientific visualization package for 2-D and 3-D data
Closes: 758939
Changes:
 mayavi2 (4.3.1-3.1) unstable; urgency=medium
 .
   * Non-maintainer upload with maintainer's permission.
   * Update for wxpython3.0 (Closes: #758939):
 + New patch: wxpy3.0-compat.patch
Checksums-Sha1:
 5de8fd6143a9d27068f7e702d59386165618ae0c 2062 mayavi2_4.3.1-3.1.dsc
 0bf29ef26c0022d98283774482838e05c55b2fa1 13836 mayavi2_4.3.1-3.1.debian.tar.xz
Checksums-Sha256:
 41bc754cf50b8952540d1c35795de4e4893c4c60cfa5cdc294129a429f7add59 2062 
mayavi2_4.3.1-3.1.dsc
 38e116bdbe74cb6e3ef7038684b6647f92ad522bdd60dfc98562d93a86b50790 13836 
mayavi2_4.3.1-3.1.debian.tar.xz
Files:
 a206e72c374d49e2c9c371bdf71a4067 2062 science optional mayavi2_4.3.1-3.1.dsc
 de986e471d0789f67d53d1a3a092007a 13836 science optional 
mayavi2_4.3.1-3.1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM42cAAoJEBgUewc7rSsH/V4QALL0q2846ybJNLbFRiNiLhgp
wa+bx/q81lY0dbsRWO/xKmeT8q9ogh/SgIZd3Dvf8EuOSQLO/U2/BwIIovTLEUMf
X9KQr1qHAc4VfmHw2HCCVsL+2+yWVV6Vvs0hQrR/KaC5TrO/c10syD0Qo+LFy6PQ
KWaoG31HE2y9C7NK0jCpUsMHTt4Q5+eHjnq3J/pPMpG7pPZ9aqBl39p0NpjGTbYV
2NiHwMurbUQ/Ix2Y3oE2rXUyi+L+EmTR8f3ZGixQxAKmh3buJcFikthUXLiENhak
KZmMAtNhrYcTMoYI+ZdE6OsspVclLlqxRV8vPcxsqPONxKNgrjlRWAlUkML2wdfM
zdI5jhMPk3hS6FEdsU9ONjH+aI5E7s22TKcv+6otOY13ayoVSMkp74/3nLhsgEs5
y2MqHxGJnJeV6DwL61FkeXI6ixJv93LuIglQ8vfzOYOx/HqL4tdfEiG7bjL1mc/B
JhMfBRkH2Zav3Tj+0filgAhJvd472Q2kImBDQW3R58AuSWaQ3ljOUERjGP5OlJV0
3VXDCL7sPA0bU4fq47fCArmCPGt6Ns5MTMKY9S9DoGZQTDlMdAbqDa8xKV5SW3wY
7FK0PN38CfgI6ALBa4PuJtVVGjCaNc3uhIEqFohKhTpynoEqJ9D53dbeR4wLu08B
j4dt5DO6OgTsEv8heKLY
=t2gC
-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/e1xboow-0002nm...@franck.debian.org



Accepted grml2usb 0.14.9 (source amd64) into unstable

2014-10-07 Thread Michael Prokop
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 08:43:38 +0200
Source: grml2usb
Binary: grml2usb
Architecture: source amd64
Version: 0.14.9
Distribution: unstable
Urgency: medium
Maintainer: Grml Team t...@grml.org
Changed-By: Michael Prokop m...@grml.org
Description:
 grml2usb   - install Grml system / ISO to usb device
Closes: 757993
Changes:
 grml2usb (0.14.9) unstable; urgency=medium
 .
   * [2b2c97a] Use pyparted to check for bootflag
 [Closes: issue1248] [Closes: #757993]
 Thanks to Evgeni Golov evg...@grml.org for further
 improving my initial patch.
Checksums-Sha1:
 5ae6ffd1ec31665159d12c2811b8cdb20416fd38 1078 grml2usb_0.14.9.dsc
 c708f2c53fcbd683771060265bd59ad876e1bf9a 384568 grml2usb_0.14.9.tar.xz
 350e27378bb6d23673dc248953b4dbaff08252db 215802 grml2usb_0.14.9_amd64.deb
Checksums-Sha256:
 0b4698ff8aed865dc9e9fabee514ba4efaada8f4668fdf945b9861feb220735e 1078 
grml2usb_0.14.9.dsc
 43e27181d46db35b226f51e8c9ec36c412fb14b2c2dc5896285d1775332df8db 384568 
grml2usb_0.14.9.tar.xz
 f24a05f56e72e6e69305cf9ef42e17d70e00b9d3c189649ad25afb41952b1411 215802 
grml2usb_0.14.9_amd64.deb
Files:
 ecb1a5ba6095ef96afc82809bc68e377 1078 admin optional grml2usb_0.14.9.dsc
 0198e563bdeb62cb2f85c6be846fb64a 384568 admin optional grml2usb_0.14.9.tar.xz
 4ed15fe8edc9674dcd5ae2faf18bf7b4 215802 admin optional 
grml2usb_0.14.9_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQzjUEACgkQ2N9T+zficugxnACfVc5grIDIddGyMJTYsf3LA1Oq
S4IAnjIhXi5V9DljEtXOcD0VxAEpNP1F
=VIvR
-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/e1xboom-0002lu...@franck.debian.org



Accepted qbs 1.3.1+dfsg-2 (source all) into unstable

2014-10-07 Thread Dmitry Shachnev
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 10:41:59 +0400
Source: qbs
Binary: qbs libqbscore1 libqbsqtprofilesetup1 qbs-dev qbs-dbg qbs-examples 
qbs-doc qbs-doc-html
Architecture: source all
Version: 1.3.1+dfsg-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers debian-qt-...@lists.debian.org
Changed-By: Dmitry Shachnev mity...@debian.org
Description:
 libqbscore1 - Qt Build Suite core library
 libqbsqtprofilesetup1 - Qt Build Suite profile setup library
 qbs- Qt Build Suite
 qbs-dbg- Qt Build Suite debugging symbols
 qbs-dev- Qt Build Suite development files
 qbs-doc- Qt Build Suite documentation
 qbs-doc-html - Qt Build Suite HTML documentation
 qbs-examples - Qt Build Suite examples
Changes:
 qbs (1.3.1+dfsg-2) unstable; urgency=medium
 .
   * Enable disable_rpath and qbs_enable_project_file_updates
 configuration flags, thanks Adam Majer for the patch.
   * Add 4 new symbols introduced by the previous change.
   * Add a patch to correctly detect endianness of all supported
 by Debian architectures.
   * Add a patch to clean up before running dependenciesProperty
 test (should make it passing).
   * Add lib/ to LD_LIBRARY_PATH when running tests (should fix
 build failures on kfreebsd and hurd).
Checksums-Sha1:
 fb82a1074cbabe6d2dffc2a1edf49baad3615795 2426 qbs_1.3.1+dfsg-2.dsc
 dcd48d2f04503ea536c0391fa3d6a835d2e924f0 10088 qbs_1.3.1+dfsg-2.debian.tar.xz
 2c82a3239b719441a110f6f401dd9d5a89b01e53 38670 
qbs-examples_1.3.1+dfsg-2_all.deb
 76647a9367c97aa1d372e7a5b1f01c2dec672f7e 121484 qbs-doc_1.3.1+dfsg-2_all.deb
 26de6f239a45f5fb91dbfbfce76e762e61d01032 59302 
qbs-doc-html_1.3.1+dfsg-2_all.deb
Checksums-Sha256:
 fa3e9bdf7fa07d9bbd49f4042115a2cd2796bd84f54db11b1b86ec7d4975 2426 
qbs_1.3.1+dfsg-2.dsc
 e7151383226bde387b12213b9fca05185691be11071e21cc17e5a4c8ba50fff8 10088 
qbs_1.3.1+dfsg-2.debian.tar.xz
 7c073865fdaf0c237ecbc02f3d4fe470a2ef4adfff20d30356fe79770acb1844 38670 
qbs-examples_1.3.1+dfsg-2_all.deb
 8e6279de43b0c3ddc4b54f582255e25ce02be96fe9521fba1c08d298490bfec8 121484 
qbs-doc_1.3.1+dfsg-2_all.deb
 56be5b5b803e3a2d2aabe3137aa12a000c39bd16b80041c9448fd8553e27aa09 59302 
qbs-doc-html_1.3.1+dfsg-2_all.deb
Files:
 24cdb557fb2ad426695df3a347d92c10 2426 devel optional qbs_1.3.1+dfsg-2.dsc
 c01cb211195ff7dcc7146e310874b038 10088 devel optional 
qbs_1.3.1+dfsg-2.debian.tar.xz
 592f34726ac25cdd2067d41c2fcc75ce 38670 doc optional 
qbs-examples_1.3.1+dfsg-2_all.deb
 da9027a3e4f179d22c2c7deb2f9a0de5 121484 doc optional 
qbs-doc_1.3.1+dfsg-2_all.deb
 488b3951bb073def71363fb96a36b2f4 59302 doc optional 
qbs-doc-html_1.3.1+dfsg-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM5SrAAoJEGAmk20vHIrgwIMQALxP2FTHipxsS0qTBCrC9lOt
XfxjR4+P/Zyl0gaXiMOAZBVDSYww3rVC0S7QkOp+V0UfKTccs57jyCsN0vWESd5I
+vk1cul1alliaVJNaI1horH8TESTmh/VV7KqoOoerKsh2MbUr13pa3veUZ9Tbxzv
CI5+A2DO3SNQ4nTkxtsautuaj1aquwvIeQln4p9I8lUlk85WaLMFlRggkf8hAoIf
OsHigCq8LkrqSXxO6WqT0UQmhoxeU24vw7rHOu+jhLZj8BWE2kBb/5KIFRpAqMhb
bTLBNXLCFw/pSWIvXjEh0ioeB9bXyBIhdVgAT9FGcMVRrASNwfrE/4GZWRAP9APN
arYUWEX7enEgOxZDEnqCJaI3+o36MCROdbyGb7fNNhjKMR+KJJtahTlrDcBa+h0z
Bonj00GAKi5Pq+3eBcbhpoqxc0WBJeWzD7OBA3ci7pb/npO29uPyoGcf92O0gMVx
4MSN2yocwjSXwQovczVBxmJIREPYgqYeKSaR5DeNYy/Gn6yFCvz062T8i72CXcgP
n+4po930p1aNWTwW++G1EmQ+8Kp9D/TwEMtSdDuZssPa48DBxO2vs5RzLyv7i81f
QaAAlEDNblzznuoG+mT+6Vu61EcPMboGR7hoCYrN8hLBShcoi+QU1m2hRGuiwMBO
2UXqBlvjtoNnQMh+bKky
=8VtO
-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/e1xbpi6-0006os...@franck.debian.org



Accepted mlbviewer 2014.sf.3-2 (source all) into unstable

2014-10-07 Thread Sebastien Delafond
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 09:15:33 +0200
Source: mlbviewer
Binary: mlbviewer
Architecture: source all
Version: 2014.sf.3-2
Distribution: unstable
Urgency: medium
Maintainer: Sebastien Delafond s...@debian.org
Changed-By: Sebastien Delafond s...@debian.org
Description:
 mlbviewer  - Curses interface to the MLB.TV media offering
Closes: 764260
Changes:
 mlbviewer (2014.sf.3-2) unstable; urgency=medium
 .
   * Build-depend on python to fix FTBFS (Closes: #764260)
   * Switch arch from any to all
Checksums-Sha1:
 e5970170c2fe138b3bfb6e73d7ee56b29b166a75 1248 mlbviewer_2014.sf.3-2.dsc
 b79223c5da02da6f836b1dcbd35a5ee8f169af27 1928 
mlbviewer_2014.sf.3-2.debian.tar.xz
 26346868db3c3be6d4e175258e886f63fb2a98c7 81970 mlbviewer_2014.sf.3-2_all.deb
Checksums-Sha256:
 3d17e1b1008ab0c7889c6edb0579c770effa6bdbcaea1866ad1136cd92720d74 1248 
mlbviewer_2014.sf.3-2.dsc
 3d82b5a05cc4db281be307e321d88d0947c280b4d2b260ddb31d6ed6cf78a977 1928 
mlbviewer_2014.sf.3-2.debian.tar.xz
 14eec2fbffaf527ea1d537b77e18fd8fb084e1978aecda90f308ba3aa16bc167 81970 
mlbviewer_2014.sf.3-2_all.deb
Files:
 841a7da7db665e78ee79a719bb6d2df2 81970 python optional 
mlbviewer_2014.sf.3-2_all.deb
 bc2fbaf270877615a5147a13fc76b370 1248 python optional mlbviewer_2014.sf.3-2.dsc
 7e895b2324f1cbd6f8655c66a32d08ab 1928 python optional 
mlbviewer_2014.sf.3-2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQzk2YACgkQiZgNKcDdyD+EqgCgsoeatKtuCBLRkmvHpLWXvGsX
MpUAoK2GPN9iFniisk42aI2K4r9Ho0nr
=vsSR
-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/e1xbphv-0006la...@franck.debian.org



Accepted nvidia-settings 340.46-1 (source amd64) into unstable

2014-10-07 Thread Vincent Cheng
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 06 Oct 2014 23:54:07 -0700
Source: nvidia-settings
Binary: nvidia-settings libxnvctrl0 libxnvctrl-dev
Architecture: source amd64
Version: 340.46-1
Distribution: unstable
Urgency: medium
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Vincent Cheng vch...@debian.org
Description:
 libxnvctrl-dev - NV-CONTROL X extension (development files)
 libxnvctrl0 - NV-CONTROL X extension (runtime library)
 nvidia-settings - tool for configuring the NVIDIA graphics 
driver${nvidia:LegacyDes
Changes:
 nvidia-settings (340.46-1) unstable; urgency=medium
 .
   * New upstream release 340.46.
   * Bump Standards-Version to 3.9.6. No changes needed.
Checksums-Sha1:
 33d4249708fed770962ee791640f99f1fa42a4da 2481 nvidia-settings_340.46-1.dsc
 3ffd9b94784f1f42f85d74af8626027170c747a5 1549925 
nvidia-settings_340.46.orig.tar.bz2
 569b3204bbfc90b7b3f6d26d0629813622d797ea 15580 
nvidia-settings_340.46-1.debian.tar.xz
 c908d3563aa6f7abfddcf603a04453a23d241fcc 720076 
nvidia-settings_340.46-1_amd64.deb
 bae816dceb3406d319bc9d6d4ac8efe9f6b520a9 20468 libxnvctrl0_340.46-1_amd64.deb
 e57e9f49bfc50b8f26982a8412593de0108f2bc7 84228 
libxnvctrl-dev_340.46-1_amd64.deb
Checksums-Sha256:
 c989b7197ad946b4c49584a850b451eb6e16705bbc64dafc6e96e6c06dc00a0d 2481 
nvidia-settings_340.46-1.dsc
 c4e5921be9968701b4ee1aa840f157dffd7e54a382f4dd3f900b2b0391fdf23d 1549925 
nvidia-settings_340.46.orig.tar.bz2
 98044e02ddc041f1d7263b62fa3e29ea8835bb4cc98f666de78ba773ed5edeaa 15580 
nvidia-settings_340.46-1.debian.tar.xz
 bddf651a96e1667cfe33658b3ddf15e4875be495d4f6f0cddbf5a1820af30537 720076 
nvidia-settings_340.46-1_amd64.deb
 d129508fdb8d7f1634dec2b9753fc9161eee302851cc94cff66f9abb7d895a15 20468 
libxnvctrl0_340.46-1_amd64.deb
 e08f947add8111315806eee100eda45aa943826e9d2d19ff113193fbee7b412d 84228 
libxnvctrl-dev_340.46-1_amd64.deb
Files:
 39bc00a3a8c742090efa1ef8aa111faa 2481 x11 optional nvidia-settings_340.46-1.dsc
 778c3841694544a371cfb92e97d18368 1549925 x11 optional 
nvidia-settings_340.46.orig.tar.bz2
 566026a3d60a778e9382ab3f509c5aae 15580 x11 optional 
nvidia-settings_340.46-1.debian.tar.xz
 d1be4e3ac95b99c3e33bae23d144f5c8 720076 contrib/x11 optional 
nvidia-settings_340.46-1_amd64.deb
 cc7b5fa2f8759a131e033d06bc606480 20468 libs optional 
libxnvctrl0_340.46-1_amd64.deb
 d8c4c689d632885209993b610b0808be 84228 libdevel optional 
libxnvctrl-dev_340.46-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM5DXAAoJEI7tzBuqHzL/kYYP/0UiyNOjC0fDpTD5yd93fHuU
TaYH5nLbHm61R+9JdLa0S8bAEsh8SYWvR51tk+fbE6XsG3i6W1tl8sucX5J/UaSV
VO2JTZi5/GlRV3dBIKhKcudQrBSGMlCvBWAoUE6SQ1xJsMD4rtm55FFdvb5+vY3x
xepi5TFKv7yQbG/D21PwNL8XQjAE8DgtYBK+VfCQAE79qtF4lw+ESQle7f9z/prE
3hH02lmQG+XiC+JC68BRKkLEXAfqEc0fllKlP9oO1g9gMA4oM4ABKJZ401maqP7X
/TQc411UUWNc5bAVWowJltQ7DNAgLptLWSPmvtdUxrz5V27JfSXAgABMN8bPms9n
ddW/OnRXxyZitV1jufbOwY6rwuEwK43RBKoQDFudLL2pqRNMCHCQNYEW70cIh4K4
YC/Uv2frn8N66Y5R42W38iV5I92Dfs/5I2uRgUy4KmXbtKT4n88DtofbIs7i0I04
xZ5utxvfWR0jVIxvRUkaQTMFWkFZDMXDIG/9hBxHopckuRf/u11jyusHKZvZGHAR
C/sr1rDqw1VSdvbjRgQ3QpcZhoaa5jTEogKRkDGamCK893sycyaiKs8VHzsrTB40
Rj+oO/WZ9Kd6qsLBwQgsigzPsQYLu9Pf1gIyl3zlFrFKMYdgWNiE0Zm5/YVJQbfy
ctwGmoj3imSct3EvsOEF
=fG7a
-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/e1xbpx5-0008gq...@franck.debian.org



Accepted mame 0.154-2 (source ppc64el all) into unstable

2014-10-07 Thread Cesare Falco
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 30 Aug 2014 10:43:04 +0200
Source: mame
Binary: mame mame-tools mess mess-data
Architecture: source ppc64el all
Version: 0.154-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Games Team pkg-games-de...@lists.alioth.debian.org
Changed-By: Cesare Falco c.fa...@ubuntu.com
Description:
 mame   - Multiple Arcade Machine Emulator (MAME)
 mame-tools - Tools for MAME and MESS
 mess   - Multi Emulator Super System (MESS)
 mess-data  - Data files for the Multi Emulator Super System (MESS)
Changes:
 mame (0.154-2) unstable; urgency=medium
 .
   * debian/rules: Reworked arch specific variables (FTBFS arm64 ppc64el)
Checksums-Sha1:
 8f2b76dd716be892f9c9c372097107cd34a17953 1691 mame_0.154-2.dsc
 b545ab4bc28a170958c618fd9eb453ad6b33906a 27791348 mame_0.154.orig.tar.xz
 c3541dd44eb60ab7ba031e408491611754d1b32b 52716 mame_0.154-2.debian.tar.xz
 614f6b772de1f23ba4caff8a704481902483dc21 14506820 mame_0.154-2_ppc64el.deb
 47486be3320bc39eae818d72a004e47aec9d20fe 435054 mame-tools_0.154-2_ppc64el.deb
 d1b7678db1bf47caadffb8962d8a1deb25fe0a15 7272676 mess_0.154-2_ppc64el.deb
 bf23ace15137a7ecf940171354559a4d33016f89 6452138 mess-data_0.154-2_all.deb
Checksums-Sha256:
 79ce67044bf9157a6bd5c55a275ff08328eef534127b338d3cec3871f4639574 1691 
mame_0.154-2.dsc
 2287da09b9a4776c14da0b82a89d372e92bf987d9343784c59ccff1b42631396 27791348 
mame_0.154.orig.tar.xz
 b5b1fac10a602d5f8014c809645ec63fbf7e5d11c4f12b1c64023d455b76ce70 52716 
mame_0.154-2.debian.tar.xz
 3bbfca5bd33e57dbf14f3d4e6c1012e686dad7686d54d61399167e595b01 14506820 
mame_0.154-2_ppc64el.deb
 ec7e61ae649ed5b21e0f761ecfd2d4b28b67ddc4f34b23d614ee2c0aac02c82a 435054 
mame-tools_0.154-2_ppc64el.deb
 553381d7e95174b42a89d32ae17197c489b60260125d495ac72411a1717091c9 7272676 
mess_0.154-2_ppc64el.deb
 51ea92be360c62d60c553a35ec689e2ac691cdd44f5e51a6fdd9cac6fdf0edcf 6452138 
mess-data_0.154-2_all.deb
Files:
 e72e8b5e86ddff8b02bf78be3e5db5a5 1691 non-free/games optional mame_0.154-2.dsc
 05283c8d51dc7b955aba919fa4f2a53a 27791348 non-free/games optional 
mame_0.154.orig.tar.xz
 a74839e9a4919fde526238404487b109 52716 non-free/games optional 
mame_0.154-2.debian.tar.xz
 3cac6ed82b5903093302d91f47aa085a 14506820 non-free/games optional 
mame_0.154-2_ppc64el.deb
 bef842f447bf19374c987d54c7c5c45a 435054 non-free/utils optional 
mame-tools_0.154-2_ppc64el.deb
 e1e74267289b9f7e59075902262a0730 7272676 non-free/games optional 
mess_0.154-2_ppc64el.deb
 6b8b7a2bc031e365ce09fb72aa44c7aa 6452138 non-free/games optional 
mess-data_0.154-2_all.deb

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

iEYEARECAAYFAlQzl5YACgkQmdOZoew2oYWEJACeLzk+uNnOuDOQS0eRxiPbtJyx
+OoAoId5hALunw4iJuPZ2BTrTQdxPdO4
=sq4D
-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/e1xbpwh-0008b0...@franck.debian.org



Accepted nvidia-modprobe 340.46-1 (source) into unstable

2014-10-07 Thread Vincent Cheng
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 00:27:29 -0700
Source: nvidia-modprobe
Binary: nvidia-modprobe
Architecture: source
Version: 340.46-1
Distribution: unstable
Urgency: medium
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Vincent Cheng vch...@debian.org
Description:
 nvidia-modprobe - utility to load NVIDIA kernel modules and create device nodes
Changes:
 nvidia-modprobe (340.46-1) unstable; urgency=medium
 .
   * New upstream release.
   * Bump Standards-Version to 3.9.6. No changes needed.
Checksums-Sha1:
 98ea74e5f86fe80a267ed97475baf48e0677f94e 2078 nvidia-modprobe_340.46-1.dsc
 e6d4cf0b6fdc616083d130a0a61c89a6e16f6c35 29377 
nvidia-modprobe_340.46.orig.tar.bz2
 3bfb595b1a6fa870b201fab528ce03d0822c5ce3 2420 
nvidia-modprobe_340.46-1.debian.tar.xz
Checksums-Sha256:
 091635b4ef2f4afa68539fbf1e04b057d06778c691adf5322519cdc0cbb0dec9 2078 
nvidia-modprobe_340.46-1.dsc
 2371126f3d9aa8f4837e391425cc9e09e74e7837782be544088dd84006aa3b5c 29377 
nvidia-modprobe_340.46.orig.tar.bz2
 79514dc009c173b8c1d7e2664cf0869a57ca57a3b21e5041f605dd0067a6fcb4 2420 
nvidia-modprobe_340.46-1.debian.tar.xz
Files:
 1777503953108a81cc3a9701610f6b2a 2078 contrib/utils optional 
nvidia-modprobe_340.46-1.dsc
 257c918b61cb78c63a022cc7aa36de1a 29377 contrib/utils optional 
nvidia-modprobe_340.46.orig.tar.bz2
 2a5d127dc7768e693b0d3aa13d105f4c 2420 contrib/utils optional 
nvidia-modprobe_340.46-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM5bHAAoJEI7tzBuqHzL/aoUP/RlIG3qyhGIWPFh8yMAgXKUF
FVW5/Q5keQ9rdf0z/Nv1tsVqIc4C18NlsHW+GeRoU0AEwMjoVfkODUyjOG3Aybwq
96HTObI9QewL+HM//6XwV2KyJtqgmyC7Y7bFnyasu0ml/NNucgkuLDYzvAA8hqxH
WMD3xQdm3xMppc8rB34nRX2hpu1K9MxJ9x5+Iu2/RbO/ZCXiLq7aLxmQ+e7h0pYX
vE+m9A3vcnST8VT69pCXrmKBqpb/b14YUUxcR+vRaKyoCAk7AAmUsXGdwvoqeNAo
Ht5+vpeefSm9ILKMttKLYn48pF+jWLj4feSF35V0IWyVQlCrV+VYRXOFVSJGhOTj
/d9DS/fQSvAB3p9DVdKaJ/lLzDWGcWSvHPFzDiVwG7iwYNAf6CFDSDNuoGTOEMqj
/ZMMeLgPlgQwQYjhyl0TJJUpWi/OdwJgLjZQKpiJHvzo4y1PNQ4NgyZrea+l1p9c
3q11SIoNFEByKkYSJpNrC96zhu3mc0PyI82Y4GbLJdbk4WwxM1zG4HXDG7cHfyRt
XsdTIMVbaTh0McUoBllsTfeUAdvT84gTH4/tA5yRxIull61SR4jQfFSQCf7AYGXt
RGmSxPks21JGhm64qI7H+HU6/LlamwTS9TD5BVNAqVVSoC17/xMiAeznBTVDUeSQ
QanjATEIvY8B3aZM4tOg
=8WOC
-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/e1xbpwu-0008ce...@franck.debian.org



Accepted nvidia-xconfig 340.46-1 (source) into unstable

2014-10-07 Thread Vincent Cheng
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 00:10:51 -0700
Source: nvidia-xconfig
Binary: nvidia-xconfig
Architecture: source
Version: 340.46-1
Distribution: unstable
Urgency: medium
Maintainer: Debian NVIDIA Maintainers pkg-nvidia-de...@lists.alioth.debian.org
Changed-By: Vincent Cheng vch...@debian.org
Description:
 nvidia-xconfig - X configuration tool for non-free NVIDIA drivers
Changes:
 nvidia-xconfig (340.46-1) unstable; urgency=medium
 .
   * New upstream release.
   * Bump Standards-Version to 3.9.6. No changes needed.
Checksums-Sha1:
 5318605642a092979818f845c0f70e28c94ed1db 2109 nvidia-xconfig_340.46-1.dsc
 a1c871c786b6dfe1e828d0227416c0e1342884a1 105584 
nvidia-xconfig_340.46.orig.tar.bz2
 f82afe77bd235f71d671cf71da0d2f8201f0ee8d 6084 
nvidia-xconfig_340.46-1.debian.tar.xz
Checksums-Sha256:
 ef8eaf78fd1c45149494901e8dbd1c3b886de07c3a99f5576a569b35335aa936 2109 
nvidia-xconfig_340.46-1.dsc
 d3dd13420ef13432d7460cc3b4a4ade5220ea7fa82ec550f0aa65357e31f9b83 105584 
nvidia-xconfig_340.46.orig.tar.bz2
 54cfc0786f0c026dd0d65b7b1eb9505cf6ad36baad99f9464b1fd2526f5fb197 6084 
nvidia-xconfig_340.46-1.debian.tar.xz
Files:
 a6d871ca2ac94532bbf350c1ec94f195 2109 contrib/x11 extra 
nvidia-xconfig_340.46-1.dsc
 a1fd357b66184a691e241b258f039c68 105584 contrib/x11 extra 
nvidia-xconfig_340.46.orig.tar.bz2
 4847cc3472bcb6d277d806238b68df82 6084 contrib/x11 extra 
nvidia-xconfig_340.46-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM5LZAAoJEI7tzBuqHzL/a2MP/0O7t209aXwS+ko/lD7KrIIa
dFvysyZLJIbTP3xgWAzw90UGPqsGePODmP4BdA5+4Kkza/jdkHL4LIywziUtbvJM
D9AyKG8aViiBEXi0aFCdK9iyR8bKoHqqg4kxNGEhYjWNzc6ORhQBrsJyNlbLzLtk
HuDUpcsP5BTnjg/qjFAAh9TZ+1mr35hsJz4xdae09hMXJYuQJax1u5p0aiJRFWag
iiC5KOxypkje+b8dgISL2vQifIWWLsBaMXqCh4ONY5xy57p8HM8nGZvCepygBNot
CegipX7M6x6PEFwXloF7LFK18p7smmAHBm+ppXA34InoofFGAps4n7z8K+gHIZWe
zpOALBuz5eq8E3toQYCL8fkrnubcv393ZJgGarsC7Yx0Up/Jvm23kUwejM5sXHi7
LleSy/sjMF1isz6L3AXWNnfEb0mSIp1A6p5Jz0raZy/OLojj3w1CgFdHTdbWa5ok
APYMvSuvFF1TD0bQuz4j15oXnNdCpPfPrN6SHsmVY/lK2YbVfD0kgV9XAjQzWj69
3Fw9p1okj2wZH1ZUM8Kg7ziRz11hzvEllAuiZEhkBE+1L2zg0Ym1smEjlioRxDN0
0RorUZPNBduh+GpP3gUzXDwbfC8BLdmBbO47RX7IENRZLks/KzuhY0CCYR+3+IJY
mQilyvXXJBgZNh3P2zb/
=r6uR
-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/e1xbpxb-0008hi...@franck.debian.org



Accepted syslinux 3:6.03+dfsg-1 (source amd64 all) into unstable

2014-10-07 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 09:39:28 +0200
Source: syslinux
Binary: syslinux syslinux-efi extlinux isolinux pxelinux syslinux-common 
syslinux-utils
Architecture: source amd64 all
Version: 3:6.03+dfsg-1
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann m...@daniel-baumann.ch
Changed-By: Daniel Baumann m...@daniel-baumann.ch
Description:
 extlinux   - collection of bootloaders (Linux ext2/ext3/ext4, btrfs, and xfs b
 isolinux   - collection of bootloaders (ISO 9960 bootloader)
 pxelinux   - collection of bootloaders (PXE network bootloader)
 syslinux   - collection of bootloaders (DOS FAT and NTFS bootloader)
 syslinux-common - collection of bootloaders (common)
 syslinux-efi - collection of bootloaders (UEFI bootloader)
 syslinux-utils - collection of bootloaders (utilities)
Changes:
 syslinux (3:6.03+dfsg-1) unstable; urgency=low
 .
   * Merging upstream version 6.03+dfsg.
Checksums-Sha1:
 66ed51e1ce8256f4b666ea12b4abc0fee5335b80 2306 syslinux_6.03+dfsg-1.dsc
 6700388819fe821270f26fd311a89da34aa73f7b 7202936 syslinux_6.03+dfsg.orig.tar.xz
 cf29b8ef6ea9ffc953f0d3749d9c0298323c18e3 28692 
syslinux_6.03+dfsg-1.debian.tar.xz
 d591df163b6c16942e96d174d09a7ca0f7c731df 187426 syslinux_6.03+dfsg-1_amd64.deb
 6ac9160728f356037f8d09be377431eede5d0e32 185754 
syslinux-efi_6.03+dfsg-1_all.deb
 88c7ab6e959da9bfc88cfc5448afb9dff7b9fe0d 10 extlinux_6.03+dfsg-1_amd64.deb
 66c4971da7457ab5ce4bb4d339e99d56d81ab13e 92064 isolinux_6.03+dfsg-1_all.deb
 2ed303bad5d70565567c02f7913aa639353de814 229074 pxelinux_6.03+dfsg-1_all.deb
 be115b228a0d7e1608f07233ada6f2a230a71920 1230620 
syslinux-common_6.03+dfsg-1_all.deb
 c13cdc3a210e0829610082243d04e58c3de3d76e 84960 
syslinux-utils_6.03+dfsg-1_amd64.deb
Checksums-Sha256:
 3699abf5022f6653b3af0e810ebf7a546debe280fda279e9c524ab5efdbe740c 2306 
syslinux_6.03+dfsg-1.dsc
 2fafb6a605eba845db29769633385ba8b1e992f61af81956a326133f06adff6f 7202936 
syslinux_6.03+dfsg.orig.tar.xz
 e60f07e30a3b6d68284718768591ff88fa62c9042ac7f7a722b2ddb67831cd6b 28692 
syslinux_6.03+dfsg-1.debian.tar.xz
 1936d4fc5952a60459d15e92508f1ee71321d161a8b8412e84f63b89076dce35 187426 
syslinux_6.03+dfsg-1_amd64.deb
 7387d10d275d714e8f7e62113b9080c0f62d6ffdf06eeb61c55ab1125e698e16 185754 
syslinux-efi_6.03+dfsg-1_all.deb
 30dc2f7621996522d0c18b1096d487b8ca667c3cbcc635cfe9dc842a3df645ac 10 
extlinux_6.03+dfsg-1_amd64.deb
 d165cee36b0e953ba1c802d13c6784d0ac77a1a820c3060e2735c493beedd917 92064 
isolinux_6.03+dfsg-1_all.deb
 6baf13e16af185d775d572f4fbbc814531c82975e23ebba29e23b00755aa4adb 229074 
pxelinux_6.03+dfsg-1_all.deb
 2e9b0e816d866162b32c7610f8c2ab9dae1179ad62f3b812ff4083a60ce95885 1230620 
syslinux-common_6.03+dfsg-1_all.deb
 6fd1f1465a8188de94781ff1489c30404feb54c9fc25202c2e12c614aa1c87d6 84960 
syslinux-utils_6.03+dfsg-1_amd64.deb
Files:
 5dbaab59539df9971941c4ed0d0e9784 2306 admin optional syslinux_6.03+dfsg-1.dsc
 613e89a11dc8746a87def6ac5fe48efa 7202936 admin optional 
syslinux_6.03+dfsg.orig.tar.xz
 425911edbf98d8a49fed9d014d47f0b7 28692 admin optional 
syslinux_6.03+dfsg-1.debian.tar.xz
 dcbf34d9d567df7b2e6db50f98e8c05d 187426 admin optional 
syslinux_6.03+dfsg-1_amd64.deb
 bcdecfaa149d7672da815394bdba6fe5 185754 admin optional 
syslinux-efi_6.03+dfsg-1_all.deb
 658dbfcfed2f3883a79156074fca6d0f 10 admin optional 
extlinux_6.03+dfsg-1_amd64.deb
 b3774053fa49502ba48d15afee3b86f6 92064 admin optional 
isolinux_6.03+dfsg-1_all.deb
 4fd67630c3617d345f18121aabc76a7a 229074 admin optional 
pxelinux_6.03+dfsg-1_all.deb
 27dd21bb6b32a660178bd67ad50cef1f 1230620 admin optional 
syslinux-common_6.03+dfsg-1_all.deb
 4ca89d6c522023d4da13bca570bd272c 84960 admin optional 
syslinux-utils_6.03+dfsg-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUM5n8AAoJEFXPG/mGq7nH8ScP/A9Jg+at3cRRFrNjFNoj6xu0
pi4umK0W9qVq6lOlbw4CA8ThIRQENHEUbATwEBiVNllK2ignT1vHmb4B8anjHTCV
JPkW1F7PCEv6S4YEadX3tldCr0lmlSea9yiFGQpV+bqAEJ1mE1RJQt04ZPW8kZIp
oqc1FboGLQ2Pa/y1c7+ALm5hsosVboT6eGp5+Ypm7MNasNST0mmze+YkNbn0X/ZJ
1OTNby0P9lXlcdwu0eAzE32PR7IoRh2ssfDbC4e3gsx3DVrtOJz9+FCd9k5OtmZL
MLyen1+CB1wR02rb4m0uvpsz5e8BXt+O+TAGgBp629h0DHlQtRP3kEoryFfhSuQt
SLpWhOdpM6dthNhKkGA3/TDoPKSYBABWHVx3SPCPUSBXGlbt1XtaCZGUfYCrXNEE
ZX99oOA0obX4DZryIBds7vZ8T2TRvDSlL2TYcg0FBRPDsagmmDXppIa13U+0FrR9
v9HhwgmcHC/QWjlsomca5kgrQcoFJrm++jFWdCdr9onNeVZyYqY3/V8osW4y7TJy
HGCjZ3C0jFqVD0esoYcEdJcl+rcoE9Z2WL5OED//MM9JpWbZat7Hp2aDxuhmynZ7
Dc+sbdLkTOv7XC9NqfTCYGNSg66A1Zb73GVmqKmhVdulY7HCD98tIs/i6qWqJaKl
idot/GX9TaznNtf9x6T/
=SRmm
-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/e1xbpxx-ne...@franck.debian.org



Accepted ceilometer 2014.1.3-3 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 08:21:23 +
Source: ceilometer
Binary: python-ceilometer ceilometer-common ceilometer-collector ceilometer-api 
ceilometer-agent-compute ceilometer-agent-central ceilometer-alarm-evaluator 
ceilometer-alarm-notifier ceilometer-agent-notification
Architecture: source all
Version: 2014.1.3-3
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 ceilometer-agent-central - OpenStack efficient metering counters system - 
central agent
 ceilometer-agent-compute - OpenStack efficient metering counters system - 
compute agent
 ceilometer-agent-notification - OpenStack efficient metering counters system - 
agent notification
 ceilometer-alarm-evaluator - OpenStack efficient metering counters system - 
alarm evaluator
 ceilometer-alarm-notifier - OpenStack efficient metering counters system - 
alarm notifier
 ceilometer-api - OpenStack efficient metering counters system (API service)
 ceilometer-collector - OpenStack efficient metering counters system - 
collector service
 ceilometer-common - OpenStack efficient metering counters system - common files
 python-ceilometer - OpenStack efficient metering counters system - Python 
libraries
Changes:
 ceilometer (2014.1.3-3) unstable; urgency=medium
 .
   * Removed debian/*.init and debian/*.service from source.
Checksums-Sha1:
 21d5d0f3b989c585893eba43f015e0421becbaff 4155 ceilometer_2014.1.3-3.dsc
 da55c056f1c351c8ed9aea287e90b7783c04ee5c 31956 
ceilometer_2014.1.3-3.debian.tar.xz
 46a5071a590943f8d313a1de635373eede125bb3 334564 
python-ceilometer_2014.1.3-3_all.deb
 16d1d5fae6addeb4b571286ef4eed6a7db39ba5a 27150 
ceilometer-common_2014.1.3-3_all.deb
 895b4df251185b7a25ebcaec87a30a22bc8bbd57 8854 
ceilometer-collector_2014.1.3-3_all.deb
 262951e8cd217079cf266acc8f9b5ed5ed41692b 24858 
ceilometer-api_2014.1.3-3_all.deb
 3db184ce26da16d447e1af2f44c3a80ce676a39c 8778 
ceilometer-agent-compute_2014.1.3-3_all.deb
 10f1461909cadb50b1b953934abca62ca32f846e 8784 
ceilometer-agent-central_2014.1.3-3_all.deb
 ff2fc917e2a7fd142f9a7476a292e63bccb518f5 8466 
ceilometer-alarm-evaluator_2014.1.3-3_all.deb
 4bedca09772fcc657f8c8f9087437cf4eae14995 8468 
ceilometer-alarm-notifier_2014.1.3-3_all.deb
 ad8982e2bbad63dde3329a711057d14507d49d35 8464 
ceilometer-agent-notification_2014.1.3-3_all.deb
Checksums-Sha256:
 03c1ae4eaa49663b7238793965eb367cf629fc49b69d06ea5329eca5674c1a65 4155 
ceilometer_2014.1.3-3.dsc
 85053d996e4b56791037dd2b01cceeb7b41f5e74b4dea8eb8765570478b9a6ea 31956 
ceilometer_2014.1.3-3.debian.tar.xz
 1e55ba0ba3bda2fc56d8801f5e9f92153be9345b397cd733fbda1c51493465c8 334564 
python-ceilometer_2014.1.3-3_all.deb
 f07c25f80c6657cfb6c6e04e5ecca005689a8a9ef6c80bca8c7241b09e07b365 27150 
ceilometer-common_2014.1.3-3_all.deb
 42197b8ba9af191f467f4914ea0a2f80ca3e54bcb0b881cd7304b7436791f9cb 8854 
ceilometer-collector_2014.1.3-3_all.deb
 36c79d8a14b785c9232c07911c11fada49bd29774a6b7b25dc997d67987ad227 24858 
ceilometer-api_2014.1.3-3_all.deb
 26e984beaed647203663f4666c7ae76485eab1d6eca9aae021536918f4e93ab1 8778 
ceilometer-agent-compute_2014.1.3-3_all.deb
 4ad5cf6050cf7233350343112b27ca3d02231857277fb0d073c5ba68a9ffaaff 8784 
ceilometer-agent-central_2014.1.3-3_all.deb
 1d04d64ef2dc12473bd5e4c28be49e9b5fb884022fc2c83c9ddc52b2d684d837 8466 
ceilometer-alarm-evaluator_2014.1.3-3_all.deb
 757d8445f70ff4d971de621cba61df1bb91046b27f9282873efb4108e9502f6e 8468 
ceilometer-alarm-notifier_2014.1.3-3_all.deb
 ed5af62e82123287fac33393e5530ceb065243258d524b5961d4aab6ce0c93f7 8464 
ceilometer-agent-notification_2014.1.3-3_all.deb
Files:
 d1df2ad1de3dc2eac0d8c600c3004e77 4155 web optional ceilometer_2014.1.3-3.dsc
 fe79b1eba715dbfe9cabac31205a8df2 31956 web optional 
ceilometer_2014.1.3-3.debian.tar.xz
 7ac393a9d5ca1faf12c77d6299db4839 334564 python optional 
python-ceilometer_2014.1.3-3_all.deb
 cdc67a43f5084f05b30e21e1ca116c3d 27150 web optional 
ceilometer-common_2014.1.3-3_all.deb
 5028d0f78cfb174fcddd6ca4d92f5742 8854 web optional 
ceilometer-collector_2014.1.3-3_all.deb
 621fc9d694eabd44a8edfe9a2b86d1ea 24858 web optional 
ceilometer-api_2014.1.3-3_all.deb
 271c82145003fbc4d4b99de827f83cfd 8778 web optional 
ceilometer-agent-compute_2014.1.3-3_all.deb
 401b346be1f6a285f59acf1562183441 8784 web optional 
ceilometer-agent-central_2014.1.3-3_all.deb
 ca17a49bd9946c39cd711f93d2b8ad37 8466 web optional 
ceilometer-alarm-evaluator_2014.1.3-3_all.deb
 c9f0d16550753d15a629f47fe0bbe0a0 8468 web optional 
ceilometer-alarm-notifier_2014.1.3-3_all.deb
 352979bc15aa41cf0a9bcfa815a525e0 8464 web optional 
ceilometer-agent-notification_2014.1.3-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM6MAAAoJENQWrRWsa0P+r8UP/AoqC5dozhNfRf8OxspAxJ06
c5PrUdcuhlDZew6u4ma9K0C+UX6ruDyLM+XcigDDgesi+sNHTDtIfBqQSYDZj0hc
oaR/m/SyuynVlSnCfirM9Q9vBV1BwnI62GLiz5DCXF+Ez8ilMFAleC+xXzs53mMr

Accepted cinder 2014.1.3-2 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 05 Oct 2014 14:22:57 +0800
Source: cinder
Binary: python-cinder cinder-common cinder-api cinder-volume cinder-scheduler 
cinder-backup
Architecture: source all
Version: 2014.1.3-2
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 cinder-api - OpenStack block storage system - API server
 cinder-backup - OpenStack block storage system - Backup server
 cinder-common - OpenStack block storage system - common files
 cinder-scheduler - OpenStack block storage system - Scheduler server
 cinder-volume - OpenStack block storage system - Volume server
 python-cinder - OpenStack block storage system - Python libraries
Changes:
 cinder (2014.1.3-2) unstable; urgency=medium
 .
   * Mangling upstream rc and beta versions in watch file.
   * Using templated init, upstart and systemd scripts from
 openstack-pkg-tools = 13.
   * Removed all debian/*.logrotate, using only one in the -common package.
   * Standards-Version is now 3.9.6 (no change).
Checksums-Sha1:
 9f7ad8b9fbd87a16fd0d67d54d463cf03bbb3999 3447 cinder_2014.1.3-2.dsc
 fa45e4235fabbe5eae4b8720c149697d6540cb5b 384780 cinder_2014.1.3-2.debian.tar.xz
 063a68311d45b4ee44bb67453707a451add996e8 1265270 
python-cinder_2014.1.3-2_all.deb
 7a4e8bac52cc3125612995c6950b456420e19719 508240 
cinder-common_2014.1.3-2_all.deb
 dc1b6c39f06197d8c906bd664454442260336f97 484762 cinder-api_2014.1.3-2_all.deb
 31a87b516e581f45ba98ac89a6f9b52d5b401c52 480504 
cinder-volume_2014.1.3-2_all.deb
 1e3c70cb92eb6a40bd2dd1a5028a972777c90a5e 468854 
cinder-scheduler_2014.1.3-2_all.deb
 286dcbba68dc407c9425f6b1b41ed314346dfaf7 468544 
cinder-backup_2014.1.3-2_all.deb
Checksums-Sha256:
 848d4e6eccd8b11c8366f27ca46aa37a52c2bfa09eba8d653bffb9d8801968d1 3447 
cinder_2014.1.3-2.dsc
 25db220cb7ee18f6372f8aaf6d40dbca0b736fc1fa7f67560dda2d8213a2cebc 384780 
cinder_2014.1.3-2.debian.tar.xz
 3b36087389a2e1cd2857050431fe9b6753d1c1c0cfa02d5971749a3a4327da74 1265270 
python-cinder_2014.1.3-2_all.deb
 7755da321fe901ec11e01f8c17df9f6f821d59252bb1a4cf8106a1d73df35920 508240 
cinder-common_2014.1.3-2_all.deb
 5140543a7e5056a331ac7734b9756345a9102ce24cee8676fe497d8a785e5aeb 484762 
cinder-api_2014.1.3-2_all.deb
 5b4e9673c08072db4160d5ef4035ad597d516a22d22d293045642ef9ec3536df 480504 
cinder-volume_2014.1.3-2_all.deb
 51e42ca6ceaad89c77c84d69ed1ca570fd0f40bfde5e00748f7c6ab7441560c5 468854 
cinder-scheduler_2014.1.3-2_all.deb
 0203199b008219e4bf2b3cf1b922a7e1abea288f8be79c777c254bf6f3a36d4c 468544 
cinder-backup_2014.1.3-2_all.deb
Files:
 6908b0e50b2014d25f69faad42c5530f 3447 net extra cinder_2014.1.3-2.dsc
 341a403e1db41d720035582f6c4f1799 384780 net extra 
cinder_2014.1.3-2.debian.tar.xz
 5ede641a52ed2f37dd6b998d2a1080f8 1265270 python extra 
python-cinder_2014.1.3-2_all.deb
 778c022ae2a830d3ffca25cd66141f84 508240 net extra 
cinder-common_2014.1.3-2_all.deb
 f5fe8a6a24202e6478a9a60a78608f1c 484762 net extra cinder-api_2014.1.3-2_all.deb
 b774b44dd3f8bec48a830bdbd1380d2d 480504 net extra 
cinder-volume_2014.1.3-2_all.deb
 cd0d97d59ad4f8016aae079cab60c150 468854 net extra 
cinder-scheduler_2014.1.3-2_all.deb
 cd66e83c8e5f2d1d9a7af27a542c3155 468544 net extra 
cinder-backup_2014.1.3-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM5rJAAoJENQWrRWsa0P+og0P/3z4pDf1Ne3KSlExR+L0zvS6
lMvBaZw3UmrZQj70aaIcWSUL0937o/rugT5TwhzcyUXsGOESDRZ+mEOhULCgLdEM
phjBO5Qix/MxkHHDnrWL/vKpmQ5P06SJ3GGvdlVJ1nTWrZYRUewMjSJW6128l3Qc
4EGPgu1kf13HjX7MxIfXFgPA/wzSX8Ua6o4Zsds10wR1fiBpu76HV1HYzs+/M0Tl
hu/9TsfQd5YmGpQjQASc1/2t0PiCinL+RllQUysfb9fKKRaAoOag9fK6ahN3yZZz
EVSIWi+4SCi8PRebWonF7YClledIgpp6iqaqnZsBrq8tsdUIAmIL16wPm2+zAXtY
Of8E7Qo6bewnh2f1dqzBLF3c51zIFvMb4YG6deAiaGie3zmBJ1kL498Jh6tRmMj4
vsljyBFGc4B/6HkLaEk/phrLTFaMSZM+OnH+Hz9H3FtaQjeWbmK6dO9EuuEF1Pho
tUnZMGZ67gvmYM9nDzs4gxOiZd99g2TQwip/h3Lz6HHYJM8WCYM3JmkAsmGvf88G
+h7DKL57FatMk7YJXnQTBfnWLL9n4rs/rT9hDTvk7Mae8CKZ8VuuMFyXqBbrOk0s
KwKTpCQpggcvsRSHUAZZFHs0CwaqRmBF8EYTB7SNiWOOpiDuefd1Ugig7f/Aeas3
Hc1oSrZw5kV8SjzOfrU7
=ALHR
-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/e1xbqvo-00037l...@franck.debian.org



Accepted glance 2014.1.3-3 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 13:18:01 +0800
Source: glance
Binary: python-glance glance python-glance-doc glance-common glance-api 
glance-registry
Architecture: source all
Version: 2014.1.3-3
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 glance - OpenStack Image Service - metapackage
 glance-api - OpenStack Image Service - API server
 glance-common - OpenStack Image Service - common files
 glance-registry - OpenStack Image Service - registry server
 python-glance - OpenStack Image Service - Python client library
 python-glance-doc - OpenStack Image Service - Python library documentation
Changes:
 glance (2014.1.3-3) unstable; urgency=medium
 .
   * Using templated init, upstart and systemd scripts from
 openstack-pkg-tools = 13.
   * Removed all debian/*.logrotate, using only one in the -common package.
   * Standards-Version is now 3.9.6 (no change).
Checksums-Sha1:
 51a9fe29cef80d037e6ff24a87cd909576c7d08e 3438 glance_2014.1.3-3.dsc
 e1e54360a39a726ddd716f213f740d09696520a4 33912 glance_2014.1.3-3.debian.tar.xz
 4af5d3c83233dad98049b081c81b6fccb301cab4 407118 
python-glance_2014.1.3-3_all.deb
 f304ad38df79384618b8c4ce500189f868a11ade 9116 glance_2014.1.3-3_all.deb
 a1af210f50c26217256243b42938242c75a507ce 214954 
python-glance-doc_2014.1.3-3_all.deb
 4efde89d016e3764eb3e6f8795f422015786ac80 43028 glance-common_2014.1.3-3_all.deb
 65e0622a83eedd1dc2c1a54eb08ba9e4ef7f5eba 38116 glance-api_2014.1.3-3_all.deb
 4d4cf599330e51a7362dab0c8589013a3d0770ec 13340 
glance-registry_2014.1.3-3_all.deb
Checksums-Sha256:
 5798c765cc7ae427d3a9223b7b7a79a74b764c4b398ab79d215bbf0fc2799310 3438 
glance_2014.1.3-3.dsc
 0cd5e64da6e101674b70687dde89ed1a1bc48215c3196e98ecb61b6f398a82a3 33912 
glance_2014.1.3-3.debian.tar.xz
 f5dd2f53cba68b8c9f1091c0caa489e6d07c91030c96ec7346ba60fa3f92306f 407118 
python-glance_2014.1.3-3_all.deb
 a31e603bdda5f0a330f70d0845ee839bf07f207d1eb4282ca1a59293a17d1a2a 9116 
glance_2014.1.3-3_all.deb
 b324a8449ecec83979f7ba18a1f94729f95c992a8feb2e69ca466245afbac767 214954 
python-glance-doc_2014.1.3-3_all.deb
 67d4ce7056be1419459323450bf9426b32b2f8ac56c5447ba856706487c32cf9 43028 
glance-common_2014.1.3-3_all.deb
 ade09188c1bc6f6f3c28e2e5053d7e5420990dc1c229d1ed61f5543e82f16729 38116 
glance-api_2014.1.3-3_all.deb
 70bd0933d5856c842ca54743fb2dfc7257feb203429f3c8645bf14570c70eea0 13340 
glance-registry_2014.1.3-3_all.deb
Files:
 534067e15ab301eaa4fcb1eff1b50dc0 3438 net extra glance_2014.1.3-3.dsc
 f33550c4f0adf7effef5740464a1bb1a 33912 net extra 
glance_2014.1.3-3.debian.tar.xz
 0b9b6bd9296851d27c9ee3d431d0af3d 407118 python extra 
python-glance_2014.1.3-3_all.deb
 e3ac9017b0196ba94e7639d73b5b1cfd 9116 python extra glance_2014.1.3-3_all.deb
 c3102d2d50766560aff819fb17b4c321 214954 doc extra 
python-glance-doc_2014.1.3-3_all.deb
 1330e41e659cf6856da0447aa2e730be 43028 python extra 
glance-common_2014.1.3-3_all.deb
 787fa6e3b7b9c24df8a7bae9248a9769 38116 python extra 
glance-api_2014.1.3-3_all.deb
 d6055014478441a3775d08f70594601f 13340 python extra 
glance-registry_2014.1.3-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM5uZAAoJENQWrRWsa0P+TcMQAIv2zhnhYpzP0cCoOPA1HAk1
W0ionxvT3JL1W+kJUYcltMouRmKFXroDqsgfmzSHrZiuwJqxLs2F8hdA20F2PBDy
DKsmt0DR6G36mEr2zHZyt2BPAq6I8mKoHxYoj3CuTHicNkET3vd4xmeKSSFGZr7z
m74V7MSN+OH79EreyzrF/qRZvtPDH8K7MEyMvFRWVKE1mKDxr2mNa0WY9qLlMMJ+
pTYz6+rOTOiK10/DSBZcd3f0Xz60l3jaYhsdWD+dBQhF7aVw9OhhFOz6ZIBVDEwx
omEKSVZdepTL76rjWJdPeSR0GwZWl+yMnu6z5yN3ku7laUGzOJH9yMEloecS5yHE
yc0ehBmprfLtEuVSkjU9NJuDmjSwUdKSeMM2LntwtsezFnMThN2vf4QxMAEEj/lM
3vX69Ji38RT3xn6INByaqtZZ75zCiAe9DMZvjp0knVJ48L1ihhCjKRqhmRbjEjyu
7Vh+Za9KI18pTzjWz/OmztJTnz6DPI9oHmjaHFAG2VuDZJb7NCPy5OK9E2gzv0Du
fnYZ4xiGbMM+b1GKu2N3QnI7TjdAXDUawgB5GkPrlBNgcJsi+Z9SmnsB26/CCnnp
tR0GP9taaLTOD2hdmGKm/FqegBiROTCNZZgf7xpL0Y7hjnEDJgqtiBKlJWhuOFhR
OAxU/u+yyy2/O7OqBTk7
=YGSY
-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/e1xbqwt-0003o4...@franck.debian.org



Accepted cinder 2014.1.3-3 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 08:30:18 +
Source: cinder
Binary: python-cinder cinder-common cinder-api cinder-volume cinder-scheduler 
cinder-backup
Architecture: source all
Version: 2014.1.3-3
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 cinder-api - OpenStack block storage system - API server
 cinder-backup - OpenStack block storage system - Backup server
 cinder-common - OpenStack block storage system - common files
 cinder-scheduler - OpenStack block storage system - Scheduler server
 cinder-volume - OpenStack block storage system - Volume server
 python-cinder - OpenStack block storage system - Python libraries
Changes:
 cinder (2014.1.3-3) unstable; urgency=medium
 .
   * Removes debian/*.init and debian/*.upstart.in from source.
Checksums-Sha1:
 14d8d923bb37d3ebc6cde4223977cff041e04ad7 3447 cinder_2014.1.3-3.dsc
 6e7727906304a8fa979f8c0d0d87146c484bebca 384360 cinder_2014.1.3-3.debian.tar.xz
 5e24a1d0f33f74317bcd30831f34d418b41361ea 1265236 
python-cinder_2014.1.3-3_all.deb
 04917d02ad4d843d8343fd4ab607eb4b6a90ffcd 508270 
cinder-common_2014.1.3-3_all.deb
 74e121a2d43ad4de68c3a1a3424d4b8050ea2139 484782 cinder-api_2014.1.3-3_all.deb
 4a99db7eaf24a429f753e29ef310cf14f00cb0c4 480520 
cinder-volume_2014.1.3-3_all.deb
 f58d7bbc86dec9720406f5cfb5eeb5a8dfc00693 468862 
cinder-scheduler_2014.1.3-3_all.deb
 51e2255abaaa0a200d7472c3fef0fe43ca8502e1 468554 
cinder-backup_2014.1.3-3_all.deb
Checksums-Sha256:
 3e2332973393a5ced606e0f34f2b49c3b84de9981e84d9875953597ab25561be 3447 
cinder_2014.1.3-3.dsc
 1da6b31ea588ae404f2aff3cbca6e27e82ad6eb8f4bad0409fb87db54bf796d6 384360 
cinder_2014.1.3-3.debian.tar.xz
 7f0b9c02bf2f1f9a40bf7b46fd0c1c66e92abf32aa7fcc350b0c115a63a0929b 1265236 
python-cinder_2014.1.3-3_all.deb
 c47cf70c20085610a7e07a71145b98633c51e413f64a026b46acb78bd1a01aac 508270 
cinder-common_2014.1.3-3_all.deb
 800eeb112b61beb130c9ec40fcaa06e4ddf1f2fb3c1fe4825dc4fff706a41b3e 484782 
cinder-api_2014.1.3-3_all.deb
 12383d722ff0b216849fb6149c3db2b296c878b5d2033ab9375e75162ad51fb7 480520 
cinder-volume_2014.1.3-3_all.deb
 c79b0bdb0170086359f84f875b02dd8ee8dab07864251eadcb3bbc68c6349359 468862 
cinder-scheduler_2014.1.3-3_all.deb
 56c23dc7dca8ca5b07b9ddd51cce1d9d85a1dde32cf5f7d8f7f8526df62fa991 468554 
cinder-backup_2014.1.3-3_all.deb
Files:
 aa0a69b8b7cd6bf0b4970128df9ce6ed 3447 net extra cinder_2014.1.3-3.dsc
 754d20fcc3d424b39abb1c3a95933f2c 384360 net extra 
cinder_2014.1.3-3.debian.tar.xz
 fd46766ff7bdf21b513e8b87494e8ce3 1265236 python extra 
python-cinder_2014.1.3-3_all.deb
 918d176332769da7c18eb19e8c49c736 508270 net extra 
cinder-common_2014.1.3-3_all.deb
 35e666bfe21e2c9b0015ca0e65383054 484782 net extra cinder-api_2014.1.3-3_all.deb
 68dcf9da15f479482eb9d8b197e8ec48 480520 net extra 
cinder-volume_2014.1.3-3_all.deb
 167d69d5bfc55db1da3a1f93755209b6 468862 net extra 
cinder-scheduler_2014.1.3-3_all.deb
 a4eb0bd44eef980e473ae0dd182bf52b 468554 net extra 
cinder-backup_2014.1.3-3_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM6V2AAoJENQWrRWsa0P+fKgP/1t7Wo8N1MyOwUPl1aoflz7m
7cjFWo3yqWyeIpJ+GmCFe2yodZlERTDkeEs+msVYgYD4c1aOzN/p05ue/A4kQ56o
kBHzNAAEdt8sqU0AD3dsViuSXJeXxMLU1orrbr2YF9wc5x6oCPixttCwlLhZz/28
V7oOx1JsjrSmXqWIyCorLF5JPlUtNTrOJaurkCG1bTWEL1mFjvbGdRl1aHtjLieF
R9GOHDr/weca8DVr9NaIlFPL5YVUJeErIcLcgahVePzLOiwO2YT0J50RK8jKb/1Y
YcAeiyM6FL25OKnSFqXCbyr1aJI+7VxWwi9l4pGvaN9QtmXbTYcf79aJSVCU0+Ms
QoEnG/esa65rb90oG5vJ6UbSo++xKHPZJV8e6U4uXb3BoM2j4Tyo8Yle4gu6Y/FE
9/COjCpV7tRGs/wLERqm0ZeBH/jX99oOqQ7qHWCt9aNqpdkRO3djHdSjA1SEAbR3
ak7HmVJWn5btuemO9Cy3pzrXx51H6k7CNEsGqw8TsDEUbfKCB6/yrSHoHuYKDcsm
49ELDa618xGWcQOlv8LYgo1sBN0oTHp9elPmsVti8LxsvzPrDtP+Yd8d6McLiDRg
YHcJH4relXlBQ29gHwUcJ/kT8o8b4JViK4ikg60Cppns8vMAR4QpiNLVzXGCxkJm
SCSpOTLRp+GNfWPynL0N
=yIm5
-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/e1xbqw5-0003fv...@franck.debian.org



Accepted igv 2.3.36+dfsg-1 (source all) into unstable

2014-10-07 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Fri, 15 Aug 2014 11:16:32 +0200
Source: igv
Binary: igv
Architecture: source all
Version: 2.3.36+dfsg-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description:
 igv- Integrative Genomics Viewer
Changes:
 igv (2.3.36+dfsg-1) unstable; urgency=medium
 .
   * New upstream version (refreshed patches)
   * Adapt watch file to new location (github)
   * Adapt to new uscan
   * New Build-Depends: libcommons-io-java
   * Drop Build-Depends libnb-absolutelayout-java and rather leave the
 binary lib/AbsoluteLayout.jar in since we have JARs there anyway
   * d/copyright: Updated regarding changed file names
Checksums-Sha1:
 57265a664c43a930a13d0a86d59325390fef1420 2522 igv_2.3.36+dfsg-1.dsc
 cedef61ff951e6297b1fcf70f2fdc9bcfe63dc54 120316072 igv_2.3.36+dfsg.orig.tar.xz
 e4458d4b2a2a123d7248e936a064e8361ac46b03 7816 igv_2.3.36+dfsg-1.debian.tar.xz
 996b62c33444e26e352b92599e89aae30fc5c3d8 15292962 igv_2.3.36+dfsg-1_all.deb
Checksums-Sha256:
 42a7db2eac9590f48365c759398e673b34ecafa80f653f0dd0a290d5f8ae62f6 2522 
igv_2.3.36+dfsg-1.dsc
 dac92d2d071fc65018231c01564da75bf3d58d0d866c7d3da6a173543d3659aa 120316072 
igv_2.3.36+dfsg.orig.tar.xz
 087cbf30561bebd042414bb30d5ca7150361fcdd3ffcd1dbd0a74975f47cacad 7816 
igv_2.3.36+dfsg-1.debian.tar.xz
 933936ffe3c1396d497ccadeca27b0cba4f553999db57012a6f3a2f99fe6ce73 15292962 
igv_2.3.36+dfsg-1_all.deb
Files:
 1e0b60a78a4c3d40679faa5cf5e9700f 2522 non-free/science optional 
igv_2.3.36+dfsg-1.dsc
 e600a273a2d06698c4a5bc5a29075022 120316072 non-free/science optional 
igv_2.3.36+dfsg.orig.tar.xz
 1b58455d971c29a407c1ea1708b0a9b8 7816 non-free/science optional 
igv_2.3.36+dfsg-1.debian.tar.xz
 f0847a2749febfa7da37310bd4489656 15292962 non-free/science optional 
igv_2.3.36+dfsg-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM5k3AAoJEFeKBJTRxkbR91MP/R+UQAqOsFIlfxBQk4oH68GI
himSGf1dkWLCQd2fiBGshHhpsZGXmjjJQ55YdBxz2y2b23VyjvWVTesFoXKIreu+
0YWOAS39vPstWuSVs2gF7Qr3CDWOHDrOP+ds2620mZfl4g987C0Snk4P4tF1tzfF
3EHZURlFbicA4ogZf7xXAXeg6CYkk1zDUZFcGY7MZGUjKAtEWRaR8Ts7zVzsR5iC
HNS2prTdLQluvqYPn7Hhq75bK8PXcDOP7ouFs4/WK1NpEJlN6DqszTqcvT1aoZxB
bJIzsu9DPzOACTwG1+iFQdbdQzIBBBLoF2KKN+o4UQwS5bKV57/liWvIS5NvZbYH
Fd1BEW5ffM+bfyCdiNiaVomxlPRpRFZfHvw5ZtKrhWiIjFEfDA/KxiQG9uC00B6Q
/knpfrJucZDDa5gs7jWWZMCnCjFWEsSVhVRWO9IRcFx8ysPFM+klFrfpY0k2i/sh
6qBTbq0K332Fd2BGC2L05V7C0C+ngUiGcybvAyd0lODnjyaErkw9vS/roV7SuvzQ
Tk+afq0sEbDi58xb1ek2R4L7uMRpwZ1SsfzkHXh8xxysU+C/++pKhWc7RrjZ6unj
AwPElavhQspBfsfnggBEbjsTnP7SGO4bxew7clkY1GQppEy6wLlN+q2K/YG+5CJK
2mh+ga+55Lt8zEOJ4aPP
=O00v
-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/e1xbqx9-0003x0...@franck.debian.org



Accepted lxc 1:1.0.6-2 (source amd64) into unstable

2014-10-07 Thread Daniel Baumann
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 09:42:36 +0200
Source: lxc
Binary: lxc lxc-dbg
Architecture: source amd64
Version: 1:1.0.6-2
Distribution: unstable
Urgency: low
Maintainer: Daniel Baumann m...@daniel-baumann.ch
Changed-By: Daniel Baumann m...@daniel-baumann.ch
Description:
 lxc- Linux Containers userspace tools
 lxc-dbg- Linux Containers userspace tools (debug)
Changes:
 lxc (1:1.0.6-2) unstable; urgency=low
 .
   * Correcting automatic lua:Suggests generation.
   * Adding openssl to recommends since upstreams lxc-debian template
 uses openssl for mac generation.
Checksums-Sha1:
 5f369a07e69b678850228d0b40c6a9b066f64895 2054 lxc_1.0.6-2.dsc
 73f239281e15863896541d8e176243f288a2f8c4 25188 lxc_1.0.6-2.debian.tar.xz
 92f32b0b1c13229a5afb49026f4ffad7763b2e4d 620796 lxc_1.0.6-2_amd64.deb
 9a1102d3216e618fa2131138185a97e0eedc906a 769014 lxc-dbg_1.0.6-2_amd64.deb
Checksums-Sha256:
 873e8a2244182b0f628444f237d1aa3e47d6f570f6249eb1b103ca26bf263af8 2054 
lxc_1.0.6-2.dsc
 2bd2f3b48fae2813a11961cbe048423c849162df16f584b14480aef6ab4a2f80 25188 
lxc_1.0.6-2.debian.tar.xz
 8befdbfbe3e1b12bf96ac4b73c2576b21bb1d11a09f0ca42f48014a56992d9d3 620796 
lxc_1.0.6-2_amd64.deb
 4a8ca70ab035e782bacf0776512dfa5560cce7e05b0576e3a15ade210cadc99b 769014 
lxc-dbg_1.0.6-2_amd64.deb
Files:
 7dde572a09bcc4872c563b377e5f2762 2054 admin optional lxc_1.0.6-2.dsc
 0482037367f306636a0123df327b6ccd 25188 admin optional lxc_1.0.6-2.debian.tar.xz
 d0d5514b11ec96bafff08720ddbaaa37 620796 admin optional lxc_1.0.6-2_amd64.deb
 6c0ff47b2bc2127ca998474ed2c9170e 769014 debug extra lxc-dbg_1.0.6-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUM5z0AAoJEFXPG/mGq7nHDs0QAK3URV3Ja+lDL0rJlV2L2KvV
eQyFixBaeRG2OAZVR/nLnJNWHD/4sSbs4da2V6Bi6eufhXbs8Sc2JhoLyk+POl6C
HBWNlvzjOiLvNTFGr80zsJ+Qk2068kZrGZG7IWpEu0rZqMdMn0aKRytnMiwNaiyK
xIAbkcKo7l1zmok5MHnak4d1dBbuCEaGOrHE7+iWObHzthLxQX+978Br566/g0Tz
EZpSAelmC7RFKGNQXDUpsbvGeg/9EoqtZivIn9yIgww3UaH3FEHGa0YG3kFXYujY
fPs+iowJ2N9297eragQrWvTzGtfsQmMZxMGwYKx6wvhjfBr09A+JXpUl4W8TNaxF
qHgK4zUsIW4g6pXvkMD3kj+sW0/mq6Ec36uyqH08LZNMmMCyVqfHSAiL5DmF721k
eQ3JS/JBv9tbapkwOQciPrRoWZemznmYH+H5KdoMWdoo7gmOF3u1WdPq5t9l7t5x
5m3NgiAEW7i5z5HeODQRuusWWxdxP+56MOQGwODoKQQNPMbFhQC8NJIeGCWyAMct
QDdnJk9Q848f3rCz8MKBer+d4m0M4ZnerGuucRlL3NlZOChaGo7X2JI7q9/fGAOo
uGo3kyZKar3ZCZ4fOlJGFGF1JabhpLzDNPUI3wXQ+0H0HwcTPHIeqm4TiP0AxjiG
XyCzfehHVeRG6yl2+uhb
=efXB
-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/e1xbqxi-0003pc...@franck.debian.org



Accepted keystone 2014.1.3-2 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 05 Oct 2014 14:36:23 +0800
Source: keystone
Binary: python-keystone keystone keystone-doc
Architecture: source all
Version: 2014.1.3-2
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 keystone   - OpenStack identity service
 keystone-doc - OpenStack identity service - documentation
 python-keystone - OpenStack identity service - library
Closes: 764205
Changes:
 keystone (2014.1.3-2) unstable; urgency=medium
 .
   * Mangling upstream rc and beta versions in watch file.
   * Updated nl.po thanks to Frans Spiesschaert (Closes: #764205).
   * Using templated init, upstart and systemd scripts from
 openstack-pkg-tools = 13.
   * Removed all debian/*.logrotate, using only one in the -common package.
   * Standards-Version is now 3.9.6 (no change).
Checksums-Sha1:
 216da904f8bab803179524129d45f46cee1672cc 3581 keystone_2014.1.3-2.dsc
 92aa5086000703568ea6063ac5093455445e0c88 204176 
keystone_2014.1.3-2.debian.tar.xz
 393b48b8a6a345ab63352a155df21c18ebf3ece0 639778 
python-keystone_2014.1.3-2_all.deb
 999df8460141cdced5f80d7570b6cb1f72e7af9c 275932 keystone_2014.1.3-2_all.deb
 14b0c862ac4c4e2dd1bd4701ee829c54e8e75f5e 1342710 
keystone-doc_2014.1.3-2_all.deb
Checksums-Sha256:
 319a5158305cdcdeb53aef47f01cbc7013386336ffa3a4dbae0d2d91a58c94c9 3581 
keystone_2014.1.3-2.dsc
 a8b8594c533cc35cd4621731c2e2c9934c10b43626d91c994df291acdacc7a88 204176 
keystone_2014.1.3-2.debian.tar.xz
 8692039c29b4286d0b08f740775e026e0eb21d134bad10f62d79250c8c3c2b47 639778 
python-keystone_2014.1.3-2_all.deb
 ae638a646a0589b4e5eda9a4f0f1085468b868a961a6da16151815b7d2545f16 275932 
keystone_2014.1.3-2_all.deb
 f1581dc26255f641bf94f443c031c301c96ff9a2373c33634db184e55585aa2a 1342710 
keystone-doc_2014.1.3-2_all.deb
Files:
 386af0f3229ed658b650ebb80f10417e 3581 net extra keystone_2014.1.3-2.dsc
 a4828f630450b37ea40d7ca2ee9d285e 204176 net extra 
keystone_2014.1.3-2.debian.tar.xz
 4ff077ff0ce3386830bc62419d84903e 639778 python extra 
python-keystone_2014.1.3-2_all.deb
 411419a14a54a031bbd913c0e3972a91 275932 python extra 
keystone_2014.1.3-2_all.deb
 01997c726a2a1dad00d5c4cb75eaabf3 1342710 doc extra 
keystone-doc_2014.1.3-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM5zpAAoJENQWrRWsa0P+lRcP/ji+Hx+H5zpVtvJC/StofFxP
yuNfHg0PBDNVZzclnGfZAC96FpKoCA9hslTz6Oj32iy+EHSPuAELGBrV0/qJyivn
mdS9N2qxvQOBD0iztecde55eT8CP4WXeK8wnkFueKh3cntLklzi9+AxCzHWnxhum
EW9smUP4K2mkzUs1XPXbS6bN6c9WphYA73Kd89Lhhkv6ux6RqneLT2Qk083sPZmT
rF7PBkMgpdkVVsvCl/g9UXKUetFR8xGNkK9CFqJ9kUvNYVyoJV+UCMypWKyxjrsx
/riwQ92DhAwa3Yu08Wy6KWLFklZ4MbDpNKU7FvzyLKVWdQ8TKxs2+0HiKv44qTQb
7JfECGN+Pb95wnYAsbu0Sv5Tb1d2CNohs/AW+08qjMQLfCMsjnIvIYweSjztLgmR
dA7U3MhD1HE0K5r3Az8bNQbwLgpuk4SYuYZ5ums7bosGSsHOvx/SOpfS11brumWH
DRRd1WAR0fnXopKxYbfqQ47P8aWepDgWdJVh7S5GtLpmfwkTa/AB9EIiSdR67kNT
Kjs8DEmtWGnO7fKQnlYVxzsAStT1xs5a/M8wpDjrXdMvyXMP9PrJm6jTFM1gGv+8
5My+e82tUuLCFZZFohcpHp998AQSZ/n5XYSVfnaPykS9ZNRFFwgf13bYYV+K2e2n
entnKmlc7+Qiusx1twa7
=3AKV
-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/e1xbqxn-0003b5...@franck.debian.org



Accepted libjpeg-turbo 1:1.3.1-6 (source all) into unstable

2014-10-07 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 10:03:41 +0200
Source: libjpeg-turbo
Binary: libjpeg-dev libjpeg62-dev libjpeg62 libjpeg62-dbg libturbojpeg1 
libturbojpeg1-dbg libturbojpeg1-dev libjpeg-turbo-progs libjpeg-turbo-progs-dbg
Architecture: source all
Version: 1:1.3.1-6
Distribution: unstable
Urgency: medium
Maintainer: Debian TigerVNC Packaging Team 
pkg-tigervnc-de...@lists.alioth.debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description:
 libjpeg-dev - Development files for the JPEG library [dummy package]
 libjpeg-turbo-progs - Programs for manipulating JPEG files
 libjpeg-turbo-progs-dbg - Programs for manipulating JPEG files (debugging 
symbols)
 libjpeg62  - libjpeg-turbo JPEG runtime library
 libjpeg62-dbg - Debugging symbols for the libjpeg-turbo JPEG library
 libjpeg62-dev - Development files for the libjpeg-turbo JPEG library
 libturbojpeg1 - TurboJPEG runtime library - SIMD optimized
 libturbojpeg1-dbg - TurboJPEG runtime library - SIMD optimized (debugging 
symbols)
 libturbojpeg1-dev - Development files for the TurboJPEG library
Closes: 764322
Changes:
 libjpeg-turbo (1:1.3.1-6) unstable; urgency=medium
 .
   * Changes Breaks: libjpeg-progs to Conflicts: libjpeg-progs and drop
 Replaces: libjpeg-progs (Closes: #764322)
Checksums-Sha1:
 8b5d3caa742ba6e4deae82d05e9fd74646217704 2783 libjpeg-turbo_1.3.1-6.dsc
 e6dc4daaad627d086ce78d94f6e153e90379289e 77252 
libjpeg-turbo_1.3.1-6.debian.tar.xz
 202a5511e92effe2b2c574e5435c6c43f7a03f47 48482 libjpeg-dev_1.3.1-6_all.deb
Checksums-Sha256:
 8c9a705513345c36023ad2972e2f79a2f935fc5082bf1fdd1277694b9d017ee4 2783 
libjpeg-turbo_1.3.1-6.dsc
 052cd05819be1b2dd5e691d0f1a3de01ee6ba463122ba5fd606a52edec5c4242 77252 
libjpeg-turbo_1.3.1-6.debian.tar.xz
 96bbdffcf1e76b382a99c1f24a64c39266d30c1123dc095e46ec41f2ccfe672a 48482 
libjpeg-dev_1.3.1-6_all.deb
Files:
 6344c2b69ab0f20aac72e089dc315e3c 2783 graphics optional 
libjpeg-turbo_1.3.1-6.dsc
 4a9015b42e997c30dc80953cb55e9157 77252 graphics optional 
libjpeg-turbo_1.3.1-6.debian.tar.xz
 3413948ed5314b01dfa0294a83c251b2 48482 libdevel optional 
libjpeg-dev_1.3.1-6_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAEBCgBmBQJUM6e7XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzMEI5MzNEODBGQ0UzRDk4MUEyRDM4RkIw
Qzk5QjcwRUY0RkNCQjA3AAoJEAyZtw70/LsHIGAQAJkB7q/yYYRUQHvDEeVPGVYT
t1vKTAp/XJMJdQ8iXDLPqh6b1exCxy7wXR31XPWuqX/Pf0QpvtqF9eyYwdo/7stb
SOUjToQEVuHrxVe7c0uKAqmECvgwJ/zPoVzzV9yzCKWlz3IsWzVJ/eHp3YY9ICtQ
9/070VzmGt3yGf7uPeRgdVBPrnxFctaVqD9ZsRSEcGHtaDT9TqlkhfRzD2Hx6eOg
5I/WTJsF9gLxrRiqyAGK1HsvvS75duAgFa15RfGiXWy6iWpPKjs+wLAqwYDfijw/
KPfExN8uPNV0RM1uvTOMeiQdFZMq18EiaieqwTuKm4DK/mwx+Ukv5iajLYB21zFp
AUhSIB1BH5/GAVHDrwurQOPaFfJOvx4ZmuGsOnxK2nw8I7njRlT0waIjkv1YIIRV
ytg+JWFd1g0giNIgnq50rT6Jbukrw9U5SbSpVN+c7rsV7AyXv8PVoVQIBFdQgArf
aTIYv4r3AaAX1uGvg9n5wbtLw2wB9xIAHt0YgjrdKNiVe2BKM9L//SyTNR1fF2M4
m9G2AyZMN6SBY9sk3RRn/peV8Zc3jIg03JyGeaIVbK5C7JT2z9ozms9VmLUHrR61
I4UWZKWZpImkznPD1whQJA/6kumVzHX/T1CNcf4QdazIgDtyQZWKEx/UKmd20xO7
cuGIhEkIBMWIlz4LTz2A
=fZ31
-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/e1xbqxv-0003df...@franck.debian.org



Accepted neutron 2014.1.3-2 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 05 Oct 2014 14:41:16 +0800
Source: neutron
Binary: python-neutron neutron-server neutron-common neutron-plugin-nec-agent 
neutron-l3-agent neutron-dhcp-agent neutron-metadata-agent 
neutron-metering-agent neutron-vpn-agent neutron-lbaas-agent 
neutron-plugin-openvswitch-agent neutron-plugin-linuxbridge-agent 
python-quantum quantum-server quantum-common quantum-plugin-cisco 
quantum-plugin-nec quantum-plugin-nec-agent quantum-plugin-bigswitch 
quantum-plugin-hyperv quantum-plugin-brocade quantum-plugin-plumgrid 
quantum-plugin-metaplugin quantum-plugin-nicira quantum-l3-agent 
quantum-dhcp-agent quantum-metadata-agent quantum-lbaas-agent 
quantum-plugin-openvswitch quantum-plugin-openvswitch-agent 
quantum-plugin-linuxbridge quantum-plugin-linuxbridge-agent
Architecture: source all
Version: 2014.1.3-2
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 neutron-common - OpenStack virtual network service - common files
 neutron-dhcp-agent - OpenStack virtual network service - DHCP agent
 neutron-l3-agent - OpenStack virtual network service - l3 agent
 neutron-lbaas-agent - OpenStack virtual network service - LBaaS agent
 neutron-metadata-agent - OpenStack virtual network service - metadata agent
 neutron-metering-agent - OpenStack virtual network service - metering agent
 neutron-plugin-linuxbridge-agent - OpenStack virtual network service - Linux 
bridge agent
 neutron-plugin-nec-agent - OpenStack virtual network service - NEC agent
 neutron-plugin-openvswitch-agent - OpenStack virtual network service - Open 
vSwitch agent
 neutron-server - OpenStack virtual network service - server
 neutron-vpn-agent - OpenStack virtual network service - VPN agent
 python-neutron - OpenStack virtual network service - Python library
 python-quantum - transitional dummy package for switching to python-neutron
 quantum-common - transitional dummy package for switching to neutron-common
 quantum-dhcp-agent - transitional dummy package for upgrading 
quantum-dhcp-agent
 quantum-l3-agent - transitional dummy package for upgrading quantum-l3-agent
 quantum-lbaas-agent - transitional dummy package for upgrading 
quantum-lbaas-agent
 quantum-metadata-agent - transitional dummy package for upgrading 
quantum-metadata-agent
 quantum-plugin-bigswitch - transitional dummy package for upgrading 
quantum-plugin-bigswitch
 quantum-plugin-brocade - transitional dummy package for upgrading 
quantum-plugin-brocade
 quantum-plugin-cisco - transitional dummy package for upgrading 
quantum-plugin-cisco
 quantum-plugin-hyperv - transitional dummy package for upgrading 
quantum-plugin-hyperv
 quantum-plugin-linuxbridge - transitional dummy package for upgrading 
quantum-plugin-linuxbrid
 quantum-plugin-linuxbridge-agent - transitional dummy package for upgrading 
quantum-plugin-linuxbrid
 quantum-plugin-metaplugin - transitional dummy package for upgrading 
quantum-plugin-metaplugi
 quantum-plugin-nec - transitional dummy package for upgrading 
quantum-plugin-nec
 quantum-plugin-nec-agent - transitional dummy package for upgrading 
quantum-plugin-nec-agent
 quantum-plugin-nicira - transitional dummy package for upgrading 
quantum-plugin-nicira
 quantum-plugin-openvswitch - transitional dummy package for upgrading 
quantum-plugin-openvswit
 quantum-plugin-openvswitch-agent - transitional dummy package for upgrading 
quantum-plugin-openvswit
 quantum-plugin-plumgrid - transitional dummy package for upgrading 
quantum-plugin-plumgrid
 quantum-server - transitional dummy package for switching to neutron-server
Changes:
 neutron (2014.1.3-2) unstable; urgency=medium
 .
   * Mangling upstream rc and beta versions in watch file.
   * Using templated init, upstart and systemd scripts from
 openstack-pkg-tools = 13.
   * Removed all debian/*.logrotate, using only one in the -common package.
   * Standards-Version is now 3.9.6 (no change).
Checksums-Sha1:
 4ee4d769b5c85446a5244fdf44b37a75c9483d29 5549 neutron_2014.1.3-2.dsc
 b455e2aa1eeec9af34bad06ce2f6a636da57edc3 40860 neutron_2014.1.3-2.debian.tar.xz
 839264c2a2663ec2d446d257ea2f08fb977e0d5c 1133844 
python-neutron_2014.1.3-2_all.deb
 0b35b4995e8727587ffb4ce04f8b6284e5a7d80b 22344 
neutron-server_2014.1.3-2_all.deb
 3a1a456530694a9f30b85062bc2721bb6f11df72 55444 
neutron-common_2014.1.3-2_all.deb
 f7a7d9edd5233a984c3128485508bf162dce0c2d 5868 
neutron-plugin-nec-agent_2014.1.3-2_all.deb
 6cb970502b4d475dc306683d4241e14c5ba7cb37 9412 
neutron-l3-agent_2014.1.3-2_all.deb
 5e0e8044e8a3e34a5a8ec5cb9e77efdd33164dda 17590 
neutron-dhcp-agent_2014.1.3-2_all.deb
 9de4bc543e1fc032971cce9fc95884868aeae7e2 20322 
neutron-metadata-agent_2014.1.3-2_all.deb
 805dae954a5bb23a2d2775a7016df56dc463cc7d 8208 
neutron-metering-agent_2014.1.3-2_all.deb
 4de8048fd7a3ec25b6e971e503bc46c6ae9e2cfe 8278 
neutron-vpn-agent_2014.1.3-2_all.deb
 

Accepted model-builder 0.4.1-6.2 (source all) into unstable

2014-10-07 Thread Olly Betts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 08:11:43 +
Source: model-builder
Binary: model-builder
Architecture: source all
Version: 0.4.1-6.2
Distribution: unstable
Urgency: medium
Maintainer: Varun Hiremath va...@debian.org
Changed-By: Olly Betts o...@survex.com
Description:
 model-builder - graphical ODE simulator
Closes: 750275 759066
Changes:
 model-builder (0.4.1-6.2) unstable; urgency=medium
 .
   * Non-maintainer upload with maintainer's permission.
   * Fix FTBFS due to python helper changes. (Closes: #750275)
   * Update for wxPython 3.0 (Closes: #759066):
 - New patch: wxpython3.0.patch
Checksums-Sha1:
 01946dcd2ea26f0cef8de6459ffa5d3b4cb71feb 1963 model-builder_0.4.1-6.2.dsc
 770ee202c9ef4b58a491a393c2675bb75394bea3 9676 
model-builder_0.4.1-6.2.debian.tar.xz
 1953fbb1fa56573f93d313be91e92904d22e1367 124870 model-builder_0.4.1-6.2_all.deb
Checksums-Sha256:
 ddb120fa8ab5d65208a2e631361d9c02845ae75eeb07021d6b7353b5be90e037 1963 
model-builder_0.4.1-6.2.dsc
 eaf6a2dfb5690f71c389c05c5840eaa5add7c8ce700246b2b970d10d59a945c2 9676 
model-builder_0.4.1-6.2.debian.tar.xz
 302663d0cbd38e3ba95b9543b3b7e770e1506fb5eb9477b002915bf4705e581e 124870 
model-builder_0.4.1-6.2_all.deb
Files:
 b0c7c5599deecba9481bb1e3f73c7c95 1963 math optional model-builder_0.4.1-6.2.dsc
 7887473da9a378c05ba83a665cba7613 9676 math optional 
model-builder_0.4.1-6.2.debian.tar.xz
 2049e9cf6c61d4cb3445a1d91725123e 124870 math optional 
model-builder_0.4.1-6.2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM6oeAAoJEBgUewc7rSsHJK0P/12RMzvFf9oleAueUvttil9W
h+kbj0KfMOuhr4a4dnlMD1TXA8ry0vccve/Ud7oRRBLAoHdVvvgL3a7JPKzu9PkA
poE1Gf4kO9T2xkcbE7pN7axd2QvKCGBavBT3/Qhv/rccFlL0wyAhmKkmi54p7iLP
2qb93VyWTQ4Lnxxt2e9YTtSqJ6Bpsaf9B45TU4nU/RBWDlxyq0FmOpdQYhAAIbzZ
2oCQlxmh5AfZwohJBo71Z8/tetIqkpj4KvOh+AKuqMBYcgHlbEpsdu49aowSvrr0
cPGLSsTm1ScxFES8XIbI4BF0vqGpfvQHBjNyxFRrCZdQzMI62jHUG2YqrMv3Vm4C
c7aofr9LmXaHG99GcsNN6sjGZKJsLnj6Bx09pTAiaFIGHGP0kv2wN9yHwF2lDFm4
Yl5jqEs800xhIMnAI4wh2Q1ms1ZrG3b/GcVIlLfq7uvQElq0VyTtWVb3StXyGN4E
jHZGb3kxR0KC5S1gHLTUgYyWrz8LITpSHQbnXYuQVzpFT9OmwxMHK3GSKVIDmMfs
ZihNSMWWXi3N1zfJFpnzXlHeVzVKB6ts05aO+qb+XRl7x9VuLdSE+3AzX9OtaMzo
+6RB93xLEaTpsC9tG+jAdtn93SZz9hzbqS7yaEbvB98EdvGBlONUmAhJS97WBKp4
nnWCwM+l5hAf1dM+C4K3
=TsUe
-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/e1xbqxr-0003sp...@franck.debian.org



Accepted nova 2014.1.3-4 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 08:40:04 +
Source: nova
Binary: python-nova nova-common nova-compute nova-compute-lxc nova-compute-uml 
nova-compute-qemu nova-compute-kvm nova-conductor nova-cert nova-scheduler 
nova-volume nova-api nova-network nova-console nova-consoleauth nova-doc 
nova-cells nova-baremetal nova-consoleproxy
Architecture: source all
Version: 2014.1.3-4
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 nova-api   - OpenStack Compute - compute API frontend
 nova-baremetal - Openstack Compute - baremetal virt
 nova-cells - Openstack Compute - cells
 nova-cert  - OpenStack Compute - certificate manager
 nova-common - OpenStack Compute - common files
 nova-compute - OpenStack Compute - compute node
 nova-compute-kvm - OpenStack Compute - compute node (KVM)
 nova-compute-lxc - OpenStack Compute - compute node (LXC)
 nova-compute-qemu - OpenStack Compute - compute node (QEmu)
 nova-compute-uml - OpenStack Compute - compute node (UserModeLinux)
 nova-conductor - OpenStack Compute - conductor service
 nova-console - OpenStack Compute - console
 nova-consoleauth - OpenStack Compute - Console Authenticator
 nova-consoleproxy - OpenStack Compute - NoVNC proxy
 nova-doc   - OpenStack Compute - documentation
 nova-network - OpenStack Compute - network manager
 nova-scheduler - OpenStack Compute - virtual machine scheduler
 nova-volume - OpenStack Compute - storage metapackage
 python-nova - OpenStack Compute - libraries
Changes:
 nova (2014.1.3-4) unstable; urgency=medium
 .
   * Removed debian/*.init and debian/*.upstart.in from sources.
Checksums-Sha1:
 5f6b4c82d9f6976e22267aa62c6b0ebf045fcb01 4617 nova_2014.1.3-4.dsc
 6f808e5d31dbd46a98763fe742b7de092fe6cd78 212628 nova_2014.1.3-4.debian.tar.xz
 57f85abafa0e89ce49384c29d3b7cbb86c5e2d6a 1764940 python-nova_2014.1.3-4_all.deb
 640e229b0c3a850687d580d24044cfd55c83c9c2 76250 nova-common_2014.1.3-4_all.deb
 2eae8ee3eee7400442454208d3d7bc2e629f2d9b 21922 nova-compute_2014.1.3-4_all.deb
 9587d7123549365bf5b82a0cc2db9e42284dfe28 16560 
nova-compute-lxc_2014.1.3-4_all.deb
 d55b381a9b017944464dfd6897dad11ae8872a47 16576 
nova-compute-uml_2014.1.3-4_all.deb
 af0b5e0f1edaac57aeb8eed3b44ec08ac8ab420e 16564 
nova-compute-qemu_2014.1.3-4_all.deb
 c8eb7707263325540fea193e9af727a97e998179 16672 
nova-compute-kvm_2014.1.3-4_all.deb
 76dbff3cdb3dc127b3af7aa375e6e94b4d489a68 19550 
nova-conductor_2014.1.3-4_all.deb
 b4f1717f5f4961c01d9a70c24120d15e0a57b44e 19662 nova-cert_2014.1.3-4_all.deb
 c0390cde053765d1ff72dcef7ea3764009ee8513 20554 
nova-scheduler_2014.1.3-4_all.deb
 101e7bf14ea529f5bde0ea8094a42e2c5fa8ccd2 16208 nova-volume_2014.1.3-4_all.deb
 895f4f4ca25621895be4c721acb1d5e1132062f3 37316 nova-api_2014.1.3-4_all.deb
 65436e8e261669cc63e0bec2adf089f19232d10f 21640 nova-network_2014.1.3-4_all.deb
 aaf5548e978835aefab36fa72c3f7583fe12c429 19670 nova-console_2014.1.3-4_all.deb
 c8a1d7ac320b4336d11960965952b1598a9ae140 19608 
nova-consoleauth_2014.1.3-4_all.deb
 e85f6517c5b3b29793ef6a5c6cd26c9de2d95e13 1044422 nova-doc_2014.1.3-4_all.deb
 71879d04139f9001e0f75be2c4515cb0ccd3 18670 nova-cells_2014.1.3-4_all.deb
 118852f7a492c9f73646e25043325b6def72b996 19012 
nova-baremetal_2014.1.3-4_all.deb
 f9e8312c1a4fe13705b3240e30aa18c826aa0a40 24664 
nova-consoleproxy_2014.1.3-4_all.deb
Checksums-Sha256:
 35f9125abe7a6b81bb39bf75fb0503cd62701a0b845b1699b29b0cb739fcef48 4617 
nova_2014.1.3-4.dsc
 fa11198830373a481d77af969d046c7adcf25b173c0c4990f7bc701f741a339d 212628 
nova_2014.1.3-4.debian.tar.xz
 4a65d92a66c99d2f543a0646ba58167ea6021fd1d78c50d7ff458f27b1f08610 1764940 
python-nova_2014.1.3-4_all.deb
 f138c67a7d6f06a9e86ad2be56c31b5517fd66bd8986b4e1a85345f01ee0fe5d 76250 
nova-common_2014.1.3-4_all.deb
 c75e67efaa6586e84b8eb5d7a4ed115faceb792acf9a3852a9234551a90cb681 21922 
nova-compute_2014.1.3-4_all.deb
 4bc3391a7b6fc0ab6c6d80a35ca8b331f117f5e6ec4a0a4895ce5c38b99197f7 16560 
nova-compute-lxc_2014.1.3-4_all.deb
 ea96b6bbc2f063354ecce81d8dd922a6239747d50d96f1cb0ca7e4eaa7d0f028 16576 
nova-compute-uml_2014.1.3-4_all.deb
 f836360339c58a02ac4ec9a7ac802b3556219f29a1de4264fd7fa0d0dd241ee2 16564 
nova-compute-qemu_2014.1.3-4_all.deb
 4ae7b6be2f18256c934dd8b023b24152336e02d78b4f6f0c6361629e362470b9 16672 
nova-compute-kvm_2014.1.3-4_all.deb
 8ecb28ffa9c970ece31186e0c5ce194be84e8451442d1b1847eba6616cbb426b 19550 
nova-conductor_2014.1.3-4_all.deb
 8074e25b58bac0201a49a089236a47bd1eff349d4b097641e6a1cb14f73a6695 19662 
nova-cert_2014.1.3-4_all.deb
 5f734e6b1ba6ca56e33ab3a291964b548e58b715950f67b53daa302a43d8b204 20554 
nova-scheduler_2014.1.3-4_all.deb
 c616e0f329e45942d8197e647f5e6811dc6eef04c8922bec31879fb545a3fe5d 16208 
nova-volume_2014.1.3-4_all.deb
 00a2233e2783544eb1aaf01e668cc48b38954bfe6d9423427dbca217c52c874d 37316 
nova-api_2014.1.3-4_all.deb
 

Accepted proj 4.9.0~rc2-1~exp1 (source all amd64) into experimental

2014-10-07 Thread Bas Couwenberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 05 Oct 2014 21:45:15 +0200
Source: proj
Binary: proj-data libproj0 libproj-dev proj-bin libproj-java
Architecture: source all amd64
Version: 4.9.0~rc2-1~exp1
Distribution: experimental
Urgency: medium
Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
Changed-By: Bas Couwenberg sebas...@xs4all.nl
Description:
 libproj-dev - Cartographic projection library (development files)
 libproj-java - Cartographic projection library (JNI bindings)
 libproj0   - Cartographic projection library
 proj-bin   - Cartographic projection library (tools)
 proj-data  - Cartographic projection filter and library (datum package)
Changes:
 proj (4.9.0~rc2-1~exp1) experimental; urgency=medium
 .
   * New upstream release.
   * Refresh patches.
   * Update copyright file.
   * Use minimal dh rules.
   * Update install files for Multi-Arch paths.
   * Bump Standards-Version to 3.9.6, no changes.
   * Remove useless autogenerated doxygen files.
   * Update datumgrids.shar with proj-datumgrid-1.6RC1, it now includes
 CTable2 format grid shift files that aren't system dependent,
 but requires PROJ 4.8.0 or newer.
   * Update datumgrids-ch.shar to also include the latest Swiss CHENyx06
 dataset, adding CHENYX06a.{asc,gsb} and chenyx06etrs.gsb.
   * Update nad2bin-data.patch to fix the build when the .lla files from
 proj-datumgrid-1.5 are not present, and install system independent
 files from proj-datumgrid-1.6 if they are present.
   * Add patch to use the higher precision towgs84 values as specified by
 Kadaster for EPSG 28991  28992.
Checksums-Sha1:
 0f8dd397252bbecace7e7bfc86273cacb9664b80 2235 proj_4.9.0~rc2-1~exp1.dsc
 689386ce6ac5bfb60e44218019d4b18fc44e0b44 855565 proj_4.9.0~rc2.orig.tar.gz
 ec3af91ce0e059fa59a07f9991e2f9b97444cabd 9040348 
proj_4.9.0~rc2-1~exp1.debian.tar.xz
 75d955406e7188c612d6878a76f07ec62703c807 4035414 
proj-data_4.9.0~rc2-1~exp1_all.deb
 f2f6195c8fed4776d49600af817d48b1023089a8 166058 
libproj0_4.9.0~rc2-1~exp1_amd64.deb
 5b93c0d699c8ac700d5236978d6bcbef8c1f4a7f 207094 
libproj-dev_4.9.0~rc2-1~exp1_amd64.deb
 9c1b2495d9ce29c85c0243bbacf03465c14e8364 56022 
proj-bin_4.9.0~rc2-1~exp1_amd64.deb
 e9ab1dbb22f521d71d7fd8c5fe562d34c8865bb9 107562 
libproj-java_4.9.0~rc2-1~exp1_amd64.deb
Checksums-Sha256:
 48432a7c8d03cf5892f685941b8cc59c8ca3eef0667790fd7bf0b9f150a5f301 2235 
proj_4.9.0~rc2-1~exp1.dsc
 b77fe13168966095cd29199b8a2ef8e8c02a099624972a638e50ea44f1518d76 855565 
proj_4.9.0~rc2.orig.tar.gz
 9b1fe1d02fdac7f14ec05a73debd7ee432f59df132714d774f95239019d35c6e 9040348 
proj_4.9.0~rc2-1~exp1.debian.tar.xz
 7442155dc334ebb5df3171f4ac1a2cf20646e34067eeb2c1c348e17d019fd1a4 4035414 
proj-data_4.9.0~rc2-1~exp1_all.deb
 f1272ec6ebe324833cf258fd589f9156706109585faf17f64ec5987b05b00b5a 166058 
libproj0_4.9.0~rc2-1~exp1_amd64.deb
 ecc68f180c704ca5080a2d178832b3542f9d82683f9cf7c333ff65df30a9ae30 207094 
libproj-dev_4.9.0~rc2-1~exp1_amd64.deb
 63fb168aa0d79482245ce4f35438eeeab10fea95f5ab7c93d7e12e8b79981f1c 56022 
proj-bin_4.9.0~rc2-1~exp1_amd64.deb
 766d773c5ef1f0581cdeba8d44630ac7ffa90f62af3252fb1e7c0e5a6e113d4a 107562 
libproj-java_4.9.0~rc2-1~exp1_amd64.deb
Files:
 9caaa8c9d5375292188a7281c8187f6a 2235 science optional 
proj_4.9.0~rc2-1~exp1.dsc
 3f3f12c3e76fc888735160bbdc84ded5 855565 science optional 
proj_4.9.0~rc2.orig.tar.gz
 b4c0b0ad75d0974e32f9c172764cc8ad 9040348 science optional 
proj_4.9.0~rc2-1~exp1.debian.tar.xz
 b2ad656049e48f0787a4a45dfb3b40bf 4035414 libs optional 
proj-data_4.9.0~rc2-1~exp1_all.deb
 e1cb687950786d0a66af55bb430f97f0 166058 libs optional 
libproj0_4.9.0~rc2-1~exp1_amd64.deb
 0ef84e97a3012c32f887401c7157bec9 207094 libdevel optional 
libproj-dev_4.9.0~rc2-1~exp1_amd64.deb
 914c61c27072e46b7560c20fb4f5e46b 56022 science optional 
proj-bin_4.9.0~rc2-1~exp1_amd64.deb
 711b9ac2574fe84cc02f8ca36f6f5d36 107562 java optional 
libproj-java_4.9.0~rc2-1~exp1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM6ucAAoJEFeKBJTRxkbR5hIP/RdNz8mRdPEFWz2MrPIeCKdd
s19hLASrE/El3LuZ5PfandgJP9CBRBS2jAHHSZIFeUa5zmonsRyS7uDp5BvCSTSp
GbQlPKEuj+dg+XuFrg/pOdMHq+8P+/bcyjIVy6U8lWKdI61oNOrG4hLShZHoJERU
F50QX5O4P0M2yMzyjIeaMInWYxh0x/sWN6gl//Jl01Rz6lq3jsr2qClwncxcoCzl
6KVG+JiCtFzlzEWGIqOHRwEwIWkV7wfkJx1ZJuYybMl0UlkfYHACaxwHIk047ilc
j4gqEtgl8RtrURLCi6we3mG3bE0w4lwBAVGFyflXLaBdLHt8sKqNGeqcsb/aCQtl
Pk0uNBup9EKkCIfltJiSvJDEvsJkINmuoW2s6EyW+p8gZ7fDJHoQ47SL2+b82RHw
p7spc/NFAKKnVmhW6iM/dIQkP2gnyyKfRC1IiKrbor9Ur0aSrDBkugcZHS7fGRVT
POV42xoshJh1htNXczh7jLbuGdjLhADezPeqkw22Z/9iO80uzO9MwVMglA0NmxIQ
9Sn9yCzZ44nRFyMo0iLNFHbAeHkGIA3FkHcZx78TWNosoKJTH/lbYCDx2iQ29bRv
Fwyr82igtn6pM5h5/jbQwT+UlIplbJdO2ISu6UgsVMYBcWszJcVB3+pvEK4ONGKP
G/8I3lu6P4sRbeSbbfH6
=oonw
-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: 

Accepted pngquant 2.3.0-1 (source amd64) into unstable

2014-10-07 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 09:19:38 +0200
Source: pngquant
Binary: pngquant
Architecture: source amd64
Version: 2.3.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description:
 pngquant   - PNG (Portable Network Graphics) image optimising utility
Changes:
 pngquant (2.3.0-1) unstable; urgency=medium
 .
   * New upstream version
   * cme fix dpkg-control
   * d/copyright: Fix some DEP5 names
   * d/rules: cope with hand-written configure script
Checksums-Sha1:
 8eede3733646c2df60d5f04217b23f19e21ff4ed 1971 pngquant_2.3.0-1.dsc
 6b7c5add77627f65295c8dd5b56c44d2f4f9ad18 52304 pngquant_2.3.0.orig.tar.bz2
 0369cd21f1ba052d9a2cfc75cbf439057706e12a 3312 pngquant_2.3.0-1.debian.tar.xz
 7affc1a94ce3a00d0f4729aad1a2206f4f7d07ee 37668 pngquant_2.3.0-1_amd64.deb
Checksums-Sha256:
 b78d23ed647118a68b946087e9c7dd93e65d0207291e4e29d55d1b7a53ce957a 1971 
pngquant_2.3.0-1.dsc
 ea33c3cd5ebf96c6c45bfe9dbeec90b5d0bf46642eb2a23d9d7206c4e5d166fc 52304 
pngquant_2.3.0.orig.tar.bz2
 c535b8653999e66eae8886619b65a937d225b41d526456340aa47eca60929d6b 3312 
pngquant_2.3.0-1.debian.tar.xz
 ecb4de4b748db288f1dce19c84be9b820cae466cbb587073b84b1c8918e3a731 37668 
pngquant_2.3.0-1_amd64.deb
Files:
 e2dddbf26f0abb08ccee04e4858763a5 1971 graphics optional pngquant_2.3.0-1.dsc
 0ce07508367032634b0694bd9897c17f 52304 graphics optional 
pngquant_2.3.0.orig.tar.bz2
 fcedb272a50aba44cdefc2b4277ef2bf 3312 graphics optional 
pngquant_2.3.0-1.debian.tar.xz
 4f14857d1f5213aa41f7de755da5943c 37668 graphics optional 
pngquant_2.3.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM54BAAoJEFeKBJTRxkbRS08P/iKz/tqoTCrAxzLelt/fxd46
Cb9/ZjS8AZE02piwHOXV7h73cr6BM68rRMB393ylJN4iQyaA+VJxZGUcwvVBBPEU
U53duEImfb6SgV2FYtMZkP3NndQNNAyzahptvyBLkgRunWxO0EUPm6qoya15LLCv
/L0UcPpKFsM6avgPT9Lh4wQPgS1sUwq3r2xwBUFfySTzvam7gYIuSyGTi/U/D0s8
LxP4Z1ij5riiROVp4aZ9d7Ah5ulH61FM5tcSC8twuCdXd0V/knKgSmv4w3B3aYzU
dyn4nDlUIW1GYMuShFpKJLtFzMNncIXty7tC2qhMc5rFOBzK8YDv7/bZ7Jcw2bH9
UOavzPNtsYOE5px+jRvlz22wRILHxdU9lYUxYLZsOXdcclKqVITAWHmHuDiL43IG
t4GbWtQWM28F6E5y6ELdncqieIxQSnnvUSZfgwwO+3fiXRAQjtMfspKkKa6i9TVt
1QQzu9fA8qLKF85gveFAkIEK3kNVfOgjB3HtmqXcjdUnQ5le0ja3wXbfbl5S/jZa
r8RaJsb/NP/uEExOO2lrdpX54VwpSBgo4fF03g4D6kkNIiHo8COu32YT8EsVMZlD
PKkr7aEWNDnSWA23lslaZUB7el7U+V/M/QpS/YPmhev3TEnqQ/jsVGN6FhaXh54w
1EWTzdiDCvpIX3FLevZ+
=t25u
-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/e1xbqzs-0005bq...@franck.debian.org



Accepted sonic-visualiser 2.4.1~repack1-2 (source amd64) into unstable

2014-10-07 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 10:10:03 +0200
Source: sonic-visualiser
Binary: sonic-visualiser sonic-visualiser-dbg
Architecture: source amd64
Version: 2.4.1~repack1-2
Distribution: unstable
Urgency: low
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description:
 sonic-visualiser - viewing and analysing the contents of music audio files
 sonic-visualiser-dbg - Debugging symbols for sonic-visualiser
Changes:
 sonic-visualiser (2.4.1~repack1-2) unstable; urgency=low
 .
   * Don't build against internal dataquay.
Checksums-Sha1:
 40814ee45f60b10d90f060854de95dde240dbeb3 2543 
sonic-visualiser_2.4.1~repack1-2.dsc
 1b1778573b7383ef9edaa1982b3fe66ebf2d24d3 5356 
sonic-visualiser_2.4.1~repack1-2.debian.tar.xz
 4f78b780994ee096b4362daea95a629e789fb652 2600728 
sonic-visualiser_2.4.1~repack1-2_amd64.deb
 d587af639865469bd69ffe8a27e5cb86b3d338d4 26459184 
sonic-visualiser-dbg_2.4.1~repack1-2_amd64.deb
Checksums-Sha256:
 94399cad8b221395fc83d4937cd8602bf8eee391ea1ce76d2ee9f194c18e5690 2543 
sonic-visualiser_2.4.1~repack1-2.dsc
 5976d975043aaefe79735a84130f2dc494fdca7a34b6bb19f335fe68dafd45e9 5356 
sonic-visualiser_2.4.1~repack1-2.debian.tar.xz
 018f971e0c9dd16a336318ed8054a87b134a9cce72bb54652101fe36644ba58c 2600728 
sonic-visualiser_2.4.1~repack1-2_amd64.deb
 59f170f17c2f137987145c3ecd9696020bc3ad009ab0e46f73a99869dbfdd9ae 26459184 
sonic-visualiser-dbg_2.4.1~repack1-2_amd64.deb
Files:
 017e39047205c59abc61ab29e1d38976 2543 sound optional 
sonic-visualiser_2.4.1~repack1-2.dsc
 ec8986d33cda6101dca9eb0dc64e33c4 5356 sound optional 
sonic-visualiser_2.4.1~repack1-2.debian.tar.xz
 6f01cfab4b53fdd640e712b50d948de3 2600728 sound optional 
sonic-visualiser_2.4.1~repack1-2_amd64.deb
 11dc9123d84f875b79bf5077e761f550 26459184 debug extra 
sonic-visualiser-dbg_2.4.1~repack1-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM62vAAoJEFsBlFXiuE+lHCIP/0aYssWs7NJg7XEyZkUlvHRr
ZVNexksSeJll7MUD0ndLx5W5xBGD6WDNFd5/tNbghUlU69LUtuTJM5IK3zhajYmf
jNvlrV2W3ErlarMrwz3Sp7cAUTxWSu9qe1p60B6i10TuM0+aTo3rC4iyRqEt+IPT
exAYqJcgBUE+imLW5uaUf8eE2xgf0PaggaS2IUr0u5ON0NApYIO4KPMtS2A2oDhn
yX5gWtycR1oUqQovzbsPI3XvynCfX5+kXd9doxNoDL9hqIA3o/AZdpqin5fVdiC+
FSJVj5AWFdk5/oYNxqGdh3YkmGm3+7+lcaQTimB8hXXx5kq2Mtc8Rj6nn3qO0m60
3NG7svsPYxTKLz6A/V0aHMzRTZtsziCs8JIx6cG4Sur0e+f9finYXGmzZki+xiod
NQwNXvw9G8iIfEdOjP6p4HS+ECiZP7k+/oSCBvxEmtzkKPYbQ99jBlhFj4JEPrwn
gMIwjC1XznHSoI+6j0buD0GVht0d0ibaF2Ttkg/8rypZrQOvUSV7T76elnP/dmcd
3so2oWYoZHFOn+YANxbvNHyoYevlOy4pi7IVvqKhsuxbQhxWRGnTfKqEiDZ0pKAR
zWQp649nwxEi9IkKBt+3htecLySPUvV+R6fKmz9TI1mt8/hFGpbWtl/iBT1M9U0I
qgf8GbcgNFWME2/1+PRd
=OpaE
-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/e1xbr0k-0005zn...@franck.debian.org



Accepted systemd-cron 1.3.1+ds1-1 (source all) into unstable

2014-10-07 Thread Michael Stapelberg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 09:40:12 +0200
Source: systemd-cron
Binary: systemd-cron
Architecture: source all
Version: 1.3.1+ds1-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Systemd Maintainers 
pkg-systemd-maintain...@lists.alioth.debian.org
Changed-By: Michael Stapelberg stapelb...@debian.org
Description:
 systemd-cron - systemd units to provide minimal cron daemon functionality
Changes:
 systemd-cron (1.3.1+ds1-1) unstable; urgency=medium
 .
   [ Alexandre Detiste ]
   * demote priority to extra
   * systemd = 212 is now avaible in testing, we can enable persistent timers
   * Depends on systemd-sysv to ensure that systemd is running
   * Update standards-version to 3.9.6: no changes needed
 .
   [ Michael Stapelberg ]
   * switch to pristine-tar and a separate upstream branch, use original
 orig.tar.gz tarball.
Checksums-Sha1:
 cd2626ec5169c798fa9e2e9cd484e6017c133358 2072 systemd-cron_1.3.1+ds1-1.dsc
 77f0453fb3207e169b14c6771da236e4e01e407f 15968 
systemd-cron_1.3.1+ds1.orig.tar.gz
 42378a1c515795f91ab4e6abbabfdc53d2ed6f12 3044 
systemd-cron_1.3.1+ds1-1.debian.tar.xz
 14176416c52d3b64c2991f14f264baef207d6758 16922 systemd-cron_1.3.1+ds1-1_all.deb
Checksums-Sha256:
 8753e90ccd90694ed83d99a3bfccb3b2264a4ac3f49123c4331f4bf15f70e0a1 2072 
systemd-cron_1.3.1+ds1-1.dsc
 3ecb21227139cc172a9ad4695f8152d93643d92f811242f45ce371223ec2b9e2 15968 
systemd-cron_1.3.1+ds1.orig.tar.gz
 ff32c921bd298b59a9ae449f0753ce5f6846f1c0d399cf2cb1c172312559a4e7 3044 
systemd-cron_1.3.1+ds1-1.debian.tar.xz
 2551c9a87f5fc75590f4f4b75f5a55bdb7a93d0b9024fbcb8615ab75cb29d5d2 16922 
systemd-cron_1.3.1+ds1-1_all.deb
Files:
 b614bf83f0e69ca05f7bf67bb3517fae 16922 utils extra 
systemd-cron_1.3.1+ds1-1_all.deb
 3a2c70f45b4ebc83a3aa34d4283dec55 2072 utils extra systemd-cron_1.3.1+ds1-1.dsc
 a52661732bc47457935554ebab59d4d0 15968 utils extra 
systemd-cron_1.3.1+ds1.orig.tar.gz
 0724af5c0ca2568f976ca35bc4cc3b55 3044 utils extra 
systemd-cron_1.3.1+ds1-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUM5o5AAoJEE5xYO1KyO4dwW0QAK7IQPe86ntHMBLNqzW3eB5g
UssBeXrX3sSQEJUv+aflNSmKIUup82peLD/Jfig1MoCTcJjH751Dkd6uwBRTvxGN
6Z5tI280pOaswZEeX3Kjo30htcVNtnoIW+orDFJwJF2vL28nWlFEHHa+WyX85NtN
ZZAvuUN+vba06omAaVxQdCduleYFYVt7ZxjlnlQILBIX3PQ2BfUBlCGOqa1QVfLA
1WuzPlvwwZG8r/bwiSQ6fxf8FEthjhejoxBmxF21xFzO27sXF3R1m/E7LayEV6gX
o3UDc652yL9ocwAPxZlBumFiH3Ziei4MXgYbb4wD74bPKqwFUknqNw2eeOA5Unal
ucBTjCozhVd/05fXdZs/TMW848FL205iu0Cfx3YdJfRryzJ94nzDh0R9QDeYvco1
gEcSrYt9vaW4wqGUdZdv5uzAedp22Vk3X7vcYFFbW842wWgOFXtstKVGjl0yMT1Y
6SiiOQEMqHzzMgPoDiaotgDRgutI0M4IWA3+EBL0gEc2j6jC7NxkUWzuRB0+S6Ls
vK+ff9HfNe0aFyTZ30dqc6Nt3r2DLdqpwq3oVHXJjd0vwT/mdSDVgMYoJZLVoFLv
pb3Zc042UdsyeQ1PpN3BlljBT7cIUD2COZ0BTI5Tp+T+FH7gsEnr5tDgchn4BHkB
ohbYN7DUzYByy1Cmz4EP
=Xb3O
-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/e1xbr0v-0005do...@franck.debian.org



Accepted pyserial 2.6-1.1 (source all) into unstable

2014-10-07 Thread Olly Betts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 09:02:39 +
Source: pyserial
Binary: python-serial python3-serial
Architecture: source all
Version: 2.6-1.1
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose d...@debian.org
Changed-By: Olly Betts o...@survex.com
Description:
 python-serial - pyserial - module encapsulating access for the serial port
 python3-serial - pyserial - module encapsulating access for the serial port
Closes: 759074
Changes:
 pyserial (2.6-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Update for wxPython 3.0, Closes: #759074:
 - debian/control: Update dependencies.
 - examples/wxSerialConfigDialog.py,examples/wxTerminal.py: Drop calls to
   wx.InitAllImageHandlers() which is a no-op for 2.8 and gives a
   deprecation warning with 3.0.  Update deprecated wx.SAVE to wx.FD_SAVE.
Checksums-Sha1:
 8c147a25506ce39cb1dfdfbe9bbd83349774a414 1814 pyserial_2.6-1.1.dsc
 b99e90b3efcc2adfbc5e2336ac8557cd679f412f 4350 pyserial_2.6-1.1.diff.gz
 33e6b4475a08807e119f0e494379d9f8d6d17f44 66554 python-serial_2.6-1.1_all.deb
 02c160e4bc20e24ddb1cb075faf0e3dcd4de1242 49966 python3-serial_2.6-1.1_all.deb
Checksums-Sha256:
 a7de1c609bee515ce025f7c88a6cfb18e0e6b368108d968339f16f3aa6e1a706 1814 
pyserial_2.6-1.1.dsc
 e2d2101a94af725446ecac24a56c3cb97ad5eeed999b42a21f3e6295a7972959 4350 
pyserial_2.6-1.1.diff.gz
 14ea6ce8010ef53abf5f8267b8f7ebeae93c8039b0d637cb041d11fdae997873 66554 
python-serial_2.6-1.1_all.deb
 f9180e561634b15c0f76208da569f5faf08c0531f2fc64ddda2034a3926b0e43 49966 
python3-serial_2.6-1.1_all.deb
Files:
 a9b06ce0dda6c444f8e383bd45a4b455 1814 python optional pyserial_2.6-1.1.dsc
 fe3c649ab76983a332768d6f7677f2c4 4350 python optional pyserial_2.6-1.1.diff.gz
 4d66582159c4cdbdd10acd7e4faaf1ec 66554 python optional 
python-serial_2.6-1.1_all.deb
 e0efa358904e1a8412cd4c4282bcdb74 49966 python optional 
python3-serial_2.6-1.1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM62RAAoJEBgUewc7rSsHRNkQAK2IR1KuEo9zzYmTnutWsCmv
zpBWCYUifMxy5kE8rdLn/ON0z6nxLgOjzZC1RVV2JoF61qmqlXdFeklPkff0Aa+n
/pERzG2H5HAWiBCwGfQaLKfAVO0x8KgrqSGqJvHWY03VDNvOovwr/+nmAF96Qn+y
y5czTuIGkNQHAiyrHVLBhKyl+tQfQPpdnFbXTcRF90l5CRouid/v5YxaeeBibvgH
4Q8GKERtYWjNfzKjIp5JWr2cVp2EwkgztLx0Zk15AqeRQEpnYLCHfC01lTpnS797
FM5YbnG9BS43tGj//lwTuWrUER0HUzUP0NM4AA9F4IdAraJ5RpWFwx+qKkMzTKCY
is1XQRKrE7nYWOqMepDXzK1NvB8QEJICGdTwo7cGOSGHmjSZ5CQftwrzHgucTkHf
qMGmUQqNE1b2pG7Cu/z+yLsP4f46LYUe3t4OaMxf6p+rEaf2OMkrqGLH8mquvYlE
HbmikGAAjfUj5hRIOMGS7Q5MweEoak0fPj2PxWuuXL7J2p8r+XCj8Ai6LhkWaJMf
FNEiR3gG51z1v8sDwykdjfFIzneHR14qZhyhHieVwVfrXsHbXVNL/DCEJuunixdl
f8StptcBppr+dclY1yqTLvLoyPPm0ID7QOV0/Xj1GPEUgWVTd49ZGImJT2VPw2h7
wi+0WTQ9oQb4d8cNRcMA
=R9EZ
-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/e1xbqzp-0005pj...@franck.debian.org



Accepted xserver-xorg-video-mach64 6.9.4-2 (source) into unstable

2014-10-07 Thread Julien Cristau
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 13 Jul 2014 14:33:34 +0200
Source: xserver-xorg-video-mach64
Binary: xserver-xorg-video-mach64 xserver-xorg-video-mach64-dbg
Architecture: source
Version: 6.9.4-2
Distribution: sid
Urgency: medium
Maintainer: Debian X Strike Force debia...@lists.debian.org
Changed-By: Julien Cristau jcris...@debian.org
Description:
 xserver-xorg-video-mach64 - X.Org X server -- ATI Mach64 display driver
 xserver-xorg-video-mach64-dbg - X.Org X server -- ATI display driver 
(debugging symbols)
Closes: 726585
Changes:
 xserver-xorg-video-mach64 (6.9.4-2) unstable; urgency=medium
 .
   * Deal with pPict-pDrawable == NULL for source-only pictures [cherry-picked
 from upstream git].  Closes: #726585.
Checksums-Sha1:
 01626ebec6e30cd09dc75c73509b70bf9e70d04e 2453 
xserver-xorg-video-mach64_6.9.4-2.dsc
 878ff9eb16c637f79a3e539da4145604aedd84fa 9525 
xserver-xorg-video-mach64_6.9.4-2.diff.gz
Checksums-Sha256:
 53c78c07fc09f71202a73e2ea94a0ebf46151bd19344062aea1fb52fce2b88f7 2453 
xserver-xorg-video-mach64_6.9.4-2.dsc
 a7162b6e8d953fce246f40d975a020083d34e235b2069964c3ad21f759bb3d66 9525 
xserver-xorg-video-mach64_6.9.4-2.diff.gz
Files:
 095c0566a6c501da0e266bf23e0ba15d 2453 x11 optional 
xserver-xorg-video-mach64_6.9.4-2.dsc
 6e379e2f43f5e0a4533229bc9a81c2d7 9525 x11 optional 
xserver-xorg-video-mach64_6.9.4-2.diff.gz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM606AAoJEDEBgAUJBeQM+8kQAOmAHczKuotv8QSZ/Hl8UzHP
T8+9C+BLKXRPDCgXljez2D/jBngWf6zOZrpBhkEEJJQtDJIP/Gk5lsQFp+XxwdKQ
zW4Av0CV9l4VhjyhAFSjwYg+A389htKv098alHL4kO/dE3Os+LjML3zJgK9eHYbA
ysvUMOXCYpqHAGBAFybhGLVhfz4Z0DSLIkf5LNIVGEFjqnn/+u9d/dY+XeLMZFFv
TaewkO9OqeAyrxRIxVAqp2Es/StAHFIgvULDkUVvcEvtTyg6vEvQ/9LoMbskSH7H
/zq0Hd94JIbbj51GCkOCiWwqc1ZoYUcrs9NnXNGx00EfAhg1BSvymupjcmlIdGkf
MS/S/aY+Aw5ncF293XGwvo0LK0ry0M4JU+AABuy849CBifjUs/8RNbKElN99o7Kr
LkUH8YTj7CA3Fz0Tt7Dko7AgfQFAFfyHtw6Hua8LT68wM2Wq4Sv1Ty4esTjyk4SM
KvmtihXAIGlkH6ebUinDMXzWddm5xiZjinqme8sYZrdaB4jhw2KK3B/gzElb+ANd
XIzhnL5gi+LoZWBUdafyJpknyAccehkK4EVIB46zZ36RBw+4lH4eWL2SMC20DzJU
bUfVD6vQF/+RJnzkhIGqsCVNIfa0zfT1E1A0Nef29t0nCBJ9VZiwDaIMYXy9XqQA
/ugg9gJc4jKJbDGCmIRb
=ITmS
-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/e1xbr10-0005mw...@franck.debian.org



Accepted wmbattery 2.45-1 (source amd64) into unstable

2014-10-07 Thread Doug Torrance
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 06 Oct 2014 13:59:56 -0500
Source: wmbattery
Binary: wmbattery
Architecture: source amd64
Version: 2.45-1
Distribution: unstable
Urgency: medium
Maintainer: Doug Torrance dtorra...@monmouthcollege.edu
Changed-By: Doug Torrance dtorra...@monmouthcollege.edu
Description:
 wmbattery  - display laptop battery info, dockable in WindowMaker
Closes: 543674
Changes:
 wmbattery (2.45-1) unstable; urgency=medium
 .
   * New upstream release.
 - Add -x option to run a command when battery is critical (Closes: 
#543674).
 - Restore BSD support.  In particular, the package will now work on Debian
   GNU/kFreeBSD.
   * debian/copyright
 - Update years and contact info for copyright holders.
 - Add section for debian/*.
 - Expand license text.
   * debian/patches
 - (escape_manpage_hyphens.patch) Escape hyphens in manpage to avoid
   hyphen-used-as-minus-sign lintian warning.
   * debian/watch
 - Remove uversionmangle, which was added only to give a high enough version
   number to supersede binNMUs made before the switch from a native to
   non-native package.
Checksums-Sha1:
 cf7a6efe39a327228f310d4fdb7a05caa720bdd9 1890 wmbattery_2.45-1.dsc
 93f41f715d321dcced4221079e548b703920e3f0 38760 wmbattery_2.45.orig.tar.gz
 20d5e1e4738225131df140e4925dfc0d3ff10def 7940 wmbattery_2.45-1.debian.tar.xz
 b6f0b787904a2e37adea6d226a04f43979bc 31752 wmbattery_2.45-1_amd64.deb
Checksums-Sha256:
 aa8bc3d21dc58f82e958011c30ac122e743db54abc1ba181214e579c7c4088ea 1890 
wmbattery_2.45-1.dsc
 aa9bce1d4c71b9d89dd396011067de3852f66728aa7fe9b7c6cbc04e11a970be 38760 
wmbattery_2.45.orig.tar.gz
 b524f2b271cf4ead354ecebdb7fb40bd3d8afb7739a3eff750ecf3ffafc8918a 7940 
wmbattery_2.45-1.debian.tar.xz
 3dd1a4890933ad45a4f89ed05fdf3a634e0e1df1cbecf014aef1ed87c108b2e1 31752 
wmbattery_2.45-1_amd64.deb
Files:
 fb35598b93e74f412ef01f9469324d4b 1890 x11 extra wmbattery_2.45-1.dsc
 cd65bde5bf66f502774c3778a801424f 38760 x11 extra wmbattery_2.45.orig.tar.gz
 33c4e31e6c3e920369d9640dbeacaa21 7940 x11 extra wmbattery_2.45-1.debian.tar.xz
 83bec4f685a8093e3c8e7622f9d451da 31752 x11 extra wmbattery_2.45-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM6k+AAoJEHQmOzf1tfkT+AMQAMtbhOL4FdWWPMIDAQwsr1WC
VWqxcmXOMgHMntfswNSyS32o6PDDzfwlu8abf2AA2jLtD4QuTxd5aqUAgiZL/ZWQ
9zJEG1ORA+cPqvuoeaK/TZv4kBYWXnvBZ8l3lJafv+cJ8ur7pCGovGoH3vSBTvR9
m7IZ+aeu13dUvdvgd90ug+x2ZwV2Q1Wt0aOwS3BXN31/pv3x5d8tw88wrOaPXcZI
cuPUXD6jtiuCAe5rIKankNvtJa3lyU0NwRDpl4MP1xcx44n9BZ3R2P2UQNTqGnk3
XB0biDvZ0wGhuwPvJ3kvskiuUdx0oLf5ZCGQ8vnrXT5dxQWY/GVqa+njxsU8ahAN
w0dij0zhcs6c55pPtZyuTDoYaToV7P1SBXGw2CvspDK2uk2qizqqtSz5aZv+Xnfd
c74f0mA8EJ3A2eMiC+xpwnXDbmnXe2HOzt8gD6kLZSFtNyEtDAJ2NqsNFwSe57EG
xr+ZNp1Lo/lcd9yUat7T+BPA4q1Z+QUO84/4TIl2mqSEFWxFpcvFoxgzwhCAtARn
tq8Wt4payLgQmkR9BxyLV4OAt6LZI6ZW0zJVAtScjAWGZiBDxcTMOuwEzdxF2Lxf
Ayqg/GIcV3YtYwI61UlhtYSis0JbfRZgc04LNJ6L8kcPUZDtR3fGNH2M2nw/kufi
KC45tkTbvr5LctABHsvx
=2Z8J
-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/e1xbr0v-0005lp...@franck.debian.org



Accepted qmapshack 0.3.0-1 (source amd64) into unstable, unstable

2014-10-07 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 17 Aug 2014 18:07:05 +0200
Source: qmapshack
Binary: qmapshack
Architecture: source amd64
Version: 0.3.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description:
 qmapshack  - GPS mapping (GeoTiff and vector) and GPSr management
Closes: 756064
Changes:
 qmapshack (0.3.0-1) unstable; urgency=low
 .
   * Initial release (Closes: #756064).
Checksums-Sha1:
 9ed43d31c7e841958920fdc33a554fe4613f5a00 2083 qmapshack_0.3.0-1.dsc
 a7eeff0af0995786044fedeefc01411a3e93ca76 1823830 qmapshack_0.3.0.orig.tar.gz
 718ccf427e21cdc52311172c34acb3645b2d59c7 5036 qmapshack_0.3.0-1.debian.tar.xz
 c816398ac8333bedd702e509a55efebfe4bc2ae7 1149862 qmapshack_0.3.0-1_amd64.deb
Checksums-Sha256:
 4b1aaf3fd31d5a5c8b57cac6e714b3cffd4550deb8528fa8c8f64ce7a7df4920 2083 
qmapshack_0.3.0-1.dsc
 e8de078fd9ec63ba882ab9538d4acb42e305756d0112a04e81d0dc739f245c11 1823830 
qmapshack_0.3.0.orig.tar.gz
 74f59be29c43799e754b7e305a1229e7461020f217365e662c879436d7a71195 5036 
qmapshack_0.3.0-1.debian.tar.xz
 eef7ee987501063d00cb76583d2d5fe96c05b98ccb6630fb5c653aa3ab4fa13b 1149862 
qmapshack_0.3.0-1_amd64.deb
Files:
 73ade9cbce5a9141c6c403cf8b05e3a3 1149862 science optional 
qmapshack_0.3.0-1_amd64.deb
 816bc7833497565fd3a256c04e7f3a95 2083 science optional qmapshack_0.3.0-1.dsc
 93b0f6adc8264b7b0d6210d5e4146f20 1823830 science optional 
qmapshack_0.3.0.orig.tar.gz
 52cab44df1b30e6b3e000ca3eaa7fd2c 5036 science optional 
qmapshack_0.3.0-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJT8wQCAAoJEJFk+h0XvV02uwkP/A3AI/f0wB/XCHz7W0p5BnKh
yNJMrq9xBEdPLZDhmViI6ox4b4jQhFYjqBDJ5ZRBfv4GEd1gg8CzN16wrj1MboLC
LgFt3ooYn5O5kmDYM+Yk280CXJ08ShBuu07Y6eJLPrrLFhwdV4kp5VF0sqGnydcv
URd/PNSLfJg6SzHxFqB+xJkS9+Q8Bx2KWX4AV7VElRRVFCJYAifwYiCR/+rS6aiz
3gGnar+0e1bW9zqoD69sUcuufTV6DPTvQlAaUgIR9XsRdjhbIE1958KAqNYsAfoc
RAMum3Fs3pVKk24pxBY3/Shfod0bG0NkkgLewXD7peXwX/x5+tSPAjnZEDstckZ9
oWvntheeDr4gFR2UbPUcum4c6tDTUbK3YFuo03ikCGst5FwT+RukX9D+LwVgBOlX
mjRkiGvrP9ACkqS9NE8UmgAa21kqnVE71fhvtsv9qf8CCLsuKcND9h5Sbf39oUP9
KQrGZ4+nrAh3KM6uy8HJLUQYovW3iovbaHypWSU27ALUWtvH/NmRLPLBkKWE0miE
PqB6YXwmIcPnavgR3DqQZwYtseybV0h/miL/0SG0BQvA+/EVWSf1Y800oF5kKtgp
LHmaZKdv9v5//mFG3Ct5hXKQDvkgrqc+roypULqYvbjZ4vu3FbRrGBp0PsUHrBP2
CWq9/rOdfGAoKWuBLoST
=Mst/
-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/e1xbrys-0003ua...@franck.debian.org



Accepted debian-edu-config 1.809 (source all) into unstable

2014-10-07 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 11:51:38 +0200
Source: debian-edu-config
Binary: debian-edu-config debian-edu-config-gosa-netgroups
Architecture: source all
Version: 1.809
Distribution: unstable
Urgency: high
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description: 
 debian-edu-config - Configuration files for Skolelinux systems
 debian-edu-config-gosa-netgroups - netgroups plugin for GOsa²
Changes: 
 debian-edu-config (1.809) unstable; urgency=high
 .
   * Make sure to install our default squid3 configuration for cfengine
 to find it.
   * Log an error if cfengine return failure, to make it easier to
 discover if it ever happen.
   * Adjust debian-edu-bless to only enable our local mirror if it exist,
 to fix broken debian-edu test.
Checksums-Sha1: 
 ebb19c30b531f069e27fd5e55371d40b46116ffa 1347 debian-edu-config_1.809.dsc
 9ad5f44044ea3f7f24ceaafe7dcfc9e98152 541438 debian-edu-config_1.809.tar.gz
 ffebf88c7678bf89bb9c67eada6fb93376c5387f 427076 debian-edu-config_1.809_all.deb
 73b78964a6c49f140ea69ae66c49fca0e4358a8d 128708 
debian-edu-config-gosa-netgroups_1.809_all.deb
Checksums-Sha256: 
 5ad504c4ad335a753dc59b509a934be9094e150683e9e1f6297ae4cc95431568 1347 
debian-edu-config_1.809.dsc
 fd47b9cb3072d854b3bea19d17b09d06298d97025a63328314fc361f581c2531 541438 
debian-edu-config_1.809.tar.gz
 97c6c4d3c548600ea6e7951eea0a301651d607f38943f20e3e4f8af5f64d6f86 427076 
debian-edu-config_1.809_all.deb
 37ad97d61862ff3c1f11d2b9cbfa9efe9f1225f096939f4b31838ef59c1aebcf 128708 
debian-edu-config-gosa-netgroups_1.809_all.deb
Files: 
 f23d2ff780b0f8da1cec95ef3ad15c5b 1347 misc extra debian-edu-config_1.809.dsc
 8fb48ac29b960c7f3778a8d133095442 541438 misc extra 
debian-edu-config_1.809.tar.gz
 d07283128341921aafd2962727c8701f 427076 misc extra 
debian-edu-config_1.809_all.deb
 124ba2654f1edbb827ef1af28fbe700e 128708 misc extra 
debian-edu-config-gosa-netgroups_1.809_all.deb

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

iD8DBQFUM7ff20zMSyow1ykRAubTAKC49kTgmhlA5iVEg2KXgxZAEPUEHACggnPu
p9WQ+/USMRZk8E5BEthawMw=
=RtXr
-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/e1xbrcn-0004rj...@franck.debian.org



Accepted hwinfo 21.6-1 (source amd64 all) into unstable

2014-10-07 Thread Sebastien Badia
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 11:44:23 +0200
Source: hwinfo
Binary: hwinfo libhd21 libhd-doc libhd-dev
Architecture: source amd64 all
Version: 21.6-1
Distribution: sid
Urgency: medium
Maintainer: Sebastien Badia s...@sebian.fr
Changed-By: Sebastien Badia s...@sebian.fr
Description:
 hwinfo - Hardware identification system
 libhd-dev  - Hardware identification system library and headers
 libhd-doc  - Hardware identification system library documentation
 libhd21- Hardware identification system library
Changes:
 hwinfo (21.6-1) unstable; urgency=medium
 .
   [ Tomasz Buchert ]
   * New upstream release.
 .
   [ Sebastien Badia ]
   * d/copyright: Update copyright header.
   * Re-introduce upstream changelog (Thanks Johann).
   * d/control: Bump Standards-Version to 3.9.6 (no changes).
Checksums-Sha1:
 6e1be14f5a3be06b6665049f7dd5ddb21e2fbf5a 2135 hwinfo_21.6-1.dsc
 dfb11e0a7b974ee1abc8582e3afbb957fcf81d3d 841920 hwinfo_21.6.orig.tar.gz
 31ba854c3f45c067990f22f31f0555180bc8b3c1 21688 hwinfo_21.6-1.debian.tar.xz
 780498192c33061a7cd3538a13e547bfe9dd64aa 32822 hwinfo_21.6-1_amd64.deb
 9100120c3fea834b0e1299ea03020d253e4ee780 516986 libhd21_21.6-1_amd64.deb
 201f2c26c3f517c61484ddfb10584933b5847905 568210 libhd-doc_21.6-1_all.deb
 3b4beda06f0691f9d81486438f12203ada0d88d2 37708 libhd-dev_21.6-1_amd64.deb
Checksums-Sha256:
 799052618bbac8b48a49a60ddb87c98008f34e706d4e7c7b2ebb5a4e435cb0df 2135 
hwinfo_21.6-1.dsc
 5e92f37c6f434933f5c03613816b8124e23d6461c4dec50b62ac44ef545ecda2 841920 
hwinfo_21.6.orig.tar.gz
 4082044c7f254f2217335db58bf13993240e43e2e38487550fb2c8a7142bf89c 21688 
hwinfo_21.6-1.debian.tar.xz
 45be583899dae88f93768b3d5df72eccdcd704b7c21d470035cda0cfb4296a46 32822 
hwinfo_21.6-1_amd64.deb
 2684d47b47c8bc0c09fc13ce3d9c1ba0c9b34c16a2a55ac579ac525673d21294 516986 
libhd21_21.6-1_amd64.deb
 24ebc8f8c1a83cc909d21730c07f8bffb0d1ac813572d1cb2383c0d2fa14bba0 568210 
libhd-doc_21.6-1_all.deb
 8192b63b1396594c056c04851dcc1c7d3681f2a8bb14629e306b556e96db390b 37708 
libhd-dev_21.6-1_amd64.deb
Files:
 ff05f7b57664fafe5bc83b97455afa7d 2135 admin optional hwinfo_21.6-1.dsc
 a832ca369cba502815b0d5e1b1b405bc 841920 admin optional hwinfo_21.6.orig.tar.gz
 b1c144a685ed3ca23a918a703cbf7502 21688 admin optional 
hwinfo_21.6-1.debian.tar.xz
 a320d7c3066d1b30e5ffa763a2c6b910 32822 admin optional hwinfo_21.6-1_amd64.deb
 fc5868c812a0622bc78646e3493ef9c9 516986 libs optional libhd21_21.6-1_amd64.deb
 15aa013ae26dc578e6d66d764a98b0c0 568210 doc optional libhd-doc_21.6-1_all.deb
 be3b6d8f647d70ff5b7ef020f70d0f47 37708 libdevel optional 
libhd-dev_21.6-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v2

iQIcBAEBCgAGBQJUM7hjAAoJEIcWzkYUpFLYQeEP/3mMgC1ygxzKuNF3jq/btq6R
fdgSaP4Xtv0mimX3+qqS18720yCJV8tjN7LUIQJ4077LutBTWzYACz7/AiH7BM/3
aelHDtsu+dE2ISeSKr9rDlwZ75mCCLh6nOiPk1WeN0yDQwHTt/k8v7xkmko/oV7E
azKXHrFBjANWmMuLHNhN0prBgmsxCjQGwMirWO3sKYnOIKdQNDqGi3ATlcNVJFCL
kZG0yPLJglJ3cTg4gEamMlsLGa9nqDVeAY4wqmnIx0CLQU0ai8Eak+R1Hw3yFuO4
KSftk/Nreft7LiW6Ik+yqB2p7BpKS8YH2QcLWBMVqtbIp7mAjdmwHZ9ePpQ2L5q0
3io1BoEhWdYmJpEMBcHEwn87qhSVVYWDunu4WV4MUqGKwJ0elCW+8qZ+9USQfE4m
k4O62q5HqQDRfHvDKtBDlj1m+5Q7toeloG2UUfJQlqmb1Tb0ytUuQEbO0cyuclVF
QC5soCIMsj1aafzUyjeyoiTeNec39Ua6rZSQlm2BM2irsnV7Dt3v0X0LuWjOPhEh
AAColGBO6HajjYNBo8bijPz4o5YqRiulzmL3kmVW1Is+jRAI5G9Kzf5H3UG856Fs
soghw8C428vOV6Oi+2HzVdwXrKe8UE31NiApdYejJbZf2SiVNst2JdM838fEARFf
QClC9KQB2qJOkXtjKjf3
=fE1w
-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/e1xbrcw-0004td...@franck.debian.org



Accepted pykaraoke 0.7.5-1.1 (source all) into unstable

2014-10-07 Thread Olly Betts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 09:42:38 +
Source: pykaraoke
Binary: pykaraoke pykaraoke-bin python-pykaraoke
Architecture: source all
Version: 0.7.5-1.1
Distribution: unstable
Urgency: medium
Maintainer: Python Applications Packaging Team 
python-apps-t...@lists.alioth.debian.org
Changed-By: Olly Betts o...@survex.com
Description:
 pykaraoke  - free CDG/MIDI/MPEG karaoke player
 pykaraoke-bin - free CDG/MIDI/MPEG karaoke player
 python-pykaraoke - free CDG/MIDI/MPEG karaoke player
Closes: 645568 758948
Changes:
 pykaraoke (0.7.5-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Update to use wxPython 3.0 (Closes: #758948):
 + New patch: wxpython3.0.patch
   * Drop dependency on python-wxgtk2.6 (Closes: #645568)
Checksums-Sha1:
 1cfb62af5a5cc142ae112309d07fd22d18db24eb 2193 pykaraoke_0.7.5-1.1.dsc
 523b3a888f8f53b4b1bbd871bfe6a7ab85116d22 12116 
pykaraoke_0.7.5-1.1.debian.tar.bz2
 b2dfe2f84ec4aad10d343af2d2684838246d5024 72426 pykaraoke_0.7.5-1.1_all.deb
 486b0a796a6853f57bf5f3872bf840bc232ec3a8 10364 pykaraoke-bin_0.7.5-1.1_all.deb
Checksums-Sha256:
 4420844bf21fb6b5d87afb44198cb154426215dbf12f197b5760799a76f7b97a 2193 
pykaraoke_0.7.5-1.1.dsc
 008efb42aa40fb775b7e413cd15b12f5c2433e071312cd8d3cf6c5b9da95a077 12116 
pykaraoke_0.7.5-1.1.debian.tar.bz2
 0a6330d1a93b97e99d6dd6f7d9c176cef590e7f1d71162ecd233d7a96f53a5c0 72426 
pykaraoke_0.7.5-1.1_all.deb
 2d9e09851bbae1525a7cc6c6cdb60ddfbae9b029caa42757dc6f3599ea864bda 10364 
pykaraoke-bin_0.7.5-1.1_all.deb
Files:
 d269e7f2fc76a3f203b049d5bc7b4c4e 2193 games optional pykaraoke_0.7.5-1.1.dsc
 b557fb41f90ecbbcd3226ec283681df5 12116 games optional 
pykaraoke_0.7.5-1.1.debian.tar.bz2
 f67e3cb59745bed08575dd3db411d4fd 72426 games optional 
pykaraoke_0.7.5-1.1_all.deb
 2c2bcbef8ad68727de1d3242e2b88742 10364 games optional 
pykaraoke-bin_0.7.5-1.1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM7tAAAoJEBgUewc7rSsHrkYP/2Fc0WJ8d/s5pOy2wk8aSr7H
gGEj3aJJOM8fPNq54fk2ifGNKFxl+oS471rOxRfv+tQKEES2A5FIKjTpy4OcE2gu
HaKJVW2ISevN3AB4Yd6re7YPteLRk/qKOqPFFleaE+vZtavsQFgxq4T82JfJUXmC
m2LqQ5QM9KgtsBxSl6r6RLb5WUab4Q94zRHnDgKXKF/hXgumQOsO8w8g51UEBOl3
Oo841V4LLw36BlTlRes1KSNeJEBEVPmdf+XlYPsgheQEAonyvuXiK4Xk7woS9KdL
DNiE1MI+/cfAyeZSei28YO468DVLslZ5+owLEJrqgBmATik996PZTjqE380+Ik0E
IE0xmQlJU9HrEzwJIxQPRNQW41TYjkp69b7jEk/pwgUg/KdcNTxfOQj2RCz72d/q
wuL3WiQ3cQcIJNMJkpWge9xMFS0AqSobegSsnTfLSRCkHKNeiDc34s8u+J75AFMo
N2XkQZ9sg96H5gEs7CEhdEhNF5Dqz9krQ6KRCLPGyvUO/8LWqek9haj5wv7nk+yc
abpurPWGIJZzWj5aZd+yBv5amP1iwGhH8fulDgkS+5U+XZ9ObfHrdnmvjmpJL4Oy
lT2ccbesv+Lwu13g1W74TRqUMDaqgQPlnMFld11Fdr+2NGmAtLcfcx395UD8RtrF
to218tgg//SzlsaKS/5E
=GnYg
-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/e1xbrrt-0001ho...@franck.debian.org



Accepted simgear 3.0.0-5 (source amd64 all) into unstable

2014-10-07 Thread Markus Wanner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 09:53:01 +0200
Source: simgear
Binary: libsimgearcore3.0.0 libsimgearcore3.0.0-dbg libsimgearscene3.0.0 
libsimgearscene3.0.0-dbg libsimgear-dev simgear-dev
Architecture: source amd64 all
Version: 3.0.0-5
Distribution: unstable
Urgency: medium
Maintainer: Debian FlightGear Crew pkg-fgfs-c...@lists.alioth.debian.org
Changed-By: Markus Wanner mar...@bluegap.ch
Description:
 libsimgear-dev - Simulator Construction Gear -- development files
 libsimgearcore3.0.0 - Simulator Construction Gear -- core library
 libsimgearcore3.0.0-dbg - debugging symbols for libsimgearcore
 libsimgearscene3.0.0 - Simulator Construction Gear -- scene library
 libsimgearscene3.0.0-dbg - debugging symbols for libsimgearscene
 simgear-dev - transitional dummy package
Closes: 761203 763493
Changes:
 simgear (3.0.0-5) unstable; urgency=medium
 .
   * Simplify libjpeg dependency. Closes: #763493.
   * Add patch naref_endianness.patch to fix build on arm64.
 Closes: #761203.
Checksums-Sha1:
 298f6a28b241b474fe7f579f9bcad8684e682a52 3277 simgear_3.0.0-5.dsc
 8a3fec773aa365f0979b1e4f58cd74dbbdc42b70 12660 simgear_3.0.0-5.debian.tar.xz
 815fb51de5d45e470d18c22c49dabce885772b0e 652046 
libsimgearcore3.0.0_3.0.0-5_amd64.deb
 e7205ea2066929ed67b2e2a72a8f9603ec2bd2d6 3230176 
libsimgearcore3.0.0-dbg_3.0.0-5_amd64.deb
 a40522692233f8681a2be1723e406447cbfda432 955542 
libsimgearscene3.0.0_3.0.0-5_amd64.deb
 a2d8aba0e939b72842c7d0386218c17abacf818e 10144164 
libsimgearscene3.0.0-dbg_3.0.0-5_amd64.deb
 409af30cdc8c82cc18ab3c9d8ba4f7ae9ec63be0 339432 
libsimgear-dev_3.0.0-5_amd64.deb
 b43d80d51ec32aaa4eddac94057c804a0123a9d2 126036 simgear-dev_3.0.0-5_all.deb
Checksums-Sha256:
 d01a98a34d35a89253f018769549c3952cc0e2aa81d980d16ce6433cfb0ab318 3277 
simgear_3.0.0-5.dsc
 79ece4bc7ee55b2f3a54563dc8a291b7742a5dd25176973b2cb66ad8052a287e 12660 
simgear_3.0.0-5.debian.tar.xz
 dbe0387423fa9c844113b2c7b145b953aef481ef9010cbfe0da3e8fd6c267324 652046 
libsimgearcore3.0.0_3.0.0-5_amd64.deb
 e64d05a07c3a22556a6eaa4b266c70240f4cc11bdb9057736ee170c18d348dcb 3230176 
libsimgearcore3.0.0-dbg_3.0.0-5_amd64.deb
 2d9dcc1b3074d5ae23e03e4f7a1ff165bb6d2a3d19ce86a1b91a117c261e4190 955542 
libsimgearscene3.0.0_3.0.0-5_amd64.deb
 29cc327189ee2d11ec79ddfe013aa5c55d71f11c64f7d213018f4c8676ef703b 10144164 
libsimgearscene3.0.0-dbg_3.0.0-5_amd64.deb
 02bb18399fd938018a896b94b483e84624a6c7dd694d202ae9991bbc17eb41be 339432 
libsimgear-dev_3.0.0-5_amd64.deb
 2859ac057770cb6cf444fa788c86505f6573ce0b33a97f582e2027044129acd3 126036 
simgear-dev_3.0.0-5_all.deb
Files:
 f92cd744a1d1c7b11dcf6f55c6dee7df 652046 libs extra 
libsimgearcore3.0.0_3.0.0-5_amd64.deb
 c653e4c76697dfa522b5df016c0df9a3 3230176 debug extra 
libsimgearcore3.0.0-dbg_3.0.0-5_amd64.deb
 dd2deb39038856e43131875a29f31c15 955542 libs extra 
libsimgearscene3.0.0_3.0.0-5_amd64.deb
 8c81fd3dad093406322c0245261d9f68 10144164 debug extra 
libsimgearscene3.0.0-dbg_3.0.0-5_amd64.deb
 05dfc70768f29db92f2a4b2c054e48f0 339432 libdevel extra 
libsimgear-dev_3.0.0-5_amd64.deb
 1ac9d234d5eb6bfc6a14a5153dceea2e 126036 oldlibs extra 
simgear-dev_3.0.0-5_all.deb
 fb44616894db7ea05488c20887814612 3277 libs extra simgear_3.0.0-5.dsc
 b2cea447b69dd182caaa79950309e6cb 12660 libs extra simgear_3.0.0-5.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQQcBAEBCgAGBQJUM7NfAAoJEOhoLRs/MemzaMUf/1Rk5GPtnJGZ0gAfPVBcmbYX
U6wo36L8LH2m2hK9cEUcM1swVb3Jo/VKEIHmycvR3+uyS44m98vMgfCT8EbUfuVs
ZnhGA1ayVdhh1MBSJ+vieRSv6V7gcpqKRblKAfDDuWdmo0wJ1G6ebicwpqQyQGI4
rrxbNs7DjA9Buh3Qg4PyAT1UcZl4eBLYDhBlNmTdWVr/h7VbUbSgWMDPdQ0NgIJc
Dgi0wkEs5CGhQ9o4wa7itXSMPYIMU8zaTwKmHmTZTIEbHHja73sGHBvR+ugmiL1Z
7lmtcLHtaItbNreCw3vDnfWlQjMSFcPIwDS6CA6ysAisLn0sxaeofhm0nb4nffxc
CTlKeQxArYD5QHIrBJFAIYhVqdoEqvWVZdWYpXXj8m0dY9KaG+HNIjQKStsCVBOS
TBRSTMuZI/LEVW6I/FshcGIM9op3ZqulWdqleTYlYHWNoH9p6mjZM/pSlUc19yFj
+TSn+6PhduFKIjXi8IxjA3YU5po6NOV0AXklMCxkZlSTneUNxKaVvtoLc0jbfWDO
JWZUbbY6ZQdwuGNOQT9Gh9ER2azh76CujBWbaHNp8wwOgULD9TFi5S3mZWR/ZnSf
yG0HujqvKsxPseqPMB7x0Sa0dSO+Euuu2oouFzDsrLXxpy/G9fD5RfsRKtpQ5K/R
8FiKvJeWVcImqrtD9YM7QUna59cHV7Xl1OS24moHr4uiDBALoy1IgMAqXVEHKdeR
VVOtiHMJqwVuBtMzDG6+pmg0Bj26u2PoG/OZ7aJ8ApSyKjdakNCLAPou1dMalVvM
cDrEs/tNUX/oERH2WSpRxV1gm1C3mknpyiy41HjCEPTpX6yoLCkBp68WnZ8zsQ8Z
YxIJ4Cqr3uDVmwt1rpHTcHrBGqvoeTc1vYuEJgegArcFu2+2C3FKLNN6llMe96F2
DWArM3acxXfLIMdTBfw+ZhYttKVJHzosdaleh0RQhxc2UTV5l97HXm3ngjjpmqjA
vppg1hNEBDHB21pOqssnfSvrSR1X1Qdy113Pw+I1PXmayC3b/sNxq0WAkpw5k8Qv
DGkIWPX5iNKlyJ9WC1G0cxC/reOqOkst4ll3Guump+RKzuM95B+GGVEaspMYHzN4
EvGWmvSvj8xeMcRTTk9ks4VLFb89mWoWGkIShwtUw+GJOILOIBAYPgBbyiw7JPii
FndHoYWhXoYDPusIztJMgcpxOCDgT/jQJDMCIIyl8ActwsSbPy28cxoalaY2t/ob
7uHiiHkJGQRnCi0zUH5c415AIbNWwTxc74XLFvFqmNoo9nEhKFAPnJ5PiTCFMEID
jujGsSGxGlRk8oEiNbOnNx9vnaqtz0NbM3Q4vhH18tnNsFG9jsQC5LMKqI8CRa4=
=HCUG
-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

Accepted cecilia 5.0.9-1.1 (source all) into unstable

2014-10-07 Thread Olly Betts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Sat, 20 Sep 2014 02:45:20 +
Source: cecilia
Binary: cecilia
Architecture: source all
Version: 5.0.9-1.1
Distribution: unstable
Urgency: medium
Maintainer: Debian Multimedia Maintainers 
pkg-multimedia-maintain...@lists.alioth.debian.org
Changed-By: Olly Betts o...@survex.com
Description:
 cecilia- Sound synthesis and audio signal processing environment
Closes: 755757
Changes:
 cecilia (5.0.9-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Update for wxPython 3.0 (Closes: #755757):
 + New patch: wxpython3.0.patch
Checksums-Sha1:
 58c3b1b463002c153d6215651fd6851c47aede9a 2000 cecilia_5.0.9-1.1.dsc
 d3904f8d13363412736f7988bf69e631a79c28bf 10276 cecilia_5.0.9-1.1.debian.tar.xz
 1ae8767507ee775242bf700f713d7a7c704feaa2 1038096 cecilia_5.0.9-1.1_all.deb
Checksums-Sha256:
 aed6fb68f3d78dbf76ac8925809fd9bf81541ef5a79dbf4b8ebf155f7f823c01 2000 
cecilia_5.0.9-1.1.dsc
 89b706bbb098d46456e2b4c75505090f42797e91df7c25b528b875e63f6a3da7 10276 
cecilia_5.0.9-1.1.debian.tar.xz
 7a936e2c4cca2dc46ebe996d6257a04e467d6c29422ec85cd92a061b4bfd58d4 1038096 
cecilia_5.0.9-1.1_all.deb
Files:
 fc333f2c02d5064daad9b0d1be578573 1038096 sound optional 
cecilia_5.0.9-1.1_all.deb
 fc13853b5469f45e04cb7291847ce7ff 2000 sound optional cecilia_5.0.9-1.1.dsc
 e2d13deb422a300846ea1198db6aee61 10276 sound optional 
cecilia_5.0.9-1.1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM766AAoJEBgUewc7rSsHCSgQAIv87agLeWesEv5BOI7wSYNY
zAV8YfDGrkSbiU2GF354HM9o+ZiuNLuhMmsjfqpeEQSsIv5sTOsExQ6N3SEropkv
9V1eKvxwIEMKrW5qtNlYTZelfOXiGSUAfuPt5/1+Xdb/aozvVlnSQwp3V8EGWa/c
OtDFg53Xn19134W3WU2QPCRduNGfPOAMztGrWC7dBVRoAYfS8iSnJ7/mXd618tFi
y0DnC3coykyZoVWsfjti4ZtDdFw/el5uLfhN2iWAFElKthW+FWbwrCfR/1PQF+aG
jJvCGSkMQHXx0vqMbKJfdx9vqlkr6tYnpkwwCZe2Hjnn89eXIcSR+BUg8KmoH1C7
/tOD2NAMu1O5fEMjljz9IcmS80gfWA700gb/qs8z6wrMul4JXvv1y0jUc7vTwsRx
l0vspl+USnnQwef0JVCRs+bpJmxRMmUPVGNWipZwk3lXmNRN44eg2a9gXHG98WzY
+a8V236xo2bYGV3+eHn8THBh+/2Q/49W8qL6zfrLoidfXN+l26FJ+gfTdn/1+gNA
UGjVUf8KGV9qiCdDSdM/XVCLWZ87fPJd+aR1kyLGZssVsA4w1ABVm5t3TZBqeyII
FdeUZA34Dec+FSbC1rke0CDMn5WvzHuXssv0xpQxuHde0Wc3uHY3Q4NClofQepxc
QCOG9Vufjl1zXgonqt3Y
=Yx12
-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/e1xbs5w-0005ry...@franck.debian.org



Accepted binutils 2.24.51.20141001-3 (source all amd64) into unstable

2014-10-07 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 12:26:24 +0200
Source: binutils
Binary: binutils binutils-dev binutils-multiarch binutils-multiarch-dev 
binutils-hppa64 binutils-doc binutils-source
Architecture: source all amd64
Version: 2.24.51.20141001-3
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 binutils   - GNU assembler, linker and binary utilities
 binutils-dev - GNU binary utilities (BFD development files)
 binutils-doc - Documentation for the GNU assembler, linker and binary utilities
 binutils-hppa64 - GNU assembler, linker and binary utilities targeted for 
hppa64-li
 binutils-multiarch - Binary utilities that support multi-arch targets
 binutils-multiarch-dev - GNU binary utilities that support multi-arch targets 
(BFD develop
 binutils-source - GNU assembler, linker and binary utilities (source)
Changes:
 binutils (2.24.51.20141001-3) unstable; urgency=medium
 .
   * Fix ld/17447, taken from upstream. LP: #1371636.
Checksums-Sha1:
 a7438cf42cdd969447dfe87aee37afddd9984028 1807 binutils_2.24.51.20141001-3.dsc
 e85cdb035901f7dd12d5ffe3545ddee2dea25f3a 78321 
binutils_2.24.51.20141001-3.diff.gz
 528eefe13c91df30e96705f8b53f1394161b0445 499828 
binutils-doc_2.24.51.20141001-3_all.deb
 f839ba4c7c8d9afbf3c2298dcb3bfcbaf0ee14f7 16915206 
binutils-source_2.24.51.20141001-3_all.deb
 17e5a867096d8779dde38aaa91564fbd03d98734 3320502 
binutils_2.24.51.20141001-3_amd64.deb
 b1cdf6f901541789a0171856548d3f3a993918e5 1912470 
binutils-dev_2.24.51.20141001-3_amd64.deb
 24c8d9a59511980417175cc5a7e45a197af4604c 1629294 
binutils-multiarch_2.24.51.20141001-3_amd64.deb
 fcb2ed46720c7a1253bcf4a23d4c0dd23ee6bbed 1204 
binutils-multiarch-dev_2.24.51.20141001-3_amd64.deb
Checksums-Sha256:
 a74136647180365973405ad686479c46cb684a7066fab992d49cbd6906dcc69a 1807 
binutils_2.24.51.20141001-3.dsc
 613f893d80c95657962a06e0bf2ffc695ca4e83cb97a329179ad4f6daed9d71a 78321 
binutils_2.24.51.20141001-3.diff.gz
 f79e8089dbce4c35d9c70b7cf7e7e6d28d9a4926dc825ababb6346f16b415b15 499828 
binutils-doc_2.24.51.20141001-3_all.deb
 eab84ca70a3d6d4be5f9303adddb03ab238093f11def8283fab14c5004921015 16915206 
binutils-source_2.24.51.20141001-3_all.deb
 ad0fd26633091f25f5d90ab7cc3755aea9de806661335d64cca3c0e04f16a7f9 3320502 
binutils_2.24.51.20141001-3_amd64.deb
 52c8abd29afeaa8fa60b258b957e54aa6c7fe978484aa1796f16660daa8c9c0d 1912470 
binutils-dev_2.24.51.20141001-3_amd64.deb
 eaea6912ae088570df92ae77cc9d1c0e0ebe52ede8eb760797815a6a943fed2a 1629294 
binutils-multiarch_2.24.51.20141001-3_amd64.deb
 16e75cc262bf4f2c20fc3d8513c38edef55ffde9d6d3433b7e9234aca3678471 1204 
binutils-multiarch-dev_2.24.51.20141001-3_amd64.deb
Files:
 eb96fb1458119f6f37e1d116f8bc69c3 1807 devel optional 
binutils_2.24.51.20141001-3.dsc
 096adde0916ce9f9ba4977f055ccfae5 78321 devel optional 
binutils_2.24.51.20141001-3.diff.gz
 1e7dbc3bdb3ffb09ef1db18f30d456f7 499828 doc optional 
binutils-doc_2.24.51.20141001-3_all.deb
 3bcf0acda212972ea22ed6c2a989b823 16915206 devel optional 
binutils-source_2.24.51.20141001-3_all.deb
 f1337d639b8d6c5e78b63a1c063c6013 3320502 devel optional 
binutils_2.24.51.20141001-3_amd64.deb
 ec0aaeed760bf548a677217b1b11c96f 1912470 devel extra 
binutils-dev_2.24.51.20141001-3_amd64.deb
 c019016313fce858a72698864095c014 1629294 devel extra 
binutils-multiarch_2.24.51.20141001-3_amd64.deb
 503e8c3205b8ac6cb5a91c7069f1864e 1204 devel extra 
binutils-multiarch-dev_2.24.51.20141001-3_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQzwz0ACgkQStlRaw+TLJyK6wCgwNVImCHit4ZtVCt8748OVNsg
CzIAnRdeJYkzOKJIqzWAy1om8NTmLfwd
=lChJ
-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/e1xbskq-0002j4...@franck.debian.org



Accepted media-player-info 22-1 (source all) into unstable

2014-10-07 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 12:31:00 +0200
Source: media-player-info
Binary: media-player-info
Architecture: source all
Version: 22-1
Distribution: unstable
Urgency: medium
Maintainer: Kubuntu Developers kubuntu-de...@lists.ubuntu.com
Changed-By: Martin Pitt mp...@debian.org
Description:
 media-player-info - Media player identification files
Closes: 748647
Changes:
 media-player-info (22-1) unstable; urgency=medium
 .
   * New upstream release
 - Terminate udev rules with an empty line (LP: #1364747)
 - Add Sandisk Sansa Clip Sport (LP: #1296418)
 - Remove ZTE Score (Closes: #748647)
   * debian/copyright: Fix BSD-3-clause short license name.
   * Bump Standards-Version to 3.9.6 (no changes necessary).
Checksums-Sha1:
 2239998a34c771a9fe2710aca67185c30c90226b 1879 media-player-info_22-1.dsc
 4f0b94b0e456b8427168ce7414ea725d98daa984 104833 
media-player-info_22.orig.tar.gz
 117d10e547ec7b0abeb856a58e8504c6e4362646 3948 
media-player-info_22-1.debian.tar.xz
 9af95818414bcefae834decfcfc0a0dc97a9d7b3 33230 media-player-info_22-1_all.deb
Checksums-Sha256:
 41eef1b51f890289bc5d60aabc9f8151745ecf5b8624c19116def42d17e55145 1879 
media-player-info_22-1.dsc
 7ee7d7712834860533c46b16947238ef5b5d72f394fa7fb52783a15fba7b2336 104833 
media-player-info_22.orig.tar.gz
 b5b19895e90ce30dd831674c28097549f8cebd711873d4ca11c2425c4e3a51b4 3948 
media-player-info_22-1.debian.tar.xz
 d0497ff8e6921cf0f503124db12da8f63f24bbece5ccbe9208504a95fa457673 33230 
media-player-info_22-1_all.deb
Files:
 3dd4fe946032fbdf04817812f46c335d 1879 admin optional media-player-info_22-1.dsc
 2d4b94104e2266ed4a8ae306086e4243 104833 admin optional 
media-player-info_22.orig.tar.gz
 25fac73c2b5e6832be37f7725ff50def 3948 admin optional 
media-player-info_22-1.debian.tar.xz
 dc3a463dd212e91e53ca8b2672bdf2cf 33230 admin optional 
media-player-info_22-1_all.deb
Original-Maintainer: Martin Pitt mp...@debian.org

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM8GKAAoJENFO8V2v4RNH640P/jOTIhDwG26546RR6rVDxCxu
lseN4Cy6VKV94i0TMRmafceT3FwBKR0/Y8lyS/8jdDhtUx6yt2RQaf1aNt+tRmQS
6BMZxC3MYr39C6aaTmSmcuO4tO5qATyuFJmUo+rG85TSmj51FFZw0cEbH01fz9HW
lFvFA+4qysQ8AYumwfYde34O0xa0tS+P/S3KgOvHn5FmZyf4lE0QtT2u6/HvF7Nw
0rsbZ13oAAoAASM6ki7ePWJFvo/ZyKN/nxOmjFzSUxh4TS86Kl5bF1ccn+dJB/wQ
JFHLxOEhdQlWHKWSCNReGFcXGgRZi3Cpifo8nlktRQ5/pv4+Nb+vI/c0d93/xu1O
eu/6BB2eHLxKQRvu7kGpIymlBUAK25ElUBH0eUNU0G9kXARPA/YVO+AksjJpoLtW
8L1YxHpEKXq5dGt1YpZ/DIbvdFaEI9krx6YmtcdlKMLVlKSYOjFUjTx9Lp4nF/mU
MF2jRvF2F6BUVPu4CvDHG6aRztOPXr8ifnq40fTwJG8awPYoFp2IbgxMVWGAqZpW
ek1xJsWmjoq1kaksLtINHZM5Y6MaSsAWy2a8cYhNttZyLYCzK7QHxNL0wcEeozrN
MQ2OVnDLxMTS9uBkOXvdAbdYYH/uBg+zfYRjQS3s3ef4s+ByRv7KnMOXeFfr6bSg
ZUzYpk4uNI0ZoafmNBLJ
=Un9t
-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/e1xbskw-0002kp...@franck.debian.org



Accepted lmms 1.0.3-3 (source amd64 all) into unstable

2014-10-07 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 12:13:16 +0200
Source: lmms
Binary: lmms lmms-common
Architecture: source amd64 all
Version: 1.0.3-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Edu Packaging Team 
debian-edu-pkg-t...@lists.alioth.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description:
 lmms   - Linux Multimedia Studio
 lmms-common - Linux Multimedia Studio - common files
Closes: 763720
Changes:
 lmms (1.0.3-3) unstable; urgency=medium
 .
   * Try to get vsl plugin working on i386 by build depending on libwine-dev
 and wine32-dev-tools (Closes: #763720).  Unable to get it working on
 amd64.
Checksums-Sha1:
 64ca3d10b02241866ae2c83ab70d863d9cb52dca 1757 lmms_1.0.3-3.dsc
 29c1aa34ce8d25d2c9bc775cb10f055990912811 7816 lmms_1.0.3-3.debian.tar.xz
 be340ebe26651db8d32f1e851dd878bf786b9ba0 4566266 lmms_1.0.3-3_amd64.deb
 01ce558634d41bea2ffa5c1864a959a3af2300b8 6784534 lmms-common_1.0.3-3_all.deb
Checksums-Sha256:
 95e5cf662079416219373a309dd63885cbf6a7d06e315a846c307ad6398606fa 1757 
lmms_1.0.3-3.dsc
 fdea720bfc83e57bf90c377ccd31487a7ababc854ffe945823341eee96417e4b 7816 
lmms_1.0.3-3.debian.tar.xz
 1585207b273919e590446da786c508cd7d90c8611732629ef4a092d747d61444 4566266 
lmms_1.0.3-3_amd64.deb
 467cdfdb468765933aa934c79d25cca83a9f74fb4bbab0c5189e83003a7e8572 6784534 
lmms-common_1.0.3-3_all.deb
Files:
 0dc0f22b762c27a9323d8776676fe905 4566266 sound optional lmms_1.0.3-3_amd64.deb
 233acdf61e09682098dcf722b437108d 6784534 sound optional 
lmms-common_1.0.3-3_all.deb
 b78fe9dbcbaf84fb1888bba9ed16a3d7 1757 sound optional lmms_1.0.3-3.dsc
 c3183f67b452b0ab099d2542282c13b2 7816 sound optional lmms_1.0.3-3.debian.tar.xz

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

iD8DBQFUM8Q720zMSyow1ykRAoscAKCfvTDpEt+dl52g5oE3RmaYTJJh0ACg230s
wYQ4av5qlgpMD3V0nbI0Zfw=
=oq2E
-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/e1xbskk-0002gg...@franck.debian.org



Accepted redshift 1.9.1-3 (source amd64 all) into unstable

2014-10-07 Thread Ritesh Raj Sarraf
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 15:56:25 +0530
Source: redshift
Binary: redshift gtk-redshift
Architecture: source amd64 all
Version: 1.9.1-3
Distribution: unstable
Urgency: medium
Maintainer: Ritesh Raj Sarraf r...@debian.org
Changed-By: Ritesh Raj Sarraf r...@debian.org
Description:
 gtk-redshift - Adjusts the color temperature of your screen with GTK+ 
integratio
 redshift   - Adjusts the color temperature of your screen
Closes: 738127 757445
Changes:
 redshift (1.9.1-3) unstable; urgency=medium
 .
   * [c4bae6d] Enable libdrm support
   * [7dd8f00] Add at-spi2-core to Recommends
   * [261557f] Drop gnome clock support, which has been discontinued
 upstream (Closes: #738127, #757445)
Checksums-Sha1:
 6fe0c75b2ea120ee2f6044edbbe23c31d9de04b6 2144 redshift_1.9.1-3.dsc
 4d99792caef91f938d7f5cb8af893931c349319d 6020 redshift_1.9.1-3.debian.tar.xz
 002b377c80372e5b75f8ec6de7a17cb48a2d6ff9 55676 redshift_1.9.1-3_amd64.deb
 baf4006cc67a8a442538c3244cb9e9524eb0ca9d 30116 gtk-redshift_1.9.1-3_all.deb
Checksums-Sha256:
 75e70ed3692e9b6fb1f515a61270288ed7e5d791e8da3a8fa38a55d6ae68f0fc 2144 
redshift_1.9.1-3.dsc
 aa6de225b8f342eac4c359ecfc308865338335a925080ad67d03d1c34b2e51b4 6020 
redshift_1.9.1-3.debian.tar.xz
 1695a4c3e9a69987d73dc573c8b4fc71a2ba162ba713284d263992c847857538 55676 
redshift_1.9.1-3_amd64.deb
 fb93c977540dc321de1a2471c5d961796de1158d3e56eec78fdc4898cfa901f3 30116 
gtk-redshift_1.9.1-3_all.deb
Files:
 2978ee0b0cb927c69c355af403c18a52 55676 x11 extra redshift_1.9.1-3_amd64.deb
 7cad1a6d82024132e863c10d701c20f8 30116 x11 extra gtk-redshift_1.9.1-3_all.deb
 f1b6f99812d45d476d0f77b04e9303bf 2144 x11 extra redshift_1.9.1-3.dsc
 e73687251928da965b871aae468b0d79 6020 x11 extra redshift_1.9.1-3.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM8FNAAoJEKY6WKPy4XVpLEUP/0nj46l/Dc/0ddxzxAy07H1e
7+c+W9OWt7H6BXDr3frLhtbZBWVqIaZpKreAy+H0qO52PHe2MZr3LZ6rbtC8fIyD
JCG8XGy62H0c87yxxOKfQac0MoABJQNnaalls0UOlGYa48ooj67B47QWZrbla6un
pSPRCV9aMs/73XpcMPOfXRVNJoQqteMm94oQuo9ChI9dH9Y1Y5BBHGZ4QTmBlLYo
dne5GUda2xxd1Jnd88odh6ixxXvan4mb3apynGQN09ClqCwiQUCAyB/rTWZVGlFo
i9tQh691FXhgba2Mm7PYUvyQuByaXMmF8FlTQC+mhugAWd4O0ZzfGCkIFpN8T3qx
GrbRyaI33tz+Fl+0MhZI6rR/EDT6BfHRHKCjXljF2y0iu/VRhIF0k5m5rGJOmpfk
4SQPfLNBluAONeVXW7++ollZ7ZFTVw5T9A6MQKGp53ezwvMM2CBWkR24LYrYEuO4
FTeDeQNTOJUyJDeOGX8fmSXsnPEuTNxyJTOfR0aK0+WqUJVbm2Ez5fDzbzCjhT4s
kW9fGkH2vFfnzaiOoPu6A2FnnlZLTx8n1ngn8CoWdxnJkjZ2cOcoeOeFerBVdBQK
/j6zhpaqBmgFs7SEGX639ACfKiHY26gBBxIxDjPw6p2PLjRUM8GctklMRyULZIAe
QGRh1RdgFS7GP54L61el
=E492
-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/e1xbslg-0002ts...@franck.debian.org



Accepted sup-mail 0.20.0-1 (source all) into unstable

2014-10-07 Thread Per Andersson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 11:47:58 +0200
Source: sup-mail
Binary: sup-mail
Architecture: source all
Version: 0.20.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian Ruby Extras Maintainers 
pkg-ruby-extras-maintain...@lists.alioth.debian.org
Changed-By: Per Andersson avtob...@debian.org
Description:
 sup-mail   - thread-centric mailer with tagging and fast search
Changes:
 sup-mail (0.20.0-1) unstable; urgency=low
 .
   * New upstream release.
 - Use upstream man pages
   * d/compat: Set to 9, since we use debhelper 9.
   * Bump Standard-Version to 3.9.6, no changes needed
   * Add gpg data to d/source/include-binaries (user for testing).
Checksums-Sha1:
 bdb10dd96276f6d9599aaef18522eefc46c712d8 2318 sup-mail_0.20.0-1.dsc
 10da255d5230e548f2dc757234a382114d029c2e 174896 sup-mail_0.20.0.orig.tar.gz
 8391b2ca136262d7998185e26de660a41cadd774 12944 sup-mail_0.20.0-1.debian.tar.xz
 fa6aaf3572ad406be8e16bb18d2edd853fc24e68 147420 sup-mail_0.20.0-1_all.deb
Checksums-Sha256:
 2d2015cfdebc1c5d08e70a9e349be94e660d620d0574ff5cd0a4c02aa3b75211 2318 
sup-mail_0.20.0-1.dsc
 9b734e2b1e20af0784523ef138ec156b7f1c8922a7df3286c596bbf426d2b266 174896 
sup-mail_0.20.0.orig.tar.gz
 edb458e7ded78f0a7f145e5d9f769dc5056e8bad542b481075502a8d19b9cb0c 12944 
sup-mail_0.20.0-1.debian.tar.xz
 db8b36a78aadeb7e651161e1945caaa5b154b99297ebd6211ee7ad2e4f789b24 147420 
sup-mail_0.20.0-1_all.deb
Files:
 f991a4d8453682a26f5203a2207f5bef 2318 mail optional sup-mail_0.20.0-1.dsc
 c9002e00df1f650a15a90fad67fa727f 174896 mail optional 
sup-mail_0.20.0.orig.tar.gz
 e778e8f4452ce3d105ffbfbfe33e3cc1 12944 mail optional 
sup-mail_0.20.0-1.debian.tar.xz
 a180be97f202abc8217a8ad448bc9fc0 147420 mail optional sup-mail_0.20.0-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUM8IaAAoJELGIrlV59JL4tIAP/1CdTctgfv/W7fs+nQjWXuXx
zfmVJ6f6WIm13wp0iqIsszyXgAvgOqntDmiirlX0LnCjBHdi9mWL38hlbW4msztj
gG+8+1acNEUukYZKnYVhh3ixI+av9WjEqhMIQIqo9Ta25X1U2F8SOJ+tEBzNbn3Y
48zqtYEGUEwprOgzlcdgBKKMHiFPdZDI6GwGfSDY8Vr5hGwjli6YFdn59du6ZKSG
9LidR+d2F2xPssehJpWeUsu0i0NWjK+OHNkVXeWnTHYicGsRx7V7nfCDZgCyncUo
EHpCZntc8ykFR/EwmnUBw+YYt26L9Rcor8amNhv+xn/0ihaSjKFBkrjeG3/1GR02
g3DfynmOzD1Q6TtBT9bTIw+hM3uXkFm9Nz/GYbM6oS/yP/TEzwQnP+5ZfOD0Y2oy
vs9cl84VeJAMXhuDBniByNU8XjleRqAsU7P9ClNwUOBkTv17FvGbTcIswjcEcpJL
ZuAvvxyLutsatOTzebVbWSCJSbWXUguRGwArRJ9Gn7IDMEymy4zkxnuLVboOFATU
sjd2rNxjb4whEzecolmG7ja7h2V1tG1Gn14FT2+OjzSca+8o4qCK+qR8JaJsDoeJ
os6cKmMA7fOw3AnjL1uC/rLdvwSrfvj6aRBT0GyLe14SpgpHgtQCceOZVVd9GjK9
Pxhx35BdylsKh2aSk4v1
=SRZM
-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/e1xbsll-00033n...@franck.debian.org



Accepted acidbase 1.4.5-4 (source all) into unstable, unstable

2014-10-07 Thread Jeremy T. Bouse
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Sun, 24 Aug 2014 18:14:12 -0400
Source: acidbase
Binary: acidbase
Architecture: source all
Version: 1.4.5-4
Distribution: unstable
Urgency: medium
Maintainer: Jeremy T. Bouse jbo...@debian.org
Changed-By: Jeremy T. Bouse jbo...@debian.org
Description:
 acidbase   - Basic Analysis and Security Engine
Changes:
 acidbase (1.4.5-4) unstable; urgency=medium
 .
   * Update package to clean up lintian findings
   * debian/source/local-options: set unapply-patches option
   * debian/watch: Don't need to use uupdate with gbp
   * Update Standards-Version, DH Compat and Vcs
Checksums-Sha1:
 1307a4734a560a55b86dbe7525cb77aa7c34de39 1842 acidbase_1.4.5-4.dsc
 0173e46fba81205e583fcef40b136b1900ba15c5 21840 acidbase_1.4.5-4.debian.tar.xz
 21d23f23a844948caa5c52ea981bae3f0565242b 292794 acidbase_1.4.5-4_all.deb
Checksums-Sha256:
 e8fcc21bdedb141137ba47016d9a1698df016d789756d2840cc2e61bb874dbe2 1842 
acidbase_1.4.5-4.dsc
 448d43395a24d52535ba0310f79937ded25dadc714a5c1a259efd0cb39ac2d06 21840 
acidbase_1.4.5-4.debian.tar.xz
 86c67d7f8441c32cca77f4ac19fa24a9e4a39dfca4944d326ea2bb8ecbb10c9b 292794 
acidbase_1.4.5-4_all.deb
Files:
 b73831145890ffd7f43f4621bc5d89a5 292794 web optional acidbase_1.4.5-4_all.deb
 7d01844984c482341ec9628d1aaa8883 1842 web optional acidbase_1.4.5-4.dsc
 e4c37fb368fd217d5574e227f843b525 21840 web optional 
acidbase_1.4.5-4.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQH8BAEBCgBmBQJT+m1YXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQwQjJGMEQ0Mzg5QkJCQTY4NjcxQzhDODY2
NEI5NUE4RDZFMjBCRDI0AAoJEGS5Wo1uIL0kZi8MAL0fJItRDyd9CkaKNHlO/Spq
8mns9t4rgFDydEbflylAUrF0lBh0TzLJ4ANER4I8yQZCIHuDCnOA6uC+rbQNliyx
wCSRJtD/WLNi9gmTeqHel6pHtpaHeDWZVniAH7+ZDblfkBVtAESdV5GHfJLuJW9L
1VR1QtM4iJTeEybwdTYIaUltWZDtOwHgsO55TLU3p8B2xzIkymrm+QnphNer85gI
3gnfqptDgx0gRvc+hYCv1QyUGbmz7YyuYy0wqx5kBl2cLrOUhOc84OD9xQtCQRkO
S9pLtqwg7eJBJB0SNtUL0vURlE2XupmvNBgaq4gcmFnbFbSdQ8xPlIYt4gIkAd56
Hsr3p59+11iZHlvaumMSaFljTDqEWXhV2GlJbgivZDlhRXbsP4CsDjrO5WDEN1xt
g9B3I18nTZy++adLtWLeCC/ZW+wmtliCs7zVNZvISYtVOmnkBA9m5haYSbvOp7Ue
FjiJ+oUcH7AeKGzl/Al87IEmGe0OenK+dOwJIH1KwA==
=lKU9
-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/e1xbsuw-0004u2...@franck.debian.org



Accepted debian-edu 1.805 (source amd64) into unstable

2014-10-07 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 13:02:17 +0200
Source: debian-edu
Binary: education-tasks education-menus education-astronomy education-chemistry 
education-common education-desktop-gnome education-desktop-kde 
education-desktop-lxde education-desktop-mate education-desktop-other 
education-desktop-sugar education-desktop-xfce education-development 
education-electronics education-geography education-graphics education-language 
education-laptop education-logic-games education-main-server 
education-mathematics education-misc education-music education-networked 
education-physics education-services education-standalone education-thin-client 
education-thin-client-server education-workstation
Architecture: source amd64
Version: 1.805
Distribution: unstable
Urgency: high
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description: 
 education-astronomy - Debian Edu astronomy related applications
 education-chemistry - Debian Edu chemistry related applications
 education-common - Debian Edu common packages
 education-desktop-gnome - Debian Edu GNOME desktop applications
 education-desktop-kde - Debian Edu KDE desktop applications
 education-desktop-lxde - Debian Edu LXDE desktop applications
 education-desktop-mate - Debian Edu MATE desktop applications
 education-desktop-other - Debian Edu non-GNOME- and non-KDE-specific desktop 
applications
 education-desktop-sugar - Debian Edu sugar desktop environment
 education-desktop-xfce - Debian Edu Xfce desktop applications
 education-development - Debian Edu software development related educational 
applications
 education-electronics - Debian Edu electronics related applications
 education-geography - Debian Edu applications for geography
 education-graphics - Debian Edu graphics related applications
 education-language - Debian Edu language related educational applications
 education-laptop - Debian Edu laptop packages
 education-logic-games - Debian Edu logic games
 education-main-server - Debian Edu main server packages
 education-mathematics - Debian Edu mathematical applications
 education-menus - Debian Edu menu reorganization
 education-misc - Debian Edu miscellaneous applications for education
 education-music - Debian Edu music and sound applications
 education-networked - Debian Edu networked minimal packages
 education-physics - Debian Edu physics related applications
 education-services - Debian Edu services for educational institutions
 education-standalone - Debian Edu standalone workstation packages
 education-tasks - Debian Edu tasks for tasksel
 education-thin-client - Debian Edu networked thin client packages
 education-thin-client-server - Debian Edu networked thin client server packages
 education-workstation - Debian Edu networked workstation packages
Changes: 
 debian-edu (1.805) unstable; urgency=high
 .
   * Adjust test-metapkgs scripts to use debian-edu-bless from the
 debian-edu-config binary package if it is present.
   * Make sure test-metapkgs also set the debian edu suite, to find the
 correct local repo.
   * Change tasks/desktop-other to recommend instead of suggesting
 goplay, now that it is going to work in the distribution.
   * Update metapackages with the latest packages in testing.
Checksums-Sha1: 
 c9985498553cba268a18930ec4745a5f01d87aef 3405 debian-edu_1.805.dsc
 86a7342fcb5ffed9f5792bd5dbd5e1be5e798062 143002 debian-edu_1.805.tar.gz
 0d97ed7e70f1bf7173b8aecbadcbfbf31db19fd6 52734 education-tasks_1.805_amd64.deb
 2862690c6c51568e9cde986637b73f22fed81729 85018 education-menus_1.805_amd64.deb
 2e262120baaef1b16e8526a58e6b238747fecdad 49704 
education-astronomy_1.805_amd64.deb
 e2f4b1b21784384567c1bd2e1b867a42b63e2644 49696 
education-chemistry_1.805_amd64.deb
 787cf1f2502b6eccc8311207f0c58950b1edc381 50378 education-common_1.805_amd64.deb
 1c50c253d492d91e927382be6db8e4ab6e10c835 49894 
education-desktop-gnome_1.805_amd64.deb
 0b0e910b0c439d72806142f9966e4ef34d19d3fa 50240 
education-desktop-kde_1.805_amd64.deb
 8ebb762b7350bef7ac4e5df47154371b76391774 49862 
education-desktop-lxde_1.805_amd64.deb
 eb88015ea5f62d07421a0c17e90f2a61de4825be 49886 
education-desktop-mate_1.805_amd64.deb
 64516524f8877d5b77dfb8ab8fcc51e6adfc714a 51450 
education-desktop-other_1.805_amd64.deb
 06f298a3140abb9fd693012aa511cc1358644242 50030 
education-desktop-sugar_1.805_amd64.deb
 f35b8d02551fb40eb0155e8ce1e8a683112c9245 49746 
education-desktop-xfce_1.805_amd64.deb
 18d0bf6a3d01504eb703f859f7ac18052d245644 49966 
education-development_1.805_amd64.deb
 a178ad29cbcf86c94ed862c13ccb287ef585b7ee 49722 
education-electronics_1.805_amd64.deb
 877d7b3d31acdba45a7107ab0497423735ccf555 49726 
education-geography_1.805_amd64.deb
 2bfc50676dad095184608040271c85b38ed5c06f 49720 
education-graphics_1.805_amd64.deb
 17db820d8875e10ad1c7cdddfe4343e51ce5532d 49774 
education-language_1.805_amd64.deb
 

Accepted safe-rm 0.11-1 (source all) into unstable

2014-10-07 Thread Francois Marier
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 08 Oct 2014 00:49:41 +1300
Source: safe-rm
Binary: safe-rm
Architecture: source all
Version: 0.11-1
Distribution: unstable
Urgency: medium
Maintainer: Francois Marier franc...@debian.org
Changed-By: Francois Marier franc...@debian.org
Description:
 safe-rm- wrapper around the rm command to prevent accidental deletions
Closes: 759531
Changes:
 safe-rm (0.11-1) unstable; urgency=medium
 .
   * New upstream release
 - new XDG Base Directory spec compliant config file (closes: #759531)
Checksums-Sha1:
 22a625b443c73c38d706daac15b926dda17b1864 1946 safe-rm_0.11-1.dsc
 51db9448c6fa5f0506063f157fa310c25d0f65ff 16362 safe-rm_0.11.orig.tar.gz
 d3365f7ac87780f88909c5c393e362c73c866b84 245700 safe-rm_0.11-1.debian.tar.xz
 9737ba1e21388c8818612d8cc313ce475f113298 19056 safe-rm_0.11-1_all.deb
Checksums-Sha256:
 b2f35663b33ed7ec070a385f5cd72dc2c7d264347160790c9ad0378fdd3f8cc8 1946 
safe-rm_0.11-1.dsc
 5f5c750feda1dda8095d98142abc5895bb8376ce9e27f11e7ebb67ce446f1583 16362 
safe-rm_0.11.orig.tar.gz
 8ff186f84eabddea51b2ccfc148aefb9885a1dc7ba0b92bbbda09a48d3803866 245700 
safe-rm_0.11-1.debian.tar.xz
 24668b8c5284ad471d2a877d6148ddf687ad0fc96f1fecb1ae30f4cb29263ae6 19056 
safe-rm_0.11-1_all.deb
Files:
 d0242802682791cae606bc7974d0fdd8 19056 utils optional safe-rm_0.11-1_all.deb
 8588ee9b6bfc20c7adead34645a41a86 1946 utils optional safe-rm_0.11-1.dsc
 14297b61f66869935434dca63b7faedd 16362 utils optional safe-rm_0.11.orig.tar.gz
 df13af2a42bac56311c800dedfdbf254 245700 utils optional 
safe-rm_0.11-1.debian.tar.xz

-BEGIN PGP SIGNATURE-

iQJ8BAEBCgBmBQJUM9RFXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ4QzQ3MEIyQTBCMzE1NjhFMTEwRDQzMjUx
NjI4MUYyRTAwN0M5OEQxAAoJEBYoHy4AfJjRqt0P/0D1r02dayD6xL3D8wOaBQFm
eI3J2iHmFiHGZPdwssuUQmlnq2o5svNoVWJ99wej9WZACtyzz8H1xVeBxN0VBVSk
qybf4rxPhvDLWj4TRgIjmy8CJ8IPKKlOc5EKdHs2JG4NrpQZ0j9zNzrtU9iQfrzu
fnYnqEDF5+Ww5YcpOg8UyDeiDtiYqJ+GCcnnzprGu+zsQc60eT1DchqQxOzIwI2b
bldkUecpg+6FOknhXd7CAL5y/Ek4PKl06ZUYss6kCYrSj/3mkiLkC+2EgqvybGGC
PLl9UWnnZmvRNbNHkvL4pyQGtaVrSKB5oiwLCC8EVUn2I45M+m0TCysAUDqxC9J9
CobzyXdyfuBVS/TLgGmWKKZlVrMAfP+NkvlZJRpvS5Rgy2N5/oNgCX/Foxt0KKLD
4VA1RFeE5PWRojNmDAD8Td/6hnYy/w7tZEyNuqdSZka3YdznVs1qSgnA/hm8wqQF
VbWskP5eg90h6LK/wMp4LppsH/GROSrmN07PLIg7YVYBWdnT6CMNBvMrcI9O0khV
E2MpKuktLErN1uDlEv0WeENWiO0lkt6kA6N5J4P6VbTnSoCyR68EryxIakLCDeRk
o2TOfGaw8QuhlkoT3S+oVKzgW/evbVhRLwTfJF1kXzcMrpPk7QEckLpa+Cp0EIKz
4aQdclX3CupOU/mOg5TN
=M4B1
-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/e1xbtux-0001ki...@franck.debian.org



Accepted media-player-info 22-2 (source all) into unstable

2014-10-07 Thread Martin Pitt
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 14:14:11 +0200
Source: media-player-info
Binary: media-player-info
Architecture: source all
Version: 22-2
Distribution: unstable
Urgency: medium
Maintainer: Martin Pitt mp...@debian.org
Changed-By: Martin Pitt mp...@debian.org
Description:
 media-player-info - Media player identification files
Closes: 764343
Changes:
 media-player-info (22-2) unstable; urgency=medium
 .
   * Fix Maintainer: field again, crept in from basing the previous upload on
 the latest Ubuntu version. (Closes: #764343)
Checksums-Sha1:
 2b9510ca90676771fefed601e35acdf77de72516 1806 media-player-info_22-2.dsc
 5b96992207fcd8f621f74912153baf2be8fb8673 3976 
media-player-info_22-2.debian.tar.xz
 e06a3462377fc62dcdf30a2661553c0cf63438c1 33264 media-player-info_22-2_all.deb
Checksums-Sha256:
 ddaafdd73b31a26129bcae3012cd9a9eac619a61e8990efc5f0742f333168450 1806 
media-player-info_22-2.dsc
 4bc1b5a2cb7dced9187c0d207e490c5ecea6da8720e5daf64bd275bab100112a 3976 
media-player-info_22-2.debian.tar.xz
 49ebcce5a1c4c450efad3b71e1581665ffaecf5ed0c334dfdb87d05e64d94024 33264 
media-player-info_22-2_all.deb
Files:
 dfee59ccf78dce3c8e31523020b71a7a 1806 admin optional media-player-info_22-2.dsc
 bc2cc5708bca66f0b68f161308f3de28 3976 admin optional 
media-player-info_22-2.debian.tar.xz
 5c5a6bd11fcaa637b7130234bd9511ab 33264 admin optional 
media-player-info_22-2_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM9lpAAoJENFO8V2v4RNH76AP/RX39L7A9vpg5oz/JdpB3+Zz
wS7c3iY1YXnAszgN+nm+uzfUbjjXo0bqFgu1p2CxbD71hUJCyRiA2r0SZqLBoD0n
+LHZGZUQ7zX8o40VRgSAp/Q2/6etEUL3s5bD9TGnpwlWlatf2cFr2Fmcl74mIil9
zSTu1qMNmvRepZui9OusWaIeQoJoNYKhrqQHoufLdZB2kHzcaOii+JWETy5nmbVL
EHIVLxaO2We0L7mPKvElADxJcrAZDh/LfCQX3wLF5gSS2Ogk9mNXAIY1e+c65beX
YqiTGMx7iKcLlvGXC5XNAi/9axnpYmPf7dLp2K9Lz2h0+kMUjsJHu+0nuxpO7ALG
egT+YykQmiMNNCU6s+RWljoaoreJeSRV1Ls0tz+SIQzkgwBW/Ma3sRcUCaZaSUpt
Pre+CH/0u4G+QCgf2WjSYDuf8TAiyg9T5n1CBdSAOKGvtKwBOnIdr5qIAa9szMAu
ZT/mLKwFbMY0J7bx/YAFSeMRKkGa3YqNCXlX41dwWZ8gsUL75VbYAnhnPrUZq/XE
bS2EnwTUO3ilpL78IN6igm+dOVz4vzGdytSRVQWv7X+TEWpsBqbdnG2KxQ+g5A4O
5oAryuZ8VD0FCFPggN/9k4XIyFWazNQDNL0axAUBvX2Sr5UYkjS8PoSWtL8nAwxF
Z9ve9wd17ThvXcLWQ7RD
=qa9A
-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/e1xbtje-0005he...@franck.debian.org



Accepted neutron 2014.1.3-3 (source all) into unstable

2014-10-07 Thread Thomas Goirand
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 19:06:52 +0800
Source: neutron
Binary: python-neutron neutron-server neutron-common neutron-plugin-nec-agent 
neutron-l3-agent neutron-dhcp-agent neutron-metadata-agent 
neutron-metering-agent neutron-vpn-agent neutron-lbaas-agent 
neutron-plugin-openvswitch-agent neutron-plugin-linuxbridge-agent 
python-quantum quantum-server quantum-common quantum-plugin-cisco 
quantum-plugin-nec quantum-plugin-nec-agent quantum-plugin-bigswitch 
quantum-plugin-hyperv quantum-plugin-brocade quantum-plugin-plumgrid 
quantum-plugin-metaplugin quantum-plugin-nicira quantum-l3-agent 
quantum-dhcp-agent quantum-metadata-agent quantum-lbaas-agent 
quantum-plugin-openvswitch quantum-plugin-openvswitch-agent 
quantum-plugin-linuxbridge quantum-plugin-linuxbridge-agent
Architecture: source all
Version: 2014.1.3-3
Distribution: unstable
Urgency: medium
Maintainer: PKG OpenStack openstack-de...@lists.alioth.debian.org
Changed-By: Thomas Goirand z...@debian.org
Description:
 neutron-common - OpenStack virtual network service - common files
 neutron-dhcp-agent - OpenStack virtual network service - DHCP agent
 neutron-l3-agent - OpenStack virtual network service - l3 agent
 neutron-lbaas-agent - OpenStack virtual network service - LBaaS agent
 neutron-metadata-agent - OpenStack virtual network service - metadata agent
 neutron-metering-agent - OpenStack virtual network service - metering agent
 neutron-plugin-linuxbridge-agent - OpenStack virtual network service - Linux 
bridge agent
 neutron-plugin-nec-agent - OpenStack virtual network service - NEC agent
 neutron-plugin-openvswitch-agent - OpenStack virtual network service - Open 
vSwitch agent
 neutron-server - OpenStack virtual network service - server
 neutron-vpn-agent - OpenStack virtual network service - VPN agent
 python-neutron - OpenStack virtual network service - Python library
 python-quantum - transitional dummy package for switching to python-neutron
 quantum-common - transitional dummy package for switching to neutron-common
 quantum-dhcp-agent - transitional dummy package for upgrading 
quantum-dhcp-agent
 quantum-l3-agent - transitional dummy package for upgrading quantum-l3-agent
 quantum-lbaas-agent - transitional dummy package for upgrading 
quantum-lbaas-agent
 quantum-metadata-agent - transitional dummy package for upgrading 
quantum-metadata-agent
 quantum-plugin-bigswitch - transitional dummy package for upgrading 
quantum-plugin-bigswitch
 quantum-plugin-brocade - transitional dummy package for upgrading 
quantum-plugin-brocade
 quantum-plugin-cisco - transitional dummy package for upgrading 
quantum-plugin-cisco
 quantum-plugin-hyperv - transitional dummy package for upgrading 
quantum-plugin-hyperv
 quantum-plugin-linuxbridge - transitional dummy package for upgrading 
quantum-plugin-linuxbrid
 quantum-plugin-linuxbridge-agent - transitional dummy package for upgrading 
quantum-plugin-linuxbrid
 quantum-plugin-metaplugin - transitional dummy package for upgrading 
quantum-plugin-metaplugi
 quantum-plugin-nec - transitional dummy package for upgrading 
quantum-plugin-nec
 quantum-plugin-nec-agent - transitional dummy package for upgrading 
quantum-plugin-nec-agent
 quantum-plugin-nicira - transitional dummy package for upgrading 
quantum-plugin-nicira
 quantum-plugin-openvswitch - transitional dummy package for upgrading 
quantum-plugin-openvswit
 quantum-plugin-openvswitch-agent - transitional dummy package for upgrading 
quantum-plugin-openvswit
 quantum-plugin-plumgrid - transitional dummy package for upgrading 
quantum-plugin-plumgrid
 quantum-server - transitional dummy package for switching to neutron-server
Changes:
 neutron (2014.1.3-3) unstable; urgency=medium
 .
   * Re-added .upstart.in file for neutron-server and OVS agent.
Checksums-Sha1:
 df4e7492c2c9aad2c880bced15d2fda2c88ddcf1 5549 neutron_2014.1.3-3.dsc
 2c70d44d824f883e49cd6c221fbfa9d75c8b7595 41296 neutron_2014.1.3-3.debian.tar.xz
 4fcfd4618a7e806615ba073bbd09aec4f320e331 1133912 
python-neutron_2014.1.3-3_all.deb
 10ad8b697af609168e522fdcae8961b618948946 22666 
neutron-server_2014.1.3-3_all.deb
 5b14fad0f08e1fb3ea16a61727fe75f5eb78ef21 55480 
neutron-common_2014.1.3-3_all.deb
 0078f38852adba6878e59df7de2a8ce67af462f6 5900 
neutron-plugin-nec-agent_2014.1.3-3_all.deb
 f9b882a2838ca2d8b8f7554843a7eccbbeab076d 9444 
neutron-l3-agent_2014.1.3-3_all.deb
 0764e88cd82185cd1f494d3210b089ef4383f687 17622 
neutron-dhcp-agent_2014.1.3-3_all.deb
 4c11fb740db82cb37b9ff82c00d9e3f14a72238f 20348 
neutron-metadata-agent_2014.1.3-3_all.deb
 22a9f754ab7ff365cd3b2c913356a690c6d049b1 8236 
neutron-metering-agent_2014.1.3-3_all.deb
 7ba5622fdda51f3b1de08fa18ddcf4ecd6842e10 8312 
neutron-vpn-agent_2014.1.3-3_all.deb
 a3b44bf3ea8b61f7d30c87919129060b5567c179 8776 
neutron-lbaas-agent_2014.1.3-3_all.deb
 ca426378a2113ef9b65a3c6c72acdbd61fc1df80 8542 
neutron-plugin-openvswitch-agent_2014.1.3-3_all.deb
 

Accepted psychopy 1.79.00+git16-g30c9343.dfsg-1.1 (source all) into unstable

2014-10-07 Thread Olly Betts
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 10:59:58 +
Source: psychopy
Binary: psychopy
Architecture: source all
Version: 1.79.00+git16-g30c9343.dfsg-1.1
Distribution: unstable
Urgency: medium
Maintainer: NeuroDebian Team t...@neuro.debian.net
Changed-By: Olly Betts o...@survex.com
Description:
 psychopy   - environment for creating psychology stimuli in Python
Closes: 718154 759090
Changes:
 psychopy (1.79.00+git16-g30c9343.dfsg-1.1) unstable; urgency=medium
 .
   * Non-maintainer upload.
   * Update for wxPython 3.0 (Closes: #759090):
 - New patch: wxpython3.0.patch
   * Create temporary directory and point $HOME to it when running tests during
 package build. (Closes: #718154)
   * Tests fail with python-wxgtk3.0, but the exact same failures are seen with
 python-wxgtk2.8, so ignore failing tests so as not to block the wxpython3.0
 transition.
Checksums-Sha1:
 55decf11e9ba2c388e5ac556ff56cf2c9a9ccd10 2392 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1.dsc
 7e8012e6cc9d0be4610b89e540c505d3569800ed 15684 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1.debian.tar.xz
 9c4645fb64c78573426f86cf660aca4b5fe0d60e 5474198 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1_all.deb
Checksums-Sha256:
 787bb0b8a2e9bead927ad3ac261dd672c041362491e557c7ff340db07a8ee25f 2392 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1.dsc
 6dc4f27eab67291426c5cd2435929701fe6c965d2e6a7b64675d05f2ba93a328 15684 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1.debian.tar.xz
 71aef9f3e9f4207f88d488a07fdf95dfa46522b710b336e18c7cbf15a3306cd3 5474198 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1_all.deb
Files:
 396afa9111b21d4928c2ad18bd881438 2392 science optional 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1.dsc
 96b47c7a9b5e91d6e25c8d52ef49f139 15684 science optional 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1.debian.tar.xz
 25211af1302c82ee0eafca0fa4384202 5474198 science optional 
psychopy_1.79.00+git16-g30c9343.dfsg-1.1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM9YEAAoJEBgUewc7rSsHGtcP/j8Gpgg5e+ijWJFS+yk7Wh/d
Wz6xqIYksgRu2TQwY62Y86Xu9L/hWa/KBqQn4cN86gr0ghNCGO5vvIwvxd6I/F/p
Dstkpk7udhoJM64Ax+j37NDH5GZbywdOdDyh6aXz6mRJ+vqHmRrLQjqwNR3S7jzq
9ExcGQzL8VAaJXU1MTZeK2KKcLiMhJtMoul/HqmDVTSKnhZro/TjmcJFjWkzRQdL
ZEBtTCDPjjZSw0wr4FnIn891Uqi0Hk/1Zh5f3I3q+peEhg+iM8blo5hXnwxmx9xI
dSsNfCbUeT4skojhdJrVylXM8KNcOHUMZaILz6d9CWDa3m0evcPkhXpaIalv3gZQ
WK+CTKDhrGfVcivZC2HVC2RhFwF6KRy3lhT5kkoBBAP6i+mPFl1FErGgqBPu19Q2
qlxWEMLgLBi+HAb1O+8MJlnUjmEKb9aVKp8E9nUvinlsKivHG33P0qNJfNNpO4p1
ipmKhnEhkLJtOvL0ffKKp1yDuCeP0s6nbB1KkCV1EypC+ISD2dpyXuQDI83olhon
KxCfkto8345DbSscST7/aX2zoKjbErhy0MCvL8uT27hZ675+pym6GLwQexJnYle/
IpK5ltz6YLAd6cGLONyntsPtlib30zJGU5t3dTB+xMKfNvWPX90NCV0iwrHzCuS7
5xahteck/mNkTOtk+qS4
=kvvS
-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/e1xbtks-0006qm...@franck.debian.org



Accepted debian-edu-artwork 0.49-1 (source all) into unstable

2014-10-07 Thread Holger Levsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 13:56:38 +0200
Source: debian-edu-artwork
Binary: debian-edu-artwork debian-edu-artwork-lines debian-edu-artwork-joy 
debian-edu-artwork-spacefun
Architecture: source all
Version: 0.49-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Edu developers debian-...@lists.debian.org
Changed-By: Holger Levsen hol...@debian.org
Description:
 debian-edu-artwork - Debian Edu themes and artwork
 debian-edu-artwork-joy - Debian Edu Joy (wheezy) themes and artwork
 debian-edu-artwork-lines - Debian Edu Lines (jessie) themes and artwork
 debian-edu-artwork-spacefun - Debian Edu Spacefun (squeeze) themes and artwork
Changes:
 debian-edu-artwork (0.49-1) unstable; urgency=medium
 .
   [ Wolfgang Schweer ]
   * Add art-(joy|lines)/splash/debian-edu-(joy|lines)-splash-live.png to
 those Makefile.am's clean targets.
   * Replace leftover ldm 'joy' background png with a lines theme one.
   * Add svg files for different login screen resolutions to the
 playground/jessie directory.
   * Fix typo in each art-lines/ksplash-bg*/Makefile.am to actually create
 the subdir. (This fix is needed for 'joy' as well, but check of
 images is required first.)
   * Update Standards-Version to 3.9.6.
   * Remove obsolete directory art-lines/ksplash-bg_1600x1200 and adjust
 configure.ac and art.lines/Makefile.am accordingly.
   * Generate all needed background png files from svg files out of
 playground/jessie: add links to these svg files, add build rules and
 clean targets to Makefile.am in all concerned directories.
   * Update screenshot and preview images in art-lines' kde, kdm-theme,
 ksplash-theme and ldm subdirs, build them from svg files if possible.
   * art-joy/kde: get rid of unused png files, adjust the dir's
 Makefile.am and debian/update-debian-edu-artwork-joy to reflect the
 change.
   * art-spacefun/kde: get rid of unused png files, adjust the dir's
 Makefile.am and debian/update-debian-edu-artwork-spacefun to reflect
 the change.
   * media-cover: add CD/DVD label and cover images (svg and png) based
 upon the lines theme. Remove old cover psd files to reduce size,
 update README accordingly. Add info files for new cover/label files.
   * Fix debian/debian-edu-artwork.install to make red swirl hiding work.
 .
   [ Mike Gabriel ]
   * Fix faulty paths in update-debian-edu-artwork-lines (for symlinking
 and unlinking gnome-shell.css).
   * Prepare gnome-shell artwork in bin:package debian-edu-artwork-lines
 to be co-installable with the other Debian Edu artworks presented
 by this src:package.
   * Provide spacefun theme and joy theme for Debian jessie's GDM3 login
 screen.
   * Move dpkg-statoverride code into package scripts of bin:package
 debian-edu-artwork (was: bin:package debian-edu-artwork-lines).
   * Fix background-image scaling in GDM3 login screen.
   * Hide red swirl logo in GDM3. The Debian Edu background images
 already contain a logo. Remove obsolete code that worked with GDM3 in
 Debian wheezy, but does not work with GDM3 in Debian jessie.
   * Use inkscape for doing the initial SVG - PNG conversion. The
 result of ImageMagick based SVG2PNG conversion is rather poor
 on the Debian Edu Artwork background images.
   * Fix scaling of GRUB splash PNGs for joy and lines theme.
   * debian/control:
 + Add Homepage: field. Pointing to a wiki page, we need to put
   some work in.
 + Add B-D: inkscape.
   * debian/copyright:
 + Convert to DEP-5 machine-readable format.
   * debian/rules:
 + Provide get-orig-source rule that builds an orig tarball from the
   package folder itself (excluding the debian/ directory).
 + Fix orig tarball creation, don't redundantly tar-up subfolders.
   Only include symlinks and files into the tarball. Let the tar tool
   auto-create the relevant directories.
 .
   [ Holger Levsen ]
   * Switch to debian/source/format 3.0 (quilt), enable xz compression.
   * debian/rules:
 - rename get-orig-source target to new-upstream-version to match
   README.source.
 - set DEB_DH_BUILDDEB_ARGS to use .xz compression for binary packages too.
   * Update README.source to refer to git instead of svn.
Checksums-Sha1:
 0d9047dd7635f57f388ff7235126c3cc3dc0331c 2482 debian-edu-artwork_0.49-1.dsc
 a37d10a70065220c15a65c626c5afb9fb6c575ee 71408540 
debian-edu-artwork_0.49.orig.tar.xz
 c669e38a9df4b4458c8b2b536e73ba56e4d7a059 18292 
debian-edu-artwork_0.49-1.debian.tar.xz
 3771aaa23cd2bd461741da0ea9c25e38cd3a59a9 17842 
debian-edu-artwork_0.49-1_all.deb
 6a932b100c053f3057d71d533bd3f0104e5906d1 3177360 
debian-edu-artwork-lines_0.49-1_all.deb
 4e685ad57127ce643bb52837da38fd66822c89de 7438270 
debian-edu-artwork-joy_0.49-1_all.deb
 a1ace43bc009e82c231dae89875f9808e2fa93e1 37907748 
debian-edu-artwork-spacefun_0.49-1_all.deb
Checksums-Sha256:
 

Accepted gluegen2 2.2.0-1 (source all amd64) into unstable

2014-10-07 Thread Emmanuel Bourg
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 14:15:46 +0200
Source: gluegen2
Binary: libgluegen2-rt-java libgluegen2-build-java libgluegen2-jni 
libgluegen2-doc
Architecture: source all amd64
Version: 2.2.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Java Maintainers 
pkg-java-maintain...@lists.alioth.debian.org
Changed-By: Emmanuel Bourg ebo...@apache.org
Description:
 libgluegen2-build-java - Tool to automatically generate the Java and JNI code.
 libgluegen2-doc - Tool to automatically generate the Java and JNI code.
 libgluegen2-jni - Tool to automatically generate the Java and JNI code.
 libgluegen2-rt-java - Tool to automatically generate the Java and JNI code.
Closes: 750548 754971
Changes:
 gluegen2 (2.2.0-1) unstable; urgency=medium
 .
   [ Sylvestre Ledru ]
   * New upstream release
 - Include the fix for openjdk 8 (Closes: #754971)
 .
   [ Anibal Monsalve Salazar ]
   * Add mips support.
 Add add-mips-support.patch.
 Patch by Dejan Latinovic dejan.latino...@imgtec.com.
 Thanks to Anibal Monsalve Salazar.  (Closes: #750548)
 .
   [ Emmanuel Bourg ]
   * Disabled the tests due to missing dependencies
   * Standards-Version updated to 3.9.6 (no changes)
Checksums-Sha1:
 05e1088e917b58aec427c8db95d1cb722b9514c3 2218 gluegen2_2.2.0-1.dsc
 796267fc53cb85936ca19739a2f6ec034f3e5600 440572 gluegen2_2.2.0.orig.tar.bz2
 4a352b4ad7e6119f6bda1ec8df85c62466c842a9 16220 gluegen2_2.2.0-1.debian.tar.xz
 4242c90058d9b1594588fbd87d3b770499fe51f9 266132 
libgluegen2-rt-java_2.2.0-1_all.deb
 81d03c2c384de329d2840d20314f8e9e672a2ee8 1000676 
libgluegen2-build-java_2.2.0-1_all.deb
 8413b4a2eba8433da6e6da9ca436af731298d3c3 300802 libgluegen2-doc_2.2.0-1_all.deb
 b11cebcd003be6d21d7c520f1c8f72c71a86e834 8406 libgluegen2-jni_2.2.0-1_amd64.deb
Checksums-Sha256:
 365a12d3a4f8367d431a6daade738cea40cc7133724defc9f4533f796b5e2dfe 2218 
gluegen2_2.2.0-1.dsc
 9f4ca1647692729067092a087358802e5bbae71d19ce9a6e8547d61a6dd44d80 440572 
gluegen2_2.2.0.orig.tar.bz2
 df099574c888b090f42240e98c0bd1114c5862e70f1802ba18c58e4d35aa698d 16220 
gluegen2_2.2.0-1.debian.tar.xz
 f0a5bf3e4295e27f9204aac2baaa911e45866c661a7e012e22e471240fb1f5e3 266132 
libgluegen2-rt-java_2.2.0-1_all.deb
 8c249ff3e10295632f6fd6943e56c3f7b36a05610d1aa331fe28b6646e324114 1000676 
libgluegen2-build-java_2.2.0-1_all.deb
 8c1d8eb9391c0a47c94307511cda7e5410480f18a37af3a163b2105e7f5067eb 300802 
libgluegen2-doc_2.2.0-1_all.deb
 901f695ff96990335043638987488cc32e70747434891ecf6655c3f0d58fd59a 8406 
libgluegen2-jni_2.2.0-1_amd64.deb
Files:
 193503c43271e5a41bf1a5c9d68d6adf 2218 java optional gluegen2_2.2.0-1.dsc
 48812db68749692ff60b79d5f3c4804d 440572 java optional 
gluegen2_2.2.0.orig.tar.bz2
 7dc767bcbad6a7570ce2601bdb8c7fdf 16220 java optional 
gluegen2_2.2.0-1.debian.tar.xz
 c74b735a298e65738aed8975dac8d8ab 266132 java optional 
libgluegen2-rt-java_2.2.0-1_all.deb
 7e721c2d06984365edf716aa0e07604f 1000676 java optional 
libgluegen2-build-java_2.2.0-1_all.deb
 f0722a150b46c936622a93fe74f0df02 300802 doc optional 
libgluegen2-doc_2.2.0-1_all.deb
 902526c0b918e2ce4d95aba6ae73f9f6 8406 java optional 
libgluegen2-jni_2.2.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM9o3AAoJEPUTxBnkudCs+Y0QAMWCXjPjm3NrvvILVRHHb6cI
xHPUUFcpH4S1oP8al6uAcN5E+d5sOOEPnzVKBrRMZVSrKQAVNh/Dd5597bsiQO3I
cn+iunkHRJeTgJ20+5LtwQ59u/4it84gxpDKOZ7owe118xz0iuGvaRxY3BHVkHv4
iMmTKqPDvM9wh2nP6vjIN1kGtEn/wMLW116PIm44JM+NEtwDVsRF7Wuz7x1TYmyY
cL7trf79DoBEwMntef3GZxyrsUZavVkoJwrqbGsnqW1kPCWOkrnLvY5DbNzpKq5m
veWvE8smhiJPM6bbx5aTE5oou0MdyNDGi8rNKn5B25DUsawVbdE4enZxoQpCXVxj
LCvwjIv4DdG/rEAYJXwI3BkwBgMXwfzEsMhQKfW9fLcDhXPKiuTw96FdAvzVM7E3
tMURS9JK/OWh5n4Bdx6O9z0Z7hnYVhHq9kMKQgjg55iG8+JWADASWZJTWvQrXQ8h
F5WzzJ/B83Itc4cudGYswiUqcExtBGuQrw8E/GBG8nMow4dABCqHqU85o2CFCvsB
wlR4Go7ooZLhiqXlLDBLuqRrv9wrqI9WR9DmriKTowKMN+YGsN7OGEuhiRr7p4Pr
DfbgNkW5t2w/gUGHs2J+x+f7GIxyQIqO8sojoUD1KaIkg6yvb+33fNtEq++M78Fn
+gy2g0k9FHPhzFD04AOZ
=PXRE
-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/e1xbtym-0002s2...@franck.debian.org



Accepted debian-edu-install 1.807 (source all) into unstable

2014-10-07 Thread Petter Reinholdtsen
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 14:44:00 +0200
Source: debian-edu-install
Binary: debian-edu-install debian-edu-profile-udeb debian-edu-install-udeb
Architecture: source all
Version: 1.807
Distribution: unstable
Urgency: high
Maintainer: Debian Edu Developers debian-...@lists.debian.org
Changed-By: Petter Reinholdtsen p...@debian.org
Description: 
 debian-edu-install - Set d-i values to install Debian Edu without questions
 debian-edu-install-udeb - Execute Debian Edu debian-installer profile (udeb)
 debian-edu-profile-udeb - Choose Debian Edu profile (udeb)
Changes: 
 debian-edu-install (1.807) unstable; urgency=high
 .
   * Make sure d-i set up the same APT sources we would get after
 running cfengine, to allow our cfengine rules to be removed.  Use
 http.debian.net as the default mirror.
   * Save a process by using exec in eatmydata dpkg wrapper.
   * Fix typo in log message from apt-setup code.
   * Remove unused code to add debian and skolelinux APT source in our
 apt-setup script.
Checksums-Sha1: 
 e73baae656f4037dbdf98bc7f1521c121c126412 1479 debian-edu-install_1.807.dsc
 28581840b21b2370da3a21267d789c52d58c437c 170609 debian-edu-install_1.807.tar.gz
 f7ac56907873496afd26a0b80a0884aa1954ddcb 58130 debian-edu-install_1.807_all.deb
 1cc29c5cd2f792bbead3d5662da83f8cf75ed413 2696 
debian-edu-install-udeb_1.807_all.udeb
 9c3514daf6b3575cfc4ab493fb797ad34f45787f 64238 
debian-edu-profile-udeb_1.807_all.udeb
Checksums-Sha256: 
 66cea949847d3abda988d292e023e095d9411a601ce78bc2ae92467a1f175231 1479 
debian-edu-install_1.807.dsc
 e945568124c1b666f06aa401a764fb5232e7675fb7495e0fde5d1f5511a430c9 170609 
debian-edu-install_1.807.tar.gz
 6d2f4441cd15431d44d9633035104072ec2b82ff2534e0735c6cc691b33d9725 58130 
debian-edu-install_1.807_all.deb
 be9aff0932d6b5e9335cfe91659757f0901ecbb123db12490192a8b0c3b8a7bf 2696 
debian-edu-install-udeb_1.807_all.udeb
 945d2d4b76c7d40238f256c0702d6a5ac25c18c840819b3b2cc0288937ab0395 64238 
debian-edu-profile-udeb_1.807_all.udeb
Files: 
 6a422c1c677e67e452fb68bc4fd0a483 1479 misc optional 
debian-edu-install_1.807.dsc
 9a77447773f3d16c5e7fba144935e590 170609 misc optional 
debian-edu-install_1.807.tar.gz
 e22b325e00a25bd7b422d81d8f2e1a0c 58130 misc extra 
debian-edu-install_1.807_all.deb
 d02871082288108e8390bf5d14e6d556 2696 debian-installer optional 
debian-edu-install-udeb_1.807_all.udeb
 61c4a230fa8395137217a64dbaf1b211 64238 debian-installer optional 
debian-edu-profile-udeb_1.807_all.udeb
Package-Type: udeb

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

iD8DBQFUM+Ax20zMSyow1ykRAuvWAKC6WTgatk1CXWuot2DtlM0XFo7k7QCfSjYq
uJLLjDbRd1bRkJeJq6YMH7c=
=oIh7
-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/e1xbuc4-0005o0...@franck.debian.org



Accepted openjpeg2 2.1.0-2 (source amd64 all) into unstable

2014-10-07 Thread Mathieu Malaterre
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 13:14:43 +0200
Source: openjpeg2
Binary: libopenjp2-7-dev libopenjp2-7 libopenjpip7 libopenjp3d7 
libopenjp2-7-dbg libopenjpip-dec-server libopenjpip-viewer libopenjpip-server 
libopenjp3d-tools libopenjp2-tools
Architecture: source amd64 all
Version: 2.1.0-2
Distribution: unstable
Urgency: low
Maintainer: Debian PhotoTools Maintainers 
pkg-phototools-de...@lists.alioth.debian.org
Changed-By: Mathieu Malaterre ma...@debian.org
Description:
 libopenjp2-7 - JPEG 2000 image compression/decompression library
 libopenjp2-7-dbg - debug symbols for libopenjp2-7, a JPEG 2000 image library
 libopenjp2-7-dev - development files for OpenJPEG, a JPEG 2000 image library
 libopenjp2-tools - command-line tools using the JPEG 2000 library
 libopenjp3d-tools - command-line tools using the JPEG 2000 - 3D library
 libopenjp3d7 - JP3D (JPEG 2000 / Part 10) image compression/decompression 
librar
 libopenjpip-dec-server - tool to allow caching of JPEG 2000 files using JPIP 
protocol
 libopenjpip-server - JPIP server for JPEG 2000 files
 libopenjpip-viewer - JPEG 2000 java based viewer for advanced remote JPIP 
access
 libopenjpip7 - JPEG 2000 Interactive Protocol
Closes: 762251
Changes:
 openjpeg2 (2.1.0-2) unstable; urgency=low
 .
   * Install *.pc files. Closes: #762251
   * Remove cmake-fatal-error export stuff
   * Fix warnings in d/copyright
   * Bump Std-Vers to 3.9.6, no changes needed
   * Fix include path in export file to handle multi-arch install
 + debian/patches/multiarch_path.patch
Checksums-Sha1:
 e172e4d8334b62e5d2e0596acd332d3d4428bc83 2738 openjpeg2_2.1.0-2.dsc
 0d9d862054eb7c238c4bbd18bcbc6cd68e880315 16084 openjpeg2_2.1.0-2.debian.tar.xz
 b67d38061855f108b100ad353be10ea6d7721003 38102 
libopenjp2-7-dev_2.1.0-2_amd64.deb
 3f618cd7361e4130f4e1d12fb9ddee51e5d08d8a 115954 libopenjp2-7_2.1.0-2_amd64.deb
 242b721cf54bd4b1548e96edf3954531d8ad9eb7 59744 libopenjpip7_2.1.0-2_amd64.deb
 18b91b54d2eea2303ec5039b6ec074d4b671be26 84490 libopenjp3d7_2.1.0-2_amd64.deb
 1e241097d786392b05a37c3a303910287ca972e1 915148 
libopenjp2-7-dbg_2.1.0-2_amd64.deb
 c5e13325a75d767c10a48c728816da04079c91ef 27936 
libopenjpip-dec-server_2.1.0-2_amd64.deb
 cdd85e36d004431be36ce64538dec08ef1845f94 44766 
libopenjpip-viewer_2.1.0-2_all.deb
 1b03d4e19d6305d8eb7ae953317a1e5cc111e012 48778 
libopenjpip-server_2.1.0-2_amd64.deb
 0514e77fb8e919a47604a71ff9455aec22d5e7f3 40630 
libopenjp3d-tools_2.1.0-2_amd64.deb
 436b460c2f9c4c7bee4145ae6edd26c99291605f 77946 
libopenjp2-tools_2.1.0-2_amd64.deb
Checksums-Sha256:
 72ae7eaf5cb2bb4ba5f195d4ff9698cf0335b8b297ef498ac590e6eb836fa975 2738 
openjpeg2_2.1.0-2.dsc
 2d6e154b39093995a8725bad1d29ae451505fd903da760a9e2e20593805d3c4e 16084 
openjpeg2_2.1.0-2.debian.tar.xz
 6a5ef6a1fe3946366b783efca1465ceb812c43d3e9117f02c121f8f27d354bd2 38102 
libopenjp2-7-dev_2.1.0-2_amd64.deb
 e9abe258e50c9b781dd5dcb6bf56327122ac89d0c53f1d01eb18e3ce997ceb05 115954 
libopenjp2-7_2.1.0-2_amd64.deb
 de57018c511cac84a0a7b86eef4ba82aa68e0cd187de120fc0de52c8307a74f1 59744 
libopenjpip7_2.1.0-2_amd64.deb
 d52072ccac5a7fadb0fdeb731704f246c42a2d7671f83bb10f3053422d33f71c 84490 
libopenjp3d7_2.1.0-2_amd64.deb
 2c492d63286e29bbd4b650b8a6b845a3264db43d259569c32eeea85cafcd4f77 915148 
libopenjp2-7-dbg_2.1.0-2_amd64.deb
 cdd50dac4a6db0cdf262ef6fa2c987931127ff71c791094f26084822e9c4038e 27936 
libopenjpip-dec-server_2.1.0-2_amd64.deb
 8adca933a86dbde1a4695e9fa28cbf214305a089785e773c51224d424602f092 44766 
libopenjpip-viewer_2.1.0-2_all.deb
 8dce3ba0769c893b4f3451cc29e21ae36b768d93498dea1f07f4065d00f80283 48778 
libopenjpip-server_2.1.0-2_amd64.deb
 ebc9da6f31cbfe5784aab00103ead8e9ff0d823242b88e9e849200fc194eb0cd 40630 
libopenjp3d-tools_2.1.0-2_amd64.deb
 3dff75cb5095a2742c8fd630d3f55382dc21837821d35c4465f138953da8e5bd 77946 
libopenjp2-tools_2.1.0-2_amd64.deb
Files:
 8df02d556059fbee03e59f451ff37751 2738 libs extra openjpeg2_2.1.0-2.dsc
 564b6a98304a4094bb3554dea7ec13cb 16084 libs extra 
openjpeg2_2.1.0-2.debian.tar.xz
 182c34827df8d6c09bfa70f2bb010dd9 38102 libdevel extra 
libopenjp2-7-dev_2.1.0-2_amd64.deb
 acb9cd47d5af6db9ec58620acb16dd2c 115954 libs extra 
libopenjp2-7_2.1.0-2_amd64.deb
 1b039dc1c8866a069e6a312227e76b82 59744 libs extra 
libopenjpip7_2.1.0-2_amd64.deb
 c618b26015d23bb714ab08b13f8ac624 84490 libs extra 
libopenjp3d7_2.1.0-2_amd64.deb
 d310ec0e67c18a338b8893cebc88c527 915148 debug extra 
libopenjp2-7-dbg_2.1.0-2_amd64.deb
 f1778e17cf61f5956357e9ff302c1c34 27936 graphics extra 
libopenjpip-dec-server_2.1.0-2_amd64.deb
 99a769b0e2b16f0def66c18b526a3afb 44766 graphics extra 
libopenjpip-viewer_2.1.0-2_all.deb
 579fd1b14e5af153d6af67c874eb621a 48778 graphics extra 
libopenjpip-server_2.1.0-2_amd64.deb
 f9ac12b044f0dce138fb9c30b637307f 40630 graphics extra 
libopenjp3d-tools_2.1.0-2_amd64.deb
 857e4c6bab30641e3a6de235860c598e 77946 graphics extra 
libopenjp2-tools_2.1.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 

Accepted libradsec 0.0.5-2 (source amd64) into unstable, unstable

2014-10-07 Thread Sam Hartman
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 07:27:24 -0400
Source: libradsec
Binary: libradsec-dev libradsec0
Architecture: source amd64
Version: 0.0.5-2
Distribution: unstable
Urgency: medium
Maintainer: Sam Hartman hartm...@debian.org
Changed-By: Sam Hartman hartm...@debian.org
Description:
 libradsec-dev - RADIUS library with RADSEc support
 libradsec0 - RADIUS library supporting RADSEC
Closes: 647742
Changes:
 libradsec (0.0.5-2) unstable; urgency=medium
 .
   * Include license for radsecproxy/radsecproxy.h, Thanks Thorsten Alteholz
 .
 libradsec (0.0.5-1) unstable; urgency=medium
 .
   * Update copyright file and review licenses of source code
   * Upload to Debian, Closes: #647742
   * Note that lintian miss-detected gpl+openssl, because only the
 packaging is GPL and the packaging includes no code.  In case I should
 forget to mark this in debian/copyright in the future if there are
 ever any patches, any code patches developed by Painless Security are
 intended to be licensed under the libradsec BSD license.
   * Multiarch
Checksums-Sha1:
 e9ae8ebbf930cacb0932b8f32be936d92001c231 1215 libradsec_0.0.5-2.dsc
 fc8a24ba09375f68399cf028800302a9382fc60d 435897 libradsec_0.0.5.orig.tar.gz
 35674d622455a2b311141652ecf55844a8145512 36132 libradsec_0.0.5-2.debian.tar.xz
 69f0a44b209d9be5aeffe1932bfd9004c872c44f 59978 libradsec-dev_0.0.5-2_amd64.deb
 3c68e751cd8d385f8c439327f146337e91ce6ff0 44856 libradsec0_0.0.5-2_amd64.deb
Checksums-Sha256:
 a25728bcfa5e55fff0aa498323899611ca23619c17bcf9101180a8429c34299e 1215 
libradsec_0.0.5-2.dsc
 12cc2f067078be738b705bb17109f5b6010d0dc1de4ff12f6669ffc603d89ced 435897 
libradsec_0.0.5.orig.tar.gz
 c0a920a8705c72e45af726cc37312c26e8d7f23135f51361a8bc3f76f301457f 36132 
libradsec_0.0.5-2.debian.tar.xz
 0a20b07c5352c1913a213c8e89846895b0627ca8e89986030d9f285cf78e50de 59978 
libradsec-dev_0.0.5-2_amd64.deb
 0874086e6693d61494989816cca968a79866286c419c242811204d2670f0061d 44856 
libradsec0_0.0.5-2_amd64.deb
Files:
 c3dad6b4406b31f5af61569ad62cdf0b 1215 libs extra libradsec_0.0.5-2.dsc
 bb02ee13b7037598044c8d80cad91c85 435897 libs extra libradsec_0.0.5.orig.tar.gz
 1a322ca74242309ca031c641f870fc9d 36132 libs extra 
libradsec_0.0.5-2.debian.tar.xz
 6e09c205ba83e0ded0b896ccd8140c75 59978 libdevel extra 
libradsec-dev_0.0.5-2_amd64.deb
 d47c71745b81243076279ce2a4ef58fa 44856 libs extra libradsec0_0.0.5-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQz0asACgkQ/I12czyGJg96lACgrkvcvI7kW/0IYKHNKXpTKbEN
QIoAnibrcpQQeId5QhgY+UM6+kMk7fMt
=Qjuc
-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/e1xbun5-0007at...@franck.debian.org



Accepted snap 2013-11-29-1 (source amd64) into unstable

2014-10-07 Thread Andreas Tille
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 13:31:52 +0200
Source: snap
Binary: snap
Architecture: source amd64
Version: 2013-11-29-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Med Packaging Team 
debian-med-packag...@lists.alioth.debian.org
Changed-By: Andreas Tille ti...@debian.org
Description:
 snap   - location of genes from DNA sequence with hidden markov model
Closes: 753849
Changes:
 snap (2013-11-29-1) unstable; urgency=medium
 .
   * New upstream version
 Closes: #753849
   * adapted watch file
   * moved debian/upstream to debian/upstrem/metadata
   * d/copyright: Exclude binary files without source (from OSX)
   * cme fix dpkg-control
   * add autopkgtest
Checksums-Sha1:
 49cbf0a0e5a52b5460001246da96ad2b3e9971df 1999 snap_2013-11-29-1.dsc
 d5d90cab0073a6a2c0d0241eea9beb0aa208e84e 688858 snap_2013-11-29.orig.tar.gz
 43dc3ff8aac09a376dbd24a8d02ee99fe6808d66 6512 snap_2013-11-29-1.debian.tar.xz
 90867a17a15d5facbe8ed0a836af109b8ce5ab39 372230 snap_2013-11-29-1_amd64.deb
Checksums-Sha256:
 a7e9ec52acc2f6e1f5a1ded9e8339b11c2c030b97be0c889407793b46b7b08b6 1999 
snap_2013-11-29-1.dsc
 0ebcd8bb45da54588a81f392baede387fd5ec2a5feb259f3db4b8b8f410abe9c 688858 
snap_2013-11-29.orig.tar.gz
 cb0feea1cbbb47c2fae5bd8e0cc4a1534affd36b294cdfd26a5756684280b7bf 6512 
snap_2013-11-29-1.debian.tar.xz
 d4177e71551586604b5623e889346cbac10527ea286e6edb60f16e8c47fa5e83 372230 
snap_2013-11-29-1_amd64.deb
Files:
 755ee214f975110ac7afea2f36a4ebb5 1999 science extra snap_2013-11-29-1.dsc
 d23788065b6dc9d66d619133dd55dae7 688858 science extra 
snap_2013-11-29.orig.tar.gz
 526233f79aabb68dc94485a890c5d902 6512 science extra 
snap_2013-11-29-1.debian.tar.xz
 f6a4ce88c505d320ab0cd5768960896c 372230 science extra 
snap_2013-11-29-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM+ImAAoJEFeKBJTRxkbROaMP/A8VaJONns6M5xM2W3aIOf2u
H0JZ9x8SyJBHj90UFmE/dTx0EciiA6stOhrG0PQXrvtfag+IFmrn9XkBOZFAYQRQ
AWs6gkCN1+Zij686ZHK8yIg7vd4b40kZwJIE7WpFPtRj0j/mpwPLrv8mkpZF9o2b
8Jc2I4U+yWcEGV+ytu3rRiXdhw1ZpOXUdF6OrWnZ9uP9sanTdSEHPK3Bmq+9bUfQ
xIUK/4a0qt/ue3sygo4xHn8sCHlEPY20LUpXUmf5ygXw2neSE++FPn06dSIzsNYP
dYXJF08YisMi5Ep/z5/HjL5KBF9LCq6chbAbJmTliHexCrX03aZMTieayRidQyic
AIXu9F3VDpl66cKhlcB5KxfiAnzun1BktQKQAFzTyOra80RisMeBeye5OhZoSj4G
N4WD1xHY6luE964LflTqysvQK+vMzKdBsHP/DhKU6ycnTJ1QrJQak7b1GKgVh1bA
By8t5xQA9t8AeNQKBKa/kqmAwWHE1t/5I/oo8wctFBorDhAQfR3ojabCEyEMSJ9g
iLl4JUmSIMdXQJubGFU9dCsOaNGfJOTn7oHvtKHva945Z44auQT6RQyi//EHqHsz
NU5mfcrpypENFSY99v8EQmeXiaKLYTP7QveKYiO93FHJs/sU63WRok9TxFXkgiY4
3IT3681YhLW+3m+z520b
=liMH
-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/e1xbuqo-0007rl...@franck.debian.org



Accepted saods9 7.3.1+dfsg-1 (source amd64 all) into unstable

2014-10-07 Thread Ole Streicher
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 14:47:07 +0200
Source: saods9
Binary: saods9 saods9-blt saods9-doc saods9-data
Architecture: source amd64 all
Version: 7.3.1+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:
 saods9 - Image display tool for astronomy
 saods9-blt - BLT subpackage for saods9
 saods9-data - Image display tool for astronomy (shared data)
 saods9-doc - Image display tool for astronomy (help files/documentation)
Changes:
 saods9 (7.3.1+dfsg-1) unstable; urgency=low
 .
   * New upstream version.
Checksums-Sha1:
 e6e8bf7d376361478b83153e16c9ec2095493c7e 2307 saods9_7.3.1+dfsg-1.dsc
 f39cb7fa83af34cac5aa9c38ee272e08cae170da 8682338 saods9_7.3.1+dfsg.orig.tar.gz
 dc48d850835f160ea700ff32d81ee9e236f1b532 24708 
saods9_7.3.1+dfsg-1.debian.tar.xz
 94b1ab7c850f82fd5a7a23bb44eb8a81279d9268 851138 saods9_7.3.1+dfsg-1_amd64.deb
 8b0a8052ade62314dc77f75de22fed47725946aa 164800 
saods9-blt_7.3.1+dfsg-1_amd64.deb
 7aff47bb802475174c30a256a3d88e2b179b3645 5242968 
saods9-doc_7.3.1+dfsg-1_all.deb
 37d4ef5160d9a80d265272b44ef374e9710a6d8a 323934 
saods9-data_7.3.1+dfsg-1_all.deb
Checksums-Sha256:
 b43e35331f530d4d3e4f3cdc1ab3c5707414ae1fceef6e25df5b123fc8203023 2307 
saods9_7.3.1+dfsg-1.dsc
 934ec1f49e783b1b21cda62e23149ce3a09b1ddfe7311864c066628e3c8ea558 8682338 
saods9_7.3.1+dfsg.orig.tar.gz
 46aa9bc83e84a9200b988ac3df2fd24bd17e7974a73aa04bff4b7c1872f35c85 24708 
saods9_7.3.1+dfsg-1.debian.tar.xz
 602874720db678750f4ae686b22d2a3d8ac9124cd5ae1c138c42b3f883c3659c 851138 
saods9_7.3.1+dfsg-1_amd64.deb
 beae0b7df459d8770210f661facc985a8668ee1bf1967aa430c8aef5daaf9436 164800 
saods9-blt_7.3.1+dfsg-1_amd64.deb
 9ab2b89942d1f5941450922e071ec608fffef45cbc664a9274c9f89901391038 5242968 
saods9-doc_7.3.1+dfsg-1_all.deb
 b14c14722fa4038aec458798bd256e46ad77b7757b104fb383bd535ec96fb319 323934 
saods9-data_7.3.1+dfsg-1_all.deb
Files:
 31faf719f14f50529452e9e135543f52 851138 science optional 
saods9_7.3.1+dfsg-1_amd64.deb
 620065a00e8cfc627eb1b966d02f7995 164800 science optional 
saods9-blt_7.3.1+dfsg-1_amd64.deb
 6773dcce744aa0a951bde13bd65d7f0b 5242968 doc optional 
saods9-doc_7.3.1+dfsg-1_all.deb
 bb21692b444d177719677f8adf1d5b15 323934 science optional 
saods9-data_7.3.1+dfsg-1_all.deb
 834968e1ca691c69d2805b9b517f7a58 2307 science optional saods9_7.3.1+dfsg-1.dsc
 90c80196199bcfbfbe4af39da0e0e1a1 8682338 science optional 
saods9_7.3.1+dfsg.orig.tar.gz
 259935d4b134019b6ea77bf1242ea456 24708 science optional 
saods9_7.3.1+dfsg-1.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM+MqAAoJEHEVr9B3ENz3jLoP/2V6ebRRRfWRAI9bH5DGZFF0
6eRVqLE3LSEMCMKcdRVa6LYhhFKdX4y+euCQ7HnAZN3Dsoz439YcgBIxiyYWGXZe
WdAXrUssS8bZeFcHd2cnZREiAEDz7EP3N5JGNWMrhl3iiDFJZ6lTAxgov2wGfp4+
XSW0T+3SeKugVwZNIZrsN++G9ebwz7GhFlyfMdQPeCG8h4kdVCJ2Ni6ZISsra/Ep
KI5wvNNFLRcnHCj6Dd++vgMRAQ5VnDnkg5oPNhbXr9Ucg1dHt9AhnJHAo/MXhmNo
pMU0ZI8ZpxC374U//s+bK5N56ZATpqS6SGB9iNt6P+jZ9GeVmAGi7UkINvuwQ+lO
vtsIOtcnSUFsWwrUBh1oNy5EmDGbbPb6uql1DE4LClnn17qrBpwrobFZZuNKARb8
sIzP93WotC24qHE1fBhnT5DnwxEHVG+O7BO/quNGlrXpwgnwiBW/BRpGtB6ykGnY
i3Md0fTDrUS+eAzdnl8RbRI7ORaKV8LIe2icKmQ9rh9loRhqgLJJmDpa2Nu8bjA8
ILeOi/4CBznVe8ciCLLL7hgXcY3vkBvWMuYMYMQfhT9tLUSoBQedyRQ+xOxsYaw9
Jg5BX3i/uId6FZ9FqXeRFr6CtvQBjmQE3gnHYJNYe5CCvDtsOeFypnr4066wzkj8
+Q9alDcOLfgTcBh2Iy98
=98wv
-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/e1xbuu4-0003ai...@franck.debian.org



Accepted qmapshack 0.5.0-1 (source amd64) into unstable

2014-10-07 Thread Jaromír Mikeš
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 12:47:09 +0200
Source: qmapshack
Binary: qmapshack
Architecture: source amd64
Version: 0.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Debian GIS Project pkg-grass-de...@lists.alioth.debian.org
Changed-By: Jaromír Mikeš mira.mi...@seznam.cz
Description:
 qmapshack  - GPS mapping (GeoTiff and vector) and GPSr management
Changes:
 qmapshack (0.5.0-1) unstable; urgency=low
 .
   * Imported Upstream version 0.5.0
   * Remove qt5-default from build deps.
   * Bump Standards.
   * Update copyright file.
   * Provide code for Exec key in desktop file.
Checksums-Sha1:
 581d0c3626ebd139326d7892b063874b20ddb2ce 2081 qmapshack_0.5.0-1.dsc
 4c06be3542b8d28227a887ae77e99defa0204df2 2922854 qmapshack_0.5.0.orig.tar.gz
 857660ef2956ecb110cb51117bc067eadc07e2f3 5496 qmapshack_0.5.0-1.debian.tar.xz
 909a94eb32210a34abf6625ee1a40854497b50f0 1355678 qmapshack_0.5.0-1_amd64.deb
Checksums-Sha256:
 3b338023a3c5d90087a67f7792082d6d75b2ac74cf0077cfd93674e2174c62ee 2081 
qmapshack_0.5.0-1.dsc
 cf280e91d6d372755ea7ae68b6e16c70af61c3dbe0997fd9abf3e5038373734e 2922854 
qmapshack_0.5.0.orig.tar.gz
 57984e76f98df56e3405faa6e759e7ff6e1c39559a5ba6bc7e8fead0a85b30d2 5496 
qmapshack_0.5.0-1.debian.tar.xz
 c839383718ccfa6e1d4175379f42b98dc32cde89a335aef1ea8cd6acf7c57378 1355678 
qmapshack_0.5.0-1_amd64.deb
Files:
 b3ef802a166ad5989154c289908e2163 2081 science optional qmapshack_0.5.0-1.dsc
 ccfcff34c0aa45e4a874d8c5eed9b6a4 2922854 science optional 
qmapshack_0.5.0.orig.tar.gz
 2f6a4de552bbca3bbb8709b12269e212 5496 science optional 
qmapshack_0.5.0-1.debian.tar.xz
 0952f82bbf59da2155f6aab35f3dc8c5 1355678 science optional 
qmapshack_0.5.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBAgAGBQJUM+3AAAoJEFsBlFXiuE+lWOQP/2dWtw5Gt6VdzEnRftvAeO2p
+BmGXA/gRL0QbTphWedm2F88wzWkaS2Nsr92Y0TJFK8Yd9fhJ/XErj/qu/xCAy+X
qV/080aLt/fadforxJBezYtrqIkTkzWUH3XORpX6cXu2DHXc8XJUu9SfvLPJOeHO
igwkxeoNoVVm3QaJnhMM9P2h+bSxfpEirFPEg6A9L89COndk7m1rpitHGpcE6iuY
M2rDZO/WZts0BCQf1SSyWZh9PBdf2RyzdvKpJfQ2IAnYTxhg6Va8rjLiyi34VT/X
ohwXVw9/FyJiZDUfJf25dokra58t/vZG+XvV71YNLnShbmFwF0Uzn9vtN/uE2Tx6
jCrx0VniEu01SQXg7qY38a1j86t12JVDae1mskh8dz/sxHDXEKVBTw8+XNo3yc3d
q+krfFLW4jnO7CEd1AqhfE6z/M+NbtkQyZC9+w0x4hjJR3eP3xnnQppHQ1fTwYD1
l6/pz4G5znQX4Wg8JS2+Jj6TmKFZzAwc+cMev/L8fmYRG3llLIWtUijpxcKlUx/v
y5oPIqCGbBkiUy2OmFc2sJp4qkwqRosd834senSivBihkOtIKuQ5Wt92Ax0x0BXS
whz9OLXcp6Z7Wl//3PWvC8LRmn3FR3GvlzsWvNywDlUw39EyBD3CFZTgBYASr0gT
tVNnQjCTTwacap/Hq5in
=Cu/F
-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/e1xbv8t-0007kl...@franck.debian.org



Accepted autocutsel 0.10.0-1 (source amd64) into unstable

2014-10-07 Thread Elmar S. Heeb
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 17:14:35 +0200
Source: autocutsel
Binary: autocutsel
Architecture: source amd64
Version: 0.10.0-1
Distribution: unstable
Urgency: medium
Maintainer: Elmar S. Heeb el...@heebs.ch
Changed-By: Elmar S. Heeb el...@heebs.ch
Description:
 autocutsel - Keep the X clipboard and the cutbuffer in sync
Changes:
 autocutsel (0.10.0-1) unstable; urgency=medium
 .
   * merged upstream version 0.10.0
 * set WM_NAME, _NET_WM_NAME, and _NET_WM_PID (Michael Stapelberg)
 * support for UTF-8 strings
 * minor fixes
   * dropped patch for WM_NAME, etc. (applied upstream)
   * new Standards-Version
Checksums-Sha1:
 a5de40748ce2292779d598c94483e6c122680af8 1911 autocutsel_0.10.0-1.dsc
 c79344e9723f90ad9cfc6ce8276ec55008aebc7c 20351 autocutsel_0.10.0.orig.tar.gz
 264c76f6c214ef6c1d1ca352a23990f0a7791ad9 3640 autocutsel_0.10.0-1.debian.tar.xz
 5eee3cc7c03789092815e62c7d8ee91244fe7bae 15514 autocutsel_0.10.0-1_amd64.deb
Checksums-Sha256:
 51c62cdfd4781228f88b00ce1be89983100abc2998ca300829042ecec25147f9 1911 
autocutsel_0.10.0-1.dsc
 9323e7896ae4ee797453d41e4c15e1b88517733ebe0a1c5e2510892b7bdf0927 20351 
autocutsel_0.10.0.orig.tar.gz
 cf4d34136b858248a0d6d7b566c369b192ba864149e75ca383abde2cce61f99c 3640 
autocutsel_0.10.0-1.debian.tar.xz
 89e4165b05dcbd4a25876ff86346e532c6570b682e17f066da0f74a7f2389eb2 15514 
autocutsel_0.10.0-1_amd64.deb
Files:
 906ee55cd2e3d1faf36e4067b908eb46 1911 x11 optional autocutsel_0.10.0-1.dsc
 b5a6cd6f2a6880bc4af4e60ba8271a75 20351 x11 optional 
autocutsel_0.10.0.orig.tar.gz
 25450400f8ed521872919d4569d58d7b 3640 x11 optional 
autocutsel_0.10.0-1.debian.tar.xz
 8ced502fc601d97b92e93eee8b2b8c1d 15514 x11 optional 
autocutsel_0.10.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUNATZAAoJEEdxIXHy7WL7JyEP/R60NmgJe47TA9B5aCsXVfV3
N/8dxxEVwOx5UhQP8vmTiov6jCUMBwexfmeAUJYLs3+SDLAfygnq6qY1vjOvB9ng
uNkx/n8h0Csbpa3xf9NMmpP4R0wipkA5uqVUSj2Pe9elXH9Ye/Bu/V0/Y9w/r9PL
ylW81bwOqZkM2uDjx3EnAZf7XZUoGvtLcgExz85mrDDGYuMQPfiKO3ibGM7UQ1Hs
nBGPjuZriGG5MfnXUuK6EhxQOpynkk92wPJaSJM354wvd2MYPkfvRXO/YeQOunkl
gEsaB7AFIfq5jcw2JmH7pSH398I06aWrEpXjYFb7okS6xuj02lwZybJ4xeoYGjTG
hCIuQPUg3l5nPVZnhWk4Vzk/MfXq8fDivmOnFKc0zaaArx8hRh83APb6jO283NzF
G93t9CeCF+3z1UqPPlKmvuuv5svtC+2CiwEO5d8DMe4f9Se4hgYFcrOdS2hGLWmh
tUr3RbJdM9mt6Q3Lw8uHgOkQe+WJbKujcZeHGovpxsoOUafyJ9IKM3M2BthXDnXU
xRik4YoD3IYHqM04TY8OKXD0tPl9sqfCXQKf+PD61kLpiTcC4GfgTdUqw06ak5XN
vSbxikLrhBkpbk7dfnvAdxCw3jt/sB1R84/EiZhgZUfRk5hEpcYSlFab+/tRad4S
9Hj0BF1UCrrFn03yJhoj
=U+Vo
-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/e1xbx0f-0007ve...@franck.debian.org



Accepted bash 4.3-11 (source all amd64) into unstable

2014-10-07 Thread Matthias Klose
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Tue, 07 Oct 2014 16:20:35 +0200
Source: bash
Binary: bash bash-static bash-builtins bash-doc
Architecture: source all amd64
Version: 4.3-11
Distribution: unstable
Urgency: medium
Maintainer: Matthias Klose d...@debian.org
Changed-By: Matthias Klose d...@debian.org
Description:
 bash   - GNU Bourne Again SHell
 bash-builtins - Bash loadable builtins - headers  examples
 bash-doc   - Documentation and examples for the GNU Bourne Again SHell
 bash-static - GNU Bourne Again SHell (static version)
Changes:
 bash (4.3-11) unstable; urgency=medium
 .
   * Apply upstream patches 028 - 030.
   * Remove the parser-oob patch.
Checksums-Sha1:
 625e4b3194aa2a21dbc28133225f28e3ff835b61 1540 bash_4.3-11.dsc
 1d761a503adb5769a2233a566f055d0c4c62f383 78732 bash_4.3-11.debian.tar.xz
 28de6cc21cca028d557f690693ae2de2d55f0ca3 1220796 bash-doc_4.3-11_all.deb
 445d377c170b6abe61de5400274e993c0a13cfb5 1173508 bash_4.3-11_amd64.deb
 e48a82b0b6054f9159612f041065c7b8eba3fb98 86182 bash-builtins_4.3-11_amd64.deb
 dbb8720981b0c6386fae25db28a7bd2f72627261 854694 bash-static_4.3-11_amd64.deb
Checksums-Sha256:
 81394eb07c09c244e5d01c6be19e69fc60153575f11923cb10ea1ed87b71ce5b 1540 
bash_4.3-11.dsc
 e042d5be5df8df339a516290bb27b1cdf027cbba0bd6c695e62f6782b4d72dba 78732 
bash_4.3-11.debian.tar.xz
 84235ea385f427ed6e55a3248cc45a72a30d81d4036a861b57b02beb1c7c2ff0 1220796 
bash-doc_4.3-11_all.deb
 548391f084897e05b4e08f91688c32012a13066cd4ae0a10a7bf56e6096cabd9 1173508 
bash_4.3-11_amd64.deb
 d7b764756c3412f04ec53b6ac3822736da998195b959e8c35d231a25783653b1 86182 
bash-builtins_4.3-11_amd64.deb
 d29b569b31ceffbb194c3e54063e6ecbb0f4671905c942d3f413012a3835265a 854694 
bash-static_4.3-11_amd64.deb
Files:
 505b3a2c129ad52cc53288bfda702457 1540 base required bash_4.3-11.dsc
 3a91f06cafa02b06912d6cd3b24e0903 78732 base required bash_4.3-11.debian.tar.xz
 506c2b4a35baa24e497e72a0da82384e 1220796 doc optional bash-doc_4.3-11_all.deb
 6f78619a6b3159cd7b63f6a6626c1c90 1173508 shells required bash_4.3-11_amd64.deb
 b7cb428ff7531ec49bf2f0476642e119 86182 utils optional 
bash-builtins_4.3-11_amd64.deb
 47227630e337591124939abbed9506c7 854694 shells optional 
bash-static_4.3-11_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iEYEARECAAYFAlQz+LEACgkQStlRaw+TLJxU/QCfZCIeqIxW7GZHuHGr9wTLXbDv
ccUAnAxUR81+rVES/0FO6FR9ayeFZcE8
=aFoL
-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/e1xbx0u-0007ci...@franck.debian.org



Accepted chessx 1.2.2-1 (source amd64) into unstable

2014-10-07 Thread Niklas Fiekas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Mon, 06 Oct 2014 18:26:02 +0200
Source: chessx
Binary: chessx
Architecture: source amd64
Version: 1.2.2-1
Distribution: unstable
Urgency: low
Maintainer: Niklas Fiekas niklas.fie...@tu-clausthal.de
Changed-By: Niklas Fiekas niklas.fie...@tu-clausthal.de
Description:
 chessx - chess database
Changes:
 chessx (1.2.2-1) unstable; urgency=low
 .
   * New upstream release.
 - Fix crash and data loss when trying to save a database other than the
   currently selected one.
 - Exclude autogenerated files from source tarball; fixes lintian warning
   source-contains-autogenerated-visual-c++-file.
 - Remove debian/patches/desktop-file.patch; applied upstream.
 - Remove debian/patches/desktop-mime-but-no-exec-code.patch; applied
   upstream.
   * debian/chessx.6:
 - Adjust tagline in manpage.
   * debian/rules:
 - Remove duplicate QT_SELECT=5.
   * debian/control:
 - Update standards version to 3.9.6.0; no relevant changes.
Checksums-Sha1:
 e5d7c71bdfde6fcfd8566c358852f5156ecb0f56 1746 chessx_1.2.2-1.dsc
 427ba8496453e6a09fb4f573ce139acc6a5d669d 3739189 chessx_1.2.2.orig.tar.gz
 9653935d659d13cb8a7192616dfb5671988f36eb 7068 chessx_1.2.2-1.debian.tar.xz
 b0667f7ad6803b190e90a32800a8071ffda76dad 3391912 chessx_1.2.2-1_amd64.deb
Checksums-Sha256:
 111a86a3108ae0ee31f396ccf44f331ea72462b549d0701b5677cd893e9f8384 1746 
chessx_1.2.2-1.dsc
 85fe797e329d8a2bb54101f602ddd00f2c19a50873492ebefd22519956641caa 3739189 
chessx_1.2.2.orig.tar.gz
 fc918d0595c3ea97910529d18acd7544c045c12506f4683fd91a2faad5e33a9d 7068 
chessx_1.2.2-1.debian.tar.xz
 f5c863c5794c2965cf6511710abf71535cbaf178a5e31a1ba97ed2d0c83abd02 3391912 
chessx_1.2.2-1_amd64.deb
Files:
 3856590da8d1f5112d848afe3454fdf5 1746 games extra chessx_1.2.2-1.dsc
 fdfc240d3f59f1f564e427c00850df57 3739189 games extra chessx_1.2.2.orig.tar.gz
 e1305ca4aedeae1adb7ea925ff4ff0bb 7068 games extra chessx_1.2.2-1.debian.tar.xz
 93229e1c55391b2833a4a0dabea0a215 3391912 games extra chessx_1.2.2-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM/nOAAoJEHQmOzf1tfkTx7oP/RXKVPoTjuzsLg4b40dMzSCf
bZKrlPX5GditcLNDA9mXVCzhQHBwGR2rCgDs3NpoBd8XSA4f4kVg76KM1mR6T/+Z
yWbylBN0JCLYaVGzEriz8v8Upi5iRUNomKatzA83zcdyDl6gbXV2Ti4yhyJBaexc
jGq0fOUPH1fqPSVMpuKLQuFuIINbu56QY4j7v4Yh3UstMHsujnreoxLxzSXMFBz3
50m+ywyxXLDvlBYGbc0jqM68XvUb2u1xj4+mEpkopS2n7CU7+fMO6GUMBQ1tuzB+
lbibjFV4vKI3ZpqlWwbNxHm8lsXcbsIz15z+CTaNj4NB6lk0eY1V5XUOr1sUIA8p
CvU9jEUaXTEIScn4kPlLegXCtOK/9ClGvhipuH0ffyRpJO+BbgALVcumbd2Q4JoK
78EBYoZj3//7w6yjy3gghcpubZlOQa+JTMQ2j/d7W/w0h3phkL1XB31tfocm6AeR
YtEgp+TMVLHgteMM8/nsmPqlCeRm+Z51zptjZMME/86S+8SZK/cMJJXxQbyqkvur
TSzDusrHu1+n4Iy4bKai5gI9Llfc9skr2KoOITHleKvQ0cGTtt36Q5jTjSkIBdO/
cpDj06kR+k1bDAhEA30vCNokpJX28n5f/UreSVneWDsUP++YZz0oZTMboB6zyaw/
CJ0XGvbPY/ypWqa7DY0Y
=pObF
-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/e1xbx1a-0007fw...@franck.debian.org



Accepted dnssec-tools 2.1-1 (source all) into unstable

2014-10-07 Thread Ondřej Surý
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 15:56:08 +0200
Source: dnssec-tools
Binary: dnssec-tools
Architecture: source all
Version: 2.1-1
Distribution: unstable
Urgency: medium
Maintainer: Ondřej Surý ond...@debian.org
Changed-By: Ondřej Surý ond...@debian.org
Description:
 dnssec-tools - DNSSEC tools, applications and wrappers
Changes:
 dnssec-tools (2.1-1) unstable; urgency=medium
 .
   * New upstream version 2.1
   * Update patches for 2.1 release
Checksums-Sha1:
 e6cdeaf455a033059f11cca9935129e35075f3ea 2059 dnssec-tools_2.1-1.dsc
 3d5c3cb37d3ff62cc6c4714de7755cf5f6cb866f 4430320 dnssec-tools_2.1.orig.tar.gz
 978df738312d4457ace948fd708e3dcd0c1861fe 12240 dnssec-tools_2.1-1.debian.tar.xz
 b285c78905812f42a60ad50727af6192daa056e4 1101856 dnssec-tools_2.1-1_all.deb
Checksums-Sha256:
 066a716d5be37c6d3bbe6038e011d8872d8de3e6c439618f2b2cf16d059a6dd0 2059 
dnssec-tools_2.1-1.dsc
 64eebfd1213714b530e501f22b5ff9786db9b982897c432fecba75740ddcda52 4430320 
dnssec-tools_2.1.orig.tar.gz
 86ca754afa6a6db9d692e0ce907e614e4b6c3d497d8b7f9c4980d46a9e044399 12240 
dnssec-tools_2.1-1.debian.tar.xz
 96e8ed1c7a21854cd80865b394a1c9f3846a7a8557c44056baaa90efa5f75c1c 1101856 
dnssec-tools_2.1-1_all.deb
Files:
 d26502f06abce518e18b3aa95e1ba8f2 2059 net extra dnssec-tools_2.1-1.dsc
 b4c76b325c380780682a548730d3e09a 4430320 net extra dnssec-tools_2.1.orig.tar.gz
 c8fd913f6ff99293b0c786cb4fd61662 12240 net extra 
dnssec-tools_2.1-1.debian.tar.xz
 e0bf85074921d74632bf76f1621b38f7 1101856 net extra dnssec-tools_2.1-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQJ8BAEBCgBmBQJUM/I4XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQzMEI5MzNEODBGQ0UzRDk4MUEyRDM4RkIw
Qzk5QjcwRUY0RkNCQjA3AAoJEAyZtw70/LsH6DoQAKenlxzi4hEYFCZHXrvmoXBi
bN04CwQDjYK3sYloZIiu/8fe1sMZFDA0R/yQy2QWfK03d5P9bsZWbM2PNh6qNspE
W+cgC6QHGvTs+yF6F+8CY0kI+roVRbQ4tIeuxAL/usTWoClZYO0OdmGqEUxabYyJ
5CiNgmw4c+7nZ5qaOXIS+PwECpc28oAfvykNAu+f0I1VMGc26eWxDSYIWZ6QweqF
xkHR2y1kijG0p2wpt/dCWKOxBL1Q5gaUWy6dO0We+l6OgTYK0+2buaZPjZ0YbWS7
eQRmLPoAmAiX4wKZTPN2/VKuMELclsu/7uZqHKrl8JZQpT07x0ffrLD6Zcru+kSV
/me5Jr61yS+v7bAR8foo95UOi4IX8K0zyFv2YOd+4OTKQ2FpdT0OAjsbZeQgw5jJ
U/pEmnbVAUJTnqBSeBx+HeIv0gQ7FNZcDNf938aI/DjsSh5DCpZ4F6EfyQ+Tv1zT
0gEjH0gk7SnM9REE5K5g6Lf9FUxLgrDitI3OI5KcPHdo5XEMH1QYils3+wXPFKev
WLBSLQsxWDTjJD5MJ3ELnba6kixSpsoxV/lnVszGCg/EGPIPk/ZAk13C1PyKSW2v
M6VOEwqd1uag6lPeqJTOZKnrK3tKafISf4o3UQ3oYiUl7aouxo7D7nl+ww4ScGd5
YOO/ngt1j866IJPk3+08
=y0SU
-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/e1xbx1f-0007pm...@franck.debian.org



Accepted docdiff 0.5.0-1 (source all) into unstable

2014-10-07 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 20:05:49 +0900
Source: docdiff
Binary: docdiff
Architecture: source all
Version: 0.5.0-1
Distribution: unstable
Urgency: low
Maintainer: Kenshi Muto km...@debian.org
Changed-By: Kenshi Muto km...@debian.org
Description:
 docdiff- Compares two files word by word / char by char
Changes:
 docdiff (0.5.0-1) unstable; urgency=low
 .
   * New upstream release
Checksums-Sha1:
 ee7fe3fcfdcec15e79e253ea80d9bf4bb6619325 1754 docdiff_0.5.0-1.dsc
 4f84b5292042415c9c1e30945219be18c6d976d0 198164 docdiff_0.5.0.orig.tar.gz
 0ce63ec785a3d189b9a14421a92cd689e12ff01a 6220 docdiff_0.5.0-1.debian.tar.xz
 4c30711f4aad70107b1ffe0c4ac6b2d245ad43bb 105988 docdiff_0.5.0-1_all.deb
Checksums-Sha256:
 953b197c8393bbde7d86513c21d5800eacb682e2b13b597d17a8aab1f5b321b9 1754 
docdiff_0.5.0-1.dsc
 4e66566b9d4f1894d414b2d6f56e5f0882a8b10d60520ff7e77b8af5d71052ef 198164 
docdiff_0.5.0.orig.tar.gz
 68d8f10f22aaad6cacab48e5f5429c3164664c229fe8bc1436fb26c6173b79cc 6220 
docdiff_0.5.0-1.debian.tar.xz
 880c39022d3e64d9d0a281615d9d55a332b6cbc94dade60de1e3524570bc7ea4 105988 
docdiff_0.5.0-1_all.deb
Files:
 32bacaac19793ad6ee85098b6e06a983 1754 text optional docdiff_0.5.0-1.dsc
 a14680fa42d53e858de661d34a2aafcd 198164 text optional docdiff_0.5.0.orig.tar.gz
 2ee0d25fa12be1d23172cf22d6dd4e15 6220 text optional 
docdiff_0.5.0-1.debian.tar.xz
 b8fcf17709155e052c13d6ec9bd8d5d3 105988 text optional docdiff_0.5.0-1_all.deb

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

iQIcBAEBCgAGBQJUM/D3AAoJEB0hyD3EUuD8m90P/igjFTE133LSfgbvuGo+z1I4
zy2R8A3PtXNBxcInRHr/0Od2yT4/FQh5tGZxTiVQmf+4xBquijV2S4u+3FahEuK+
OnOG7/3C37hSfBjVA3B7s+/veyjJfOAEjkq/1VyBaWKkjwgDBCB4ovBmkzyD1khB
BWecJVb/uj0+KkWR45wlopnfLrPTuU8E7W5iXwhGiBgRzbniKnIDpxhE+KXQggF8
OeWKOVZVORAvwvYf7Vlo/YgCQbolILLrBLeiTqk43vwb5EjE5scKEQBw1AK/OJ+K
brtf2tssqmsJsD8NZqySB8PLl3ZeHar/PkfBCpPWjiXjgE4eeH+4n4fc/0bhniaK
lZI3HgEF00aBR6STCUyI3B/eVTN04efYP71+4v+6ansc5gSyzUYH3fXb6VAWgd73
HpmTPqWcYYUg+9ViaLWCSuKYQZbHixw8WDWlQNf5Jnm7ApxK6pxREvnWqpvy+PVR
9JZ0cETCZJHGCJiXEpq9eE1U3kmNl+xF9PHCWfF4zmeZFow+PyinF2+SX0ugaxFQ
Wq0+oEAG48CAcb3hFj2kMOVu/PgB/xDa4jJO10LfW1YGmmMY+nCUIRN4/Zlhr2mV
IRSnhkYvZyVUiOOJU9BqByCj/mSgm2aGf9kJQjcCYz97YWPH/abAL7xA7igd1dWq
RNgbHwOvWu4oTG+cmSUu
=6A6G
-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/e1xbx1n-0007s4...@franck.debian.org



Accepted doublecmd 0.5.11-1 (source amd64 all) into unstable

2014-10-07 Thread Graham Inggs
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 07 Oct 2014 15:58:52 +0200
Source: doublecmd
Binary: doublecmd-gtk doublecmd-gtk-dbg doublecmd-qt doublecmd-qt-dbg 
doublecmd-plugins doublecmd-common
Architecture: source amd64 all
Version: 0.5.11-1
Distribution: unstable
Urgency: medium
Maintainer: Pascal Packaging Team pkg-pascal-de...@lists.alioth.debian.org
Changed-By: Graham Inggs gra...@nerve.org.za
Description:
 doublecmd-common - twin-panel (commander-style) file manager
 doublecmd-gtk - twin-panel (commander-style) file manager (GTK2)
 doublecmd-gtk-dbg - twin-panel (commander-style) file manager (GTK2 - debug)
 doublecmd-plugins - twin-panel (commander-style) file manager (plugins)
 doublecmd-qt - twin-panel (commander-style) file manager (Qt4)
 doublecmd-qt-dbg - twin-panel (commander-style) file manager (Qt4 - debug)
Changes:
 doublecmd (0.5.11-1) unstable; urgency=medium
 .
   * New upstream release.
   * Drop patches included upstream, refresh remaining patches.
   * Update d/rules:
 - do not delete symlink for doublecmd-help
 - remove new convenience copy of qt4.pas before building
   * Update d/copyright:
 - update copyright years
 - add copyright information for newly added qt4.pas
 - use dh_make copyright templates
   * Update d/control: add Suggests on mplayer2.
   * Update Lintian overrides.
Checksums-Sha1:
 cfdc080b78a8ace3b0994bd26d836b77073499d6 2395 doublecmd_0.5.11-1.dsc
 3edb6bccfc16fc784b8b7d0abed624b5bd013b6e 4753635 doublecmd_0.5.11.orig.tar.gz
 07fbf137692d945d5e3a924d0a08957b2d4a9965 7512 doublecmd_0.5.11-1.debian.tar.xz
 32943887c59edab0204d9181ab89af4facc3a733 2980590 
doublecmd-gtk_0.5.11-1_amd64.deb
 45abbd0483e4cc64d1be2adf29b7d94c3526ad63 632496 
doublecmd-gtk-dbg_0.5.11-1_amd64.deb
 614cd6605df6381b8aedd19c3fdf81f3c5812be6 2952672 
doublecmd-qt_0.5.11-1_amd64.deb
 c7ff8a3e0c322921b60adfcfd153f71032562264 619454 
doublecmd-qt-dbg_0.5.11-1_amd64.deb
 5e2507184265e2107fc0bbfabb026f39865ff116 1039734 
doublecmd-plugins_0.5.11-1_amd64.deb
 0007d57af606bbdeb858ca04aabc5cca222d467f 1267218 
doublecmd-common_0.5.11-1_all.deb
Checksums-Sha256:
 83aa8702691323808d818b76f23c7e22b6df871108ae23426507af49cf50c70e 2395 
doublecmd_0.5.11-1.dsc
 a7d31243f9e8fc69ed6854a264d78ee59bfe3dd89e2bb19043c715e3b3d114ea 4753635 
doublecmd_0.5.11.orig.tar.gz
 63138ddb68b27e2b2ec7fa44ac4b7a0f16c42db25274866760019450ec5ba154 7512 
doublecmd_0.5.11-1.debian.tar.xz
 ec6325d973a05f3748b279808b755b8a633c922853a50d9abefc3b66fc985fb0 2980590 
doublecmd-gtk_0.5.11-1_amd64.deb
 8a01f9ecc899ac0e9c31ce4c79b5bd00af684eece19eb276d5aeb78066bddeb6 632496 
doublecmd-gtk-dbg_0.5.11-1_amd64.deb
 be8cbfe2169a6aab41c9473e68fafd62ad606c3fa3b19d7b0765dba4995e5e4f 2952672 
doublecmd-qt_0.5.11-1_amd64.deb
 a6e03b0ed3804764b83817c6ddc36ae44122d0201d5acb3fc45a196848da05e0 619454 
doublecmd-qt-dbg_0.5.11-1_amd64.deb
 1dc141086f45760b7c3166c35bdafda10556977ec47186ffbda9891bd7828a87 1039734 
doublecmd-plugins_0.5.11-1_amd64.deb
 6f021f9219562bacbad2c93d2e9a034446b515c144f2ba465259a8f25f99fe84 1267218 
doublecmd-common_0.5.11-1_all.deb
Files:
 daaa5b5f8502672d47caeec33fc88fe9 2395 utils optional doublecmd_0.5.11-1.dsc
 6782dba17e8b379a0c284f8791b101e1 4753635 utils optional 
doublecmd_0.5.11.orig.tar.gz
 19a8aa4d34597190d6950415ba3d96fc 7512 utils optional 
doublecmd_0.5.11-1.debian.tar.xz
 74e083437ce3de69bd2588497cd0af42 2980590 utils optional 
doublecmd-gtk_0.5.11-1_amd64.deb
 ec97fa0419d7caa83d1b15e9bf7bebf7 632496 debug extra 
doublecmd-gtk-dbg_0.5.11-1_amd64.deb
 5b5ad50922782f3e828e4f9f4443fc9c 2952672 utils optional 
doublecmd-qt_0.5.11-1_amd64.deb
 1fac756f26f1ffc5318f9e05eb5682bf 619454 debug extra 
doublecmd-qt-dbg_0.5.11-1_amd64.deb
 a8d7324a9500bf1f7b24f4a8d875b0b7 1039734 utils optional 
doublecmd-plugins_0.5.11-1_amd64.deb
 b8ef55d271f75b4a8a3fbac9fa11a52a 1267218 utils optional 
doublecmd-common_0.5.11-1_all.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCgAGBQJUNAI9AAoJEK/P7I5mnOHCPHsQAJM18EOnrGQ9u9URlyN6450T
dEtkNe1BK/oKHzLLqPBxcm3mI2G6PaHUq80iAcVdCB9O5hbt4nYXp321VXDfSuGA
8g0qYmHPHpc6THUsFAKKAq9N33kCiRGwAnv0V93RIBNax4MXMblaqIZOUz+C63Rc
PyfHBwGUfqEdqndWqBpAzSIhX/ToLhrM7yFJkxVmpApGu0jkmuWwLkCNbRnNj6BC
7Uwsu2pm+IHObNnAmk09VE78k+R+EbFrFyEBg9TNp8Qnj8I2IptzVyoKmWL81Byx
Ng1ivIZ6N+8i7rUuTRzpKWll7l5WrPJkSkMPJTMAua/4S+082rY8e19mpDa6G2sG
I5tUMtzOscM4a0M13EjlHA+CECn2Y8s0p3yMuoMdEeldSTGyuCe44V8VBmAG6GfS
xfzWeJAmMCmMUA7wUYYP2/mRulHu603rgRO78f/YZr3nYACRy/eLTV2vMYJ4OBvL
ZUTwWOOl0gTm5secl8s00cXG17DuwkHsreEMZ97nnh8Ur6cqSTVNK+njmDZpTdBA
B3ZkEuT8k4oKx2CMRFwF+/ynS3LYrAftN06ng8PfzHf3XIWOtOlHaRnGZBa87t8G
UPO8WZoxbeRbXQ4Icw8KyQykknxdBdlJGTONOmIPGSpe3cOVKuGmTAvL/Q5q09YR
Wf2pAl/syt5vuhR8Njrb
=1pu3
-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/e1xbx27-00081n...@franck.debian.org



Accepted libmatheval 1.1.11+dfsg-1.2 (source amd64) into unstable

2014-10-07 Thread Neil Williams
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 07 Oct 2014 15:04:50 +0100
Source: libmatheval
Binary: libmatheval-dev libmatheval1
Architecture: source amd64
Version: 1.1.11+dfsg-1.2
Distribution: unstable
Urgency: low
Maintainer: Debian Science Maintainers 
debian-science-maintain...@lists.alioth.debian.org
Changed-By: Neil Williams codeh...@debian.org
Description:
 libmatheval-dev - GNU library for evaluating symbolic mathematical expressions 
(dev
 libmatheval1 - GNU library for evaluating symbolic mathematical expressions 
(run
Closes: 746013
Changes:
 libmatheval (1.1.11+dfsg-1.2) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Add a fix to lib/xmath.c to limit the precision to
 within the range compatible with the current compiler
 optimisations so that the uncertain process of comparing
 floating point numbers can be used in the test suite.
 Completes the migration to guile-2.0 (Closes: #746013)
   * Update symbols for the patched function
Checksums-Sha1:
 5ca55edaa78c520ed4534358b0dcc6cf42bbe944 2180 libmatheval_1.1.11+dfsg-1.2.dsc
 f93317eeb83f98575e027bc7a1b8c54a44d4cf45 7116 
libmatheval_1.1.11+dfsg-1.2.debian.tar.xz
 5259744cc4d4992e6e40e61d2dd127616186e1a0 23778 
libmatheval-dev_1.1.11+dfsg-1.2_amd64.deb
 d5569bfbaf9df8802f71584218283c20bfa67d69 22872 
libmatheval1_1.1.11+dfsg-1.2_amd64.deb
Checksums-Sha256:
 22aea35dcd950b23f57a6e5b69e6fc9ed2e3afcd3396d2e9dd0144cf8049112c 2180 
libmatheval_1.1.11+dfsg-1.2.dsc
 ed990bf6dffd28b7d2834d65cc9066e21f0c59544da2f1c0b39a1d5277daf672 7116 
libmatheval_1.1.11+dfsg-1.2.debian.tar.xz
 800a88dbb19a42f252439d2a189dbda9b2b8be686a4161f316b500cb9a02eb0f 23778 
libmatheval-dev_1.1.11+dfsg-1.2_amd64.deb
 4b742afe768da15dc5edf74f24ee69b108cb60546847ca3195879982cc0cc26d 22872 
libmatheval1_1.1.11+dfsg-1.2_amd64.deb
Files:
 06c4c597cbc100d9a58d22363f6ad958 23778 libdevel optional 
libmatheval-dev_1.1.11+dfsg-1.2_amd64.deb
 6eb15318160271c82d97186f1ee9f9ba 22872 libs optional 
libmatheval1_1.1.11+dfsg-1.2_amd64.deb
 679f35ee083fc2d19e61a0ddaf07197c 2180 science optional 
libmatheval_1.1.11+dfsg-1.2.dsc
 5a51fb0221cb00acf276dd2ba4a5e90c 7116 science optional 
libmatheval_1.1.11+dfsg-1.2.debian.tar.xz

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJUM/Z6AAoJEPFn5DyBQ7aC1TQP/1ew/p2xMBfZ4pCznsTgWfbK
qK/NAVEeOzTq02BhRTR9/roSKTouQht5PC6MjQVffplP+lSl6hrT+X1SemyBBO4K
QE89zZOdyc0PFXw6RTFnZ0WR/4uk0quOBVSdgO7izcc4emUARpNO9p+M5jCP+Gq6
0mA1cnuG7ZysLVPxelVEnmvXGRZiXV1lZhOwvayRTmeBTB5dt5zx8szhJ67dlfEM
NM4QZZyuUhE9pKoSuYnuxeVP+9mj2PzK2SHpEvegK6s+bcNP92a1Z/PJ1x0HP5YO
tReQyeOaTQqBlPbM4+sh7f2CwUDsSCrCSznpFSjB1CPjI1W1Tztp+v/JC77EdyY0
SGGwlpjNnA6n7/DdhJ9vH4GuGylwHaOZSoCN4GEQCCyhJGJXyZB1sptcS+zwR1mK
3U1WsgISz9Ww3r+lxn9Zuc2bKdoF1n2UiUS8MH8ouyUgPj+eIr3XAe/6HVJg/h+v
GcICoW3p9uQNdx5hRnXb48fo3ta8iJBXB31uodvrF5o++buFztf9e54cPXOqJoXy
kHYS5CnJKwq01SfndFvpRppS0TZWwI5bOb/AY9prLP28LGcmU05S6/n04aFQ2GDK
EmrAUF/JCnZI4SiXhvV8BvVEEJPf3sq8JjUV9GMxtJYVZleWYpZCKU8Iwp7TGCbB
3SBpgT2vV8To5flJN36y
=lwiE
-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/e1xbx2h-0008fb...@franck.debian.org



  1   2   >